aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2008-10-11 04:01:06 +0000
committerMichael Lauer <mickey@vanille-media.de>2008-10-11 04:01:06 +0000
commit2cd952462a38350807f962c94827c1b1a21d58ad (patch)
treea345d541f9366ba2228b58c7d822f10a1553efef /contrib/python
parentb5ee560e2e0517632558c2f94e7dabca58404244 (diff)
downloadopenembedded-2cd952462a38350807f962c94827c1b1a21d58ad.tar.gz
python 2.5 add python-bz2 and python-elementtree (from hrw), add symbol.py to python-lang
Diffstat (limited to 'contrib/python')
-rwxr-xr-xcontrib/python/generate-manifest-2.5.py14
1 files changed, 11 insertions, 3 deletions
diff --git a/contrib/python/generate-manifest-2.5.py b/contrib/python/generate-manifest-2.5.py
index 2560853982..a216bb50b6 100755
--- a/contrib/python/generate-manifest-2.5.py
+++ b/contrib/python/generate-manifest-2.5.py
@@ -237,11 +237,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 lib-dynload/_bisect.so lib-dynload/_heapq.so " +
- "atexit.* bisect.* code.* codeop.* dis.* heapq.* inspect.* keyword.* opcode.* repr.* token.* tokenize.* " +
- "traceback.* linecache.* weakref.*" )
+ "atexit.* bisect.* code.* codeop.* dis.* heapq.* inspect.* keyword.* opcode.* symbol.* repr.* token.* " +
+ " tokenize.* traceback.* linecache.* weakref.*" )
m.addPackage( 1, "python-logging", "Python Logging Support", "python-core python-io python-lang python-pickle python-stringold",
"logging" ) # package
@@ -334,4 +334,12 @@ if __name__ == "__main__":
m.addPackage( 0, "python-mailbox", "Python Mailbox Format Support", "python-core python-mime",
"mailbox.*" )
+ # FIXME consider adding to python-compression
+ m.addPackage( 0, "python-bzip2", "Python bzip2 support", "python-core",
+ "lib-dynload/bz2.so" )
+
+ # FIXME consider adding to some higher level package
+ m.addPackage( 0, "python-elementtree", "Python elementree", "python-core",
+ "lib-dynload/_elementtree.so" )
+
m.make()