source: main/waeup.sirp/branches/ulif-extimgstore/buildout.cfg @ 7048

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