diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2014-03-20 17:41:39 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-21 12:05:55 +0000 |
commit | 7df7404d7becb32aa76f99a34620a8c9f6c6826f (patch) | |
tree | aa32e8a8ee3dce1f721af90c0302c1c3561d0aef | |
parent | dd1e12a585586cc6e880a4ed9e0874e03aa77f5b (diff) | |
download | poky-7df7404d7becb32aa76f99a34620a8c9f6c6826f.tar.gz |
python3: sync module dependencies from 2.7
These have been added recently to 2.7 but were missing in the 3.3
script/inc file.
(From OE-Core rev: 4669afac1004a89e6b87ec46136ca3e7448700d4)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/python/python-3.3-manifest.inc | 6 | ||||
-rwxr-xr-x | scripts/contrib/python/generate-manifest-3.3.py | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-devtools/python/python-3.3-manifest.inc b/meta/recipes-devtools/python/python-3.3-manifest.inc index 2cfc3aea90..ea56970842 100644 --- a/meta/recipes-devtools/python/python-3.3-manifest.inc +++ b/meta/recipes-devtools/python/python-3.3-manifest.inc | |||
@@ -138,7 +138,7 @@ RDEPENDS_${PN}-mmap="${PN}-core ${PN}-io" | |||
138 | FILES_${PN}-mmap="${libdir}/python3.3/lib-dynload/mmap.*.so " | 138 | FILES_${PN}-mmap="${libdir}/python3.3/lib-dynload/mmap.*.so " |
139 | 139 | ||
140 | SUMMARY_${PN}-multiprocessing="Python multiprocessing support" | 140 | SUMMARY_${PN}-multiprocessing="Python multiprocessing support" |
141 | RDEPENDS_${PN}-multiprocessing="${PN}-core ${PN}-io ${PN}-lang" | 141 | RDEPENDS_${PN}-multiprocessing="${PN}-core ${PN}-io ${PN}-lang ${PN}-pickle ${PN}-threading ${PN}-ctypes ${PN}-mmap" |
142 | FILES_${PN}-multiprocessing="${libdir}/python3.3/lib-dynload/_multiprocessing.*.so ${libdir}/python3.3/multiprocessing " | 142 | FILES_${PN}-multiprocessing="${libdir}/python3.3/lib-dynload/_multiprocessing.*.so ${libdir}/python3.3/multiprocessing " |
143 | 143 | ||
144 | SUMMARY_${PN}-netclient="Python Internet Protocol clients" | 144 | SUMMARY_${PN}-netclient="Python Internet Protocol clients" |
@@ -162,7 +162,7 @@ RDEPENDS_${PN}-pkgutil="${PN}-core" | |||
162 | FILES_${PN}-pkgutil="${libdir}/python3.3/pkgutil.* " | 162 | FILES_${PN}-pkgutil="${libdir}/python3.3/pkgutil.* " |
163 | 163 | ||
164 | SUMMARY_${PN}-pprint="Python pretty-print support" | 164 | SUMMARY_${PN}-pprint="Python pretty-print support" |
165 | RDEPENDS_${PN}-pprint="${PN}-core" | 165 | RDEPENDS_${PN}-pprint="${PN}-core ${PN}-io" |
166 | FILES_${PN}-pprint="${libdir}/python3.3/pprint.* " | 166 | FILES_${PN}-pprint="${libdir}/python3.3/pprint.* " |
167 | 167 | ||
168 | SUMMARY_${PN}-profile="Python basic performance profiling support" | 168 | SUMMARY_${PN}-profile="Python basic performance profiling support" |
@@ -238,7 +238,7 @@ RDEPENDS_${PN}-tkinter="${PN}-core" | |||
238 | FILES_${PN}-tkinter="${libdir}/python3.3/lib-dynload/_tkinter.*.so ${libdir}/python3.3/lib-tk ${libdir}/python3.3/tkinter " | 238 | FILES_${PN}-tkinter="${libdir}/python3.3/lib-dynload/_tkinter.*.so ${libdir}/python3.3/lib-tk ${libdir}/python3.3/tkinter " |
239 | 239 | ||
240 | SUMMARY_${PN}-unittest="Python unit testing framework" | 240 | SUMMARY_${PN}-unittest="Python unit testing framework" |
241 | RDEPENDS_${PN}-unittest="${PN}-core ${PN}-stringold ${PN}-lang" | 241 | RDEPENDS_${PN}-unittest="${PN}-core ${PN}-stringold ${PN}-lang ${PN}-io ${PN}-difflib ${PN}-pprint ${PN}-shell" |
242 | FILES_${PN}-unittest="${libdir}/python3.3/unittest/ " | 242 | FILES_${PN}-unittest="${libdir}/python3.3/unittest/ " |
243 | 243 | ||
244 | SUMMARY_${PN}-unixadmin="Python Unix administration support" | 244 | SUMMARY_${PN}-unixadmin="Python Unix administration support" |
diff --git a/scripts/contrib/python/generate-manifest-3.3.py b/scripts/contrib/python/generate-manifest-3.3.py index 23d1887460..1586c46868 100755 --- a/scripts/contrib/python/generate-manifest-3.3.py +++ b/scripts/contrib/python/generate-manifest-3.3.py | |||
@@ -295,7 +295,7 @@ if __name__ == "__main__": | |||
295 | m.addPackage( "${PN}-mmap", "Python memory-mapped file support", "${PN}-core ${PN}-io", | 295 | m.addPackage( "${PN}-mmap", "Python memory-mapped file support", "${PN}-core ${PN}-io", |
296 | "lib-dynload/mmap.*.so " ) | 296 | "lib-dynload/mmap.*.so " ) |
297 | 297 | ||
298 | m.addPackage( "${PN}-multiprocessing", "Python multiprocessing support", "${PN}-core ${PN}-io ${PN}-lang", | 298 | m.addPackage( "${PN}-multiprocessing", "Python multiprocessing support", "${PN}-core ${PN}-io ${PN}-lang ${PN}-pickle ${PN}-threading ${PN}-ctypes ${PN}-mmap", |
299 | "lib-dynload/_multiprocessing.*.so multiprocessing" ) # package | 299 | "lib-dynload/_multiprocessing.*.so multiprocessing" ) # package |
300 | 300 | ||
301 | m.addPackage( "${PN}-netclient", "Python Internet Protocol clients", "${PN}-core ${PN}-crypt ${PN}-datetime ${PN}-io ${PN}-lang ${PN}-logging ${PN}-mime", | 301 | m.addPackage( "${PN}-netclient", "Python Internet Protocol clients", "${PN}-core ${PN}-crypt ${PN}-datetime ${PN}-io ${PN}-lang ${PN}-logging ${PN}-mime", |
@@ -314,7 +314,7 @@ if __name__ == "__main__": | |||
314 | m.addPackage( "${PN}-pkgutil", "Python package extension utility support", "${PN}-core", | 314 | m.addPackage( "${PN}-pkgutil", "Python package extension utility support", "${PN}-core", |
315 | "pkgutil.*") | 315 | "pkgutil.*") |
316 | 316 | ||
317 | m.addPackage( "${PN}-pprint", "Python pretty-print support", "${PN}-core", | 317 | m.addPackage( "${PN}-pprint", "Python pretty-print support", "${PN}-core ${PN}-io", |
318 | "pprint.*" ) | 318 | "pprint.*" ) |
319 | 319 | ||
320 | m.addPackage( "${PN}-profile", "Python basic performance profiling support", "${PN}-core ${PN}-textutils", | 320 | m.addPackage( "${PN}-profile", "Python basic performance profiling support", "${PN}-core ${PN}-textutils", |
@@ -362,7 +362,7 @@ if __name__ == "__main__": | |||
362 | m.addPackage( "${PN}-tkinter", "Python Tcl/Tk bindings", "${PN}-core", | 362 | m.addPackage( "${PN}-tkinter", "Python Tcl/Tk bindings", "${PN}-core", |
363 | "lib-dynload/_tkinter.*.so lib-tk tkinter" ) # package | 363 | "lib-dynload/_tkinter.*.so lib-tk tkinter" ) # package |
364 | 364 | ||
365 | m.addPackage( "${PN}-unittest", "Python unit testing framework", "${PN}-core ${PN}-stringold ${PN}-lang", | 365 | m.addPackage( "${PN}-unittest", "Python unit testing framework", "${PN}-core ${PN}-stringold ${PN}-lang ${PN}-io ${PN}-difflib ${PN}-pprint ${PN}-shell", |
366 | "unittest/" ) | 366 | "unittest/" ) |
367 | 367 | ||
368 | m.addPackage( "${PN}-unixadmin", "Python Unix administration support", "${PN}-core", | 368 | m.addPackage( "${PN}-unixadmin", "Python Unix administration support", "${PN}-core", |