[6269] | 1 | [buildout] |
---|
| 2 | develop = . |
---|
| 3 | parts = |
---|
| 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 |
---|
| 19 | extends= 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 | |
---|
| 24 | versions = versions |
---|
| 25 | |
---|
| 26 | [versions] |
---|
[6817] | 27 | collective.recipe.sphinxbuilder = 0.7.0 |
---|
| 28 | hurry.workflow = 0.11 |
---|
| 29 | # Pinned to circumvent breakage in 0.4.x |
---|
| 30 | hurry.zoperesource = 0.6 |
---|
| 31 | # Pinned to prevent buildout svn-error. |
---|
| 32 | lovely.recipe = 1.0.0 |
---|
| 33 | megrok.layout = 1.0.2 |
---|
| 34 | reportlab = 2.5 |
---|
| 35 | transaction = 1.1.0 |
---|
[6269] | 36 | z3c.testsetup = 0.6.1 |
---|
[6817] | 37 | zc.buildout = 1.5.0 |
---|
| 38 | zc.recipe.egg = 1.3.0 |
---|
| 39 | zc.recipe.testrunner = 1.4.0 |
---|
| 40 | zope.app.testing = 3.8.1 |
---|
| 41 | # for support of @provider directive |
---|
| 42 | zope.interface = 3.6.3 |
---|
| 43 | # for support of contextual default values |
---|
| 44 | zope.schema = 3.8.0 |
---|
| 45 | zope.testing = 3.10.2 |
---|
[6269] | 46 | zope.xmlpickle = 3.4.0 |
---|
[6817] | 47 | # Require latest version... |
---|
| 48 | Sphinx = |
---|
| 49 | ZODB3 = 3.10.3 |
---|
[6269] | 50 | |
---|
| 51 | [app] |
---|
| 52 | # This creates only the paster script in bin/. |
---|
| 53 | recipe = zc.recipe.egg |
---|
| 54 | eggs = waeup.sirp |
---|
| 55 | z3c.evalexception>=2.0 |
---|
| 56 | Paste |
---|
| 57 | PasteScript |
---|
| 58 | PasteDeploy |
---|
| 59 | interpreter = python-console |
---|
| 60 | scripts = paster=paster |
---|
| 61 | |
---|
| 62 | [mkdirs] |
---|
| 63 | recipe = z3c.recipe.mkdir |
---|
| 64 | paths = |
---|
| 65 | ${zope_conf:filestorage} |
---|
| 66 | ${zope_conf:logfiles} |
---|
| 67 | ${zope_conf:blobstorage} |
---|
[7578] | 68 | ${buildout:directory}/var/datacenter/media |
---|
[6269] | 69 | |
---|
| 70 | [zope_conf] |
---|
| 71 | recipe = collective.recipe.template |
---|
| 72 | input = etc/zope.conf.in |
---|
| 73 | output = ${buildout:parts-directory}/etc/zope.conf |
---|
| 74 | filestorage = ${buildout:directory}/var/filestorage |
---|
| 75 | blobstorage = ${buildout:directory}/var/blobstorage |
---|
| 76 | logfiles = ${buildout:directory}/var/log |
---|
| 77 | extra = |
---|
| 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] |
---|
| 86 | recipe = zc.recipe.filestorage |
---|
| 87 | |
---|
| 88 | [log] |
---|
| 89 | recipe = zc.recipe.filestorage |
---|
| 90 | |
---|
| 91 | [site_zcml] |
---|
| 92 | recipe = collective.recipe.template |
---|
| 93 | input = etc/site.zcml.in |
---|
| 94 | output = ${buildout:parts-directory}/etc/site.zcml |
---|
| 95 | |
---|
| 96 | [zdaemon_conf] |
---|
| 97 | recipe = collective.recipe.template |
---|
| 98 | input = etc/zdaemon.conf.in |
---|
| 99 | output = ${buildout:parts-directory}/etc/zdaemon.conf |
---|
| 100 | |
---|
| 101 | [deploy_ini] |
---|
| 102 | recipe = collective.recipe.template |
---|
| 103 | input = etc/deploy.ini.in |
---|
| 104 | output = ${buildout:parts-directory}/etc/deploy.ini |
---|
| 105 | |
---|
| 106 | [debug_ini] |
---|
| 107 | recipe = collective.recipe.template |
---|
| 108 | input = etc/debug.ini.in |
---|
| 109 | output = ${buildout:parts-directory}/etc/debug.ini |
---|
| 110 | |
---|
| 111 | [eggbasket] |
---|
| 112 | recipe = z3c.recipe.eggbasket |
---|
| 113 | eggs = grok |
---|
| 114 | url = http://grok.zope.org/releaseinfo/grok-eggs-1.1.tgz |
---|