python-2.4.cfg 1.04 KB
Newer Older
1
[buildout]
2 3
extends = ../software-profiles/python-common.cfg

4
develop += local-eggs/localbin
5

6
parts =
7
    pythonbin2.4
8

9 10 11 12
[python2.4-dbm-patch]
recipe = hexagonit.recipe.download
url = http://bugs.gentoo.org/attachment.cgi?id=109117
download-only = true
13
filename = python2.4-dbm.patch
14

15 16 17
[python2.4]
<= python-common
python_version_major = 2.4
18
python_version_minor = 6
19 20 21 22 23
# this next setting should always match the name of this part
name = python2.4
# XXX maybe add the tarfile patch as well?
patches =
	${python2.4-dbm-patch:location}/${python2.4-dbm-patch:filename}
24 25 26 27

[pythonbin2.4]
# XXX/Note: This is hackish way to have fully featured python interpreter
recipe = zc.recipe.egg:scripts
28
python = python2.4
29 30 31 32 33 34 35 36 37
eggs = ${eggs:eggs}
  invokepython
extra-paths =
  ${zope-2.8:location}/lib/python
dependent-scripts = true
scripts =
  invokepython=python${python2.4:python_version_major}
  ipython=ipython${python2.4:python_version_major}

38 39 40 41 42 43 44
[bootstrap2.4]
recipe = zc.recipe.egg
eggs = zc.buildout
python = python2.4
scripts =
    buildout=bootstrap2.4
arguments = ["bootstrap"]