1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# XXX refactor parts shared with erp5.cfg into a common file
[buildout]
extends =
mysql-tritonn-5.0.cfg
python-2.6.cfg
lxml-python.cfg
python-ldap-python.cfg
subversion.cfg
git.cfg
glib.cfg
parts =
itools-build
mysql-python
products-other
products-deps
products-erp5
# ugly itools building sections until itools and setuptools learn to get
# along:
[itools-download]
recipe = hexagonit.recipe.download
strip-top-level-dir = true
url = http://download.hforge.org/itools/0.50/${itools:pkgname}.tar.gz
md5sum = 12704cc354e2201e0921a832bf6b1556
destination = ${itools:source}
[itools-build]
recipe = plone.recipe.command
# reference itools-download:destination instead of itools:source to trigger its
# execution
command =
cd ${itools-download:destination}
CFLAGS="-I${glib:location}/include/glib-2.0 -I${glib:location}/lib/glib-2.0/include" LDFLAGS="-L${glib:location}/lib -Wl,-rpath -Wl,${glib:location}/lib" ${python2.6:executable} setup.py install_lib -d ${itools:lib}
update-command = ${:command}
location = ${itools:location}
stop-on-error = true
[mysql-python-env]
PATH =${software_definition:mysql_software}/bin:%(PATH)s
[mysql-python]
recipe = zc.recipe.egg:custom
egg = MySQL-python
environment = mysql-python-env
rpath =
${software_definition:mysql_software}/lib/mysql/
${software_definition:software_home}/parts/zlib/lib/
${software_definition:software_home}/parts/openssl/lib/
[products-deps]
# Recipe minitage.recipe.fetch is disabled, as it uses PATH variable, but it
# is not possible to change its environment to use localy delivered subversion
# nor git. plone.recipe.command can do same job, but it is controllable which
# binary will be used
recipe = plone.recipe.command
svn_param =--trust-server-cert --non-interactive
location = ${buildout:parts-directory}/${:_buildout_section_name_}
stop-on-error = true
command =
${subversion:location}/bin/svn checkout ${:svn_param} https://svn.plone.org/svn/collective/ExtFile/trunk ${:location}/ExtFile
${git:location}/bin/git clone git://git.hforge.org/Localizer.git ${:location}/Localizer
update-command =
${subversion:location}/bin/svn up ${:svn_param} ${:location}/ExtFile
cd ${:location}/Localizer
${git:location}/bin/git pull
[products]
recipe = plone.recipe.command
paths =
${products-deps:location}
command =
echo "Product folders: ${:paths}"
update-command = ${:command}
[eggs]
recipe = zc.recipe.egg
eggs =
${mysql-python:egg}
${lxml-python:egg}
${python-ldap-python:egg}
PyXML
SOAPpy
cElementTree
elementtree
erp5diff
ipdb
mechanize
numpy
ordereddict
paramiko
ply
pysvn
python-memcached
pytz
simplejson
threadframe
timerserver
uuid
xml_marshaller
xupdate_processor
feedparser
# Zope 2.12 with patched acquisition
Zope2
Acquisition
# Other Zope 2 packages
Products.PluggableAuthService
Products.PluginRegistry
# CMF 2.2
Products.CMFActionIcons
Products.CMFCalendar
Products.CMFCore
Products.CMFDefault
Products.CMFTopic
Products.CMFUid
Products.DCWorkflow
Products.GenericSetup
five.localsitemanager
# Other products
Products.DCWorkflowGraph
Products.MimetypesRegistry
Products.ExternalEditor
Products.Zelenium
# Currently forked in our repository
# Products.PortalTransforms
# Dependency for our fork of PortalTransforms
StructuredText
extra-paths =
${itools:lib}
dependent-scripts = true
# XXX getting python from [buildout] for the benefit of instance recipes
# which should not attempt to compile python again
#python = python2.6
# parameterizing the version of the generated python interpreter name by the
# python section version causes dependency between this egg section and the
# installation of python, which we don't want on an instance
interpreter = python2.6
scripts =
python=${:interpreter}
ipython=i${:interpreter}
[precache-eggs]
# recipe to populate the egg cache during software-home build, so instances can
# run in offline mode. Hence, no scripts
recipe = zc.recipe.egg
scripts =
eggs =
collective.recipe.supervisor
collective.recipe.template
erp5.recipe.mysqlserver
erp5.recipe.ooodinstance
erp5.recipe.standaloneinstance
erp5.recipe.testrunner
plone.recipe.command
plone.recipe.zope2instance
supervisor
[omelette]
# XXX don't use this part until this omelette bug is fixed:
# https://bugs.launchpad.net/collective.buildout/+bug/553005
recipe = collective.recipe.omelette
eggs = ${eggs:eggs}
packages =
${itools:lib} .
products =
${products:paths}