-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpysite_in.cfg
52 lines (43 loc) · 1.21 KB
/
pysite_in.cfg
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
# Python buildout: 2.7 only buildout based on
# github.com/collective/buildout.python
[buildout]
extensions = buildout.extensionscripts
extension-scripts = ${buildout:python-buildout-root}/osdetect.py:osdetect
extends =
src/base.cfg
src/readline.cfg
src/python27.cfg
src/links.cfg
parts =
${buildout:base-parts}
${buildout:readline-parts}
${buildout:python27-parts}
${buildout:links-parts}
docutils
Pillow
python-buildout-root = ${buildout:directory}/src
# we want our own eggs directory and nothing shared from a
# ~/.buildout/default.cfg to prevent any errors and interference
eggs-directory = eggs
# rpath for Python build (e.g. readline):
[python-2.7-build:linux2]
<= python-2.7-build:default
environment +=
LDFLAGS=-Wl,-rpath,${buildout:directory}/parts/opt/lib
[readline:default]
configure-options +=
--with-curses
make-options +=
SHLIB_LIBS=-lcurses
[docutils]
recipe = plone.recipe.command
location = ${python-2.7:location}
command =
${python-2.7:location}/bin/pip install docutils==0.14
stop-on-error = yes
[Pillow]
recipe = plone.recipe.command
location = ${python-2.7:location}
command =
${python-2.7:location}/bin/pip install Pillow==4.3.0
stop-on-error = yes