From 0f3931ecb1c0a1987bb417da4201d72757efb048 Mon Sep 17 00:00:00 2001 From: John Lee Date: Mon, 21 Jul 2008 08:59:52 +0000 Subject: generate-manifest-2.5.py: not in sync with manifest.inc * python-compression with tarfile is not in generate-manifest --- contrib/python/generate-manifest-2.5.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/python') diff --git a/contrib/python/generate-manifest-2.5.py b/contrib/python/generate-manifest-2.5.py index 8f1ee88937..0eab961d43 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" ) -- cgit v1.2.3 From f0e7c6dbe2141e8e7ce189f3b2e6011cc441e569 Mon Sep 17 00:00:00 2001 From: John Lee Date: Mon, 21 Jul 2008 09:00:30 +0000 Subject: generate-manifest-2.5.py: pdb requires pprint --- contrib/python/generate-manifest-2.5.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/python') diff --git a/contrib/python/generate-manifest-2.5.py b/contrib/python/generate-manifest-2.5.py index 0eab961d43..1a30b7865a 100755 --- a/contrib/python/generate-manifest-2.5.py +++ b/contrib/python/generate-manifest-2.5.py @@ -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", -- cgit v1.2.3 From 4f39c69d732f72bef35affd07866728380cf9916 Mon Sep 17 00:00:00 2001 From: John Lee Date: Mon, 21 Jul 2008 09:02:00 +0000 Subject: generate-manifest-2.5.py: add python-difflib --- contrib/python/generate-manifest-2.5.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'contrib/python') diff --git a/contrib/python/generate-manifest-2.5.py b/contrib/python/generate-manifest-2.5.py index 1a30b7865a..049fc32553 100755 --- a/contrib/python/generate-manifest-2.5.py +++ b/contrib/python/generate-manifest-2.5.py @@ -330,4 +330,7 @@ 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.make() -- cgit v1.2.3 From 784f75ef1337630304dad3c69d31f700a7f5618d Mon Sep 17 00:00:00 2001 From: John Lee Date: Mon, 21 Jul 2008 09:02:41 +0000 Subject: generate-manifest-2.5.py: add python-doctest --- contrib/python/generate-manifest-2.5.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'contrib/python') diff --git a/contrib/python/generate-manifest-2.5.py b/contrib/python/generate-manifest-2.5.py index 049fc32553..291251b87d 100755 --- a/contrib/python/generate-manifest-2.5.py +++ b/contrib/python/generate-manifest-2.5.py @@ -333,4 +333,7 @@ if __name__ == "__main__": 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() -- cgit v1.2.3