From owner-svn-ports-all@freebsd.org Sun Jun 4 14:03:18 2017 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 4C823B7C51F; Sun, 4 Jun 2017 14:03:18 +0000 (UTC) (envelope-from sunpoet@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 0CC5277325; Sun, 4 Jun 2017 14:03:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v54E3HET041217; Sun, 4 Jun 2017 14:03:17 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v54E3G6m041215; Sun, 4 Jun 2017 14:03:16 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706041403.v54E3G6m041215@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 4 Jun 2017 14:03:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442560 - head/devel/py-isort 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, 04 Jun 2017 14:03:18 -0000 Author: sunpoet Date: Sun Jun 4 14:03:16 2017 New Revision: 442560 URL: https://svnweb.freebsd.org/changeset/ports/442560 Log: Allow concurrent installation (USE_PYTHON=concurrent) - Update COMMENT - Add LICENSE_FILE - Add TEST_DEPENDS - Add NO_ARCH - Update pkg-descr - Add PyPI as primary WWW - Bump PORTREVISION for package change - Take maintainership Modified: head/devel/py-isort/Makefile head/devel/py-isort/pkg-descr Modified: head/devel/py-isort/Makefile ============================================================================== --- head/devel/py-isort/Makefile Sun Jun 4 12:43:57 2017 (r442559) +++ head/devel/py-isort/Makefile Sun Jun 4 14:03:16 2017 (r442560) @@ -2,16 +2,22 @@ PORTNAME= isort PORTVERSION= 4.2.13 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org -COMMENT= Python import sorter utility +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Python utility/library to sort Python imports LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock \ + ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest + +NO_ARCH= yes +USE_PYTHON= autoplist concurrent distutils USES= python -USE_PYTHON= autoplist distutils .include Modified: head/devel/py-isort/pkg-descr ============================================================================== --- head/devel/py-isort/pkg-descr Sun Jun 4 12:43:57 2017 (r442559) +++ head/devel/py-isort/pkg-descr Sun Jun 4 14:03:16 2017 (r442560) @@ -1,5 +1,6 @@ -isort is a Python utility and library to sort imports automatically, and -automatically into sections. It provides a command line utility, library and -plugins for various editors to quickly sort all your imports. +isort is a Python utility/library to sort imports alphabetically, and +automatically separated into sections. It provides a command line utility, +Python library and plugins for various editors to quickly sort all your imports. +WWW: https://pypi.python.org/pypi/isort WWW: https://github.com/timothycrosley/isort