[buildout]
parts =
    plone
    zope2
    productdistros
    testinstance
    zopepy
    development-products

# Add additional egg download sources here. dist.plone.org contains archives
# of Plone packages.
find-links =
    http://dist.plone.org
    http://download.zope.org/ppix/
    http://download.zope.org/distribution/
    http://effbot.org/downloads

# Add additional eggs here
# elementtree is required by Plone
eggs =
    elementtree
    infrae.subversion
    
# Reference any eggs you are developing here, one per line
# e.g.: develop = src/my.package
develop =

[plone]
recipe = plone.recipe.distros
urls = http://plone.googlecode.com/files/Plone-2.5.4-2.tar.gz
nested-packages = Plone-2.5.4-2.tar.gz
version-suffix-packages = Plone-2.5.4-2.tar.gz

[zope2]
recipe = plone.recipe.zope2install
url = http://www.zope.org/Products/Zope/2.9.8/Zope-2.9.8-final.tgz

# Use this section to download additional old-style products.
# List any number of URLs for product tarballs under URLs (separate
# with whitespace, or break over several lines, with subsequent lines
# indented). If any archives contain several products inside a top-level
# directory, list the archive file name (i.e. the last part of the URL, 
# normally with a .tar.gz suffix or similar) under 'nested-packages'.
# If any archives extract to a product directory with a version suffix, list
# the archive name under 'version-suffix-packages'.
[development-products]
recipe = infrae.subversion
urls = 
   https://svn.engagemedia.org/project/indytube/tags/plumi-0.1-3 indytube 

[productdistros]
recipe = plone.recipe.distros
urls =
  	http://plone.org/products/plumi/releases/0.1-final/plumi-0-1-final-tar.bz2
    http://plone.org/products/plone-hotfix/releases/20071106-2/PloneHotfix20071106.tar.gz
nested-packages =
	plumi-0-1-final-tar.bz2
version-suffix-packages = 

[testinstance]
recipe = plone.recipe.zope2instance
zope2-location = ${zope2:location}
user = admin:admin!!
http-address = 8081
debug-mode = on
verbose-security = on

# If you want Zope to know about any additional eggs, list them here.
# This should include any development eggs you listed in develop-eggs above,
# e.g. eggs = ${buildout:eggs} my.package
eggs =
    ${buildout:eggs}
    infrae.subversion
# If you want to register ZCML slugs for any packages, list them here.
# e.g. zcml = my.package my.other.package
zcml = 

products =
    ${buildout:directory}/products
    ${productdistros:location}
    ${plone:location}
    ${buildout:directory}/parts/development-products

[zopepy]
recipe = zc.recipe.egg
eggs = ${testinstance:eggs}
interpreter = zopepy
extra-paths = ${zope2:location}/lib/python
scripts = zopepy
