source: main/waeup.kofa/trunk/buildout-windows.cfg @ 8356

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

Pin zope.password version.

File size: 2.9 KB
Line 
1[buildout]
2develop = .
3parts =
4    eggbasket
5    app
6    mkdirs
7    zope_conf
8    site_zcml
9    zdaemon_conf
10    deploy_ini
11    debug_ini
12# For backward compatibility, telling buildout not to throw away
13# the data and log subdirectories from the parts directory.
14    data
15    log
16# newest = false
17
18#extends = versions.cfg
19extends= http://grok.zope.org/releaseinfo/grok-1.1.cfg
20# eggs will be installed in the default buildout location
21# (see .buildout/default.cfg in your home directory)
22# unless you specify an eggs-directory option here.
23
24versions = versions
25
26[versions]
27collective.recipe.sphinxbuilder = 0.7.0
28hurry.workflow = 0.11
29# Pinned to circumvent breakage in 0.4.x
30hurry.zoperesource = 0.6
31# Pinned to prevent buildout svn-error.
32lovely.recipe = 1.0.0
33megrok.layout = 1.0.2
34reportlab = 2.5
35transaction = 1.1.0
36z3c.testsetup = 0.6.1
37zc.buildout = 1.5.0
38zc.recipe.egg = 1.3.0
39zc.recipe.testrunner = 1.4.0
40zope.app.testing = 3.8.1
41# for support of @provider directive
42zope.interface = 3.6.3
43# for support of contextual default values
44zope.schema = 3.8.0
45zope.testing = 3.10.2
46zope.xmlpickle = 3.4.0
47# Require latest version...
48Sphinx =
49ZODB3 = 3.10.3
50# for support of unicode encoded passwords
51zope.password = 3.6.1
52
53[app]
54# This creates only the paster script in bin/.
55recipe = zc.recipe.egg
56eggs = waeup.kofa
57       z3c.evalexception>=2.0
58       Paste
59       PasteScript
60       PasteDeploy
61interpreter = python-console
62scripts = paster=paster
63
64[mkdirs]
65recipe = z3c.recipe.mkdir
66paths =
67    ${zope_conf:filestorage}
68    ${zope_conf:logfiles}
69    ${zope_conf:blobstorage}
70    ${buildout:directory}/var/datacenter/media
71
72[zope_conf]
73recipe = collective.recipe.template
74input = etc/zope.conf.in
75output = ${buildout:parts-directory}/etc/zope.conf
76filestorage = ${buildout:directory}/var/filestorage
77blobstorage = ${buildout:directory}/var/blobstorage
78logfiles = ${buildout:directory}/var/log
79extra =
80# extra = <grokwarnings>True</grokwarnings>
81# 'extra' is copied verbatim. Use it for product config sections and so.
82
83# The [data] and [log] parts are still in here to instruct buildout to not
84# unintentionally throw away the parts/data and parts/log subdirectories
85# that contain the Data.fs and the log files. These files should be
86# copied to the new locations. See the upgrade notes for more information.
87[data]
88recipe = zc.recipe.filestorage
89
90[log]
91recipe = zc.recipe.filestorage
92
93[site_zcml]
94recipe = collective.recipe.template
95input = etc/site.zcml.in
96output = ${buildout:parts-directory}/etc/site.zcml
97
98[zdaemon_conf]
99recipe = collective.recipe.template
100input = etc/zdaemon.conf.in
101output = ${buildout:parts-directory}/etc/zdaemon.conf
102
103[deploy_ini]
104recipe = collective.recipe.template
105input = etc/deploy.ini.in
106output = ${buildout:parts-directory}/etc/deploy.ini
107
108[debug_ini]
109recipe = collective.recipe.template
110input = etc/debug.ini.in
111output = ${buildout:parts-directory}/etc/debug.ini
112
113[eggbasket]
114recipe = z3c.recipe.eggbasket
115eggs = grok
116url = http://grok.zope.org/releaseinfo/grok-eggs-1.1.tgz
Note: See TracBrowser for help on using the repository browser.