Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/restview/
Date: Sun, 11 Oct 2020 09:30:23
Message-Id: 1602408597.0f543ef642a497c7c96da41a3f1b73b4fb632882.juippis@gentoo
1 commit: 0f543ef642a497c7c96da41a3f1b73b4fb632882
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Mon Oct 5 09:41:26 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 11 09:29:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f543ef6
7
8 app-text/restview: correct DISTUTILS_USE_SETUPTOOLS, port to py3.9
9
10 Closes: https://bugs.gentoo.org/746668
11 Package-Manager: Portage-3.0.4, Repoman-3.0.1
12 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
13 Closes: https://github.com/gentoo/gentoo/pull/17792
14 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
15
16 app-text/restview/restview-2.9.2.ebuild | 4 ++--
17 1 file changed, 2 insertions(+), 2 deletions(-)
18
19 diff --git a/app-text/restview/restview-2.9.2.ebuild b/app-text/restview/restview-2.9.2.ebuild
20 index e8fc0287a8f..65da061a477 100644
21 --- a/app-text/restview/restview-2.9.2.ebuild
22 +++ b/app-text/restview/restview-2.9.2.ebuild
23 @@ -2,7 +2,8 @@
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 -PYTHON_COMPAT=( python3_{6,7} )
28 +PYTHON_COMPAT=( python3_{6..9} )
29 +DISTUTILS_USE_SETUPTOOLS=rdepend
30
31 inherit distutils-r1
32
33 @@ -17,7 +18,6 @@ IUSE="test"
34 RESTRICT="!test? ( test )"
35
36 RDEPEND="
37 - dev-python/setuptools[${PYTHON_USEDEP}]
38 dev-python/docutils[${PYTHON_USEDEP}]
39 dev-python/pygments[${PYTHON_USEDEP}]
40 dev-python/readme_renderer[${PYTHON_USEDEP}]