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 E3AD915838C 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 DFD22E29CB; 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 C3BFCE29CB 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 C306634330C 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 2949514B1 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: <1705989494.9aa5370643f92645e3f62b59a3d284f9a62a565f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/toolchain-autoconf.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9aa5370643f92645e3f62b59a3d284f9a62a565f 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: dcfdfb94-b055-42c0-bfc2-c785466f4cdd X-Archives-Hash: 0c9df54988daeea01193a57a64232527 commit: 9aa5370643f92645e3f62b59a3d284f9a62a565f Author: Sam James gentoo org> AuthorDate: Tue Jan 23 05:56:09 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jan 23 05:58:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aa53706 toolchain-autoconf.eclass: compress slotted 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 info pages we install. Bug: https://bugs.gentoo.org/922729 Signed-off-by: Sam James gentoo.org> eclass/toolchain-autoconf.eclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eclass/toolchain-autoconf.eclass b/eclass/toolchain-autoconf.eclass index 1eaf681496d4..330ec45dd7d1 100644 --- a/eclass/toolchain-autoconf.eclass +++ b/eclass/toolchain-autoconf.eclass @@ -115,6 +115,8 @@ toolchain-autoconf_src_install() { ln -s "$f" "${f/./-${PV}.}" || die done popd >/dev/null || die + + docompress "${TC_AUTOCONF_INFOPATH}" fi }