root/plumi-buildout-plone2.5/trunk/buildout.cfg

Revision 384, 2.8 kB (checked in by andy, 3 weeks ago)

fix URL for plumi 0.2.2-final tarball

Line 
1[buildout]
2
3executable = /usr/bin/python2.4
4parts =
5    plone
6    zope2
7    instance
8    zopepy
9    productdistros
10    development-products
11
12#add in
13#when using a svn release
14
15# Add additional egg download sources here. dist.plone.org contains archives
16# of Plone packages.
17find-links =
18    http://dist.plone.org
19    http://download.zope.org/ppix/
20    http://download.zope.org/distribution/
21    http://effbot.org/downloads
22
23# Add additional eggs here
24# elementtree is required by Plone
25eggs =
26    elementtree
27    infrae.subversion
28    imsvdex
29
30# Reference any eggs you are developing here, one per line
31# e.g.: develop = src/my.package
32develop =
33
34[plone]
35recipe = plone.recipe.distros
36urls = https://launchpad.net/plone/2.5/2.5.5/+download/Plone-2.5.5.tar.gz
37nested-packages = Plone-2.5.5.tar.gz
38version-suffix-packages = Plone-2.5.5.tar.gz
39
40[zope2]
41recipe = plone.recipe.zope2install
42url = http://www.zope.org/Products/Zope/2.9.9/Zope-2.9.9-final.tgz
43
44# Use this section to download additional old-style products.
45# List any number of URLs for product tarballs under URLs (separate
46# with whitespace, or break over several lines, with subsequent lines
47# indented). If any archives contain several products inside a top-level
48# directory, list the archive file name (i.e. the last part of the URL,
49# normally with a .tar.gz suffix or similar) under 'nested-packages'.
50# If any archives extract to a product directory with a version suffix, list
51# the archive name under 'version-suffix-packages'.
52
53# For a STATIC release
54[productdistros]
55recipe = plone.recipe.distros
56urls =
57        http://plone.org/products/plumi/releases/0.2.2-final/plumi-0-2-2-final.tgz
58nested-packages =
59        plumi-0-2-2-final.tgz
60version-suffix-packages =
61
62#For using the SVN trunk release
63#[development-products]
64#recipe = infrae.subversion
65#urls = https://svn.plone.org/svn/collective/Plumi/trunk plumi
66
67[development-products]
68recipe = infrae.subversion
69urls = https://svn.plone.org/svn/collective/json_migrator/branches/plumi-0.2.2/ json_migrator
70
71
72[instance]
73recipe = plone.recipe.zope2instance
74zope2-location = ${zope2:location}
75user = admin:admin!!
76http-address = 8080
77debug-mode = on
78verbose-security = on
79effective-user = zope
80
81# If you want Zope to know about any additional eggs, list them here.
82# This should include any development eggs you listed in develop-eggs above,
83# e.g. eggs = ${buildout:eggs} my.package
84eggs =
85    ${buildout:eggs}
86
87# If you want to register ZCML slugs for any packages, list them here.
88# e.g. zcml = my.package my.other.package
89zcml =
90
91products =
92    ${buildout:directory}/products
93    ${plone:location}
94    ${productdistros:location}
95    ${buildout:directory}/parts/development-products
96
97[zopepy]
98recipe = zc.recipe.egg
99eggs = ${instance:eggs}
100interpreter = zopepy
101extra-paths = ${zope2:location}/lib/python
102scripts = zopepy
Note: See TracBrowser for help on using the browser.