a6232a77fa
Prompted by beta.repology.org. Changes from 2.6.0 to 2.6.1 * Fixed a performance regression in some situations as consequence of increasing too much the BLOCK_SIZE1 constant. After more careful benchmarks (both in VML and non-VML modes), the value has been set again to 1024 (down from 8192). The benchmarks have been made with a relatively new processor (Intel Xeon E3-1245 v5 @ 3.50GHz), so they should work well for a good range of processors again. * Added NetBSD support to CPU detection. Thanks to Thomas Klausner.
24 lines
654 B
Makefile
24 lines
654 B
Makefile
# $NetBSD: Makefile,v 1.7 2016/11/17 07:26:47 alnsn Exp $
|
|
|
|
DISTNAME= numexpr-2.6.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= math
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=pydata/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
GITHUB_PROJECT= numexpr
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/pydata/numexpr
|
|
COMMENT= Numerical expression evaluator for NumPy
|
|
LICENSE= mit
|
|
|
|
USE_LANGUAGES= c++
|
|
REPLACE_PYTHON= numexpr/cpuinfo.py
|
|
|
|
do-test:
|
|
${PYTHONBIN} -c "import numexpr; numexpr.test()"
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../math/py-numpy/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|