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
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
60WebOb = 1.1
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
70interpreter = python-console
71
72[sirpctl]
73# See http://pypi.python.org/pypi/zc.recipe.egg for details...
74# Here we create the sirpctl script again, this time with a
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
81[mkdirs]
82recipe = z3c.recipe.mkdir
83paths =
84    ${zope_conf:filestorage}
85    ${zope_conf:logfiles}
86    ${zope_conf:blobstorage}
87
88[test]
89recipe = zc.recipe.testrunner
90eggs = waeup.sirp [test]
91defaults = ['--tests-pattern', '^f?tests$', '-v']
92
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 =
101
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
109
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.
125[data]
126recipe = zc.recipe.filestorage
127
128[log]
129recipe = zc.recipe.filestorage
130
131[site_zcml]
132recipe = collective.recipe.template
133input = etc/site.zcml.in
134output = ${buildout:parts-directory}/etc/site.zcml
135
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
158eggs = waeup.sirp[docs]
159source = ${buildout:directory}/docs/source
160build = ${buildout:directory}/docs/build
161
162# Collect test coverage data.
163[coverage-detect]
164recipe = zc.recipe.testrunner
165eggs = waeup.sirp
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
174scripts = coveragereport
175arguments = ('${buildout:parts-directory}/coverage-detect/working-directory/coverage', '${buildout:directory}/coverage-report')
Note: See TracBrowser for help on using the repository browser.