diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-12-08 12:44:26 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-12-08 12:44:26 +0000 |
commit | 8bf94ced4e3826f58e9da18e49af1ac7f8ed73ac (patch) | |
tree | 69da2d6e7f7e18a30037c946736420082fe2c49d /scripts | |
parent | ea702df14aacc70662d48d3f194012cf119d678d (diff) | |
download | upstream-8bf94ced4e3826f58e9da18e49af1ac7f8ed73ac.tar.gz upstream-8bf94ced4e3826f58e9da18e49af1ac7f8ed73ac.tar.bz2 upstream-8bf94ced4e3826f58e9da18e49af1ac7f8ed73ac.zip |
update sourceforge downloading
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5721 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/download.pl | 15 |
1 files 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 (<SF>) { - /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"; - }; - /<a href="\/.+\?use_mirror=(\w+)"><b>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"; |