diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-03-21 23:25:31 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-03-21 23:25:31 +0000 |
commit | e737833493b9017bbfd3ab0dba6a2d26f85eebd8 (patch) | |
tree | 2d4844eeac8121281e65c3b9ded2c39f59b10f67 /contrib | |
parent | 7e3f573b1510d10f5a126662d933a70e56be9e1e (diff) |
python 2.5 improve pysqlite2|3 packaging. Patch based on work by Aloisios Almeida.
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/python/generate-manifest-2.5.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/contrib/python/generate-manifest-2.5.py b/contrib/python/generate-manifest-2.5.py index 94ae5ce4fd..69788f66af 100755 --- a/contrib/python/generate-manifest-2.5.py +++ b/contrib/python/generate-manifest-2.5.py @@ -294,8 +294,11 @@ if __name__ == "__main__": m.addPackage( 0, "python-subprocess", "Python Subprocess Support", "python-core python-io python-re python-fcntl python-pickle", "subprocess.*" ) - m.addPackage( 1, "python-sqlite3", "Python Sqlite3 Database Support", "python-core", - "lib-dynload/_sqlite3.so sqlite3" ) # package + m.addPackage( 2, "python-sqlite3", "Python Sqlite3 Database Support", "python-core python-datetime python-lang python-crypt python-io python-threading python-zlib", + "lib-dynload/_sqlite3.so sqlite3/dbapi2.* sqlite3/__init__.*" ) + + m.addPackage( 0, "python-sqlite3-tests", "Python Sqlite3 Database Support Tests", "python-core python-sqlite3", + "sqlite3/test" ) m.addPackage( 0, "python-stringold", "Python String APIs [deprecated]", "python-core python-re", "lib-dynload/strop.so string.*" ) |