diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-07-21 14:08:40 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-07-21 14:08:40 +0000 |
commit | 889e7461375f2cb6f4429ad2ddd59122c0b0efc0 (patch) | |
tree | 51ee51c9d22ecbcf0989d6a2d46194d3e3131cc4 /contrib/python/generate-manifest-2.5.py | |
parent | b6dcbb6854484bc16afcfbf6ef0f6d94753332ad (diff) | |
parent | b56be2db834164a767740da4b63ee35c42164086 (diff) |
merge of '1f87c0f3663976dafd6caaabc1cf1397f48451e8'
and 'ef5c7f64094e35acf78793dc2ff1cbcc408d2530'
Diffstat (limited to 'contrib/python/generate-manifest-2.5.py')
-rwxr-xr-x | contrib/python/generate-manifest-2.5.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/contrib/python/generate-manifest-2.5.py b/contrib/python/generate-manifest-2.5.py index 8f1ee88937..291251b87d 100755 --- a/contrib/python/generate-manifest-2.5.py +++ b/contrib/python/generate-manifest-2.5.py @@ -184,8 +184,8 @@ if __name__ == "__main__": m.addPackage( 0, "python-compiler", "Python Compiler Support", "python-core", "compiler" ) # package - m.addPackage( 0, "python-compression", "Python High Level Compression Support", "python-core python-zlib", - "gzip.* zipfile.*" ) + m.addPackage( 1, "python-compression", "Python High Level Compression Support", "python-core python-zlib", + "gzip.* zipfile.* tarfile.*" ) m.addPackage( 1, "python-crypt", "Python Basic Cryptographic and Hashing Support", "python-core", "hashlib.* md5.* sha.* lib-dynload/crypt.so lib-dynload/_hashlib.so lib-dynload/_sha256.so lib-dynload/_sha512.so" ) @@ -205,7 +205,7 @@ if __name__ == "__main__": m.addPackage( 0, "python-db", "Python File-Based Database Support", "python-core", "anydbm.* dumbdbm.* whichdb.* " ) - m.addPackage( 0, "python-debugger", "Python Debugger", "python-core python-io python-lang python-re python-stringold python-shell", + m.addPackage( 1, "python-debugger", "Python Debugger", "python-core python-io python-lang python-re python-stringold python-shell python-pprint", "bdb.* pdb.*" ) m.addPackage( 0, "python-distutils", "Python Distribution Utilities", "python-core", @@ -330,4 +330,10 @@ if __name__ == "__main__": m.addPackage( 0, "python-mailbox", "Python Mailbox Format Support", "python-core python-mime", "mailbox.*" ) + m.addPackage( 0, "python-difflib", "Python helpers for computing deltas between objects.", "python-lang python-re", + "difflib.*" ) + + m.addPackage( 0, "python-doctest", "Python framework for running examples in docstrings.", "python-core python-lang python-io python-re python-unittest python-debugger python-difflib", + "doctest.*" ) + m.make() |