From a11eb0b964d91b69d43536b9c39d918d9e89d81a Mon Sep 17 00:00:00 2001 From: "Ronny (tastytea) Gutbrod" Date: Sun, 14 Jun 2020 21:45:47 +0200 Subject: [PATCH 1/2] games-util/legendary: Add Python 3.9 support. Signed-off-by: Ronny (tastytea) Gutbrod --- games-util/legendary/legendary-0.0.19.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games-util/legendary/legendary-0.0.19.ebuild b/games-util/legendary/legendary-0.0.19.ebuild index 7310e06d7d..86b4856b1a 100644 --- a/games-util/legendary/legendary-0.0.19.ebuild +++ b/games-util/legendary/legendary-0.0.19.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_8 ) +PYTHON_COMPAT=( python3_8 python3_9 ) inherit distutils-r1 From e82db9c838c494ff8eba37d89949a57dc1bdcc5e Mon Sep 17 00:00:00 2001 From: Andrew Ammerlaan Date: Sun, 14 Jun 2020 22:12:01 +0200 Subject: [PATCH 2/2] dev-python/quantities: allow doc building with newer sphinx Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andrew Ammerlaan --- dev-python/quantities/quantities-0.12.4.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-python/quantities/quantities-0.12.4.ebuild b/dev-python/quantities/quantities-0.12.4.ebuild index 2a20bbc540..f7d77e9c03 100644 --- a/dev-python/quantities/quantities-0.12.4.ebuild +++ b/dev-python/quantities/quantities-0.12.4.ebuild @@ -32,9 +32,12 @@ python_prepare_all() { sed -i -e 's:test_fix:_&:' \ quantities/tests/test_umath.py || die + # pngmath replaced with imgmath in sphinx>1.8 + sed -i -e 's:ext.pngmath:ext.imgmath:g' \ + doc/conf.py || die + distutils-r1_python_prepare_all } distutils_enable_tests unittest -# wants ext.pngmath which got removed in sphinx-2 -distutils_enable_sphinx doc dev-python/numpydoc "dev-python/sphinx-1.8"