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 89B1515838C for ; Tue, 23 Jan 2024 06:00:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA5A1E2A4A; Tue, 23 Jan 2024 06:00:25 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 A8765E29CB for ; Tue, 23 Jan 2024 06:00:25 +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 999033432FF for ; Tue, 23 Jan 2024 06:00:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02010134C for ; Tue, 23 Jan 2024 06:00:23 +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: <1705989493.518f49f7400f3b68f7a4a87cf11273fa89daade1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/toolchain.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 518f49f7400f3b68f7a4a87cf11273fa89daade1 X-VCS-Branch: master Date: Tue, 23 Jan 2024 06:00:23 +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: 25dd39e3-f0f8-455f-ada8-8743a7be7358 X-Archives-Hash: 1c8547108e00dd13d8c814113f81315d commit: 518f49f7400f3b68f7a4a87cf11273fa89daade1 Author: Sam James gentoo org> AuthorDate: Tue Jan 23 05:46:54 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jan 23 05:58:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=518f49f7 toolchain.eclass: compress slotted man pages & info pages As noted in the bug, we install to a different location to accommodate slotting and hence do not benefit from the automagic compression for /usr/share/doc. Explicitly opt-in for the man pages & info pages we install. Bug: https://bugs.gentoo.org/922729 Signed-off-by: Sam James gentoo.org> eclass/toolchain.eclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index d56b369a0cbb..a6925fa1c8b7 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1975,6 +1975,8 @@ toolchain_src_install() { rm "${D}${DATAPATH}"/info/dir || die fi + docompress "${DATAPATH}"/{info,man} + # Prune empty dirs left behind find "${ED}" -depth -type d -delete 2>/dev/null