diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2022-11-14 11:20:38 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-11-15 09:38:37 +0000 |
commit | 2845c06fff103d73d92bc1eb5884fc7d14195b07 (patch) | |
tree | 9e5f0b0895c32fdac7cf376b91f023d6894a2424 /meta/recipes-support/libsoup/libsoup_3.2.2.bb | |
parent | 8531a791933d854fc9feaf02da3fdb66ee262d03 (diff) | |
download | poky-2845c06fff103d73d92bc1eb5884fc7d14195b07.tar.gz |
libsoup: upgrade 3.2.1 -> 3.2.2
Changelog:
==========
* Various HTTP/2 Fixes:
* Fix `content-sniffed` not being emitted for resources without content
* Fix leak of SoupServerConnection when stolen
(From OE-Core rev: 65d287feb713a21cefdf4cb56f80c9f1deaa2e60)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libsoup/libsoup_3.2.2.bb')
-rw-r--r-- | meta/recipes-support/libsoup/libsoup_3.2.2.bb | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/meta/recipes-support/libsoup/libsoup_3.2.2.bb b/meta/recipes-support/libsoup/libsoup_3.2.2.bb new file mode 100644 index 0000000000..e16cd17705 --- /dev/null +++ b/meta/recipes-support/libsoup/libsoup_3.2.2.bb | |||
@@ -0,0 +1,46 @@ | |||
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 = "LGPL-2.0-only" | ||
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] = "83673c685b910fb7d39f1f28eee5afbefb71c05798fc350ac3bf1b885e1efaa1" | ||
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 gi-docgen | ||
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 | GIDOCGEN_MESON_OPTION = 'docs' | ||
34 | GIDOCGEN_MESON_ENABLE_FLAG = 'enabled' | ||
35 | GIDOCGEN_MESON_DISABLE_FLAG = 'disabled' | ||
36 | |||
37 | # When built without gnome support, libsoup will contain only one shared lib | ||
38 | # and will therefore become subject to renaming by debian.bbclass. Prevent | ||
39 | # renaming in order to keep the package name consistent regardless of whether | ||
40 | # gnome support is enabled or disabled. | ||
41 | DEBIAN_NOAUTONAME:${PN} = "1" | ||
42 | |||
43 | # glib-networking is needed for SSL, proxies, etc. | ||
44 | RRECOMMENDS:${PN} = "glib-networking" | ||
45 | |||
46 | BBCLASSEXTEND = "native nativesdk" | ||