diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-12-10 12:40:08 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-12-10 12:40:08 +0000 |
commit | 4eaeee71518b66f62faa9fc8637e7cfb912958cc (patch) | |
tree | 0700ae0cd0be4994a05e88324c3fce1da174c816 /scripts | |
parent | 64219c5be1b07b13449de967b11e1e57e50f1b00 (diff) | |
download | upstream-4eaeee71518b66f62faa9fc8637e7cfb912958cc.tar.gz upstream-4eaeee71518b66f62faa9fc8637e7cfb912958cc.tar.bz2 upstream-4eaeee71518b66f62faa9fc8637e7cfb912958cc.zip |
scripts/download.pl: cleanup GNOME source location definitions
Cleanup the @GNOME source download location definitions:
* remove dead and stale mirrors
* adjust to changes at directory structure
* add one new working mirror
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
SVN-Revision: 47825
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/download.pl | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/scripts/download.pl b/scripts/download.pl index 484d34c0b8..6f28237af8 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -182,15 +182,10 @@ foreach my $mirror (@ARGV) { } } elsif ($mirror =~ /^\@GNOME\/(.+)$/) { push @mirrors, "http://ftp.gnome.org/pub/GNOME/sources/$1"; - push @mirrors, "http://ftp.unina.it/pub/linux/GNOME/sources/$1"; + push @mirrors, "http://www.mirrorservice.org/sites/ftp.gnome.org/pub/GNOME/sources/$1"; push @mirrors, "http://fr2.rpmfind.net/linux/gnome.org/sources/$1"; - push @mirrors, "ftp://ftp.dit.upm.es/pub/GNOME/sources/$1"; - push @mirrors, "ftp://ftp.no.gnome.org/pub/GNOME/sources/$1"; push @mirrors, "http://ftp.acc.umu.se/pub/GNOME/sources/$1"; - push @mirrors, "http://ftp.belnet.be/mirror/ftp.gnome.org/sources/$1"; - push @mirrors, "http://linorg.usp.br/gnome/sources/$1"; - push @mirrors, "http://mirror.aarnet.edu.au/pub/GNOME/sources/$1"; - push @mirrors, "http://mirrors.ibiblio.org/pub/mirrors/gnome/sources/$1"; + push @mirrors, "http://ftp.belnet.be/ftp.gnome.org/sources/$1"; push @mirrors, "ftp://ftp.cse.buffalo.edu/pub/Gnome/sources/$1"; push @mirrors, "ftp://ftp.nara.wide.ad.jp/pub/X11/GNOME/sources/$1"; } |