Changeset 3704


Ignore:
Timestamp:
1 Oct 2008, 13:11:08 (16 years ago)
Author:
jens
Message:
  • remove unused test script
  • change lxml buildout process to make it work
File:
1 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/buildout/buildout.cfg

    r3697 r3704  
    11[buildout]
    22parts =
     3    libxml2
     4    libxslt
    35    lxml
    46    zope2
     
    79    instance
    810    zopepy
    9     test
    1011find-links =
    1112    http://download.zope.org/ppix/
    1213    http://download.zope.org/distribution/
    1314    http://effbot.org/downloads
    14 
    1515eggs =
    16     lxml == 1.3.3
    17 
    1816develop =
    1917
     18[lxml-environment]
     19XSLT_CONFIG=${buildout:directory}/parts/libxslt/bin/xslt-config
     20XML2_CONFIG=${buildout:directory}/parts/libxml2/bin/xml2-config
     21
    2022[lxml]
    21 recipe = plone.recipe.lxml
    22 egg = lxml == 1.3.3
     23recipe = zc.recipe.egg:custom
     24egg = lxml
     25include-dirs = ${libxml2:location}/include/libxml2
     26               ${libxslt:location}/include
     27library-dirs = ${libxml2:location}/lib
     28               ${libxslt:location}/lib
     29rpath = ${libxml2:location}/lib
     30        ${libxslt:location}/lib
     31environment = lxml-environment
     32
     33[libxml2]
     34recipe = zc.recipe.cmmi
     35url = http://dist.repoze.org/lemonade/dev/cmmi/libxml2-2.6.32.tar.gz
     36extra_options = --without-python
     37
     38[libxslt]
     39recipe = zc.recipe.cmmi
     40url = http://dist.repoze.org/lemonade/dev/cmmi/libxslt-1.1.24.tar.gz
     41extra_options = --with-libxml-prefix=${libxml2:location}
     42                 --without-python
    2343
    2444[zope2]
     
    5979    ${buildout:eggs}
    6080    Products.QueueCatalog == 1.6.0
     81    lxml
    6182zcml =
    6283products =
     
    7091extra-paths = ${zope2:location}/lib/python
    7192scripts = zopepy
    72 
    73 [test]
    74 recipe = zc.recipe.testrunner
    75 extra-paths = ${zope2:location}/lib/python
    76 defaults = ['-c']
    77 eggs =
    78 
Note: See TracChangeset for help on using the changeset viewer.