From owner-svn-ports-all@freebsd.org Mon Jan 25 15:11:25 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 779E7A456D5; Mon, 25 Jan 2016 15:11:25 +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 2CC3266D; Mon, 25 Jan 2016 15:11:25 +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 u0PFBOK8033340; Mon, 25 Jan 2016 15:11:24 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0PFBN47033337; Mon, 25 Jan 2016 15:11:23 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201601251511.u0PFBN47033337@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 15:11:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407219 - head/devel/py-pyflakes 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.20 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: Mon, 25 Jan 2016 15:11:25 -0000 Author: koobs Date: Mon Jan 25 15:11:23 2016 New Revision: 407219 URL: https://svnweb.freebsd.org/changeset/ports/407219 Log: devel/py-pyflakes: Update to 1.0.0 - Update PORTVERSION and distinfo checksum (1.0.0) - Update COMMENT (match setup.py:description) - Remove trailing spaces in pkg-descr PR: 206603 Submitted by: rm Modified: head/devel/py-pyflakes/Makefile head/devel/py-pyflakes/distinfo head/devel/py-pyflakes/pkg-descr Modified: head/devel/py-pyflakes/Makefile ============================================================================== --- head/devel/py-pyflakes/Makefile Mon Jan 25 15:00:52 2016 (r407218) +++ head/devel/py-pyflakes/Makefile Mon Jan 25 15:11:23 2016 (r407219) @@ -2,14 +2,13 @@ # $FreeBSD$ PORTNAME= pyflakes -PORTVERSION= 0.8.1 -PORTREVISION= 1 +PORTVERSION= 1.0.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org -COMMENT= Program to analyze Python programs and detect various errors +COMMENT= Passive checker of Python programs LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE Modified: head/devel/py-pyflakes/distinfo ============================================================================== --- head/devel/py-pyflakes/distinfo Mon Jan 25 15:00:52 2016 (r407218) +++ head/devel/py-pyflakes/distinfo Mon Jan 25 15:11:23 2016 (r407219) @@ -1,2 +1,2 @@ -SHA256 (pyflakes-0.8.1.tar.gz) = 3fa80a10b36d51686bf7744f5dc99622cd5c98ce8ed64022e629868aafc17769 -SIZE (pyflakes-0.8.1.tar.gz) = 32981 +SHA256 (pyflakes-1.0.0.tar.gz) = f39e33a4c03beead8774f005bd3ecf0c3f2f264fa0201de965fce0aff1d34263 +SIZE (pyflakes-1.0.0.tar.gz) = 35365 Modified: head/devel/py-pyflakes/pkg-descr ============================================================================== --- head/devel/py-pyflakes/pkg-descr Mon Jan 25 15:00:52 2016 (r407218) +++ head/devel/py-pyflakes/pkg-descr Mon Jan 25 15:11:23 2016 (r407219) @@ -1,7 +1,7 @@ Pyflakes is a simple program which checks Python source files for errors. It is -similar to PyChecker in scope, but differs in that it does not execute the -modules to check them. This is both safer and faster, although it does not -perform as many checks. Unlike PyLint, Pyflakes checks only for logical errors +similar to PyChecker in scope, but differs in that it does not execute the +modules to check them. This is both safer and faster, although it does not +perform as many checks. Unlike PyLint, Pyflakes checks only for logical errors in programs; it does not perform any checks on style. -WWW: https://launchpad.net/pyflakes +WWW: https://github.com/pyflakes/pyflakes