--- guake-0.5.0/debian/changelog 2014-09-08 22:50:52.000000000 -0500 +++ guake-0.5.0/debian/changelog 2014-11-10 17:05:26.000000000 -0500 @@ -1,3 +1,11 @@ +guake (0.5.0-2) unstable; urgency=low + + * debian/patches + + fix_floating_point_exception.diff patch + + floating point exception when system fixed font set. Closes: #761430 + + -- Daniel Echeverry Mon, 10 Nov 2014 16:52:50 -0500 + guake (0.5.0-1) unstable; urgency=low * New upstream release. --- guake-0.5.0/debian/patches/fix_floating_point_exception.diff 1969-12-31 19:00:00.000000000 -0500 +++ guake-0.5.0/debian/patches/fix_floating_point_exception.diff 2014-11-10 17:03:43.000000000 -0500 @@ -0,0 +1,17 @@ +Description: Fix floating point exception when system fixed font set +Author: Daniel Echeverry +Bug: https://github.com/Guake/guake/issues/260 +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=761430 +Last-Update: <2014-11-10> +--- a/src/guake ++++ b/src/guake +@@ -300,6 +300,9 @@ class GConfHandler(object): + else: + key = KEY('/style/font/style') + ++ if client.get_string(key) is None: ++ print "cannot use system font, using settings" ++ key = KEY('/style/font/style') + font = FontDescription(client.get_string(key)) + for i in self.guake.term_list: + i.set_font(font) --- guake-0.5.0/debian/patches/series 2014-09-05 21:46:30.000000000 -0500 +++ guake-0.5.0/debian/patches/series 2014-11-10 17:00:37.000000000 -0500 @@ -1,3 +1,4 @@ fix_manpage.diff guake.desktop.patch fix_shebang.diff +fix_floating_point_exception.diff