pkgsrc/math/py-sympy/Makefile
prlw1 5b9524204b Update py-sympy to 1.2
Highlights

   There are many changes in 1.2 (see below). Some of the highlights are
     * Python 3.3 is no longer supported. If you require Python 3.3
       support, use SymPy 1.1.1. See our [518]policy on dropping support
       for major Python versions.
     * Experimental LaTeX parsing with sympy.parsing.latex.parse_latex()
       has been added, based on the latex2sympy project. This requires
       antlr-python-runtime to be installed. [519]#13706
     * The vector module has been improved to support orthogonal
       curvilinear coordinate systems ([520]Szymon Mieszczak's GSoC
       project)
     * New module sympy.integrals.intpoly for integrating uni/bivariate
       polynomials over 2-polytopes. ([521]Arif Ahmed's GSoC project)
     * Improvements to the code generation module. ([522]Bj?rn Dahlgren's
       GSoC project)
     * Improvements to the group theory module. See below for more
       information. ([523]Valeriia Gladkova's GSoC project)
     * New module sympy.discrete for operating on discrete sequences.
       polynomials over 2-polytopes. ([521]Arif Ahmed's GSoC project)
     * Improvements to the code generation module. ([522]Bj?rn Dahlgren's
       GSoC project)
     * Improvements to the group theory module. See below for more
       information. ([523]Valeriia Gladkova's GSoC project)
     * New module sympy.discrete for operating on discrete sequences.
       ([524]Sidhant Nagpal's GSoC project)

Complete release notes at:
https://github.com/sympy/sympy/wiki/release-notes-for-1.2
2018-07-19 20:15:36 +00:00

37 lines
1 KiB
Makefile

# $NetBSD: Makefile,v 1.20 2018/07/19 20:15:36 prlw1 Exp $
DISTNAME= sympy-1.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= math python
MASTER_SITES= ${MASTER_SITE_PYPI:=s/sympy/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.sympy.org/
COMMENT= Python library for symbolic mathematics
LICENSE= modified-bsd
DEPENDS+= ${PYPKGPREFIX}-mpmath>=0.19:../../math/py-mpmath
USE_LANGUAGES= # none
REPLACE_PYTHON+= sympy/utilities/tests/diagnose_imports.py
SUBST_CLASSES+= manpath
SUBST_SED.manpath= -e 's,share/man,${PKGMANDIR},'
SUBST_FILES.manpath+= setup.py
SUBST_STAGE.manpath= pre-configure
SUBST_MESSAGE.manpath= Fix man page installation path.
# advanced.pidigits is broken, don't worry if it fails
do-test:
(cd ${WRKSRC}/examples && ${PYTHONBIN} all.py)
post-install:
cd ${DESTDIR}${PREFIX} && \
mv bin/isympy bin/isympy${PYVERSSUFFIX} && \
mv ${PKGMANDIR}/man1/isympy.1 \
${PKGMANDIR}/man1/isympy${PYVERSSUFFIX}.1
.include "../../lang/python/application.mk"
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"