diff -u telepathy-butterfly-0.5.12/debian/changelog telepathy-butterfly-0.5.12/debian/changelog --- telepathy-butterfly-0.5.12/debian/changelog +++ telepathy-butterfly-0.5.12/debian/changelog @@ -1,3 +1,10 @@ +telepathy-butterfly (0.5.12-1ubuntu1) maverick; urgency=low + + * Add patch to fix TypeError in quit(). Thanks Jonny Lamb (LP: + #604806) + + -- Angel Abad Thu, 05 Aug 2010 13:47:28 +0200 + telepathy-butterfly (0.5.12-1) unstable; urgency=low * New upstream release. only in patch2: unchanged: --- telepathy-butterfly-0.5.12.orig/debian/patches/fix_typeerror_in_quit.patch +++ telepathy-butterfly-0.5.12/debian/patches/fix_typeerror_in_quit.patch @@ -0,0 +1,17 @@ +Author: Jonny Lamb +Description: Fix TypeError in quit() crash +Bug: https://bugs.edge.launchpad.net/telepathy-butterfly/+bug/604806 +Forwarded: http://bugs.freedesktop.org/show_bug.cgi?id=29042 + +diff -Nur -x '*.orig' -x '*~' telepathy-butterfly-0.5.12//butterfly/connection_manager.py telepathy-butterfly-0.5.12.new//butterfly/connection_manager.py +--- telepathy-butterfly-0.5.12//butterfly/connection_manager.py 2010-07-09 22:29:06.000000000 +0200 ++++ telepathy-butterfly-0.5.12.new//butterfly/connection_manager.py 2010-08-05 13:48:55.000000000 +0200 +@@ -84,7 +84,7 @@ + + def quit(self): + "Terminates all connections. Must be called upon quit" +- conns = self._connections[:] ++ conns = self._connections.copy() + for connection in conns: + connection.Disconnect() + logger.info("Connection manager quitting")