* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyamazon/
@ 2016-07-02 13:10 David Seifert
0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2016-07-02 13:10 UTC (permalink / raw
To: gentoo-commits
commit: 56d66d8396ed2823ca93669888dca87f04a6cc0b
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 2 12:42:11 2016 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Jul 2 13:09:39 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56d66d83
dev-python/pyamazon: Modernize to python-r1 suite
* EAPI=6
Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/1814
Signed-off-by: David Seifert <soap <AT> gentoo.org>
dev-python/pyamazon/pyamazon-0.65-r1.ebuild | 32 +++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/dev-python/pyamazon/pyamazon-0.65-r1.ebuild b/dev-python/pyamazon/pyamazon-0.65-r1.ebuild
new file mode 100644
index 0000000..81a15b1
--- /dev/null
+++ b/dev-python/pyamazon/pyamazon-0.65-r1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit eutils python-single-r1
+
+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=""
+
+S="${WORKDIR}/${PN}"
+
+src_prepare() {
+ default
+ edos2unix amazon.py
+}
+
+src_install() {
+ python_domodule amazon.py
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyamazon/
@ 2016-07-02 13:10 David Seifert
0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2016-07-02 13:10 UTC (permalink / raw
To: gentoo-commits
commit: b5e02a349732e8ddecc9799e09bdc3e9c63d3d63
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 2 12:42:11 2016 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> 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 <soap <AT> 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
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyamazon/
@ 2019-03-26 18:52 Aaron Bauman
0 siblings, 0 replies; 3+ messages in thread
From: Aaron Bauman @ 2019-03-26 18:52 UTC (permalink / raw
To: gentoo-commits
commit: 9434bb2e165c587b388d211a747cc61b9482e92f
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Mar 22 08:01:08 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Tue Mar 26 18:52:37 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9434bb2e
dev-python/pyamazon: use HTTPS
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
dev-python/pyamazon/pyamazon-0.65-r1.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/pyamazon/pyamazon-0.65-r1.ebuild b/dev-python/pyamazon/pyamazon-0.65-r1.ebuild
index cb966fe2c80..ee51a16a8cd 100644
--- a/dev-python/pyamazon/pyamazon-0.65-r1.ebuild
+++ b/dev-python/pyamazon/pyamazon-0.65-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -8,8 +8,8 @@ PYTHON_COMPAT=( python2_7 )
inherit eutils python-single-r1
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"
+HOMEPAGE="https://www.josephson.org/projects/pyamazon/"
+SRC_URI="https://www.josephson.org/projects/${PN}/files/${P}.zip"
LICENSE="PSF-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-03-26 18:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-02 13:10 [gentoo-commits] repo/gentoo:master commit in: dev-python/pyamazon/ David Seifert
-- strict thread matches above, loose matches on Subject: below --
2019-03-26 18:52 Aaron Bauman
2016-07-02 13:10 David Seifert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox