[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#66573] [PATCH 02/11] gnu: opensm: Use gexps.
From: |
Ludovic Courtès |
Subject: |
[bug#66573] [PATCH 02/11] gnu: opensm: Use gexps. |
Date: |
Mon, 16 Oct 2023 09:54:50 +0200 |
* gnu/packages/fabric-management.scm (opensm)[arguments]: Use gexps.
---
gnu/packages/fabric-management.scm | 26 ++++++++++++++------------
1 file changed, 14 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/fabric-management.scm
b/gnu/packages/fabric-management.scm
index 545cd4ff67..740c570911 100644
--- a/gnu/packages/fabric-management.scm
+++ b/gnu/packages/fabric-management.scm
@@ -66,18 +66,20 @@ (define-public opensm
(inputs
(list rdma-core))
(arguments
- `(#:configure-flags '("--disable-static")
- #:phases
- (modify-phases %standard-phases
- (add-after 'install 'install-doc
- (lambda* (#:key outputs #:allow-other-keys)
- (let* ((base (assoc-ref outputs "out"))
- (doc (string-append base "/share/doc/"
- ,(package-name this-package) "-"
- ,(package-version this-package))))
- (for-each (lambda (file)
- (install-file file doc))
- (find-files "doc"))))))))
+ (list
+ #:configure-flags #~'("--disable-static")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'install 'install-doc
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((base (assoc-ref outputs "out"))
+ (doc (string-append base "/share/doc/"
+ #$(package-name this-package)
+ "-"
+ #$(package-version this-package))))
+ (for-each (lambda (file)
+ (install-file file doc))
+ (find-files "doc"))))))))
(home-page "https://www.openfabrics.org/")
(synopsis "OpenIB InfiniBand Subnet Manager and management utilities")
(description "\
--
2.41.0
- [bug#66573] [PATCH 00/11] Update Open MPI and its dependencies, Ludovic Courtès, 2023/10/16
- [bug#66573] [PATCH 08/11] gnu: libfabric: Update to 1.19.0., Ludovic Courtès, 2023/10/16
- [bug#66573] [PATCH 06/11] gnu: ucx: Update to 1.15.0., Ludovic Courtès, 2023/10/16
- [bug#66573] [PATCH 04/11] gnu: hwloc: Update to 2.9.3., Ludovic Courtès, 2023/10/16
- [bug#66573] [PATCH 07/11] gnu: rdma-core: Update to 48.0., Ludovic Courtès, 2023/10/16
- [bug#66573] [PATCH 02/11] gnu: opensm: Use gexps.,
Ludovic Courtès <=
- [bug#66573] [PATCH 03/11] gnu: slurm: Add 23.02.6., Ludovic Courtès, 2023/10/16
- [bug#66573] [PATCH 05/11] gnu: opensm: Update to 3.3.24., Ludovic Courtès, 2023/10/16
- [bug#66573] [PATCH 01/11] gnu: opensm: Use the right version string for the doc directory., Ludovic Courtès, 2023/10/16
- [bug#66573] [PATCH 09/11] gnu: psm2: Update to 12.0., Ludovic Courtès, 2023/10/16
- [bug#66573] [PATCH 10/11] gnu: openmpi: Update to 4.1.6., Ludovic Courtès, 2023/10/16
- [bug#66573] [PATCH 11/11] gnu: intel-mpi-benchmarks: Update to 2021.3., Ludovic Courtès, 2023/10/16
- [bug#66573] [PATCH v2 02/11] gnu: opensm: Use gexps., Ludovic Courtès, 2023/10/19
- [bug#66573] [PATCH v2 01/11] gnu: opensm: Use the right version string for the doc directory., Ludovic Courtès, 2023/10/19
- [bug#66573] [PATCH v2 06/11] gnu: ucx: Update to 1.15.0., Ludovic Courtès, 2023/10/19