summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2025-05-16 08:08:15 -0700
committerKhem Raj <raj.khem@gmail.com>2025-05-17 10:58:32 -0700
commit09e55ef0c2aa33b267a4798a9713a0536c395b3d (patch)
tree515950fa52b628a1a403990f440ec537f64bfc57
parent64bfa16828a1b64f2dc25c037b892b1cf2349d82 (diff)
downloadmeta-openembedded-09e55ef0c2aa33b267a4798a9713a0536c395b3d.tar.gz
osinfo-db-tools: Migrat to using libsoup3
Disable Werror, it gets enabled when build is done from git checkouts perhaps assuming its a developer build, but thats not the case for OE Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/libosinfo/osinfo-db-tools_1.12.0.bb6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/libosinfo/osinfo-db-tools_1.12.0.bb b/meta-oe/recipes-support/libosinfo/osinfo-db-tools_1.12.0.bb
index 4434a851e7..11de5e404b 100644
--- a/meta-oe/recipes-support/libosinfo/osinfo-db-tools_1.12.0.bb
+++ b/meta-oe/recipes-support/libosinfo/osinfo-db-tools_1.12.0.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://libosinfo.org"
4LICENSE = "GPL-2.0-or-later" 4LICENSE = "GPL-2.0-or-later"
5LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" 5LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
6 6
7DEPENDS = "glib-2.0 json-glib libarchive libsoup-2.4" 7DEPENDS = "glib-2.0 json-glib libarchive libsoup"
8 8
9SRC_URI = "git://gitlab.com/libosinfo/osinfo-db-tools.git;branch=main;protocol=https \ 9SRC_URI = "git://gitlab.com/libosinfo/osinfo-db-tools.git;branch=main;protocol=https \
10 " 10 "
@@ -14,4 +14,8 @@ S = "${WORKDIR}/git"
14 14
15inherit meson pkgconfig 15inherit meson pkgconfig
16 16
17do_configure:prepend () {
18 sed -i 's/-Werror//' ${S}/meson.build
19}
20
17BBCLASSEXTEND = "native" 21BBCLASSEXTEND = "native"