dev-python/pdfrw: Enable py3.{7,8}

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2020-04-20 09:05:30 +02:00
parent e5dbb054e3
commit c76d97f426

View File

@@ -3,7 +3,7 @@
EAPI=6
PYTHON_COMPAT=( python2_7 python3_6 )
PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
inherit distutils-r1
@@ -38,8 +38,11 @@ src_prepare() {
sed -e 's:test_rl1_platypus:_&:' \
-i tests/test_examples.py || die
# fails with py3
sed -e '/repaginate\/7037/s:dd41b0104f185206b51e7ffe5b07d261:skip:' \
sed -e '/repaginate\/7037/s:[0-9a-f]*$:skip:' \
-e '/.*\/72eb/s:[0-9a-f]*$:skip:' \
-i tests/expected.txt || die
# fix py3.7+
sed -i -e 's:raise StopIteration:return:' pdfrw/tokens.py || die
distutils-r1_src_prepare
}