From 96fabdc6f81f1ff0bf707ab0da0097e05b541c17 Mon Sep 17 00:00:00 2001 From: Yuri Victorovich Date: Thu, 23 Jul 2020 18:19:30 +0000 Subject: [PATCH] New port: math/py-numpoly: Create/manipulate/evaluate polynomial arrays based on numpy.ndarray --- math/Makefile | 1 + math/py-numpoly/Makefile | 23 +++++++++++++++++++++++ math/py-numpoly/distinfo | 3 +++ math/py-numpoly/pkg-descr | 4 ++++ 4 files changed, 31 insertions(+) create mode 100644 math/py-numpoly/Makefile create mode 100644 math/py-numpoly/distinfo create mode 100644 math/py-numpoly/pkg-descr diff --git a/math/Makefile b/math/Makefile index e17aca7c99fc..cb00f24395c1 100644 --- a/math/Makefile +++ b/math/Makefile @@ -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 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 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