python-setuptools: Improving the runtime dependencies
authorLukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de>
Thu, 18 Apr 2013 05:40:11 +0000 (07:40 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 22 Apr 2013 13:45:03 +0000 (14:45 +0100)
When trying to import setuptools on a minimal image, it reports that some
python module is missing. We add those missing python modules as runtime
dependency.

(From OE-Core rev: c5de114f63fe3d60a48622ec5be8fa34ce177191)

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/python/python-setuptools_0.6c11.bb

index 8608104..f09a312 100644 (file)
@@ -23,6 +23,14 @@ do_install_prepend() {
 }
 
 RDEPENDS_${PN} = "\
+  python-stringold \
+  python-email \
+  python-shell \
+  python-distutils \
+  python-compression \
+"
+
+RDEPENDS_${PN}_class-native = "\
   python-distutils \
   python-compression \
 "