[Zodb-checkins] CVS: ZODB3 - setup.py:1.64

Jim Fulton jim at zope.com
Wed Feb 18 10:11:52 EST 2004


Update of /cvs-repository/ZODB3
In directory cvs.zope.org:/tmp/cvs-serv1077

Modified Files:
	setup.py 
Log Message:
Removed the Berkeley DB storage from the Zope and ZODB3 repositories.
The storage was added to these repositories hoping that that would
encourage people to test it. The storage is not (yet) usable in
production due to Berkeley DB log handling problems.  The storage is
a constant source of irritation due to errors in implicit algorithms
to decide whether to build BDB extensions when building Python and 
due to implicit algorithms used to decide whether the BDB extension
was suitable for use by the storage when running tests.  The BDB
storage tests are also rather time consuming.

The final straw was the recent ZODB change that caused many BDB
storage tests to fail. :(


=== ZODB3/setup.py 1.63 => 1.64 ===
--- ZODB3/setup.py:1.63	Wed Jan  7 22:35:02 2004
+++ ZODB3/setup.py	Wed Feb 18 10:11:52 2004
@@ -119,12 +119,8 @@
 
 exts += [cPersistence, cPickleCache, TimeStamp, coptimizations, winlock]
 
-bsddbhelper = Extension(name = 'BDBStorage._helper',
-                        sources = ['BDBStorage/_helper.c'])
-exts += [bsddbhelper]
 
-packages = ["BDBStorage", "BDBStorage.tests",
-            "BTrees", "BTrees.tests",
+packages = ["BTrees", "BTrees.tests",
             "ZEO", "ZEO.auth", "ZEO.zrpc", "ZEO.tests",
             "ZODB", "ZODB.FileStorage", "ZODB.tests",
             "Persistence", "Persistence.tests",




More information about the Zodb-checkins mailing list