diff options
author | Mike Looijmans <mike.looijmans@topic.nl> | 2013-12-06 07:46:51 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-06 13:54:23 +0000 |
commit | 2b898fe10bbbf2dbc9d7a3dacdd7d66e81f28c95 (patch) | |
tree | f8639c5263960b52c51bbe87246f04508bf20766 /scripts | |
parent | 66f28a9837fa92e22ad9f84fa54644c30088c3b3 (diff) | |
download | poky-2b898fe10bbbf2dbc9d7a3dacdd7d66e81f28c95.tar.gz |
python: Add missing RDEPENDS for python-unittest
After installing python-unittest, the following errors occur when executing
"import unittest" from a python commandline:
ImportError: No module named StringIO
ImportError: No module named pprint
ImportError: No module named difflib
ImportError: No module named pprint
ImportError: No module named fnmatch
Fix this by adding the missing dependencies to the generator script and run
the generator.
(From OE-Core rev: 496adfe84ef05d031444988d41451a018133f5a8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/contrib/python/generate-manifest-2.7.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/contrib/python/generate-manifest-2.7.py b/scripts/contrib/python/generate-manifest-2.7.py index 124a1a42ca..6e73c48dff 100755 --- a/scripts/contrib/python/generate-manifest-2.7.py +++ b/scripts/contrib/python/generate-manifest-2.7.py | |||
@@ -367,7 +367,7 @@ if __name__ == "__main__": | |||
367 | m.addPackage( "${PN}-tkinter", "Python Tcl/Tk Bindings", "${PN}-core", | 367 | m.addPackage( "${PN}-tkinter", "Python Tcl/Tk Bindings", "${PN}-core", |
368 | "lib-dynload/_tkinter.so lib-tk" ) # package | 368 | "lib-dynload/_tkinter.so lib-tk" ) # package |
369 | 369 | ||
370 | m.addPackage( "${PN}-unittest", "Python Unit Testing Framework", "${PN}-core ${PN}-stringold ${PN}-lang", | 370 | m.addPackage( "${PN}-unittest", "Python Unit Testing Framework", "${PN}-core ${PN}-stringold ${PN}-lang ${PN}-io ${PN}-difflib ${PN}-pprint ${PN}-shell", |
371 | "unittest/" ) | 371 | "unittest/" ) |
372 | 372 | ||
373 | m.addPackage( "${PN}-unixadmin", "Python Unix Administration Support", "${PN}-core", | 373 | m.addPackage( "${PN}-unixadmin", "Python Unix Administration Support", "${PN}-core", |