Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Oct 2016 11:49:22 +0000 (UTC)
From:      Marcus von Appen <mva@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r424515 - in head/devel: . py-isort
Message-ID:  <201610231149.u9NBnMca053028@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610231149.u9NBnMca053028>