From unknown Fri Jun 20 07:18:45 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#57636 <57636@debbugs.gnu.org> To: bug#57636 <57636@debbugs.gnu.org> Subject: Status: [PATCH] Recognize zstandard (.zst) suffix in lisp/info.el Reply-To: bug#57636 <57636@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:18:45 +0000 retitle 57636 [PATCH] Recognize zstandard (.zst) suffix in lisp/info.el reassign 57636 emacs submitter 57636 Sam James severity 57636 normal tag 57636 moreinfo patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 07 00:01:11 2022 Received: (at submit) by debbugs.gnu.org; 7 Sep 2022 04:01:12 +0000 Received: from localhost ([127.0.0.1]:53124 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oVmFT-0001F7-8i for submit@debbugs.gnu.org; Wed, 07 Sep 2022 00:01:11 -0400 Received: from lists.gnu.org ([209.51.188.17]:37094) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oVmFO-0001Ex-Rt for submit@debbugs.gnu.org; Wed, 07 Sep 2022 00:01:09 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:47974) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oVmFF-0007HG-Mk for bug-gnu-emacs@gnu.org; Wed, 07 Sep 2022 00:01:02 -0400 Received: from woodpecker.gentoo.org ([140.211.166.183]:47072 helo=smtp.gentoo.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1oVmFA-0002eF-Sm for bug-gnu-emacs@gnu.org; Wed, 07 Sep 2022 00:00:55 -0400 From: Sam James To: bug-gnu-emacs@gnu.org Subject: [PATCH] Recognize zstandard (.zst) suffix in lisp/info.el Date: Wed, 7 Sep 2022 05:00:40 +0100 Message-Id: <20220907040040.25684-1-sam@gentoo.org> X-Mailer: git-send-email 2.37.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=140.211.166.183; envelope-from=sam@gentoo.org; helo=smtp.gentoo.org X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Sam James X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * lisp/info.el (Info-suffix-list): Recognize .zst file extension from the zstd compression tool. This allos reading Info pages compressed with zstandard. --- lisp/info.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/info.el b/lisp/info.el index 1a58910c3a..fdbe1f9b90 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -451,6 +451,7 @@ or `Info-virtual-nodes'." (".info.z" . "gunzip") (".info.bz2" . ("bzip2" "-dc")) (".info.xz" . "unxz") + (".info.zst" . ("unzstd" "--rm" "-q")) (".info" . nil) ("-info.Z" . "uncompress") ("-info.Y" . "unyabba") @@ -458,6 +459,7 @@ or `Info-virtual-nodes'." ("-info.bz2" . ("bzip2" "-dc")) ("-info.z" . "gunzip") ("-info.xz" . "unxz") + ("-info.zst" . ("unzstd" "--rm" "-q")) ("-info" . nil) ("/index.Z" . "uncompress") ("/index.Y" . "unyabba") @@ -465,6 +467,7 @@ or `Info-virtual-nodes'." ("/index.z" . "gunzip") ("/index.bz2" . ("bzip2" "-dc")) ("/index.xz" . "unxz") + ("/index.zst" . ("unzstd" "--rm" "-q")) ("/index" . nil) (".Z" . "uncompress") (".Y" . "unyabba") @@ -472,6 +475,7 @@ or `Info-virtual-nodes'." (".z" . "gunzip") (".bz2" . ("bzip2" "-dc")) (".xz" . "unxz") + (".zst" . ("unzstd" "--rm" "-q")) ("" . nil))) "List of file name suffixes and associated decoding commands. Each entry should be (SUFFIX . STRING); the file is given to -- 2.37.3 From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 07 07:36:23 2022 Received: (at 57636) by debbugs.gnu.org; 7 Sep 2022 11:36:23 +0000 Received: from localhost ([127.0.0.1]:53708 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oVtLy-0000cw-VK for submit@debbugs.gnu.org; Wed, 07 Sep 2022 07:36:23 -0400 Received: from eggs.gnu.org ([209.51.188.92]:49758) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oVtLx-0000cj-3P for 57636@debbugs.gnu.org; Wed, 07 Sep 2022 07:36:21 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:39114) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oVtLr-0001eF-Nx; Wed, 07 Sep 2022 07:36:15 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=TwptVPjX75C0T+9C6iAnGhV+E5OE1wJl/A3W+a8lI7o=; b=W88bgepu3uVG L/nTYLZHJZn+9NSvX4FT1Ptwpjl8kd44UogD+OFR5Dot6rVDikzz3yZSZuX5dko7+2q5aOLQI2+PZ pm044xxgzz8eyiZJ0S/HFN6kYNXzDp6UDaM0Vjt1m5JlTrerttqSneeSYc/KdjMSQA09ShNnaQYhF x69vUH3a2SJ8reAymWO5qzggEjiQS+woJcF6vd8d/ELt3Sts/IU4PAK8awF+/o9EK1gPmlrz2U0Fo 8z0q52OTKP0q6VE6EB+CQyD4zGHid0LoMqiX0LrbWTd8G+SZWvQZMeIm2EwI+/WF9DqPaEpmTDjL1 iO8D1af+ZbET/SkKBglwvg==; Received: from [87.69.77.57] (port=4209 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oVtLr-0000gC-6k; Wed, 07 Sep 2022 07:36:15 -0400 Date: Wed, 07 Sep 2022 14:35:58 +0300 Message-Id: <834jxjifhd.fsf@gnu.org> From: Eli Zaretskii To: Sam James In-Reply-To: <20220907040040.25684-1-sam@gentoo.org> (message from Sam James on Wed, 7 Sep 2022 05:00:40 +0100) Subject: Re: bug#57636: [PATCH] Recognize zstandard (.zst) suffix in lisp/info.el References: <20220907040040.25684-1-sam@gentoo.org> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 57636 Cc: 57636@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > Cc: Sam James > From: Sam James > Date: Wed, 7 Sep 2022 05:00:40 +0100 > > * lisp/info.el (Info-suffix-list): Recognize .zst file extension from the > zstd compression tool. This allos reading Info pages compressed with zstandard. > --- > lisp/info.el | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/lisp/info.el b/lisp/info.el > index 1a58910c3a..fdbe1f9b90 100644 > --- a/lisp/info.el > +++ b/lisp/info.el > @@ -451,6 +451,7 @@ or `Info-virtual-nodes'." > (".info.z" . "gunzip") > (".info.bz2" . ("bzip2" "-dc")) > (".info.xz" . "unxz") > + (".info.zst" . ("unzstd" "--rm" "-q")) Thanks, but I don't think I understand the --rm part: these commands aren't supposed to replace the original compressed file with its decompressed version, they are supposed to write the decompressed text to stdout, where it will be read by Emacs and displayed, and leave the original compressed files alone. So I think you want "-dc", not "--rm -q". Am I missing something? From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 07 09:03:46 2022 Received: (at control) by debbugs.gnu.org; 7 Sep 2022 13:03:46 +0000 Received: from localhost ([127.0.0.1]:54011 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oVuiY-0005Ei-Ca for submit@debbugs.gnu.org; Wed, 07 Sep 2022 09:03:46 -0400 Received: from quimby.gnus.org ([95.216.78.240]:41836) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oVuiX-0005EX-Eu for control@debbugs.gnu.org; Wed, 07 Sep 2022 09:03:45 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=vmwG5i6ZD3hloAL7AmUxspo0Kz+98xwYIfyDyt/WCKo=; b=PNymSpMzzwEC6nlC+Iy9ccMCQe H7aP4nUwroJS742hQiPyYk2VY86HwgBr2u+O5q5+/G81YOS+Q5/Kw3LiSdgqgrz7MbiGOs5IXzi2y xDSHfEbog1wRLfhlPXCvScp2jRmQnt+vzReM/60TERgvyjOjGXMQVeUC7d2S0+uT8yDM=; Received: from [84.212.220.105] (helo=joga) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oVuiL-00070F-Ph for control@debbugs.gnu.org; Wed, 07 Sep 2022 15:03:39 +0200 Date: Wed, 07 Sep 2022 15:03:33 +0200 Message-Id: <874jxjmj4q.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #57636 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: tags 57636 + moreinfo quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) tags 57636 + moreinfo quit From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 07 22:10:37 2022 Received: (at 57636) by debbugs.gnu.org; 8 Sep 2022 02:10:37 +0000 Received: from localhost ([127.0.0.1]:56771 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW701-0000cH-3g for submit@debbugs.gnu.org; Wed, 07 Sep 2022 22:10:37 -0400 Received: from woodpecker.gentoo.org ([140.211.166.183]:43654 helo=smtp.gentoo.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW6zy-0000c0-Nq for 57636@debbugs.gnu.org; Wed, 07 Sep 2022 22:10:35 -0400 Content-Type: multipart/signed; boundary="Apple-Mail=_9E6235FD-3F51-4BBB-A94C-280D187CA344"; protocol="application/pgp-signature"; micalg=pgp-sha512 Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3696.120.41.1.1\)) Subject: Re: bug#57636: [PATCH] Recognize zstandard (.zst) suffix in lisp/info.el From: Sam James In-Reply-To: <834jxjifhd.fsf@gnu.org> Date: Thu, 8 Sep 2022 03:10:21 +0100 Message-Id: <4E6F1B45-BFA6-4B9F-9F14-7A065405A3EC@gentoo.org> References: <20220907040040.25684-1-sam@gentoo.org> <834jxjifhd.fsf@gnu.org> To: Eli Zaretskii X-Mailer: Apple Mail (2.3696.120.41.1.1) X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 57636 Cc: 57636@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --Apple-Mail=_9E6235FD-3F51-4BBB-A94C-280D187CA344 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii > On 7 Sep 2022, at 12:35, Eli Zaretskii wrote: >=20 >> Cc: Sam James >> From: Sam James >> Date: Wed, 7 Sep 2022 05:00:40 +0100 >>=20 >> * lisp/info.el (Info-suffix-list): Recognize .zst file extension from = the >> zstd compression tool. This allos reading Info pages compressed with = zstandard. >> --- >> lisp/info.el | 4 ++++ >> 1 file changed, 4 insertions(+) >>=20 >> diff --git a/lisp/info.el b/lisp/info.el >> index 1a58910c3a..fdbe1f9b90 100644 >> --- a/lisp/info.el >> +++ b/lisp/info.el >> @@ -451,6 +451,7 @@ or `Info-virtual-nodes'." >> (".info.z" . "gunzip") >> (".info.bz2" . ("bzip2" "-dc")) >> (".info.xz" . "unxz") >> + (".info.zst" . ("unzstd" "--rm" "-q")) >=20 > Thanks, but I don't think I understand the --rm part: these commands > aren't supposed to replace the original compressed file with its > decompressed version, they are supposed to write the decompressed text > to stdout, where it will be read by Emacs and displayed, and leave the > original compressed files alone. >=20 > So I think you want "-dc", not "--rm -q". Am I missing something? You're missing nothing and you're exactly right. Apologies tor the error -- that seems obvious now! I'll send a fixed version shortly. --Apple-Mail=_9E6235FD-3F51-4BBB-A94C-280D187CA344 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP -----BEGIN PGP SIGNATURE----- iNUEARYKAH0WIQQlpruI3Zt2TGtVQcJzhAn1IN+RkAUCYxlPDV8UgAAAAAAuAChp c3N1ZXItZnByQG5vdGF0aW9ucy5vcGVucGdwLmZpZnRoaG9yc2VtYW4ubmV0MjVB NkJCODhERDlCNzY0QzZCNTU0MUMyNzM4NDA5RjUyMERGOTE5MAAKCRBzhAn1IN+R kLpXAP4m5M8N5koiWF+zY/HK1woRxKAcnqJLCh0jHWvwCbpgCAEA+bz9w24Y0wkM 7aqDLh2LapJXUM3jNvpcwthc4FwioAQ= =ojBq -----END PGP SIGNATURE----- --Apple-Mail=_9E6235FD-3F51-4BBB-A94C-280D187CA344-- From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 07 23:02:36 2022 Received: (at request) by debbugs.gnu.org; 8 Sep 2022 03:02:36 +0000 Received: from localhost ([127.0.0.1]:56844 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW7oJ-00020B-RW for submit@debbugs.gnu.org; Wed, 07 Sep 2022 23:02:36 -0400 Received: from woodpecker.gentoo.org ([140.211.166.183]:59082 helo=smtp.gentoo.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW7oI-0001zy-ER for request@debbugs.gnu.org; Wed, 07 Sep 2022 23:02:34 -0400 From: Sam James Content-Type: multipart/signed; boundary="Apple-Mail=_6CA55BC1-BB02-409F-A430-8749A5678304"; protocol="application/pgp-signature"; micalg=pgp-sha512 Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3696.120.41.1.1\)) Subject: Message-Id: Date: Thu, 8 Sep 2022 04:02:16 +0100 To: request@debbugs.gnu.org X-Mailer: Apple Mail (2.3696.120.41.1.1) X-Spam-Score: -0.3 (/) X-Debbugs-Envelope-To: request X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.3 (-) --Apple-Mail=_6CA55BC1-BB02-409F-A430-8749A5678304 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii merge 57636 57665 --Apple-Mail=_6CA55BC1-BB02-409F-A430-8749A5678304 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP -----BEGIN PGP SIGNATURE----- iNUEARYKAH0WIQQlpruI3Zt2TGtVQcJzhAn1IN+RkAUCYxlbOV8UgAAAAAAuAChp c3N1ZXItZnByQG5vdGF0aW9ucy5vcGVucGdwLmZpZnRoaG9yc2VtYW4ubmV0MjVB NkJCODhERDlCNzY0QzZCNTU0MUMyNzM4NDA5RjUyMERGOTE5MAAKCRBzhAn1IN+R kMmhAQC7HBQ9hpwSx2ZEkAUWaSc2m9TulPLL5RWsJ1qNaIV5eAEA3Jc88U/l+P+I rU7HoUNiKk2rZlxok3I+rQFF5h0hYQM= =/nCm -----END PGP SIGNATURE----- --Apple-Mail=_6CA55BC1-BB02-409F-A430-8749A5678304-- From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 07 23:04:14 2022 Received: (at 57636) by debbugs.gnu.org; 8 Sep 2022 03:04:14 +0000 Received: from localhost ([127.0.0.1]:56849 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW7pu-00023G-6U for submit@debbugs.gnu.org; Wed, 07 Sep 2022 23:04:14 -0400 Received: from woodpecker.gentoo.org ([140.211.166.183]:59602 helo=smtp.gentoo.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW7pr-000230-Um for 57636@debbugs.gnu.org; Wed, 07 Sep 2022 23:04:12 -0400 Content-Type: multipart/signed; boundary="Apple-Mail=_16C69353-5230-484F-B8D4-BD3E2F973CB1"; protocol="application/pgp-signature"; micalg=pgp-sha512 Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3696.120.41.1.1\)) Subject: Re: bug#57636: [PATCH] Recognize zstandard (.zst) suffix in lisp/info.el From: Sam James In-Reply-To: <4E6F1B45-BFA6-4B9F-9F14-7A065405A3EC@gentoo.org> Date: Thu, 8 Sep 2022 04:03:55 +0100 Message-Id: References: <20220907040040.25684-1-sam@gentoo.org> <834jxjifhd.fsf@gnu.org> <4E6F1B45-BFA6-4B9F-9F14-7A065405A3EC@gentoo.org> To: Eli Zaretskii X-Mailer: Apple Mail (2.3696.120.41.1.1) X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 57636 Cc: 57636@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --Apple-Mail=_16C69353-5230-484F-B8D4-BD3E2F973CB1 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii =46rom f5b4f91e74de2a1b724d978f6ca4f25c78a50389 Mon Sep 17 00:00:00 2001 From: Sam James Date: Wed, 7 Sep 2022 04:57:33 +0100 Subject: [PATCH] Recognize zstandard (.zst) suffix in lisp/info.el * lisp/info.el (Info-suffix-list): Recognize .zst file extension from = the zstd compression tool. This allos reading Info pages compressed with = zstandard. Signed-off-by: Sam James --- lisp/info.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/info.el b/lisp/info.el index 1a58910c3a..292bf93a6f 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -451,6 +451,7 @@ or `Info-virtual-nodes'." (".info.z" . "gunzip") (".info.bz2" . ("bzip2" "-dc")) (".info.xz" . "unxz") + (".info.zst" . ("zstd" "-dc")) (".info" . nil) ("-info.Z" . "uncompress") ("-info.Y" . "unyabba") @@ -458,6 +459,7 @@ or `Info-virtual-nodes'." ("-info.bz2" . ("bzip2" "-dc")) ("-info.z" . "gunzip") ("-info.xz" . "unxz") + ("-info.zst" . ("zstd" "-dc")) ("-info" . nil) ("/index.Z" . "uncompress") ("/index.Y" . "unyabba") @@ -465,6 +467,7 @@ or `Info-virtual-nodes'." ("/index.z" . "gunzip") ("/index.bz2" . ("bzip2" "-dc")) ("/index.xz" . "unxz") + ("/index.zst" . ("zstd" "-dc")) ("/index" . nil) (".Z" . "uncompress") (".Y" . "unyabba") @@ -472,6 +475,7 @@ or `Info-virtual-nodes'." (".z" . "gunzip") (".bz2" . ("bzip2" "-dc")) (".xz" . "unxz") + (".zst" . ("zstd" "-dc")) ("" . nil))) "List of file name suffixes and associated decoding commands. Each entry should be (SUFFIX . STRING); the file is given to -- 2.37.3 --Apple-Mail=_16C69353-5230-484F-B8D4-BD3E2F973CB1 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP -----BEGIN PGP SIGNATURE----- iNUEARYKAH0WIQQlpruI3Zt2TGtVQcJzhAn1IN+RkAUCYxlbnF8UgAAAAAAuAChp c3N1ZXItZnByQG5vdGF0aW9ucy5vcGVucGdwLmZpZnRoaG9yc2VtYW4ubmV0MjVB NkJCODhERDlCNzY0QzZCNTU0MUMyNzM4NDA5RjUyMERGOTE5MAAKCRBzhAn1IN+R kN/OAQC7WQJN2hAONeQ0uLnPRBhoSzlMSn5Mw6eyE33rQreHWgEAqvhpNSwpbIMK UMADQ2f43tuROZPRX7xBubPevctXswk= =PUec -----END PGP SIGNATURE----- --Apple-Mail=_16C69353-5230-484F-B8D4-BD3E2F973CB1-- From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 07 23:55:24 2022 Received: (at control) by debbugs.gnu.org; 8 Sep 2022 03:55:24 +0000 Received: from localhost ([127.0.0.1]:56882 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW8dP-0005UJ-RN for submit@debbugs.gnu.org; Wed, 07 Sep 2022 23:55:24 -0400 Received: from mail-oa1-f53.google.com ([209.85.160.53]:38601) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oW8dN-0005U3-Me for control@debbugs.gnu.org; Wed, 07 Sep 2022 23:55:21 -0400 Received: by mail-oa1-f53.google.com with SMTP id 586e51a60fabf-1278624b7c4so22938012fac.5 for ; Wed, 07 Sep 2022 20:55:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date; bh=RrtylMYLjVNXqKZ+xuYii00oo4vOIJJvQhuuB8122qU=; b=Ar54RiWP+BkCoqCTmgKEDfrs8UPm4f05nR+H6wm1X+9uD18eMXq7l86Mmf6RTgsYpp 5QoydbYeevf4D6Y1zUnvEbxW03/fx+gyDbosz/yVuj96IPDGwmI4+ccdwwfU5HoBl+4Z fPffYPToKx+Mta5lLnh0q0jFV3WMigwMce3oVVUYTVKONL2RKmHY7XSQMyWZZk2Md4of 2/yOSZrZ8aJfWVQigTyCCrJ7GbdwrNxCt0EMek82l+/z2zneg5z9zd+NN+aS+hid36Cd 3v1V3wO2rXe77xPjUDJSRYyU4/rnxdCXaDrp/9dRz5e7305ebkPIE5p60IzEKWlK1J5I 4//g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date; bh=RrtylMYLjVNXqKZ+xuYii00oo4vOIJJvQhuuB8122qU=; b=7HpFiRdSGhdAuarZE9wfB+9DtLhy/6Mfxs1O5gr+lEs2NBZtZoqCQjXluywGIpSFqE lvVtaoiRcd+6LAK+8jeMq29K1s0A6Q3m4N5XdVmCV+KAJmoarMzaiGyixFoGUWCXm3MR JOU9SuDlNAOWU3XNG3tg2wj9wCJuwP3QrszPEFxAxojLP8s3TzPc0TvPORk31hwTauXp q0l09F+FukUf3AZhZ9WCDOfps7T5qGUdJsIYdx5ELqCjI2gcq2omxiBmN01btMkeRWdW ZWqqynThGi1BvBC1WodvjQ73b+wnj00pq/vLdM3hYPNjf0uuO4hEa7KD0NrPb+TOsrPt PCVA== X-Gm-Message-State: ACgBeo3hn4lHcMxzcwPbJpnZQrg4tbzbi+zDSWkHoQB+oUCCEoqX0jgF haTSFbjWhnrBXvB6n1VZfDRGGgsBe9c1ylqhx7qoMMgwMTM= X-Google-Smtp-Source: AA6agR4/07OFM4fU3l/ybZjzmEaa7fpcv9m7bbQEyN5oDh5raW7iMlMVFzUzyuUgTA1GQvplt7LVF2Y2e+nEKxGyn+w= X-Received: by 2002:a05:6870:5581:b0:11e:300:8189 with SMTP id n1-20020a056870558100b0011e03008189mr832711oao.199.1662609315971; Wed, 07 Sep 2022 20:55:15 -0700 (PDT) MIME-Version: 1.0 From: Stefan Kangas Date: Thu, 8 Sep 2022 05:55:04 +0200 Message-ID: Subject: To: control Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: forcemerge 57636 57665 thanks Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (stefankangas[at]gmail.com) 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [209.85.160.53 listed in wl.mailspike.net] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.160.53 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders -0.0 T_SCC_BODY_TEXT_LINE No description available. 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) forcemerge 57636 57665 thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 08 04:52:37 2022 Received: (at 57636-done) by debbugs.gnu.org; 8 Sep 2022 08:52:37 +0000 Received: from localhost ([127.0.0.1]:57223 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oWDH3-00072A-0V for submit@debbugs.gnu.org; Thu, 08 Sep 2022 04:52:37 -0400 Received: from eggs.gnu.org ([209.51.188.92]:40016) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oWDH1-00071y-8p for 57636-done@debbugs.gnu.org; Thu, 08 Sep 2022 04:52:35 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:35934) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oWDGv-0004YH-Tw; Thu, 08 Sep 2022 04:52:29 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=hb5sp/Ig6cyDCQnN1YsSC3BAp87Br8TTwTem7sDZRh0=; b=oqwWXY7XM79T FEW24L7PZZ8J+kVxILqoSSXALCxAaXaJ6e/IKyVDrmJEG736jCboZVUf3pTtJ4DHzJv8zjPM7ilH3 PJUvCqOpRWBhh9sr+QC8jC++WWhiLcVzCltEvoQnZm9mYyTEEZ5S043X2c7/vWi/gFQ7Aw0AdoKSa zEEVGtWhuBRrj646Zl4m/emOHZXGo6MT5NTVCen3jA2gvuTMxL79xovNCb3GRT9TZFzF/gvwoLyNb Fih0fI4H8QuVZ0n9eD5MDr+OEQpLikWXHXJwEm3M2IdHa2d2F+o6X5XjWPQcFPg7XqbsxtFPh+926 D1mOzKirL0xOd0lrcd4kbA==; Received: from [87.69.77.57] (port=2513 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oWDGv-0000L2-Cf; Thu, 08 Sep 2022 04:52:29 -0400 Date: Thu, 08 Sep 2022 11:52:12 +0300 Message-Id: <83bkrqfdtv.fsf@gnu.org> From: Eli Zaretskii To: Sam James In-Reply-To: (message from Sam James on Thu, 8 Sep 2022 04:03:55 +0100) Subject: Re: bug#57636: [PATCH] Recognize zstandard (.zst) suffix in lisp/info.el References: <20220907040040.25684-1-sam@gentoo.org> <834jxjifhd.fsf@gnu.org> <4E6F1B45-BFA6-4B9F-9F14-7A065405A3EC@gentoo.org> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 57636-done Cc: 57636-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Sam James > Date: Thu, 8 Sep 2022 04:03:55 +0100 > Cc: 57636@debbugs.gnu.org > > From f5b4f91e74de2a1b724d978f6ca4f25c78a50389 Mon Sep 17 00:00:00 2001 > From: Sam James > Date: Wed, 7 Sep 2022 04:57:33 +0100 > Subject: [PATCH] Recognize zstandard (.zst) suffix in lisp/info.el > > * lisp/info.el (Info-suffix-list): Recognize .zst file extension from the > zstd compression tool. This allos reading Info pages compressed with zstandard. > > Signed-off-by: Sam James Thanks, installed on the master branch. For the future, please observe some of our coding conventions that in this case caused me some manual work while applying the patch: . don't use Signed-off-by, our commit hooks reject that . lines in commit log messages should be shorter than 78 characters . we mention the bug number, when appropriate, in the commit log From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 09 00:21:45 2022 Received: (at 57636-done) by debbugs.gnu.org; 9 Sep 2022 04:21:45 +0000 Received: from localhost ([127.0.0.1]:60653 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oWVWT-0000Wa-0p for submit@debbugs.gnu.org; Fri, 09 Sep 2022 00:21:45 -0400 Received: from woodpecker.gentoo.org ([140.211.166.183]:38248 helo=smtp.gentoo.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oWVWQ-0000WK-G7 for 57636-done@debbugs.gnu.org; Fri, 09 Sep 2022 00:21:43 -0400 Content-Type: multipart/signed; boundary="Apple-Mail=_052AF7F3-F444-4BA2-AF07-A72202306F12"; protocol="application/pgp-signature"; micalg=pgp-sha512 Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3696.120.41.1.1\)) Subject: Re: bug#57636: [PATCH] Recognize zstandard (.zst) suffix in lisp/info.el From: Sam James In-Reply-To: <83bkrqfdtv.fsf@gnu.org> Date: Fri, 9 Sep 2022 05:21:27 +0100 Message-Id: References: <20220907040040.25684-1-sam@gentoo.org> <834jxjifhd.fsf@gnu.org> <4E6F1B45-BFA6-4B9F-9F14-7A065405A3EC@gentoo.org> <83bkrqfdtv.fsf@gnu.org> To: Eli Zaretskii X-Mailer: Apple Mail (2.3696.120.41.1.1) X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 57636-done Cc: 57636-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --Apple-Mail=_052AF7F3-F444-4BA2-AF07-A72202306F12 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii > On 8 Sep 2022, at 09:52, Eli Zaretskii wrote: >=20 >> From: Sam James >> Date: Thu, 8 Sep 2022 04:03:55 +0100 >> Cc: 57636@debbugs.gnu.org >>=20 >> =46rom f5b4f91e74de2a1b724d978f6ca4f25c78a50389 Mon Sep 17 00:00:00 = 2001 >> From: Sam James >> Date: Wed, 7 Sep 2022 04:57:33 +0100 >> Subject: [PATCH] Recognize zstandard (.zst) suffix in lisp/info.el >>=20 >> * lisp/info.el (Info-suffix-list): Recognize .zst file extension from = the >> zstd compression tool. This allos reading Info pages compressed with = zstandard. >>=20 >> Signed-off-by: Sam James >=20 > Thanks, installed on the master branch. >=20 > For the future, please observe some of our coding conventions that in > this case caused me some manual work while applying the patch: >=20 > . don't use Signed-off-by, our commit hooks reject that > . lines in commit log messages should be shorter than 78 characters > . we mention the bug number, when appropriate, in the commit log >=20 Many thanks and I'll keep these notes in mind. I was struggling a bit with the ChangeLog format as I've not had to use it much before, so apologies for the line length issue too. Appreciate the help & merge! Best, sam --Apple-Mail=_052AF7F3-F444-4BA2-AF07-A72202306F12 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP -----BEGIN PGP SIGNATURE----- iNUEARYKAH0WIQQlpruI3Zt2TGtVQcJzhAn1IN+RkAUCYxq/R18UgAAAAAAuAChp c3N1ZXItZnByQG5vdGF0aW9ucy5vcGVucGdwLmZpZnRoaG9yc2VtYW4ubmV0MjVB NkJCODhERDlCNzY0QzZCNTU0MUMyNzM4NDA5RjUyMERGOTE5MAAKCRBzhAn1IN+R kLI+AQDTi4KtOlGxIJv3WFk3S2081858ET6vG/WkBaPuxL1tAwEA92Csscig/HxW FSjO7ykbGT+v7OjYpB8BNvs7Xu7VogU= =WGPj -----END PGP SIGNATURE----- --Apple-Mail=_052AF7F3-F444-4BA2-AF07-A72202306F12-- From unknown Fri Jun 20 07:18:45 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 07 Oct 2022 11:24:08 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator