diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-10-27 11:07:34 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-28 14:16:31 +0100 |
commit | 091a598f3065b6fb851d550c56577635dbcd6d67 (patch) | |
tree | 03e40873b9cba4128802a21924f10c2966207b84 | |
parent | d9adc413ca837ee3ba5188a37f7fbbb957a33cbe (diff) | |
download | poky-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>
-rw-r--r-- | meta/recipes-devtools/python/python3-pygobject_3.42.0.bb | 13 |
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" | |||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7" |
7 | 7 | ||
8 | GNOMEBASEBUILDCLASS = "meson" | 8 | GNOMEBASEBUILDCLASS = "meson" |
9 | inherit gnomebase distutils3-base gobject-introspection upstream-version-is-even | 9 | inherit gnomebase distutils3-base upstream-version-is-even |
10 | 10 | ||
11 | DEPENDS += "python3 glib-2.0" | 11 | DEPENDS += "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. | ||
15 | DEPENDS: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. | ||
19 | DEPENDS:append:class-native = " gobject-introspection-native" | ||
20 | DEPENDS:append:class-nativesdk = " gobject-introspection-native" | ||
21 | |||
13 | SRCNAME="pygobject" | 22 | SRCNAME="pygobject" |
14 | 23 | ||
15 | SRC_URI = " \ | 24 | SRC_URI = " \ |
@@ -18,8 +27,6 @@ SRC_URI = " \ | |||
18 | " | 27 | " |
19 | SRC_URI[sha256sum] = "9b12616e32cfc792f9dc841d9c472a41a35b85ba67d3a6eb427e307a6fe4367b" | 28 | SRC_URI[sha256sum] = "9b12616e32cfc792f9dc841d9c472a41a35b85ba67d3a6eb427e307a6fe4367b" |
20 | 29 | ||
21 | UNKNOWN_CONFIGURE_WHITELIST = "introspection" | ||
22 | |||
23 | S = "${WORKDIR}/${SRCNAME}-${PV}" | 30 | S = "${WORKDIR}/${SRCNAME}-${PV}" |
24 | 31 | ||
25 | PACKAGECONFIG ??= "${@bb.utils.contains_any('DISTRO_FEATURES', [ 'directfb', 'wayland', 'x11' ], 'cairo', '', d)}" | 32 | PACKAGECONFIG ??= "${@bb.utils.contains_any('DISTRO_FEATURES', [ 'directfb', 'wayland', 'x11' ], 'cairo', '', d)}" |