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

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

Add buildout-windows.cfg and instruction for installation of SIRP on Windows computers.

File size: 2.7 KB
RevLine 
[6269]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]
27#zc.sourcefactory = 0.3.5
28#zope.testing = 3.7.0
29z3c.testsetup = 0.6.1
30hurry.workflow = 0.10
31#hurry.query = 0.9.2
32zope.xmlpickle = 3.4.0
33#hurry.yui = 2.7.0
34hurry.zoperesource = 0.6 # Pinned to circumvent breakage in 0.4.x
35megrok.layout = 1.0.2
36lovely.recipe = 1.0.0    # Pinned to prevent buildout svn-error.
37collective.recipe.sphinxbuilder = 0.7.0
38reportlab = 2.5
39# Require lates version...
40Sphinx =
41
42[app]
43# This creates only the paster script in bin/.
44recipe = zc.recipe.egg
45eggs = waeup.sirp
46       z3c.evalexception>=2.0
47       Paste
48       PasteScript
49       PasteDeploy
50interpreter = python-console
51scripts = paster=paster
52
53[mkdirs]
54recipe = z3c.recipe.mkdir
55paths =
56    ${zope_conf:filestorage}
57    ${zope_conf:logfiles}
58    ${zope_conf:blobstorage}
59
60[zope_conf]
61recipe = collective.recipe.template
62input = etc/zope.conf.in
63output = ${buildout:parts-directory}/etc/zope.conf
64filestorage = ${buildout:directory}/var/filestorage
65blobstorage = ${buildout:directory}/var/blobstorage
66logfiles = ${buildout:directory}/var/log
67extra =
68# extra = <grokwarnings>True</grokwarnings>
69# 'extra' is copied verbatim. Use it for product config sections and so.
70
71# The [data] and [log] parts are still in here to instruct buildout to not
72# unintentionally throw away the parts/data and parts/log subdirectories
73# that contain the Data.fs and the log files. These files should be
74# copied to the new locations. See the upgrade notes for more information.
75[data]
76recipe = zc.recipe.filestorage
77
78[log]
79recipe = zc.recipe.filestorage
80
81[site_zcml]
82recipe = collective.recipe.template
83input = etc/site.zcml.in
84output = ${buildout:parts-directory}/etc/site.zcml
85
86[zdaemon_conf]
87recipe = collective.recipe.template
88input = etc/zdaemon.conf.in
89output = ${buildout:parts-directory}/etc/zdaemon.conf
90
91[deploy_ini]
92recipe = collective.recipe.template
93input = etc/deploy.ini.in
94output = ${buildout:parts-directory}/etc/deploy.ini
95
96[debug_ini]
97recipe = collective.recipe.template
98input = etc/debug.ini.in
99output = ${buildout:parts-directory}/etc/debug.ini
100
101[eggbasket]
102recipe = z3c.recipe.eggbasket
103eggs = grok
104url = http://grok.zope.org/releaseinfo/grok-eggs-1.1.tgz
Note: See TracBrowser for help on using the repository browser.