diff options
Diffstat (limited to 'scripts/contrib/python')
-rwxr-xr-x | scripts/contrib/python/generate-manifest-3.5.py | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/scripts/contrib/python/generate-manifest-3.5.py b/scripts/contrib/python/generate-manifest-3.5.py index 8e3a3d3737..3a88018c16 100755 --- a/scripts/contrib/python/generate-manifest-3.5.py +++ b/scripts/contrib/python/generate-manifest-3.5.py | |||
@@ -218,7 +218,7 @@ if __name__ == "__main__": | |||
218 | "py_compile.* compileall.*" ) | 218 | "py_compile.* compileall.*" ) |
219 | 219 | ||
220 | m.addPackage( "${PN}-compression", "Python high-level compression support", "${PN}-core ${PN}-codecs ${PN}-importlib ${PN}-threading ${PN}-shell", | 220 | m.addPackage( "${PN}-compression", "Python high-level compression support", "${PN}-core ${PN}-codecs ${PN}-importlib ${PN}-threading ${PN}-shell", |
221 | "gzip.* zipfile.* tarfile.* lib-dynload/bz2.*.so" ) | 221 | "gzip.* zipfile.* tarfile.* lib-dynload/bz2.*.so lib-dynload/zlib.*.so" ) |
222 | 222 | ||
223 | m.addPackage( "${PN}-crypt", "Python basic cryptographic and hashing support", "${PN}-core", | 223 | m.addPackage( "${PN}-crypt", "Python basic cryptographic and hashing support", "${PN}-core", |
224 | "hashlib.* md5.* sha.* lib-dynload/crypt.*.so lib-dynload/_hashlib.*.so lib-dynload/_sha256.*.so lib-dynload/_sha512.*.so" ) | 224 | "hashlib.* md5.* sha.* lib-dynload/crypt.*.so lib-dynload/_hashlib.*.so lib-dynload/_sha256.*.so lib-dynload/_sha512.*.so" ) |
@@ -233,7 +233,7 @@ if __name__ == "__main__": | |||
233 | "ctypes lib-dynload/_ctypes.*.so lib-dynload/_ctypes_test.*.so" ) # directory + low level module | 233 | "ctypes lib-dynload/_ctypes.*.so lib-dynload/_ctypes_test.*.so" ) # directory + low level module |
234 | 234 | ||
235 | m.addPackage( "${PN}-datetime", "Python calendar and time support", "${PN}-core ${PN}-codecs", | 235 | m.addPackage( "${PN}-datetime", "Python calendar and time support", "${PN}-core ${PN}-codecs", |
236 | "_strptime.* calendar.* lib-dynload/datetime.*.so" ) | 236 | "_strptime.* calendar.* datetime.* lib-dynload/_datetime.*.so" ) |
237 | 237 | ||
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" ) |
@@ -256,6 +256,9 @@ if __name__ == "__main__": | |||
256 | m.addPackage( "${PN}-email", "Python email support", "${PN}-core ${PN}-io ${PN}-re ${PN}-mime ${PN}-audio ${PN}-image ${PN}-netclient", | 256 | m.addPackage( "${PN}-email", "Python email support", "${PN}-core ${PN}-io ${PN}-re ${PN}-mime ${PN}-audio ${PN}-image ${PN}-netclient", |
257 | "imaplib.* email" ) # package | 257 | "imaplib.* email" ) # package |
258 | 258 | ||
259 | m.addPackage( "${PN}-enum", "Python support for enumerations", "${PN}-core", | ||
260 | "enum.*" ) | ||
261 | |||
259 | m.addPackage( "${PN}-fcntl", "Python's fcntl interface", "${PN}-core", | 262 | m.addPackage( "${PN}-fcntl", "Python's fcntl interface", "${PN}-core", |
260 | "lib-dynload/fcntl.*.so" ) | 263 | "lib-dynload/fcntl.*.so" ) |
261 | 264 | ||
@@ -336,11 +339,17 @@ if __name__ == "__main__": | |||
336 | m.addPackage( "${PN}-resource", "Python resource control interface", "${PN}-core", | 339 | m.addPackage( "${PN}-resource", "Python resource control interface", "${PN}-core", |
337 | "lib-dynload/resource.*.so" ) | 340 | "lib-dynload/resource.*.so" ) |
338 | 341 | ||
342 | m.addPackage( "${PN}-selectors", "Python High-level I/O multiplexing", "${PN}-core", | ||
343 | "selectors.*" ) | ||
344 | |||
339 | m.addPackage( "${PN}-shell", "Python shell-like functionality", "${PN}-core ${PN}-re ${PN}-compression", | 345 | m.addPackage( "${PN}-shell", "Python shell-like functionality", "${PN}-core ${PN}-re ${PN}-compression", |
340 | "cmd.* commands.* dircache.* fnmatch.* glob.* popen2.* shlex.* shutil.*" ) | 346 | "cmd.* commands.* dircache.* fnmatch.* glob.* popen2.* shlex.* shutil.*" ) |
341 | 347 | ||
342 | m.addPackage( "${PN}-subprocess", "Python subprocess support", "${PN}-core ${PN}-io ${PN}-re ${PN}-fcntl ${PN}-pickle ${PN}-threading", | 348 | m.addPackage( "${PN}-signal", "Python set handlers for asynchronous events support", "${PN}-core", |
343 | "subprocess.*" ) | 349 | "signal.*" ) |
350 | |||
351 | m.addPackage( "${PN}-subprocess", "Python subprocess support", "${PN}-core ${PN}-io ${PN}-re ${PN}-fcntl ${PN}-pickle ${PN}-threading ${PN}-signal ${PN}-selectors", | ||
352 | "subprocess.* lib-dynload/_posixsubprocess.*.so" ) | ||
344 | 353 | ||
345 | m.addPackage( "${PN}-sqlite3", "Python Sqlite3 database support", "${PN}-core ${PN}-datetime ${PN}-lang ${PN}-crypt ${PN}-io ${PN}-threading", | 354 | m.addPackage( "${PN}-sqlite3", "Python Sqlite3 database support", "${PN}-core ${PN}-datetime ${PN}-lang ${PN}-crypt ${PN}-io ${PN}-threading", |
346 | "lib-dynload/_sqlite3.*.so sqlite3/dbapi2.* sqlite3/__init__.* sqlite3/dump.*" ) | 355 | "lib-dynload/_sqlite3.*.so sqlite3/dbapi2.* sqlite3/__init__.* sqlite3/dump.*" ) |