From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7DECA13888F for ; Tue, 6 Oct 2015 21:44:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B20FAE0875; Tue, 6 Oct 2015 21:44:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5213CE0875 for ; Tue, 6 Oct 2015 21:44:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D515D33FEB1 for ; Tue, 6 Oct 2015 21:44:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D45EDB19 for ; Tue, 6 Oct 2015 21:44:12 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1444167833.48c3ef6f6ce7846d3e95189bf7aed53d46d3d80d.vapier@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/metadata.xml dev-python/vulture/vulture-0.8.1.ebuild X-VCS-Directories: dev-python/vulture/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 48c3ef6f6ce7846d3e95189bf7aed53d46d3d80d X-VCS-Branch: master Date: Tue, 6 Oct 2015 21:44:12 +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: 3d3621d5-88ac-42a3-af40-5de940bc488b X-Archives-Hash: 01d3134654fc9820f8c4e651abff562f commit: 48c3ef6f6ce7846d3e95189bf7aed53d46d3d80d Author: Mike Frysinger gentoo org> AuthorDate: Tue Oct 6 21:43:46 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue Oct 6 21:43:53 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48c3ef6f dev-python/vulture: new package dev-python/vulture/Manifest | 1 + dev-python/vulture/metadata.xml | 9 +++++++++ dev-python/vulture/vulture-0.8.1.ebuild | 20 ++++++++++++++++++++ 3 files changed, 30 insertions(+) diff --git a/dev-python/vulture/Manifest b/dev-python/vulture/Manifest new file mode 100644 index 0000000..1aa3319 --- /dev/null +++ b/dev-python/vulture/Manifest @@ -0,0 +1 @@ +DIST vulture-0.8.1.tar.gz 18708 SHA256 3d5567f7300707a7e340fffd0fd1ebfc8d717114944c03c842b8b6c26e2d365a SHA512 b9ca6fd67dfca4ac9d98f25425401ef6edb80426fb483c2fbe7797c3991a58fe67bd8abc4c77b1e4615cfb81ddd786eab669b6d4b48f505563c29597664f1950 WHIRLPOOL a1b094f2d47acf158edd3fe525fc885e3dcee11e246ddb5aa7625afb74db4093e26a40e37780513a8c2a9fe56dafad10ca2e33cd4ff0c654364448c87ebd2481 diff --git a/dev-python/vulture/metadata.xml b/dev-python/vulture/metadata.xml new file mode 100644 index 0000000..905ae22 --- /dev/null +++ b/dev-python/vulture/metadata.xml @@ -0,0 +1,9 @@ + + + +python + + vulture + jendrikseipp/vulture + + diff --git a/dev-python/vulture/vulture-0.8.1.ebuild b/dev-python/vulture/vulture-0.8.1.ebuild new file mode 100644 index 0000000..581c939 --- /dev/null +++ b/dev-python/vulture/vulture-0.8.1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2015 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 )