From owner-svn-ports-all@freebsd.org Sat Mar 31 06:24:28 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 80D54F64E31; Sat, 31 Mar 2018 06:24:28 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3584374227; Sat, 31 Mar 2018 06:24:28 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 161BC141F0; Sat, 31 Mar 2018 06:24:28 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2V6ORgP051157; Sat, 31 Mar 2018 06:24:27 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2V6ORRG051153; Sat, 31 Mar 2018 06:24:27 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201803310624.w2V6ORRG051153@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 31 Mar 2018 06:24:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466022 - in head/math: . py-pysym X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-pysym X-SVN-Commit-Revision: 466022 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Mar 2018 06:24:28 -0000 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 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