mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 02:16:27 -04:00
25 lines
593 B
Makefile
25 lines
593 B
Makefile
PORTNAME= tree-format
|
|
PORTVERSION= 0.1.2
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= matthew@FreeBSD.org
|
|
COMMENT= Generate nicely formatted trees
|
|
|
|
LICENSE= APACHE20
|
|
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}testtools>0:devel/py-testtools@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}
|
|
|
|
USES= python:3.6+
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && \
|
|
${PYTHON_CMD} setup.py --version && \
|
|
${PYTHON_CMD} -m unittest discover tree_format.tests
|
|
|
|
.include <bsd.port.mk>
|