[3516] | 1 | [buildout] |
---|
| 2 | develop = . |
---|
[5495] | 3 | parts = |
---|
| 4 | eggbasket |
---|
| 5 | app |
---|
| 6 | i18n |
---|
| 7 | test |
---|
| 8 | mkdirs |
---|
| 9 | zpasswd |
---|
| 10 | zope_conf |
---|
| 11 | site_zcml |
---|
| 12 | zdaemon_conf |
---|
| 13 | deploy_ini |
---|
| 14 | debug_ini |
---|
[7482] | 15 | profile_ini |
---|
[5495] | 16 | waeupdocs |
---|
| 17 | coverage-detect |
---|
| 18 | coverage-report |
---|
[7808] | 19 | # kofactl creation must be _after_ app! |
---|
| 20 | kofactl |
---|
[5495] | 21 | # For backward compatibility, telling buildout not to throw away |
---|
| 22 | # the data and log subdirectories from the parts directory. |
---|
| 23 | data |
---|
| 24 | log |
---|
[5660] | 25 | # newest = false |
---|
[5495] | 26 | |
---|
| 27 | #extends = versions.cfg |
---|
[5328] | 28 | extends= http://grok.zope.org/releaseinfo/grok-1.1.cfg |
---|
[5495] | 29 | # eggs will be installed in the default buildout location |
---|
| 30 | # (see .buildout/default.cfg in your home directory) |
---|
| 31 | # unless you specify an eggs-directory option here. |
---|
| 32 | |
---|
[3516] | 33 | versions = versions |
---|
| 34 | |
---|
[4789] | 35 | [versions] |
---|
[6287] | 36 | collective.recipe.sphinxbuilder = 0.7.0 |
---|
[6349] | 37 | hurry.workflow = 0.11 |
---|
[6287] | 38 | # Pinned to circumvent breakage in 0.4.x |
---|
| 39 | hurry.zoperesource = 0.6 |
---|
| 40 | # Pinned to prevent buildout svn-error. |
---|
| 41 | lovely.recipe = 1.0.0 |
---|
[5058] | 42 | megrok.layout = 1.0.2 |
---|
[6194] | 43 | reportlab = 2.5 |
---|
[6308] | 44 | transaction = 1.1.0 |
---|
[6287] | 45 | z3c.testsetup = 0.6.1 |
---|
[6308] | 46 | zc.buildout = 1.5.0 |
---|
| 47 | zc.recipe.egg = 1.3.0 |
---|
| 48 | zc.recipe.testrunner = 1.4.0 |
---|
| 49 | zope.app.testing = 3.8.1 |
---|
[6287] | 50 | # for support of @provider directive |
---|
| 51 | zope.interface = 3.6.3 |
---|
| 52 | # for support of contextual default values |
---|
| 53 | zope.schema = 3.8.0 |
---|
[6308] | 54 | zope.testing = 3.10.2 |
---|
[6287] | 55 | zope.xmlpickle = 3.4.0 |
---|
| 56 | # Require latest version... |
---|
[7063] | 57 | Sphinx = 1.0.7 |
---|
[6308] | 58 | ZODB3 = 3.10.3 |
---|
[6871] | 59 | docutils = 0.7 |
---|
| 60 | Jinja2 = 2.3 |
---|
[8345] | 61 | # for support of unicode encoded passwords |
---|
| 62 | zope.password = 3.6.1 |
---|
[4789] | 63 | |
---|
[3516] | 64 | [app] |
---|
[7808] | 65 | # This creates all scripts in bin/. The kofactl created here is 'faulty'. |
---|
[5495] | 66 | recipe = zc.recipe.egg |
---|
[7808] | 67 | eggs = waeup.kofa [beaker] |
---|
[5495] | 68 | z3c.evalexception>=2.0 |
---|
| 69 | Paste |
---|
| 70 | PasteScript |
---|
| 71 | PasteDeploy |
---|
[7482] | 72 | repoze.profile |
---|
[8006] | 73 | ZODB3 |
---|
[5495] | 74 | interpreter = python-console |
---|
[3516] | 75 | |
---|
[7808] | 76 | [kofactl] |
---|
[5503] | 77 | # See http://pypi.python.org/pypi/zc.recipe.egg for details... |
---|
[7808] | 78 | # Here we create the kofactl script again, this time with a |
---|
[5503] | 79 | # fixed path to zdaemon.conf as argument. |
---|
| 80 | recipe = zc.recipe.egg |
---|
[7808] | 81 | eggs = waeup.kofa [beaker] |
---|
[5503] | 82 | arguments = "${buildout:parts-directory}/etc/zdaemon.conf" |
---|
[7808] | 83 | scripts = kofactl=kofactl |
---|
[5503] | 84 | |
---|
[5495] | 85 | [mkdirs] |
---|
| 86 | recipe = z3c.recipe.mkdir |
---|
| 87 | paths = |
---|
| 88 | ${zope_conf:filestorage} |
---|
| 89 | ${zope_conf:logfiles} |
---|
| 90 | ${zope_conf:blobstorage} |
---|
[7470] | 91 | ${buildout:directory}/var/mailqueue/cur |
---|
| 92 | ${buildout:directory}/var/mailqueue/tmp |
---|
| 93 | ${buildout:directory}/var/mailqueue/new |
---|
[7578] | 94 | ${buildout:directory}/var/datacenter/media |
---|
[7583] | 95 | ${buildout:directory}/parts/test/datacenter |
---|
[4789] | 96 | |
---|
[5495] | 97 | [test] |
---|
| 98 | recipe = zc.recipe.testrunner |
---|
[7808] | 99 | eggs = waeup.kofa [beaker, test] |
---|
[5495] | 100 | defaults = ['--tests-pattern', '^f?tests$', '-v'] |
---|
[3516] | 101 | |
---|
[5495] | 102 | # this section named so that the i18n scripts are called bin/i18n... |
---|
| 103 | [i18n] |
---|
| 104 | recipe = z3c.recipe.i18n:i18n |
---|
[7808] | 105 | packages = waeup.kofa |
---|
| 106 | eggs = waeup.kofa |
---|
| 107 | domain = waeup.kofa |
---|
| 108 | output = src/waeup/kofa/locales |
---|
[5495] | 109 | zcml = |
---|
[4789] | 110 | |
---|
[5495] | 111 | # This section is named so that the zpasswd utility is |
---|
| 112 | # called `zpasswd` |
---|
| 113 | [zpasswd] |
---|
| 114 | recipe = z3c.recipe.dev:script |
---|
[7808] | 115 | eggs = waeup.kofa |
---|
[5495] | 116 | module = zope.app.server.zpasswd |
---|
| 117 | method = main |
---|
[3516] | 118 | |
---|
[5495] | 119 | [zope_conf] |
---|
| 120 | recipe = collective.recipe.template |
---|
| 121 | input = etc/zope.conf.in |
---|
| 122 | output = ${buildout:parts-directory}/etc/zope.conf |
---|
| 123 | filestorage = ${buildout:directory}/var/filestorage |
---|
| 124 | blobstorage = ${buildout:directory}/var/blobstorage |
---|
| 125 | logfiles = ${buildout:directory}/var/log |
---|
| 126 | extra = |
---|
| 127 | # extra = <grokwarnings>True</grokwarnings> |
---|
| 128 | # 'extra' is copied verbatim. Use it for product config sections and so. |
---|
| 129 | |
---|
| 130 | # The [data] and [log] parts are still in here to instruct buildout to not |
---|
| 131 | # unintentionally throw away the parts/data and parts/log subdirectories |
---|
| 132 | # that contain the Data.fs and the log files. These files should be |
---|
| 133 | # copied to the new locations. See the upgrade notes for more information. |
---|
[3516] | 134 | [data] |
---|
| 135 | recipe = zc.recipe.filestorage |
---|
| 136 | |
---|
[5495] | 137 | [log] |
---|
| 138 | recipe = zc.recipe.filestorage |
---|
[3516] | 139 | |
---|
[7470] | 140 | [mailqueue] |
---|
| 141 | recipe = zc.recipe.filestorage |
---|
| 142 | |
---|
[5495] | 143 | [site_zcml] |
---|
| 144 | recipe = collective.recipe.template |
---|
| 145 | input = etc/site.zcml.in |
---|
| 146 | output = ${buildout:parts-directory}/etc/site.zcml |
---|
[3516] | 147 | |
---|
[5495] | 148 | [zdaemon_conf] |
---|
| 149 | recipe = collective.recipe.template |
---|
| 150 | input = etc/zdaemon.conf.in |
---|
| 151 | output = ${buildout:parts-directory}/etc/zdaemon.conf |
---|
| 152 | |
---|
| 153 | [deploy_ini] |
---|
| 154 | recipe = collective.recipe.template |
---|
| 155 | input = etc/deploy.ini.in |
---|
| 156 | output = ${buildout:parts-directory}/etc/deploy.ini |
---|
| 157 | |
---|
| 158 | [debug_ini] |
---|
| 159 | recipe = collective.recipe.template |
---|
| 160 | input = etc/debug.ini.in |
---|
| 161 | output = ${buildout:parts-directory}/etc/debug.ini |
---|
| 162 | |
---|
[7482] | 163 | [profile_ini] |
---|
| 164 | recipe = collective.recipe.template |
---|
| 165 | input = etc/profile.ini.in |
---|
| 166 | output = ${buildout:parts-directory}/etc/profile.ini |
---|
| 167 | |
---|
[5495] | 168 | [eggbasket] |
---|
| 169 | recipe = z3c.recipe.eggbasket |
---|
| 170 | eggs = grok |
---|
| 171 | url = http://grok.zope.org/releaseinfo/grok-eggs-1.1.tgz |
---|
| 172 | |
---|
| 173 | [waeupdocs] |
---|
| 174 | recipe = collective.recipe.sphinxbuilder |
---|
[7808] | 175 | eggs = waeup.kofa[docs] |
---|
[5495] | 176 | source = ${buildout:directory}/docs/source |
---|
| 177 | build = ${buildout:directory}/docs/build |
---|
| 178 | |
---|
[4789] | 179 | # Collect test coverage data. |
---|
| 180 | [coverage-detect] |
---|
| 181 | recipe = zc.recipe.testrunner |
---|
[7808] | 182 | eggs = waeup.kofa[beaker] |
---|
[4789] | 183 | defaults = ['--tests-pattern', '^f?tests$', '-v', '--coverage', 'coverage'] |
---|
| 184 | |
---|
| 185 | # Create a coverage report. |
---|
| 186 | # Make sure to run bin/coverage-detect to collect the data for the report |
---|
| 187 | # first! |
---|
| 188 | [coverage-report] |
---|
| 189 | recipe = zc.recipe.egg |
---|
| 190 | eggs = z3c.coverage |
---|
[5226] | 191 | scripts = coveragereport |
---|
[6398] | 192 | arguments = ('${buildout:parts-directory}/coverage-detect/working-directory/coverage', '${buildout:directory}/coverage-report') |
---|