[Checkins] SVN: z3c.recipe.i18n/trunk/ - Fixed dependencies: The 'extract' extra of zope.app.locales is required.

Yvo Schubbe y.2009 at wcm-solutions.de
Fri Jul 17 06:51:24 EDT 2009


Log message for revision 101957:
  - Fixed dependencies: The 'extract' extra of zope.app.locales is required.

Changed:
  U   z3c.recipe.i18n/trunk/CHANGES.txt
  UU  z3c.recipe.i18n/trunk/setup.py
  UU  z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/i18n.py
  U   z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/tests.py

-=-
Modified: z3c.recipe.i18n/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.i18n/trunk/CHANGES.txt	2009-07-17 08:11:51 UTC (rev 101956)
+++ z3c.recipe.i18n/trunk/CHANGES.txt	2009-07-17 10:51:23 UTC (rev 101957)
@@ -5,7 +5,7 @@
 0.5.5 (unreleased)
 ------------------
 
-- ...
+- Fixed dependencies: The 'extract' extra of zope.app.locales is required.
 
 0.5.4 (2009-06-08)
 ------------------

Modified: z3c.recipe.i18n/trunk/setup.py
===================================================================
--- z3c.recipe.i18n/trunk/setup.py	2009-07-17 08:11:51 UTC (rev 101956)
+++ z3c.recipe.i18n/trunk/setup.py	2009-07-17 10:51:23 UTC (rev 101957)
@@ -63,21 +63,21 @@
         test = [
             'zope.testing',
             'zc.lockfile',
-                      'zope.app.component',
-                      'zope.app.publication',
-                      'zope.component',
-                      'zope.configuration',
-                      'zope.container',
-                      'zope.error',
-                      'zope.event',
-                      'zope.interface',
-                      'zope.location',
-                      'zope.processlifetime',
-                      'zope.session',
-                      'zope.site',
-                      'zope.security',
-                      'zope.traversing',
-                      'ZODB3',
+            'zope.app.component',
+            'zope.app.publication',
+            'zope.component',
+            'zope.configuration',
+            'zope.container',
+            'zope.error',
+            'zope.event',
+            'zope.interface',
+            'zope.location',
+            'zope.processlifetime',
+            'zope.session',
+            'zope.site',
+            'zope.security',
+            'zope.traversing',
+            'ZODB3',
             ],
         ),
     install_requires = [
@@ -85,7 +85,7 @@
         'zc.buildout',
         'zc.recipe.egg',
         'zope.app.appsetup',
-        'zope.app.locales',
+        'zope.app.locales [extract]',
         'zope.configuration',
         ],
     entry_points = {


Property changes on: z3c.recipe.i18n/trunk/setup.py
___________________________________________________________________
Added: svn:keywords
   + Id

Modified: z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/i18n.py
===================================================================
--- z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/i18n.py	2009-07-17 08:11:51 UTC (rev 101956)
+++ z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/i18n.py	2009-07-17 10:51:23 UTC (rev 101957)
@@ -56,7 +56,7 @@
         if 'eggs' not in self.options:
             self.options['eggs'] = ''
         self.options['eggs'] = self.options['eggs'] + '\n' \
-                             + 'zope.app.locales'
+                             + 'zope.app.locales [extract]'
         self.egg = zc.recipe.egg.Egg(buildout, name, options)
 
     def install(self):


Property changes on: z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/i18n.py
___________________________________________________________________
Added: svn:keywords
   + Id

Modified: z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/tests.py
===================================================================
--- z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/tests.py	2009-07-17 08:11:51 UTC (rev 101956)
+++ z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/tests.py	2009-07-17 10:51:23 UTC (rev 101957)
@@ -31,6 +31,7 @@
     zc.buildout.testing.install('zc.recipe.egg', test)
     zc.buildout.testing.install('zdaemon', test)
     zc.buildout.testing.install('zope.annotation', test)
+    zc.buildout.testing.install('zope.app.applicationcontrol', test)
     zc.buildout.testing.install('zope.app.appsetup', test)
     zc.buildout.testing.install('zope.app.basicskin', test)
     zc.buildout.testing.install('zope.app.component', test)



More information about the Checkins mailing list