summaryrefslogtreecommitdiff
path: root/math/py-vector
diff options
context:
space:
mode:
Diffstat (limited to 'math/py-vector')
-rw-r--r--math/py-vector/Makefile25
-rw-r--r--math/py-vector/distinfo3
-rw-r--r--math/py-vector/pkg-descr4
3 files changed, 32 insertions, 0 deletions
diff --git a/math/py-vector/Makefile b/math/py-vector/Makefile
new file mode 100644
index 000000000000..92317737cf8e
--- /dev/null
+++ b/math/py-vector/Makefile
@@ -0,0 +1,25 @@
+PORTNAME= vector
+PORTVERSION= 1.6.2
+CATEGORIES= math python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= Vector classes and utilities
+WWW= https://vector.readthedocs.io/en/latest/ \
+ https://github.com/scikit-hep/vector
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatch-vcs>=0:devel/py-hatch-vcs@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}hatchling>=0:devel/py-hatchling@${PY_FLAVOR}
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.13.3,1:math/py-numpy@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}packaging>=19:devel/py-packaging@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= autoplist concurrent pep517
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
diff --git a/math/py-vector/distinfo b/math/py-vector/distinfo
new file mode 100644
index 000000000000..5a820226b82a
--- /dev/null
+++ b/math/py-vector/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1747715288
+SHA256 (vector-1.6.2.tar.gz) = 6e59d9db8b615016fa542a2e8150d0c819046fe6940badd267811a454a7f0eca
+SIZE (vector-1.6.2.tar.gz) = 350018
diff --git a/math/py-vector/pkg-descr b/math/py-vector/pkg-descr
new file mode 100644
index 000000000000..cf382d09425e
--- /dev/null
+++ b/math/py-vector/pkg-descr
@@ -0,0 +1,4 @@
+Vector is a Python library for 2D and 3D spatial vectors, as well as 4D
+space-time vectors. It is especially intended for performing geometric
+calculations on arrays of vectors, rather than one vector at a time in a Python
+for loop.