source: main/waeup.sirp/branches/ulif-groktoolkit-1.4/buildout.cfg @ 10982

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

Some modifications that make it possible at least to create a new university with Grok toolkit 1.4 (grok 1.6)

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