[Zope-CMF] Re: Buildout recipe for CMF?

Hanno Schlichting plone at hannosch.info
Thu Dec 13 18:49:42 EST 2007


Andreas Jung wrote:
> is there a buildout recipe that can unpack the CMF source archive properly?
> The problem is basically that the top-level folder contains the products
> as subdirectories. So the product dirs must be moved or linked.

Sidnei already mentioned my recipe, but as I never found the time to
document it, a simple example on how to use it might help. There is also
another option called 'version-suffix-packages' used in the same way as
'nested-packages' which takes a whitespace separated list of names as
well. This one is able to handle a PAS release tarball.

Hanno

Sample buildout.cfg:

[buildout]

parts =
    zope2
    cmf
    instance

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

[cmf]
recipe = plone.recipe.distros
urls = http://www.zope.org/Products/CMF/CMF-2.1.0/CMF-2.1.0.tar.gz
nested-packages = CMF-2.1.0.tar.gz

[instance]
recipe = plone.recipe.zope2instance
zope2-location = ${zope2:location}
user = admin:admin
products =
    ${cmf:location}



More information about the Zope-CMF mailing list