summaryrefslogtreecommitdiff
path: root/recipes/build-tools/glib-tools.recipe
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-07-22 12:37:34 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-07-22 12:37:34 +0530
commitfb3729a9c9863b5fe58df1858be8036ed837b62c (patch)
tree5818e09de1be24f95ca8e3b1320fb5a313443d94 /recipes/build-tools/glib-tools.recipe
parent3e86ad23ca623499023d7a7256119d53363f535a (diff)
recipes: Move all recipes to HTTPS
Also add a check in Cerbero to ensure that no insecure URLs are used.
Diffstat (limited to 'recipes/build-tools/glib-tools.recipe')
-rw-r--r--recipes/build-tools/glib-tools.recipe3
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/build-tools/glib-tools.recipe b/recipes/build-tools/glib-tools.recipe
index df686986..2cdf98b1 100644
--- a/recipes/build-tools/glib-tools.recipe
+++ b/recipes/build-tools/glib-tools.recipe
@@ -4,7 +4,8 @@ class Recipe(recipe.Recipe):
name = 'glib-tools'
version = '2.56.1'
stype = SourceType.TARBALL
- url = 'http://ftp.acc.umu.se/pub/GNOME/sources/glib/2.56/glib-%(version)s.tar.xz'
+ maj_ver = '.'.join(version.split('.')[0:2])
+ url = 'https://download.gnome.org/sources/glib/{}/glib-%(version)s.tar.xz'.format(maj_ver)
tarball_dirname = 'glib-%(version)s'
licenses = [License.LGPLv2Plus]
btype = BuildType.MESON