svn commit: r424953 - head/devel/py-codecov

Li-Wen Hsu lwhsu at FreeBSD.org
Sun Oct 30 16:15:56 UTC 2016


Author: lwhsu
Date: Sun Oct 30 16:15:54 2016
New Revision: 424953
URL: https://svnweb.freebsd.org/changeset/ports/424953

Log:
  - Remove depending on argparse, all Python versions in ports tree have it
    as built-in
  - Remove depending on unittest2, it is only required for Pythons lesser than
    2.7
  
  PR:		213882
  Submitted by:	lwhsu
  Approved by:	cpm (maintainer)

Modified:
  head/devel/py-codecov/Makefile

Modified: head/devel/py-codecov/Makefile
==============================================================================
--- head/devel/py-codecov/Makefile	Sun Oct 30 16:14:35 2016	(r424952)
+++ head/devel/py-codecov/Makefile	Sun Oct 30 16:15:54 2016	(r424953)
@@ -3,6 +3,7 @@
 
 PORTNAME=	codecov
 PORTVERSION=	2.0.5
+PORTREVISION=	1
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -12,10 +13,8 @@ COMMENT=	Hosted coverage reports for Git
 
 LICENSE=	APACHE20
 
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}argparse>=0:devel/py-argparse \
-		${PYTHON_PKGNAMEPREFIX}coverage>=0:devel/py-coverage \
+RUN_DEPENDS=	${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


More information about the svn-ports-head mailing list