Sourceforge test 0 (may not work).
authorthink <think>
Tue, 30 Jun 2015 18:30:05 +0000 (18:30 +0000)
committerthink <think>
Tue, 30 Jun 2015 18:30:05 +0000 (18:30 +0000)
trunk/include/download.mk
trunk/scripts/download.pl

index c4c1c14c7ca5b4f5fa1f6ae2d550c88a5a057508..c375207ee8c5127e500e2da924fd91eb22d9e430 100644 (file)
@@ -11,7 +11,7 @@ DOWNLOAD_RDEP=$(STAMP_PREPARED) $(HOST_STAMP_PREPARED)
 define dl_method
 $(strip \
   $(if $(2),$(2), \
-    $(if $(filter @GNOME/% @GNU/% @KERNEL/% @SAVANNAH/% ftp://% http://% https://% file://%,$(1)),default, \
+    $(if $(filter @SF/% @GNOME/% @GNU/% @KERNEL/% @SAVANNAH/% ftp://% http://% https://% file://%,$(1)),default, \
       $(if $(filter git://%,$(1)),git, \
         $(if $(filter svn://%,$(1)),svn, \
           $(if $(filter cvs://%,$(1)),cvs, \
index 4697bb4b0f10f401b3ba57b49b9a503669bd5ca2..54752484796d3bdf9a4ad4bbaed3f2f8eb9ac087 100755 (executable)
@@ -146,7 +146,10 @@ sub cleanup
 @mirrors = localmirrors();
 
 foreach my $mirror (@ARGV) {
-       if ($mirror =~ /^\@GNU\/(.+)$/) {
+       if ($mirror =~ /^\@SF\/(.+)$/) {
+                # give sourceforge a few more tries, because it redirects to different mirrors
+                push @mirrors, "http://downloads.librecmc.org/sources/$1";
+       } elsif ($mirror =~ /^\@GNU\/(.+)$/) {
                push @mirrors, "http://ftpmirror.gnu.org/$1";
                push @mirrors, "http://ftp.gnu.org/pub/gnu/$1";
                push @mirrors, "ftp://ftp.belnet.be/mirror/ftp.gnu.org/gnu/$1";
@@ -176,7 +179,7 @@ foreach my $mirror (@ARGV) {
        }
 }
 
-push @mirrors, 'http://downloads.librecmc.org/sources/v1.3';
+push @mirrors, 'http://downloads.librecmc.org/sources/v1.3.1';
 
 while (!$ok) {
        my $mirror = shift @mirrors;