[Checkins] SVN: z3c.recipe.staticlxml/trunk/ Switching off building of the exslt crypt functionality. That crypt

Reinout van Rees reinout at vanrees.org
Thu Mar 19 05:56:06 EDT 2009


Log message for revision 98263:
  Switching off building of the exslt crypt functionality. That crypt
  functionality isn't found anymore on exslt.org itself. And it uses
  libgcrypt, which somehow leads to runtime errors regarding 'gcry_*' on osx
  and sometimes on linux. 
  

Changed:
  U   z3c.recipe.staticlxml/trunk/CHANGES.txt
  U   z3c.recipe.staticlxml/trunk/setup.py
  U   z3c.recipe.staticlxml/trunk/src/z3c/recipe/staticlxml/__init__.py

-=-
Modified: z3c.recipe.staticlxml/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.staticlxml/trunk/CHANGES.txt	2009-03-19 09:48:40 UTC (rev 98262)
+++ z3c.recipe.staticlxml/trunk/CHANGES.txt	2009-03-19 09:56:05 UTC (rev 98263)
@@ -1,6 +1,11 @@
 trunk
 =====
 
+- Switching off building of the exslt crypt functionality. That crypt
+  functionality isn't found anymore on exslt.org itself. And it uses
+  libgcrypt, which somehow leads to runtime errors regarding 'gcry_*' on osx
+  and sometimes on linux.  [reinout]
+
 0.5 (2009-03-16)
 ================
 

Modified: z3c.recipe.staticlxml/trunk/setup.py
===================================================================
--- z3c.recipe.staticlxml/trunk/setup.py	2009-03-19 09:48:40 UTC (rev 98262)
+++ z3c.recipe.staticlxml/trunk/setup.py	2009-03-19 09:56:05 UTC (rev 98263)
@@ -8,7 +8,7 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-version = '0.5'
+version = '0.6dev'
 
 long_description = (
     read('README.txt')

Modified: z3c.recipe.staticlxml/trunk/src/z3c/recipe/staticlxml/__init__.py
===================================================================
--- z3c.recipe.staticlxml/trunk/src/z3c/recipe/staticlxml/__init__.py	2009-03-19 09:48:40 UTC (rev 98262)
+++ z3c.recipe.staticlxml/trunk/src/z3c/recipe/staticlxml/__init__.py	2009-03-19 09:56:05 UTC (rev 98263)
@@ -93,7 +93,8 @@
                 "http://dist.repoze.org/lemonade/dev/cmmi/libxslt-1.1.24.tar.gz")
         self.logger.info("Using libxslt download url %s" % self.xslt_url)
         self.xslt_cmmi.options["url"] = self.xslt_url
-        self.xslt_cmmi.options["extra_options"] = "--with-libxml-prefix=%s --without-python" % self.xml2_location
+        self.xslt_cmmi.options["extra_options"] = "--with-libxml-prefix=%s --without-python --with-crypto=off" % self.xml2_location
+        # ^^^ crypto is off as libgcrypt can lead to problems on especially osx and also on some linux machines.
 
         if os.path.exists(os.path.join(self.xslt_cmmi.options["location"], "bin", "xslt-config")):
             self.logger.info("Skipping build of libxslt: already there")



More information about the Checkins mailing list