[Pkg-kde-extras] Bug#489622: kvpnc: diff for NMU version 0.9.1-1.1
Raphael Geissert
geissert at debian.org
Mon Jul 6 02:57:47 UTC 2009
tags 489622 + patch
thanks
Dear maintainer,
I've prepared an NMU for kvpnc (versioned as 0.9.1-1.1) and
uploaded it to DELAYED/7. Please free to tell me if I should
delay it longer.
Regards.
diff -u kvpnc-0.9.1/debian/changelog kvpnc-0.9.1/debian/changelog
--- kvpnc-0.9.1/debian/changelog
+++ kvpnc-0.9.1/debian/changelog
@@ -1,3 +1,10 @@
+kvpnc (0.9.1-1.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * 15_fix_bashisms.diff: Fix bashism, patch by Chris Lamb. (Closes: #489622)
+
+ -- Raphael Geissert <geissert at debian.org> Thu, 02 Jul 2009 21:06:47 -0500
+
kvpnc (0.9.1-1) unstable; urgency=low
* New upstream release (KDE4 is here)
only in patch2:
unchanged:
--- kvpnc-0.9.1.orig/debian/patches/15_fix_bashisms.diff
+++ kvpnc-0.9.1/debian/patches/15_fix_bashisms.diff
@@ -0,0 +1,21 @@
+diff -urNd kvpnc-0.9.0.orig/src/ping_check.sh kvpnc-0.9.0/src/ping_check.sh
+--- kvpnc-0.9.0.orig/src/ping_check.sh 2008-08-24 14:28:03.000000000 +0100
++++ kvpnc-0.9.0/src/ping_check.sh 2008-08-24 14:28:46.000000000 +0100
+@@ -61,7 +61,7 @@
+ if [ $QUIET -eq '1' ]; then
+ echo -n "Ping sequence "$count": "
+ fi
+-if [[ -z `ping -c 1 -w 5 $PINGHOST 2>&1 | grep '1 received'` ]]; then
++if [ -z `ping -c 1 -w 5 $PINGHOST 2>&1 | grep '1 received'` ]; then
+ fails=`expr $fails + 1`
+ if [ $QUIET -eq '1' ]; then
+ echo "failed!"
+@@ -78,7 +78,7 @@
+ if [ $QUIET -eq '1' ]; then
+ echo -n "PING failitures: "$fails" => "
+ fi
+-if (( $fails > `expr $TEST_PING_COUNT - 1` )); then
++if [ $fails -gt `expr $TEST_PING_COUNT - 1` ]; then
+ echo "PING failed!"
+
+ else
More information about the pkg-kde-extras
mailing list