git: c785ff555c4e - main - devel/py-vendy: Add py-vendy 0.0.3
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 10 Jul 2024 05:01:31 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=c785ff555c4e8fe88769fe1a77a96365168b4f5c commit c785ff555c4e8fe88769fe1a77a96365168b4f5c Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2024-07-10 04:56:26 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2024-07-10 04:56:26 +0000 devel/py-vendy: Add py-vendy 0.0.3 Vendy is a tool for vendoring third-party packages into your project. --- devel/Makefile | 1 + devel/py-vendy/Makefile | 25 +++++++++++++++++++++++++ devel/py-vendy/distinfo | 3 +++ devel/py-vendy/pkg-descr | 1 + 4 files changed, 30 insertions(+) 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.