source: products/quintagroup.plonecomments/buildouts/plone-3.0/buildout.cfg

Last change on this file was 2179, checked in by crchemist, 14 years ago

added proper version for Products.GenericSetup?

File size: 3.1 KB
Line 
1[buildout]
2parts =
3    plone
4    zope2
5    productdistros
6    instance
7    zopepy
8    test
9
10versions = versions
11extensions = mr.developer
12sources = sources
13auto-checkout=quintagroup.plonecomments
14
15
16# Add additional egg download sources here. dist.plone.org contains archives
17# of Plone packages.
18find-links =
19    http://dist.plone.org
20    http://dist.plone.org/thirdparty
21
22# Add additional eggs here
23# elementtree is required by Plone
24eggs =
25    elementtree
26
27# Reference any eggs you are developing here, one per line
28# e.g.: develop = src/my.package
29develop =
30
31[sources]
32quintagroup.plonecomments = svn http://svn.quintagroup.com/products/quintagroup.plonecomments/trunk@3179
33
34[versions]
35# Version pins for new style products go here
36plone.recipe.zope2instance = 3.6
37Products.GenericSetup = 1.4
38
39[plone]
40# For more information on this step and configuration options see:
41# http://pypi.python.org/pypi/plone.recipe.plone
42recipe = plone.recipe.plone==3.0
43
44
45[zope2]
46# For more information on this step and configuration options see:
47# http://pypi.python.org/pypi/plone.recipe.zope2install
48recipe = plone.recipe.zope2install
49fake-zope-eggs = true
50url = ${plone:zope2-url}
51
52# Use this section to download additional old-style products.
53# List any number of URLs for product tarballs under URLs (separate
54# with whitespace, or break over several lines, with subsequent lines
55# indented). If any archives contain several products inside a top-level
56# directory, list the archive file name (i.e. the last part of the URL,
57# normally with a .tar.gz suffix or similar) under 'nested-packages'.
58# If any archives extract to a product directory with a version suffix, list
59# the archive name under 'version-suffix-packages'.
60[productdistros]
61# For more information on this step and configuration options see:
62# http://pypi.python.org/pypi/plone.recipe.distros
63recipe = plone.recipe.distros
64urls =
65nested-packages =
66version-suffix-packages =
67
68[instance]
69# For more information on this step and configuration options see:
70# http://pypi.python.org/pypi/plone.recipe.zope2instance
71recipe = plone.recipe.zope2instance
72zope2-location = ${zope2:location}
73user = admin:
74http-address = 8080
75#debug-mode = on
76#verbose-security = on
77# If you want Zope to know about any additional eggs, list them here.
78# This should include any development eggs you listed in develop-eggs above,
79# e.g. eggs = Plone my.package
80eggs =
81    ${buildout:eggs}
82    ${plone:eggs}
83    quintagroup.plonecomments
84
85# If you want to register ZCML slugs for any packages, list them here.
86# e.g. zcml = my.package my.other.package
87zcml =
88       quintagroup.plonecomments
89       quintagroup.plonecomments-overrides
90
91products =
92    ${buildout:directory}/products
93    ${productdistros:location}
94    ${plone:products}
95
96[zopepy]
97# For more information on this step and configuration options see:
98# http://pypi.python.org/pypi/zc.recipe.egg
99recipe = zc.recipe.egg
100eggs = ${instance:eggs}
101interpreter = zopepy
102extra-paths = ${zope2:location}/lib/python
103scripts = zopepy
104
105[test]
106recipe = zc.recipe.testrunner
107eggs = quintagroup.plonecomments
108       ${instance:eggs}
109
110extra-paths = ${zope2:location}/lib/python
Note: See TracBrowser for help on using the repository browser.