source: main/waeup.custom/trunk/buildout-windows.cfg @ 7587

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

Change also buildout configuration.

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