summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDerek Straka <derek@asterius.io>2016-07-11 14:05:22 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-08-31 20:37:44 +0100
commit8854de1ffd283be9fc899ad10027b7872e66d2a6 (patch)
tree5d62764875899fca799fdbaaf011eac9a246bb77 /scripts
parentcefa06d9852df6bd39a7bfe8c4f2d2b2ce4226ce (diff)
downloadpoky-8854de1ffd283be9fc899ad10027b7872e66d2a6.tar.gz
python3: update manifest RDEPENDS for importlib and compression packages
zipfile.py has dependencies on importlib, threading, and shell importlib has a dependency on lang operator and contextlib added to the lang package instead of falling into misc (From OE-Core rev: 8bbfe9bd229e3f795577eb5df1cd5104651e2ba2) Signed-off-by: Derek Straka <derek@asterius.io> (cherry picked from commit 769ad8e114fda1fe112d3747408edbeb7b066a85) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/contrib/python/generate-manifest-3.5.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/contrib/python/generate-manifest-3.5.py b/scripts/contrib/python/generate-manifest-3.5.py
index f31525a468..b90a84ff7d 100755
--- a/scripts/contrib/python/generate-manifest-3.5.py
+++ b/scripts/contrib/python/generate-manifest-3.5.py
@@ -220,7 +220,7 @@ if __name__ == "__main__":
220 m.addPackage( "${PN}-compile", "Python bytecode compilation support", "${PN}-core", 220 m.addPackage( "${PN}-compile", "Python bytecode compilation support", "${PN}-core",
221 "py_compile.* compileall.*" ) 221 "py_compile.* compileall.*" )
222 222
223 m.addPackage( "${PN}-compression", "Python high-level compression support", "${PN}-core ${PN}-codecs", 223 m.addPackage( "${PN}-compression", "Python high-level compression support", "${PN}-core ${PN}-codecs ${PN}-importlib ${PN}-threading ${PN}-shell",
224 "gzip.* zipfile.* tarfile.* lib-dynload/bz2.*.so" ) 224 "gzip.* zipfile.* tarfile.* lib-dynload/bz2.*.so" )
225 225
226 m.addPackage( "${PN}-crypt", "Python basic cryptographic and hashing support", "${PN}-core", 226 m.addPackage( "${PN}-crypt", "Python basic cryptographic and hashing support", "${PN}-core",
@@ -265,7 +265,7 @@ if __name__ == "__main__":
265 m.addPackage( "${PN}-html", "Python HTML processing support", "${PN}-core", 265 m.addPackage( "${PN}-html", "Python HTML processing support", "${PN}-core",
266 "formatter.* htmlentitydefs.* htmllib.* markupbase.* sgmllib.* HTMLParser.* " ) 266 "formatter.* htmlentitydefs.* htmllib.* markupbase.* sgmllib.* HTMLParser.* " )
267 267
268 m.addPackage( "${PN}-importlib", "Python import implementation library", "${PN}-core", 268 m.addPackage( "${PN}-importlib", "Python import implementation library", "${PN}-core ${PN}-lang",
269 "importlib" ) 269 "importlib" )
270 270
271 m.addPackage( "${PN}-gdbm", "Python GNU database support", "${PN}-core", 271 m.addPackage( "${PN}-gdbm", "Python GNU database support", "${PN}-core",
@@ -284,7 +284,7 @@ if __name__ == "__main__":
284 m.addPackage( "${PN}-lang", "Python low-level language support", "${PN}-core", 284 m.addPackage( "${PN}-lang", "Python low-level language support", "${PN}-core",
285 "lib-dynload/_bisect.*.so lib-dynload/_collections.*.so lib-dynload/_heapq.*.so lib-dynload/_weakref.*.so lib-dynload/_functools.*.so " + 285 "lib-dynload/_bisect.*.so lib-dynload/_collections.*.so lib-dynload/_heapq.*.so lib-dynload/_weakref.*.so lib-dynload/_functools.*.so " +
286 "lib-dynload/array.*.so lib-dynload/itertools.*.so lib-dynload/operator.*.so lib-dynload/parser.*.so " + 286 "lib-dynload/array.*.so lib-dynload/itertools.*.so lib-dynload/operator.*.so lib-dynload/parser.*.so " +
287 "atexit.* bisect.* code.* codeop.* collections.* _collections_abc.* dis.* functools.* heapq.* inspect.* keyword.* opcode.* symbol.* repr.* token.* " + 287 "atexit.* bisect.* code.* codeop.* collections.* _collections_abc.* contextlib.* dis.* functools.* heapq.* inspect.* keyword.* opcode.* operator.* symbol.* repr.* token.* " +
288 "tokenize.* traceback.* weakref.*" ) 288 "tokenize.* traceback.* weakref.*" )
289 289
290 m.addPackage( "${PN}-logging", "Python logging support", "${PN}-core ${PN}-io ${PN}-lang ${PN}-pickle ${PN}-stringold", 290 m.addPackage( "${PN}-logging", "Python logging support", "${PN}-core ${PN}-io ${PN}-lang ${PN}-pickle ${PN}-stringold",