From owner-svn-ports-all@freebsd.org Sun Apr 1 00:10:48 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 8ED24F6A368; Sun, 1 Apr 2018 00:10:48 +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 403BF7E22E; Sun, 1 Apr 2018 00:10:48 +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 3B07B1EEE6; Sun, 1 Apr 2018 00:10:48 +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 w310Am9c014762; Sun, 1 Apr 2018 00:10:48 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w310AlfR014758; Sun, 1 Apr 2018 00:10:47 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201804010010.w310AlfR014758@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 1 Apr 2018 00:10:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466111 - in head/math: . py-sym X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-sym X-SVN-Commit-Revision: 466111 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: Sun, 01 Apr 2018 00:10:48 -0000 Author: yuri Date: Sun Apr 1 00:10:47 2018 New Revision: 466111 URL: https://svnweb.freebsd.org/changeset/ports/466111 Log: New port: math/py-sym: Unified wrapper for symbolic manipulation libraries in Python Added: head/math/py-sym/ head/math/py-sym/Makefile (contents, props changed) head/math/py-sym/distinfo (contents, props changed) head/math/py-sym/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Apr 1 00:07:09 2018 (r466110) +++ head/math/Makefile Sun Apr 1 00:10:47 2018 (r466111) @@ -680,6 +680,7 @@ SUBDIR += py-seaborn SUBDIR += py-statsmodels SUBDIR += py-svgmath + SUBDIR += py-sym SUBDIR += py-symcxx SUBDIR += py-symeig SUBDIR += py-sympy Added: head/math/py-sym/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-sym/Makefile Sun Apr 1 00:10:47 2018 (r466111) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= sym +DISTVERSION= 0.3.2 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Unified wrapper for symbolic manipulation libraries in Python + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYNUMPY} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/math/py-sym/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-sym/distinfo Sun Apr 1 00:10:47 2018 (r466111) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522540371 +SHA256 (sym-0.3.2.tar.gz) = 45cc2d335c4ada12c86f47dfc4f87dcd9cda1005fda8c308ca42c75f49a09758 +SIZE (sym-0.3.2.tar.gz) = 16446 Added: head/math/py-sym/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-sym/pkg-descr Sun Apr 1 00:10:47 2018 (r466111) @@ -0,0 +1,12 @@ +sym provides a unified wrapper to some symbolic manipulation libraries in +Python. It makes it easy for library authors to test their packages against +several symbolic manipulation libraries. + +Currently the following Python pacakges are available as "backends": +* SymPy +* SymEngine +* PySym +* SymCXX +* Diofant + +WWW: https://github.com/bjodah/sym