Changeset 87 for plone4bio.buildout
- Timestamp:
- 09/07/09 10:17:34 (2 years ago)
- Location:
- plone4bio.buildout/trunk
- Files:
-
- 3 modified
-
config/base.cfg (modified) (5 diffs)
-
demo.cfg (modified) (2 diffs)
-
development.cfg (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plone4bio.buildout/trunk/config/base.cfg
r79 r87 1 1 [buildout] 2 # parts: note that the plone part is no longer necessary.3 2 parts = 4 # genometools5 3 zope2 6 4 productdistros … … 8 6 zopepy 9 7 10 # find-links: only the new dist.plone.org URL is needed.11 find-links =12 http://dist.plone.org/release/3.313 14 8 # New: this will pick up version settings for all the components. 15 9 # Modify the "3.3" to match the version you're seeking. 16 extends = 17 http://dist.plone.org/release/3.3/versions.cfg 18 10 find-links = http://dist.plone.org/release/3.3 11 extends = http://dist.plone.org/release/3.3/versions.cfg 19 12 versions = versions 20 13 … … 24 17 Plone 25 18 biopython 26 psycopg227 19 biocomp.pscoils 28 20 Cheetah … … 37 29 src/plone4bio.biosql 38 30 src/plone4biotheme.base 31 32 [plone4bio] 33 eggs = 34 plone4bio.base 35 plone4bio.pscoils 36 plone4bio.biosql 37 plone4biotheme.base 39 38 40 39 [versions] … … 60 59 eggs = 61 60 ${buildout:eggs} 62 plone4bio.base 63 plone4bio.pscoils 64 plone4bio.biosql 65 plone4biotheme.base 61 ${plone4bio:eggs} 66 62 67 63 zcml = 68 plone4bio.base 69 plone4bio.pscoils 70 plone4bio.biosql 71 plone4biotheme.base 64 ${plone4bio:eggs} 72 65 73 66 products = -
plone4bio.buildout/trunk/demo.cfg
r75 r87 3 3 parts += 4 4 plonesite 5 eggs += 6 psycopg2 7 MySQL-python 5 8 6 9 [instance] 7 10 user = admin:admin 11 8 12 9 13 [plonesite] … … 11 15 site-id = plone4bio 12 16 instance = instance 13 site-replace = True17 site-replace = False 14 18 products = 15 19 plone4bio.base -
plone4bio.buildout/trunk/development.cfg
r75 r87 1 1 [buildout] 2 2 extends = config/base.cfg 3 #unzip = true4 3 parts += 5 4 omelette 6 5 pydev 7 6 idelauncher 7 roadrunner 8 8 eggs += 9 9 stxnext.pdb 10 psycopg2 11 MySQL-python 10 12 11 13 [instance] … … 14 16 verbose-security = on 15 17 eggs += 16 # collective.solr17 # collective.indexing18 # plone.app.dexterity19 18 redturtle.bent 20 19 plone.reload==0.11 … … 22 21 Products.PDBDebugMode 23 22 zcml += 24 # collective.indexing25 23 Products.PDBDebugMode 26 24 plone.reload … … 45 43 # update-command = ${idelauncher:command} 46 44 47 [biopython-trunk]48 recipe=zerokspot.recipe.git49 repository=git://github.com/biopython/biopython.git50 51 45 [plonesite] 52 46 recipe = collective.recipe.plonesite 53 47 site-id = plone4bio 54 48 instance = instance 55 site-replace = True49 site-replace = False 56 50 products = 57 # FIXME: plon4bio.biosql objects doesn't get catalogued58 # with collective.indexing installed59 # collective.indexing60 51 plone4bio.base 61 52 plone4biotheme.base … … 63 54 plone4bio.pscoils 64 55 56 [roadrunner] 57 recipe = roadrunner:plone 58 packages-under-test = ${plone4bio:eggs} 59
