From owner-svn-ports-all@freebsd.org Sun Oct 23 11:49:24 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 6A9B7C1EA45; Sun, 23 Oct 2016 11:49:24 +0000 (UTC) (envelope-from mva@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 1CFA67BA; Sun, 23 Oct 2016 11:49:24 +0000 (UTC) (envelope-from mva@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9NBnNga053032; Sun, 23 Oct 2016 11:49:23 GMT (envelope-from mva@FreeBSD.org) Received: (from mva@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9NBnMca053028; Sun, 23 Oct 2016 11:49:22 GMT (envelope-from mva@FreeBSD.org) Message-Id: <201610231149.u9NBnMca053028@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mva set sender to mva@FreeBSD.org using -f From: Marcus von Appen Date: Sun, 23 Oct 2016 11:49:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424515 - in 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, 23 Oct 2016 11:49:24 -0000 Author: mva Date: Sun Oct 23 11:49:22 2016 New Revision: 424515 URL: https://svnweb.freebsd.org/changeset/ports/424515 Log: 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. WWW: https://github.com/timothycrosley/isort Added: head/devel/py-isort/ head/devel/py-isort/Makefile (contents, props changed) head/devel/py-isort/distinfo (contents, props changed) head/devel/py-isort/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Oct 23 11:33:19 2016 (r424514) +++ head/devel/Makefile Sun Oct 23 11:49:22 2016 (r424515) @@ -4206,6 +4206,7 @@ SUBDIR += py-ipython_genutils SUBDIR += py-iso8601 SUBDIR += py-isodate + SUBDIR += py-isort SUBDIR += py-iterpipes SUBDIR += py-itools SUBDIR += py-jaraco.classes Added: head/devel/py-isort/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-isort/Makefile Sun Oct 23 11:49:22 2016 (r424515) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= isort +PORTVERSION= 4.2.5 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= mva@FreeBSD.org +COMMENT= Python import sorter utility + +LICENSE= MIT + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-isort/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-isort/distinfo Sun Oct 23 11:49:22 2016 (r424515) @@ -0,0 +1,3 @@ +TIMESTAMP = 1477222626 +SHA256 (isort-4.2.5.tar.gz) = 56b20044f43cf6e6783fe95d054e754acca52dd43fbe9277c1bdff835537ea5c +SIZE (isort-4.2.5.tar.gz) = 36361 Added: head/devel/py-isort/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-isort/pkg-descr Sun Oct 23 11:49:22 2016 (r424515) @@ -0,0 +1,5 @@ +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. + +WWW: https://github.com/timothycrosley/isort