You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/pyamazon/pyamazon-0.65.ebuild

43 lines
865 B

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyamazon/pyamazon-0.65.ebuild,v 1.5 2014/08/10 21:16:07 slyfox Exp $
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
}