f4cb9c82c7
* New, no 2to3, Python 2 and Python 3 are supported by a common code base. * New, gufuncs for linear algebra, enabling operations on stacked arrays. * New, inplace fancy indexing for ufuncs with the ``.at`` method. * New, ``partition`` function, partial sorting via selection for fast median. * New, ``nanmean``, ``nanvar``, and ``nanstd`` functions skipping NaNs. * New, ``full`` and ``full_like`` functions to create value initialized arrays. * New, ``PyUFunc_RegisterLoopForDescr``, better ufunc support for user dtypes. * Numerous performance improvements in many areas. * Support for Python versions 2.4 and 2.5 has been dropped. * Support for SCons has been removed.
21 lines
523 B
Makefile
21 lines
523 B
Makefile
# $NetBSD: buildlink3.mk,v 1.4 2014/02/28 09:43:10 adam Exp $
|
|
|
|
BUILDLINK_TREE+= py-numpy
|
|
|
|
.if !defined(PY_NUMPY_BUILDLINK3_MK)
|
|
PY_NUMPY_BUILDLINK3_MK:=
|
|
|
|
.include "../../lang/python/pyversion.mk"
|
|
|
|
BUILDLINK_API_DEPENDS.py-numpy+= ${PYPKGPREFIX}-numpy>=1.0
|
|
BUILDLINK_PKGSRCDIR.py-numpy?= ../../math/py-numpy
|
|
|
|
.include "../../mk/bsd.fast.prefs.mk"
|
|
|
|
.if ${OPSYS} != "Darwin"
|
|
.include "../../math/blas/buildlink3.mk"
|
|
.include "../../math/lapack/buildlink3.mk"
|
|
.endif
|
|
.endif # PY_NUMPY_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -py-numpy
|