dev-python/speaklater: Fix Python 3 support, add Python 3.5 and tests

Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1293

Signed-off-by: Ian Delaney <idella4@gentoo.org>
This commit is contained in:
Louis Sautier
2016-04-17 20:11:41 +02:00
committed by Ian Delaney
parent ccfce9c458
commit 69b1ea1b8c
2 changed files with 18 additions and 3 deletions

View File

@@ -8,5 +8,6 @@
<upstream>
<remote-id type="pypi">speaklater</remote-id>
<remote-id type="github">mitsuhiko/speaklater</remote-id>
<bugs-to>https://github.com/mitsuhiko/speaklater/issues</bugs-to>
</upstream>
</pkgmetadata>

View File

@@ -1,9 +1,9 @@
# Copyright 1999-2015 Gentoo Foundation
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
EAPI=6
PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy )
inherit distutils-r1
DESCRIPTION="Lazy strings for Python"
@@ -17,3 +17,17 @@ IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND=""
python_prepare() {
# https://github.com/mitsuhiko/speaklater/issues/2
if python_is_python3; then
2to3 -n -w --no-diffs ${PN}.py || die
2to3 -d -n -w --no-diffs ${PN}.py || die
# fix unicode in doctests
sed -ri "s/(^ {4}l?)u'/\1'/" ${PN}.py || die
fi
}
python_test() {
"${PYTHON}" -m doctest -v ${PN}.py || die "tests failed with ${EPYTHON}"
}