* [bug#71788] [PATCH] gnu: hwloc: Update to 2.11.0.
@ 2024-06-26 19:51 Philippe SWARTVAGHER via Guix-patches via
2024-07-12 10:33 ` [bug#71788] [PATCH] gnu: hwloc: Update to 2.11.1 Ludovic Courtès
0 siblings, 1 reply; 3+ messages in thread
From: Philippe SWARTVAGHER via Guix-patches via @ 2024-06-26 19:51 UTC (permalink / raw)
To: 71788; +Cc: Philippe SWARTVAGHER
* gnu/packages/mpi.scm (hwloc): Update to 2.11.0.
Change-Id: Icb72cf40c4e7029f66154db02d2ae8e44ff41faa
---
gnu/packages/mpi.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm
index 6270108b16..29df9b0825 100644
--- a/gnu/packages/mpi.scm
+++ b/gnu/packages/mpi.scm
@@ -143,7 +143,7 @@ (define-public hwloc-1
(define-public hwloc-2
(package
(inherit hwloc-1)
- (version "2.10.0")
+ (version "2.11.0")
(source (origin
(method url-fetch)
(uri (string-append "https://download.open-mpi.org/release/hwloc/v"
@@ -151,7 +151,7 @@ (define-public hwloc-2
"/hwloc-" version ".tar.bz2"))
(sha256
(base32
- "14hkmq2hrs4j5f0sf32aazgbhgbdvj7lwapy35jvwbyyr5hds183"))))
+ "1yg4c0axrrqhhnvccf52qv2i0jvladm6v4pp02yp5nymra3kp403"))))
;; libnuma is no longer needed.
(inputs (modify-inputs (package-inputs hwloc-1)
base-commit: 03459ca165cec67edaadbd19a96572a74a10cc75
--
2.45.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#71788] [PATCH] gnu: hwloc: Update to 2.11.1.
2024-06-26 19:51 [bug#71788] [PATCH] gnu: hwloc: Update to 2.11.0 Philippe SWARTVAGHER via Guix-patches via
@ 2024-07-12 10:33 ` Ludovic Courtès
2024-07-18 15:41 ` bug#71788: " Ludovic Courtès
0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2024-07-12 10:33 UTC (permalink / raw)
To: 71788; +Cc: Ludovic Courtès, Philippe SWARTVAGHER
From: Ludovic Courtès <ludovic.courtes@inria.fr>
* gnu/packages/mpi.scm (hwloc-2): Update to 2.11.1.
[native-inputs]: Add BASH.
Co-authored-by: Philippe SWARTVAGHER <phil.swart@gmx.fr>
Change-Id: If5531cb82911833153b0e795e9f20b0d0ae940c2
---
gnu/packages/mpi.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm
index 6270108b16..4c18da30ef 100644
--- a/gnu/packages/mpi.scm
+++ b/gnu/packages/mpi.scm
@@ -35,6 +35,7 @@ (define-module (gnu packages mpi)
#:use-module (guix build-system python)
#:use-module (gnu packages)
#:use-module (gnu packages base)
+ #:use-module (gnu packages bash)
#:use-module (gnu packages compression)
#:use-module (gnu packages fabric-management)
#:use-module (gnu packages gcc)
@@ -143,7 +144,7 @@ (define-public hwloc-1
(define-public hwloc-2
(package
(inherit hwloc-1)
- (version "2.10.0")
+ (version "2.11.1")
(source (origin
(method url-fetch)
(uri (string-append "https://download.open-mpi.org/release/hwloc/v"
@@ -151,11 +152,12 @@ (define-public hwloc-2
"/hwloc-" version ".tar.bz2"))
(sha256
(base32
- "14hkmq2hrs4j5f0sf32aazgbhgbdvj7lwapy35jvwbyyr5hds183"))))
+ "1ikhg35pll9zs628n2nii3ranz9j850hykqqcrgy2p12mpzzpk84"))))
- ;; libnuma is no longer needed.
+ (native-inputs (modify-inputs (package-native-inputs hwloc-1)
+ (append bash))) ;for completion tests
(inputs (modify-inputs (package-inputs hwloc-1)
- (delete "numactl")))
+ (delete "numactl"))) ;libnuma is no longer needed.
(arguments
(substitute-keyword-arguments (package-arguments hwloc-1)
((#:phases phases)
base-commit: 2d6a3799fcda5c017f653c6e96b91964b07a7ee0
--
2.45.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* bug#71788: [PATCH] gnu: hwloc: Update to 2.11.1.
2024-07-12 10:33 ` [bug#71788] [PATCH] gnu: hwloc: Update to 2.11.1 Ludovic Courtès
@ 2024-07-18 15:41 ` Ludovic Courtès
0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2024-07-18 15:41 UTC (permalink / raw)
To: 71788-done; +Cc: Philippe SWARTVAGHER
Ludovic Courtès <ludo@gnu.org> skribis:
> From: Ludovic Courtès <ludovic.courtes@inria.fr>
>
> * gnu/packages/mpi.scm (hwloc-2): Update to 2.11.1.
> [native-inputs]: Add BASH.
>
> Co-authored-by: Philippe SWARTVAGHER <phil.swart@gmx.fr>
> Change-Id: If5531cb82911833153b0e795e9f20b0d0ae940c2
After some additional testing, and with qa.guix being overwhelmed these
days, I went ahead and pushed it as
fcd3c5d3aa2894218f357d69f7a307ebc3b318bc.
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-07-18 15:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-26 19:51 [bug#71788] [PATCH] gnu: hwloc: Update to 2.11.0 Philippe SWARTVAGHER via Guix-patches via
2024-07-12 10:33 ` [bug#71788] [PATCH] gnu: hwloc: Update to 2.11.1 Ludovic Courtès
2024-07-18 15:41 ` bug#71788: " Ludovic Courtès
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).