From unknown Sun Aug 10 16:48:33 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#67017 <67017@debbugs.gnu.org> To: bug#67017 <67017@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add iptables-nft. Reply-To: bug#67017 <67017@debbugs.gnu.org> Date: Sun, 10 Aug 2025 23:48:33 +0000 retitle 67017 [PATCH] gnu: Add iptables-nft. reassign 67017 guix-patches submitter 67017 Hilton Chain severity 67017 normal tag 67017 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 09 09:39:49 2023 Received: (at submit) by debbugs.gnu.org; 9 Nov 2023 14:39:50 +0000 Received: from localhost ([127.0.0.1]:47129 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r16CD-0004lH-FK for submit@debbugs.gnu.org; Thu, 09 Nov 2023 09:39:49 -0500 Received: from lists.gnu.org ([2001:470:142::17]:52246) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r16CA-0004l3-8w for submit@debbugs.gnu.org; Thu, 09 Nov 2023 09:39:47 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1r16BR-0006Lw-6Z for guix-patches@gnu.org; Thu, 09 Nov 2023 09:39:01 -0500 Received: from mail.boiledscript.com ([144.168.59.46]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1r16BP-0007JP-GH for guix-patches@gnu.org; Thu, 09 Nov 2023 09:39:00 -0500 From: Hilton Chain DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ultrarare.space; s=dkim; t=1699540547; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=kbRKs5C/s+aeZ8VwGfVktqIfeQw1eesQNpmHdh0jq8E=; b=PbuzDFLnvmkeBBT2c8zT5qONQz3xv/+WYDM1uznEzs9LPIMo3P2kw6/nyBwFzDfBq3wSti yQEcqQM80Klyrjhlh12eSBkwkWLBx9cK+KYJ3duq+GX4c1RfnOtF7ZfyWuPDomfXE1QAu+ jhi4S1A1nZQhxA3kqIjSQNZUfYsjNQJ5vQFaWjFmE/HyqKQWqRJQVYZkxCNNHXKqZSDLBv 62m4eH8uIPy/ZSGIKqJVmmcWhb6YbvNALZaww8mN5EfmzYrR1qF1IePtARrIrIvqvbx0+j eFIxvWXnLQ2MNZ1ezfKgAWYGavIpO2EkSE5/REvpFlg0++W8/yBZ7emlMWNo6g== Authentication-Results: mail.boiledscript.com; auth=pass smtp.mailfrom=hako@ultrarare.space To: guix-patches@gnu.org Subject: [PATCH] gnu: Add iptables-nft. Date: Thu, 9 Nov 2023 22:36:44 +0800 Message-ID: <6655067807f1485e3a8e9bea0c8319c691c40340.1699540137.git.hako@ultrarare.space> MIME-Version: 1.0 X-Debbugs-Cc: Leo Famulari , Tobias Geerinckx-Rice Content-Transfer-Encoding: 8bit X-Spam-Level: * X-Spamd-Bar: + Received-SPF: pass client-ip=144.168.59.46; envelope-from=hako@ultrarare.space; helo=mail.boiledscript.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=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: 1.0 (+) X-Debbugs-Envelope-To: submit Cc: Hilton Chain 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: -0.0 (/) * gnu/packages/linux.scm (iptables-nft): New variable. Change-Id: I281514fcf05e70b4d62f374269c50c76bb676f78 --- gnu/packages/linux.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 95a66e3d6a..596019ae5b 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3101,6 +3101,33 @@ (define-public iptables '((release-monitoring-url . "https://www.netfilter.org/pub/iptables/"))) (license license:gpl2+))) +(define-public iptables-nft + (package/inherit iptables + (name "iptables-nft") + (arguments + (substitute-keyword-arguments (package-arguments iptables) + ((#:phases phases '%standard-phases) + #~(modify-phases #$phases + (add-after 'install 'symlink-xtables-nft-multi + (lambda _ + (for-each + (lambda (command-path) + (let ((link-path (string-append #$output command-path))) + (when (file-exists? link-path) + (delete-file link-path)) + (symlink (string-append #$output "/sbin/xtables-nft-multi") + link-path))) + (apply append + '("/bin/iptables-xml") + (map (lambda (xtables) + (list (string-append "/sbin/" xtables) + (string-append "/sbin/" xtables "-restore") + (string-append "/sbin/" xtables "-save"))) + '("arptables" + "ebtables" + "iptables" + "ip6tables")))))))))))) + (define-public bolt (package (name "bolt") base-commit: 960d7ac5a56155895543e03622f6555cc162d13a -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Sun Nov 12 10:30:09 2023 Received: (at 67017) by debbugs.gnu.org; 12 Nov 2023 15:30:09 +0000 Received: from localhost ([127.0.0.1]:56777 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r2CPZ-0000d0-GB for submit@debbugs.gnu.org; Sun, 12 Nov 2023 10:30:09 -0500 Received: from mail.boiledscript.com ([144.168.59.46]:44098) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r2CPX-0000bl-1Q for 67017@debbugs.gnu.org; Sun, 12 Nov 2023 10:30:08 -0500 From: Hilton Chain DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ultrarare.space; s=dkim; t=1699802771; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=WWHbJUhZwxFlBmXmJALyC8EaR0rYZ+MiZ/Cx0neDRXQ=; b=KnRrWRZyBQlfUdCKFJGdmAGaVQw6S8TJgA0ECvfYLB93LlQRTsXh7ZUfmfmoiyBOGs8+F4 kh83mh5QFmkmUrNqnTmb/9CA2hg5SNj1prBl6hXw/NDtuApy/vEpKzfP9+1qPrZvn+Ofzb 91D8UL65eWSBOT+FOU4vYRiw+YIb7NpmqSVgxiS6VHBBTvYtJwQPo/fLx2KmlIxhURvEak WNH3RVBaeYGO9rZ0jO83crYqNo49aSiZTbwkYw6JFKFF1P3fQOqnBFfeqiWGpbjhpygVJt +3BcRLoYk+7HLPYYAlkYo5stHs7oVeaYh80F/z3wEwwy6F4msI9ZoT2YWLpBDQ== Authentication-Results: mail.boiledscript.com; auth=pass smtp.mailfrom=hako@ultrarare.space To: 67017@debbugs.gnu.org Subject: [PATCH v2] gnu: Add iptables-nft. Date: Sun, 12 Nov 2023 23:28:19 +0800 Message-ID: In-Reply-To: <6655067807f1485e3a8e9bea0c8319c691c40340.1699540137.git.hako@ultrarare.space> References: <6655067807f1485e3a8e9bea0c8319c691c40340.1699540137.git.hako@ultrarare.space> MIME-Version: 1.0 X-Debbugs-Cc: Hilton Chain , Leo Famulari , Tobias Geerinckx-Rice Content-Transfer-Encoding: 8bit X-Spam-Level: * X-Spamd-Bar: + X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 67017 Cc: Hilton Chain 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 (-) * gnu/packages/linux.scm (iptables-nft): New variable. Change-Id: I281514fcf05e70b4d62f374269c50c76bb676f78 --- V1 -> V2: Add iptables to inputs and switch to copy-build-system, since there's no need to build it again. gnu/packages/linux.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 95a66e3d6a..397fc911ea 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3101,6 +3101,38 @@ (define-public iptables '((release-monitoring-url . "https://www.netfilter.org/pub/iptables/"))) (license license:gpl2+))) +(define-public iptables-nft + (package + (inherit iptables) + (name "iptables-nft") + (source #f) + (build-system copy-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (delete 'unpack) + (replace 'install + (lambda* (#:key inputs #:allow-other-keys) + (for-each + (lambda (command-path) + (let ((link-path (string-append #$output command-path))) + (mkdir-p (dirname link-path)) + (symlink (search-input-file inputs "sbin/xtables-nft-multi") + link-path))) + (apply append + '("/bin/iptables-xml") + (map (lambda (xtables) + (list (string-append "/sbin/" xtables) + (string-append "/sbin/" xtables "-restore") + (string-append "/sbin/" xtables "-save"))) + '("arptables" + "ebtables" + "iptables" + "ip6tables"))))))))) + (inputs (list iptables)) + (native-inputs '()))) + (define-public bolt (package (name "bolt") base-commit: e35b7c5386c1bfacf47ed31bac9b503373dd26fc -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Sun Nov 26 17:34:41 2023 Received: (at 67017) by debbugs.gnu.org; 26 Nov 2023 22:34:41 +0000 Received: from localhost ([127.0.0.1]:42838 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r7Ni4-0005eX-M3 for submit@debbugs.gnu.org; Sun, 26 Nov 2023 17:34:40 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:37678) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r7Ni2-0005eH-Ap for 67017@debbugs.gnu.org; Sun, 26 Nov 2023 17:34:39 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1r7Nhp-0008AH-Qm; Sun, 26 Nov 2023 17:34:26 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=qcFEGvrUGtdcWtaVZ7I0xgjUD+WKZTOYkEkH7f6bkoI=; b=G6P+JEgGkETmmmYlya8k DiyHHDRJ6fIUefGVPvJu5/D29yYiFj7QFHiJclcuQ+FJME9pP4yxTZL2NipZsTLrV/+1kMAlwQMly +b+bv8bD1zGoEqUJI7C2HgqS4QR5Gq5VSFAHTUDdNGJ5SpFIUCrHpaDdpJCzR3pff0cs9GNY/phuj /qTYhRNE6HVWV8UwDM397QTN4xFDCr/y7RLBTmF7up623tPXpXFehEj2xx8tqO6zKDbSdC9XU6GFD rufEeErXbPIshIsWTN1YdMs6+bqCg5tTY1x2Uwv3tVcMQLopA4Aurja65Oa6tQ+cUrpHJ32aol5cA BRYbzfV4bb+N8Q==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Hilton Chain Subject: Re: [bug#67017] [PATCH v2] gnu: Add iptables-nft. In-Reply-To: (Hilton Chain's message of "Sun, 12 Nov 2023 23:28:19 +0800") References: <6655067807f1485e3a8e9bea0c8319c691c40340.1699540137.git.hako@ultrarare.space> Date: Sun, 26 Nov 2023 23:34:22 +0100 Message-ID: <8734ws16vl.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 67017 Cc: Tobias Geerinckx-Rice , 67017@debbugs.gnu.org, Leo Famulari 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 (---) Hi, Hilton Chain skribis: > * gnu/packages/linux.scm (iptables-nft): New variable. > > Change-Id: I281514fcf05e70b4d62f374269c50c76bb676f78 [...] > +(define-public iptables-nft > + (package > + (inherit iptables) > + (name "iptables-nft") > + (source #f) > + (build-system copy-build-system) > + (arguments > + (list > + #:phases > + #~(modify-phases %standard-phases > + (delete 'unpack) > + (replace 'install > + (lambda* (#:key inputs #:allow-other-keys) > + (for-each > + (lambda (command-path) > + (let ((link-path (string-append #$output command-path))) > + (mkdir-p (dirname link-path)) > + (symlink (search-input-file inputs "sbin/xtables-nft-= multi") > + link-path))) > + (apply append > + '("/bin/iptables-xml") > + (map (lambda (xtables) > + (list (string-append "/sbin/" xtables) > + (string-append "/sbin/" xtables "-res= tore") > + (string-append "/sbin/" xtables "-sav= e"))) > + '("arptables" > + "ebtables" > + "iptables" > + "ip6tables"))))))))) > + (inputs (list iptables)) > + (native-inputs '()))) I think we at least need =E2=80=98synopsis=E2=80=99 to clarify what this is= about compared to =E2=80=98iptables=E2=80=99. Apart from that it LGTM, thanks! Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 09 07:38:38 2023 Received: (at 67017) by debbugs.gnu.org; 9 Dec 2023 12:38:38 +0000 Received: from localhost ([127.0.0.1]:46957 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rBwbO-0006c9-5f for submit@debbugs.gnu.org; Sat, 09 Dec 2023 07:38:38 -0500 Received: from mail.boiledscript.com ([144.168.59.46]:33782) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rBwbL-0006c0-KZ for 67017@debbugs.gnu.org; Sat, 09 Dec 2023 07:38:36 -0500 Date: Sat, 09 Dec 2023 20:32:18 +0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ultrarare.space; s=dkim; t=1702125253; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=7luB5kRGKCdekKMG6Ng8OwZ0F8RH8cRsyxVF89QNBvc=; b=U8XuRiFZyAkG2hdV5s+GQlrwryS49rzgrfYtlMPN+VqppLErP8BWybqUKbPhVhfJB6QhpH RhddJ2JLn5uqMAYasWbWfQ/Wt6Ek9AcBWbro2PUaNMIxXF/VZ14FIU+FByAmOB31mGNfpJ 2y0+jyLmFpOc6iz0cazeLCrq62dHjpOah1CJihyqfgUGmZtg/kQSNiu2es+AoJvq5MZzsy gLMkv/exlnWso5SCCPyTtx7EwmzzcrhOGMOcsyeMDGmM809xzPcP6cmTmoLBarKLqbvK7H hMWPE7l4nwmr7o0SfPMbjQ4ZWXhwUB5DaMhmeljrji90RIrZxIF8a+GsetZlrQ== Authentication-Results: mail.boiledscript.com; auth=pass smtp.mailfrom=hako@ultrarare.space Message-ID: <87ttortv3h.wl-hako@ultrarare.space> From: Hilton Chain To: Ludovic =?ISO-8859-1?Q?Court=E8s?= Subject: Re: [bug#67017] [PATCH v2] gnu: Add iptables-nft. In-Reply-To: <8734ws16vl.fsf@gnu.org> References: <6655067807f1485e3a8e9bea0c8319c691c40340.1699540137.git.hako@ultrarare.space> <8734ws16vl.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: base64 X-Spamd-Bar: + X-Spam-Level: * X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 67017 Cc: Tobias Geerinckx-Rice , 67017@debbugs.gnu.org, Leo Famulari 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 (-) SGksDQpPbiBNb24sIDI3IE5vdiAyMDIzIDA2OjM0OjIyICswODAwLA0KTHVkb3ZpYyBDb3VydKio cyB3cm90ZToNCj4NClsuLi5dDQo+IEkgdGhpbmsgd2UgYXQgbGVhc3QgbmVlZCChrnN5bm9wc2lz oa8gdG8gY2xhcmlmeSB3aGF0IHRoaXMgaXMgYWJvdXQNCj4gY29tcGFyZWQgdG8goa5pcHRhYmxl c6GvLg0KDQpEb2VzIGl0IGxvb2sgZ29vZCB0byBhcHBlbmQgYSAiKG5mdGFibGVzIEFQSSkiIHRv IHRoZSBzeW5vcHNpcyBvZg0KaXB0YWJsZXM/ICBTbyB0aGF0IGl0IHNheXMgIlByb2dyYW1zIHRv IGNvbmZpZ3VyZSBMaW51eCBJUCBwYWNrZXQNCmZpbHRlcmluZyBydWxlcyAobmZ0YWJsZXMgQVBJ KSIuDQo= From debbugs-submit-bounces@debbugs.gnu.org Tue Dec 19 09:02:52 2023 Received: (at 67017-done) by debbugs.gnu.org; 19 Dec 2023 14:02:52 +0000 Received: from localhost ([127.0.0.1]:34674 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rFagN-0003u3-Py for submit@debbugs.gnu.org; Tue, 19 Dec 2023 09:02:52 -0500 Received: from mail.boiledscript.com ([144.168.59.46]:60060) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rFagL-0003tt-PY for 67017-done@debbugs.gnu.org; Tue, 19 Dec 2023 09:02:50 -0500 Date: Tue, 19 Dec 2023 21:52:41 +0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ultrarare.space; s=dkim; t=1702994298; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=uFtcWAlF0YRMAytw72WbJcaiTVa9TogrvGHpTfmDE0k=; b=lFVbqdlfMR1J0mGMjUKZFAzIrfN9LFSWaR/kJcUNwpBbbrriCLhKoz2N897wTorQTmcBe/ rBd4hyrX1wsU3MNnq3PcYMsGeH4ZT9fNRz0NZX1Gwn1fMeMPoxIxW+05akUH26/U0DlSIj p3JS3H/V1v36HrQlx6JSalI/d6aGqvIsM3yEpXDIHqgefHNIuhu1DfscSKyEa6qV986+i1 GddHiGQ0reGyFFUlQPOs6p7730+hoIDTFOSES5vIq/r3SXmBtQs9ZHO3QrczQQzkyzz+Bd IMx7V0mTxQ41C7xg6xky3n0AXQN5SUUV609QQgK5M5IDjWi35a5FfEtyumy4ZQ== Authentication-Results: mail.boiledscript.com; auth=pass smtp.mailfrom=hako@ultrarare.space Message-ID: <87ttoe7106.wl-hako@ultrarare.space> From: Hilton Chain To: Ludovic =?ISO-8859-1?Q?Court=E8s?= Subject: Close: [bug#67017] [PATCH v2] gnu: Add iptables-nft. In-Reply-To: <87ttortv3h.wl-hako@ultrarare.space> References: <6655067807f1485e3a8e9bea0c8319c691c40340.1699540137.git.hako@ultrarare.space> <8734ws16vl.fsf@gnu.org> <87ttortv3h.wl-hako@ultrarare.space> MIME-Version: 1.0 Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: base64 X-Spamd-Bar: + X-Spam-Level: * X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 67017-done Cc: Tobias Geerinckx-Rice , 67017-done@debbugs.gnu.org, Leo Famulari 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 (-) T24gU2F0LCAwOSBEZWMgMjAyMyAyMDozMjoxOCArMDgwMCwNCkhpbHRvbiBDaGFpbiB3cm90ZToN Cj4NCj4gSGksDQo+IE9uIE1vbiwgMjcgTm92IDIwMjMgMDY6MzQ6MjIgKzA4MDAsDQo+IEx1ZG92 aWMgQ291cnSoqHMgd3JvdGU6DQo+ID4NCj4gWy4uLl0NCj4gPiBJIHRoaW5rIHdlIGF0IGxlYXN0 IG5lZWQgoa5zeW5vcHNpc6GvIHRvIGNsYXJpZnkgd2hhdCB0aGlzIGlzIGFib3V0DQo+ID4gY29t cGFyZWQgdG8goa5pcHRhYmxlc6GvLg0KPg0KPiBEb2VzIGl0IGxvb2sgZ29vZCB0byBhcHBlbmQg YSAiKG5mdGFibGVzIEFQSSkiIHRvIHRoZSBzeW5vcHNpcyBvZg0KPiBpcHRhYmxlcz8gIFNvIHRo YXQgaXQgc2F5cyAiUHJvZ3JhbXMgdG8gY29uZmlndXJlIExpbnV4IElQIHBhY2tldA0KPiBmaWx0 ZXJpbmcgcnVsZXMgKG5mdGFibGVzIEFQSSkiLg0KDQpJIHVzZWQgdGhpcyBmb3Igc3lub3BzaXMg YW5kIGFwcGxpZWQgdGhlIHBhdGNoIGFzDQo2ODg0NzcwNDY0YmQ5YmE5NWMxYTVjY2YxMGJmNTBk MTg2YTIyMGQ1Lg0K From unknown Sun Aug 10 16:48:33 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 17 Jan 2024 12:24:06 +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