source: WAeUP_SRP/buildout/buildout.cfg @ 4436

Last change on this file since 4436 was 3704, checked in by jens, 16 years ago
  • remove unused test script
  • change lxml buildout process to make it work
File size: 2.3 KB
Line 
1[buildout]
2parts =
3    libxml2
4    libxslt
5    lxml
6    zope2
7    zeoserver
8    productdistros
9    instance
10    zopepy
11find-links =
12    http://download.zope.org/ppix/
13    http://download.zope.org/distribution/
14    http://effbot.org/downloads
15eggs =
16develop =
17
18[lxml-environment]
19XSLT_CONFIG=${buildout:directory}/parts/libxslt/bin/xslt-config
20XML2_CONFIG=${buildout:directory}/parts/libxml2/bin/xml2-config
21
22[lxml]
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
43
44[zope2]
45recipe = plone.recipe.zope2install
46url = http://www.zope.org/Products/Zope/2.9.8/Zope-2.9.8-final.tgz
47
48[zeoserver]
49recipe = plone.recipe.zope2zeoserver
50zope2-location = ${zope2:location}
51zeo-var = ${buildout:directory}/var
52zeo-address = ${zeoserver:zeo-var}/zeo.soc
53zeopack = ${zope2:location}/utilities/ZODBTools/zeopack.py
54
55[productdistros]
56recipe = plone.recipe.distros
57urls =
58    http://www.dieter.handshake.de/pyprojects/zope/AdvancedQuery.tgz
59    http://agendaless.com/Members/tseaver/software/faster/faster-0.5.1/faster-0.5.1.tar.gz
60    http://www.cps-project.org/static/src/CPS-platform-3.4.4.tar.gz
61version-suffix-packages =
62    faster-0.5.1.tar.gz
63nested-packages =
64    CPS-platform-3.4.4.tar.gz
65
66
67[instance]
68recipe = plone.recipe.zope2instance
69zope2-location = ${zope2:location}
70zeo-client = true
71zeo-address = ${zeoserver:zeo-address}
72zodb-cache-size = 5000
73zeo-client-cache-size = 50MB
74user = admin:westafrica
75http-address = 8060
76debug-mode = on
77verbose-security = on
78eggs =
79    ${buildout:eggs}
80    Products.QueueCatalog == 1.6.0
81    lxml
82zcml =
83products =
84    ${buildout:directory}/products
85    ${productdistros:location}
86
87[zopepy]
88recipe = zc.recipe.egg
89eggs = ${instance:eggs}
90interpreter = zopepy
91extra-paths = ${zope2:location}/lib/python
92scripts = zopepy
Note: See TracBrowser for help on using the repository browser.