diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2020-10-05 11:41:26 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-10-11 12:29:57 +0300 |
commit | 0f543ef642a497c7c96da41a3f1b73b4fb632882 (patch) | |
tree | 67b9869738b4ed60880c487e8fb9abf1ff6e8305 /app-text | |
parent | app-text/txt2tags: bump to 3.7 (diff) | |
download | gentoo-0f543ef642a497c7c96da41a3f1b73b4fb632882.tar.gz gentoo-0f543ef642a497c7c96da41a3f1b73b4fb632882.tar.bz2 gentoo-0f543ef642a497c7c96da41a3f1b73b4fb632882.zip |
app-text/restview: correct DISTUTILS_USE_SETUPTOOLS, port to py3.9
Closes: https://bugs.gentoo.org/746668
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Closes: https://github.com/gentoo/gentoo/pull/17792
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/restview/restview-2.9.2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-text/restview/restview-2.9.2.ebuild b/app-text/restview/restview-2.9.2.ebuild index e8fc0287a8f2..65da061a477c 100644 --- a/app-text/restview/restview-2.9.2.ebuild +++ b/app-text/restview/restview-2.9.2.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_{6..9} ) +DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 @@ -17,7 +18,6 @@ IUSE="test" RESTRICT="!test? ( test )" RDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] dev-python/docutils[${PYTHON_USEDEP}] dev-python/pygments[${PYTHON_USEDEP}] dev-python/readme_renderer[${PYTHON_USEDEP}] |