|
Revision 204, 2.2 KB
(checked in by mauro, 7 months ago)
|
|
* mr.developer
* plone 4.1
|
| Line | |
|---|
| 1 | [buildout] |
|---|
| 2 | extensions += mr.developer |
|---|
| 3 | extends = config/plone4.cfg |
|---|
| 4 | parts += |
|---|
| 5 | omelette |
|---|
| 6 | pydev |
|---|
| 7 | idelauncher |
|---|
| 8 | # roadrunner |
|---|
| 9 | pyflakes |
|---|
| 10 | eggs += |
|---|
| 11 | psycopg2 |
|---|
| 12 | MySQL-python |
|---|
| 13 | |
|---|
| 14 | [instance] |
|---|
| 15 | user = admin:admin |
|---|
| 16 | debug-mode = on |
|---|
| 17 | verbose-security = on |
|---|
| 18 | eggs += |
|---|
| 19 | plone4bio.base |
|---|
| 20 | # plone4bio.structure |
|---|
| 21 | plone4biotheme.base |
|---|
| 22 | plone4bio.biosql |
|---|
| 23 | plone4bio.pscoils |
|---|
| 24 | redturtle.bent |
|---|
| 25 | plone.reload |
|---|
| 26 | ZopeHealthWatcher |
|---|
| 27 | # Products.PDBDebugMode |
|---|
| 28 | # TODO: z3c.autoinclude |
|---|
| 29 | zcml += |
|---|
| 30 | plone.reload |
|---|
| 31 | plone4bio.base |
|---|
| 32 | # plone4bio.structure |
|---|
| 33 | plone4biotheme.base |
|---|
| 34 | plone4bio.biosql |
|---|
| 35 | plone4bio.pscoils |
|---|
| 36 | |
|---|
| 37 | [omelette] |
|---|
| 38 | recipe = collective.recipe.omelette |
|---|
| 39 | eggs = ${instance:eggs} |
|---|
| 40 | # products = ${instance:products} |
|---|
| 41 | |
|---|
| 42 | # Automatically add eggs to PyDev project path |
|---|
| 43 | [pydev] |
|---|
| 44 | recipe = pb.recipes.pydev |
|---|
| 45 | pydevproject_path = ${buildout:directory}/.pydevproject |
|---|
| 46 | eggs = ${instance:eggs} |
|---|
| 47 | # extra_paths = ${zope2:location}/lib/python/ |
|---|
| 48 | |
|---|
| 49 | [idelauncher] |
|---|
| 50 | recipe = plone.recipe.command |
|---|
| 51 | command = |
|---|
| 52 | wget -O ${buildout:directory}/bin/idelauncher.py http://plone.org/documentation/tutorial/developing-plone-with-eclipse/idelauncher.py |
|---|
| 53 | # update-command = ${idelauncher:command} |
|---|
| 54 | |
|---|
| 55 | [plonesite] |
|---|
| 56 | recipe = collective.recipe.plonesite |
|---|
| 57 | site-id = plone4bio |
|---|
| 58 | instance = instance |
|---|
| 59 | site-replace = False |
|---|
| 60 | products = |
|---|
| 61 | plone4bio.base |
|---|
| 62 | # plone4bio.structure |
|---|
| 63 | plone4biotheme.base |
|---|
| 64 | plone4bio.biosql |
|---|
| 65 | plone4bio.pscoils |
|---|
| 66 | |
|---|
| 67 | #[roadrunner] |
|---|
| 68 | #recipe = roadrunner:plone |
|---|
| 69 | #packages-under-test = ${plone4bio:eggs} |
|---|
| 70 | |
|---|
| 71 | [pyflakes] |
|---|
| 72 | recipe = zc.recipe.egg |
|---|
| 73 | scripts = |
|---|
| 74 | pyflakes |
|---|
| 75 | eggs = |
|---|
| 76 | pyflakes |
|---|
| 77 | setuptools |
|---|
| 78 | entry-points = pyflakes=pkg_resources:run_script |
|---|
| 79 | arguments = 'pyflakes', 'pyflakes' |
|---|
| 80 | initialization = |
|---|
| 81 | sys.argv += """${buildout:develop}""".split() |
|---|
| 82 | |
|---|
| 83 | [sources] |
|---|
| 84 | plone4bio.base = svn http://plone4bio.org/svn/plone4bio.base/trunk |
|---|
| 85 | plone4bio.biosql = svn http://plone4bio.org/svn/plone4bio.biosql/trunk |
|---|
| 86 | plone4biotheme.base = svn http://plone4bio.org/svn/plone4biotheme.base/trunk |
|---|
| 87 | biocomp.pscoils = svn http://plone4bio.org/svn/biocomp.pscoils/branches/biopython-enabled biocomp.pscoils |
|---|
| 88 | plone4bio.pscoils = svn http://plone4bio.org/svn/plone4bio.pscoils/trunk |
|---|
| 89 | # plone4bio.structure = svn http://plone4bio.org/svn/plone4bio.structure/trunk |
|---|