summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libsoup
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2013-04-24 15:29:46 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-08 15:41:12 +0100
commitb86f89f38e6b45c93f60e61efcc8dfa34a2dc7e8 (patch)
tree9d32b31c44e81b61bfbe40372466f5288da73069 /meta/recipes-support/libsoup
parent58b84012454869a032594edf9ad1daa32d28911b (diff)
downloadpoky-b86f89f38e6b45c93f60e61efcc8dfa34a2dc7e8.tar.gz
libsoup: upgrade to 2.42.1
Upgrade to the latest stable release, and fix the dependencies. gnome-keyring use has been removed from libsoup, and sqlite3 is now a hard dependency. The optional libsoup-gnome library is now a small stub, so enable it by default but allow it to be disabled via PACKAGECONFIG. (From OE-Core rev: 3f093e24e78cc8a553bebc03ec9f3a32700981e6) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libsoup')
-rw-r--r--meta/recipes-support/libsoup/libsoup-2.4_2.42.1.bb (renamed from meta/recipes-support/libsoup/libsoup-2.4_2.40.2.bb)14
1 files changed, 7 insertions, 7 deletions
diff --git a/meta/recipes-support/libsoup/libsoup-2.4_2.40.2.bb b/meta/recipes-support/libsoup/libsoup-2.4_2.42.1.bb
index 53807af3e5..ef8d43914c 100644
--- a/meta/recipes-support/libsoup/libsoup-2.4_2.40.2.bb
+++ b/meta/recipes-support/libsoup/libsoup-2.4_2.42.1.bb
@@ -5,20 +5,20 @@ BUGTRACKER = "https://bugzilla.gnome.org/"
5LICENSE = "LGPLv2" 5LICENSE = "LGPLv2"
6LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2" 6LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2"
7 7
8PR = "r1"
9
10SECTION = "x11/gnome/libs" 8SECTION = "x11/gnome/libs"
11 9
12DEPENDS = "glib-2.0 gnutls libxml2 libproxy" 10DEPENDS = "glib-2.0 gnutls libxml2 libproxy sqlite3"
13 11
14PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'gnome', '', d)}" 12# libsoup-gnome is entirely deprecated and just stubs in 2.42 onwards. Enable
15PACKAGECONFIG[gnome] = "--with-gnome,--without-gnome,libgnome-keyring sqlite3" 13# by default but let it be easily disabled.
14PACKAGECONFIG ??= "gnome"
15PACKAGECONFIG[gnome] = "--with-gnome,--without-gnome"
16 16
17SHRT_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}" 17SHRT_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}"
18SRC_URI = "${GNOME_MIRROR}/libsoup/${SHRT_VER}/libsoup-${PV}.tar.xz" 18SRC_URI = "${GNOME_MIRROR}/libsoup/${SHRT_VER}/libsoup-${PV}.tar.xz"
19 19
20SRC_URI[md5sum] = "211ec6b733d4de33056b56838c88436e" 20SRC_URI[md5sum] = "aaccd590a8002b69716f885fa8589887"
21SRC_URI[sha256sum] = "32e81220f53abb1f5bbe7d8b0717119df70667fc48e2342d82209ed1593e71dc" 21SRC_URI[sha256sum] = "20bd5365bb3e7de70fade91ac82c9dea31636318df90b8c26bc4cde2523a8c91"
22 22
23S = "${WORKDIR}/libsoup-${PV}" 23S = "${WORKDIR}/libsoup-${PV}"
24 24