git: f349f5ccd92e - main - devel/py-jaraco.env: Add py-jaraco.env 1.0.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 05 Jun 2023 18:51:01 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=f349f5ccd92e32c11493010c2d863080fe55a1cc commit f349f5ccd92e32c11493010c2d863080fe55a1cc Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2023-06-05 18:18:17 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2023-06-05 18:46:50 +0000 devel/py-jaraco.env: Add py-jaraco.env 1.0.0 This library facilitates handling of environment variables. --- devel/Makefile | 1 + devel/py-jaraco.env/Makefile | 23 +++++++++++++++++++++++ devel/py-jaraco.env/distinfo | 3 +++ devel/py-jaraco.env/pkg-descr | 1 + 4 files changed, 28 insertions(+) diff --git a/devel/Makefile b/devel/Makefile index f7bdf15e9b92..236d3b5499a4 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4796,6 +4796,7 @@ SUBDIR += py-jaraco SUBDIR += py-jaraco.classes SUBDIR += py-jaraco.context + SUBDIR += py-jaraco.env SUBDIR += py-jaraco.functools SUBDIR += py-jaraco.itertools SUBDIR += py-jaraco.logging diff --git a/devel/py-jaraco.env/Makefile b/devel/py-jaraco.env/Makefile new file mode 100644 index 000000000000..bd6100d2d432 --- /dev/null +++ b/devel/py-jaraco.env/Makefile @@ -0,0 +1,23 @@ +PORTNAME= jaraco.env +PORTVERSION= 1.0.0 +CATEGORIES= devel python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Facilities for environment variables +WWW= https://github.com/jaraco/jaraco.env + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=56:devel/py-setuptools@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=3.4.1:devel/py-setuptools_scm@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} + +USES= python:3.7+ +USE_PYTHON= autoplist concurrent pep517 + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/devel/py-jaraco.env/distinfo b/devel/py-jaraco.env/distinfo new file mode 100644 index 000000000000..ee7a30809590 --- /dev/null +++ b/devel/py-jaraco.env/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1685792172 +SHA256 (jaraco.env-1.0.0.tar.gz) = 11187cedc0f8f45a62dcaccbb6c1576a7200203041e7999223144718dd39a1f8 +SIZE (jaraco.env-1.0.0.tar.gz) = 6664 diff --git a/devel/py-jaraco.env/pkg-descr b/devel/py-jaraco.env/pkg-descr new file mode 100644 index 000000000000..04e122bd0458 --- /dev/null +++ b/devel/py-jaraco.env/pkg-descr @@ -0,0 +1 @@ +This library facilitates handling of environment variables.