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