From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 98A01139541 for ; Fri, 28 Oct 2016 20:56:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECF2AE084D; Fri, 28 Oct 2016 20:56:09 +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 CB121E0888 for ; Fri, 28 Oct 2016 20:56:09 +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 7F46334167B for ; Fri, 28 Oct 2016 20:56:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F4B924A8 for ; Fri, 28 Oct 2016 20:56:06 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1477688162.76d660d95de740005319118f895eade90d4730a1.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/vulture/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/vulture/Manifest dev-python/vulture/vulture-0.10.ebuild X-VCS-Directories: dev-python/vulture/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: 76d660d95de740005319118f895eade90d4730a1 X-VCS-Branch: master Date: Fri, 28 Oct 2016 20:56:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: aa2d4df0-89c1-48d7-a07d-fedc93153578 X-Archives-Hash: caf004f3130aa90b68055afffc41bbe4 commit: 76d660d95de740005319118f895eade90d4730a1 Author: Patrick Lauer gentoo org> AuthorDate: Fri Oct 28 20:28:07 2016 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Fri Oct 28 20:56:02 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76d660d9 dev-python/vulture: Bump Package-Manager: portage-2.3.2 dev-python/vulture/Manifest | 1 + dev-python/vulture/vulture-0.10.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/dev-python/vulture/Manifest b/dev-python/vulture/Manifest index 1aa3319..bffda02 100644 --- a/dev-python/vulture/Manifest +++ b/dev-python/vulture/Manifest @@ -1 +1,2 @@ +DIST vulture-0.10.tar.gz 10205 SHA256 9c2dc36b84f3729361990b4488b7fde1cbe5afb9e3b59456aafc6928684fcd4b SHA512 05ec640a02de63e0d0dc8e4468e2be117ec2f0289918e58ef18b11ad58be1f753c32d892305c2a197d3048cdf253b4fda376cdf21b51078291d8297336134201 WHIRLPOOL b8012f346b904f38e97ae0e5833ce658c9e163694da87bc024351bb422e3a232ee011035f511b19d98c6aeefbe61eb6905af6e663d811196f277817d2e817d50 DIST vulture-0.8.1.tar.gz 18708 SHA256 3d5567f7300707a7e340fffd0fd1ebfc8d717114944c03c842b8b6c26e2d365a SHA512 b9ca6fd67dfca4ac9d98f25425401ef6edb80426fb483c2fbe7797c3991a58fe67bd8abc4c77b1e4615cfb81ddd786eab669b6d4b48f505563c29597664f1950 WHIRLPOOL a1b094f2d47acf158edd3fe525fc885e3dcee11e246ddb5aa7625afb74db4093e26a40e37780513a8c2a9fe56dafad10ca2e33cd4ff0c654364448c87ebd2481 diff --git a/dev-python/vulture/vulture-0.10.ebuild b/dev-python/vulture/vulture-0.10.ebuild new file mode 100644 index 00000000..40ea5b3 --- /dev/null +++ b/dev-python/vulture/vulture-0.10.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit distutils-r1 + +DESCRIPTION="find unused classes, functions and variables in your code" +HOMEPAGE="https://bitbucket.org/jendrikseipp/vulture https://pypi.python.org/pypi/vulture" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DOCS=( README.txt NEWS.txt )