all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#28555] [PATCH 1/3] gnu: Add opensm.
@ 2017-09-22 15:04 Dave Love
  2017-09-22 15:04 ` [bug#28552] [PATCH 2/3] gnu: Add infiniband-diags Dave Love
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Dave Love @ 2017-09-22 15:04 UTC (permalink / raw)
  To: 28555; +Cc: Dave Love

* gnu/packages/fabric-management.scm: New file.
* gnu/local.mk: Add it.
---
 gnu/local.mk                       |  1 +
 gnu/packages/fabric-management.scm | 72 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 73 insertions(+)
 create mode 100644 gnu/packages/fabric-management.scm

diff --git a/gnu/local.mk b/gnu/local.mk
index 302c128a5..9a3185a97 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -140,6 +140,7 @@ GNU_SYSTEM_MODULES =				\
   %D%/packages/enlightenment.scm		\
   %D%/packages/entr.scm				\
   %D%/packages/erlang.scm			\
+  %D%/packages/fabric-management.scm		\
   %D%/packages/fcitx.scm			\
   %D%/packages/figlet.scm			\
   %D%/packages/file.scm				\
diff --git a/gnu/packages/fabric-management.scm b/gnu/packages/fabric-management.scm
new file mode 100644
index 000000000..abef18d36
--- /dev/null
+++ b/gnu/packages/fabric-management.scm
@@ -0,0 +1,72 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2017 Dave Love <fx@gnu.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages fabric-management)
+  #:use-module (guix packages)
+  #:use-module (guix licenses)
+  #:use-module (guix download)
+  #:use-module (guix utils)
+  #:use-module (guix build-system gnu)
+  #:use-module (gnu packages)
+  #:use-module (gnu packages bison)
+  #:use-module (gnu packages flex)
+  #:use-module (gnu packages linux))
+
+;; Fixme: Done for the library, but needs support for running the daemon
+;;        (shepherd definition).
+;;        We should probably have a lib output, but that currently generates
+;;        a cycle.
+(define-public opensm
+  (package
+    (name "opensm")
+    (version "3.3.20")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append "https://www.openfabrics.org/downloads/management/opensm-"
+                       version ".tar.gz"))
+       (sha256 (base32 "162sg1w7kgy8ayl8a4dcbrfacmnfy2lr9a2yjyq0k65rmd378zg1"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("flex" ,flex)
+       ("bison" ,bison)))
+    (inputs
+     `(("rdma-core" ,rdma-core)))
+    (arguments
+     '(#:configure-flags '("--disable-static")
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'install 'doc
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((base (assoc-ref outputs "out"))
+                    (doc (string-append base "/share/doc")))
+               (mkdir-p doc)
+               (zero?
+                (system
+                 (string-append "cp AUTHORS COPYING ChangeLog doc/* " doc)))))))))
+    (home-page "https://www.openfabrics.org/")
+    (synopsis "OpenIB InfiniBand Subnet Manager and management utilities")
+    (description "\
+OpenSM is the OpenIB project's Subnet Manager for Infiniband networks.
+The subnet manager is run as a system daemon on one of the machines in
+the infiniband fabric to manage the fabric's routing state.  This package
+also contains various tools for diagnosing and testing Infiniband networks
+that can be used from any machine and do not need to be run on a machine
+running the opensm daemon.")
+    (license (list gpl2 bsd-2))))
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#28552] [PATCH 2/3] gnu: Add infiniband-diags.
  2017-09-22 15:04 [bug#28555] [PATCH 1/3] gnu: Add opensm Dave Love
@ 2017-09-22 15:04 ` Dave Love
  2017-09-23 16:03   ` bug#28552: " Ludovic Courtès
  2017-09-22 15:04 ` [bug#28555] [PATCH 3/3] gnu: Add ibutils Dave Love
  2017-09-23 15:54 ` bug#28555: [PATCH 1/3] gnu: Add opensm Ludovic Courtès
  2 siblings, 1 reply; 6+ messages in thread
From: Dave Love @ 2017-09-22 15:04 UTC (permalink / raw)
  To: 28552; +Cc: Dave Love

* gnu/packages/fabric-management.scm (infiniband-diags): New variable.
---
 gnu/packages/fabric-management.scm | 69 +++++++++++++++++++++++++++++++++++++-
 1 file changed, 68 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/fabric-management.scm b/gnu/packages/fabric-management.scm
index abef18d36..a0e4b12c4 100644
--- a/gnu/packages/fabric-management.scm
+++ b/gnu/packages/fabric-management.scm
@@ -23,9 +23,13 @@
   #:use-module (guix utils)
   #:use-module (guix build-system gnu)
   #:use-module (gnu packages)
+  #:use-module (gnu packages autotools)
   #:use-module (gnu packages bison)
   #:use-module (gnu packages flex)
-  #:use-module (gnu packages linux))
+  #:use-module (gnu packages glib)
+  #:use-module (gnu packages linux)
+  #:use-module (gnu packages perl)
+  #:use-module (gnu packages pkg-config))
 
 ;; Fixme: Done for the library, but needs support for running the daemon
 ;;        (shepherd definition).
@@ -70,3 +74,66 @@ also contains various tools for diagnosing and testing Infiniband networks
 that can be used from any machine and do not need to be run on a machine
 running the opensm daemon.")
     (license (list gpl2 bsd-2))))
+
+(define-public infiniband-diags
+  (package
+    (name "infiniband-diags")
+    (version "2.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/linux-rdma/infiniband-diags/archive/"
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1ns9sjwvxnklhi47d6k5x8kxdk1n7f5362y45xwxqmr7gwfvpmwa"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("rdma-core" ,rdma-core)
+       ("opensm" ,opensm)
+       ("glib" ,glib)))
+    (outputs '("out" "lib"))
+    (native-inputs
+     ;; fixme: needs rst2man for man pages
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("libtool" ,libtool)
+       ("perl" ,perl)
+       ("pkg-config" ,pkg-config)))
+    (arguments
+     '(#:configure-flags
+       (list (string-append "CPPFLAGS=-I" (assoc-ref %build-inputs "opensm")
+                            "/include/infiniband")
+             (string-append "--with-perl-installdir=" (assoc-ref %outputs "lib")
+                            "/lib/perl5/vendor_perl")
+             "--disable-static")
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'configure 'autotools
+           (lambda _
+             (zero? (system "./autogen.sh"))))
+         (add-after 'install 'licence
+           (lambda _
+             (let ((doc (string-append (assoc-ref %outputs "lib") "/share/doc")))
+               (mkdir-p doc)
+               (install-file "COPYING" doc))))
+         (add-after 'install-file 'move-perl
+           ;; Avoid perl in lib closure
+           (lambda _
+             (let ((perlout (string-append (assoc-ref %outputs "out") "/lib"))
+                   (perlin (string-append (assoc-ref %outputs "lib")
+                                          "/lib/perl5")))
+               (mkdir-p perlout)
+               (zero? (system* "mv" perlin perlout))))))))
+    (home-page "https://github.com/linux-rdma/infiniband-diags")
+    (synopsis "Infiniband diagnotic tools")
+    (description "\
+A set of utilities designed to help configure, debug, and maintain infiniband
+fabrics.  Many tools and utilities are provided, some with similar
+functionality.
+
+In addition to the utilities provided, a sub-library libibnetdisc, is provided
+to scan an entire IB fabric and return data structures representing it.  The
+interface to this library is not guaranteed to be stable.")
+    (license
+     (list gpl2 bsd-2)))) ; dual
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#28555] [PATCH 3/3] gnu: Add ibutils.
  2017-09-22 15:04 [bug#28555] [PATCH 1/3] gnu: Add opensm Dave Love
  2017-09-22 15:04 ` [bug#28552] [PATCH 2/3] gnu: Add infiniband-diags Dave Love
@ 2017-09-22 15:04 ` Dave Love
  2017-09-23 16:19   ` Ludovic Courtès
  2017-09-23 15:54 ` bug#28555: [PATCH 1/3] gnu: Add opensm Ludovic Courtès
  2 siblings, 1 reply; 6+ messages in thread
From: Dave Love @ 2017-09-22 15:04 UTC (permalink / raw)
  To: 28555; +Cc: Dave Love

* gnu/packages/fabric-management.scm (ibutils): New variable.
---
 gnu/packages/fabric-management.scm | 37 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 36 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/fabric-management.scm b/gnu/packages/fabric-management.scm
index a0e4b12c4..f74dcc71b 100644
--- a/gnu/packages/fabric-management.scm
+++ b/gnu/packages/fabric-management.scm
@@ -27,9 +27,12 @@
   #:use-module (gnu packages bison)
   #:use-module (gnu packages flex)
   #:use-module (gnu packages glib)
+  #:use-module (gnu packages graphviz)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages perl)
-  #:use-module (gnu packages pkg-config))
+  #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages swig)
+  #:use-module (gnu packages tcl))
 
 ;; Fixme: Done for the library, but needs support for running the daemon
 ;;        (shepherd definition).
@@ -137,3 +140,35 @@ to scan an entire IB fabric and return data structures representing it.  The
 interface to this library is not guaranteed to be stable.")
     (license
      (list gpl2 bsd-2)))) ; dual
+
+(define-public ibutils
+  (package
+    (name "ibutils")
+    (version "1.5.7-0.2.gbd7e502")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://www.openfabrics.org/downloads/ibutils/ibutils-"
+                           version ".tar.gz"))
+       (sha256
+        (base32 "00x7v6cf8l5y6g9xwh1sg738ch42fhv19msx0h0090nhr0bv98v7"))))
+    (build-system gnu-build-system)
+    (inputs `(("graphviz" ,graphviz)
+              ("tcl" ,tcl)
+              ("tk" ,tk)
+              ("infiniband-diags" ,infiniband-diags)
+              ("rdma-core" ,rdma-core)
+              ("opensm" ,opensm)
+              ("perl" ,perl)))
+    (native-inputs `(("swig" ,swig)))
+    (arguments
+     `(#:configure-flags
+       (list (string-append "--with-osm="  (assoc-ref %build-inputs "opensm"))
+             (string-append "--with-tk-lib=" (assoc-ref %build-inputs "tk") "/lib")
+             "--disable-static")))
+    (synopsis "InfiniBand network utilities")
+    (description "\
+A set of utilities useful for diagnosing and testing InfiniBand based
+networks.")
+    (home-page "https://www.openfabrics.org/downloads/ibutils/")
+    (license bsd-2)))
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* bug#28555: [PATCH 1/3] gnu: Add opensm.
  2017-09-22 15:04 [bug#28555] [PATCH 1/3] gnu: Add opensm Dave Love
  2017-09-22 15:04 ` [bug#28552] [PATCH 2/3] gnu: Add infiniband-diags Dave Love
  2017-09-22 15:04 ` [bug#28555] [PATCH 3/3] gnu: Add ibutils Dave Love
@ 2017-09-23 15:54 ` Ludovic Courtès
  2 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2017-09-23 15:54 UTC (permalink / raw)
  To: Dave Love; +Cc: 28555-done

[-- Attachment #1: Type: text/plain, Size: 192 bytes --]

Dave Love <fx@gnu.org> skribis:

> * gnu/packages/fabric-management.scm: New file.
> * gnu/local.mk: Add it.

Nice!  I adjusted it as shown above and committed.

Thanks!

Ludo’.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 1324 bytes --]

diff --git a/gnu/packages/fabric-management.scm b/gnu/packages/fabric-management.scm
index abef18d36..873187769 100644
--- a/gnu/packages/fabric-management.scm
+++ b/gnu/packages/fabric-management.scm
@@ -49,17 +49,19 @@
     (inputs
      `(("rdma-core" ,rdma-core)))
     (arguments
-     '(#:configure-flags '("--disable-static")
+     `(#:configure-flags '("--disable-static")
        #:phases
        (modify-phases %standard-phases
          (add-after 'install 'doc
            (lambda* (#:key outputs #:allow-other-keys)
              (let* ((base (assoc-ref outputs "out"))
-                    (doc (string-append base "/share/doc")))
-               (mkdir-p doc)
-               (zero?
-                (system
-                 (string-append "cp AUTHORS COPYING ChangeLog doc/* " doc)))))))))
+                    (doc  (string-append base "/share/doc/"
+                                         ,name "-" ,version)))
+               (for-each (lambda (file)
+                           (install-file file doc))
+                         (append (list "AUTHORS" "COPYING" "ChangeLog")
+                                 (find-files "doc")))
+               #t))))))
     (home-page "https://www.openfabrics.org/")
     (synopsis "OpenIB InfiniBand Subnet Manager and management utilities")
     (description "\

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* bug#28552: [PATCH 2/3] gnu: Add infiniband-diags.
  2017-09-22 15:04 ` [bug#28552] [PATCH 2/3] gnu: Add infiniband-diags Dave Love
@ 2017-09-23 16:03   ` Ludovic Courtès
  0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2017-09-23 16:03 UTC (permalink / raw)
  To: Dave Love; +Cc: 28552-done

[-- Attachment #1: Type: text/plain, Size: 165 bytes --]

Dave Love <fx@gnu.org> skribis:

> * gnu/packages/fabric-management.scm (infiniband-diags): New variable.

Applied with the cosmetic changes below.

Thanks,
Ludo'.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 1655 bytes --]

diff --git a/gnu/packages/fabric-management.scm b/gnu/packages/fabric-management.scm
index 4c6f21a98..edb058842 100644
--- a/gnu/packages/fabric-management.scm
+++ b/gnu/packages/fabric-management.scm
@@ -96,7 +96,7 @@ running the opensm daemon.")
        ("glib" ,glib)))
     (outputs '("out" "lib"))
     (native-inputs
-     ;; fixme: needs rst2man for man pages
+     ;; FIXME: needs rst2man for man pages
      `(("autoconf" ,autoconf)
        ("automake" ,automake)
        ("libtool" ,libtool)
@@ -126,16 +126,14 @@ running the opensm daemon.")
                    (perlin (string-append (assoc-ref %outputs "lib")
                                           "/lib/perl5")))
                (mkdir-p perlout)
-               (zero? (system* "mv" perlin perlout))))))))
+               (rename-file perlin perlout)
+               #t))))))
     (home-page "https://github.com/linux-rdma/infiniband-diags")
     (synopsis "Infiniband diagnotic tools")
-    (description "\
-A set of utilities designed to help configure, debug, and maintain infiniband
-fabrics.  Many tools and utilities are provided, some with similar
-functionality.
+    (description "This is a set of command-line utilities to help configure,
+debug, and maintain Infiniband (IB) fabrics.
 
-In addition to the utilities provided, a sub-library libibnetdisc, is provided
+In addition to the utilities, a sub-library, @file{libibnetdisc}, is provided
 to scan an entire IB fabric and return data structures representing it.  The
 interface to this library is not guaranteed to be stable.")
-    (license
-     (list gpl2 bsd-2)))) ; dual
+    (license (list gpl2 bsd-2)))) ; dual

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#28555] [PATCH 3/3] gnu: Add ibutils.
  2017-09-22 15:04 ` [bug#28555] [PATCH 3/3] gnu: Add ibutils Dave Love
@ 2017-09-23 16:19   ` Ludovic Courtès
  0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2017-09-23 16:19 UTC (permalink / raw)
  To: Dave Love; +Cc: 28555-done

[-- Attachment #1: Type: text/plain, Size: 160 bytes --]

Dave Love <fx@gnu.org> skribis:

> * gnu/packages/fabric-management.scm (ibutils): New variable.

Applied with the changes below.

Thanks!

Ludo’.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 748 bytes --]

diff --git a/gnu/packages/fabric-management.scm b/gnu/packages/fabric-management.scm
index dea19c9a1..76ef9eef2 100644
--- a/gnu/packages/fabric-management.scm
+++ b/gnu/packages/fabric-management.scm
@@ -167,8 +167,7 @@ interface to this library is not guaranteed to be stable.")
              (string-append "--with-tk-lib=" (assoc-ref %build-inputs "tk") "/lib")
              "--disable-static")))
     (synopsis "InfiniBand network utilities")
-    (description "\
-A set of utilities useful for diagnosing and testing InfiniBand based
-networks.")
+    (description "These command-line utilities allow for diagnosing and
+testing InfiniBand networks.")
     (home-page "https://www.openfabrics.org/downloads/ibutils/")
     (license bsd-2)))

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-09-23 16:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-22 15:04 [bug#28555] [PATCH 1/3] gnu: Add opensm Dave Love
2017-09-22 15:04 ` [bug#28552] [PATCH 2/3] gnu: Add infiniband-diags Dave Love
2017-09-23 16:03   ` bug#28552: " Ludovic Courtès
2017-09-22 15:04 ` [bug#28555] [PATCH 3/3] gnu: Add ibutils Dave Love
2017-09-23 16:19   ` Ludovic Courtès
2017-09-23 15:54 ` bug#28555: [PATCH 1/3] gnu: Add opensm Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.