| 1 | [buildout] |
|---|
| 2 | parts = |
|---|
| 3 | plone |
|---|
| 4 | zope2 |
|---|
| 5 | productdistros |
|---|
| 6 | instance |
|---|
| 7 | zopepy |
|---|
| 8 | test |
|---|
| 9 | |
|---|
| 10 | versions = versions |
|---|
| 11 | extensions = |
|---|
| 12 | mr.developer |
|---|
| 13 | lovely.buildouthttp |
|---|
| 14 | sources = sources |
|---|
| 15 | auto-checkout=quintagroup.analytics |
|---|
| 16 | extends = |
|---|
| 17 | |
|---|
| 18 | |
|---|
| 19 | # Add additional egg download sources here. dist.plone.org contains archives |
|---|
| 20 | # of Plone packages. |
|---|
| 21 | find-links = |
|---|
| 22 | http://dist.quintagroup.com/proxy/dist/ |
|---|
| 23 | http://dist.plone.org |
|---|
| 24 | http://dist.quintagroup.com/proxy/dist/thirdparty |
|---|
| 25 | http://dist.plone.org/thirdparty |
|---|
| 26 | http://dist.quintagroup.com/repository/simple |
|---|
| 27 | http://dist.quintagroup.com/proxy/pypi/ |
|---|
| 28 | |
|---|
| 29 | # Add additional eggs here |
|---|
| 30 | # elementtree is required by Plone |
|---|
| 31 | eggs = |
|---|
| 32 | elementtree |
|---|
| 33 | |
|---|
| 34 | # Reference any eggs you are developing here, one per line |
|---|
| 35 | # e.g.: develop = src/my.package |
|---|
| 36 | develop = |
|---|
| 37 | |
|---|
| 38 | [sources] |
|---|
| 39 | quintagroup.analytics = svn http://svn.quintagroup.com/products/quintagroup.analytics/branches/treemap@4412 |
|---|
| 40 | |
|---|
| 41 | [versions] |
|---|
| 42 | # Version pins for new style products go here |
|---|
| 43 | plone.recipe.zope2instance = 3.6 |
|---|
| 44 | zope.testing = 3.9.4 |
|---|
| 45 | |
|---|
| 46 | [plone] |
|---|
| 47 | # For more information on this step and configuration options see: |
|---|
| 48 | # http://pypi.python.org/pypi/plone.recipe.plone |
|---|
| 49 | recipe = plone.recipe.plone==3.1.7 |
|---|
| 50 | |
|---|
| 51 | |
|---|
| 52 | [zope2] |
|---|
| 53 | # For more information on this step and configuration options see: |
|---|
| 54 | # http://pypi.python.org/pypi/plone.recipe.zope2install |
|---|
| 55 | recipe = plone.recipe.zope2install |
|---|
| 56 | fake-zope-eggs = true |
|---|
| 57 | url = ${plone:zope2-url} |
|---|
| 58 | skip-fake-eggs = zope.testing |
|---|
| 59 | |
|---|
| 60 | # Use this section to download additional old-style products. |
|---|
| 61 | # List any number of URLs for product tarballs under URLs (separate |
|---|
| 62 | # with whitespace, or break over several lines, with subsequent lines |
|---|
| 63 | # indented). If any archives contain several products inside a top-level |
|---|
| 64 | # directory, list the archive file name (i.e. the last part of the URL, |
|---|
| 65 | # normally with a .tar.gz suffix or similar) under 'nested-packages'. |
|---|
| 66 | # If any archives extract to a product directory with a version suffix, list |
|---|
| 67 | # the archive name under 'version-suffix-packages'. |
|---|
| 68 | [productdistros] |
|---|
| 69 | # For more information on this step and configuration options see: |
|---|
| 70 | # http://pypi.python.org/pypi/plone.recipe.distros |
|---|
| 71 | recipe = plone.recipe.distros |
|---|
| 72 | urls = |
|---|
| 73 | nested-packages = |
|---|
| 74 | version-suffix-packages = |
|---|
| 75 | |
|---|
| 76 | [instance] |
|---|
| 77 | # For more information on this step and configuration options see: |
|---|
| 78 | # http://pypi.python.org/pypi/plone.recipe.zope2instance |
|---|
| 79 | recipe = plone.recipe.zope2instance |
|---|
| 80 | zope2-location = ${zope2:location} |
|---|
| 81 | user = admin:admin |
|---|
| 82 | http-address = 8080 |
|---|
| 83 | #debug-mode = on |
|---|
| 84 | #verbose-security = on |
|---|
| 85 | # If you want Zope to know about any additional eggs, list them here. |
|---|
| 86 | # This should include any development eggs you listed in develop-eggs above, |
|---|
| 87 | # e.g. eggs = Plone my.package |
|---|
| 88 | eggs = |
|---|
| 89 | ${buildout:eggs} |
|---|
| 90 | ${plone:eggs} |
|---|
| 91 | quintagroup.analytics |
|---|
| 92 | |
|---|
| 93 | # If you want to register ZCML slugs for any packages, list them here. |
|---|
| 94 | # e.g. zcml = my.package my.other.package |
|---|
| 95 | zcml = |
|---|
| 96 | quintagroup.analytics |
|---|
| 97 | |
|---|
| 98 | products = |
|---|
| 99 | ${buildout:directory}/products |
|---|
| 100 | ${productdistros:location} |
|---|
| 101 | ${plone:products} |
|---|
| 102 | |
|---|
| 103 | [zopepy] |
|---|
| 104 | # For more information on this step and configuration options see: |
|---|
| 105 | # http://pypi.python.org/pypi/zc.recipe.egg |
|---|
| 106 | recipe = zc.recipe.egg |
|---|
| 107 | eggs = ${instance:eggs} |
|---|
| 108 | interpreter = zopepy |
|---|
| 109 | extra-paths = ${zope2:location}/lib/python |
|---|
| 110 | scripts = zopepy |
|---|
| 111 | |
|---|
| 112 | [test] |
|---|
| 113 | recipe = collective.recipe.template |
|---|
| 114 | input = inline: |
|---|
| 115 | #!/bin/sh |
|---|
| 116 | bin/instance test -s quintagroup.analytics --nowarnings | tee test.log |
|---|
| 117 | grep -q "Ran [0-9]\+ tests with.*[1-9][0-9]* \(failures\|errors\)" test.log |
|---|
| 118 | [ $? -ne 0 ] |
|---|
| 119 | |
|---|
| 120 | output = ${buildout:directory}/bin/test |
|---|
| 121 | mode = 775 |
|---|
| 122 | |
|---|
| 123 | [versions] |
|---|
| 124 | archetypes.schemaextender = 2.0.4 |
|---|