From owner-svn-ports-head@freebsd.org Mon Jan 25 13:35:23 2016 Return-Path: Delivered-To: svn-ports-head@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 484BFA45756; Mon, 25 Jan 2016 13:35:23 +0000 (UTC) (envelope-from koobs@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 19740647; Mon, 25 Jan 2016 13:35:23 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0PDZMpv004150; Mon, 25 Jan 2016 13:35:22 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0PDZMew004149; Mon, 25 Jan 2016 13:35:22 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201601251335.u0PDZMew004149@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 25 Jan 2016 13:35:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407211 - in head/devel/py-pyflakes: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Jan 2016 13:35:23 -0000 Author: koobs Date: Mon Jan 25 13:35:21 2016 New Revision: 407211 URL: https://svnweb.freebsd.org/changeset/ports/407211 Log: devel/py-pyflakes: Make ports compliant - Add LICENSE_FILE [1] - Sort USE_PYTHON [1] - Update test target [1] - Enable NO_ARCH [1] - Remove setup.py patch (unnecessary, python.mk installs flat eggs) Part 1 of 2, splitting non-version-update changes for MFH. PR: 206603 [1] Submitted by: rm [1] Deleted: head/devel/py-pyflakes/files/ Modified: head/devel/py-pyflakes/Makefile Modified: head/devel/py-pyflakes/Makefile ============================================================================== --- head/devel/py-pyflakes/Makefile Mon Jan 25 12:54:50 2016 (r407210) +++ head/devel/py-pyflakes/Makefile Mon Jan 25 13:35:21 2016 (r407211) @@ -3,6 +3,7 @@ PORTNAME= pyflakes PORTVERSION= 0.8.1 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,11 +12,14 @@ MAINTAINER= koobs@FreeBSD.org COMMENT= Program to analyze Python programs and detect various errors LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist distutils -regression-test: build - @cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include