Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/nikola/
Date: Fri, 07 Feb 2020 21:30:37
Message-Id: 1581110960.93ab64a4f3c94a316effa410922a5fbd82ce8b15.sping@gentoo
1 commit: 93ab64a4f3c94a316effa410922a5fbd82ce8b15
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 7 21:29:20 2020 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 7 21:29:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93ab64a4
7
8 www-apps/nikola: EAPI 7 + doman fix
9
10 Closes: https://bugs.gentoo.org/619974
11 Closes: https://github.com/gentoo/gentoo/pull/14535
12 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
13 Package-Manager: Portage-2.3.84, Repoman-2.3.20
14
15 www-apps/nikola/nikola-7.8.15-r1.ebuild | 7 +++----
16 1 file changed, 3 insertions(+), 4 deletions(-)
17
18 diff --git a/www-apps/nikola/nikola-7.8.15-r1.ebuild b/www-apps/nikola/nikola-7.8.15-r1.ebuild
19 index c989d8059c4..f7d52378778 100644
20 --- a/www-apps/nikola/nikola-7.8.15-r1.ebuild
21 +++ b/www-apps/nikola/nikola-7.8.15-r1.ebuild
22 @@ -1,8 +1,9 @@
23 # Copyright 1999-2020 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 -EAPI=6
27 +EAPI=7
28 PYTHON_COMPAT=( python3_6 )
29 +DISTUTILS_USE_SETUPTOOLS=rdepend
30
31 inherit distutils-r1
32
33 @@ -32,7 +33,6 @@ RDEPEND="${DEPEND}
34 >=dev-python/pygments-1.6[${PYTHON_USEDEP}]
35 >=dev-python/PyRSS2Gen-1.1[${PYTHON_USEDEP}]
36 >=dev-python/python-dateutil-2.4[${PYTHON_USEDEP}]
37 - >=dev-python/setuptools-20.3[${PYTHON_USEDEP}]
38 >=dev-python/requests-2.2.0[${PYTHON_USEDEP}]
39 >=dev-python/unidecode-0.04.16[${PYTHON_USEDEP}]
40 >=dev-python/yapsy-1.11.223[${PYTHON_USEDEP}]
41 @@ -58,6 +58,5 @@ src_install() {
42 rm -rv "${D}/usr/share/doc/${PN}" || die
43
44 dodoc AUTHORS.txt CHANGES.txt README.rst docs/*.txt
45 - gunzip "docs/man/${PN}.1.gz" || die
46 - doman "docs/man/${PN}.1"
47 + gunzip "${D}/usr/share/man/man1/${PN}.1.gz" || die
48 }