From: Kai Kang Date: Fri, 12 Oct 2018 05:47:31 +0000 (+0800) Subject: gobject-introspection: add required python modules to rdepends X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~16434 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa1bad8d96f7f0b8bf5fd2b85ad10b783ff2d303;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git gobject-introspection: add required python modules to rdepends It fails to run g-ir-scanner from package gobject-introspection that missing python modules 'xml' and 'pickle'. Add them to rdepends. Signed-off-by: Kai Kang Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.0.bb b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.0.bb index de898a788b0..2c8cfa6bd95 100644 --- a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.0.bb +++ b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.0.bb @@ -194,4 +194,6 @@ FILES_${PN}-dev_append = " ${datadir}/gobject-introspection-1.0/tests/*.c \ FILES_${PN}-dbg += "${libdir}/gobject-introspection/giscanner/.debug/" FILES_${PN}-staticdev += "${libdir}/gobject-introspection/giscanner/*.a" +RDEPENDS_${PN} = "python3-pickle python3-xml" + BBCLASSEXTEND = "native"