summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-08-07 20:02:01 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-08-10 02:57:42 +0530
commitd6c4a98cd5c76f42e6327f56dd79f4439ed23205 (patch)
tree93983f6400923ce3a7f0e29a6ca1739c7882c86a
parent484233efddc323d214bd3c34f0cd94005a28aa6f (diff)
bzip2.recipe: Only use our mirror for fetching the tarball
Upstream didn't support HTTPS, and is dead now. https://lwn.net/Articles/762264/
-rw-r--r--recipes/bzip2.recipe4
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes/bzip2.recipe b/recipes/bzip2.recipe
index 02d47eea..1501b1d3 100644
--- a/recipes/bzip2.recipe
+++ b/recipes/bzip2.recipe
@@ -7,7 +7,9 @@ class Recipe(recipe.Recipe):
version = '1.0.6'
licenses = [License.BSD_like]
stype = SourceType.TARBALL
- url = 'http://bzip.org/1.0.6/bzip2-1.0.6.tar.gz'
+ # This URL doesn't support https, so we don't use it
+ #url = 'https://bzip.org/%(version)s/bzip2-%(version)s.tar.gz'
+ url = 'https://gstreamer.freedesktop.org/src/mirror/bzip2-%(version)s.tar.gz'
patches = ['bzip2/0001-Fix-Makefiles-and-add-support-for-Windows-and-OS-X.patch']
files_libs = ['libbz2']