summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-05 23:51:16 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-07 15:02:18 +0000
commitc11104b0610f70a24ea46d4d75665b65cd507ae6 (patch)
treea39394c4313bfc6f7bbff1fc524b56e0a7fc06bb /bitbake
parent792359e9599fce4a76abe0244be02761be888f6f (diff)
downloadpoky-c11104b0610f70a24ea46d4d75665b65cd507ae6.tar.gz
bitbake: tests/fetch: Switch gnu.org urls from ftp -> http/https
The ftp server at ftp.gnu.org is likely to be retired at some point soon so siwtch over to the http/https services. This means bitbake-selftest doesn't have ftp test urls, however finding stable ftp test servers is proving increasingly hard. (Bitbake rev: 892a08245ddb21a464aeb37d3e32377e99dd7e2b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/tests/fetch.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py
index 154bf1779b..f1799a7eff 100644
--- a/bitbake/lib/bb/tests/fetch.py
+++ b/bitbake/lib/bb/tests/fetch.py
@@ -837,9 +837,9 @@ class FetchCheckStatusTest(FetcherTest):
837 "https://yoctoproject.org/documentation", 837 "https://yoctoproject.org/documentation",
838 "http://downloads.yoctoproject.org/releases/opkg/opkg-0.1.7.tar.gz", 838 "http://downloads.yoctoproject.org/releases/opkg/opkg-0.1.7.tar.gz",
839 "http://downloads.yoctoproject.org/releases/opkg/opkg-0.3.0.tar.gz", 839 "http://downloads.yoctoproject.org/releases/opkg/opkg-0.3.0.tar.gz",
840 "ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz", 840 "http://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz",
841 "ftp://ftp.gnu.org/gnu/chess/gnuchess-5.08.tar.gz", 841 "https://ftp.gnu.org/gnu/chess/gnuchess-5.08.tar.gz",
842 "ftp://ftp.gnu.org/gnu/gmp/gmp-4.0.tar.gz", 842 "https://ftp.gnu.org/gnu/gmp/gmp-4.0.tar.gz",
843 # GitHub releases are hosted on Amazon S3, which doesn't support HEAD 843 # GitHub releases are hosted on Amazon S3, which doesn't support HEAD
844 "https://github.com/kergoth/tslib/releases/download/1.1/tslib-1.1.tar.xz" 844 "https://github.com/kergoth/tslib/releases/download/1.1/tslib-1.1.tar.xz"
845 ] 845 ]