| 1 | [buildout] |
|---|
| 2 | |
|---|
| 3 | executable = /usr/bin/python2.4 |
|---|
| 4 | parts = |
|---|
| 5 | plone |
|---|
| 6 | zope2 |
|---|
| 7 | instance |
|---|
| 8 | zopepy |
|---|
| 9 | productdistros |
|---|
| 10 | development-products |
|---|
| 11 | |
|---|
| 12 | #add in |
|---|
| 13 | #when using a svn release |
|---|
| 14 | |
|---|
| 15 | # Add additional egg download sources here. dist.plone.org contains archives |
|---|
| 16 | # of Plone packages. |
|---|
| 17 | find-links = |
|---|
| 18 | http://dist.plone.org |
|---|
| 19 | http://download.zope.org/ppix/ |
|---|
| 20 | http://download.zope.org/distribution/ |
|---|
| 21 | http://effbot.org/downloads |
|---|
| 22 | |
|---|
| 23 | # Add additional eggs here |
|---|
| 24 | # elementtree is required by Plone |
|---|
| 25 | eggs = |
|---|
| 26 | elementtree |
|---|
| 27 | infrae.subversion |
|---|
| 28 | imsvdex |
|---|
| 29 | |
|---|
| 30 | # Reference any eggs you are developing here, one per line |
|---|
| 31 | # e.g.: develop = src/my.package |
|---|
| 32 | develop = |
|---|
| 33 | |
|---|
| 34 | [plone] |
|---|
| 35 | recipe = plone.recipe.distros |
|---|
| 36 | urls = https://launchpad.net/plone/2.5/2.5.5/+download/Plone-2.5.5.tar.gz |
|---|
| 37 | nested-packages = Plone-2.5.5.tar.gz |
|---|
| 38 | version-suffix-packages = Plone-2.5.5.tar.gz |
|---|
| 39 | |
|---|
| 40 | [zope2] |
|---|
| 41 | recipe = plone.recipe.zope2install |
|---|
| 42 | url = http://www.zope.org/Products/Zope/2.9.9/Zope-2.9.9-final.tgz |
|---|
| 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 | |
|---|
| 53 | # For a STATIC release |
|---|
| 54 | [productdistros] |
|---|
| 55 | recipe = plone.recipe.distros |
|---|
| 56 | urls = |
|---|
| 57 | http://plone.org/products/plumi/releases/0.2.2-final/plumi-0-2-2-final.tgz |
|---|
| 58 | nested-packages = |
|---|
| 59 | plumi-0-2-2-final.tgz |
|---|
| 60 | version-suffix-packages = |
|---|
| 61 | |
|---|
| 62 | #For using the SVN trunk release |
|---|
| 63 | #[development-products] |
|---|
| 64 | #recipe = infrae.subversion |
|---|
| 65 | #urls = https://svn.plone.org/svn/collective/Plumi/trunk plumi |
|---|
| 66 | |
|---|
| 67 | [development-products] |
|---|
| 68 | recipe = infrae.subversion |
|---|
| 69 | urls = https://svn.plone.org/svn/collective/json_migrator/branches/plumi-0.2.2/ json_migrator |
|---|
| 70 | |
|---|
| 71 | |
|---|
| 72 | [instance] |
|---|
| 73 | recipe = plone.recipe.zope2instance |
|---|
| 74 | zope2-location = ${zope2:location} |
|---|
| 75 | user = admin:admin!! |
|---|
| 76 | http-address = 8080 |
|---|
| 77 | debug-mode = on |
|---|
| 78 | verbose-security = on |
|---|
| 79 | effective-user = zope |
|---|
| 80 | |
|---|
| 81 | # If you want Zope to know about any additional eggs, list them here. |
|---|
| 82 | # This should include any development eggs you listed in develop-eggs above, |
|---|
| 83 | # e.g. eggs = ${buildout:eggs} my.package |
|---|
| 84 | eggs = |
|---|
| 85 | ${buildout:eggs} |
|---|
| 86 | |
|---|
| 87 | # If you want to register ZCML slugs for any packages, list them here. |
|---|
| 88 | # e.g. zcml = my.package my.other.package |
|---|
| 89 | zcml = |
|---|
| 90 | |
|---|
| 91 | products = |
|---|
| 92 | ${buildout:directory}/products |
|---|
| 93 | ${plone:location} |
|---|
| 94 | ${productdistros:location} |
|---|
| 95 | ${buildout:directory}/parts/development-products |
|---|
| 96 | |
|---|
| 97 | [zopepy] |
|---|
| 98 | recipe = zc.recipe.egg |
|---|
| 99 | eggs = ${instance:eggs} |
|---|
| 100 | interpreter = zopepy |
|---|
| 101 | extra-paths = ${zope2:location}/lib/python |
|---|
| 102 | scripts = zopepy |
|---|