diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2013-09-27 08:55:59 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2013-09-27 08:55:59 +0100 |
commit | b1c47c0be2837b8443f0e2735e8e875e01aef170 (patch) | |
tree | c46d4c219bccfce47d062d95a8b2ca51adf5e272 | |
parent | d4f6aff9b2364dc06b686080e657308f698ee34e (diff) |
recipes: prefer http download locations for tarballs over ftp
ftp might not work in many network environments.
-rw-r--r-- | recipes/gnome-doc-utils.recipe | 2 | ||||
-rw-r--r-- | recipes/libffi.recipe | 2 | ||||
-rw-r--r-- | recipes/toolchain/cloog.recipe | 2 | ||||
-rw-r--r-- | recipes/x264.recipe | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/recipes/gnome-doc-utils.recipe b/recipes/gnome-doc-utils.recipe index c66ce27c..c8aa7c05 100644 --- a/recipes/gnome-doc-utils.recipe +++ b/recipes/gnome-doc-utils.recipe @@ -6,5 +6,5 @@ class Recipe(recipe.Recipe): version = '0.20.9' licenses = [License.LGPL] stype = SourceType.TARBALL - url = 'ftp://ftp.gnome.org/pub/GNOME/sources/gnome-doc-utils/0.20/gnome-doc-utils-0.20.9.tar.xz' + url = 'http://ftp.gnome.org/pub/GNOME/sources/gnome-doc-utils/0.20/gnome-doc-utils-0.20.9.tar.xz' deps = ['libxml2', 'libxslt'] diff --git a/recipes/libffi.recipe b/recipes/libffi.recipe index fee23aa7..5c46c682 100644 --- a/recipes/libffi.recipe +++ b/recipes/libffi.recipe @@ -5,7 +5,7 @@ class Recipe(recipe.Recipe): name = 'libffi' version = '3.0.13' stype = SourceType.TARBALL - url = 'ftp://sourceware.org/pub/libffi/libffi-3.0.13.tar.gz' + url = 'http://www.mirrorservice.org/sites/sourceware.org/pub/libffi/libffi-3.0.13.tar.gz' licenses = [License.BSD_like] files_libs = ['libffi'] diff --git a/recipes/toolchain/cloog.recipe b/recipes/toolchain/cloog.recipe index 287ca65d..5588d00a 100644 --- a/recipes/toolchain/cloog.recipe +++ b/recipes/toolchain/cloog.recipe @@ -6,7 +6,7 @@ class Recipe(recipe.Recipe): version = '0.18.0' licenses = [License.GPLv2] stype = SourceType.TARBALL - url = 'ftp://gcc.gnu.org/pub/gcc/infrastructure/cloog-0.18.0.tar.gz' + url = 'http://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/infrastructure/cloog-0.18.0.tar.gz' configure_options = '--with-bits=gmp ' \ '--disable-shared ' \ '--enable-static' diff --git a/recipes/x264.recipe b/recipes/x264.recipe index 85d4f18d..9a94be7f 100644 --- a/recipes/x264.recipe +++ b/recipes/x264.recipe @@ -11,7 +11,7 @@ class Recipe(recipe.Recipe): "--libdir=%(libdir)s %(options)s" configure_options = '--enable-shared --enable-static --enable-pic' force_configure = True - url = 'ftp://ftp.videolan.org/pub/x264/snapshots/x264-snapshot-20120827-2245-stable.tar.bz2' + url = 'http://ftp.videolan.org/pub/x264/snapshots/x264-snapshot-20120827-2245-stable.tar.bz2' tarball_dirname= 'x264-snapshot-20120827-2245-stable' new_env = {'AS': 'yasm'} |