0f67ca5c7b
--0.19-- Released June 10, 2014 * Moved issue tracking to github and the main website to mpmath.org. Several URLs and issue numbers were updated in the documentation (Sergey B Kirpichev) * Enabled automatic testing with Travis CI (Sergey B Kirpichev) * Fixed many doctest issues (Sergey B Kirpichev) * Converted line endings to LF (Ondrej Certik) * Made polyroots() more robust (Ondrej Certik)
40 lines
1.3 KiB
Makefile
40 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2014/07/22 10:11:42 wiz Exp $
|
|
|
|
DISTNAME= mpmath-0.19
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://pypi.python.org/packages/source/m/mpmath/ \
|
|
http://mpmath.org/files/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://mpmath.org/
|
|
COMMENT= Python library for arbitrary-precision FP arithmetic
|
|
LICENSE= modified-bsd
|
|
|
|
USE_LANGUAGES= # none
|
|
PYDISTUTILSPKG= yes
|
|
|
|
TEST_ENV+= PYTHONPATH=${WRKSRC}/build/lib
|
|
|
|
SUBST_CLASSES+= python
|
|
SUBST_STAGE.python= post-patch
|
|
SUBST_FILES.python+= mpmath/matrices/eigen.py mpmath/matrices/eigen_symmetric.py
|
|
SUBST_FILES.python+= mpmath/tests/test_eigen.py mpmath/tests/test_eigen_symmetric.py
|
|
SUBST_FILES.python+= mpmath/tests/test_levin.py
|
|
SUBST_MESSAGE.python= Fixing path to Python interpreter.
|
|
SUBST_SED.python= -e "s,/usr/bin/python,${PYTHONBIN},g"
|
|
|
|
SUBST_CLASSES+= python2
|
|
SUBST_STAGE.python2= post-patch
|
|
SUBST_FILES.python2+= mpmath/tests/runtests.py
|
|
SUBST_MESSAGE.python2= Fixing path to Python interpreter.
|
|
SUBST_SED.python2= -e "s,/usr/bin/env python,${PYTHONBIN},g"
|
|
|
|
do-test:
|
|
${RUN} cd ${WRKSRC}/build/lib/mpmath/tests; \
|
|
${SETENV} ${TEST_ENV} ${PYTHONBIN} runtests.py
|
|
|
|
.include "../../lang/python/extension.mk"
|
|
# optional speedup
|
|
#.include "../../math/py-gmpy/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|