forked from collective/buildout.python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython32.cfg
More file actions
49 lines (44 loc) · 1.47 KB
/
python32.cfg
File metadata and controls
49 lines (44 loc) · 1.47 KB
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
[buildout]
extends = base.cfg
parts = ${buildout:python32-parts}
python32-parts =
python-3.2-build
python-3.2
python-3.2-PIL
python-3.2-test
[python-3.2-build:default]
recipe = collective.recipe.cmmi
dependencies = ${dependencies:dummy-dependencies}
executable = ${opt:location}/bin/python3.2
url = http://www.python.org/ftp/python/3.2.5/Python-3.2.5.tar.bz2
extra_options =
--disable-tk
--prefix=${opt:location}
[python-3.2-virtualenv]
recipe = collective.recipe.template
input = ${buildout:python-buildout-root}/virtualenv.in
output = ${buildout:bin-directory}/virtualenv-3.2
virtualenv = ${virtualenv:location}/virtualenv.py
executable = ${python-3.2-build:executable}
[python-3.2]
recipe = plone.recipe.command
location = ${buildout:directory}/python-3.2
executable = ${python-3.2-build:executable}
easy_install = ${opt:location}/bin/easy_install-3.2
command =
${:executable} ${buildout:python-buildout-root}/ez_setup.py
${:easy_install} -U pip
${python-3.2-virtualenv:output} --system-site-packages ${buildout:directory}/python-3.2
update-command = ${python-3.2:command}
stop-on-error = yes
[python-3.2-PIL]
recipe = plone.recipe.command
command =
${python-3.2:easy_install} -U ${buildout:pil-install-args}
update-command = ${:command}
stop-on-error = yes
[python-3.2-test]
recipe = z3c.recipe.runscript
install-script = ${buildout:python-buildout-root}/test-python.py:test
update-script = ${:install-script}
python = ${python-3.2:location}/bin/python