summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Kowalik <xarthisius@gentoo.org>2012-05-30 12:53:56 +0000
committerKacper Kowalik <xarthisius@gentoo.org>2012-05-30 12:53:56 +0000
commitb084ca40e1397bef9afee6dc52c3b3fb2f350ee4 (patch)
tree1f51fec86d6e793cad805f283a50b26e6ac1c236 /dev-python/unidecode
parentFix manifest (diff)
downloadhistorical-b084ca40e1397bef9afee6dc52c3b3fb2f350ee4.tar.gz
historical-b084ca40e1397bef9afee6dc52c3b3fb2f350ee4.tar.bz2
historical-b084ca40e1397bef9afee6dc52c3b3fb2f350ee4.zip
Restrict not working ABIs, add proper PYTHON_DEPEND, drop empty (R)DEPEND
Package-Manager: portage-2.2.0_alpha108/cvs/Linux x86_64
Diffstat (limited to 'dev-python/unidecode')
-rw-r--r--dev-python/unidecode/ChangeLog5
-rw-r--r--dev-python/unidecode/unidecode-0.04.9.ebuild16
2 files changed, 13 insertions, 8 deletions
diff --git a/dev-python/unidecode/ChangeLog b/dev-python/unidecode/ChangeLog
index 37e380488a9b..bd0111ed6a87 100644
--- a/dev-python/unidecode/ChangeLog
+++ b/dev-python/unidecode/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/unidecode
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/unidecode/ChangeLog,v 1.3 2012/05/28 23:21:18 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/unidecode/ChangeLog,v 1.4 2012/05/30 12:53:56 xarthisius Exp $
+
+ 30 May 2012; Kacper Kowalik <xarthisius@gentoo.org> unidecode-0.04.9.ebuild:
+ Restrict not working ABIs, add proper PYTHON_DEPEND, drop empty (R)DEPEND
28 May 2012; Jeff Horelick <jdhore@gentoo.org> unidecode-0.04.9.ebuild:
Keyword ~x86.
diff --git a/dev-python/unidecode/unidecode-0.04.9.ebuild b/dev-python/unidecode/unidecode-0.04.9.ebuild
index e38c60cea312..5481125f1d3b 100644
--- a/dev-python/unidecode/unidecode-0.04.9.ebuild
+++ b/dev-python/unidecode/unidecode-0.04.9.ebuild
@@ -1,24 +1,26 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/unidecode/unidecode-0.04.9.ebuild,v 1.3 2012/05/28 23:21:18 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/unidecode/unidecode-0.04.9.ebuild,v 1.4 2012/05/30 12:53:56 xarthisius Exp $
EAPI=4
+PYTHON_DEPEND="*:2.6"
SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS=""
+RESTRICT_PYTHON_ABIS="2.5"
+DISTUTILS_SRC_TEST=setup.py
-inherit distutils
+MY_PN=Unidecode
+MY_P=${MY_PN}-${PV}
-S="${WORKDIR}/Unidecode-${PV}"
+inherit distutils
DESCRIPTION="Module providing ASCII transliterations of Unicode text"
HOMEPAGE="http://pypi.python.org/pypi/Unidecode"
-SRC_URI="mirror://pypi/U/Unidecode/Unidecode-${PV}.tar.gz"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
-DEPEND=""
-RDEPEND="${DEPEND}"
+S=${WORKDIR}/${MY_P}