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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 345D6158020 for ; Thu, 20 Oct 2022 04:03:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6F2C2E0877; Thu, 20 Oct 2022 04:03:58 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 51970E0877 for ; Thu, 20 Oct 2022 04:03:58 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6D4E0340E9B for ; Thu, 20 Oct 2022 04:03:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CF018625 for ; Thu, 20 Oct 2022 04:03:55 +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: <1666238610.8c0612f34306ce87915986def93614aae5802870.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/pixz/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/pixz/pixz-1.0.7-r1.ebuild app-arch/pixz/pixz-9999.ebuild X-VCS-Directories: app-arch/pixz/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8c0612f34306ce87915986def93614aae5802870 X-VCS-Branch: master Date: Thu, 20 Oct 2022 04:03:55 +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: 64fc9597-67a1-4923-b880-bda58bc5bb14 X-Archives-Hash: 85e50f84826b08170597861d13e92f8f commit: 8c0612f34306ce87915986def93614aae5802870 Author: Sam James gentoo org> AuthorDate: Thu Oct 20 04:02:55 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Oct 20 04:03:30 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c0612f3 app-arch/pixz: partially restore man page workaround for 9999 Bug: https://github.com/vasi/pixz/issues/94 Bug: https://bugs.gentoo.org/822732 Signed-off-by: Sam James gentoo.org> app-arch/pixz/pixz-1.0.7-r1.ebuild | 3 ++- app-arch/pixz/pixz-9999.ebuild | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/app-arch/pixz/pixz-1.0.7-r1.ebuild b/app-arch/pixz/pixz-1.0.7-r1.ebuild index 4cee8e634c94..7e591aaa8701 100644 --- a/app-arch/pixz/pixz-1.0.7-r1.ebuild +++ b/app-arch/pixz/pixz-1.0.7-r1.ebuild @@ -52,5 +52,6 @@ src_configure() { src_install() { default - [[ ${PV} == "9999" ]] || doman src/pixz.1 + # https://github.com/vasi/pixz/issues/94 + [[ ${PV} == "9999" ]] || doman src/pixz.1 } diff --git a/app-arch/pixz/pixz-9999.ebuild b/app-arch/pixz/pixz-9999.ebuild index 78fd9a6c159b..2fbeeaf35fe3 100644 --- a/app-arch/pixz/pixz-9999.ebuild +++ b/app-arch/pixz/pixz-9999.ebuild @@ -45,3 +45,10 @@ src_configure() { econf } + +src_install() { + default + + # https://github.com/vasi/pixz/issues/94 + [[ ${PV} == "9999" ]] || doman src/pixz.1 +}