root/buildout/rtree.buildout/trunk/buildout.cfg

Revision 1010, 1.2 KB (checked in by dokai, 3 years ago)

Updated the buildout to match the changes in the spatialindex source tree.

Line 
1[buildout]
2index = http://download.zope.org/ppix
3parts = 
4    python-2.4
5    spatialindex
6    rtree
7    interpreter
8    test-rtree
9python = custom-python
10
11[python-2.4]
12recipe = hexagonit.recipe.cmmi
13url = http://www.python.org/ftp/python/2.4.4/Python-2.4.4.tgz
14configure-options =
15    --with-threads
16    --with-readline
17    CPPFLAGS=-DSETPGRP_HAVE_ARG=1
18
19[python-2.5]
20recipe = hexagonit.recipe.cmmi
21url = http://www.python.org/ftp/python/2.5.1/Python-2.5.1.tgz
22configure-options =
23    --with-threads
24    --with-readline
25
26[custom-python]
27executable = ${python-2.4:location}/bin/python
28
29[spatialindex]
30recipe = hexagonit.recipe.cmmi
31pre-configure-hook = ${buildout:directory}/hooks.py:preconfigure
32path = ${buildout:directory}/src/spatialindex
33
34[rtree]
35recipe = zc.recipe.egg:develop
36setup = ${buildout:directory}/src/Rtree/setup.py
37include-dirs =
38    ${spatialindex:location}/include
39library-dirs =
40    ${spatialindex:location}/lib
41rpath =
42    ${spatialindex:location}/lib
43
44[interpreter]
45recipe = zc.recipe.egg
46eggs = Rtree
47interpreter = python
48
49[test-rtree]
50recipe = zc.recipe.testrunner
51eggs = Rtree
52extra-paths = ${buildout:directory}/src/Rtree/tests
53defaults = [ '--auto-color', '-v']
54script = test
Note: See TracBrowser for help on using the browser.