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 4570E58975 for ; Wed, 27 Jan 2016 09:26:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 533DF21C05C; Wed, 27 Jan 2016 09:26:26 +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 8DCB721C052 for ; Wed, 27 Jan 2016 09:26:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 61490340A9F for ; Wed, 27 Jan 2016 09:26:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5437310FB for ; Wed, 27 Jan 2016 09:26:22 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1453886772.7b1cff412c119e19e9207b17fc21e518e409cc64.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/enum34/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/enum34/Manifest dev-python/enum34/enum34-1.0.ebuild X-VCS-Directories: dev-python/enum34/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 7b1cff412c119e19e9207b17fc21e518e409cc64 X-VCS-Branch: master Date: Wed, 27 Jan 2016 09:26:22 +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: 69f792d9-d5bf-470b-b518-7c9181f250c3 X-Archives-Hash: 0baae7f58708fd5abd0ab1038003d28b commit: 7b1cff412c119e19e9207b17fc21e518e409cc64 Author: Justin Lecher gentoo org> AuthorDate: Wed Jan 27 08:31:58 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Jan 27 09:26:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b1cff41 dev-python/enum34: Drop old Package-Manager: portage-2.2.27 Signed-off-by: Justin Lecher gentoo.org> dev-python/enum34/Manifest | 1 - dev-python/enum34/enum34-1.0.ebuild | 30 ------------------------------ 2 files changed, 31 deletions(-) diff --git a/dev-python/enum34/Manifest b/dev-python/enum34/Manifest index af0a5a3..52eae96 100644 --- a/dev-python/enum34/Manifest +++ b/dev-python/enum34/Manifest @@ -1,2 +1 @@ DIST enum34-1.0.4.tar.gz 32944 SHA256 d3c19f26a6a34629c18c775f59dfc5dd595764c722b57a2da56ebfb69b94e447 SHA512 21b91f1d0e15cc909e733473f603077eff7222c90da84b0a5f2db921ba41ac996b9237cc8adf1d07913b7eaf8f8e70ac6955abbb191f2e7cc54966710a1c96a9 WHIRLPOOL 178d1d5a9ec4e5a7a467e31c9b28e1f799e593e36a0c9a888f64ec86051277cb1c50ae01ed81c95cd3f7ae1e7f287dda9b4049c7e1977fcd427711fcf3990792 -DIST enum34-1.0.tar.gz 32331 SHA256 384b593703b057e0b19d90ff62844b1c8796da2e6bd9957d6ce9119bdeade635 SHA512 8eefcb42449927e419c87016d534b1fb335a85daa49c7ae3cc4549bc92dbb6d1a02158542a8cba1fbff4bbad2c4830c6f465b13e8d5ec6d2aae5752efecdf1d3 WHIRLPOOL 28b02767afe416404ba9d0c4db972c869383a72cfc6cb1a75f93b01e2636bac139743f5acb2dbe06083c655a1854cfb8a3c7f1ce1eba340a38d457e3e71e63b3 diff --git a/dev-python/enum34/enum34-1.0.ebuild b/dev-python/enum34/enum34-1.0.ebuild deleted file mode 100644 index f020af2..0000000 --- a/dev-python/enum34/enum34-1.0.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# 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} pypy pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Python 3.4 Enum backported" -HOMEPAGE="https://pypi.python.org/pypi/enum34" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm64 ia64 m68k ~mips s390 sh x86" -IUSE="doc" - -DEPEND="" -RDEPEND="" - -python_test() { - "${PYTHON}" enum/test_enum.py || die "Tests failed under ${EPYTHON}" -} - -python_install_all() { - use doc && local DOCS=( enum/doc/. enum/README enum/LICENSE ) - - distutils-r1_python_install_all -}