[Zope-Checkins] CVS: Zope - setup.py:1.54

Jim Fulton jim at zope.com
Wed Feb 18 10:09:36 EST 2004


Update of /cvs-repository/Zope
In directory cvs.zope.org:/tmp/cvs-serv572

Modified Files:
	setup.py 
Log Message:
Removed the Berkeley DB storage from the Zope (and ZODB 3) repository.
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. :(


=== Zope/setup.py 1.53 => 1.54 ===
--- Zope/setup.py:1.53	Fri Jan 30 14:14:01 2004
+++ Zope/setup.py	Wed Feb 18 10:09:05 2004
@@ -215,18 +215,6 @@
                 ['App/www', ['App/www/*']]],
     )
 
-# BDBStorage
-setup(
-    name='BDBStorage',
-    author=AUTHOR,
-
-    packages=['BDBStorage', 'BDBStorage.tests'],
-    ext_modules = [
-        Extension(name='BDBStorage._helper',
-        sources=['BDBStorage/_helper.c']),
-        ]
-    )
-
 # BTrees
 setup(
     name='BTrees',




More information about the Zope-Checkins mailing list