FLAVOR is the current port's flavor, it should not be used outside of this scope. Sponsored by: Absolight
27 lines
620 B
Makefile
27 lines
620 B
Makefile
# Created by: Christian Geier <geier@lostpackets.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= click-threading
|
|
PORTVERSION= 0.4.2
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= geier@lostpackets.de
|
|
COMMENT= Multithreaded Click apps made easy
|
|
|
|
LICENSE= MIT
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR} \
|
|
${PY_FUTURES}
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
|
|
${RUN_DEPENDS}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
NO_ARCH= yes
|
|
|
|
do-test:
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -rs -v
|
|
|
|
.include <bsd.port.mk>
|