[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/11: gnu: opensm: Use the right version string for the doc directory.
From: |
guix-commits |
Subject: |
01/11: gnu: opensm: Use the right version string for the doc directory. |
Date: |
Tue, 14 Nov 2023 11:58:06 -0500 (EST) |
civodul pushed a commit to branch wip-openmpi-upgrade
in repository guix.
commit a8ce718908c760eba0fdca2702609a2d8762ecb3
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Oct 16 08:30:19 2023 +0200
gnu: opensm: Use the right version string for the doc directory.
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 @@
(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 "\
- branch wip-openmpi-upgrade created (now 7b542209dd), guix-commits, 2023/11/14
- 05/11: gnu: opensm: Update to 3.3.24., guix-commits, 2023/11/14
- 02/11: gnu: opensm: Use gexps., guix-commits, 2023/11/14
- 06/11: gnu: ucx: Update to 1.15.0., guix-commits, 2023/11/14
- 07/11: gnu: rdma-core: Update to 48.0., guix-commits, 2023/11/14
- 08/11: gnu: libfabric: Update to 1.19.0., guix-commits, 2023/11/14
- 09/11: gnu: psm2: Update to 12.0., guix-commits, 2023/11/14
- 11/11: gnu: intel-mpi-benchmarks: Update to 2021.3., guix-commits, 2023/11/14
- 01/11: gnu: opensm: Use the right version string for the doc directory.,
guix-commits <=
- 04/11: gnu: hwloc: Update to 2.9.3., guix-commits, 2023/11/14
- 03/11: gnu: slurm: Add 23.02.6., guix-commits, 2023/11/14
- 10/11: gnu: openmpi: Update to 4.1.6., guix-commits, 2023/11/14