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 753CE1382E1 for ; Sat, 2 Jul 2016 13:10:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34D94141EA; Sat, 2 Jul 2016 13:10:17 +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 831A2141E5 for ; Sat, 2 Jul 2016 13:10:16 +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 A99C9340D24 for ; Sat, 2 Jul 2016 13:10:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CF58D243F for ; Sat, 2 Jul 2016 13:10:10 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1467464981.b5e02a349732e8ddecc9799e09bdc3e9c63d3d63.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyamazon/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyamazon/pyamazon-0.65.ebuild X-VCS-Directories: dev-python/pyamazon/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: b5e02a349732e8ddecc9799e09bdc3e9c63d3d63 X-VCS-Branch: master Date: Sat, 2 Jul 2016 13:10:10 +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: 6c4af603-9761-49b6-bbb5-0162746ca893 X-Archives-Hash: 707da784c1e2e141de7d815243bebf1d commit: b5e02a349732e8ddecc9799e09bdc3e9c63d3d63 Author: David Seifert gentoo org> AuthorDate: Sat Jul 2 12:42:11 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Jul 2 13:09:41 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5e02a34 dev-python/pyamazon: remove old and deprecated Package-Manager: portage-2.3.0 Closes: https://github.com/gentoo/gentoo/pull/1814 Signed-off-by: David Seifert gentoo.org> dev-python/pyamazon/pyamazon-0.65.ebuild | 42 -------------------------------- 1 file changed, 42 deletions(-) diff --git a/dev-python/pyamazon/pyamazon-0.65.ebuild b/dev-python/pyamazon/pyamazon-0.65.ebuild deleted file mode 100644 index 65fd0da..0000000 --- a/dev-python/pyamazon/pyamazon-0.65.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" - -inherit eutils python - -DESCRIPTION="A Python wrapper for the Amazon web API" -HOMEPAGE="http://www.josephson.org/projects/pyamazon" -SRC_URI="http://www.josephson.org/projects/${PN}/files/${P}.zip" - -LICENSE="PSF-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -DEPEND="app-arch/unzip" -RDEPEND="" -RESTRICT_PYTHON_ABIS="3.*" - -src_prepare() { - edos2unix ${PN}/amazon.py -} - -src_install() { - installation() { - insinto $(python_get_sitedir) - doins ${PN}/amazon.py - } - python_execute_function installation -} - -pkg_postinst() { - python_mod_optimize amazon.py -} - -pkg_postrm() { - python_mod_cleanup amazon.py -}