From unknown Mon Jun 23 04:10: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#53708 <53708@debbugs.gnu.org> To: bug#53708 <53708@debbugs.gnu.org> Subject: Status: [PATCH] Fix Elixir substitution error Reply-To: bug#53708 <53708@debbugs.gnu.org> Date: Mon, 23 Jun 2025 11:10:45 +0000 retitle 53708 [PATCH] Fix Elixir substitution error reassign 53708 guix-patches submitter 53708 Cees de Groot severity 53708 normal tag 53708 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 01 14:17:28 2022 Received: (at submit) by debbugs.gnu.org; 1 Feb 2022 19:17:28 +0000 Received: from localhost ([127.0.0.1]:44141 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nEyee-00009h-H0 for submit@debbugs.gnu.org; Tue, 01 Feb 2022 14:17:28 -0500 Received: from lists.gnu.org ([209.51.188.17]:41682) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nEyed-00009T-0Q for submit@debbugs.gnu.org; Tue, 01 Feb 2022 14:17:27 -0500 Received: from eggs.gnu.org ([209.51.188.92]:57454) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nEyeb-00029X-L8 for guix-patches@gnu.org; Tue, 01 Feb 2022 14:17:26 -0500 Received: from mail-4323.proton.ch ([185.70.43.23]:26718) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nEyeR-0000UG-Aa for guix-patches@gnu.org; Tue, 01 Feb 2022 14:17:21 -0500 Date: Tue, 01 Feb 2022 19:16:52 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=evrl.com; s=protonmail3; t=1643743014; bh=18kzYsG6VFp6TKnmHNt9Nbu93E4qkc17ZhNKhi69L80=; h=Date:To:From:Reply-To:Subject:Message-ID:From:To:Cc; b=Futx7RGU7ZI9zihGLEHXByrbLeYYCDdUNS26F462jyfSbdB2kOqDhDGz2onNkTOJ1 wGtLxhkPgwoeuvMQeYn5MXzCviAKP8rR4AxcNpfY3uT60vLYBPwDFgkd04RWKeW4yl 3m8+vjq3QPIYcrmRHsQ2Ah2bx1n5QUbaJbJRi0bA34Gzl5CjAZOCGRv9sYZTHo5SNg YyjgWrQCZXdYIAHgz+fxjT9wpYeUlV/Z6ki7GDAfQVgvIb6jj0zPcZUbQZFq7lU1gA ni7uizZu7v+mJfaY88V3u+0+o45eOBLIaVks0QvzBmtAMnAwOAzLhYGFWU1cXbZAB1 lVabkgNwOp+EA== To: "guix-patches@gnu.org" From: Cees de Groot Subject: [PATCH] Fix Elixir substitution error Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch Received-SPF: pass client-ip=185.70.43.23; envelope-from=cg@evrl.com; helo=mail-4323.proton.ch 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.3 (-) X-Debbugs-Envelope-To: submit 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: , Reply-To: Cees de Groot Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) >From d9860a374c5b6e5b992439a232e6897bfde1e334 Mon Sep 17 00:00:00 2001 From: Cees de Groot Date: Tue, 1 Feb 2022 14:12:17 -0500 Subject: [PATCH] Fix regex for ERTS_BIN substitution in Elixir Something must have gone wrong during testing of the ELixir 1.13.2 patch I = submitted last week. Apart from #53707, I also found out that the whole sub= stitution regex did not work. This works better - it is still more brittle = than I like, but apparently `substitute*` does not work with fully anchored regexes. --- gnu/packages/elixir.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/elixir.scm b/gnu/packages/elixir.scm index fae8279e5c..55e17f2901 100644 --- a/gnu/packages/elixir.scm +++ b/gnu/packages/elixir.scm @@ -70,7 +70,7 @@ (define-public elixir (("#!/bin/sh") (string-append "#!" (search-input-file inputs "/bin/sh"))= )) (substitute* "bin/elixir" - (("^ERTS_BIN=3D$") + (("ERTS_BIN=3D\n") (string-append "ERTS_BIN=3D" ;; Elixir Releases will prepend to ERTS_BIN the path of -- 2.34.0 From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 14 08:36:48 2022 Received: (at control) by debbugs.gnu.org; 14 Feb 2022 13:36:48 +0000 Received: from localhost ([127.0.0.1]:40249 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nJbX6-0007nq-6M for submit@debbugs.gnu.org; Mon, 14 Feb 2022 08:36:48 -0500 Received: from hera.aquilenet.fr ([185.233.100.1]:40182) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nJbX4-0007nc-9d for control@debbugs.gnu.org; Mon, 14 Feb 2022 08:36:46 -0500 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id CA0ECB5A for ; Mon, 14 Feb 2022 14:36:40 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XqRWRTWC1iYd for ; Mon, 14 Feb 2022 14:36:40 +0100 (CET) Received: from ribbon (91-160-117-201.subs.proxad.net [91.160.117.201]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 418B4B50 for ; Mon, 14 Feb 2022 14:36:40 +0100 (CET) Date: Mon, 14 Feb 2022 14:36:39 +0100 Message-Id: <877d9xy3h4.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #53708 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spamd-Bar: / Authentication-Results: hera.aquilenet.fr; none X-Rspamd-Server: hera X-Rspamd-Queue-Id: CA0ECB5A X-Spamd-Result: default: False [0.61 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[control@debbugs.gnu.org]; RCPT_COUNT_ONE(0.00)[1]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; R_MIXED_CHARSET(0.71)[subject]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[]; MID_RHS_MATCH_FROM(0.00)[] X-Spam-Score: 1.0 (+) 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: -0.0 (/) merge 53708 53708 quit From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 14 08:37:05 2022 Received: (at control) by debbugs.gnu.org; 14 Feb 2022 13:37:05 +0000 Received: from localhost ([127.0.0.1]:40257 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nJbXN-0007pK-Bx for submit@debbugs.gnu.org; Mon, 14 Feb 2022 08:37:05 -0500 Received: from hera.aquilenet.fr ([185.233.100.1]:40222) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nJbXL-0007o8-M4 for control@debbugs.gnu.org; Mon, 14 Feb 2022 08:37:03 -0500 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 482F9566 for ; Mon, 14 Feb 2022 14:36:58 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9mHEQn7uLbxg for ; Mon, 14 Feb 2022 14:36:57 +0100 (CET) Received: from ribbon (91-160-117-201.subs.proxad.net [91.160.117.201]) by hera.aquilenet.fr (Postfix) with ESMTPSA id C73E0292 for ; Mon, 14 Feb 2022 14:36:57 +0100 (CET) Date: Mon, 14 Feb 2022 14:36:57 +0100 Message-Id: <875yphy3gm.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #53708 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spamd-Bar: / Authentication-Results: hera.aquilenet.fr; none X-Rspamd-Server: hera X-Rspamd-Queue-Id: 482F9566 X-Spamd-Result: default: False [0.61 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[control@debbugs.gnu.org]; RCPT_COUNT_ONE(0.00)[1]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; R_MIXED_CHARSET(0.71)[subject]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[]; MID_RHS_MATCH_FROM(0.00)[] X-Spam-Score: 1.0 (+) 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: -0.0 (/) merge 53708 53643 quit From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 14 09:51:25 2022 Received: (at 53708-done) by debbugs.gnu.org; 14 Feb 2022 14:51:25 +0000 Received: from localhost ([127.0.0.1]:40441 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nJchJ-00029h-8E for submit@debbugs.gnu.org; Mon, 14 Feb 2022 09:51:25 -0500 Received: from hera.aquilenet.fr ([185.233.100.1]:42104) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nJchH-00029S-68 for 53708-done@debbugs.gnu.org; Mon, 14 Feb 2022 09:51:24 -0500 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id B98F4566; Mon, 14 Feb 2022 15:51:16 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ma93XMbZiMB7; Mon, 14 Feb 2022 15:51:16 +0100 (CET) Received: from ribbon (unknown [IPv6:2a01:e0a:1d:7270:af76:b9b:ca24:c465]) by hera.aquilenet.fr (Postfix) with ESMTPSA id D645E2D0; Mon, 14 Feb 2022 15:51:15 +0100 (CET) From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Cees de Groot Subject: Re: bug#53708: [PATCH] Fix Elixir substitution error References: Date: Mon, 14 Feb 2022 15:51:15 +0100 In-Reply-To: (Cees de Groot's message of "Tue, 01 Feb 2022 19:16:52 +0000") Message-ID: <87wnhxwlgc.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spamd-Bar: / Authentication-Results: hera.aquilenet.fr; none X-Rspamd-Server: hera X-Rspamd-Queue-Id: B98F4566 X-Spamd-Result: default: False [-0.10 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCPT_COUNT_TWO(0.00)[2]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[]; MID_RHS_MATCH_FROM(0.00)[] X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 53708-done Cc: 53708-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: -0.0 (/) Hi, Cees de Groot skribis: >>>From d9860a374c5b6e5b992439a232e6897bfde1e334 Mon Sep 17 00:00:00 2001 > From: Cees de Groot > Date: Tue, 1 Feb 2022 14:12:17 -0500 > Subject: [PATCH] Fix regex for ERTS_BIN substitution in Elixir > > Something must have gone wrong during testing of the ELixir 1.13.2 patch = I submitted last week. Apart from #53707, I also found out that the whole s= ubstitution regex did not work. This works better - it is still more brittl= e than I like, but apparently `substitute*` > does not work with fully anchored regexes. I adjusted the commit log and applied it. Thanks! Ludo=E2=80=99. From unknown Mon Jun 23 04:10: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: Tue, 15 Mar 2022 11:24:05 +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