source: WAeUP_SRP/buildout/buildout.cfg @ 3694

Last change on this file since 3694 was 3694, checked in by jens, 17 years ago
  • test commit
File size: 1.7 KB
Line 
1[buildout]
2parts =
3    lxml
4    zope2
5    zeoserver
6    productdistros
7    instance
8    zopepy
9    test
10find-links =
11    http://download.zope.org/ppix/
12    http://download.zope.org/distribution/
13    http://effbot.org/downloads
14eggs =
15    lxml == 1.3.3
16develop =
17
18[lxml]
19recipe = plone.recipe.lxml
20egg = lxml == 1.3.3
21
22[zope2]
23recipe = plone.recipe.zope2install
24url = http://www.zope.org/Products/Zope/2.9.8/Zope-2.9.8-final.tgz
25
26[zeoserver]
27recipe = plone.recipe.zope2zeoserver
28zope2-location = ${zope2:location}
29zeo-var = ${buildout:directory}/var
30zeo-address = ${zeoserver:zeo-var}/zeo.soc
31zeopack = ${zope2:location}/utilities/ZODBTools/zeopack.py
32
33[productdistros]
34recipe = plone.recipe.distros
35urls =
36    http://www.dieter.handshake.de/pyprojects/zope/AdvancedQuery.tgz
37    http://agendaless.com/Members/tseaver/software/faster/faster-0.5.1/faster-0.5.1.tar.gz
38    http://www.cps-project.org/static/src/CPS-platform-3.4.4.tar.gz
39version-suffix-packages =
40    faster-0.5.1.tar.gz
41nested-packages =
42    CPS-platform-3.4.4.tar.gz
43
44
45[instance]
46recipe = plone.recipe.zope2instance
47zope2-location = ${zope2:location}
48zeo-client = true
49zeo-address = ${zeoserver:zeo-address}
50zodb-cache-size = 5000
51zeo-client-cache-size = 50MB
52user = admin:westafrica
53http-address = 8060
54debug-mode = on
55verbose-security = on
56eggs =
57    ${buildout:eggs}
58    Products.QueueCatalog == 1.6.0
59zcml =
60products =
61    ${buildout:directory}/products
62    ${productdistros:location}
63
64[zopepy]
65recipe = zc.recipe.egg
66eggs = ${instance:eggs}
67interpreter = zopepy
68extra-paths = ${zope2:location}/lib/python
69scripts = zopepy
70
71[test]
72recipe = zc.recipe.testrunner
73extra-paths = ${zope2:location}/lib/python
74defaults = ['-c']
75eggs =
76
Note: See TracBrowser for help on using the repository browser.