From owner-svn-ports-all@freebsd.org Sun Oct 30 16:15:56 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0819EC26DD6; Sun, 30 Oct 2016 16:15:56 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CBA711C82; Sun, 30 Oct 2016 16:15:55 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9UGFtp2017616; Sun, 30 Oct 2016 16:15:55 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9UGFsZW017615; Sun, 30 Oct 2016 16:15:54 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201610301615.u9UGFsZW017615@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Sun, 30 Oct 2016 16:15:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424953 - head/devel/py-codecov X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Oct 2016 16:15:56 -0000 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