[Checkins] SVN: z3c.recipe.staticlxml/trunk/ Update docs, remove junk code.

Stefan Eletzhofer stefan.eletzhofer at inquant.de
Thu Nov 27 09:34:02 EST 2008


Log message for revision 93396:
  Update docs, remove junk code.

Changed:
  U   z3c.recipe.staticlxml/trunk/CHANGES.txt
  U   z3c.recipe.staticlxml/trunk/buildout.cfg
  U   z3c.recipe.staticlxml/trunk/src/z3c/recipe/staticlxml/README.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	2008-11-27 14:22:15 UTC (rev 93395)
+++ z3c.recipe.staticlxml/trunk/CHANGES.txt	2008-11-27 14:34:02 UTC (rev 93396)
@@ -1,6 +1,7 @@
 trunk
 =====
 
+- Updated docs, removed junk code [seletz]
 - Added tweaks needed for Mac OS X [seletz]
 - Added basic build steps for liblxml2, libxslt and lxml. [seletz]
 - Created recipe with ZopeSkel [seletz].

Modified: z3c.recipe.staticlxml/trunk/buildout.cfg
===================================================================
--- z3c.recipe.staticlxml/trunk/buildout.cfg	2008-11-27 14:22:15 UTC (rev 93395)
+++ z3c.recipe.staticlxml/trunk/buildout.cfg	2008-11-27 14:34:02 UTC (rev 93396)
@@ -6,11 +6,15 @@
 
 log-level = DEBUG
 
-index = http://dist.repoze.org/lemonade/dev/simple
-
 download-directory = downloads
 download-cache = downloads
 
+versions=versions
+
+[versions]
+lxml = 2.1.3
+
+
 [pylxml]
 recipe=zc.recipe.egg
 interpreter=pylxml
@@ -19,7 +23,8 @@
 
 [lxml]
 recipe = z3c.recipe.staticlxml
-egg = lxml==2.1.2
+egg = lxml
+force = false
 build-libxml2 = true
 build-libxslt = true
 static-build = false

Modified: z3c.recipe.staticlxml/trunk/src/z3c/recipe/staticlxml/README.txt
===================================================================
--- z3c.recipe.staticlxml/trunk/src/z3c/recipe/staticlxml/README.txt	2008-11-27 14:22:15 UTC (rev 93395)
+++ z3c.recipe.staticlxml/trunk/src/z3c/recipe/staticlxml/README.txt	2008-11-27 14:34:02 UTC (rev 93396)
@@ -6,6 +6,13 @@
 egg
     Set to the desired lxml egg, e.g. ``lxml`` or ``lxml==2.1.2``
 
+libxslt-url, libxml2-url
+    The URL to download the source tarball of these libraries from.  Currently
+    defaults to::
+
+      http://dist.repoze.org/lemonade/dev/cmmi/libxslt-1.1.24.tar.gz
+      http://dist.repoze.org/lemonade/dev/cmmi/libxml2-2.6.32.tar.gz
+
 build-libxslt, build-libxml2
     Set to ``true`` if these should be build.  Needed for a static build.
 

Modified: z3c.recipe.staticlxml/trunk/src/z3c/recipe/staticlxml/__init__.py
===================================================================
--- z3c.recipe.staticlxml/trunk/src/z3c/recipe/staticlxml/__init__.py	2008-11-27 14:22:15 UTC (rev 93395)
+++ z3c.recipe.staticlxml/trunk/src/z3c/recipe/staticlxml/__init__.py	2008-11-27 14:34:02 UTC (rev 93396)
@@ -227,22 +227,6 @@
 
     update = install
 
-    def lxml_build_ext(self):
-        """
-        [lxml]
-        recipe = zc.recipe.egg:custom
-        egg = lxml
-        include-dirs = ${libxml2:location}/include/libxml2
-                       ${libxslt:location}/include
-        library-dirs = ${libxml2:location}/lib
-                       ${libxslt:location}/lib
-        rpath = ${libxml2:location}/lib
-                ${libxslt:location}/lib
-        """
-        return dict(
-                include
-            )
-
     def lxml_build_env(self):
         return dict(
                 XSLT_CONFIG=self.xslt_config,



More information about the Checkins mailing list