[Zodb-checkins] SVN: ZODB/trunk/setup.py Try to get zope.proxy to build.

Tim Peters tim.one at comcast.net
Mon Mar 21 14:37:05 EST 2005


Log message for revision 29625:
  Try to get zope.proxy to build.
  
  There's a mystery:  the tests for it appear to run after
  "build_ext -i", but not after "build".  But that appears
  to be true for the long-stitched-in zope.interface too.
  

Changed:
  U   ZODB/trunk/setup.py

-=-
Modified: ZODB/trunk/setup.py
===================================================================
--- ZODB/trunk/setup.py	2005-03-21 19:22:59 UTC (rev 29624)
+++ ZODB/trunk/setup.py	2005-03-21 19:37:05 UTC (rev 29625)
@@ -128,8 +128,19 @@
             sources= ['src/zope/interface/_zope_interface_coptimizations.c']
             )
 
-exts += [cPersistence, cPickleCache, TimeStamp, winlock, cZopeInterface]
+cZopeProxy = Extension(
+            name = 'zope.proxy._zope_proxy_proxy',
+            sources= ['src/zope/proxy/_zope_proxy_proxy.c']
+            )
 
+exts += [cPersistence,
+         cPickleCache,
+         TimeStamp,
+         winlock,
+         cZopeInterface,
+         cZopeProxy,
+        ]
+
 # The ZODB.zodb4 code is not being packaged, because it is only
 # need to convert early versions of Zope3 databases to ZODB3.
 
@@ -141,7 +152,7 @@
             "transaction", "transaction.tests",
             "ThreadedAsync",
             "zdaemon", "zdaemon.tests",
-            "zope", "zope.interface", "zope.testing",
+            "zope", "zope.interface", "zope.testing", "zope.proxy",
             "ZopeUndo", "ZopeUndo.tests",
             "ZConfig", "ZConfig.tests",
             "ZConfig.components",



More information about the Zodb-checkins mailing list