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

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

initial import

File size: 3.0 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
37
38[plone]
39# For more information on this step and configuration options see:
40# http://pypi.python.org/pypi/plone.recipe.plone
41recipe = plone.recipe.plone==3.0
42
43
44[zope2]
45# For more information on this step and configuration options see:
46# http://pypi.python.org/pypi/plone.recipe.zope2install
47recipe = plone.recipe.zope2install
48fake-zope-eggs = true
49url = ${plone:zope2-url}
50
51# Use this section to download additional old-style products.
52# List any number of URLs for product tarballs under URLs (separate
53# with whitespace, or break over several lines, with subsequent lines
54# indented). If any archives contain several products inside a top-level
55# directory, list the archive file name (i.e. the last part of the URL,
56# normally with a .tar.gz suffix or similar) under 'nested-packages'.
57# If any archives extract to a product directory with a version suffix, list
58# the archive name under 'version-suffix-packages'.
59[productdistros]
60# For more information on this step and configuration options see:
61# http://pypi.python.org/pypi/plone.recipe.distros
62recipe = plone.recipe.distros
63urls =
64nested-packages =
65version-suffix-packages =
66
67[instance]
68# For more information on this step and configuration options see:
69# http://pypi.python.org/pypi/plone.recipe.zope2instance
70recipe = plone.recipe.zope2instance
71zope2-location = ${zope2:location}
72user = admin:
73http-address = 8080
74#debug-mode = on
75#verbose-security = on
76# If you want Zope to know about any additional eggs, list them here.
77# This should include any development eggs you listed in develop-eggs above,
78# e.g. eggs = Plone my.package
79eggs =
80    ${buildout:eggs}
81    ${plone:eggs}
82    quintagroup.plonecomments
83
84# If you want to register ZCML slugs for any packages, list them here.
85# e.g. zcml = my.package my.other.package
86zcml =
87       quintagroup.plonecomments
88       quintagroup.plonecomments-overrides
89
90products =
91    ${buildout:directory}/products
92    ${productdistros:location}
93    ${plone:products}
94
95[zopepy]
96# For more information on this step and configuration options see:
97# http://pypi.python.org/pypi/zc.recipe.egg
98recipe = zc.recipe.egg
99eggs = ${instance:eggs}
100interpreter = zopepy
101extra-paths = ${zope2:location}/lib/python
102scripts = zopepy
103
104[test]
105recipe = zc.recipe.testrunner
106eggs = quintagroup.plonecomments
107       ${instance:eggs}
108
109extra-paths = ${zope2:location}/lib/python
Note: See TracBrowser for help on using the repository browser.