[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#66573] [PATCH 01/11] gnu: opensm: Use the right version string for
From: |
Ludovic Courtès |
Subject: |
[bug#66573] [PATCH 01/11] gnu: opensm: Use the right version string for the doc directory. |
Date: |
Mon, 16 Oct 2023 09:54:49 +0200 |
Previously, when built with ‘--with-latest=opensm’, the package would
install its documentation under a directory with the wrong version
string.
* gnu/packages/fabric-management.scm (opensm)[arguments]: Use the name
and version of THIS-PACKAGE.
---
gnu/packages/fabric-management.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/fabric-management.scm
b/gnu/packages/fabric-management.scm
index b6b2e5176c..545cd4ff67 100644
--- a/gnu/packages/fabric-management.scm
+++ b/gnu/packages/fabric-management.scm
@@ -73,11 +73,11 @@ (define-public opensm
(lambda* (#:key outputs #:allow-other-keys)
(let* ((base (assoc-ref outputs "out"))
(doc (string-append base "/share/doc/"
- ,name "-" ,version)))
+ ,(package-name this-package) "-"
+ ,(package-version this-package))))
(for-each (lambda (file)
(install-file file doc))
- (find-files "doc"))
- #t))))))
+ (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, 2023/10/16
- [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 <=
- [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
- [bug#66573] [PATCH v2 07/11] gnu: rdma-core: Update to 48.0., Ludovic Courtès, 2023/10/19
- [bug#66573] [PATCH v2 11/11] gnu: intel-mpi-benchmarks: Update to 2021.3., Ludovic Courtès, 2023/10/19
- [bug#66573] [PATCH v2 10/11] gnu: openmpi: Update to 4.1.6., Ludovic Courtès, 2023/10/19