diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-06-03 19:06:50 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-06-03 19:27:55 +0200 |
commit | 749c5e8bc749bb0162fe1be914636bf1494e40b0 (patch) | |
tree | d775dbe8f5fa4151f46f5c263776c4b87c15d385 /dev-python/urwid | |
parent | dev-python/jedi: Port to py39 (diff) | |
download | gentoo-749c5e8bc749bb0162fe1be914636bf1494e40b0.tar.gz gentoo-749c5e8bc749bb0162fe1be914636bf1494e40b0.tar.bz2 gentoo-749c5e8bc749bb0162fe1be914636bf1494e40b0.zip |
dev-python/urwid: Port to py39, fix tests
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/urwid')
-rw-r--r-- | dev-python/urwid/urwid-2.1.0.ebuild | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/dev-python/urwid/urwid-2.1.0.ebuild b/dev-python/urwid/urwid-2.1.0.ebuild index 0239bc441784..abcbe910f5ec 100644 --- a/dev-python/urwid/urwid-2.1.0.ebuild +++ b/dev-python/urwid/urwid-2.1.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python2_7 python3_{6,7,8} ) +PYTHON_COMPAT=( python2_7 python3_{6..9} ) PYTHON_REQ_USE="ncurses" inherit distutils-r1 @@ -15,11 +15,18 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="doc examples" +IUSE="examples" distutils_enable_sphinx docs distutils_enable_tests setup.py +src_prepare() { + # optional tests broken by modern tornado versions + sed -e 's:import tornado:&_broken:' \ + -i urwid/tests/test_event_loops.py || die + distutils-r1_src_prepare +} + python_compile() { if ! python_is_python3; then local CFLAGS="${CFLAGS} -fno-strict-aliasing" |