source: main/waeup.sirp/trunk/buildout.cfg @ 7530

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

Generate a profiler configuration on buildout-runs that enables
profiling via repoze.profile.

File size: 4.8 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# sirpctl creation must be _after_ app!
20    sirpctl
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 sirpctl created here is 'faulty'.
64recipe = zc.recipe.egg
65eggs = waeup.sirp
66       z3c.evalexception>=2.0
67       Paste
68       PasteScript
69       PasteDeploy
70       repoze.profile
71interpreter = python-console
72
73[sirpctl]
74# See http://pypi.python.org/pypi/zc.recipe.egg for details...
75# Here we create the sirpctl script again, this time with a
76# fixed path to zdaemon.conf as argument.
77recipe = zc.recipe.egg
78eggs = waeup.sirp
79arguments = "${buildout:parts-directory}/etc/zdaemon.conf"
80scripts = sirpctl=sirpctl
81
82[mkdirs]
83recipe = z3c.recipe.mkdir
84paths =
85    ${zope_conf:filestorage}
86    ${zope_conf:logfiles}
87    ${zope_conf:blobstorage}
88    ${buildout:directory}/var/mailqueue/cur
89    ${buildout:directory}/var/mailqueue/tmp
90    ${buildout:directory}/var/mailqueue/new
91
92[test]
93recipe = zc.recipe.testrunner
94eggs = waeup.sirp [test]
95defaults = ['--tests-pattern', '^f?tests$', '-v']
96
97# this section named so that the i18n scripts are called bin/i18n...
98[i18n]
99recipe = z3c.recipe.i18n:i18n
100packages = waeup.sirp
101eggs = waeup.sirp
102domain = waeup.sirp
103output = src/waeup/sirp/locales
104zcml =
105
106# This section is named so that the zpasswd utility is
107# called `zpasswd`
108[zpasswd]
109recipe = z3c.recipe.dev:script
110eggs = waeup.sirp
111module = zope.app.server.zpasswd
112method = main
113
114[zope_conf]
115recipe = collective.recipe.template
116input = etc/zope.conf.in
117output = ${buildout:parts-directory}/etc/zope.conf
118filestorage = ${buildout:directory}/var/filestorage
119blobstorage = ${buildout:directory}/var/blobstorage
120logfiles = ${buildout:directory}/var/log
121extra =
122# extra = <grokwarnings>True</grokwarnings>
123# 'extra' is copied verbatim. Use it for product config sections and so.
124
125# The [data] and [log] parts are still in here to instruct buildout to not
126# unintentionally throw away the parts/data and parts/log subdirectories
127# that contain the Data.fs and the log files. These files should be
128# copied to the new locations. See the upgrade notes for more information.
129[data]
130recipe = zc.recipe.filestorage
131
132[log]
133recipe = zc.recipe.filestorage
134
135[mailqueue]
136recipe = zc.recipe.filestorage
137
138[site_zcml]
139recipe = collective.recipe.template
140input = etc/site.zcml.in
141output = ${buildout:parts-directory}/etc/site.zcml
142
143[zdaemon_conf]
144recipe = collective.recipe.template
145input = etc/zdaemon.conf.in
146output = ${buildout:parts-directory}/etc/zdaemon.conf
147
148[deploy_ini]
149recipe = collective.recipe.template
150input = etc/deploy.ini.in
151output = ${buildout:parts-directory}/etc/deploy.ini
152
153[debug_ini]
154recipe = collective.recipe.template
155input = etc/debug.ini.in
156output = ${buildout:parts-directory}/etc/debug.ini
157
158[profile_ini]
159recipe = collective.recipe.template
160input = etc/profile.ini.in
161output = ${buildout:parts-directory}/etc/profile.ini
162
163[eggbasket]
164recipe = z3c.recipe.eggbasket
165eggs = grok
166url = http://grok.zope.org/releaseinfo/grok-eggs-1.1.tgz
167
168[waeupdocs]
169recipe = collective.recipe.sphinxbuilder
170eggs = waeup.sirp[docs]
171source = ${buildout:directory}/docs/source
172build = ${buildout:directory}/docs/build
173
174# Collect test coverage data.
175[coverage-detect]
176recipe = zc.recipe.testrunner
177eggs = waeup.sirp
178defaults = ['--tests-pattern', '^f?tests$', '-v', '--coverage', 'coverage']
179
180# Create a coverage report.
181# Make sure to run bin/coverage-detect to collect the data for the report
182# first!
183[coverage-report]
184recipe = zc.recipe.egg
185eggs = z3c.coverage
186scripts = coveragereport
187arguments = ('${buildout:parts-directory}/coverage-detect/working-directory/coverage', '${buildout:directory}/coverage-report')
Note: See TracBrowser for help on using the repository browser.