[Checkins] SVN: zope.hookable/trunk/ Avoid building the C extension explicitly.

Tres Seaver cvs-admin at zope.org
Thu Jul 26 20:00:49 UTC 2012


Log message for revision 127391:
  Avoid building the C extension explicitly.
  
  Use the "feature" indirection instead.
  
  Fixes https://bugs.launchpad.net/zope.hookable/+bug/1025470
  

Changed:
  _U  zope.hookable/trunk/
  U   zope.hookable/trunk/CHANGES.txt
  U   zope.hookable/trunk/setup.py

-=-
Modified: zope.hookable/trunk/CHANGES.txt
===================================================================
--- zope.hookable/trunk/CHANGES.txt	2012-07-26 19:50:37 UTC (rev 127390)
+++ zope.hookable/trunk/CHANGES.txt	2012-07-26 20:00:46 UTC (rev 127391)
@@ -4,7 +4,8 @@
 4.0.1 (unreleased)
 ##################
 
-- TBD
+- Avoid building the C extension explicitly (use the "feature" indirection
+  instead).  https://bugs.launchpad.net/zope.hookable/+bug/1025470
 
 4.0.0 (2012-06-04)
 ##################

Modified: zope.hookable/trunk/setup.py
===================================================================
--- zope.hookable/trunk/setup.py	2012-07-26 19:50:37 UTC (rev 127390)
+++ zope.hookable/trunk/setup.py	2012-07-26 20:00:46 UTC (rev 127391)
@@ -72,11 +72,6 @@
       features=features,
       packages=find_packages('src'),
       package_dir={'': 'src'},
-      ext_modules=[Extension("zope.hookable._zope_hookable",
-                             [os.path.join('src', 'zope', 'hookable',
-                                           "_zope_hookable.c")
-                              ], extra_compile_args=['-g']),
-                   ],
       namespace_packages=['zope',],
       install_requires=['setuptools'],
       include_package_data=True,



More information about the checkins mailing list