| 1 | [buildout] |
|---|
| 2 | parts = |
|---|
| 3 | productdistros |
|---|
| 4 | instance |
|---|
| 5 | zopepy |
|---|
| 6 | test |
|---|
| 7 | |
|---|
| 8 | # Change the number here to change the version of Plone being used |
|---|
| 9 | extends = |
|---|
| 10 | http://dist.plone.org/release/4.1-latest/versions.cfg |
|---|
| 11 | |
|---|
| 12 | versions = versions |
|---|
| 13 | extensions = |
|---|
| 14 | mr.developer |
|---|
| 15 | lovely.buildouthttp |
|---|
| 16 | sources = sources |
|---|
| 17 | auto-checkout=quintagroup.analytics |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | # Add additional egg download sources here. dist.plone.org contains archives |
|---|
| 21 | # of Plone packages. |
|---|
| 22 | find-links = |
|---|
| 23 | http://dist.quintagroup.com/proxy/dist/release/4.1-latest/ |
|---|
| 24 | http://dist.plone.org/release/4.1-latest |
|---|
| 25 | http://dist.quintagroup.com/proxy/dist/thirdparty |
|---|
| 26 | http://dist.plone.org/thirdparty |
|---|
| 27 | http://dist.quintagroup.com/repository/simple |
|---|
| 28 | http://dist.quintagroup.com/proxy/pypi/ |
|---|
| 29 | |
|---|
| 30 | # Add additional eggs here |
|---|
| 31 | eggs = |
|---|
| 32 | |
|---|
| 33 | # Reference any eggs you are developing here, one per line |
|---|
| 34 | # e.g.: develop = src/my.package |
|---|
| 35 | develop = |
|---|
| 36 | |
|---|
| 37 | [sources] |
|---|
| 38 | quintagroup.analytics = svn http://svn.quintagroup.com/products/quintagroup.analytics/branches/treemap@4412 |
|---|
| 39 | |
|---|
| 40 | |
|---|
| 41 | |
|---|
| 42 | |
|---|
| 43 | |
|---|
| 44 | # Use this section to download additional old-style products. |
|---|
| 45 | # List any number of URLs for product tarballs under URLs (separate |
|---|
| 46 | # with whitespace, or break over several lines, with subsequent lines |
|---|
| 47 | # indented). If any archives contain several products inside a top-level |
|---|
| 48 | # directory, list the archive file name (i.e. the last part of the URL, |
|---|
| 49 | # normally with a .tar.gz suffix or similar) under 'nested-packages'. |
|---|
| 50 | # If any archives extract to a product directory with a version suffix, list |
|---|
| 51 | # the archive name under 'version-suffix-packages'. |
|---|
| 52 | [productdistros] |
|---|
| 53 | # For more information on this step and configuration options see: |
|---|
| 54 | # http://pypi.python.org/pypi/plone.recipe.distros |
|---|
| 55 | recipe = plone.recipe.distros |
|---|
| 56 | urls = |
|---|
| 57 | nested-packages = |
|---|
| 58 | version-suffix-packages = |
|---|
| 59 | |
|---|
| 60 | [instance] |
|---|
| 61 | # For more information on this step and configuration options see: |
|---|
| 62 | # http://pypi.python.org/pypi/plone.recipe.zope2instance |
|---|
| 63 | recipe = plone.recipe.zope2instance |
|---|
| 64 | user = admin: |
|---|
| 65 | http-address = 8080 |
|---|
| 66 | #debug-mode = on |
|---|
| 67 | #verbose-security = on |
|---|
| 68 | blob-storage = var/blobstorage |
|---|
| 69 | # If you want Zope to know about any additional eggs, list them here. |
|---|
| 70 | # This should include any development eggs you listed in develop-eggs above, |
|---|
| 71 | # e.g. eggs = Plone my.package |
|---|
| 72 | eggs = |
|---|
| 73 | Zope2 |
|---|
| 74 | Plone |
|---|
| 75 | ${buildout:eggs} |
|---|
| 76 | |
|---|
| 77 | # If you want to register ZCML slugs for any packages, list them here. |
|---|
| 78 | # e.g. zcml = my.package my.other.package |
|---|
| 79 | zcml = |
|---|
| 80 | quintagroup.analytics |
|---|
| 81 | |
|---|
| 82 | products = |
|---|
| 83 | ${buildout:directory}/products |
|---|
| 84 | ${productdistros:location} |
|---|
| 85 | |
|---|
| 86 | [zopepy] |
|---|
| 87 | # For more information on this step and configuration options see: |
|---|
| 88 | # http://pypi.python.org/pypi/zc.recipe.egg |
|---|
| 89 | recipe = zc.recipe.egg |
|---|
| 90 | eggs = ${instance:eggs} |
|---|
| 91 | interpreter = zopepy |
|---|
| 92 | scripts = zopepy |
|---|
| 93 | |
|---|
| 94 | [test] |
|---|
| 95 | recipe = collective.xmltestreport |
|---|
| 96 | eggs = |
|---|
| 97 | quintagroup.analytics |
|---|
| 98 | ${instance:eggs} |
|---|
| 99 | |
|---|
| 100 | defaults = ['--exit-with-status', '--auto-color', '--auto-progress', '--xml', '--coverage=${buildout:directory}/coverage'] |
|---|
| 101 | |
|---|
| 102 | [versions] |
|---|