[Checkins] SVN: z3c.recipe.staticlxml/trunk/ Updated default libxml/libxslt download locations to

Reinout van Rees reinout at vanrees.org
Fri Aug 12 08:19:50 EDT 2011


Log message for revision 122561:
  Updated default libxml/libxslt download locations to
    http://xmlsoft.org/sources/libxml2-2.7.8.tar.gz and
    http://xmlsoft.org/sources/libxslt-1.1.26.tar.gz respectively. Those updated
    versions fix a Lion compile issue as reported by jladage.

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

-=-
Modified: z3c.recipe.staticlxml/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.staticlxml/trunk/CHANGES.txt	2011-08-12 09:22:57 UTC (rev 122560)
+++ z3c.recipe.staticlxml/trunk/CHANGES.txt	2011-08-12 12:19:49 UTC (rev 122561)
@@ -1,6 +1,11 @@
 0.7.3 (unreleased)
 ==================
 
+- Updated default libxml/libxslt download locations to
+  http://xmlsoft.org/sources/libxml2-2.7.8.tar.gz and
+  http://xmlsoft.org/sources/libxslt-1.1.26.tar.gz respectively. Those updated
+  versions fix a Lion compile issue as reported by jladage.
+
 - Using Python's ``doctest`` module instead of depreacted
   ``zope.testing.doctest``.
 

Modified: z3c.recipe.staticlxml/trunk/src/z3c/recipe/staticlxml/__init__.py
===================================================================
--- z3c.recipe.staticlxml/trunk/src/z3c/recipe/staticlxml/__init__.py	2011-08-12 09:22:57 UTC (rev 122560)
+++ z3c.recipe.staticlxml/trunk/src/z3c/recipe/staticlxml/__init__.py	2011-08-12 12:19:49 UTC (rev 122561)
@@ -89,7 +89,7 @@
         self.logger.info("CMMI libxslt ...")
         versions = self.buildout.get(self.buildout['buildout'].get('versions', '__invalid__'), {})
         self.options["libxslt-url"] = self.xslt_url = self.options.get("libxslt-url",
-                versions.get("libxslt-url", "http://dist.repoze.org/lemonade/dev/cmmi/libxslt-1.1.24.tar.gz"))
+                versions.get("libxslt-url", "http://xmlsoft.org/sources/libxslt-1.1.26.tar.gz"))
         self.logger.info("Using libxslt download url %s" % self.xslt_url)
 
         options = self.options.copy()
@@ -112,7 +112,7 @@
         self.logger.info("CMMI libxml2 ...")
         versions = self.buildout.get(self.buildout['buildout'].get('versions', '__invalid__'), {})
         self.options["libxml2-url"] = self.xml2_url = self.options.get("libxml2-url",
-                versions.get("libxml2-url", "http://dist.repoze.org/lemonade/dev/cmmi/libxml2-2.6.32.tar.gz"))
+                versions.get("libxml2-url", "http://xmlsoft.org/sources/libxml2-2.7.8.tar.gz"))
         self.logger.info("Using libxml2 download url %s" % self.xml2_url)
 
         options = self.options.copy()



More information about the checkins mailing list