aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2024-07-10 04:56:26 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2024-07-10 04:56:26 +0000
commitc785ff555c4e8fe88769fe1a77a96365168b4f5c (patch)
tree70cfbb989013cb71182831cbf8fa487318aa6a06
parentb3608f79c1a24b43e6f65283ea603dac052a8406 (diff)
devel/py-vendy: Add py-vendy 0.0.3
Vendy is a tool for vendoring third-party packages into your project.
-rw-r--r--devel/Makefile1
-rw-r--r--devel/py-vendy/Makefile25
-rw-r--r--devel/py-vendy/distinfo3
-rw-r--r--devel/py-vendy/pkg-descr1
4 files changed, 30 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 5b00893b2f07..607136d0bdbe 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -5941,6 +5941,7 @@
SUBDIR += py-vcrpy
SUBDIR += py-vcver
SUBDIR += py-vcversioner
+ SUBDIR += py-vendy
SUBDIR += py-venusian
SUBDIR += py-verboselogs
SUBDIR += py-versioneer
diff --git a/devel/py-vendy/Makefile b/devel/py-vendy/Makefile
new file mode 100644
index 000000000000..7054eab17e77
--- /dev/null
+++ b/devel/py-vendy/Makefile
@@ -0,0 +1,25 @@
+PORTNAME= vendy
+PORTVERSION= 0.0.3
+CATEGORIES= devel python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= Tool for vendoring third-party packages into your project
+WWW= https://github.com/di/vendy
+
+LICENSE= APACHE20
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=0:devel/py-click@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}toml>=0:textproc/py-toml@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= autoplist concurrent pep517
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-vendy/distinfo b/devel/py-vendy/distinfo
new file mode 100644
index 000000000000..4810cf14484c
--- /dev/null
+++ b/devel/py-vendy/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1720536468
+SHA256 (vendy-0.0.3.tar.gz) = d80f212b59b956c0e31c958d1d27dee747e6b2c119a6622f4ea87e81d8385a03
+SIZE (vendy-0.0.3.tar.gz) = 10345
diff --git a/devel/py-vendy/pkg-descr b/devel/py-vendy/pkg-descr
new file mode 100644
index 000000000000..de506d353635
--- /dev/null
+++ b/devel/py-vendy/pkg-descr
@@ -0,0 +1 @@
+Vendy is a tool for vendoring third-party packages into your project.