diff options
author | Alejandro Hernandez <alejandro.hernandez@linux.intel.com> | 2015-09-18 21:27:54 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-23 09:53:06 +0100 |
commit | 6a02bbd5de2f08f279c0e856cbee0d575a229876 (patch) | |
tree | edb490d4c0402a4909c5e63945f98f0d1877646c | |
parent | a7dd7586353bc1a74174801904443cd98765f3c6 (diff) | |
download | poky-6a02bbd5de2f08f279c0e856cbee0d575a229876.tar.gz |
python3-debugger: Adds pkgutils dependency to pdb
python3-debugger fails to be invoked to debug other scripts complaining about
not being able to import pkutil, this patch adds pkgutil as a dependency for python3-debugger
fixing the issue.
[YOCTO #8334]
(From OE-Core rev: f4d7f7075b3da1a3a37d6bb3e19613e7a068a63c)
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/python/python-3.4-manifest.inc | 2 | ||||
-rwxr-xr-x | scripts/contrib/python/generate-manifest-3.4.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/python/python-3.4-manifest.inc b/meta/recipes-devtools/python/python-3.4-manifest.inc index f828623d80..97070b6fad 100644 --- a/meta/recipes-devtools/python/python-3.4-manifest.inc +++ b/meta/recipes-devtools/python/python-3.4-manifest.inc | |||
@@ -58,7 +58,7 @@ RDEPENDS_${PN}-db="${PN}-core" | |||
58 | FILES_${PN}-db="${libdir}/python3.4/anydbm.* ${libdir}/python3.4/dumbdbm.* ${libdir}/python3.4/whichdb.* ${libdir}/python3.4/dbm ${libdir}/python3.4/lib-dynload/_dbm.*.so " | 58 | FILES_${PN}-db="${libdir}/python3.4/anydbm.* ${libdir}/python3.4/dumbdbm.* ${libdir}/python3.4/whichdb.* ${libdir}/python3.4/dbm ${libdir}/python3.4/lib-dynload/_dbm.*.so " |
59 | 59 | ||
60 | SUMMARY_${PN}-debugger="Python debugger" | 60 | SUMMARY_${PN}-debugger="Python debugger" |
61 | RDEPENDS_${PN}-debugger="${PN}-core ${PN}-io ${PN}-lang ${PN}-re ${PN}-stringold ${PN}-shell ${PN}-pprint ${PN}-importlib" | 61 | RDEPENDS_${PN}-debugger="${PN}-core ${PN}-io ${PN}-lang ${PN}-re ${PN}-stringold ${PN}-shell ${PN}-pprint ${PN}-importlib ${PN}-pkgutil" |
62 | FILES_${PN}-debugger="${libdir}/python3.4/bdb.* ${libdir}/python3.4/pdb.* " | 62 | FILES_${PN}-debugger="${libdir}/python3.4/bdb.* ${libdir}/python3.4/pdb.* " |
63 | 63 | ||
64 | SUMMARY_${PN}-dev="Python development package" | 64 | SUMMARY_${PN}-dev="Python development package" |
diff --git a/scripts/contrib/python/generate-manifest-3.4.py b/scripts/contrib/python/generate-manifest-3.4.py index 9e9debd905..ca2fa6117d 100755 --- a/scripts/contrib/python/generate-manifest-3.4.py +++ b/scripts/contrib/python/generate-manifest-3.4.py | |||
@@ -238,7 +238,7 @@ if __name__ == "__main__": | |||
238 | m.addPackage( "${PN}-db", "Python file-based database support", "${PN}-core", | 238 | m.addPackage( "${PN}-db", "Python file-based database support", "${PN}-core", |
239 | "anydbm.* dumbdbm.* whichdb.* dbm lib-dynload/_dbm.*.so" ) | 239 | "anydbm.* dumbdbm.* whichdb.* dbm lib-dynload/_dbm.*.so" ) |
240 | 240 | ||
241 | m.addPackage( "${PN}-debugger", "Python debugger", "${PN}-core ${PN}-io ${PN}-lang ${PN}-re ${PN}-stringold ${PN}-shell ${PN}-pprint ${PN}-importlib", | 241 | m.addPackage( "${PN}-debugger", "Python debugger", "${PN}-core ${PN}-io ${PN}-lang ${PN}-re ${PN}-stringold ${PN}-shell ${PN}-pprint ${PN}-importlib ${PN}-pkgutil", |
242 | "bdb.* pdb.*" ) | 242 | "bdb.* pdb.*" ) |
243 | 243 | ||
244 | m.addPackage( "${PN}-difflib", "Python helpers for computing deltas between objects", "${PN}-lang ${PN}-re", | 244 | m.addPackage( "${PN}-difflib", "Python helpers for computing deltas between objects", "${PN}-lang ${PN}-re", |