From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8734A138350 for ; Fri, 7 Feb 2020 21:30:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D463E086F; Fri, 7 Feb 2020 21:30:36 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8189DE086F for ; Fri, 7 Feb 2020 21:30:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9C1A834E8A6 for ; Fri, 7 Feb 2020 21:30:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D2083E for ; Fri, 7 Feb 2020 21:30:32 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1581110960.93ab64a4f3c94a316effa410922a5fbd82ce8b15.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/nikola/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/nikola/nikola-7.8.15-r1.ebuild X-VCS-Directories: www-apps/nikola/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 93ab64a4f3c94a316effa410922a5fbd82ce8b15 X-VCS-Branch: master Date: Fri, 7 Feb 2020 21:30:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0a5a0af1-aafd-45fd-8b17-542b45daaa6a X-Archives-Hash: cb4ed5f8351b6d5a35035cac9685076d commit: 93ab64a4f3c94a316effa410922a5fbd82ce8b15 Author: Sebastian Pipping gentoo org> AuthorDate: Fri Feb 7 21:29:20 2020 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Fri Feb 7 21:29:20 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93ab64a4 www-apps/nikola: EAPI 7 + doman fix Closes: https://bugs.gentoo.org/619974 Closes: https://github.com/gentoo/gentoo/pull/14535 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-2.3.84, Repoman-2.3.20 www-apps/nikola/nikola-7.8.15-r1.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/www-apps/nikola/nikola-7.8.15-r1.ebuild b/www-apps/nikola/nikola-7.8.15-r1.ebuild index c989d8059c4..f7d52378778 100644 --- a/www-apps/nikola/nikola-7.8.15-r1.ebuild +++ b/www-apps/nikola/nikola-7.8.15-r1.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 PYTHON_COMPAT=( python3_6 ) +DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 @@ -32,7 +33,6 @@ RDEPEND="${DEPEND} >=dev-python/pygments-1.6[${PYTHON_USEDEP}] >=dev-python/PyRSS2Gen-1.1[${PYTHON_USEDEP}] >=dev-python/python-dateutil-2.4[${PYTHON_USEDEP}] - >=dev-python/setuptools-20.3[${PYTHON_USEDEP}] >=dev-python/requests-2.2.0[${PYTHON_USEDEP}] >=dev-python/unidecode-0.04.16[${PYTHON_USEDEP}] >=dev-python/yapsy-1.11.223[${PYTHON_USEDEP}] @@ -58,6 +58,5 @@ src_install() { rm -rv "${D}/usr/share/doc/${PN}" || die dodoc AUTHORS.txt CHANGES.txt README.rst docs/*.txt - gunzip "docs/man/${PN}.1.gz" || die - doman "docs/man/${PN}.1" + gunzip "${D}/usr/share/man/man1/${PN}.1.gz" || die }