mirror of
https://git.yoctoproject.org/poky
synced 2026-02-12 19:53:03 +01:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
d9adc413ca
commit
091a598f30
@@ -6,10 +6,19 @@ LICENSE = "LGPLv2.1"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7"
|
||||
|
||||
GNOMEBASEBUILDCLASS = "meson"
|
||||
inherit gnomebase distutils3-base gobject-introspection upstream-version-is-even
|
||||
inherit gnomebase distutils3-base upstream-version-is-even
|
||||
|
||||
DEPENDS += "python3 glib-2.0"
|
||||
|
||||
# Generating introspection data depends on a combination of native and target
|
||||
# introspection tools, and qemu to run the target tools.
|
||||
DEPENDS:append:class-target = " gobject-introspection gobject-introspection-native qemu-native prelink-native"
|
||||
|
||||
# Even though introspection is disabled on -native, gobject-introspection package is still
|
||||
# needed for m4 macros.
|
||||
DEPENDS:append:class-native = " gobject-introspection-native"
|
||||
DEPENDS:append:class-nativesdk = " gobject-introspection-native"
|
||||
|
||||
SRCNAME="pygobject"
|
||||
|
||||
SRC_URI = " \
|
||||
@@ -18,8 +27,6 @@ SRC_URI = " \
|
||||
"
|
||||
SRC_URI[sha256sum] = "9b12616e32cfc792f9dc841d9c472a41a35b85ba67d3a6eb427e307a6fe4367b"
|
||||
|
||||
UNKNOWN_CONFIGURE_WHITELIST = "introspection"
|
||||
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
PACKAGECONFIG ??= "${@bb.utils.contains_any('DISTRO_FEATURES', [ 'directfb', 'wayland', 'x11' ], 'cairo', '', d)}"
|
||||
|
||||
Reference in New Issue
Block a user