| 1 | [buildout] |
|---|
| 2 | parts = |
|---|
| 3 | plone |
|---|
| 4 | zope2 |
|---|
| 5 | productdistros |
|---|
| 6 | testinstance |
|---|
| 7 | zopepy |
|---|
| 8 | development-products |
|---|
| 9 | |
|---|
| 10 | # Add additional egg download sources here. dist.plone.org contains archives |
|---|
| 11 | # of Plone packages. |
|---|
| 12 | find-links = |
|---|
| 13 | http://dist.plone.org |
|---|
| 14 | http://download.zope.org/ppix/ |
|---|
| 15 | http://download.zope.org/distribution/ |
|---|
| 16 | http://effbot.org/downloads |
|---|
| 17 | |
|---|
| 18 | # Add additional eggs here |
|---|
| 19 | # elementtree is required by Plone |
|---|
| 20 | eggs = |
|---|
| 21 | elementtree |
|---|
| 22 | infrae.subversion |
|---|
| 23 | |
|---|
| 24 | # Reference any eggs you are developing here, one per line |
|---|
| 25 | # e.g.: develop = src/my.package |
|---|
| 26 | develop = |
|---|
| 27 | |
|---|
| 28 | [plone] |
|---|
| 29 | recipe = plone.recipe.distros |
|---|
| 30 | urls = http://plone.googlecode.com/files/Plone-2.5.4-2.tar.gz |
|---|
| 31 | nested-packages = Plone-2.5.4-2.tar.gz |
|---|
| 32 | version-suffix-packages = Plone-2.5.4-2.tar.gz |
|---|
| 33 | |
|---|
| 34 | [zope2] |
|---|
| 35 | recipe = plone.recipe.zope2install |
|---|
| 36 | url = http://www.zope.org/Products/Zope/2.9.8/Zope-2.9.8-final.tgz |
|---|
| 37 | |
|---|
| 38 | # Use this section to download additional old-style products. |
|---|
| 39 | # List any number of URLs for product tarballs under URLs (separate |
|---|
| 40 | # with whitespace, or break over several lines, with subsequent lines |
|---|
| 41 | # indented). If any archives contain several products inside a top-level |
|---|
| 42 | # directory, list the archive file name (i.e. the last part of the URL, |
|---|
| 43 | # normally with a .tar.gz suffix or similar) under 'nested-packages'. |
|---|
| 44 | # If any archives extract to a product directory with a version suffix, list |
|---|
| 45 | # the archive name under 'version-suffix-packages'. |
|---|
| 46 | [development-products] |
|---|
| 47 | recipe = infrae.subversion |
|---|
| 48 | urls = |
|---|
| 49 | https://svn.engagemedia.org/project/indytube/tags/plumi-0.1-3 indytube |
|---|
| 50 | |
|---|
| 51 | [productdistros] |
|---|
| 52 | recipe = plone.recipe.distros |
|---|
| 53 | urls = |
|---|
| 54 | http://plone.org/products/plumi/releases/0.1-final/plumi-0-1-final-tar.bz2 |
|---|
| 55 | http://plone.org/products/plone-hotfix/releases/20071106-2/PloneHotfix20071106.tar.gz |
|---|
| 56 | nested-packages = |
|---|
| 57 | plumi-0-1-final-tar.bz2 |
|---|
| 58 | version-suffix-packages = |
|---|
| 59 | |
|---|
| 60 | [testinstance] |
|---|
| 61 | recipe = plone.recipe.zope2instance |
|---|
| 62 | zope2-location = ${zope2:location} |
|---|
| 63 | user = admin:admin!! |
|---|
| 64 | http-address = 8081 |
|---|
| 65 | debug-mode = on |
|---|
| 66 | verbose-security = on |
|---|
| 67 | |
|---|
| 68 | # If you want Zope to know about any additional eggs, list them here. |
|---|
| 69 | # This should include any development eggs you listed in develop-eggs above, |
|---|
| 70 | # e.g. eggs = ${buildout:eggs} my.package |
|---|
| 71 | eggs = |
|---|
| 72 | ${buildout:eggs} |
|---|
| 73 | infrae.subversion |
|---|
| 74 | # If you want to register ZCML slugs for any packages, list them here. |
|---|
| 75 | # e.g. zcml = my.package my.other.package |
|---|
| 76 | zcml = |
|---|
| 77 | |
|---|
| 78 | products = |
|---|
| 79 | ${buildout:directory}/products |
|---|
| 80 | ${productdistros:location} |
|---|
| 81 | ${plone:location} |
|---|
| 82 | ${buildout:directory}/parts/development-products |
|---|
| 83 | |
|---|
| 84 | [zopepy] |
|---|
| 85 | recipe = zc.recipe.egg |
|---|
| 86 | eggs = ${testinstance:eggs} |
|---|
| 87 | interpreter = zopepy |
|---|
| 88 | extra-paths = ${zope2:location}/lib/python |
|---|
| 89 | scripts = zopepy |
|---|