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

Last change on this file since 7798 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
RevLine 
[3516]1[buildout]
2develop = .
[7713]3#     #eggbasket
[5495]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
[7482]15    profile_ini
[5495]16    waeupdocs
17    coverage-detect
18    coverage-report
[7713]19    interactive_debugger
[5503]20# sirpctl creation must be _after_ app!
21    sirpctl
[5495]22# For backward compatibility, telling buildout not to throw away
23# the data and log subdirectories from the parts directory.
24    data
25    log
[5660]26# newest = false
[5495]27
28#extends = versions.cfg
[7713]29extends= http://grok.zope.org/releaseinfo/1.4.1/versions.cfg
30#extends= http://grok.zope.org/releaseinfo/grok-1.4/versions.cfg
[5495]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
[3516]35versions = versions
36
[4789]37[versions]
[7713]38fanstatic = 0.11.4
[6287]39collective.recipe.sphinxbuilder = 0.7.0
[6349]40hurry.workflow = 0.11
[6287]41# Pinned to circumvent breakage in 0.4.x
42hurry.zoperesource = 0.6
[7713]43zope.fanstatic =
[6287]44# Pinned to prevent buildout svn-error.
45lovely.recipe = 1.0.0
[7713]46#megrok.layout = 1.0.2
[6194]47reportlab = 2.5
[6308]48transaction = 1.1.0
[6287]49z3c.testsetup = 0.6.1
[7713]50#zc.buildout = 1.5.0
[6308]51zc.recipe.egg = 1.3.0
52zc.recipe.testrunner = 1.4.0
[7713]53#zope.app.testing = 3.8.1
[6287]54# for support of @provider directive
[7713]55#zope.interface = 3.6.3
[6287]56# for support of contextual default values
57zope.schema = 3.8.0
[7713]58#zope.testing = 3.10.2
59#zope.xmlpickle = 3.4.0
[6287]60# Require latest version...
[7063]61Sphinx = 1.0.7
[6308]62ZODB3 = 3.10.3
[6871]63docutils = 0.7
64Jinja2 = 2.3
[4789]65
[3516]66[app]
[5503]67# This creates all scripts in bin/. The sirpctl created here is 'faulty'.
[5495]68recipe = zc.recipe.egg
[7571]69eggs = waeup.sirp [beaker]
[5495]70       z3c.evalexception>=2.0
71       Paste
72       PasteScript
73       PasteDeploy
[7482]74       repoze.profile
[5495]75interpreter = python-console
[3516]76
[5503]77[sirpctl]
78# See http://pypi.python.org/pypi/zc.recipe.egg for details...
[6287]79# Here we create the sirpctl script again, this time with a
[5503]80# fixed path to zdaemon.conf as argument.
81recipe = zc.recipe.egg
[7571]82eggs = waeup.sirp [beaker]
[5503]83arguments = "${buildout:parts-directory}/etc/zdaemon.conf"
84scripts = sirpctl=sirpctl
85
[5495]86[mkdirs]
87recipe = z3c.recipe.mkdir
88paths =
89    ${zope_conf:filestorage}
90    ${zope_conf:logfiles}
91    ${zope_conf:blobstorage}
[7470]92    ${buildout:directory}/var/mailqueue/cur
93    ${buildout:directory}/var/mailqueue/tmp
94    ${buildout:directory}/var/mailqueue/new
[7578]95    ${buildout:directory}/var/datacenter/media
[7583]96    ${buildout:directory}/parts/test/datacenter
[4789]97
[5495]98[test]
99recipe = zc.recipe.testrunner
[7571]100eggs = waeup.sirp [beaker, test]
[5495]101defaults = ['--tests-pattern', '^f?tests$', '-v']
[3516]102
[5495]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 =
[4789]111
[5495]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
[3516]119
[5495]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.
[3516]135[data]
136recipe = zc.recipe.filestorage
137
[5495]138[log]
139recipe = zc.recipe.filestorage
[3516]140
[7470]141[mailqueue]
142recipe = zc.recipe.filestorage
143
[5495]144[site_zcml]
145recipe = collective.recipe.template
146input = etc/site.zcml.in
147output = ${buildout:parts-directory}/etc/site.zcml
[3516]148
[5495]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
[7482]164[profile_ini]
165recipe = collective.recipe.template
166input = etc/profile.ini.in
167output = ${buildout:parts-directory}/etc/profile.ini
168
[5495]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
[5634]176eggs = waeup.sirp[docs]
[5495]177source = ${buildout:directory}/docs/source
178build = ${buildout:directory}/docs/build
179
[4789]180# Collect test coverage data.
181[coverage-detect]
182recipe = zc.recipe.testrunner
[7571]183eggs = waeup.sirp[beaker]
[4789]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
[5226]192scripts = coveragereport
[6398]193arguments = ('${buildout:parts-directory}/coverage-detect/working-directory/coverage', '${buildout:directory}/coverage-report')
[7713]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.