From debbugs-submit-bounces@debbugs.gnu.org Sat Sep 14 22:49:05 2024 Received: (at submit) by debbugs.gnu.org; 15 Sep 2024 02:49:05 +0000 Received: from localhost ([127.0.0.1]:48071 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1spfJw-0001cn-Ki for submit@debbugs.gnu.org; Sat, 14 Sep 2024 22:49:04 -0400 Received: from lists.gnu.org ([209.51.188.17]:44746) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1spfJu-0001cS-98 for submit@debbugs.gnu.org; Sat, 14 Sep 2024 22:49:03 -0400 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 1spfJh-00070l-0Q for guix-patches@gnu.org; Sat, 14 Sep 2024 22:48:50 -0400 Received: from layka.disroot.org ([178.21.23.139]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1spfJe-00049D-8P for guix-patches@gnu.org; Sat, 14 Sep 2024 22:48:48 -0400 Received: from mail01.disroot.lan (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 28C5B233CF; Sun, 15 Sep 2024 04:48:43 +0200 (CEST) X-Virus-Scanned: SPAM Filter at disroot.org Received: from layka.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavis, port 10024) with ESMTP id zhQTNKHDTp3k; Sun, 15 Sep 2024 04:48:42 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=aartaka.me; s=mail; t=1726368522; bh=iKs00i2KuMeP42xbsUuhZrpOQYeupBeXe0kArxFLROs=; h=From:To:Subject:Date; b=W6deKXZ9q0Qj3DaWKtcjzJaQ7BL7nAKWAaOWiqKCvXcHDoNouv/G+/JcnIccTNUdy CovFa6pSL1eWyb5jLyTJhxm42BmSOrdHVVQK8fHcSwHr2eWP80lE2noptxrvosBBu0 GsDvLBfUCe5XBdLcZECAKX/fwxGzlF9yNSb+RGUT8l5XVnrsTQtVniAyUAKOdGrkau RDAewwHsjDE1lMiF/dHa/eKr9/ND2CepT8nL3m/bWQ3rhTBb8pelNHU6OELOhlMnMo 1QSKSbGT9/lYYCbFpL9uX5tuGsP3fLB1R2OEkOHKEt04F8caLVNSIusidsvQiXACm0 GJvvqc7dJYlqw== From: Artyom Bologov To: Guix Patches Subject: [PATCH] gnu: openblas: Add debug output. Date: Sun, 15 Sep 2024 06:48:38 +0400 Message-ID: <87jzfdskc9.fsf@aartaka.me> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Received-SPF: none client-ip=178.21.23.139; envelope-from=mail@aartaka.me; helo=layka.disroot.org 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, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.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: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain Hi y'all, This patch adds a debug output to OpenBLAS and adjusts build flags accordingly. The final non-debug build is likely unaffected by DEBUG=1, because Guix strips the debug symbols out anyway. Note that this change likely requires checking the CI for the package, like with bug #73058. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-openblas-Add-debug-output.patch Content-Description: Add debug output to OpenBLAS >From 1cd8da82659bf9d369201135c86717d2ea40d7ca Mon Sep 17 00:00:00 2001 From: Artyom Bologov Date: Sun, 15 Sep 2024 06:42:29 +0400 Subject: [PATCH] gnu: openblas: Add debug output. * gnu/packages/maths.scm (openblas): Add "debug" output [outputs]: Add argument, add "debug" output [arguments]<#:make-flags>: Add DEBUG=1 flag --- gnu/packages/maths.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index a0cc0788ca..2d5b239548 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -5173,6 +5173,7 @@ (define-public openblas #:make-flags #~(list (string-append "PREFIX=" #$output) "SHELL=bash" + "DEBUG=1" ; enable debug symbols "MAKE_NB_JOBS=0" ;use jobserver for submakes "NO_STATIC=1" ;avoid a 67 MiB static archive @@ -5225,6 +5226,7 @@ (define-public openblas (list `(,gfortran "lib"))) (native-inputs (list cunit gfortran perl)) + (outputs '("out" "debug")) (home-page "https://www.openblas.net/") (synopsis "Optimized BLAS library based on GotoBLAS") (description -- 2.41.0 --=-=-= Content-Type: text/plain Thanks, -- Artyom Bologov https://aartaka.me --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 01 13:44:55 2025 Received: (at 73262) by debbugs.gnu.org; 1 Apr 2025 17:44:55 +0000 Received: from localhost ([127.0.0.1]:50998 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tzffT-0002nI-1P for submit@debbugs.gnu.org; Tue, 01 Apr 2025 13:44:55 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:36612) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tzffQ-0002lz-7i for 73262@debbugs.gnu.org; Tue, 01 Apr 2025 13:44:52 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 6512C1F4; Tue, 1 Apr 2025 19:44:45 +0200 (CEST) Authentication-Results: hera.aquilenet.fr; none X-Virus-Scanned: Debian amavis at hera.aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavis, port 10024) with ESMTP id Li_534aISdvZ; Tue, 1 Apr 2025 19:44:44 +0200 (CEST) Received: from jurong (176-179-191-150.abo.bbox.fr [176.179.191.150]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 795FF303; Tue, 1 Apr 2025 19:44:37 +0200 (CEST) Date: Tue, 1 Apr 2025 19:44:29 +0200 From: Andreas Enge To: Artyom Bologov Subject: Re: [PATCH] gnu: openblas: Add debug output. Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Rspamd-Queue-Id: 6512C1F4 X-Spamd-Result: default: False [4.90 / 15.00]; SPAM_FLAG(5.00)[]; BAYES_HAM(-3.00)[100.00%]; SUSPICIOUS_RECIPS(1.50)[]; FAKE_REPLY(1.00)[]; MID_RHS_NOT_FQDN(0.50)[]; MIME_GOOD(-0.10)[text/plain]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; RCPT_COUNT_FIVE(0.00)[5]; ARC_NA(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; TAGGED_RCPT(0.00)[]; FROM_HAS_DN(0.00)[]; FREEMAIL_ENVRCPT(0.00)[gmail.com]; TO_DN_SOME(0.00)[]; FREEMAIL_CC(0.00)[debbugs.gnu.org,gmail.com,elephly.net] X-Spam-Level: **** X-Rspamd-Action: no action X-Spamd-Bar: ++++ X-Rspamd-Server: hera X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 73262 Cc: rekado@elephly.net, zimon.toutoune@gmail.com, laurent.gatto@gmail.com, 73262@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: -1.0 (-) Hello Artyom, your patch looks good and still applies; I am building the package right now. We have three openblases in Guix: - openblas, aka openblas@0.3.29, has no dependents, which surprised me, until I found - openblas@0.3.20 with 8824 depending packages. - openblas-ilp64 is a 64 bit version with 331 depending packages (all julia unless I overlooked any). Many of the 8824 depending packages come from R, but there are many more. So I am cc-ing the R team; do you think it would make sense to add this commit to your r-team branch? Or maybe I can try to run a science-team update at some point in time, there is also an fftw patch and a bc patch to apply with lots of rebuilds. Andreas From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 01 14:15:48 2025 Received: (at 73262) by debbugs.gnu.org; 1 Apr 2025 18:15:49 +0000 Received: from localhost ([127.0.0.1]:51097 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tzg9M-0006zA-DF for submit@debbugs.gnu.org; Tue, 01 Apr 2025 14:15:48 -0400 Received: from sender4-of-o51.zoho.com ([136.143.188.51]:21173) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tzg9I-0006yR-NU for 73262@debbugs.gnu.org; Tue, 01 Apr 2025 14:15:45 -0400 ARC-Seal: i=1; a=rsa-sha256; t=1743531337; cv=none; d=zohomail.com; s=zohoarc; b=BEFyPiIL5ujAuAwu4lEXHf27vw95GUpCNsVZ5S079VAjdSM2/wG2s0Be12cKWqfrOx7BipamO0eFZni1JAA9jeffnYNfqAYZ8v4feCVWMP7fbkhZL8ptl/8gkYPugH79ghh5qCxzfNORRlVOHgCpVTqzNw0sUTFEo0LQEVM1jdo= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1743531337; h=Content-Type:Cc:Cc:Date:Date:From:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:Subject:To:To:Message-Id:Reply-To; bh=XjM/9C6zvV0AsGCr5TDPlcLG7Ujhx+BECPQYHelBy8c=; b=l3gQcrogtt5SblPKQbr+wuwMfhRgnBjCxUBBRGX4iFaJFJiA/mWQCjJmW7pk10bIgUlo+A+LZYu9Z+tWsXCT+u08oBjjMoTc/velkwLJsU1BZHLhsTvAIHm7YcX4jncGcLnn9Gic4GuFutp2zOEkg3uZpaQW6c2rphD3WIbOpEY= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=elephly.net; spf=pass smtp.mailfrom=rekado@elephly.net; dmarc=pass header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1743531337; s=zoho; d=elephly.net; i=rekado@elephly.net; h=From:From:To:To:Cc:Cc:Subject:Subject:In-Reply-To:References:Date:Date:Message-ID:MIME-Version:Content-Type:Message-Id:Reply-To; bh=XjM/9C6zvV0AsGCr5TDPlcLG7Ujhx+BECPQYHelBy8c=; b=WdxW78+SNPNjnrt47jpt1ml8xvgXBQO8PTeIK9bzlhm4X7P3vW1bQclp88IjSRc0 1Rz412vKvYV+Epf2FqcGhLVLHPrsIbOb4NKeCy454DUljOLPy6piusK6ulhjqp0wvdb DvAoYRT7Yla8ZpBTvZme8vM9k9a1oDRYaLnDhF6g= Received: by mx.zohomail.com with SMTPS id 1743531333259864.4950656914626; Tue, 1 Apr 2025 11:15:33 -0700 (PDT) From: Ricardo Wurmus To: Andreas Enge Subject: Re: [PATCH] gnu: openblas: Add debug output. In-Reply-To: (Andreas Enge's message of "Tue, 1 Apr 2025 19:44:29 +0200") References: User-Agent: mu4e 1.12.9; emacs 29.4 Date: Tue, 01 Apr 2025 20:15:29 +0200 Message-ID: <87zfgzeoji.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; format=flowed X-ZohoMailClient: External X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 73262 Cc: 73262@debbugs.gnu.org, zimon.toutoune@gmail.com, laurent.gatto@gmail.com, Artyom Bologov 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 (-) Andreas Enge writes: > So I am cc-ing the R team; do you think it would make sense to > add this > commit to your r-team branch? Yes, on the r-team branch we're updating the default openblas, so all dependents of openblas are rebuilt anyway. -- Ricardo From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 01 15:33:30 2025 Received: (at 73262) by debbugs.gnu.org; 1 Apr 2025 19:33:30 +0000 Received: from localhost ([127.0.0.1]:51404 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tzhMX-0003Wo-MA for submit@debbugs.gnu.org; Tue, 01 Apr 2025 15:33:29 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:37846) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tzhMW-0003Vo-2c for 73262@debbugs.gnu.org; Tue, 01 Apr 2025 15:33:28 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 50FDB55; Tue, 1 Apr 2025 21:33:20 +0200 (CEST) Authentication-Results: hera.aquilenet.fr; none X-Virus-Scanned: Debian amavis at hera.aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavis, port 10024) with ESMTP id 6mqaffaxFO85; Tue, 1 Apr 2025 21:33:19 +0200 (CEST) Received: from jurong (176-179-191-150.abo.bbox.fr [176.179.191.150]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 0B35E448; Tue, 1 Apr 2025 21:33:07 +0200 (CEST) Date: Tue, 1 Apr 2025 21:32:57 +0200 From: Andreas Enge To: Ricardo Wurmus Subject: Re: [PATCH] gnu: openblas: Add debug output. Message-ID: References: <87zfgzeoji.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <87zfgzeoji.fsf@elephly.net> X-Rspamd-Queue-Id: 50FDB55 X-Spamd-Result: default: False [3.90 / 15.00]; SPAM_FLAG(5.00)[]; BAYES_HAM(-3.00)[99.99%]; SUSPICIOUS_RECIPS(1.50)[]; MID_RHS_NOT_FQDN(0.50)[]; MIME_GOOD(-0.10)[text/plain]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; ARC_NA(0.00)[]; RCVD_TLS_ALL(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; RCPT_COUNT_FIVE(0.00)[5]; TAGGED_RCPT(0.00)[]; FREEMAIL_ENVRCPT(0.00)[gmail.com]; RCVD_VIA_SMTP_AUTH(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; FREEMAIL_CC(0.00)[aartaka.me,debbugs.gnu.org,gmail.com] X-Spam-Level: *** X-Rspamd-Action: no action X-Spamd-Bar: +++ X-Rspamd-Server: hera X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 73262 Cc: 73262@debbugs.gnu.org, zimon.toutoune@gmail.com, laurent.gatto@gmail.com, Artyom Bologov 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 (-) Am Tue, Apr 01, 2025 at 08:15:29PM +0200 schrieb Ricardo Wurmus: > Yes, on the r-team branch we're updating the default openblas, so all > dependents of openblas are rebuilt anyway. Excellent, thanks! I can confirm that the package builds on x86_64; I did not test the patch anywhere else. Andreas From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 02 04:37:11 2025 Received: (at 73262-done) by debbugs.gnu.org; 2 Apr 2025 08:37:12 +0000 Received: from localhost ([127.0.0.1]:54581 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tztax-000687-77 for submit@debbugs.gnu.org; Wed, 02 Apr 2025 04:37:11 -0400 Received: from sender4-of-o51.zoho.com ([136.143.188.51]:21150) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tztau-00067M-0y for 73262-done@debbugs.gnu.org; Wed, 02 Apr 2025 04:37:09 -0400 ARC-Seal: i=1; a=rsa-sha256; t=1743583023; cv=none; d=zohomail.com; s=zohoarc; b=cnqJRCUX5p5PotrvGphj9Ijfoy5Xue0ElQfo8QxYFwWMlgL3rDX2Le5Xd2VpGOgfGm0JIH5j1ZQyNJKqm+gR+DK7q0bmJZVZ68pWO3cM4GerQtRuTqLYL0XBl8+yvweWjB4GckAVAJOMgGjx8+XdfSNh69Ji9ZOmFjfL6qh4ZKE= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1743583023; h=Content-Type:Cc:Cc:Date:Date:From:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:Subject:To:To:Message-Id:Reply-To; bh=8MJG677L01BcMYW+HpIaU2BH2zei8H5S+qfuKoBW/uM=; b=U5XFC5gfTUL28+eHN74ddMvkJb96U0QFXLdcM/iAosRBDQuvZ9QPFBw08JgUuYzdhF3xmayRdJrHRiJK0GxtrWLCY+kpsIMC3+9Tx9Qu0rGCUa3tvxW7itE+j41OuD1tKNIgLAY1kJrrzsT21tWsMsoXGBTavjya/wlfxNpiYGQ= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=elephly.net; spf=pass smtp.mailfrom=rekado@elephly.net; dmarc=pass header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1743583023; s=zoho; d=elephly.net; i=rekado@elephly.net; h=From:From:To:To:Cc:Cc:Subject:Subject:In-Reply-To:References:Date:Date:Message-ID:MIME-Version:Content-Type:Message-Id:Reply-To; bh=8MJG677L01BcMYW+HpIaU2BH2zei8H5S+qfuKoBW/uM=; b=STRfG0ghA6mg+fXpyeHPCzB2XsVtQjdeUWRGKyeciGGYW7N6Ehh8tp7T3TeouEuu bsZJyGUQJxUOY6OP+r9jcOlDpxaVlwuKic3YXZUMrrDp8UoPmtxzCpiXCeDG3WVUUcS xcy5qjDLP1I0AspGg8Yh9f3YdQkZxHNKYQfCLS8s= Received: by mx.zohomail.com with SMTPS id 1743583020823376.8122104053368; Wed, 2 Apr 2025 01:37:00 -0700 (PDT) From: Ricardo Wurmus To: Andreas Enge Subject: Re: [PATCH] gnu: openblas: Add debug output. In-Reply-To: (Andreas Enge's message of "Tue, 1 Apr 2025 21:32:57 +0200") References: <87zfgzeoji.fsf@elephly.net> User-Agent: mu4e 1.12.9; emacs 29.4 Date: Wed, 02 Apr 2025 10:36:57 +0200 Message-ID: <871pubdknq.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; format=flowed X-ZohoMailClient: External X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 73262-done Cc: 73262-done@debbugs.gnu.org, zimon.toutoune@gmail.com, laurent.gatto@gmail.com, Artyom Bologov 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 (-) Andreas Enge writes: > Am Tue, Apr 01, 2025 at 08:15:29PM +0200 schrieb Ricardo Wurmus: >> Yes, on the r-team branch we're updating the default openblas, >> so all >> dependents of openblas are rebuilt anyway. > > Excellent, thanks! > > I can confirm that the package builds on x86_64; I did not test > the > patch anywhere else. I've applied it on top of the rebased r-team branch with commit f05ee6c81556f86c477e84404c7b276f09a24568. (The commit id will change several more times as the r-team branch waits in the queue.) -- Ricardo From unknown Sat Jun 21 03:14:32 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, 30 Apr 2025 11:24:15 +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