[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#26257: [PATCH] gnu: Add rdma-core.
From: |
Marius Bakke |
Subject: |
bug#26257: [PATCH] gnu: Add rdma-core. |
Date: |
Sat, 25 Mar 2017 21:33:53 +0100 |
* gnu/packages/linux.scm (rdma-core): New variable.
---
gnu/packages/linux.scm | 70 +++++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 69 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 0a1c50040..393224faa 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -15,7 +15,7 @@
;;; Copyright © 2016 Ricardo Wurmus <address@hidden>
;;; Copyright © 2016 David Craven <address@hidden>
;;; Copyright © 2016 John Darrington <address@hidden>
-;;; Copyright © 2016 Marius Bakke <address@hidden>
+;;; Copyright © 2016, 2017 Marius Bakke <address@hidden>
;;; Copyright © 2016 Rene Saavedra <address@hidden>
;;; Copyright © 2016 ng0 <address@hidden>
;;; Copyright © 2017 Leo Famulari <address@hidden>
@@ -69,6 +69,7 @@
#:use-module (gnu packages maths)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages networking)
+ #:use-module (gnu packages ninja)
#:use-module (gnu packages perl)
#:use-module (gnu packages pciutils)
#:use-module (gnu packages pkg-config)
@@ -3029,6 +3030,73 @@ commonly found on Microsoft Windows. It is implemented
as a FUSE file system.
The package provides additional NTFS tools.")
(license license:gpl2+)))
+(define-public rdma-core
+ (package
+ (name "rdma-core")
+ (version "13")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/linux-rdma/rdma-core"
+ "/releases/download/v" version "/rdma-core-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "15qdfqkia22vab1dh41s88vgi70yifi40ar5s4x7a456rpbhy8z5"))))
+ (build-system cmake-build-system)
+ (arguments
+ '(#: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.
+ #:configure-flags (list "-GNinja"
+ ;; Defaults to "lib64" on 64-bit archs.
+ (string-append "-DCMAKE_INSTALL_LIBDIR="
+ (assoc-ref %outputs "out")
"/lib")
+ "-DCMAKE_BUILD_TYPE=Release")
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'build
+ (lambda _
+ (zero? (system* "ninja"
+ "-j" (number->string (parallel-job-count))))))
+ (replace 'install
+ (lambda _
+ (zero? (system* "ninja" "install")))))))
+ (native-inputs
+ `(("ninja" ,ninja)
+ ("pkg-config" ,pkg-config)
+ ("python" ,python-wrapper)))
+ (inputs
+ `(("libnl" ,libnl)
+ ("udev" ,eudev)))
+ (home-page "https://github.com/linux-rdma/rdma-core")
+ (synopsis "Utilities and libraries for working with RDMA devices")
+ (description
+ "This package provides the userspace components for the InfiniBand
+subsystem of the Linux kernel. Specifically it contains userspace libraries
+for the following device nodes:
+
address@hidden
address@hidden @file{/dev/infiniband/uverbsX} (@code{libibverbs})
address@hidden @file{/dev/infiniband/rdma_cm} (@code{librdmacm})
address@hidden @file{/dev/infiniband/umadX} (@code{libibumad})
address@hidden enumerate
+
+The following service daemons are also provided:
address@hidden
address@hidden @code{srp_daemon} (for the @code{ib_srp} kernel module)
address@hidden @code{iwpmd} (for iwarp kernel providers)
address@hidden @code{ibacm} (for InfiniBand communication management assistant)
address@hidden enumerate")
+ ;; The package is dual licensed under GPL2 and a custom MIT variant.
+ ;; It also includes some components covered by other licenses.
+ (license
+ (list license:gpl2
+ (license:x11-style "See COPYING.BSD_MIT in the distribution")
+ license:bsd-2 ; Files referring to COPYING.BSD_FB
+ license:cc0 ; most files in ccan/
+ license:bsd-3)))) ; providers/hfi1verbs are dual GPL2/BSD-3
+
(define-public rng-tools
(package
(name "rng-tools")
--
2.12.2
- bug#26257: [PATCH] gnu: Add rdma-core.,
Marius Bakke <=