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

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

First sketches of smart SMTP handling for our portal deploying zope.sendmail. Requires new buildout run. Also check new mail.zcml.

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