summaryrefslogtreecommitdiff
path: root/math/py-numpoly
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2020-07-23 18:19:30 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2020-07-23 18:19:30 +0000
commit96fabdc6f81f1ff0bf707ab0da0097e05b541c17 (patch)
tree1b3e9306124f3b244f934b8f16d600de88251ef7 /math/py-numpoly
parentMinor aesthetic changes prepare big diff for PyQt5. (diff)
New port: math/py-numpoly: Create/manipulate/evaluate polynomial arrays based on numpy.ndarray
Notes
Notes: svn path=/head/; revision=542946
Diffstat (limited to 'math/py-numpoly')
-rw-r--r--math/py-numpoly/Makefile23
-rw-r--r--math/py-numpoly/distinfo3
-rw-r--r--math/py-numpoly/pkg-descr4
3 files changed, 30 insertions, 0 deletions
diff --git a/math/py-numpoly/Makefile b/math/py-numpoly/Makefile
new file mode 100644
index 000000000000..5b4bbc60f023
--- /dev/null
+++ b/math/py-numpoly/Makefile
@@ -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 <bsd.port.mk>
diff --git a/math/py-numpoly/distinfo b/math/py-numpoly/distinfo
new file mode 100644
index 000000000000..ece0fa03f612
--- /dev/null
+++ b/math/py-numpoly/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1595528081
+SHA256 (numpoly-1.0.5.tar.gz) = 5afffa83eb2ff8329136465ccfc4d86113c8458ee7e5f025f001dc74831a9328
+SIZE (numpoly-1.0.5.tar.gz) = 67689
diff --git a/math/py-numpoly/pkg-descr b/math/py-numpoly/pkg-descr
new file mode 100644
index 000000000000..843ac8436943
--- /dev/null
+++ b/math/py-numpoly/pkg-descr
@@ -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