diff options
author | Alejandro Hernandez <alejandro.hernandez@linux.intel.com> | 2016-09-21 21:03:12 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-23 15:39:36 +0100 |
commit | d2ca721d3134ac1ac1e41331ed9057207a78bc17 (patch) | |
tree | cd9ccf647882584e0045a5d21daf720da445c6f9 /scripts | |
parent | 260ff60f93dc1cea845d3138b4174004cb511454 (diff) | |
download | poky-d2ca721d3134ac1ac1e41331ed9057207a78bc17.tar.gz |
python3: Fixes several python3 dependency problems
This patch adds the packages python3-signal, python3-enum and python3-selectors,
while it also fixes python3-subprocess which in turn fix the installation of
python3-modules
[YOCTO #10276]
(From OE-Core rev: 8c0f2775bcc25f460d7a0b38031690fa10a0f11d)
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/contrib/python/generate-manifest-3.5.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/scripts/contrib/python/generate-manifest-3.5.py b/scripts/contrib/python/generate-manifest-3.5.py index b90a84ff7d..eac493a074 100755 --- a/scripts/contrib/python/generate-manifest-3.5.py +++ b/scripts/contrib/python/generate-manifest-3.5.py | |||
@@ -259,6 +259,9 @@ if __name__ == "__main__": | |||
259 | m.addPackage( "${PN}-email", "Python email support", "${PN}-core ${PN}-io ${PN}-re ${PN}-mime ${PN}-audio ${PN}-image ${PN}-netclient", | 259 | m.addPackage( "${PN}-email", "Python email support", "${PN}-core ${PN}-io ${PN}-re ${PN}-mime ${PN}-audio ${PN}-image ${PN}-netclient", |
260 | "imaplib.* email" ) # package | 260 | "imaplib.* email" ) # package |
261 | 261 | ||
262 | m.addPackage( "${PN}-enum", "Python support for enumerations", "${PN}-core", | ||
263 | "enum.*" ) | ||
264 | |||
262 | m.addPackage( "${PN}-fcntl", "Python's fcntl interface", "${PN}-core", | 265 | m.addPackage( "${PN}-fcntl", "Python's fcntl interface", "${PN}-core", |
263 | "lib-dynload/fcntl.*.so" ) | 266 | "lib-dynload/fcntl.*.so" ) |
264 | 267 | ||
@@ -339,12 +342,18 @@ if __name__ == "__main__": | |||
339 | m.addPackage( "${PN}-resource", "Python resource control interface", "${PN}-core", | 342 | m.addPackage( "${PN}-resource", "Python resource control interface", "${PN}-core", |
340 | "lib-dynload/resource.*.so" ) | 343 | "lib-dynload/resource.*.so" ) |
341 | 344 | ||
345 | m.addPackage( "${PN}-selectors", "Python High-level I/O multiplexing", "${PN}-core", | ||
346 | "selectors.*" ) | ||
347 | |||
342 | m.addPackage( "${PN}-shell", "Python shell-like functionality", "${PN}-core ${PN}-re", | 348 | m.addPackage( "${PN}-shell", "Python shell-like functionality", "${PN}-core ${PN}-re", |
343 | "cmd.* commands.* dircache.* fnmatch.* glob.* popen2.* shlex.* shutil.*" ) | 349 | "cmd.* commands.* dircache.* fnmatch.* glob.* popen2.* shlex.* shutil.*" ) |
344 | 350 | ||
345 | m.addPackage( "${PN}-subprocess", "Python subprocess support", "${PN}-core ${PN}-io ${PN}-re ${PN}-fcntl ${PN}-pickle", | 351 | m.addPackage( "${PN}-subprocess", "Python subprocess support", "${PN}-core ${PN}-io ${PN}-re ${PN}-fcntl ${PN}-pickle ${PN}-signal ${PN}-selectors", |
346 | "subprocess.*" ) | 352 | "subprocess.*" ) |
347 | 353 | ||
354 | m.addPackage( "${PN}-signal", "Python set handlers for asynchronous events support", "${PN}-core", | ||
355 | "signal.*" ) | ||
356 | |||
348 | m.addPackage( "${PN}-sqlite3", "Python Sqlite3 database support", "${PN}-core ${PN}-datetime ${PN}-lang ${PN}-crypt ${PN}-io ${PN}-threading", | 357 | m.addPackage( "${PN}-sqlite3", "Python Sqlite3 database support", "${PN}-core ${PN}-datetime ${PN}-lang ${PN}-crypt ${PN}-io ${PN}-threading", |
349 | "lib-dynload/_sqlite3.*.so sqlite3/dbapi2.* sqlite3/__init__.* sqlite3/dump.*" ) | 358 | "lib-dynload/_sqlite3.*.so sqlite3/dbapi2.* sqlite3/__init__.* sqlite3/dump.*" ) |
350 | 359 | ||