From 6146594b8c0af5088e9a1a63a200c18cf4101c39 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 8 Dec 2006 12:44:26 +0000 Subject: [PATCH] update sourceforge downloading SVN-Revision: 5721 --- scripts/download.pl | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/scripts/download.pl b/scripts/download.pl index 8eb66f0353..859e6c8ba6 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -80,19 +80,10 @@ sub cleanup foreach my $mirror (@ARGV) { if ($mirror =~ /^\@SF\/(.+)$/) { - my $sfpath = $1; - open SF, "wget -t1 -q -O- 'http://prdownloads.sourceforge.net/$sfpath/$filename' |"; - while () { - /RADIO NAME=use_default VALUE=(\w+) OnClick="form\.submit\(\)">/ or - /type="radio" name="use_default" value="(\w+)" onclick="form\.submit\(\)"\/>/ and do { - push @mirrors, "http://$1.dl.sourceforge.net/sourceforge/$sfpath"; - }; - /Download/ and do { - push @mirrors, "http://$1.dl.sourceforge.net/sourceforge/$sfpath"; - }; + # give sourceforge a few more tries, because it redirects to different mirrors + for (1 .. 5) { + push @mirrors, "http://downloads.sourceforge.net/$1"; } - push @mirrors, "http://dl.sourceforge.net/sourceforge/$sfpath"; - close SF; } elsif ($mirror =~ /^\@GNU\/(.+)$/) { my $gnupath = $1; push @mirrors, "ftp://ftp.gnu.org/gnu/$gnupath"; -- 2.30.2