- Add devel/py-argparse to RUN_DEPENDS Reviewed by: amdmi3, junovitch (mentors) Approved by: amdmi3, junovitch (mentors) Differential Revision: D6690
28 lines
712 B
Makefile
28 lines
712 B
Makefile
# Created by: Carlos J. Puga Medina <cpm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= codecov
|
|
PORTVERSION= 2.0.5
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= cpm@FreeBSD.org
|
|
COMMENT= Hosted coverage reports for Github, Bitbucket and Gitlab
|
|
|
|
LICENSE= APACHE20
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}argparse>=0:devel/py-argparse \
|
|
${PYTHON_PKGNAMEPREFIX}coverage>=0:devel/py-coverage \
|
|
${PYTHON_PKGNAMEPREFIX}requests>=2.0.0:www/py-requests
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}unittest2>=0:devel/py-unittest2
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
do-test:
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
|
|
|
|
.include <bsd.port.mk>
|