[Pkg-ofed-commits] [infiniband-diags] 04/16: remove all the patchs fixing bashisms, they have been merged upstream

Ana Beatriz Guerrero López ana at moszumanska.debian.org
Tue Jul 1 12:10:50 UTC 2014


This is an automated email from the git hooks/post-receive script.

ana pushed a commit to branch master
in repository infiniband-diags.

commit c518f870841c72827a7bb5c49061d50cd6d78fcf
Author: Ana Guerrero López <ana at ekaia.org>
Date:   Tue Jul 1 11:02:44 2014 +0200

    remove all the patchs fixing bashisms, they have been merged upstream
---
 debian/changelog                                  |  1 +
 debian/patches/04-ibcheckerrors-bashisms.patch    | 22 ---------
 debian/patches/06-ibcheckerrs-bashisms.patch      | 56 -----------------------
 debian/patches/08-ibchecknet-bashisms.patch       | 22 ---------
 debian/patches/10-ibchecknode-bashisms.patch      | 42 -----------------
 debian/patches/12-ibcheckport-bashisms.patch      | 42 -----------------
 debian/patches/14-ibcheckportstate-bashisms.patch | 42 -----------------
 debian/patches/16-ibcheckportwidth-bashisms.patch | 42 -----------------
 debian/patches/18-ibcheckstate-bashisms.patch     | 22 ---------
 debian/patches/20-ibcheckwidth-bashisms.patch     | 22 ---------
 debian/patches/22-ibclearcounters-bashisms.patch  | 22 ---------
 debian/patches/24-ibclearerrors-bashisms.patch    | 22 ---------
 debian/patches/26-ibdatacounters-bashisms.patch   | 22 ---------
 debian/patches/28-ibdatacounts-bashisms.patch     | 43 -----------------
 debian/patches/30-ibhosts-bashisms.patch          | 17 -------
 debian/patches/32-ibrouters-bashisms.patch        | 17 -------
 debian/patches/34-ibswitches-bashisms.patch       | 17 -------
 debian/patches/series                             | 16 -------
 18 files changed, 1 insertion(+), 488 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 9b65d0b..8cd48fd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 infiniband-diags (1.6.4-1) UNRELEASED; urgency=medium
 
   * New upstream release.
+  * Remove all the patchs fixing bashisms, they have been merged upstream.
 
  -- Ana Beatriz Guerrero Lopez <ana at debian.org>  Tue, 01 Jul 2014 10:59:29 +0200
 
diff --git a/debian/patches/04-ibcheckerrors-bashisms.patch b/debian/patches/04-ibcheckerrors-bashisms.patch
deleted file mode 100644
index 79fcf9f..0000000
--- a/debian/patches/04-ibcheckerrors-bashisms.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [-b] [-v] [-N | -nocolor]"\
- 	    "[<topology-file> | -C ca_name -P ca_port -t(imeout) timeout_ms]"
- 	exit -1
- }
- 
--function user_abort() {
-+user_abort() {
- 	echo "Aborted"
- 	exit 1
- }
diff --git a/debian/patches/06-ibcheckerrs-bashisms.patch b/debian/patches/06-ibcheckerrs-bashisms.patch
deleted file mode 100644
index bce5c02..0000000
--- a/debian/patches/06-ibcheckerrs-bashisms.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [-b] [-v] [-G] [-T <threshold_file>]" \
- 	    "[-s(how_thresholds)] [-N \| -nocolor] [-C ca_name] [-P ca_port]" \
- 	    "[-t(imeout) timeout_ms] <lid|guid> [<port>]"
- 	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
- }
- 
diff --git a/debian/patches/08-ibchecknet-bashisms.patch b/debian/patches/08-ibchecknet-bashisms.patch
deleted file mode 100644
index e476827..0000000
--- a/debian/patches/08-ibchecknet-bashisms.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [-v] [-N | -nocolor]" \
- 	    "[<topology-file> | -C ca_name -P ca_port -t(imeout) timeout_ms]"
- 	exit -1
- }
- 
--function user_abort() {
-+user_abort() {
- 	echo "Aborted"
- 	exit 1
- }
diff --git a/debian/patches/10-ibchecknode-bashisms.patch b/debian/patches/10-ibchecknode-bashisms.patch
deleted file mode 100644
index 36ffdb4..0000000
--- a/debian/patches/10-ibchecknode-bashisms.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [-v] [-N | -nocolor] [-G]" \
- 	    "[-C ca_name] [-P ca_port] [-t(imeout) timeout_ms] <lid|guid>"
- 	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=""
diff --git a/debian/patches/12-ibcheckport-bashisms.patch b/debian/patches/12-ibcheckport-bashisms.patch
deleted file mode 100644
index d99763f..0000000
--- a/debian/patches/12-ibcheckport-bashisms.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [-v] [-N | -nocolor] [-G]" \
- 	   "[-C ca_name] [-P ca_port] [-t(imeout) timeout_ms] <lid|guid> <port>"
- 	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=""
diff --git a/debian/patches/14-ibcheckportstate-bashisms.patch b/debian/patches/14-ibcheckportstate-bashisms.patch
deleted file mode 100644
index d690d86..0000000
--- a/debian/patches/14-ibcheckportstate-bashisms.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [-v] [-N | -nocolor] [-G]" \
- 	   "[-C ca_name] [-P ca_port] [-t(imeout) timeout_ms] <lid|guid> <port>"
- 	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=""
diff --git a/debian/patches/16-ibcheckportwidth-bashisms.patch b/debian/patches/16-ibcheckportwidth-bashisms.patch
deleted file mode 100644
index 70c7f17..0000000
--- a/debian/patches/16-ibcheckportwidth-bashisms.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [-v] [-N | -nocolor] [-G]" \
- 	   "[-C ca_name] [-P ca_port] [-t(imeout) timeout_ms] <lid|guid> <port>"
- 	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=""
diff --git a/debian/patches/18-ibcheckstate-bashisms.patch b/debian/patches/18-ibcheckstate-bashisms.patch
deleted file mode 100644
index cc21f3c..0000000
--- a/debian/patches/18-ibcheckstate-bashisms.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [-v] [-N | -nocolor]" \
- 	    "[<topology-file> | -C ca_name -P ca_port -t(imeout) timeout_ms]"
- 	exit -1
- }
- 
--function user_abort() {
-+user_abort() {
- 	echo "Aborted"
- 	exit 1
- }
diff --git a/debian/patches/20-ibcheckwidth-bashisms.patch b/debian/patches/20-ibcheckwidth-bashisms.patch
deleted file mode 100644
index 0a93675..0000000
--- a/debian/patches/20-ibcheckwidth-bashisms.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [-v] [-N | -nocolor]" \
- 	    "[<topology-file> \| -C ca_name -P ca_port -t(imeout) timeout_ms]"
- 	exit -1
- }
- 
--function user_abort() {
-+user_abort() {
- 	echo "Aborted"
- 	exit 1
- }
diff --git a/debian/patches/22-ibclearcounters-bashisms.patch b/debian/patches/22-ibclearcounters-bashisms.patch
deleted file mode 100644
index 072771f..0000000
--- a/debian/patches/22-ibclearcounters-bashisms.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [<topology-file>" \
- 	    "| -C ca_name -P ca_port -t(imeout) timeout_ms]"
- 	exit -1
- }
- 
--function user_abort() {
-+user_abort() {
- 	echo "Aborted"
- 	exit 1
- }
diff --git a/debian/patches/24-ibclearerrors-bashisms.patch b/debian/patches/24-ibclearerrors-bashisms.patch
deleted file mode 100644
index 6c24efa..0000000
--- a/debian/patches/24-ibclearerrors-bashisms.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [-N | -nocolor] [<topology-file>" \
- 	    "| -C ca_name -P ca_port -t(imeout) timeout_ms]"
- 	exit -1
- }
- 
--function user_abort() {
-+user_abort() {
- 	echo "Aborted"
- 	exit 1
- }
diff --git a/debian/patches/26-ibdatacounters-bashisms.patch b/debian/patches/26-ibdatacounters-bashisms.patch
deleted file mode 100644
index 477a1b8..0000000
--- a/debian/patches/26-ibdatacounters-bashisms.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [-b] [-v] [-N | -nocolor]" \
- 	    "[<topology-file> \| -C ca_name -P ca_port -t(imeout) timeout_ms]"
- 	exit -1
- }
- 
--function user_abort() {
-+user_abort() {
- 	echo "Aborted"
- 	exit 1
- }
diff --git a/debian/patches/28-ibdatacounts-bashisms.patch b/debian/patches/28-ibdatacounts-bashisms.patch
deleted file mode 100644
index ce694ec..0000000
--- a/debian/patches/28-ibdatacounts-bashisms.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [-b] [-v] [-G] [-N | -nocolor]" \
- 	    "[-C ca_name] [-P ca_port] [-t(imeout) timeout_ms] <lid|guid>" \
- 	    "[<port>]"
- 	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=""
diff --git a/debian/patches/30-ibhosts-bashisms.patch b/debian/patches/30-ibhosts-bashisms.patch
deleted file mode 100644
index ec061a4..0000000
--- a/debian/patches/30-ibhosts-bashisms.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [<topology-file> | -C ca_name" \
- 	    "-P ca_port -t timeout_ms]"
- 	exit -1
diff --git a/debian/patches/32-ibrouters-bashisms.patch b/debian/patches/32-ibrouters-bashisms.patch
deleted file mode 100644
index 1d86e18..0000000
--- a/debian/patches/32-ibrouters-bashisms.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [<topology-file> | -C ca_name" \
- 	    "-P ca_port -t timeout_ms]"
- 	exit -1
diff --git a/debian/patches/34-ibswitches-bashisms.patch b/debian/patches/34-ibswitches-bashisms.patch
deleted file mode 100644
index a908731..0000000
--- a/debian/patches/34-ibswitches-bashisms.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-From: <benoit.mortier at opensides.be>
-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:- at IBSCRIPTPATH@}
- 
--function usage() {
-+usage() {
- 	echo Usage: `basename $0` "[-h] [<topology-file> | -C ca_name" \
- 	    "-P ca_port -t timeout_ms]"
- 	exit -1
diff --git a/debian/patches/series b/debian/patches/series
index 0465a3d..1a200bb 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,17 +1 @@
-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

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ofed/infiniband-diags.git



More information about the Pkg-ofed-commits mailing list