1 | [buildout] |
---|
2 | parts = |
---|
3 | app |
---|
4 | i18n |
---|
5 | test |
---|
6 | mkdirs |
---|
7 | zpasswd |
---|
8 | site_zcml |
---|
9 | zope_conf |
---|
10 | zdaemon_conf |
---|
11 | raw_deploy_ini |
---|
12 | raw_debug_ini |
---|
13 | themed_deploy_ini |
---|
14 | themed_debug_ini |
---|
15 | profile_ini |
---|
16 | kofactl |
---|
17 | waeupdocs |
---|
18 | coverage-detect |
---|
19 | coverage-report |
---|
20 | lxml |
---|
21 | diazo |
---|
22 | # For backward compatibility, telling buildout not to throw away |
---|
23 | # the data and log subdirectories from the parts directory. |
---|
24 | data |
---|
25 | log |
---|
26 | |
---|
27 | extends = |
---|
28 | http://good-py.appspot.com/release/diazo/1.0 |
---|
29 | buildout.cfg |
---|
30 | |
---|
31 | find-links = |
---|
32 | |
---|
33 | extensions = |
---|
34 | mr.developer |
---|
35 | |
---|
36 | develop = . |
---|
37 | |
---|
38 | show-picked-versions = true |
---|
39 | update-versions-file = versions.cfg |
---|
40 | |
---|
41 | [lxml] |
---|
42 | recipe = z3c.recipe.staticlxml |
---|
43 | egg = lxml |
---|
44 | |
---|
45 | [diazo] |
---|
46 | recipe = zc.recipe.egg |
---|
47 | eggs = |
---|
48 | diazo [wsgi] |
---|
49 | PasteScript |
---|
50 | waeup.kofa [beaker] |
---|
51 | |
---|
52 | # |
---|
53 | # waeup.kofa config |
---|
54 | # |
---|
55 | [app] |
---|
56 | recipe = zc.recipe.egg |
---|
57 | eggs = waeup.kofa [beaker, diazo] |
---|
58 | z3c.evalexception>=2.0 |
---|
59 | Paste |
---|
60 | PasteScript |
---|
61 | PasteDeploy |
---|
62 | repoze.profile |
---|
63 | ZODB3 |
---|
64 | interpreter = python-console |
---|
65 | |
---|
66 | |
---|
67 | [raw_debug_ini] |
---|
68 | recipe = collective.recipe.template |
---|
69 | input = etc/raw/debug.ini.in |
---|
70 | output = ${buildout:parts-directory}/etc/raw-debug.ini |
---|
71 | |
---|
72 | [raw_deploy_ini] |
---|
73 | recipe = collective.recipe.template |
---|
74 | input = etc/raw/deploy.ini.in |
---|
75 | output = ${buildout:parts-directory}/etc/raw-deploy.ini |
---|
76 | |
---|
77 | [themed_debug_ini] |
---|
78 | recipe = collective.recipe.template |
---|
79 | input = etc/themed/debug.ini.in |
---|
80 | output = ${buildout:parts-directory}/etc/themed-debug.ini |
---|
81 | |
---|
82 | [themed_deploy_ini] |
---|
83 | recipe = collective.recipe.template |
---|
84 | input = etc/themed/deploy.ini.in |
---|
85 | output = ${buildout:parts-directory}/etc/themed-deploy.ini |
---|
86 | |
---|
87 | # |
---|
88 | # ctl-scripts... |
---|
89 | # |
---|
90 | |
---|
91 | [kofactl] |
---|
92 | # See http://pypi.python.org/pypi/zc.recipe.egg for details... |
---|
93 | # Here we create the kofactl script again, this time with a |
---|
94 | # fixed path to zdaemon.conf as argument. |
---|
95 | recipe = zc.recipe.egg |
---|
96 | eggs = waeup.kofa [beaker, diazo] |
---|
97 | arguments = "${buildout:parts-directory}/etc/zdaemon.conf" |
---|
98 | scripts = kofactl=kofactl |
---|