summaryrefslogtreecommitdiffstats
path: root/meta/recipes-gnome/gobject-introspection
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2023-12-15 08:52:01 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-12-21 10:38:29 +0000
commit1d4447abb979e524d4f2dd71fb41069c5f760f9c (patch)
treeecc09ecf51cd77fda2f244c69432376041a29e18 /meta/recipes-gnome/gobject-introspection
parent7cac39b4a2388e4dedca0bc6a3aec067eed98acd (diff)
downloadpoky-1d4447abb979e524d4f2dd71fb41069c5f760f9c.tar.gz
gobject-introspection: depend on setuptools to obtain distutils module
g-i still uses distutils in various places, and upstream MRs and tickets aren't getting a lot of traction. As distutils is gone from the core library in python 3.12, rely on setuptools copy. (From OE-Core rev: 2872aa59d24505b1088d570453e4ec6c83974cc9) 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-gnome/gobject-introspection')
-rw-r--r--meta/recipes-gnome/gobject-introspection/gobject-introspection_1.78.1.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.78.1.bb b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.78.1.bb
index 2c6fb7aaa3..05a08a50e0 100644
--- a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.78.1.bb
+++ b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.78.1.bb
@@ -188,6 +188,7 @@ FILES:${PN}-dev:append = " ${datadir}/gobject-introspection-1.0/tests/*.c \
188FILES:${PN}-dbg += "${libdir}/gobject-introspection/giscanner/.debug/" 188FILES:${PN}-dbg += "${libdir}/gobject-introspection/giscanner/.debug/"
189FILES:${PN}-staticdev += "${libdir}/gobject-introspection/giscanner/*.a" 189FILES:${PN}-staticdev += "${libdir}/gobject-introspection/giscanner/*.a"
190 190
191RDEPENDS:${PN} = "python3-pickle python3-xml" 191# setuptools can be removed when upstream removes all uses of distutils
192RDEPENDS:${PN} = "python3-pickle python3-xml python3-setuptools"
192 193
193BBCLASSEXTEND = "native" 194BBCLASSEXTEND = "native"