diff options
author | Michael Lauer <mickey@vanille-media.de> | 2007-07-21 14:31:25 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2007-07-21 14:31:25 +0000 |
commit | f2a42448067579648da7512bf759649bed7cb797 (patch) | |
tree | 80c2ffcbfeb8a96c08d73e8583e21ed181840ccb /contrib | |
parent | 275cf177e1dd0179d7c48dbf067115669b44b717 (diff) |
python: add subpackage python-debugger including pdb.py* and bdb.py*
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/python/generate-manifest.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/python/generate-manifest.py b/contrib/python/generate-manifest.py index 0267a3e980..730c883bd3 100755 --- a/contrib/python/generate-manifest.py +++ b/contrib/python/generate-manifest.py @@ -208,6 +208,9 @@ 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", + "bdb.* pdb.*" ) + m.addPackage( 0, "python-distutils", "Python Distribution Utilities", "python-core", "config distutils" ) # package @@ -286,7 +289,7 @@ if __name__ == "__main__": "lib-dynload/resource.so" ) m.addPackage( 0, "python-shell", "Python Shell-Like Functionality", "python-core, python-re", - "commands.* dircache.* fnmatch.* glob.* popen2.* shutil.*" ) + "cmd.* commands.* dircache.* fnmatch.* glob.* popen2.* shutil.*" ) m.addPackage( 0, "python-robotparser", "Python robots.txt parser", "python-core, python-netclient", "robotparser.*") |