diff -u gnome-lirc-properties-0.3.1/debian/changelog gnome-lirc-properties-0.3.1/debian/changelog --- gnome-lirc-properties-0.3.1/debian/changelog +++ gnome-lirc-properties-0.3.1/debian/changelog @@ -1,3 +1,12 @@ +gnome-lirc-properties (0.3.1-0ubuntu3) karmic; urgency=low + + * debian/patches: + + Add shellquote_apple_remote.patch to fix authentication issues with + apple remote on a macbook pro. Thanks to Jesus Miguel Mercado + Murillo. LP: #425389 + + -- Bhavani Shankar Mon, 28 Sep 2009 20:24:17 +0530 + gnome-lirc-properties (0.3.1-0ubuntu2) karmic; urgency=low * Update ubuntu_dbus_policy.patch to fix authentication issues with dbus only in patch2: unchanged: --- gnome-lirc-properties-0.3.1.orig/debian/patches/shellquote_apple_remote.patch +++ gnome-lirc-properties-0.3.1/debian/patches/shellquote_apple_remote.patch @@ -0,0 +1,28 @@ +# +# Ubuntu bug: https://bugs.launchpad.net/bugs/425389 +# Patch: http://launchpadlibrarian.net/32499483/quotes.patch +# Author: Jesus Miguel Mercado Murillo +# Description: This patch fixes authentication issues with apple remote on macbook pro +# +diff -Nur -x '*.orig' -x '*~' gnome-lirc-properties-0.3.1/gnome_lirc_properties/shellquote.py gnome-lirc-properties-0.3.1.new/gnome_lirc_properties/shellquote.py +--- gnome-lirc-properties-0.3.1/gnome_lirc_properties/shellquote.py 2008-04-25 10:33:56.000000000 +0100 ++++ gnome-lirc-properties-0.3.1.new/gnome_lirc_properties/shellquote.py 2009-09-28 20:20:17.000000000 +0530 +@@ -34,7 +34,7 @@ + + def shellquote(str): + if str == "": +- return "''" ++ return "" + + result = [] + for c in str: +@@ -50,7 +50,7 @@ + class ShellQuoteTests(unittest.TestCase): + + def testEmpty(self): +- self.failUnlessEqual(shellquote(""), "''") ++ self.failUnlessEqual(shellquote(""), "") + + def testSimple(self): + self.failUnlessEqual(shellquote("abc"), "abc") +