diff options
author | Matthew Seaman <matthew@FreeBSD.org> | 2021-02-27 12:08:41 +0000 |
---|---|---|
committer | Matthew Seaman <matthew@FreeBSD.org> | 2021-02-27 12:08:41 +0000 |
commit | 42001a361e55799fd6fb18fd5f75358a1428a343 (patch) | |
tree | f19f02cdb284b008f056dc43768ee0b337d380ca /textproc/py-bracex/Makefile | |
parent | 53e4fa7d5b1127952fc57b4f2b0d5326e7ebe266 (diff) | |
download | ports-42001a361e55799fd6fb18fd5f75358a1428a343.tar.gz ports-42001a361e55799fd6fb18fd5f75358a1428a343.zip |
Notes
Diffstat (limited to 'textproc/py-bracex/Makefile')
-rw-r--r-- | textproc/py-bracex/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/textproc/py-bracex/Makefile b/textproc/py-bracex/Makefile new file mode 100644 index 000000000000..ca275ee6bc97 --- /dev/null +++ b/textproc/py-bracex/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= bracex +PORTVERSION= 2.1.1 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Brace expansion + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-cov>0:devel/py-pytest-cov@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}coverage>0:devel/py-coverage@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + @(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest) + +.include <bsd.port.mk> |