Date: Sat, 31 Mar 2018 06:24:27 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466022 - in head/math: . py-pysym Message-ID: <201803310624.w2V6ORRG051153@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sat Mar 31 06:24:27 2018 New Revision: 466022 URL: https://svnweb.freebsd.org/changeset/ports/466022 Log: New port: math/py-pysym: Prototype package for symbolic manipulation Added: head/math/py-pysym/ head/math/py-pysym/Makefile (contents, props changed) head/math/py-pysym/distinfo (contents, props changed) head/math/py-pysym/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat Mar 31 04:36:42 2018 (r466021) +++ head/math/Makefile Sat Mar 31 06:24:27 2018 (r466022) @@ -672,6 +672,7 @@ SUBDIR += py-pymc SUBDIR += py-pymc3 SUBDIR += py-pysparse + SUBDIR += py-pysym SUBDIR += py-pyvtk SUBDIR += py-roman SUBDIR += py-scientific Added: head/math/py-pysym/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pysym/Makefile Sat Mar 31 06:24:27 2018 (r466022) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= pysym +DISTVERSION= 0.2.3 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Prototype package for symbolic manipulation + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sympy>0:math/py-sympy@${FLAVOR} \ + ${PYNUMPY} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/math/py-pysym/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pysym/distinfo Sat Mar 31 06:24:27 2018 (r466022) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522476382 +SHA256 (pysym-0.2.3.tar.gz) = c0ac6b5652e9c63aefab9de8816ddb71fa0c685b7eb455c08cbb607f6b26e244 +SIZE (pysym-0.2.3.tar.gz) = 13313 Added: head/math/py-pysym/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pysym/pkg-descr Sat Mar 31 06:24:27 2018 (r466022) @@ -0,0 +1,9 @@ +pysym is an experimental Python package for symbolic manipulation with limited +scope (as in minimal). It tries to stay compatible with the API of SymPy. It +should be viewed as a prototype and not as a "production" package. + +The capabilities include: +* Differentiation +* (slow) numerical evaluation (including "lambdify" support) + +WWW: https://github.com/bjodah/pysym
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803310624.w2V6ORRG051153>