From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42723) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dvmuS-0004xA-4G for guix-patches@gnu.org; Sat, 23 Sep 2017 12:04:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dvmuQ-0002jA-T2 for guix-patches@gnu.org; Sat, 23 Sep 2017 12:04:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46100) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dvmuQ-0002j6-P4 for guix-patches@gnu.org; Sat, 23 Sep 2017 12:04:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dvmuQ-0000SM-Hd for guix-patches@gnu.org; Sat, 23 Sep 2017 12:04:02 -0400 Subject: bug#28552: [PATCH 2/3] gnu: Add infiniband-diags. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170922150407.18134-1-fx@gnu.org> <20170922150407.18134-2-fx@gnu.org> Date: Sat, 23 Sep 2017 18:03:15 +0200 In-Reply-To: <20170922150407.18134-2-fx@gnu.org> (Dave Love's message of "Fri, 22 Sep 2017 16:04:06 +0100") Message-ID: <87bmm12yik.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Dave Love Cc: 28552-done@debbugs.gnu.org --=-=-= Content-Type: text/plain Dave Love skribis: > * gnu/packages/fabric-management.scm (infiniband-diags): New variable. Applied with the cosmetic changes below. Thanks, Ludo'. --=-=-= Content-Type: text/x-patch Content-Disposition: inline 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 --=-=-=--