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

Last change on this file since 1142 was 1142, checked in by crchemist, 15 years ago

added PIL to eggs

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