- add LICENSE_FILE. PR: 230252 Submitted by: Natan <ndowens@yahoo.com> Approved by: tcberner (mentor), MAINTAINER.
27 lines
667 B
Makefile
27 lines
667 B
Makefile
# Created by: Christian Geier <geier@lostpackets.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= click-log
|
|
DISTVERSION= 0.3.2
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= geier@lostpackets.de
|
|
COMMENT= Logging integration for Click
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR}
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
NO_ARCH= yes
|
|
|
|
do-test:
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -rs -v
|
|
|
|
.include <bsd.port.mk>
|