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 3CABD15808B for ; Sun, 10 Apr 2022 15:33:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BDEAE0A03; Sun, 10 Apr 2022 15:33:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 30B97E0A03 for ; Sun, 10 Apr 2022 15:33:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3376A341431 for ; Sun, 10 Apr 2022 15:33:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9CCF634F for ; Sun, 10 Apr 2022 15:33:08 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1649604781.522f3401b7b2cff400a44f8f392ebff68426b6a6.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/wget2/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/wget2/wget2-9999.ebuild X-VCS-Directories: net-misc/wget2/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 522f3401b7b2cff400a44f8f392ebff68426b6a6 X-VCS-Branch: master Date: Sun, 10 Apr 2022 15:33:08 +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: bbcf4291-0a66-4fad-95f4-92be6193963c X-Archives-Hash: c3347d087d7b78aef8d4ce2ad73c1e0a commit: 522f3401b7b2cff400a44f8f392ebff68426b6a6 Author: Lars Wendler gentoo org> AuthorDate: Sun Apr 10 14:57:27 2022 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sun Apr 10 15:33:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=522f3401 net-misc/wget2: Unbreak live ebuild Signed-off-by: Lars Wendler gentoo.org> net-misc/wget2/wget2-9999.ebuild | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/net-misc/wget2/wget2-9999.ebuild b/net-misc/wget2/wget2-9999.ebuild index 632bafad63f9..57cdc0a2f977 100644 --- a/net-misc/wget2/wget2-9999.ebuild +++ b/net-misc/wget2/wget2-9999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 DESCRIPTION="GNU Wget2 is a file and recursive website downloader" HOMEPAGE="https://gitlab.com/gnuwget/wget2" @@ -108,7 +108,16 @@ src_configure() { src_install() { default - doman docs/man/man{1/*.1,3/*.3} + if [[ ${PV} == *9999 ]] ; then + if use doc ; then + local mpage + for mpage in $(find docs/man -type f -regextype grep -regex ".*\.[[:digit:]]$") ; do + doman ${mpage} + done + fi + else + doman docs/man/man{1/*.1,3/*.3} + fi find "${D}" -type f -name '*.la' -delete || die rm "${ED}"/usr/bin/${PN}_noinstall || die