source: main/waeup.sirp/trunk/buildout-windows.cfg @ 7192

Last change on this file since 7192 was 6817, checked in by Henrik Bettermann, 13 years ago

Update buildout-windows.cfg.

File size: 2.8 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
51[app]
52# This creates only the paster script in bin/.
53recipe = zc.recipe.egg
54eggs = waeup.sirp
55       z3c.evalexception>=2.0
56       Paste
57       PasteScript
58       PasteDeploy
59interpreter = python-console
60scripts = paster=paster
61
62[mkdirs]
63recipe = z3c.recipe.mkdir
64paths =
65    ${zope_conf:filestorage}
66    ${zope_conf:logfiles}
67    ${zope_conf:blobstorage}
68
69[zope_conf]
70recipe = collective.recipe.template
71input = etc/zope.conf.in
72output = ${buildout:parts-directory}/etc/zope.conf
73filestorage = ${buildout:directory}/var/filestorage
74blobstorage = ${buildout:directory}/var/blobstorage
75logfiles = ${buildout:directory}/var/log
76extra =
77# extra = <grokwarnings>True</grokwarnings>
78# 'extra' is copied verbatim. Use it for product config sections and so.
79
80# The [data] and [log] parts are still in here to instruct buildout to not
81# unintentionally throw away the parts/data and parts/log subdirectories
82# that contain the Data.fs and the log files. These files should be
83# copied to the new locations. See the upgrade notes for more information.
84[data]
85recipe = zc.recipe.filestorage
86
87[log]
88recipe = zc.recipe.filestorage
89
90[site_zcml]
91recipe = collective.recipe.template
92input = etc/site.zcml.in
93output = ${buildout:parts-directory}/etc/site.zcml
94
95[zdaemon_conf]
96recipe = collective.recipe.template
97input = etc/zdaemon.conf.in
98output = ${buildout:parts-directory}/etc/zdaemon.conf
99
100[deploy_ini]
101recipe = collective.recipe.template
102input = etc/deploy.ini.in
103output = ${buildout:parts-directory}/etc/deploy.ini
104
105[debug_ini]
106recipe = collective.recipe.template
107input = etc/debug.ini.in
108output = ${buildout:parts-directory}/etc/debug.ini
109
110[eggbasket]
111recipe = z3c.recipe.eggbasket
112eggs = grok
113url = http://grok.zope.org/releaseinfo/grok-eggs-1.1.tgz
Note: See TracBrowser for help on using the repository browser.