[Checkins] SVN: zope.i18nmessageid/trunk/ Fixed the compilation of the C extension with python 2.6: refactored it as a setuptools Feature.

Hanno Schlichting hanno at hannosch.eu
Wed Aug 5 09:02:06 EDT 2009


On Wed, Aug 5, 2009 at 1:23 PM, Fabio Tranchitella<kobold at kobold.it> wrote:
> Log message for revision 102497:
>  Fixed the compilation of the C extension with python 2.6: refactored it as a setuptools Feature.
>
> Changed:
>  U   zope.i18nmessageid/trunk/CHANGES.txt
>  U   zope.i18nmessageid/trunk/setup.py
>
> -=-
> Modified: zope.i18nmessageid/trunk/CHANGES.txt
> ===================================================================
> --- zope.i18nmessageid/trunk/CHANGES.txt        2009-08-05 10:27:46 UTC (rev 102496)
> +++ zope.i18nmessageid/trunk/CHANGES.txt        2009-08-05 11:23:58 UTC (rev 102497)
> @@ -5,7 +5,8 @@
>  3.5.1 (unreleased)
>  ------------------
>
> -- ...
> +- Fixed the compilation of the C extension with python 2.6: refactored it as a
> +  setuptools Feature.
>
>  3.5.0 (2009-06-27)
>  ------------------
>
> Modified: zope.i18nmessageid/trunk/setup.py
> ===================================================================
> --- zope.i18nmessageid/trunk/setup.py   2009-08-05 10:27:46 UTC (rev 102496)
> +++ zope.i18nmessageid/trunk/setup.py   2009-08-05 11:23:58 UTC (rev 102497)
> @@ -1,3 +1,12 @@
> +#!/usr/bin/python2.6
> +
> +import sys
> +
> +sys.path[0:0] = [
> +  '/home/kobold/buildbot/ztk/zope.i18nmessageid-py2.6-64bit-linux/build/src',
> +  '/home/kobold/.buildout/eggs/setuptools-0.6c9-py2.6.egg',
> +]

You probably don't want to check in absolute paths only meaningful on
your particular workstation.

Hanno


More information about the Checkins mailing list