[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/12: gnu: rdma-core: Update to 26.0.
From: |
guix-commits |
Subject: |
05/12: gnu: rdma-core: Update to 26.0. |
Date: |
Fri, 15 Nov 2019 11:53:27 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit e68f954eb3c39366cb72dde0348d0c5348316dd6
Author: Ludovic Courtès <address@hidden>
Date: Fri Nov 8 17:57:06 2019 +0100
gnu: rdma-core: Update to 26.0.
* gnu/packages/linux.scm (rdma-core): Update to 26.0.
[arguments]: Add "-DRST2MAN_EXECUTABLE=..." to #:configure-flags.
[native-inputs]: Add PYTHON-DOCUTILS.
---
gnu/packages/linux.scm | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 92c9e7f..e972e70 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -100,6 +100,7 @@
#:use-module (gnu packages popt)
#:use-module (gnu packages pulseaudio)
#:use-module (gnu packages python)
+ #:use-module (gnu packages python-xyz)
#:use-module (gnu packages readline)
#:use-module (gnu packages rrdtool)
#:use-module (gnu packages samba)
@@ -4306,7 +4307,7 @@ The package provides additional NTFS tools.")
(define-public rdma-core
(package
(name "rdma-core")
- (version "22.3")
+ (version "26.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/linux-rdma/rdma-core"
@@ -4314,16 +4315,21 @@ The package provides additional NTFS tools.")
version ".tar.gz"))
(sha256
(base32
- "0jgp1xh328x0kr6lkn4vq71cc627zd05wczr74b3j3151flhj828"))))
+ "14raqwx4pkzghiwkx1v0dq338f7xqqx8rnsxlpdnngvjy1p5l79j"))))
(build-system cmake-build-system)
(arguments
- '(#:tests? #f ; no tests
+ `(#:tests? #f ; no tests
;; Upstream uses the "ninja" build system and encourage distros
;; to do the same for consistency. They also recommend using the
;; "Release" build type.
#:build-type "Release"
#:configure-flags (list "-GNinja"
+ (string-append "-DRST2MAN_EXECUTABLE="
+ (assoc-ref %build-inputs
+ "python-docutils")
+ "/bin/rst2man.py")
+
;; On some configurations, the
;; IB_USER_MAD_REGISTER_AGENT ioctl, which is
;; used by default, would return ENODEV. To
@@ -4342,7 +4348,8 @@ The package provides additional NTFS tools.")
(native-inputs
`(("ninja" ,ninja)
("pkg-config" ,pkg-config)
- ("python" ,python-wrapper)))
+ ("python" ,python-wrapper)
+ ("python-docutils" ,python-docutils))) ;for 'rst2man'
(inputs
`(("libnl" ,libnl)
("udev" ,eudev)))
- branch master updated (f3560c6 -> faab708), guix-commits, 2019/11/15
- 01/12: gnu: ucx: Enable InfiniBand support through Verbs., guix-commits, 2019/11/15
- 02/12: gnu: ucx: Do not install static libraries., guix-commits, 2019/11/15
- 03/12: gnu: openmpi: Pass explicit "--with-*" configure flags., guix-commits, 2019/11/15
- 05/12: gnu: rdma-core: Update to 26.0.,
guix-commits <=
- 09/12: gnu: hwloc: Update to 2.1.0., guix-commits, 2019/11/15
- 10/12: gnu: openmpi, slurm: Switch to hwloc 2.x., guix-commits, 2019/11/15
- 04/12: gnu: rdma-core: Use the "write" ioctl mode., guix-commits, 2019/11/15
- 08/12: gnu: slurm: Build shared libraries only., guix-commits, 2019/11/15
- 06/12: gnu: Add Intel MPI Benchmarks., guix-commits, 2019/11/15
- 11/12: gnu: psm: Add "debug" output., guix-commits, 2019/11/15
- 07/12: gnu: slurm: Update to 19.05.3-2., guix-commits, 2019/11/15
- 12/12: gnu: openmpi: Raise the priority of the PSM2 component., guix-commits, 2019/11/15