[Checkins] SVN: zope.deprecation/tags/3.2.0/ 3.2.0.2: 'package_dir' must be a relative path.

Tres Seaver tseaver at palladion.com
Sat Apr 15 12:15:54 EDT 2006


Log message for revision 66999:
  3.2.0.2:  'package_dir' must be a relative path.

Changed:
  U   zope.deprecation/tags/3.2.0/CHANGES.txt
  U   zope.deprecation/tags/3.2.0/setup.py

-=-
Modified: zope.deprecation/tags/3.2.0/CHANGES.txt
===================================================================
--- zope.deprecation/tags/3.2.0/CHANGES.txt	2006-04-15 01:00:42 UTC (rev 66998)
+++ zope.deprecation/tags/3.2.0/CHANGES.txt	2006-04-15 16:15:52 UTC (rev 66999)
@@ -1,6 +1,11 @@
 zope.deprecation Package Changelog
 ==================================
 
+zope.deprecation version 3.2.0.2 (2006/04/15)
+---------------------------------------------
+
+- Fix packaging bug:  'package_dir' must be a *relative* path.
+
 zope.deprecation version 3.2.0.1 (2006/04/14)
 ---------------------------------------------
 

Modified: zope.deprecation/tags/3.2.0/setup.py
===================================================================
--- zope.deprecation/tags/3.2.0/setup.py	2006-04-15 01:00:42 UTC (rev 66998)
+++ zope.deprecation/tags/3.2.0/setup.py	2006-04-15 16:15:52 UTC (rev 66999)
@@ -25,7 +25,7 @@
     from distutils.core import setup, Extension
     
 setup(name='zope.deprecation',
-      version='3.2.0.1',
+      version='3.2.0.2',
 
       url='http://svn.zope.org/zope.deprecation/tags/3.2.0',
       license='ZPL 2.1',
@@ -37,7 +37,7 @@
                        "mark APIs and components which will be removed in "
                        "future releases.",
       
-      package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},
+      package_dir = {'': 'src'},
       packages=['zope', 'zope.deprecation'],
       namespace_packages=['zope',],
 



More information about the Checkins mailing list