debian/0000755000000000000000000000000012057341000007156 5ustar debian/rules0000755000000000000000000000201612057340226010246 0ustar #!/usr/bin/make -f # -*- makefile -*- %: dh $@ --with autoreconf override_dh_autoreconf: dh_autoreconf autoreconf -- -f -i -I config override_dh_install: mv debian/tmp/usr/sbin/ibfindnodesusing.pl debian/tmp/usr/sbin/ibfindnodesusing mv debian/tmp/usr/sbin/ibidsverify.pl debian/tmp/usr/sbin/ibidsverify mv debian/tmp/usr/sbin/check_lft_balance.pl debian/tmp/usr/sbin/check_lft_balance mv debian/tmp/usr/sbin/dump_lfts.sh debian/tmp/usr/sbin/dump_lfts mv debian/tmp/usr/sbin/dump_mfts.sh debian/tmp/usr/sbin/dump_mfts dh_install # Modified by build process KEEP_FILES = \ include/ibdiag_version.h \ infiniband-diags.spec \ scripts/ibcheckerrors \ scripts/ibcheckerrs \ scripts/ibchecknet \ scripts/ibchecknode \ scripts/ibcheckport \ scripts/ibcheckportstate \ scripts/ibcheckportwidth \ scripts/ibcheckstate \ scripts/ibcheckwidth \ scripts/ibclearcounters \ scripts/ibclearerrors \ scripts/ibdatacounters \ scripts/ibdatacounts \ scripts/ibhosts \ scripts/ibnodes \ scripts/ibrouters \ scripts/ibswitches debian/compat0000644000000000000000000000000212037077153010371 0ustar 9 debian/patches/0000755000000000000000000000000012057337347010630 5ustar debian/patches/24-ibclearerrors-bashisms.patch0000644000000000000000000000102212037074616016527 0ustar From: Subject: Correct bashims in ibclearerrors script --- trunk/scripts/ibclearerrors.in 2009-07-29 14:58:00.000000000 +0200 +++ trunk/scripts/ibclearerrors.in.new 2009-12-20 19:26:35.000000000 +0100 @@ -2,13 +2,13 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [-N | -nocolor] [" \ "| -C ca_name -P ca_port -t(imeout) timeout_ms]" exit -1 } -function user_abort() { +user_abort() { echo "Aborted" exit 1 } debian/patches/01-pass-foreign-to-automake.patch0000644000000000000000000000070012057337347016705 0ustar Description: Add "foreign" option to automake so autoreconf works Avoid complaints about missing NEWS, README, etc. Author: Roland Dreier --- --- a/configure.in +++ b/configure.in @@ -5,7 +5,7 @@ AC_CONFIG_AUX_DIR(config) AC_CONFIG_MACRO_DIR(config) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE +AM_INIT_AUTOMAKE([foreign]) AC_SUBST(RELEASE, ${RELEASE:-unknown}) AC_SUBST(TARBALL, ${TARBALL:-${PACKAGE}-${VERSION}.tar.gz}) debian/patches/30-ibhosts-bashisms.patch0000644000000000000000000000106312037076033015341 0ustar From: Subject: Correct bashims in ibhosts script Index: infiniband-diags-1.6.1/scripts/ibhosts.in =================================================================== --- infiniband-diags-1.6.1.orig/scripts/ibhosts.in 2012-07-24 11:15:56.000000000 -0700 +++ infiniband-diags-1.6.1/scripts/ibhosts.in 2012-10-15 14:11:53.274491379 -0700 @@ -2,7 +2,7 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [ | -C ca_name" \ "-P ca_port -t timeout_ms]" exit -1 debian/patches/10-ibchecknode-bashisms.patch0000644000000000000000000000162412037074616016132 0ustar From: Subject: Correct bashims in ibchecknode script --- trunk/scripts/ibchecknode.in 2009-07-29 14:58:00.000000000 +0200 +++ trunk/scripts/ibchecknode.in.new 2009-12-20 19:14:49.000000000 +0100 @@ -2,13 +2,13 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [-v] [-N | -nocolor] [-G]" \ "[-C ca_name] [-P ca_port] [-t(imeout) timeout_ms] " exit -1 } -function green() { +green() { if [ "$bw" = "yes" ]; then if [ "$verbose" = "yes" ]; then echo $1 @@ -16,16 +16,16 @@ return fi if [ "$verbose" = "yes" ]; then - echo -e "\\033[1;032m" $1 "\\033[0;39m" + printf "\\033[1;032m" $1 "\\033[0;39m" fi } -function red() { +red() { if [ "$bw" = "yes" ]; then echo $1 return fi - echo -e "\\033[1;031m" $1 "\\033[0;39m" + printf "\\033[1;031m" $1 "\\033[0;39m" } guid_addr="" debian/patches/32-ibrouters-bashisms.patch0000644000000000000000000000107312037076037015713 0ustar From: Subject: Correct bashims in ibrouters script Index: infiniband-diags-1.6.1/scripts/ibrouters.in =================================================================== --- infiniband-diags-1.6.1.orig/scripts/ibrouters.in 2012-07-24 11:15:56.000000000 -0700 +++ infiniband-diags-1.6.1/scripts/ibrouters.in 2012-10-15 14:11:56.962491493 -0700 @@ -2,7 +2,7 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [ | -C ca_name" \ "-P ca_port -t timeout_ms]" exit -1 debian/patches/08-ibchecknet-bashisms.patch0000644000000000000000000000101612037074616015775 0ustar From: Subject: Correct bashims in ibchecknet script --- trunk/scripts/ibchecknet.in 2009-07-29 14:58:00.000000000 +0200 +++ trunk/scripts/ibchecknet.in.new 2009-12-20 19:14:01.000000000 +0100 @@ -2,13 +2,13 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [-v] [-N | -nocolor]" \ "[ | -C ca_name -P ca_port -t(imeout) timeout_ms]" exit -1 } -function user_abort() { +user_abort() { echo "Aborted" exit 1 } debian/patches/14-ibcheckportstate-bashisms.patch0000644000000000000000000000165112037074616017236 0ustar From: Subject: Correct bashims in ibcheckportstate script --- trunk/scripts/ibcheckportstate.in 2009-07-29 14:58:00.000000000 +0200 +++ trunk/scripts/ibcheckportstate.in.new 2009-12-20 19:22:20.000000000 +0100 @@ -2,13 +2,13 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [-v] [-N | -nocolor] [-G]" \ "[-C ca_name] [-P ca_port] [-t(imeout) timeout_ms] " exit -1 } -function green() { +green() { if [ "$bw" = "yes" ]; then if [ "$verbose" = "yes" ]; then echo $1 @@ -16,16 +16,16 @@ return fi if [ "$verbose" = "yes" ]; then - echo -e "\\033[1;032m" $1 "\\033[0;39m" + printf "\\033[1;032m" $1 "\\033[0;39m" fi } -function red() { +red() { if [ "$bw" = "yes" ]; then echo $1 return fi - echo -e "\\033[1;031m" $1 "\\033[0;39m" + printf "\\033[1;031m" $1 "\\033[0;39m" } guid_addr="" debian/patches/34-ibswitches-bashisms.patch0000644000000000000000000000107712037076042016043 0ustar From: Subject: Correct bashims in ibswitches script Index: infiniband-diags-1.6.1/scripts/ibswitches.in =================================================================== --- infiniband-diags-1.6.1.orig/scripts/ibswitches.in 2012-07-24 11:15:56.000000000 -0700 +++ infiniband-diags-1.6.1/scripts/ibswitches.in 2012-10-15 14:12:00.594491605 -0700 @@ -2,7 +2,7 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [ | -C ca_name" \ "-P ca_port -t timeout_ms]" exit -1 debian/patches/06-ibcheckerrs-bashisms.patch0000644000000000000000000000241512037075666016172 0ustar From: Subject: Correct bashims in ibcheckerrs script --- trunk/scripts/ibcheckerrs.in 2009-07-29 14:58:00.000000000 +0200 +++ trunk/scripts/ibcheckerrs.in.new 2009-12-20 19:13:14.000000000 +0100 @@ -2,14 +2,14 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [-b] [-v] [-G] [-T ]" \ "[-s(how_thresholds)] [-N \| -nocolor] [-C ca_name] [-P ca_port]" \ "[-t(imeout) timeout_ms] []" exit -1 } -function green() { +green() { if [ "$bw" = "yes" ]; then if [ "$verbose" = "yes" ]; then echo $1 @@ -17,19 +17,19 @@ return fi if [ "$verbose" = "yes" ]; then - echo -e "\\033[1;032m" $1 "\\033[0;39m" + printf "\\033[1;032m" $1 "\\033[0;39m" fi } -function red() { +red() { if [ "$bw" = "yes" ]; then echo $1 return fi - echo -e "\\033[1;031m" $1 "\\033[0;39m" + printf "\\033[1;031m" $1 "\\033[0;39m" } -function show_thresholds() { +show_thresholds() { echo "SymbolErrorCounter=$SymbolErrorCounter" echo "LinkErrorRecoveryCounter=$LinkErrorRecoveryCounter" echo "LinkDownedCounter=$LinkDownedCounter" @@ -44,7 +44,7 @@ echo "VL15Dropped=$VL15Dropped" } -function get_thresholds() { +get_thresholds() { . $1 } debian/patches/28-ibdatacounts-bashisms.patch0000644000000000000000000000165712037074616016373 0ustar From: Subject: Correct bashims in ibdatacounts script --- trunk/scripts/ibdatacounts.in 2009-07-29 14:58:00.000000000 +0200 +++ trunk/scripts/ibdatacounts.in.new 2009-12-20 19:28:18.000000000 +0100 @@ -2,14 +2,14 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [-b] [-v] [-G] [-N | -nocolor]" \ "[-C ca_name] [-P ca_port] [-t(imeout) timeout_ms] " \ "[]" exit -1 } -function green() { +green() { if [ "$bw" = "yes" ]; then if [ "$verbose" = "yes" ]; then echo $1 @@ -17,16 +17,16 @@ return fi if [ "$verbose" = "yes" ]; then - echo -e "\\033[1;032m" $1 "\\033[0;39m" + printf "\\033[1;032m" $1 "\\033[0;39m" fi } -function red() { +red() { if [ "$bw" = "yes" ]; then echo $1 return fi - echo -e "\\033[1;031m" $1 "\\033[0;39m" + printf "\\033[1;031m" $1 "\\033[0;39m" } guid_addr="" debian/patches/12-ibcheckport-bashisms.patch0000644000000000000000000000163212037074616016172 0ustar From: Subject: Correct bashims in ibcheckport script --- trunk/scripts/ibcheckport.in 2009-07-29 14:58:00.000000000 +0200 +++ trunk/scripts/ibcheckport.in.new 2009-12-20 19:21:21.000000000 +0100 @@ -2,13 +2,13 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [-v] [-N | -nocolor] [-G]" \ "[-C ca_name] [-P ca_port] [-t(imeout) timeout_ms] " exit -1 } -function green() { +green() { if [ "$bw" = "yes" ]; then if [ "$verbose" = "yes" ]; then echo $1 @@ -16,16 +16,16 @@ return fi if [ "$verbose" = "yes" ]; then - echo -e "\\033[1;032m" $1 "\\033[0;39m" + printf "\\033[1;032m" $1 "\\033[0;39m" fi } -function red() { +red() { if [ "$bw" = "yes" ]; then echo $1 return fi - echo -e "\\033[1;031m" $1 "\\033[0;39m" + printf "\\033[1;031m" $1 "\\033[0;39m" } guid_addr="" debian/patches/04-ibcheckerrors-bashisms.patch0000644000000000000000000000103312037074616016516 0ustar From: Subject: Correct bashims in ibcheckerrors script --- trunk/scripts/ibcheckerrors.in 2009-07-29 14:58:00.000000000 +0200 +++ trunk/scripts/ibcheckerrors.in.new 2009-12-20 19:12:11.000000000 +0100 @@ -2,13 +2,13 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [-b] [-v] [-N | -nocolor]"\ "[ | -C ca_name -P ca_port -t(imeout) timeout_ms]" exit -1 } -function user_abort() { +user_abort() { echo "Aborted" exit 1 } debian/patches/16-ibcheckportwidth-bashisms.patch0000644000000000000000000000165112037074616017237 0ustar From: Subject: Correct bashims in ibcheckportwidth script --- trunk/scripts/ibcheckportwidth.in 2009-07-29 14:58:00.000000000 +0200 +++ trunk/scripts/ibcheckportwidth.in.new 2009-12-20 19:23:15.000000000 +0100 @@ -2,13 +2,13 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [-v] [-N | -nocolor] [-G]" \ "[-C ca_name] [-P ca_port] [-t(imeout) timeout_ms] " exit -1 } -function green() { +green() { if [ "$bw" = "yes" ]; then if [ "$verbose" = "yes" ]; then echo $1 @@ -16,16 +16,16 @@ return fi if [ "$verbose" = "yes" ]; then - echo -e "\\033[1;032m" $1 "\\033[0;39m" + printf "\\033[1;032m" $1 "\\033[0;39m" fi } -function red() { +red() { if [ "$bw" = "yes" ]; then echo $1 return fi - echo -e "\\033[1;031m" $1 "\\033[0;39m" + printf "\\033[1;031m" $1 "\\033[0;39m" } guid_addr="" debian/patches/20-ibcheckwidth-bashisms.patch0000644000000000000000000000102512037074616016320 0ustar From: Subject: Correct bashims in ibcheckwidth script --- trunk/scripts/ibcheckwidth.in 2009-07-29 14:58:00.000000000 +0200 +++ trunk/scripts/ibcheckwidth.in.new 2009-12-20 19:25:24.000000000 +0100 @@ -2,13 +2,13 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [-v] [-N | -nocolor]" \ "[ \| -C ca_name -P ca_port -t(imeout) timeout_ms]" exit -1 } -function user_abort() { +user_abort() { echo "Aborted" exit 1 } debian/patches/series0000644000000000000000000000102212057337274012037 0ustar 04-ibcheckerrors-bashisms.patch 06-ibcheckerrs-bashisms.patch 08-ibchecknet-bashisms.patch 10-ibchecknode-bashisms.patch 12-ibcheckport-bashisms.patch 14-ibcheckportstate-bashisms.patch 16-ibcheckportwidth-bashisms.patch 18-ibcheckstate-bashisms.patch 20-ibcheckwidth-bashisms.patch 22-ibclearcounters-bashisms.patch 24-ibclearerrors-bashisms.patch 26-ibdatacounters-bashisms.patch 28-ibdatacounts-bashisms.patch 30-ibhosts-bashisms.patch 32-ibrouters-bashisms.patch 34-ibswitches-bashisms.patch 01-pass-foreign-to-automake.patch debian/patches/22-ibclearcounters-bashisms.patch0000644000000000000000000000101012037074616017050 0ustar From: Subject: Correct bashims in ibclearcounters script --- trunk/scripts/ibclearcounters.in 2009-07-29 14:58:00.000000000 +0200 +++ trunk/scripts/ibclearcounters.in.new 2009-12-20 19:26:00.000000000 +0100 @@ -2,13 +2,13 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [" \ "| -C ca_name -P ca_port -t(imeout) timeout_ms]" exit -1 } -function user_abort() { +user_abort() { echo "Aborted" exit 1 } debian/patches/26-ibdatacounters-bashisms.patch0000644000000000000000000000104012037074616016702 0ustar From: Subject: Correct bashims in ibdatacounters script --- trunk/scripts/ibdatacounters.in 2009-07-29 14:58:00.000000000 +0200 +++ trunk/scripts/ibdatacounters.in.new 2009-12-20 19:27:22.000000000 +0100 @@ -2,13 +2,13 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [-b] [-v] [-N | -nocolor]" \ "[ \| -C ca_name -P ca_port -t(imeout) timeout_ms]" exit -1 } -function user_abort() { +user_abort() { echo "Aborted" exit 1 } debian/patches/18-ibcheckstate-bashisms.patch0000644000000000000000000000102412037074616016327 0ustar From: Subject: Correct bashims in ibcheckstate script --- trunk/scripts/ibcheckstate.in 2009-07-29 14:58:00.000000000 +0200 +++ trunk/scripts/ibcheckstate.in.new 2009-12-20 19:24:50.000000000 +0100 @@ -2,13 +2,13 @@ IBPATH=${IBPATH:-@IBSCRIPTPATH@} -function usage() { +usage() { echo Usage: `basename $0` "[-h] [-v] [-N | -nocolor]" \ "[ | -C ca_name -P ca_port -t(imeout) timeout_ms]" exit -1 } -function user_abort() { +user_abort() { echo "Aborted" exit 1 } debian/libibnetdisc5.install0000644000000000000000000000002412057337545013305 0ustar usr/lib/*/lib*.so.* debian/copyright0000644000000000000000000000461712037074616011137 0ustar This package was debianized by Guy Coates on Thu, 08 Jan 2009 17:18:22 +0000. It was downloaded from http://www.openfabrics.org/downloads/OFED/ofed-1.4/OFED-1.4.tgz Upstream Authors: Sasha Khapyorsky, sashak@voltaire.com Copyright: Copyright (c) 2006 Mellanox Technologies. All rights reserved. Copyright (c) 2004-2008 Voltaire, Inc. All rights reserved. Copyright (c) 2007 Xsigo Systems Inc. All rights reserved. Copyright (c) 2008 Lawrence Livermore National Security. Copyright (c) 2006,2007 The Regents of the University of California License: This software is available to you under a choice of two licences. You may chose to be licensed under the terms of the the OpenIB.org BSD license show below, or the GNU General Public License (GPL) Version 2, available in the file /usr/share/common-licenses/GPL-2 on your Debian system. ================================================================== OpenIB.org BSD license Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ================================================================== The Debian packaging is Copyright (C) 2009, Genome Research Ltd and is licensed under the GPL, see `/usr/share/common-licenses/GPL'. debian/changelog0000644000000000000000000000407512057340735011054 0ustar infiniband-diags (1.6.1-1) experimental; urgency=low * Acknowledge NMU. (Closes: #690602) * Convert to minimized rules file. -- Roland Dreier Mon, 03 Dec 2012 11:44:59 -0800 infiniband-diags (1.6.1-0.1) experimental; urgency=low * Non-maintainer upload. * Acknowledge NMU. * New upstream release. * Bump Standards-Version to 3.9.4 (no changes). -- Roland Dreier Mon, 15 Oct 2012 11:06:51 -0700 infiniband-diags (1.5.12-1) unstable; urgency=low * New upstream release. OFED 1.5.4. -- Ana Guerrero Wed, 14 Mar 2012 09:51:17 +0100 infiniband-diags (1.5.7-OFED-1.5.2-1) experimental; urgency=low * New OFED release. * debian/rules: + Kill iblinkinfo.pl now that iblinkinfo is a binary. + Kill rpath in iblinkinfo. + Kill useless lintian overrides. * debian/control: + Bump Standards-Version to 3.9.1 (no changes). + Move libopensm2-dev build-dep to libopensm-dev. + Bump libibmad-dev and libibumad-dev build-deps. + Remove automake build-dep. + libibnetdisc3 -> libibnetdisc5 due to soname bump. -- Julien BLACHE Thu, 04 Nov 2010 15:29:00 +0100 infiniband-diags (1.5.5-1) unstable; urgency=low * New upstream release (OFED 1.5) -- Guy Coates Wed, 10 Feb 2010 11:30:07 +0000 infiniband-diags (1.4.4-20090314-1.1) unstable; urgency=low * Non-maintainer upload. * Remove deprecated dpatch and upgrade to packaging format "3.0 quilt". * Update to Standards-Version to 3.9.3.1 and debhelper to 9. * Add build-arch and build-indep targets; use dh_prep in rules file. * Add new patch 02 to prevent using --rpath (Policy); renumber all patches * Delete debian/lintian-overrides which is no longer neeeded (--rpath). * Fix extended-description-is-probably-too-short (Lintian). -- Jari Aalto Thu, 19 Apr 2012 19:18:49 +0300 infiniband-diags (1.4.4-20090314-1) unstable; urgency=low * Initial release (Closes: #539803) -- Benoit Mortier Wed, 21 Oct 2009 11:23:00 +0100 debian/source/0000755000000000000000000000000012037074616010474 5ustar debian/source/format0000644000000000000000000000001412037074616011702 0ustar 3.0 (quilt) debian/control0000644000000000000000000000413312057336403010575 0ustar Source: infiniband-diags Section: net Priority: extra Maintainer: OFED and Debian Developement and Discussion Uploaders: Benoit Mortier , Guy Coates , Mario Lang Build-Depends: debhelper (>= 9), dh-autoreconf, libibumad-dev (>= 1.3.7-OFED-1.5.4), libibmad-dev (>= 1.3.8-OFED-1.5.4), libopensm-dev (>= 3.3.12-OFED-1.5.4) Standards-Version: 3.9.4 Homepage: http://www.openfabrics.org DM-Upload-Allowed: yes Package: infiniband-diags Architecture: i386 ia64 amd64 powerpc Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}, libibnetdisc5 (= ${binary:Version}) Description: InfiniBand diagnostic programs InfiniBand is a switched fabric communications link used in high-performance computing and enterprise data centers. Its features include high throughput, low latency, quality of service and failover, and it is designed to be scalable. . This package provides diagnostic programs and scripts needed to diagnose an InfiniBand subnet. Package: libibnetdisc5 Architecture: i386 ia64 amd64 powerpc Pre-Depends: ${misc:Pre-Depends} Depends: ${shlibs:Depends}, ${misc:Depends} Description: InfiniBand diagnostics library InfiniBand is a switched fabric communications link used in high-performance computing and enterprise data centers. Its features include high throughput, low latency, quality of service and failover, and it is designed to be scalable. . This package provides libraries required by the InfiniBand diagnostic programs. Package: libibnetdisc-dev Section: libdevel Architecture: i386 ia64 amd64 powerpc Depends: libibnetdisc5 (= ${binary:Version}), ${misc:Depends} Description: InfiniBand diagnostics library headers InfiniBand is a switched fabric communications link used in high-performance computing and enterprise data centers. Its features include high throughput, low latency, quality of service and failover, and it is designed to be scalable. . This package provides development files required to build applications aginast the libibnetdisc5 InfiniBand diagnostic libraries. debian/libibnetdisc-dev.install0000644000000000000000000000006112057337554013775 0ustar usr/include/* usr/lib/*/lib*.a usr/lib/*/lib*.so debian/infiniband-diags.install0000644000000000000000000000002312037074616013745 0ustar usr/sbin usr/share debian/docs0000644000000000000000000000000712037074616010044 0ustar README debian/dirs0000644000000000000000000000001112037074616010050 0ustar usr/sbin debian/README.source0000644000000000000000000000005012037074616011346 0ustar /usr/share/doc/dpatch/README.source.gz