[Checkins] SVN: five.localsitemanager/trunk/ Specify all package dependencies including Acquisition and Zope2. You need to use either the eggified Zope 2.12 or create fake-eggs for these.

Hanno Schlichting plone at hannosch.info
Sun Jan 18 13:08:50 EST 2009


Log message for revision 94821:
  Specify all package dependencies including Acquisition and Zope2. You need to use either the eggified Zope 2.12 or create fake-eggs for these.
  

Changed:
  U   five.localsitemanager/trunk/CHANGES.txt
  U   five.localsitemanager/trunk/INSTALL.txt
  U   five.localsitemanager/trunk/buildout.cfg
  U   five.localsitemanager/trunk/setup.py

-=-
Modified: five.localsitemanager/trunk/CHANGES.txt
===================================================================
--- five.localsitemanager/trunk/CHANGES.txt	2009-01-17 23:31:34 UTC (rev 94820)
+++ five.localsitemanager/trunk/CHANGES.txt	2009-01-18 18:08:49 UTC (rev 94821)
@@ -4,6 +4,10 @@
 2.0 - Unreleased
 ----------------
 
+* Specify all package dependencies including Acquisition and Zope2. You need
+  to use either the eggified Zope 2.12 or create fake-eggs for these.
+  [hannosch]
+
 * 'make_site' no longer stores the path of the site manager in its name. This
   way the name can't become out-dated. PersistentComponents' __repr__ method
   now returns the current path instead of the name of the site manager.

Modified: five.localsitemanager/trunk/INSTALL.txt
===================================================================
--- five.localsitemanager/trunk/INSTALL.txt	2009-01-17 23:31:34 UTC (rev 94820)
+++ five.localsitemanager/trunk/INSTALL.txt	2009-01-18 18:08:49 UTC (rev 94821)
@@ -4,7 +4,7 @@
 Prerequisites
 -------------
 
-* Zope 2.10.x or newer
+* Zope 2.12.x or newer
 
 * setuptools_
 

Modified: five.localsitemanager/trunk/buildout.cfg
===================================================================
--- five.localsitemanager/trunk/buildout.cfg	2009-01-17 23:31:34 UTC (rev 94820)
+++ five.localsitemanager/trunk/buildout.cfg	2009-01-18 18:08:49 UTC (rev 94821)
@@ -4,12 +4,16 @@
 
 [zope2]
 recipe = plone.recipe.zope2install
-url = http://www.zope.org/Products/Zope/2.11.1/Zope-2.11.1-final.tgz
+url = http://www.zope.org/Products/Zope/2.11.2/Zope-2.11.2-final.tgz
 fake-zope-eggs = true
 skip-fake-eggs = zope.component
+additional-fake-eggs =
+    Acquisition
+    Zope2
+    ZODB3
 
 [test]
 recipe = zc.recipe.testrunner < 1.1
-eggs = five.localsitemanager
+eggs = five.localsitemanager [test]
 extra-paths = ${zope2:location}/lib/python
-defaults = ['-c']
\ No newline at end of file
+defaults = ['-c']

Modified: five.localsitemanager/trunk/setup.py
===================================================================
--- five.localsitemanager/trunk/setup.py	2009-01-17 23:31:34 UTC (rev 94820)
+++ five.localsitemanager/trunk/setup.py	2009-01-18 18:08:49 UTC (rev 94821)
@@ -23,17 +23,25 @@
           'Operating System :: OS Independent',
           'Programming Language :: Python',
           'Topic :: Internet :: WWW/HTTP :: Site Management',
-          'Topic :: Software Development :: Libraries :: Python Modules',
       ],
       keywords='zope zope2 zope3 five sitemanager',
-
       packages=['five', 'five.localsitemanager'],
       package_dir = {'': 'src'},
       namespace_packages=['five',],
       include_package_data = True,
+      extras_require=dict(
+          test=['zope.testing']
+          ),
       install_requires=[
         'setuptools',
         'zope.component >= 3.5.0',
+        'zope.event',
+        'zope.interface',
+        'zope.traversing',
+        'zope.app.component',
+        'Acquisition',
+        'Zope2',
+        'ZODB3',
       ],
       zip_safe = False,
       )



More information about the Checkins mailing list