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 72025158003 for ; Sat, 2 Oct 2021 08:59:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B10CBE086A; Sat, 2 Oct 2021 08:59:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7522BE086A for ; Sat, 2 Oct 2021 08:59:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 72E70342DD3 for ; Sat, 2 Oct 2021 08:59:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A8A0B105 for ; Sat, 2 Oct 2021 08:59:17 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1633165150.74aa2743ba44b7e29ae476eaef051a63890f6690.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/wapiti/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/wapiti/wapiti-3.0.5.ebuild net-analyzer/wapiti/wapiti-9999.ebuild X-VCS-Directories: net-analyzer/wapiti/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 74aa2743ba44b7e29ae476eaef051a63890f6690 X-VCS-Branch: master Date: Sat, 2 Oct 2021 08:59:17 +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: b5d40f96-2c0c-4119-8ca2-72e0e062b0cc X-Archives-Hash: a81b1c13154b558142faba60b93353a7 commit: 74aa2743ba44b7e29ae476eaef051a63890f6690 Author: Bernard Cafarelli gentoo org> AuthorDate: Sat Oct 2 08:47:50 2021 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Sat Oct 2 08:59:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74aa2743 net-analyzer/wapiti: fix doc install path Also remove DISTUTILS_USE_SETUPTOOLS Closes: https://bugs.gentoo.org/800911 Closes: https://bugs.gentoo.org/808978 Package-Manager: Portage-3.0.26, Repoman-3.0.3 Signed-off-by: Bernard Cafarelli gentoo.org> net-analyzer/wapiti/wapiti-3.0.5.ebuild | 2 +- net-analyzer/wapiti/wapiti-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net-analyzer/wapiti/wapiti-3.0.5.ebuild b/net-analyzer/wapiti/wapiti-3.0.5.ebuild index 348231badfe..d4ca3fb0a6d 100644 --- a/net-analyzer/wapiti/wapiti-3.0.5.ebuild +++ b/net-analyzer/wapiti/wapiti-3.0.5.ebuild @@ -3,7 +3,6 @@ EAPI=7 -DISTUTILS_USE_SETUPTOOLS=rdepend PYTHON_COMPAT=( python3_{7..9} ) PYTHON_REQ_USE='xml' @@ -38,6 +37,7 @@ S=${WORKDIR}/${MY_P} python_prepare_all() { sed -e 's/"pytest-runner"//' \ -e "/find_packages/s/()/(exclude=['tests*'])/" \ + -e "/DOC_DIR =/s/wapiti/${PF}/" \ -i setup.py || die distutils-r1_python_prepare_all } diff --git a/net-analyzer/wapiti/wapiti-9999.ebuild b/net-analyzer/wapiti/wapiti-9999.ebuild index 69ce960f21a..95c1263aa07 100644 --- a/net-analyzer/wapiti/wapiti-9999.ebuild +++ b/net-analyzer/wapiti/wapiti-9999.ebuild @@ -3,7 +3,6 @@ EAPI=7 -DISTUTILS_USE_SETUPTOOLS=rdepend PYTHON_COMPAT=( python3_{7..9} ) PYTHON_REQ_USE='xml' @@ -35,6 +34,7 @@ RESTRICT="test" python_prepare_all() { sed -e 's/"pytest-runner"//' \ -e "/find_packages/s/()/(exclude=['tests*'])/" \ + -e "/DOC_DIR =/s/wapiti/${PF}/" \ -i setup.py || die distutils-r1_python_prepare_all }