source: products/QGSkel/trunk/qgskel/templates/qgplone3_buildout/profiles/base.cfg_tmpl @ 1990

Last change on this file since 1990 was 1990, checked in by chervol, 14 years ago

find links updated

File size: 4.3 KB
Line 
1[buildout]
2parts =
3#if not $newplone
4    plone
5#end if
6#if not $zope2_install
7    zope2
8#end if
9    productdistros
10    instance
11
12#if $newplone
13\# Change the number here to change the version of Plone being used
14extends =
15    http://dist.plone.org/release/${plone_version}/versions.cfg
16    versions.cfg
17versions = versions
18#end if
19
20extensions =
21    buildout.dumppickedversions
22dump-picked-versions-file = profiles/versions.cfg
23overwrite-picked-versions-file = false
24
25\# Add additional egg download sources here. dist.plone.org contains archives
26\# of Plone packages.
27flinks =
28#if $newplone
29    http://dist.quintagroup.com/proxy/dist/release/${plone_version}/
30    http://dist.plone.org/release/${plone_version}
31#else
32    http://dist.quintagroup.com/proxy/dist/
33    http://dist.plone.org
34#end if
35    http://dist.quintagroup.com/repository/
36    http://dist.quintagroup.com/proxy/pypi/
37    http://download.zope.org/ppix/
38    http://download.zope.org/distribution/
39    http://effbot.org/downloads
40find-links = \${buildout:flinks}
41\# Add additional eggs here
42#if not $newplone
43\# elementtree is required by Plone
44#end if
45eggs =
46#if not $newplone
47    elementtree
48#end if
49
50\# Reference any eggs you are developing here, one per line
51\# e.g.: develop = src/my.package
52develop =
53
54#if $oldplone
55[plone]
56\# For more information on this step and configuration options see:
57\# http://pypi.python.org/pypi/plone.recipe.plone
58recipe = plone.recipe.plone==${plone_version}
59#if $plone_products_install
60\# By overriding the download URLs and making them an empty list, we
61\# Make sure our own products directory takes precedence
62urls =
63#end if
64#end if
65
66#if $veryoldplone
67[plone]
68\# For more information on this step and configuration options see:
69\# http://pypi.python.org/pypi/plone.recipe.distros
70recipe = plone.recipe.distros
71urls = http://launchpad.net/plone/2.5/${plone_version}/+download/Plone-${plone_version}.tar.gz
72nested-packages = Plone-${plone_version}.tar.gz
73version-suffix-packages = Plone-${plone_version}.tar.gz
74#end if
75
76#if not $zope2_install
77[zope2]
78\# For more information on this step and configuration options see:
79\# http://pypi.python.org/pypi/plone.recipe.zope2install
80recipe = plone.recipe.zope2install
81fake-zope-eggs = true
82additional-fake-eggs =
83    ZODB3
84#if $oldplone
85url = \${plone:zope2-url}
86#end if
87#if $veryoldplone
88url = http://www.zope.org/Products/Zope/${zope2_version}/Zope-${zope2_version}-final.tgz
89#end if
90#if $newplone
91url = \${versions:zope2-url}
92#end if
93#end if
94
95\# Use this section to download additional old-style products.
96\# List any number of URLs for product tarballs under URLs (separate
97\# with whitespace, or break over several lines, with subsequent lines
98\# indented). If any archives contain several products inside a top-level
99\# directory, list the archive file name (i.e. the last part of the URL,
100\# normally with a .tar.gz suffix or similar) under 'nested-packages'.
101\# If any archives extract to a product directory with a version suffix, list
102\# the archive name under 'version-suffix-packages'.
103[productdistros]
104\# For more information on this step and configuration options see:
105\# http://pypi.python.org/pypi/plone.recipe.distros
106recipe = plone.recipe.distros
107urls =
108nested-packages =
109version-suffix-packages =
110
111[instance]
112\# For more information on this step and configuration options see:
113\# http://pypi.python.org/pypi/plone.recipe.zope2instance
114recipe = plone.recipe.zope2instance
115#if $zope2_install
116zope2-location = ${zope2_install}
117#else
118zope2-location = \${zope2:location}
119#end if
120user = ${zope_user}:${zope_password}
121http-address = ${http_port}
122debug-mode = off
123verbose-security = off
124
125\# If you want Zope to know about any additional eggs, list them here.
126\# This should include any development eggs you listed in develop-eggs above,
127\# e.g. eggs = Plone my.package
128eggs =
129#if $newplone
130    PIL
131    Plone
132    \${buildout:eggs}
133#end if
134#if $oldplone
135    \${buildout:eggs}
136    \${plone:eggs}
137#end if
138#if $veryoldplone
139    \${buildout:eggs}
140#end if
141
142\# If you want to register ZCML slugs for any packages, list them here.
143\# e.g. zcml = my.package my.other.package
144zcml =
145
146products =
147    \${buildout:directory}/products
148    \${productdistros:location}
149#if $oldplone
150#if not $plone_products_install
151    \${plone:products}
152#else
153    ${plone_products_install}
154#end if
155#end if
156#if $veryoldplone
157#if not $plone_products_install
158    \${plone:location}
159#else
160    ${plone_products_install}
161#end if
162#end if
Note: See TracBrowser for help on using the repository browser.