diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-02-28 10:12:44 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-02-28 10:28:55 +0100 |
commit | 9085bb43291655b88b19a6b31271243579380392 (patch) | |
tree | 5d27b965b0f9199e24d62eddaf5a34bcf4f7ee20 /recipes/glib-networking-static.recipe | |
parent | b06e46f9cab38ded5b269cfeaa43bb75dae2cddb (diff) |
glib-networking: Update to 2.38.2 for some rather important TLS related bugfixes
Diffstat (limited to 'recipes/glib-networking-static.recipe')
-rw-r--r-- | recipes/glib-networking-static.recipe | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/recipes/glib-networking-static.recipe b/recipes/glib-networking-static.recipe index a988ef29..2d12680d 100644 --- a/recipes/glib-networking-static.recipe +++ b/recipes/glib-networking-static.recipe @@ -5,17 +5,20 @@ from cerbero.errors import FatalError class Recipe(recipe.Recipe): name = 'glib-networking-static' - version = '2.34.2' + version = '2.38.2' licenses = [License.LGPLv2Plus] + stype = SourceType.TARBALL + url = 'http://ftp.gnome.org/pub/gnome/sources/glib-networking/2.38/glib-networking-2.38.2.tar.xz' + tarball_dirname = 'glib-networking-%(version)s' + autoreconf = True configure_options = "--without-ca-certificates --enable-static-modules --enable-static --enable-more-warnings" deps = ['glib', 'gnutls', 'glib-networking'] + patches = ['glib-networking/0001-gnutls-add-initial-support-for-static-builds.patch'] files_devel = ['lib/gio/modules/static/libgiognutls.a', 'lib/gio/modules/static/libgiognutls.la'] def prepare(self): - self.remotes['origin'] = self.remotes['origin'].replace('-static', '') - self.repo_dir = self.repo_dir.replace('-static', '') self.tmp_destdir = os.path.join(self.build_dir, 'static-build') querymodule_path = None |