1 | [buildout] |
---|
2 | # See http://pypi.python.org/pypi/mr.developer for details |
---|
3 | extensions = mr.developer |
---|
4 | # Install waeup.ikoba as develop egg |
---|
5 | auto-checkout = waeup.ikoba |
---|
6 | sources-dir = sources |
---|
7 | develop = . |
---|
8 | parts = |
---|
9 | eggbasket |
---|
10 | app |
---|
11 | i18n |
---|
12 | test |
---|
13 | mkdirs |
---|
14 | zpasswd |
---|
15 | zope_conf |
---|
16 | site_zcml |
---|
17 | zdaemon_conf |
---|
18 | raw_deploy_ini |
---|
19 | raw_debug_ini |
---|
20 | themed_deploy_ini |
---|
21 | themed_debug_ini |
---|
22 | profile_ini |
---|
23 | # waeupdocs |
---|
24 | coverage-detect |
---|
25 | coverage-report |
---|
26 | # ikobactl creation must be _after_ app! |
---|
27 | ikobactl |
---|
28 | lxml |
---|
29 | diazo |
---|
30 | # For backward compatibility, telling buildout not to throw away |
---|
31 | # the data and log subdirectories from the parts directory. |
---|
32 | data |
---|
33 | log |
---|
34 | # newest = false |
---|
35 | |
---|
36 | extends = versions.cfg |
---|
37 | show-picked-versions = true |
---|
38 | update-versions-file = versions.cfg |
---|
39 | |
---|
40 | |
---|
41 | # eggs will be installed in the default buildout location |
---|
42 | # (see .buildout/default.cfg in your home directory) |
---|
43 | # unless you specify an eggs-directory option here. |
---|
44 | |
---|
45 | [sources] |
---|
46 | waeup.ikoba = svn https://svn.waeup.org/repos/main/waeup.ikoba/trunk |
---|
47 | [ikoba_params] |
---|
48 | ## Basic parameters for deployment. |
---|
49 | # default is 127.0.0.1 |
---|
50 | host = 0.0.0.0 |
---|
51 | # default is 8080 |
---|
52 | base_port = 7101 |
---|
53 | zeo1_port = 7101 |
---|
54 | zeo2_port = 7102 |
---|
55 | zeo3_port = 7103 |
---|
56 | server_port = 7100 |
---|
57 | # default 7. Number of pre-opened ZODB threads/client |
---|
58 | pool_size = 7 |
---|
59 | # default 20MB. Cache size of each client (ZEO only) |
---|
60 | client_cache = 20MB |
---|
61 | # default 5000. Number of objects cached. |
---|
62 | object_cache = 5000 |
---|
63 | # number of preopened paster threads, default 10 |
---|
64 | threadpool_workers = 10 |
---|
65 | devel_pkg = ikobacustom.pcn |
---|
66 | |
---|
67 | [app] |
---|
68 | # This creates all scripts in bin/. The ikobactl created here is 'faulty'. |
---|
69 | recipe = zc.recipe.egg |
---|
70 | eggs = ikobacustom.pcn [beaker, diazo] |
---|
71 | z3c.evalexception>=2.0 |
---|
72 | Paste |
---|
73 | PasteScript |
---|
74 | PasteDeploy |
---|
75 | repoze.profile |
---|
76 | ZODB3 |
---|
77 | interpreter = python-console |
---|
78 | |
---|
79 | [ikobactl] |
---|
80 | # See http://pypi.python.org/pypi/zc.recipe.egg for details... |
---|
81 | # Here we create the ikobactl script again, this time with a |
---|
82 | # fixed path to zdaemon.conf as argument. |
---|
83 | recipe = zc.recipe.egg |
---|
84 | eggs = ikobacustom.pcn [beaker, diazo] |
---|
85 | waeup.ikoba |
---|
86 | arguments = "${buildout:parts-directory}/etc/zdaemon.conf" |
---|
87 | scripts = ikobactl=ikobactl |
---|
88 | |
---|
89 | [mkdirs] |
---|
90 | recipe = z3c.recipe.mkdir |
---|
91 | paths = |
---|
92 | ${zope_conf:filestorage} |
---|
93 | ${zope_conf:logfiles} |
---|
94 | ${zope_conf:blobstorage} |
---|
95 | ${buildout:directory}/var/mailqueue/cur |
---|
96 | ${buildout:directory}/var/mailqueue/tmp |
---|
97 | ${buildout:directory}/var/mailqueue/new |
---|
98 | ${buildout:directory}/var/datacenter/media |
---|
99 | ${buildout:directory}/parts/test/datacenter |
---|
100 | |
---|
101 | [test] |
---|
102 | recipe = zc.recipe.testrunner |
---|
103 | eggs = ikobacustom.pcn [beaker, test] |
---|
104 | defaults = ['--tests-pattern', '^f?tests$', '-v'] |
---|
105 | |
---|
106 | # this section named so that the i18n scripts are called bin/i18n... |
---|
107 | [i18n] |
---|
108 | recipe = z3c.recipe.i18n:i18n |
---|
109 | packages = ikobacustom.pcn |
---|
110 | eggs = ikobacustom.pcn |
---|
111 | domain = ikobacustom.pcn |
---|
112 | output = src/ikobacustom/pcn/locales |
---|
113 | zcml = |
---|
114 | |
---|
115 | # This section is named so that the zpasswd utility is |
---|
116 | # called `zpasswd` |
---|
117 | [zpasswd] |
---|
118 | recipe = z3c.recipe.dev:script |
---|
119 | eggs = ikobacustom.pcn |
---|
120 | module = zope.app.server.zpasswd |
---|
121 | method = main |
---|
122 | |
---|
123 | [zope_conf] |
---|
124 | recipe = collective.recipe.template |
---|
125 | input = etc/zope.conf.in |
---|
126 | output = ${buildout:parts-directory}/etc/zope.conf |
---|
127 | filestorage = ${buildout:directory}/var/filestorage |
---|
128 | blobstorage = ${buildout:directory}/var/blobstorage |
---|
129 | logfiles = ${buildout:directory}/var/log |
---|
130 | extra = |
---|
131 | # extra = <grokwarnings>True</grokwarnings> |
---|
132 | # 'extra' is copied verbatim. Use it for product config sections and so. |
---|
133 | |
---|
134 | # The [data] and [log] parts are still in here to instruct buildout to not |
---|
135 | # unintentionally throw away the parts/data and parts/log subdirectories |
---|
136 | # that contain the Data.fs and the log files. These files should be |
---|
137 | # copied to the new locations. See the upgrade notes for more information. |
---|
138 | [data] |
---|
139 | recipe = zc.recipe.filestorage |
---|
140 | |
---|
141 | [log] |
---|
142 | recipe = zc.recipe.filestorage |
---|
143 | |
---|
144 | [mailqueue] |
---|
145 | recipe = zc.recipe.filestorage |
---|
146 | |
---|
147 | [site_zcml] |
---|
148 | recipe = collective.recipe.template |
---|
149 | input = etc/site.zcml.in |
---|
150 | output = ${buildout:parts-directory}/etc/site.zcml |
---|
151 | |
---|
152 | [zdaemon_conf] |
---|
153 | recipe = collective.recipe.template |
---|
154 | input = etc/zdaemon.conf.in |
---|
155 | output = ${buildout:parts-directory}/etc/zdaemon.conf |
---|
156 | |
---|
157 | [raw_debug_ini] |
---|
158 | recipe = collective.recipe.template |
---|
159 | input = etc/raw/debug.ini.in |
---|
160 | output = ${buildout:parts-directory}/etc/raw-debug.ini |
---|
161 | |
---|
162 | [raw_deploy_ini] |
---|
163 | recipe = collective.recipe.template |
---|
164 | input = etc/raw/deploy.ini.in |
---|
165 | output = ${buildout:parts-directory}/etc/raw-deploy.ini |
---|
166 | |
---|
167 | [themed_debug_ini] |
---|
168 | recipe = collective.recipe.template |
---|
169 | input = etc/themed/debug.ini.in |
---|
170 | output = ${buildout:parts-directory}/etc/themed-debug.ini |
---|
171 | |
---|
172 | [themed_deploy_ini] |
---|
173 | recipe = collective.recipe.template |
---|
174 | input = etc/themed/deploy.ini.in |
---|
175 | output = ${buildout:parts-directory}/etc/themed-deploy.ini |
---|
176 | |
---|
177 | [profile_ini] |
---|
178 | recipe = collective.recipe.template |
---|
179 | input = etc/profile.ini.in |
---|
180 | output = ${buildout:parts-directory}/etc/profile.ini |
---|
181 | |
---|
182 | [eggbasket] |
---|
183 | recipe = z3c.recipe.eggbasket |
---|
184 | eggs = grok |
---|
185 | url = http://grok.zope.org/releaseinfo/grok-eggs-1.1.tgz |
---|
186 | |
---|
187 | #[waeupdocs] |
---|
188 | #recipe = collective.recipe.sphinxbuilder |
---|
189 | #eggs = ikobacustom.pcn[docs] |
---|
190 | #source = ${buildout:directory}/docs/source |
---|
191 | #build = ${buildout:directory}/docs/build |
---|
192 | |
---|
193 | # Collect test coverage data. |
---|
194 | [coverage-detect] |
---|
195 | recipe = zc.recipe.testrunner |
---|
196 | eggs = ikobacustom.pcn[beaker] |
---|
197 | defaults = ['--tests-pattern', '^f?tests$', '-v', '--coverage', 'coverage'] |
---|
198 | |
---|
199 | # Create a coverage report. |
---|
200 | # Make sure to run bin/coverage-detect to collect the data for the report |
---|
201 | # first! |
---|
202 | [coverage-report] |
---|
203 | recipe = zc.recipe.egg |
---|
204 | eggs = z3c.coverage |
---|
205 | scripts = coveragereport |
---|
206 | arguments = ('${buildout:parts-directory}/coverage-detect/coverage', '${buildout:directory}/coverage-report') |
---|
207 | |
---|
208 | [lxml] |
---|
209 | recipe = z3c.recipe.staticlxml |
---|
210 | egg = lxml |
---|
211 | |
---|
212 | [diazo] |
---|
213 | recipe = zc.recipe.egg |
---|
214 | eggs = |
---|
215 | diazo [wsgi] |
---|
216 | PasteScript |
---|
217 | ikobacustom.pcn [beaker,diazo] |
---|