source: main/waeup.kofa/trunk/buildout.cfg @ 7903

Last change on this file since 7903 was 7903, checked in by uli, 13 years ago

Make description_dict a simple attribute.

File size: 4.9 KB
Line 
1[buildout]
2develop = .
3parts =
4    eggbasket
5    app
6    i18n
7    test
8    mkdirs
9    zpasswd
10    zope_conf
11    site_zcml
12    zdaemon_conf
13    deploy_ini
14    debug_ini
15    profile_ini
16    waeupdocs
17    coverage-detect
18    coverage-report
19# kofactl creation must be _after_ app!
20    kofactl
21# For backward compatibility, telling buildout not to throw away
22# the data and log subdirectories from the parts directory.
23    data
24    log
25# newest = false
26
27#extends = versions.cfg
28extends= http://grok.zope.org/releaseinfo/grok-1.1.cfg
29# eggs will be installed in the default buildout location
30# (see .buildout/default.cfg in your home directory)
31# unless you specify an eggs-directory option here.
32
33versions = versions
34
35[versions]
36collective.recipe.sphinxbuilder = 0.7.0
37hurry.workflow = 0.11
38# Pinned to circumvent breakage in 0.4.x
39hurry.zoperesource = 0.6
40# Pinned to prevent buildout svn-error.
41lovely.recipe = 1.0.0
42megrok.layout = 1.0.2
43reportlab = 2.5
44transaction = 1.1.0
45z3c.testsetup = 0.6.1
46zc.buildout = 1.5.0
47zc.recipe.egg = 1.3.0
48zc.recipe.testrunner = 1.4.0
49zope.app.testing = 3.8.1
50# for support of @provider directive
51zope.interface = 3.6.3
52# for support of contextual default values
53zope.schema = 3.8.0
54zope.testing = 3.10.2
55zope.xmlpickle = 3.4.0
56# Require latest version...
57Sphinx = 1.0.7
58ZODB3 = 3.10.3
59docutils = 0.7
60Jinja2 = 2.3
61
62[app]
63# This creates all scripts in bin/. The kofactl created here is 'faulty'.
64recipe = zc.recipe.egg
65eggs = waeup.kofa [beaker]
66       z3c.evalexception>=2.0
67       Paste
68       PasteScript
69       PasteDeploy
70       repoze.profile
71interpreter = python-console
72
73[kofactl]
74# See http://pypi.python.org/pypi/zc.recipe.egg for details...
75# Here we create the kofactl script again, this time with a
76# fixed path to zdaemon.conf as argument.
77recipe = zc.recipe.egg
78eggs = waeup.kofa [beaker]
79       grokcore.startup
80       zope.app.appsetup
81arguments = "${buildout:parts-directory}/etc/zdaemon.conf"
82scripts = kofactl=kofactl
83
84[mkdirs]
85recipe = z3c.recipe.mkdir
86paths =
87    ${zope_conf:filestorage}
88    ${zope_conf:logfiles}
89    ${zope_conf:blobstorage}
90    ${buildout:directory}/var/mailqueue/cur
91    ${buildout:directory}/var/mailqueue/tmp
92    ${buildout:directory}/var/mailqueue/new
93    ${buildout:directory}/var/datacenter/media
94    ${buildout:directory}/parts/test/datacenter
95
96[test]
97recipe = zc.recipe.testrunner
98eggs = waeup.kofa [beaker, test]
99defaults = ['--tests-pattern', '^f?tests$', '-v']
100
101# this section named so that the i18n scripts are called bin/i18n...
102[i18n]
103recipe = z3c.recipe.i18n:i18n
104packages = waeup.kofa
105eggs = waeup.kofa
106domain = waeup.kofa
107output = src/waeup/kofa/locales
108zcml =
109
110# This section is named so that the zpasswd utility is
111# called `zpasswd`
112[zpasswd]
113recipe = z3c.recipe.dev:script
114eggs = waeup.kofa
115module = zope.app.server.zpasswd
116method = main
117
118[zope_conf]
119recipe = collective.recipe.template
120input = etc/zope.conf.in
121output = ${buildout:parts-directory}/etc/zope.conf
122filestorage = ${buildout:directory}/var/filestorage
123blobstorage = ${buildout:directory}/var/blobstorage
124logfiles = ${buildout:directory}/var/log
125extra =
126# extra = <grokwarnings>True</grokwarnings>
127# 'extra' is copied verbatim. Use it for product config sections and so.
128
129# The [data] and [log] parts are still in here to instruct buildout to not
130# unintentionally throw away the parts/data and parts/log subdirectories
131# that contain the Data.fs and the log files. These files should be
132# copied to the new locations. See the upgrade notes for more information.
133[data]
134recipe = zc.recipe.filestorage
135
136[log]
137recipe = zc.recipe.filestorage
138
139[mailqueue]
140recipe = zc.recipe.filestorage
141
142[site_zcml]
143recipe = collective.recipe.template
144input = etc/site.zcml.in
145output = ${buildout:parts-directory}/etc/site.zcml
146
147[zdaemon_conf]
148recipe = collective.recipe.template
149input = etc/zdaemon.conf.in
150output = ${buildout:parts-directory}/etc/zdaemon.conf
151
152[deploy_ini]
153recipe = collective.recipe.template
154input = etc/deploy.ini.in
155output = ${buildout:parts-directory}/etc/deploy.ini
156
157[debug_ini]
158recipe = collective.recipe.template
159input = etc/debug.ini.in
160output = ${buildout:parts-directory}/etc/debug.ini
161
162[profile_ini]
163recipe = collective.recipe.template
164input = etc/profile.ini.in
165output = ${buildout:parts-directory}/etc/profile.ini
166
167[eggbasket]
168recipe = z3c.recipe.eggbasket
169eggs = grok
170url = http://grok.zope.org/releaseinfo/grok-eggs-1.1.tgz
171
172[waeupdocs]
173recipe = collective.recipe.sphinxbuilder
174eggs = waeup.kofa[docs]
175source = ${buildout:directory}/docs/source
176build = ${buildout:directory}/docs/build
177
178# Collect test coverage data.
179[coverage-detect]
180recipe = zc.recipe.testrunner
181eggs = waeup.kofa[beaker]
182defaults = ['--tests-pattern', '^f?tests$', '-v', '--coverage', 'coverage']
183
184# Create a coverage report.
185# Make sure to run bin/coverage-detect to collect the data for the report
186# first!
187[coverage-report]
188recipe = zc.recipe.egg
189eggs = z3c.coverage
190scripts = coveragereport
191arguments = ('${buildout:parts-directory}/coverage-detect/working-directory/coverage', '${buildout:directory}/coverage-report')
Note: See TracBrowser for help on using the repository browser.