From owner-svn-ports-head@freebsd.org Thu Jul 23 18:19:31 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 6E76D35EF51; Thu, 23 Jul 2020 18:19:31 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BCLFv2GJpz3fjh; Thu, 23 Jul 2020 18:19:31 +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 185261D3D9; Thu, 23 Jul 2020 18:19:31 +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 06NIJUNs058607; Thu, 23 Jul 2020 18:19:30 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06NIJUaD058603; Thu, 23 Jul 2020 18:19:30 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202007231819.06NIJUaD058603@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 23 Jul 2020 18:19:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r542946 - in head/math: . py-numpoly X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-numpoly X-SVN-Commit-Revision: 542946 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Jul 2020 18:19:31 -0000 Author: yuri Date: Thu Jul 23 18:19:30 2020 New Revision: 542946 URL: https://svnweb.freebsd.org/changeset/ports/542946 Log: New port: math/py-numpoly: Create/manipulate/evaluate polynomial arrays based on numpy.ndarray Added: head/math/py-numpoly/ head/math/py-numpoly/Makefile (contents, props changed) head/math/py-numpoly/distinfo (contents, props changed) head/math/py-numpoly/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Thu Jul 23 18:16:36 2020 (r542945) +++ head/math/Makefile Thu Jul 23 18:19:30 2020 (r542946) @@ -785,6 +785,7 @@ SUBDIR += py-nevergrad SUBDIR += py-numeric SUBDIR += py-numexpr + SUBDIR += py-numpoly SUBDIR += py-numpy SUBDIR += py-nzmath SUBDIR += py-opt-einsum Added: head/math/py-numpoly/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-numpoly/Makefile Thu Jul 23 18:19:30 2020 (r542946) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= numpoly +DISTVERSION= 1.0.5 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Create/manipulate/evaluate polynomial arrays based on numpy.ndarray + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include Added: head/math/py-numpoly/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-numpoly/distinfo Thu Jul 23 18:19:30 2020 (r542946) @@ -0,0 +1,3 @@ +TIMESTAMP = 1595528081 +SHA256 (numpoly-1.0.5.tar.gz) = 5afffa83eb2ff8329136465ccfc4d86113c8458ee7e5f025f001dc74831a9328 +SIZE (numpoly-1.0.5.tar.gz) = 67689 Added: head/math/py-numpoly/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-numpoly/pkg-descr Thu Jul 23 18:19:30 2020 (r542946) @@ -0,0 +1,4 @@ +Numpoly is a generic library for creating, manipulating and evaluating arrays +of polynomials based on numpy.ndarray objects. + +WWW: https://github.com/jonathf/numpoly