From: Richard Purdie Date: Fri, 9 Aug 2019 09:41:55 +0000 (+0100) Subject: python3-pygobject: Add missing pkgutil RDEPENDS X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~13625 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50048ff2da2cc209fe6bf1452dc2cf2a545fe886;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git python3-pygobject: Add missing pkgutil RDEPENDS With the removal of setuputils, there was a missing runtime dependency on pkgutil which was breaking the selftests for gobject-introspection at runtime. Fix this. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/python/python3-pygobject_3.32.2.bb b/meta/recipes-devtools/python/python3-pygobject_3.32.2.bb index 453fdac2c8b..476957e8871 100644 --- a/meta/recipes-devtools/python/python3-pygobject_3.32.2.bb +++ b/meta/recipes-devtools/python/python3-pygobject_3.32.2.bb @@ -23,6 +23,8 @@ S = "${WORKDIR}/${SRCNAME}-${PV}" PACKAGECONFIG ??= "${@bb.utils.contains_any('DISTRO_FEATURES', [ 'directfb', 'wayland', 'x11' ], 'cairo', '', d)}" +RDEPENDS_${PN} += "python3-pkgutil" + # python3-pycairo is checked on configuration -> DEPENDS # we don't link against python3-pycairo -> RDEPENDS PACKAGECONFIG[cairo] = "-Dpycairo=true,-Dpycairo=false, cairo python3-pycairo, python3-pycairo"