diff -Nru blueproximity-1.2.5/debian/changelog blueproximity-1.2.5/debian/changelog --- blueproximity-1.2.5/debian/changelog 2011-11-27 23:44:43.000000000 +0400 +++ blueproximity-1.2.5/debian/changelog 2014-10-02 15:33:06.000000000 +0400 @@ -1,3 +1,10 @@ +blueproximity (1.2.5-6.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * fix_gdk_lock.patch: fixes crash at startup with GLib >= 2.41 + + -- Vlad Orlov Thu, 02 Oct 2014 15:31:50 +0400 + blueproximity (1.2.5-6) unstable; urgency=low * debian/control and debian/rules: modified to comply with dh_python2 diff -Nru blueproximity-1.2.5/debian/patches/fix_gdk_lock.patch blueproximity-1.2.5/debian/patches/fix_gdk_lock.patch --- blueproximity-1.2.5/debian/patches/fix_gdk_lock.patch 1970-01-01 03:00:00.000000000 +0300 +++ blueproximity-1.2.5/debian/patches/fix_gdk_lock.patch 2014-10-02 15:35:07.000000000 +0400 @@ -0,0 +1,14 @@ +Index: blueproximity-1.2.5/proximity.py +=================================================================== +--- blueproximity-1.2.5.orig/proximity.py ++++ blueproximity-1.2.5/proximity.py +@@ -1296,5 +1296,8 @@ if __name__=='__main__': + gtk.gdk.threads_init() + + # aaaaand action! ++ # not so fast guys, we need to make GLib >= 2.41 happy first ++ gtk.gdk.threads_enter() + gtk.main() +- ++ gtk.gdk.threads_leave() ++ diff -Nru blueproximity-1.2.5/debian/patches/series blueproximity-1.2.5/debian/patches/series --- blueproximity-1.2.5/debian/patches/series 2011-11-27 23:56:47.000000000 +0400 +++ blueproximity-1.2.5/debian/patches/series 2014-10-02 15:33:27.000000000 +0400 @@ -3,3 +3,4 @@ blueproximity.desktop.patch blueproximity.patch support-new-configobj.patch +fix_gdk_lock.patch