source: WAeUP_SRP/buildout/buildout.cfg @ 3697

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