From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-920849-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 12014139085 for <garchives@archives.gentoo.org>; Tue, 3 Jan 2017 03:18:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EE475E0D7F; Tue, 3 Jan 2017 03:18:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C0DA4E0D7D for <gentoo-commits@lists.gentoo.org>; Tue, 3 Jan 2017 03:18:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8890C341016 for <gentoo-commits@lists.gentoo.org>; Tue, 3 Jan 2017 03:18:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F4612519 for <gentoo-commits@lists.gentoo.org>; Tue, 3 Jan 2017 03:18:32 +0000 (UTC) From: "William Hubbs" <williamh@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" <williamh@gentoo.org> Message-ID: <1483413497.4b317da9f8a6d0b678a4b0d32346c11d5e5a27b3.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/isort/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/isort/Manifest dev-python/isort/isort-4.2.5.ebuild dev-python/isort/metadata.xml X-VCS-Directories: dev-python/isort/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 4b317da9f8a6d0b678a4b0d32346c11d5e5a27b3 X-VCS-Branch: master Date: Tue, 3 Jan 2017 03:18:32 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 17da04f0-12d6-481a-b41e-f8a75c4a2ea8 X-Archives-Hash: 835851096116b7d3a7a7d13723cb4b67 commit: 4b317da9f8a6d0b678a4b0d32346c11d5e5a27b3 Author: William Hubbs <williamh <AT> gentoo <DOT> org> AuthorDate: Mon Jan 2 19:26:43 2017 +0000 Commit: William Hubbs <williamh <AT> gentoo <DOT> org> CommitDate: Tue Jan 3 03:18:17 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b317da9 dev-python/isort: new package, needed for dev-python/pylint-1.6.4 Package-Manager: Portage-2.3.0, Repoman-2.3.1 dev-python/isort/Manifest | 1 + dev-python/isort/isort-4.2.5.ebuild | 17 +++++++++++++++++ dev-python/isort/metadata.xml | 11 +++++++++++ 3 files changed, 29 insertions(+) diff --git a/dev-python/isort/Manifest b/dev-python/isort/Manifest new file mode 100644 index 00000000..3bafcba --- /dev/null +++ b/dev-python/isort/Manifest @@ -0,0 +1 @@ +DIST isort-4.2.5.tar.gz 36361 SHA256 56b20044f43cf6e6783fe95d054e754acca52dd43fbe9277c1bdff835537ea5c SHA512 ddc8e859bb421e4179315d74896958c8279394d42a75494db5dc22c58422994aa249b63c03645626a021ccf9142941bde51ad400256ab1c6be29da8110375f40 WHIRLPOOL fb94f6a82329a5d7715762590995e3ffe1f7b9fd31f81ff898c87a65c47d6371b96a29a57f6a42ecc05b1795ca59239eacd0f273e3e5ade85d621160bcffdcdd diff --git a/dev-python/isort/isort-4.2.5.ebuild b/dev-python/isort/isort-4.2.5.ebuild new file mode 100644 index 00000000..848831a --- /dev/null +++ b/dev-python/isort/isort-4.2.5.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy ) +inherit distutils-r1 + +DESCRIPTION="A python utility/library to sort imports" +HOMEPAGE="https://pypi.python.org/pypi/isort" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +IUSE="" diff --git a/dev-python/isort/metadata.xml b/dev-python/isort/metadata.xml new file mode 100644 index 00000000..5d3d9dc --- /dev/null +++ b/dev-python/isort/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>python@gentoo.org</email> + </maintainer> + <maintainer type="person"> + <email>williamh@gentoo.org</email> + <name>William Hubbs</name> + </maintainer> +</pkgmetadata>