source: WAeUP_SRP/buildout/buildout.cfg @ 3674

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