From unknown Sun Jun 15 10:56:13 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#56735] [PATCH] gnu: hdf5-1.8: Add missing comma to linker flag. Resent-From: "Paul A. Patience" Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 24 Jul 2022 12:13:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 56735 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 56735@debbugs.gnu.org Cc: "Paul A. Patience" X-Debbugs-Original-To: guix-patches@gnu.org Reply-To: "Paul A. Patience" Received: via spool by submit@debbugs.gnu.org id=B.165866473610990 (code B ref -1); Sun, 24 Jul 2022 12:13:01 +0000 Received: (at submit) by debbugs.gnu.org; 24 Jul 2022 12:12:16 +0000 Received: from localhost ([127.0.0.1]:47014 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oFaT2-0002rC-6w for submit@debbugs.gnu.org; Sun, 24 Jul 2022 08:12:16 -0400 Received: from lists.gnu.org ([209.51.188.17]:35602) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oFaSy-0002r2-U6 for submit@debbugs.gnu.org; Sun, 24 Jul 2022 08:12:15 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55164) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oFaSw-0000lg-Nn for guix-patches@gnu.org; Sun, 24 Jul 2022 08:12:11 -0400 Received: from mail-4022.proton.ch ([185.70.40.22]:45626) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oFaSr-0006b8-W8 for guix-patches@gnu.org; Sun, 24 Jul 2022 08:12:09 -0400 Date: Sun, 24 Jul 2022 12:11:36 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=apatience.com; s=protonmail2; t=1658664708; x=1658923908; bh=jN6vjNnqoKjJ0ZKHxhplP5X3zBZknuZXc1UgIE+YMiI=; h=Date:To:From:Cc:Reply-To:Subject:Message-ID:Feedback-ID:From:To: Cc:Date:Subject:Reply-To:Feedback-ID:Message-ID; b=myhreMmYEBbdrKgaGg5uLKmftzR7YbuwQAS3wTkuFfoFtBJWK5AZB/RfwMLZ+TNMi Z7PcalgVQWJYel3n0mjIIIQ6ZJfH5JajlvulYK8Qwbsy1c+iA+CPxYxUMGs82VmcPJ drwEoVYxYF6N9yW7oGMQf3I2L5VUAOfucBZTgxWcdDGosawwHgchJdnWI2eJQT/Xng g84SnKYIaomx7O0pENOuN7X66cm+XCvpCXq+yumaaLuZCPCvW9jg5O8HhWO59U3qe+ k77GuDFI0qEHRPSb9bL7gPhaG3EqWEwPtF8U7TZuuzm09AOicU2KjrQRF/ZztSlS6y JgGN9cPYFmAug== From: "Paul A. Patience" Message-ID: <20220724121128.55712-1-paul@apatience.com> Feedback-ID: 19227857:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.40.22; envelope-from=paul@apatience.com; helo=mail-4022.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-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: -2.3 (--) * gnu/packages/maths.scm (hdf5-1.8)[arguments]<#:phases>: Add missing comma to linker flag. --- 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 93f21b4d80..458bffee61 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -1325,7 +1325,7 @@ (define-public hdf5-1.8 (("/bin/mv") "mv")) (substitute* "fortran/src/Makefile.in" (("libhdf5_fortran_la_LDFLAGS =3D") - (string-append "libhdf5_fortran_la_LDFLAGS =3D -Wl-rpath= =3D" + (string-append "libhdf5_fortran_la_LDFLAGS =3D -Wl,-rpath= =3D" (assoc-ref outputs "fortran") "/lib"))) (substitute* "hl/fortran/src/Makefile.in" (("libhdf5hl_fortran_la_LDFLAGS =3D") -- 2.37.0 From unknown Sun Jun 15 10:56:13 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: "Paul A. Patience" Subject: bug#56735: closed (Re: bug#56735: [PATCH] gnu: hdf5-1.8: Add missing comma to linker flag.) Message-ID: References: <87a68o1f32.fsf@gnu.org> <20220724121128.55712-1-paul@apatience.com> X-Gnu-PR-Message: they-closed 56735 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 56735@debbugs.gnu.org Date: Mon, 01 Aug 2022 09:36:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1659346562-9336-1" This is a multi-part message in MIME format... ------------=_1659346562-9336-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #56735: [PATCH] gnu: hdf5-1.8: Add missing comma to linker flag. 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 56735@debbugs.gnu.org. --=20 56735: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D56735 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1659346562-9336-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 56735-done) by debbugs.gnu.org; 1 Aug 2022 09:35:39 +0000 Received: from localhost ([127.0.0.1]:39316 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oIRpq-0002PW-L5 for submit@debbugs.gnu.org; Mon, 01 Aug 2022 05:35:38 -0400 Received: from eggs.gnu.org ([209.51.188.92]:57168) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oIRpo-0002P8-VM for 56735-done@debbugs.gnu.org; Mon, 01 Aug 2022 05:35:37 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:45946) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oIRpj-0003uC-Gx; Mon, 01 Aug 2022 05:35:31 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=KBPzE8e97NsCWn8GZL9ODJ6Oif4O3eKgPb/+7ZudsAY=; b=LK4yuUkxEToSAMAKAkAe NDfs2C/m6kxSjIK9suwW8T4OdffqwVUdQeFTHCnR5sf4Xnk5XypqxGJJnzCG6tL+oQoinw96YJNUb yNMumPeys+Lw+QTIFvXYRDGoByKTXPTXzHEi4F/2l5EClOAJhkojsbxco3dxCltHbo8u0Fjdix8Uh 78XKYVDLQNK9jq94QUbSKtGALIfLwFjVlIgLAHTL91byzAT0ray51sQVRvy1ebe9uQKtMSy92aNZH yfhvyZVkZismmJaPOUnqyBwg3DANIM0Av9GP8wQkRxGdDfMxpV2oc936TPrL/tC7YB38re5TWVSJk A2SSEaWsKmRUSQ==; Received: from [193.50.110.235] (port=54900 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oIRpj-0007mD-2s; Mon, 01 Aug 2022 05:35:31 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: "Paul A. Patience" Subject: Re: bug#56735: [PATCH] gnu: hdf5-1.8: Add missing comma to linker flag. References: <20220724121128.55712-1-paul@apatience.com> Date: Mon, 01 Aug 2022 11:35:29 +0200 In-Reply-To: <20220724121128.55712-1-paul@apatience.com> (Paul A. Patience's message of "Sun, 24 Jul 2022 12:11:36 +0000") Message-ID: <87a68o1f32.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux) 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: 56735-done Cc: 56735-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 (---) Hi, "Paul A. Patience" skribis: > * gnu/packages/maths.scm (hdf5-1.8)[arguments]<#:phases>: Add missing > comma to linker flag. Ouch, good catch. Applied, thanks! Ludo=E2=80=99. ------------=_1659346562-9336-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 24 Jul 2022 12:12:16 +0000 Received: from localhost ([127.0.0.1]:47014 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oFaT2-0002rC-6w for submit@debbugs.gnu.org; Sun, 24 Jul 2022 08:12:16 -0400 Received: from lists.gnu.org ([209.51.188.17]:35602) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oFaSy-0002r2-U6 for submit@debbugs.gnu.org; Sun, 24 Jul 2022 08:12:15 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55164) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oFaSw-0000lg-Nn for guix-patches@gnu.org; Sun, 24 Jul 2022 08:12:11 -0400 Received: from mail-4022.proton.ch ([185.70.40.22]:45626) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oFaSr-0006b8-W8 for guix-patches@gnu.org; Sun, 24 Jul 2022 08:12:09 -0400 Date: Sun, 24 Jul 2022 12:11:36 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=apatience.com; s=protonmail2; t=1658664708; x=1658923908; bh=jN6vjNnqoKjJ0ZKHxhplP5X3zBZknuZXc1UgIE+YMiI=; h=Date:To:From:Cc:Reply-To:Subject:Message-ID:Feedback-ID:From:To: Cc:Date:Subject:Reply-To:Feedback-ID:Message-ID; b=myhreMmYEBbdrKgaGg5uLKmftzR7YbuwQAS3wTkuFfoFtBJWK5AZB/RfwMLZ+TNMi Z7PcalgVQWJYel3n0mjIIIQ6ZJfH5JajlvulYK8Qwbsy1c+iA+CPxYxUMGs82VmcPJ drwEoVYxYF6N9yW7oGMQf3I2L5VUAOfucBZTgxWcdDGosawwHgchJdnWI2eJQT/Xng g84SnKYIaomx7O0pENOuN7X66cm+XCvpCXq+yumaaLuZCPCvW9jg5O8HhWO59U3qe+ k77GuDFI0qEHRPSb9bL7gPhaG3EqWEwPtF8U7TZuuzm09AOicU2KjrQRF/ZztSlS6y JgGN9cPYFmAug== To: guix-patches@gnu.org From: "Paul A. Patience" Subject: [PATCH] gnu: hdf5-1.8: Add missing comma to linker flag. Message-ID: <20220724121128.55712-1-paul@apatience.com> Feedback-ID: 19227857:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.40.22; envelope-from=paul@apatience.com; helo=mail-4022.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 Cc: "Paul A. Patience" 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: "Paul A. Patience" Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/maths.scm (hdf5-1.8)[arguments]<#:phases>: Add missing comma to linker flag. --- 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 93f21b4d80..458bffee61 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -1325,7 +1325,7 @@ (define-public hdf5-1.8 (("/bin/mv") "mv")) (substitute* "fortran/src/Makefile.in" (("libhdf5_fortran_la_LDFLAGS =3D") - (string-append "libhdf5_fortran_la_LDFLAGS =3D -Wl-rpath= =3D" + (string-append "libhdf5_fortran_la_LDFLAGS =3D -Wl,-rpath= =3D" (assoc-ref outputs "fortran") "/lib"))) (substitute* "hl/fortran/src/Makefile.in" (("libhdf5hl_fortran_la_LDFLAGS =3D") -- 2.37.0 ------------=_1659346562-9336-1--