[Erp5-report] r37130 luke - /erp5/trunk/utils/erp5.recipe.mysqldatabase/

nobody at svn.erp5.org nobody at svn.erp5.org
Thu Jul 15 14:23:34 CEST 2010


Author: luke
Date: Thu Jul 15 14:23:34 2010
New Revision: 37130

URL: http://svn.erp5.org?rev=37130&view=rev
Log:
 - do not depend on MySQL-python, as even if available it triggers installation in some environments
 - release 1.0.2 with this fix

Modified:
    erp5/trunk/utils/erp5.recipe.mysqldatabase/CHANGES.txt
    erp5/trunk/utils/erp5.recipe.mysqldatabase/setup.py

Modified: erp5/trunk/utils/erp5.recipe.mysqldatabase/CHANGES.txt
URL: http://svn.erp5.org/erp5/trunk/utils/erp5.recipe.mysqldatabase/CHANGES.txt?rev=37130&r1=37129&r2=37130&view=diff
==============================================================================
--- erp5/trunk/utils/erp5.recipe.mysqldatabase/CHANGES.txt [utf8] (original)
+++ erp5/trunk/utils/erp5.recipe.mysqldatabase/CHANGES.txt [utf8] Thu Jul 15 14:23:34 2010
@@ -1,6 +1,14 @@
 Changelog
 =========
 
+1.0.2 (2010-07-15)
+----------------
+
+- Bugfix: do not specify MySQL-python as requirement, because in used
+  environment it triggers installation of this egg, despite the fact that
+  this library is already available
+  [Lukasz Nowak]
+
 1.0.1 (2010-04-15)
 ----------------
 

Modified: erp5/trunk/utils/erp5.recipe.mysqldatabase/setup.py
URL: http://svn.erp5.org/erp5/trunk/utils/erp5.recipe.mysqldatabase/setup.py?rev=37130&r1=37129&r2=37130&view=diff
==============================================================================
--- erp5/trunk/utils/erp5.recipe.mysqldatabase/setup.py [utf8] (original)
+++ erp5/trunk/utils/erp5.recipe.mysqldatabase/setup.py [utf8] Thu Jul 15 14:23:34 2010
@@ -1,7 +1,7 @@
 from setuptools import setup, find_packages
 
 name = "erp5.recipe.mysqldatabase"
-version = '1.0.1'
+version = '1.0.2'
 
 def read(name):
     return open(name).read()
@@ -26,7 +26,9 @@ setup(
         ],
     packages = find_packages('src'),
     package_dir = {'': 'src'},
-    install_requires = ['zc.recipe.egg', 'MySQL-python'],
+    install_requires = ['zc.recipe.egg',
+      # 'MySQL-python' disabled, as is being installed even if available
+      ],
     namespace_packages = ['erp5', 'erp5.recipe'],
     entry_points = {'zc.buildout': ['default = %s:Recipe' % name]},
     )




More information about the Erp5-report mailing list