From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 05 16:03:23 2024 Received: (at submit) by debbugs.gnu.org; 5 Sep 2024 20:03:24 +0000 Received: from localhost ([127.0.0.1]:38293 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1smIhP-0005lA-Dj for submit@debbugs.gnu.org; Thu, 05 Sep 2024 16:03:23 -0400 Received: from lists.gnu.org ([209.51.188.17]:33168) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1smIhN-0005kb-On for submit@debbugs.gnu.org; Thu, 05 Sep 2024 16:03:22 -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 1smIBW-0003v1-Ra for guix-patches@gnu.org; Thu, 05 Sep 2024 15:30:28 -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 1smIBV-0002Fb-3s for guix-patches@gnu.org; Thu, 05 Sep 2024 15:30:26 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 51C6A44D53; Thu, 5 Sep 2024 21:30:21 +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]) (amavisd-new, port 10024) with ESMTP id ewDCaHHgu_MJ; Thu, 5 Sep 2024 21:30:18 +0200 (CEST) From: Artyom Bologov DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=aartaka.me; s=mail; t=1725564513; bh=BIKCUigfghUVyr+2Kzl7kP9F/Z3wUdl08rFatEQbEsA=; h=From:To:Subject:Date; b=Frq/kGXEzho788uAdeot2/DKZVHmGH92hgzK2kALzGAYy9IJ3Soh6ZRtgf3+cgLkU vC4WTe8RL+Edh54IgL5keswyz2UrlTh+alqtn34FkXAf5hAu5vBka5+sVaFNT+6NPw dHgjdbU15AL+109GP3ovpyi3T86zAho7hpFO2cNerTnthSZn0qNkcV5Mil1QUPsB5o /Tf7Nq3xTClzhjQdlSSpnQZZ5RXN6Jh9sXvTm9u4k0puhf7Xf38S3PWpo510PeMexf 0z3oHdB26igr8lMfWkDlgzfr/kr38pRAhERAnLK9PlU1ZWUX3g5ia2DrLe60qiWhIL jTwfXP90MYEVA== To: Guix Patches Subject: [PATCH] gnu: gsl: Add debug output. Date: Thu, 05 Sep 2024 23:28:17 +0400 Message-ID: <875xr9ew8e.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, SPF_HELO_NONE=0.001, SPF_NONE=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 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 Hello Guix, This patch adds a debug output for GSL. Encountered the absence of debug output while debugging a GSL-reliant program. Tested, produces the proper debugging file with the right symbols. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-gsl-Add-debug-output.patch Content-Description: Add debug output to GSL >From c8e5967de674c5eec61f9686902ea6fe568531bf Mon Sep 17 00:00:00 2001 From: Artyom Bologov Date: Thu, 5 Sep 2024 23:24:28 +0400 Subject: [PATCH] gnu: gsl: Add debug output. * gnu/packages/maths.scm (gsl)[outputs]: Add "debug". --- gnu/packages/maths.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 2fe64d4aee..92244ed5f8 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -725,7 +725,7 @@ (define-public gsl (sha256 (base32 "0jxkxrnpys2j3rh8bzx0bmnh4w6xm28jd57rgxsjp0s863agpc6w")))) - (outputs '("out" "static")) + (outputs '("out" "static" "debug")) (build-system gnu-build-system) (arguments (list ;; FIXME: Setting CFLAGS=-fPIC is not only unnecessary, it's also -- 2.41.0 --=-=-= Content-Type: text/plain Thanks, -- Artyom Bologov https://aartaka.me --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 05 20:14:47 2024 Received: (at 73058-done) by debbugs.gnu.org; 6 Sep 2024 00:14:47 +0000 Received: from localhost ([127.0.0.1]:38649 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1smMch-00060U-2d for submit@debbugs.gnu.org; Thu, 05 Sep 2024 20:14:47 -0400 Received: from mx1.dismail.de ([78.46.223.134]:20530) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1smMce-00060C-LR for 73058-done@debbugs.gnu.org; Thu, 05 Sep 2024 20:14:45 -0400 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 7d443f46; Fri, 6 Sep 2024 02:13:31 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h= mime-version:date:content-type:content-transfer-encoding:from :message-id:subject:to:cc; s=20190914; bh=QHpp+pIu6wr6HGZtuAKX+q 7JQzjHOGY5Y5sNgGtKxb8=; b=s+qReBtteu2ABrIxlHcMGqrBYgAWnWJU8g/eNO Vy3i5Un/NjCQQDF3lQwUk/G4QoWghjWj2OnAsOH7vS3WSU0GN2Ldg9pkeDDJpnvT C0juqJCr1QOMFKjyX6qAhApi7jGTwBn/glOgDPdUZNr9FDwIZgsgTA+hZNrEjMY9 XoviEMLzTMAwW3pI22RlCNwk1kS55xUUuX1UwCUrzebIinAUp+uVtJQJbvLZKzNx pdQoTMMZ0arNIogiCDPMuvC8dK3FagvotC/eVtzu0vNqMXK/DZKWCubkRjxJEARA jeaK54OISF6agfhNYGb18C3elWFb3VgF+i/qA1e4cPNswHmw== Received: from smtp2.dismail.de ( [10.240.26.12]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 6815864e; Fri, 6 Sep 2024 02:13:30 +0200 (CEST) Received: from smtp2.dismail.de (localhost [127.0.0.1]) by smtp2.dismail.de (OpenSMTPD) with ESMTP id 49b3fd5d; Fri, 6 Sep 2024 02:13:30 +0200 (CEST) Received: by dismail.de (OpenSMTPD) with ESMTPSA id cc663f40 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Fri, 6 Sep 2024 02:13:29 +0200 (CEST) MIME-Version: 1.0 Date: Fri, 06 Sep 2024 00:13:28 +0000 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: "jgart" Message-ID: <1d8535123292a4db1821bfd74a0e36b4083e56fb@dismail.de> TLS-Required: No Subject: Re: [PATCH] gnu: gsl: Add debug output. To: 73058-done@debbugs.gnu.org X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 73058-done Cc: 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.7 (-) LGTM! all the best, jgart https://whereis.xn--q9jyb4c/ From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 05 22:34:55 2024 Received: (at 73058) by debbugs.gnu.org; 6 Sep 2024 02:34:55 +0000 Received: from localhost ([127.0.0.1]:38709 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1smOoI-0005rK-MP for submit@debbugs.gnu.org; Thu, 05 Sep 2024 22:34:55 -0400 Received: from mail-41104.protonmail.ch ([185.70.41.104]:21089) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1smOoG-0005r2-Ro for 73058@debbugs.gnu.org; Thu, 05 Sep 2024 22:34:54 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1725589694; x=1725848894; bh=j4t778OlUMLHdIl1AdPF6NQ0c8je21vuy7KRvvekwNs=; h=Date:To:From:Cc:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=Mzd2Rb6IrftLI8DFO7694w2+BkKvFd8WKsCUtigL+J2crhc/YnstEhpJSRKhScB/J A/Pkem4UhXClLUK/MqlSQ30SA7kBW+gzcIUapW4UbrIQ031FPFVJR5TLRftPzl9FOo l0UaVKsRHArjwoAKgqGHORlC1sDj3jnsfBbh5Iukxno+eXGyf68RYeu9fKEjFCXc5v XoJyjSKDIf5oGIB7FNM1C3iZCb/tO6NGr+i0MJXLpNl2Mbs1v1zlmISGB61asLcxTL HMy8TmpDI+tVD7b1yesJc+Q0JcQcvGhJhOau5bwBDaxEtl5RByzO2Yj3uw4wPWWqbW 2b5VO+g/Zu3xg== Date: Fri, 06 Sep 2024 02:28:08 +0000 To: jgart From: John Kehayias Subject: Re: bug#73058: closed (Re: [PATCH] gnu: gsl: Add debug output.) Message-ID: <87le05ldn1.fsf@protonmail.com> Feedback-ID: 7805494:user:proton X-Pm-Message-ID: ebad243695a273a52504e12911be7103b1e5dbaa MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 73058 Cc: 73058@debbugs.gnu.org, 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 (-) Hello, On Fri, Sep 06, 2024 at 12:15 AM, GNU bug Tracking System wrote: > Your bug report > > #73058: [PATCH] gnu: gsl: Add debug output. > > which was filed against the guix-patches package, has been closed. > > The explanation is attached below, along with your original report. > If you require more details, please reply to 73058@debbugs.gnu.org. > > -- > 73058: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D73058 > GNU Bug Tracking System > Contact help-debbugs@gnu.org with problems > > From: "jgart" > Subject: Re: [PATCH] gnu: gsl: Add debug output. > To: 73058-done@debbugs.gnu.org > Cc: Artyom Bologov > Date: Fri, 06 Sep 2024 00:13:28 +0000 (2 hours, 12 minutes, 9 seconds ago= ) > > LGTM! > > all the best, > > jgart > > https://whereis.xn--q9jyb4c/ > Did you mean to push this to master? I see a lot of rebuilds on Cuirass. Though perhaps a good chunk done by now. If it needs to be reverted (I wasn't sure), we could take it (and an update?) on mesa-updates or maybe gnome-team if they are quicker? John > ---------- > > From: Artyom Bologov > Subject: [PATCH] gnu: gsl: Add debug output. > To: Guix Patches > Date: Thu, 05 Sep 2024 23:28:17 +0400 > Date: Thu, 05 Sep 2024 23:28:17 +0400 (6 hours, 57 minutes, 20 seconds ag= o) > > Hello Guix, > > This patch adds a debug output for GSL. Encountered the absence of debug > output while debugging a GSL-reliant program. Tested, produces the > proper debugging file with the right symbols. > > > > Thanks, From unknown Tue Aug 19 01:10:52 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: Did not alter fixed versions and reopened. Date: Fri, 06 Sep 2024 07:06:02 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # Did not alter fixed versions and reopened. thanks # This fakemail brought to you by your local debbugs # administrator From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 06 03:05:05 2024 Received: (at control) by debbugs.gnu.org; 6 Sep 2024 07:05:05 +0000 Received: from localhost ([127.0.0.1]:39012 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1smT1l-00054b-7X for submit@debbugs.gnu.org; Fri, 06 Sep 2024 03:05:05 -0400 Received: from eggs.gnu.org ([209.51.188.92]:39850) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1smT1j-00053z-Uc for control@debbugs.gnu.org; Fri, 06 Sep 2024 03:05:04 -0400 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 1smT0a-0004eU-HG for control@debbugs.gnu.org; Fri, 06 Sep 2024 03:03:52 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:Subject:From:To:Date:in-reply-to: references; bh=Uds1p/3KVtWmf0XsAaizJO8z5pv3q6OE43+dlGNq4Tk=; b=BaFebTDRBrEMxm Vz0Opf4jUuxl2VgjKf2ssoo7ol/9lGlsr+HccvNgGtnjEpZ4RJlGLJsyu9X+FcmjCEwNVBv5RFZNX fiSiOP7jD+iMLTFsOlNSgg+aMZ0w3aEvNA7PgrkpE5u7z4Fah/Ox6JsnypeoXQIGqnydDmJ1E+CHa UJreqHBJXxWf7WspKbipDr4DfgB28WseR7oBiXc8HhaQmGXxUY8eG8FV99Yro45dOBbQRRgvdMCL+ v7QTyCiCcY2KNgFhIxum1ZX3GBZxr4ONo+NkarPkaogzS8CYgnskhJPgcSKZh5xpUxj5mB03IcWKN 99oQAY4HAvGuLrcuztNQ==; Date: Fri, 06 Sep 2024 09:03:48 +0200 Message-Id: <87plph4623.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #73058 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit 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 (---) reopen 73058 tags 73058 - fixed patch quit From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 06 03:07:10 2024 Received: (at 73058) by debbugs.gnu.org; 6 Sep 2024 07:07:10 +0000 Received: from localhost ([127.0.0.1]:39019 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1smT3l-0005Hw-LG for submit@debbugs.gnu.org; Fri, 06 Sep 2024 03:07:10 -0400 Received: from eggs.gnu.org ([209.51.188.92]:43784) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1smT3j-0005HX-Nv for 73058@debbugs.gnu.org; Fri, 06 Sep 2024 03:07:08 -0400 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 1smT2X-00051s-Uw; Fri, 06 Sep 2024 03:05:55 -0400 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=ghGdv45jB4fQi9qzz1O7lNGO/Zj2pmr3XyVi8uS2rj0=; b=eC//CcYkKCliCblJzATs 1baQxejIj9IxnPgYNAKwCEvjIbISSd2G5XYqHk9RZ/FVL+QZCeruq09etusaRIMRkdBmgIHOerB4u SYvGt1ZzzeD6vumrnO+EzvuodFITdo7f0BcuhQB9rVVSF94esJlr+5kUJX0v7fpvkOE0Asem9ZmWm TqPsA8mhwkFyYMrlyLybfo/aslgNZOnsaRweDwdcO9OP8QXboDqkwNp6SZ2jeDDA3tx5FC5OKD+5u 7/OVivdyIPxPHPXWOw1yXhAghAYntuowXfo0vw7f/51HBdPyw042ilTetR4iv6oLYd6nAqUbH2O2V tzQ0sBPXte9QGA==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: John Kehayias Subject: Re: [bug#73058] closed (Re: [PATCH] gnu: gsl: Add debug output.) In-Reply-To: <87le05ldn1.fsf@protonmail.com> (John Kehayias's message of "Fri, 06 Sep 2024 02:28:08 +0000") References: <875xr9ew8e.fsf@aartaka.me> <87le05ldn1.fsf@protonmail.com> Date: Fri, 06 Sep 2024 09:05:49 +0200 Message-ID: <87jzfp45yq.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: 73058 Cc: jgart , 73058@debbugs.gnu.org, 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: -3.3 (---) Hi John and jgart, John Kehayias skribis: > On Fri, Sep 06, 2024 at 12:15 AM, GNU bug Tracking System wrote: [...] >> From: "jgart" >> Subject: Re: [PATCH] gnu: gsl: Add debug output. >> To: 73058-done@debbugs.gnu.org >> Cc: Artyom Bologov >> Date: Fri, 06 Sep 2024 00:13:28 +0000 (2 hours, 12 minutes, 9 seconds ag= o) >> >> LGTM! >> >> all the best, >> >> jgart >> >> https://whereis.xn--q9jyb4c/ >> > > Did you mean to push this to master? I see a lot of rebuilds on Cuirass. > Though perhaps a good chunk done by now. It=E2=80=99s a serious issue indeed: builders, in particular for Arm/RISC-V= /PPC, cannot be expected to catch up with such a change on =E2=80=98master=E2=80= =99. Please check out the rebuild scheduling policy, in this case for changes impacting 300+ packages: https://guix.gnu.org/manual/devel/en/html_node/Managing-Patches-and-Branc= hes.html In fact, we have more important changes to =E2=80=98gsl=E2=80=99 that were = noticed during =E2=80=98core-updates=E2=80=99 but delayed due to the important cost= of a rebuild; see 4d8382ab840300ffe2a364d0e2a27b8db3d04fab and the discussion at . > If it needs to be reverted (I wasn't sure), we could take it (and an > update?) on mesa-updates or maybe gnome-team if they are quicker? I was planning to have a gsl-specific branch, where we could have this patch too, and which could join a =E2=80=9Cmerge train=E2=80=9D with =E2=80= =98mesa-updates=E2=80=99 or similar. WDYT? So I reverted this commit in c4a2b99f7d06ef5676d4148410a3b734c286f7cb and canceled pending builds on ci.guix. Thanks, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 06 13:01:46 2024 Received: (at 73058) by debbugs.gnu.org; 6 Sep 2024 17:01:46 +0000 Received: from localhost ([127.0.0.1]:54105 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1smcLC-0003AK-4Z for submit@debbugs.gnu.org; Fri, 06 Sep 2024 13:01:46 -0400 Received: from mx1.dismail.de ([78.46.223.134]:19062) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1smcL9-0003A6-TD for 73058@debbugs.gnu.org; Fri, 06 Sep 2024 13:01:44 -0400 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id dc9c3689; Fri, 6 Sep 2024 19:01:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h= mime-version:date:content-type:content-transfer-encoding:from :message-id:subject:to:cc:in-reply-to:references; s=20190914; bh=VbFXD5I6hlLTfwCcvx+EMC+Vd6V4zlvYhum0QZG3boE=; b=YEskWU09TCej B0FpGB/9EbagI8pyottll3IGeuKbWS9Jc8+w+kBeadgBopYghTaiqIVM0bkdTypp N0Gco5y8DbT5mTrIUCO55RPw8t1L7+rVUrXKf1jhazfieVxQyIGYIJ7oLWnhlkWn 6NBNKYDCnDdRf4/vZ4pH2PSi+WgnH4P1RE5KCx544U471oNv9mNvgq2du6O60S08 P8Ye82ju1vcp8GIkOnnnWutcx4CLCV+5DNFyV6672n/1TNs7slu/MoGqG1TCANfe G7rQdWFZ7YNzXoDTw+jtfQDDUaCmZUd9/XKH1CIqK6sSGou6EWetUsPM/BQ5FW/O aBJcaREw1g== Received: from smtp2.dismail.de ( [10.240.26.12]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 602a7557; Fri, 6 Sep 2024 19:01:36 +0200 (CEST) Received: from smtp2.dismail.de (localhost [127.0.0.1]) by smtp2.dismail.de (OpenSMTPD) with ESMTP id dec60060; Fri, 6 Sep 2024 19:01:36 +0200 (CEST) Received: by dismail.de (OpenSMTPD) with ESMTPSA id 1c11e69c (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Fri, 6 Sep 2024 19:01:35 +0200 (CEST) MIME-Version: 1.0 Date: Fri, 06 Sep 2024 17:01:34 +0000 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: "jgart" Message-ID: TLS-Required: No Subject: Re: [bug#73058] closed (Re: [PATCH] gnu: gsl: Add debug output.) To: "=?utf-8?B?THVkb3ZpYyBDb3VydMOocw==?=" , "John Kehayias" In-Reply-To: <87jzfp45yq.fsf@gnu.org> References: <875xr9ew8e.fsf@aartaka.me> <87le05ldn1.fsf@protonmail.com> <87jzfp45yq.fsf@gnu.org> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 73058 Cc: 73058@debbugs.gnu.org, 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.7 (-) hi ludo, sorry for the disruption and thanks for reverting the commit. i didn't re= alize the amount of rebuilds that this would cause when i pushed it and i= forgot to run `guix refresh -l gsl` before pushing =F0=9F=A6=86 all the best, jgart https://whereis.=E3=81=BF=E3=82=93=E3=81=AA/ From debbugs-submit-bounces@debbugs.gnu.org Wed Dec 04 12:56:36 2024 Received: (at control) by debbugs.gnu.org; 4 Dec 2024 17:56:37 +0000 Received: from localhost ([127.0.0.1]:36744 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tItc4-0006ig-Lq for submit@debbugs.gnu.org; Wed, 04 Dec 2024 12:56:36 -0500 Received: from eggs.gnu.org ([209.51.188.92]:45368) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tItc2-0006iR-5M for control@debbugs.gnu.org; Wed, 04 Dec 2024 12:56:35 -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 1tItbw-0001fd-SB for control@debbugs.gnu.org; Wed, 04 Dec 2024 12:56:28 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:Subject:From:To:Date:in-reply-to: references; bh=pQOY3iN/kNQLi0Da0uTMDA5w3luN7Iw9Dy2qW06OgYU=; b=hyoN8itFsg/Uag mLjSflhf+1m9lJ869YXrYuFWaRReXWQdYp0soa3ABe6Tj4gvQTim0B4O0mviybj9GyMCV7jl00SGF YftNinLzyOY40TmthrTYos2i/dcG1+HsZiDS+U7EikS2+Xk5uEzRKgAnzpcjrdw0SRsiQ7t5hIaGJ W6LLwgSSeXQO3lKYRhMiJGH7EKw9rFT9mjfRCAyJDHe6VUD7qlJ72iJYk0nLDmTIylcPJ7MAd40YA rKP/mfyIlJuxZCKA4t5az9wNm0kKPTCN6posS4TSSwe4C57zTKBRk5VsZB26eBITVcBMXqWGYjn5/ gwJS3Mp5jbWmEtN6d4ew==; Date: Wed, 04 Dec 2024 18:56:14 +0100 Message-Id: <87v7vzwcw1.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #73058 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit 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 (---) close 73058 quit From unknown Tue Aug 19 01:10:52 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 02 Jan 2025 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