rev 11414 - in kde-extras/kdebluetooth/trunk/debian: . patches

Michael Meskes meskes at alioth.debian.org
Wed Jul 9 09:48:16 UTC 2008


Author: meskes
Date: 2008-07-09 09:48:15 +0000 (Wed, 09 Jul 2008)
New Revision: 11414

Modified:
   kde-extras/kdebluetooth/trunk/debian/changelog
   kde-extras/kdebluetooth/trunk/debian/patches/01_posix_shell.patch
Log:
Added just another patch to remove a bashism.



Modified: kde-extras/kdebluetooth/trunk/debian/changelog
===================================================================
--- kde-extras/kdebluetooth/trunk/debian/changelog	2008-07-09 00:54:07 UTC (rev 11413)
+++ kde-extras/kdebluetooth/trunk/debian/changelog	2008-07-09 09:48:15 UTC (rev 11414)
@@ -1,8 +1,9 @@
 kdebluetooth (1.0~beta8-5) unstable; urgency=low
 
   * Removed XS- headers in control file.
+  * Fixed bashism in dunhandler, closes: #489616
 
- -- Michael Meskes <meskes at debian.org>  Sat, 15 Mar 2008 21:38:33 +0100
+ -- Michael Meskes <meskes at debian.org>  Wed, 09 Jul 2008 11:46:45 +0200
 
 kdebluetooth (1.0~beta8-4) unstable; urgency=low
 

Modified: kde-extras/kdebluetooth/trunk/debian/patches/01_posix_shell.patch
===================================================================
--- kde-extras/kdebluetooth/trunk/debian/patches/01_posix_shell.patch	2008-07-09 00:54:07 UTC (rev 11413)
+++ kde-extras/kdebluetooth/trunk/debian/patches/01_posix_shell.patch	2008-07-09 09:48:15 UTC (rev 11414)
@@ -10,3 +10,15 @@
      konqueror "sdp:/"
  else
      host=$(echo $@ | sed 's/sdp:\/\/\[\(..:..:..:..:..:..\).*/\1/')
+diff -ruN kdebluetooth-1.0_beta8.orig/kdebluetooth/kdebluetooth-common/dunhandler/dunhandler kdebluetooth-1.0_beta8/kdebluetooth/kdebluetooth-common/dunhandler/dunhandler
+--- kdebluetooth-1.0_beta8.orig/kdebluetooth/kdebluetooth-common/dunhandler/dunhandler	2007-09-17 18:52:29.000000000 +0200
++++ kdebluetooth-1.0_beta8/kdebluetooth/kdebluetooth-common/dunhandler/dunhandler	2008-02-11 13:40:35.000000000 +0100
+@@ -45,7 +45,7 @@
+ # Find the first unbinded /dev/rfcommX
+ DEV_NUMBER=0
+ while test "x"$(echo $RFCOMM_SHOW_OUT | grep "rfcomm"$DEV_NUMBER":"| cut -d' ' -f1 ) != "x"; do
+-	DEV_NUMBER=$[$DEV_NUMBER+1]
++	DEV_NUMBER=$(($DEV_NUMBER+1))
+ 	if test $DEV_NUMBER -gt 255; then break; fi;
+ done;
+ 




More information about the pkg-kde-commits mailing list