Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyamazon/
Date: Sat, 02 Jul 2016 13:10:19
Message-Id: 1467464981.b5e02a349732e8ddecc9799e09bdc3e9c63d3d63.soap@gentoo
1 commit: b5e02a349732e8ddecc9799e09bdc3e9c63d3d63
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 12:42:11 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 13:09:41 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5e02a34
7
8 dev-python/pyamazon: remove old and deprecated
9
10 Package-Manager: portage-2.3.0
11 Closes: https://github.com/gentoo/gentoo/pull/1814
12
13 Signed-off-by: David Seifert <soap <AT> gentoo.org>
14
15 dev-python/pyamazon/pyamazon-0.65.ebuild | 42 --------------------------------
16 1 file changed, 42 deletions(-)
17
18 diff --git a/dev-python/pyamazon/pyamazon-0.65.ebuild b/dev-python/pyamazon/pyamazon-0.65.ebuild
19 deleted file mode 100644
20 index 65fd0da..0000000
21 --- a/dev-python/pyamazon/pyamazon-0.65.ebuild
22 +++ /dev/null
23 @@ -1,42 +0,0 @@
24 -# Copyright 1999-2014 Gentoo Foundation
25 -# Distributed under the terms of the GNU General Public License v2
26 -# $Id$
27 -
28 -EAPI="3"
29 -PYTHON_DEPEND="2"
30 -SUPPORT_PYTHON_ABIS="1"
31 -
32 -inherit eutils python
33 -
34 -DESCRIPTION="A Python wrapper for the Amazon web API"
35 -HOMEPAGE="http://www.josephson.org/projects/pyamazon"
36 -SRC_URI="http://www.josephson.org/projects/${PN}/files/${P}.zip"
37 -
38 -LICENSE="PSF-2"
39 -SLOT="0"
40 -KEYWORDS="~amd64"
41 -IUSE=""
42 -
43 -DEPEND="app-arch/unzip"
44 -RDEPEND=""
45 -RESTRICT_PYTHON_ABIS="3.*"
46 -
47 -src_prepare() {
48 - edos2unix ${PN}/amazon.py
49 -}
50 -
51 -src_install() {
52 - installation() {
53 - insinto $(python_get_sitedir)
54 - doins ${PN}/amazon.py
55 - }
56 - python_execute_function installation
57 -}
58 -
59 -pkg_postinst() {
60 - python_mod_optimize amazon.py
61 -}
62 -
63 -pkg_postrm() {
64 - python_mod_cleanup amazon.py
65 -}