diff options
Diffstat (limited to 'meta/recipes-support/libsoup')
-rw-r--r-- | meta/recipes-support/libsoup/libsoup-2.4_2.72.0.bb | 2 | ||||
-rw-r--r-- | meta/recipes-support/libsoup/libsoup_3.0.1.bb | 44 |
2 files changed, 46 insertions, 0 deletions
diff --git a/meta/recipes-support/libsoup/libsoup-2.4_2.72.0.bb b/meta/recipes-support/libsoup/libsoup-2.4_2.72.0.bb index e888202b77..351bc9de73 100644 --- a/meta/recipes-support/libsoup/libsoup-2.4_2.72.0.bb +++ b/meta/recipes-support/libsoup/libsoup-2.4_2.72.0.bb | |||
@@ -20,6 +20,8 @@ S = "${WORKDIR}/libsoup-${PV}" | |||
20 | 20 | ||
21 | inherit meson gettext pkgconfig upstream-version-is-even gobject-introspection gtk-doc | 21 | inherit meson gettext pkgconfig upstream-version-is-even gobject-introspection gtk-doc |
22 | 22 | ||
23 | UPSTREAM_CHECK_REGEX = "libsoup-(?P<pver>2(\.(?!99)\d+)+)\.tar" | ||
24 | |||
23 | GIR_MESON_ENABLE_FLAG = 'enabled' | 25 | GIR_MESON_ENABLE_FLAG = 'enabled' |
24 | GIR_MESON_DISABLE_FLAG = 'disabled' | 26 | GIR_MESON_DISABLE_FLAG = 'disabled' |
25 | 27 | ||
diff --git a/meta/recipes-support/libsoup/libsoup_3.0.1.bb b/meta/recipes-support/libsoup/libsoup_3.0.1.bb new file mode 100644 index 0000000000..1e4d3b272b --- /dev/null +++ b/meta/recipes-support/libsoup/libsoup_3.0.1.bb | |||
@@ -0,0 +1,44 @@ | |||
1 | SUMMARY = "An HTTP library implementation in C" | ||
2 | DESCRIPTION = "libsoup is an HTTP client/server library for GNOME. It uses GObjects \ | ||
3 | and the glib main loop, to integrate well with GNOME applications." | ||
4 | HOMEPAGE = "https://wiki.gnome.org/Projects/libsoup" | ||
5 | BUGTRACKER = "https://bugzilla.gnome.org/" | ||
6 | SECTION = "x11/gnome/libs" | ||
7 | LICENSE = "LGPLv2" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2" | ||
9 | |||
10 | DEPENDS = "glib-2.0 glib-2.0-native libxml2 sqlite3 libpsl nghttp2" | ||
11 | |||
12 | SHRT_VER = "${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}" | ||
13 | |||
14 | SRC_URI = "${GNOME_MIRROR}/libsoup/${SHRT_VER}/libsoup-${PV}.tar.xz" | ||
15 | SRC_URI[sha256sum] = "6f0c316d10f8458b96f564c7644be3c2011bd75ad5054c8db26afb0c9a91bc47" | ||
16 | |||
17 | PROVIDES = "libsoup-3.0" | ||
18 | CVE_PRODUCT = "libsoup" | ||
19 | |||
20 | S = "${WORKDIR}/libsoup-${PV}" | ||
21 | |||
22 | inherit meson gettext pkgconfig upstream-version-is-even gobject-introspection gtk-doc | ||
23 | |||
24 | GIR_MESON_ENABLE_FLAG = 'enabled' | ||
25 | GIR_MESON_DISABLE_FLAG = 'disabled' | ||
26 | |||
27 | # libsoup-gnome is entirely deprecated and just stubs in 2.42 onwards. Disable by default. | ||
28 | PACKAGECONFIG ??= "" | ||
29 | PACKAGECONFIG[gssapi] = "-Dgssapi=enabled,-Dgssapi=disabled,krb5" | ||
30 | |||
31 | EXTRA_OEMESON:append = " -Dvapi=disabled -Dtls_check=false" | ||
32 | |||
33 | GTKDOC_MESON_OPTION = "gtk_doc" | ||
34 | |||
35 | # When built without gnome support, libsoup will contain only one shared lib | ||
36 | # and will therefore become subject to renaming by debian.bbclass. Prevent | ||
37 | # renaming in order to keep the package name consistent regardless of whether | ||
38 | # gnome support is enabled or disabled. | ||
39 | DEBIAN_NOAUTONAME:${PN} = "1" | ||
40 | |||
41 | # glib-networking is needed for SSL, proxies, etc. | ||
42 | RRECOMMENDS:${PN} = "glib-networking" | ||
43 | |||
44 | BBCLASSEXTEND = "native nativesdk" | ||