GNU bug report logs - #77467
[PATCH 0/1] netcdf: Fix propagated inputs

Previous Next

Package: guix-patches;

Reported by: Luca Cirrottola <luca.cirrottola <at> inria.fr>

Date: Wed, 2 Apr 2025 17:12:01 UTC

Severity: normal

Tags: patch

Done: Andreas Enge <andreas <at> enge.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 77467 in the body.
You can then email your comments to 77467 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#77467; Package guix-patches. (Wed, 02 Apr 2025 17:12:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Luca Cirrottola <luca.cirrottola <at> inria.fr>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 02 Apr 2025 17:12:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Luca Cirrottola <luca.cirrottola <at> inria.fr>
To: guix-patches <at> gnu.org
Cc: Luca Cirrottola <luca.cirrottola <at> inria.fr>
Subject: [PATCH 0/1] netcdf: Fix propagated inputs
Date: Wed,  2 Apr 2025 19:10:55 +0200
Linking to the netcdf package currently fails with the error:

  ld: cannot find -lmfhdf: No such file or directory
  ld: cannot find -lcurl: No such file or directory
  ld: cannot find -lxml2: No such file or directory

This patch tries to fix this by propagating the inputs curl, hdf4-alt and libxml2 into the environment.


Luca Cirrottola (1):
  gnu: netcdf: Fix propagated inputs.

 gnu/packages/maths.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)


base-commit: 111aacf22fdc0314f41b737106ad70c1899a58e7
-- 
2.34.1





Information forwarded to guix-patches <at> gnu.org:
bug#77467; Package guix-patches. (Wed, 02 Apr 2025 17:14:02 GMT) Full text and rfc822 format available.

Message #8 received at 77467 <at> debbugs.gnu.org (full text, mbox):

From: Luca Cirrottola <luca.cirrottola <at> inria.fr>
To: 77467 <at> debbugs.gnu.org
Cc: Luca Cirrottola <luca.cirrottola <at> inria.fr>
Subject: [PATCH 1/1] gnu: netcdf: Fix propagated inputs.
Date: Wed,  2 Apr 2025 19:13:05 +0200
---
 gnu/packages/maths.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 6910b32dae..279a5eb39d 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -2286,13 +2286,14 @@ (define-public netcdf
     (native-inputs
      (list m4 doxygen graphviz))
     (inputs
-     (list curl
-           hdf4-alt
-           hdf5
+     (list hdf5
            libjpeg-turbo
-           libxml2
            unzip
            zlib))
+    (propagated-inputs
+     (list curl
+           hdf4-alt
+           libxml2))
     (arguments
      (list #:configure-flags
            #~'("--enable-doxygen" "--enable-dot"
-- 
2.34.1





Information forwarded to guix-patches <at> gnu.org:
bug#77467; Package guix-patches. (Wed, 02 Apr 2025 17:19:02 GMT) Full text and rfc822 format available.

Message #11 received at 77467 <at> debbugs.gnu.org (full text, mbox):

From: Luca Cirrottola <luca.cirrottola <at> inria.fr>
To: 77467 <at> debbugs.gnu.org
Cc: andreas <at> enge.fr, sharlatanus <at> gmail.com, bavier <at> posteo.net
Subject: Re: [PATCH 1/1] gnu: netcdf: Fix propagated inputs.
Date: Wed, 2 Apr 2025 19:18:50 +0200 (CEST)
CC the science team.




Information forwarded to guix-patches <at> gnu.org:
bug#77467; Package guix-patches. (Tue, 15 Apr 2025 16:07:02 GMT) Full text and rfc822 format available.

Message #14 received at 77467 <at> debbugs.gnu.org (full text, mbox):

From: Luca Cirrottola <luca.cirrottola <at> inria.fr>
To: 77467 <77467 <at> debbugs.gnu.org>
Cc: Andreas Enge <andreas <at> enge.fr>, Sharlatan Hellseher <sharlatanus <at> gmail.com>,
 Eric Bavier <bavier <at> posteo.net>
Subject: Re: [PATCH 1/1] gnu: netcdf: Fix propagated inputs.
Date: Tue, 15 Apr 2025 18:06:04 +0200 (CEST)
Hello,
Shame on me, I have discovered that the problem was happening in a time machine, and that the behaviour is OK after the latest modification that Ludovic made on the recipe. So thanks Ludovic, you can close this issue.




Reply sent to Andreas Enge <andreas <at> enge.fr>:
You have taken responsibility. (Tue, 15 Apr 2025 17:42:02 GMT) Full text and rfc822 format available.

Notification sent to Luca Cirrottola <luca.cirrottola <at> inria.fr>:
bug acknowledged by developer. (Tue, 15 Apr 2025 17:42:02 GMT) Full text and rfc822 format available.

Message #19 received at 77467-done <at> debbugs.gnu.org (full text, mbox):

From: Andreas Enge <andreas <at> enge.fr>
To: Luca Cirrottola <luca.cirrottola <at> inria.fr>
Cc: 77467 <77467-done <at> debbugs.gnu.org>,
 Sharlatan Hellseher <sharlatanus <at> gmail.com>, Eric Bavier <bavier <at> posteo.net>
Subject: Re: [PATCH 1/1] gnu: netcdf: Fix propagated inputs.
Date: Tue, 15 Apr 2025 19:41:02 +0200
Am Tue, Apr 15, 2025 at 06:06:04PM +0200 schrieb Luca Cirrottola:
> Shame on me, I have discovered that the problem was happening in a time machine, and that the behaviour is OK after the latest modification that Ludovic made on the recipe. So thanks Ludovic, you can close this issue.

Okay, thanks for the update! Just closing this issue.

Andreas





bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 14 May 2025 11:25:14 GMT) Full text and rfc822 format available.

This bug report was last modified 38 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.