|
Revision 204, 1.7 KB
(checked in by mauro, 11 months ago)
|
|
* mr.developer
* plone 4.1
|
| Line | |
|---|
| 1 | [buildout] |
|---|
| 2 | parts = |
|---|
| 3 | zope2 |
|---|
| 4 | productdistros |
|---|
| 5 | instance |
|---|
| 6 | zopepy |
|---|
| 7 | |
|---|
| 8 | # New: this will pick up version settings for all the components. |
|---|
| 9 | # Modify the "3.3.1" to match the version you're seeking. |
|---|
| 10 | find-links = |
|---|
| 11 | http://dist.plone.org/release/3.3.4 |
|---|
| 12 | # http://pypi.python.org/simple |
|---|
| 13 | extends = http://dist.plone.org/release/3.3.4/versions.cfg |
|---|
| 14 | versions = versions |
|---|
| 15 | |
|---|
| 16 | # eggs: Plone is now specified in the egg section. All the |
|---|
| 17 | # dependencies are automatically handled. |
|---|
| 18 | eggs = |
|---|
| 19 | Plone |
|---|
| 20 | biopython |
|---|
| 21 | |
|---|
| 22 | # Reference any eggs you are developing here, one per line |
|---|
| 23 | # e.g.: develop = src/my.package |
|---|
| 24 | develop = |
|---|
| 25 | |
|---|
| 26 | [plone4bio] |
|---|
| 27 | eggs = |
|---|
| 28 | plone4bio.base |
|---|
| 29 | plone4bio.pscoils |
|---|
| 30 | plone4bio.biosql |
|---|
| 31 | plone4biotheme.base |
|---|
| 32 | |
|---|
| 33 | [versions] |
|---|
| 34 | # zope.testing = 3.7.7 |
|---|
| 35 | # Cheetah = 2.2.1 |
|---|
| 36 | hexagonit.recipe.download = 1.2.1 |
|---|
| 37 | Markdown = 2.0.3 |
|---|
| 38 | |
|---|
| 39 | # zope part: Note the new fake-eggs settings. This is required |
|---|
| 40 | # for Zope dependencies to be resolved during buildout. |
|---|
| 41 | [zope2] |
|---|
| 42 | recipe = plone.recipe.zope2install |
|---|
| 43 | url = ${versions:zope2-url} |
|---|
| 44 | fake-zope-eggs = true |
|---|
| 45 | additional-fake-eggs = |
|---|
| 46 | ZConfig |
|---|
| 47 | ZODB3 |
|---|
| 48 | pytz |
|---|
| 49 | skip-fake-eggs = zope.testing |
|---|
| 50 | zope.interface |
|---|
| 51 | zope.exceptions |
|---|
| 52 | |
|---|
| 53 | [instance] |
|---|
| 54 | recipe = plone.recipe.zope2instance |
|---|
| 55 | zope2-location = ${zope2:location} |
|---|
| 56 | http-address = 8080 |
|---|
| 57 | user = admin:admin |
|---|
| 58 | eggs = |
|---|
| 59 | ${buildout:eggs} |
|---|
| 60 | Products.PloneHotfix20110720 |
|---|
| 61 | zcml = |
|---|
| 62 | products = |
|---|
| 63 | ${buildout:directory}/products |
|---|
| 64 | extra-paths = |
|---|
| 65 | ${zope2:location}/lib/python |
|---|
| 66 | |
|---|
| 67 | [zopepy] |
|---|
| 68 | recipe = zc.recipe.egg |
|---|
| 69 | eggs = ${instance:eggs} |
|---|
| 70 | interpreter = zopepy |
|---|
| 71 | extra-paths = |
|---|
| 72 | ${zope2:location}/lib/python |
|---|
| 73 | scripts = zopepy |
|---|
| 74 | |
|---|
| 75 | [productdistros] |
|---|
| 76 | recipe = plone.recipe.distros |
|---|
| 77 | urls = |
|---|
| 78 | nested-packages = |
|---|
| 79 | version-suffix-packages = |
|---|
| 80 | |
|---|