svn commit: r542946 - in head/math: . py-numpoly
Yuri Victorovich
yuri at FreeBSD.org
Thu Jul 23 18:19:31 UTC 2020
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 at 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 <bsd.port.mk>
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
More information about the svn-ports-head
mailing list