# HG changeset patch # User "Yann E. MORIN" # Date 1328480815 -3600 # Node ID 82f3da5d402e08a62bc2b5dc095aefa84b92f16a # Parent f4a934f1734f8dadf7da7e9e298f2805df9e5e3b scripts: fix download from sourceforge It seems sourceforge changed yet again the way to download files. This time, no longer use their 'mesh' thingy, and hard-code the server to use in the URL... Sigh... :-( Signed-off-by: "Yann E. MORIN" (transplanted from ef6dad58ab1cd38946258552a3ee624a6339f54c) diff -r f4a934f1734f -r 82f3da5d402e scripts/build/debug/200-duma.sh --- a/scripts/build/debug/200-duma.sh Wed Feb 01 00:19:04 2012 +0100 +++ b/scripts/build/debug/200-duma.sh Sun Feb 05 23:26:55 2012 +0100 @@ -4,7 +4,7 @@ # Downloading an non-existing file from sourceforge will give you an # HTML file containing an error message, instead of returning a 404. # Sigh... - CT_GetFile "duma_${CT_DUMA_VERSION}" .tar.gz http://mesh.dl.sourceforge.net/sourceforge/duma/ + CT_GetFile "duma_${CT_DUMA_VERSION}" .tar.gz http://kent.dl.sourceforge.net/sourceforge/duma/ # Downloading from sourceforge may leave garbage, cleanup CT_DoExecLog ALL rm -f "${CT_TARBALLS_DIR}/showfiles.php"* } diff -r f4a934f1734f -r 82f3da5d402e scripts/build/debug/300-gdb.sh --- a/scripts/build/debug/300-gdb.sh Wed Feb 01 00:19:04 2012 +0100 +++ b/scripts/build/debug/300-gdb.sh Sun Feb 05 23:26:55 2012 +0100 @@ -62,7 +62,7 @@ if [ "${do_expat}" = "y" ]; then CT_GetFile "expat-${CT_DEBUG_GDB_EXPAT_VERSION}" .tar.gz \ - http://mesh.dl.sourceforge.net/sourceforge/expat/expat/${CT_DEBUG_GDB_EXPAT_VERSION} + http://kent.dl.sourceforge.net/project/expat/expat/${CT_DEBUG_GDB_EXPAT_VERSION} fi } diff -r f4a934f1734f -r 82f3da5d402e scripts/build/debug/500-strace.sh --- a/scripts/build/debug/500-strace.sh Wed Feb 01 00:19:04 2012 +0100 +++ b/scripts/build/debug/500-strace.sh Sun Feb 05 23:26:55 2012 +0100 @@ -1,7 +1,7 @@ # Build script for strace do_debug_strace_get() { - CT_GetFile "strace-${CT_STRACE_VERSION}" http://mesh.dl.sourceforge.net/sourceforge/strace/ + CT_GetFile "strace-${CT_STRACE_VERSION}" http://kent.dl.sourceforge.net/sourceforge/strace/ # Downloading from sourceforge leaves garbage, cleanup CT_DoExecLog ALL rm -f "${CT_TARBALLS_DIR}/showfiles.php"* }