all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#72415] [PATCH] gnu: mpich: Update to 4.2.2.
@ 2024-08-02  7:57 Romain GARBAGE
  2024-08-03  2:44 ` Zheng Junjie
  2024-08-05  8:33 ` [bug#72415] [PATCH v2] " Romain GARBAGE
  0 siblings, 2 replies; 4+ messages in thread
From: Romain GARBAGE @ 2024-08-02  7:57 UTC (permalink / raw)
  To: 72415; +Cc: ludovic.courtes, Romain GARBAGE

* gnu/packages/mpi.scm (mpich): Update to 4.2.2. Add new dependency.

Change-Id: I9f3e42cb58c399a89835ac38dcfdd9dd11efe210
---
 gnu/packages/mpi.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm
index 4c18da30ef..08ec9c9053 100644
--- a/gnu/packages/mpi.scm
+++ b/gnu/packages/mpi.scm
@@ -43,6 +43,7 @@ (define-module (gnu packages mpi)
   #:use-module (gnu packages libevent)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages pciutils)
+  #:use-module (gnu packages python)
   #:use-module (gnu packages xorg)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages xml)
@@ -450,14 +451,14 @@ (define-public python-mpi4py
 (define-public mpich
   (package
     (name "mpich")
-    (version "3.3.2")
+    (version "4.2.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "http://www.mpich.org/static/downloads/"
                                   version "/mpich-" version ".tar.gz"))
               (sha256
                (base32
-                "1farz5zfx4cd0c3a0wb9pgfypzw0xxql1j1294z1sxslga1ziyjb"))))
+                "0h8xg1wi2d88hnfmj3xydf1hj78r7fh05jljhk5jgxmbmsrmngw8"))))
     (build-system gnu-build-system)
     (inputs
      `(,zlib
@@ -468,7 +469,7 @@ (define-public mpich
              (list ucx)
              '())))
     (native-inputs
-     (list perl which gfortran))
+     (list perl which gfortran python))
     (outputs '("out" "debug"))
     (arguments
      `(#:configure-flags

base-commit: 2aa0127d4e3d2363c04caab88137b070b6cf1318
-- 
2.45.2





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#72415] [PATCH] gnu: mpich: Update to 4.2.2.
  2024-08-02  7:57 [bug#72415] [PATCH] gnu: mpich: Update to 4.2.2 Romain GARBAGE
@ 2024-08-03  2:44 ` Zheng Junjie
  2024-08-05  8:33 ` [bug#72415] [PATCH v2] " Romain GARBAGE
  1 sibling, 0 replies; 4+ messages in thread
From: Zheng Junjie @ 2024-08-03  2:44 UTC (permalink / raw)
  To: Romain GARBAGE; +Cc: ludovic.courtes, 72415

[-- Attachment #1: Type: text/plain, Size: 1852 bytes --]

Romain GARBAGE <romain.garbage@inria.fr> writes:

> * gnu/packages/mpi.scm (mpich): Update to 4.2.2. Add new dependency.

* gnu/packages/mpi.scm (mpich): Update to 4.2.2
[native-inputs]: Add python-minimal.

>
> Change-Id: I9f3e42cb58c399a89835ac38dcfdd9dd11efe210
> ---
>  gnu/packages/mpi.scm | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm
> index 4c18da30ef..08ec9c9053 100644
> --- a/gnu/packages/mpi.scm
> +++ b/gnu/packages/mpi.scm
> @@ -43,6 +43,7 @@ (define-module (gnu packages mpi)
>    #:use-module (gnu packages libevent)
>    #:use-module (gnu packages linux)
>    #:use-module (gnu packages pciutils)
> +  #:use-module (gnu packages python)
>    #:use-module (gnu packages xorg)
>    #:use-module (gnu packages gtk)
>    #:use-module (gnu packages xml)
> @@ -450,14 +451,14 @@ (define-public python-mpi4py
>  (define-public mpich
>    (package
>      (name "mpich")
> -    (version "3.3.2")
> +    (version "4.2.2")
>      (source (origin
>                (method url-fetch)
>                (uri (string-append "http://www.mpich.org/static/downloads/"
>                                    version "/mpich-" version ".tar.gz"))
>                (sha256
>                 (base32
> -                "1farz5zfx4cd0c3a0wb9pgfypzw0xxql1j1294z1sxslga1ziyjb"))))
> +                "0h8xg1wi2d88hnfmj3xydf1hj78r7fh05jljhk5jgxmbmsrmngw8"))))
>      (build-system gnu-build-system)
>      (inputs
>       `(,zlib
> @@ -468,7 +469,7 @@ (define-public mpich
>               (list ucx)
>               '())))
>      (native-inputs
> -     (list perl which gfortran))
> +     (list perl which gfortran python))

maybe python-minimal?

>      (outputs '("out" "debug"))
>      (arguments
>       `(#:configure-flags
>
> base-commit: 2aa0127d4e3d2363c04caab88137b070b6cf1318

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#72415] [PATCH v2] gnu: mpich: Update to 4.2.2.
  2024-08-02  7:57 [bug#72415] [PATCH] gnu: mpich: Update to 4.2.2 Romain GARBAGE
  2024-08-03  2:44 ` Zheng Junjie
@ 2024-08-05  8:33 ` Romain GARBAGE
  2024-08-14 10:14   ` bug#72415: " Christopher Baines
  1 sibling, 1 reply; 4+ messages in thread
From: Romain GARBAGE @ 2024-08-05  8:33 UTC (permalink / raw)
  To: zhengjunjie; +Cc: ludovic.courtes, Romain GARBAGE, 72415

* gnu/packages/mpi.scm (mpich): Update to 4.2.2.
[native-inputs]: Add python-minimal.

Change-Id: I9f3e42cb58c399a89835ac38dcfdd9dd11efe210
---
 gnu/packages/mpi.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm
index 4c18da30ef..97471d56e9 100644
--- a/gnu/packages/mpi.scm
+++ b/gnu/packages/mpi.scm
@@ -43,6 +43,7 @@ (define-module (gnu packages mpi)
   #:use-module (gnu packages libevent)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages pciutils)
+  #:use-module (gnu packages python)
   #:use-module (gnu packages xorg)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages xml)
@@ -450,14 +451,14 @@ (define-public python-mpi4py
 (define-public mpich
   (package
     (name "mpich")
-    (version "3.3.2")
+    (version "4.2.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "http://www.mpich.org/static/downloads/"
                                   version "/mpich-" version ".tar.gz"))
               (sha256
                (base32
-                "1farz5zfx4cd0c3a0wb9pgfypzw0xxql1j1294z1sxslga1ziyjb"))))
+                "0h8xg1wi2d88hnfmj3xydf1hj78r7fh05jljhk5jgxmbmsrmngw8"))))
     (build-system gnu-build-system)
     (inputs
      `(,zlib
@@ -468,7 +469,7 @@ (define-public mpich
              (list ucx)
              '())))
     (native-inputs
-     (list perl which gfortran))
+     (list perl which gfortran python-minimal))
     (outputs '("out" "debug"))
     (arguments
      `(#:configure-flags

base-commit: 2aa0127d4e3d2363c04caab88137b070b6cf1318
-- 
2.45.2





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#72415: [PATCH v2] gnu: mpich: Update to 4.2.2.
  2024-08-05  8:33 ` [bug#72415] [PATCH v2] " Romain GARBAGE
@ 2024-08-14 10:14   ` Christopher Baines
  0 siblings, 0 replies; 4+ messages in thread
From: Christopher Baines @ 2024-08-14 10:14 UTC (permalink / raw)
  To: Romain GARBAGE; +Cc: 72415-done, ludovic.courtes, zhengjunjie

[-- Attachment #1: Type: text/plain, Size: 388 bytes --]

Romain GARBAGE <romain.garbage@inria.fr> writes:

> * gnu/packages/mpi.scm (mpich): Update to 4.2.2.
> [native-inputs]: Add python-minimal.
>
> Change-Id: I9f3e42cb58c399a89835ac38dcfdd9dd11efe210
> ---
>  gnu/packages/mpi.scm | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)

Looks good to me, I've pushed this to master as
063b02a290c232945f062904697b94b26a950f3c.

Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-08-14 10:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-02  7:57 [bug#72415] [PATCH] gnu: mpich: Update to 4.2.2 Romain GARBAGE
2024-08-03  2:44 ` Zheng Junjie
2024-08-05  8:33 ` [bug#72415] [PATCH v2] " Romain GARBAGE
2024-08-14 10:14   ` bug#72415: " Christopher Baines

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.