1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
import os
from cerbero.utils.shell import which
from cerbero.tools.libtool import LibtoolLibrary
class Recipe(recipe.Recipe):
name = 'glib-networking'
version = '2.56.1'
licenses = [{License.LGPLv2Plus: None, License.Misc: ['LICENSE_EXCEPTION']}]
stype = SourceType.TARBALL
btype = BuildType.MESON
url = 'gnome://'
tarball_checksum = 'df47b0e0a037d2dcf6b1846cbdf68dd4b3cc055e026bb40c4a55f19f29f635c8'
meson_options = {'ca_certificates_path': '', 'libproxy_support': 'false',
'gnome_proxy_support': 'false', 'pkcs11_support': 'false',
# Also build static modules on all platforms
'static_modules': 'true'}
deps = ['glib', 'gnutls']
# These patches are upstream, remove on bump
patches = [name + '/0001-meson-Use-.so-for-modules-on-macOS-instead-of-dylib.patch',
name + '/0002-meson-Unbreak-the-non-macOS-builds.patch',
# XXX: This patch may require changes to gnutls's system trust
# since we can no longer set the certificate path in glib-networking
name + '/0003-Use-the-GnuTLS-system-trust-by-default.patch',
name + '/0004-meson-Only-run-gio-querymodules-if-it-s-found.patch',
name + '/0001-Don-t-use-the-GCC-ternary-syntax-extension.patch',
# https://gitlab.gnome.org/GNOME/glib-networking/merge_requests/22
name + '/0001-tls-modules-Export-load-unload-query-symbols-on-MSVC.patch']
files_misc = ['lib/gio/modules/libgiognutls%(mext)s']
files_lang = ['glib-networking']
files_devel = ['lib/gio/modules/libgiognutls.a']
def post_install(self):
# Meson does not generate la files
LibtoolLibrary('giognutls', None, None, None,
os.path.join(self.config.libdir, 'gio', 'modules'),
self.config.target_platform, deps=['gnutls']).save()
super().post_install()
|