aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2006-10-14 19:23:05 +0000
committerMichael Lauer <mickey@vanille-media.de>2006-10-14 19:23:05 +0000
commitec04367f46c87d5d7046b7621ee266d5723bff26 (patch)
treef8dfa374c6e8b8c349860594a6bef38c2a42ccae /contrib
parent82c1da2b581162386d8ec5ff0e707c9c3e5578a6 (diff)
downloadopenembedded-ec04367f46c87d5d7046b7621ee266d5723bff26.tar.gz
python: add heapq and bisect support to python-lang, remove bisect from python-threading
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/python/generate-manifest.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/contrib/python/generate-manifest.py b/contrib/python/generate-manifest.py
index 0c0aea27c1..0b91347a48 100755
--- a/contrib/python/generate-manifest.py
+++ b/contrib/python/generate-manifest.py
@@ -236,10 +236,11 @@ if __name__ == "__main__":
"lib-dynload/_socket.so lib-dynload/_ssl.so lib-dynload/select.so lib-dynload/termios.so lib-dynload/cStringIO.so "
"pipes.* socket.* tempfile.* StringIO.* " )
- m.addPackage( 0, "python-lang", "Python Low-Level Language Support", "python-core",
+ m.addPackage( 1, "python-lang", "Python Low-Level Language Support", "python-core",
"lib-dynload/array.so lib-dynload/parser.so lib-dynload/operator.so lib-dynload/_weakref.so " +
- "lib-dynload/itertools.so lib-dynload/collections.so " +
- "atexit.* code.* codeop.* dis.* inspect.* keyword.* opcode.* repr.* token.* tokenize.* traceback.* linecache.* weakref.*" )
+ "lib-dynload/itertools.so lib-dynload/collections.so lib-dynload/_bisect.so lib-dynload/_heapq.so " +
+ "atexit.* bisect.* code.* codeop.* dis.* heapq.* inspect.* keyword.* opcode.* repr.* token.* tokenize.* " +
+ "traceback.* linecache.* weakref.*" )
m.addPackage( 0, "python-logging", "Python Logging Support", "python-core",
"logging" ) # package
@@ -305,8 +306,8 @@ if __name__ == "__main__":
m.addPackage( 0, "python-tests", "Python Tests", "python-core",
"test" ) # package
- m.addPackage( 0, "python-threading", "Python Threading & Synchronization Support", "python-core, python-lang",
- "_threading_local.* bisect.* dummy_thread.* dummy_threading.* mutex.* threading.* Queue.*" )
+ m.addPackage( 1, "python-threading", "Python Threading & Synchronization Support", "python-core, python-lang",
+ "_threading_local.* dummy_thread.* dummy_threading.* mutex.* threading.* Queue.*" )
m.addPackage( 0, "python-unittest", "Python Unit Testing Framework", "python-core, python-stringold, python-lang",
"unittest.*" )