buildout.cfg 758 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
[buildout]

extends =
  ../gcc/buildout.cfg
  ../libatlas/buildout.cfg

version = versions

[numpy-env]
PATH = ${gcc-fortran:location}/bin:%(PATH)s
BLAS = ${libatlas:location}/lib/libcblas.a
LAPACK = ${libatlas:location}/lib/liblapack.a
ATLAS = ${libatlas:location}/lib/libatlas.a

[numpy]
recipe = zc.recipe.egg:custom
egg = numpy
18 19
# patched version that supports rpath parameter in zc.recipe.egg:custom.
find-links = http://www.nexedi.org/static/packages/source/numpy-1.8.2nxd001.tar.gz
20 21 22 23 24 25 26 27 28
environment = numpy-env
# no need to add libatlas location because they are statically linked.
rpath =
  ${gcc-fortran:location}/lib
  ${gcc-fortran:location}/lib64

[versions]
# patched version that supports rpath parameter in zc.recipe.egg:custom.
numpy = 1.8.2nxd001