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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9B035158087 for ; Fri, 24 Dec 2021 06:47:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4D6D2BC008; Fri, 24 Dec 2021 06:47:56 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CE2892BC008 for ; Fri, 24 Dec 2021 06:47:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E5E0E3432DC for ; Fri, 24 Dec 2021 06:47:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5425B23E for ; Fri, 24 Dec 2021 06:47:54 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1640328423.c0e11b2971d847e7f3b3f7843d90eda060770746.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/linkchecker/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/linkchecker/linkchecker-9999.ebuild X-VCS-Directories: net-analyzer/linkchecker/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c0e11b2971d847e7f3b3f7843d90eda060770746 X-VCS-Branch: master Date: Fri, 24 Dec 2021 06:47:54 +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: 84910c8c-e45e-4ed7-84a7-b6e28af7b2cf X-Archives-Hash: 3559e94246ed3826a544152926f33416 commit: c0e11b2971d847e7f3b3f7843d90eda060770746 Author: Tomáš Mózes gmail com> AuthorDate: Fri Dec 24 06:35:22 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Dec 24 06:47:03 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0e11b29 net-analyzer/linkchecker: sync live ebuild Signed-off-by: Tomáš Mózes gmail.com> Signed-off-by: Sam James gentoo.org> net-analyzer/linkchecker/linkchecker-9999.ebuild | 25 ++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/net-analyzer/linkchecker/linkchecker-9999.ebuild b/net-analyzer/linkchecker/linkchecker-9999.ebuild index 1d23dd82d824..9bcf1112b5ea 100644 --- a/net-analyzer/linkchecker/linkchecker-9999.ebuild +++ b/net-analyzer/linkchecker/linkchecker-9999.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{7..10} ) PYTHON_REQ_USE="sqlite?" inherit bash-completion-r1 distutils-r1 optfeature @@ -22,7 +22,7 @@ fi LICENSE="GPL-2" SLOT="0" IUSE="sqlite" -# requires py2 only libs +# requires libs not present in portage yet RESTRICT="test" RDEPEND=" @@ -30,23 +30,24 @@ RDEPEND=" dev-python/dnspython[${PYTHON_USEDEP}] dev-python/pyxdg[${PYTHON_USEDEP}] dev-python/requests[${PYTHON_USEDEP}] + dev-python/setuptools_scm[${PYTHON_USEDEP}] " -python_prepare_all() { - local PATCHES=( - "${FILESDIR}/${PN}-9.3-bash-completion.patch" - ) +PATCHES=( + "${FILESDIR}/${PN}-9.3-bash-completion.patch" +) + +DOCS=( + doc/changelog.txt + doc/upgrading.txt +) +python_prepare_all() { distutils-r1_python_prepare_all } python_install_all() { - local DOCS=( - doc/changelog.txt - doc/upgrading.txt - ) distutils-r1_python_install_all - newbashcomp config/linkchecker-completion ${PN} }