summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-10-27 11:07:34 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-28 14:16:31 +0100
commit091a598f3065b6fb851d550c56577635dbcd6d67 (patch)
tree03e40873b9cba4128802a21924f10c2966207b84 /meta/recipes-devtools/python
parentd9adc413ca837ee3ba5188a37f7fbbb957a33cbe (diff)
downloadpoky-091a598f3065b6fb851d550c56577635dbcd6d67.tar.gz
python3-pygobject: do not supply unknown g-i options
meson 0.60 turns unknown options into them hard errors, so instead of relying on g-i class (where the options are mandatory) add g-i dependencies explicitly. (From OE-Core rev: 9c0cc06a3d857124c0e1c1c9342f79ba5a3b10bc) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r--meta/recipes-devtools/python/python3-pygobject_3.42.0.bb13
1 files changed, 10 insertions, 3 deletions
diff --git a/meta/recipes-devtools/python/python3-pygobject_3.42.0.bb b/meta/recipes-devtools/python/python3-pygobject_3.42.0.bb
index 461ddcfe31..7ff7c5b4dd 100644
--- a/meta/recipes-devtools/python/python3-pygobject_3.42.0.bb
+++ b/meta/recipes-devtools/python/python3-pygobject_3.42.0.bb
@@ -6,10 +6,19 @@ LICENSE = "LGPLv2.1"
6LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7" 6LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7"
7 7
8GNOMEBASEBUILDCLASS = "meson" 8GNOMEBASEBUILDCLASS = "meson"
9inherit gnomebase distutils3-base gobject-introspection upstream-version-is-even 9inherit gnomebase distutils3-base upstream-version-is-even
10 10
11DEPENDS += "python3 glib-2.0" 11DEPENDS += "python3 glib-2.0"
12 12
13# Generating introspection data depends on a combination of native and target
14# introspection tools, and qemu to run the target tools.
15DEPENDS:append:class-target = " gobject-introspection gobject-introspection-native qemu-native prelink-native"
16
17# Even though introspection is disabled on -native, gobject-introspection package is still
18# needed for m4 macros.
19DEPENDS:append:class-native = " gobject-introspection-native"
20DEPENDS:append:class-nativesdk = " gobject-introspection-native"
21
13SRCNAME="pygobject" 22SRCNAME="pygobject"
14 23
15SRC_URI = " \ 24SRC_URI = " \
@@ -18,8 +27,6 @@ SRC_URI = " \
18" 27"
19SRC_URI[sha256sum] = "9b12616e32cfc792f9dc841d9c472a41a35b85ba67d3a6eb427e307a6fe4367b" 28SRC_URI[sha256sum] = "9b12616e32cfc792f9dc841d9c472a41a35b85ba67d3a6eb427e307a6fe4367b"
20 29
21UNKNOWN_CONFIGURE_WHITELIST = "introspection"
22
23S = "${WORKDIR}/${SRCNAME}-${PV}" 30S = "${WORKDIR}/${SRCNAME}-${PV}"
24 31
25PACKAGECONFIG ??= "${@bb.utils.contains_any('DISTRO_FEATURES', [ 'directfb', 'wayland', 'x11' ], 'cairo', '', d)}" 32PACKAGECONFIG ??= "${@bb.utils.contains_any('DISTRO_FEATURES', [ 'directfb', 'wayland', 'x11' ], 'cairo', '', d)}"