From: Felix Fietkau Date: Fri, 8 Dec 2006 12:44:26 +0000 (+0000) Subject: update sourceforge downloading X-Git-Tag: whiterussian_0.9~48 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=bae21d448afc52613370c0897bacd9daf5603136;p=openwrt%2Fsvn-archive%2Fopenwrt.git update sourceforge downloading SVN-Revision: 5721 --- diff --git a/openwrt/scripts/download.pl b/openwrt/scripts/download.pl index 8f5d1d6b46..a99228f198 100755 --- a/openwrt/scripts/download.pl +++ b/openwrt/scripts/download.pl @@ -79,19 +79,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";