Your message dated Sun, 13 Sep 2009 06:17:15 +0000
with message-id <[email protected]>
and subject line Bug#544722: fixed in gwibber 1.2.0+bzr358-1
has caused the Debian Bug report #544722,
regarding gwibber: crash on start when using non-integer gnome font-size
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
544722: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=544722
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: gwibber
Version: 1.2.0+bzr355-2
Severity: important
Tags: patch

When the gnome font-size is not an integer, the UI fails to start and I get 
this message :

Traceback (most recent call last):
  File "/usr/bin/gwibber", line 80, in <module>
    GwibberClient(opts.silent)
  File "/usr/lib/pymodules/python2.5/gwibber/client.py", line 173, in __init__
    self.messages_view = self.add_msg_tab(self.client.receive, _("Messages"), 
show_icon = "go-home")
  File "/usr/lib/pymodules/python2.5/gwibber/client.py", line 439, in 
add_msg_tab
    view = gwui.MessageView(self.preferences["theme"], self)
  File "/usr/lib/pymodules/python2.5/gwibber/gwui.py", line 60, in __init__
    self.load_theme(theme)
  File "/usr/lib/pymodules/python2.5/gwibber/gwui.py", line 76, in load_theme
    self.settings.set_property("default-font-size", (int(fsize) + 2))
ValueError: invalid literal for int() with base 10: '7.599609375'

It seems to be due to an unsuccesful try to convert a string representation of 
a float into an integer with 'int()'.
Here is a patch which corrects the issue.


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (2, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_BE.UTF-8, LC_CTYPE=fr_BE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gwibber depends on:
ii  libjs-jquery                  1.3.3-2    JavaScript library for dynamic web
ii  python                        2.5.4-2    An interactive high-level object-o
ii  python-dbus                   0.83.0-1   simple interprocess messaging syst
ii  python-distutils-extra        2.9        enhancements to the Python build s
ii  python-egenix-mxdatetime      3.1.2-1    date and time handling routines fo
ii  python-feedparser             4.1-14     Universal Feed Parser for Python
ii  python-gconf                  2.26.1-1   Python bindings for the GConf conf
ii  python-glade2                 2.14.1-3   GTK+ bindings: Glade support
ii  python-gtk2                   2.14.1-3   Python bindings for the GTK+ widge
ii  python-imaging                1.1.6-3    Python Imaging Library
ii  python-mako                   0.2.4-2    fast and lightweight templating fo
ii  python-notify                 0.1.1-2+b1 Python bindings for libnotify
ii  python-simplejson             2.0.9-1    Simple, fast, extensible JSON enco
ii  python-support                1.0.3      automated rebuilding support for P
ii  python-webkit                 1.1.5-1    WebKit/Gtk Python bindings
ii  python-xdg                    0.15-1.1   A python library to access freedes

gwibber recommends no packages.

gwibber suggests no packages.

-- no debconf information
--- gwibber-1.2.0+bzr355.orig/gwibber/gwui.py   2009-08-18 13:20:07.000000000 
+0200
+++ gwibber-1.2.0+bzr355/gwibber/gwui.py        2009-09-02 12:13:27.000000000 
+0200
@@ -73,7 +73,7 @@
       self.settings.set_property("default-font-family", fname)
       self.settings.set_property("sans-serif-font-family", fname)
       self.settings.set_property("serif-font-family", fname)
-      self.settings.set_property("default-font-size", (int(fsize) + 2))
+      self.settings.set_property("default-font-size", (float(fsize) + 2))
 
   def load_messages(self, message_store = None):
     for n, m in enumerate(self.message_store):

--- End Message ---
--- Begin Message ---
Source: gwibber
Source-Version: 1.2.0+bzr358-1

We believe that the bug you reported is fixed in the latest version of
gwibber, which is due to be installed in the Debian FTP archive:

gwibber_1.2.0+bzr358-1.diff.gz
  to pool/main/g/gwibber/gwibber_1.2.0+bzr358-1.diff.gz
gwibber_1.2.0+bzr358-1.dsc
  to pool/main/g/gwibber/gwibber_1.2.0+bzr358-1.dsc
gwibber_1.2.0+bzr358-1_all.deb
  to pool/main/g/gwibber/gwibber_1.2.0+bzr358-1_all.deb
gwibber_1.2.0+bzr358.orig.tar.gz
  to pool/main/g/gwibber/gwibber_1.2.0+bzr358.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Kartik Mistry <[email protected]> (supplier of updated gwibber package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Sun, 13 Sep 2009 11:13:21 +0530
Source: gwibber
Binary: gwibber
Architecture: source all
Version: 1.2.0+bzr358-1
Distribution: unstable
Urgency: low
Maintainer: Filip Chabik <[email protected]>
Changed-By: Kartik Mistry <[email protected]>
Description: 
 gwibber    - microblogging client for GNOME
Closes: 544722 544723 546389
Changes: 
 gwibber (1.2.0+bzr358-1) unstable; urgency=low
 .
   [Filip Chabik]
   * New upstream release from bazaar branch 358:
     + New translations merged from Launchpad.
   [Kartik Mistry]
   * debian/control:
     + Removed unnecessary dependency on python-distutils-extra, Thanks to
       Andrew McMillan (Closes: #546389)
   * debian/patches/02_value_fix_font.patch:
     + Added patch to fix crash at start with non-integer gnome font-size
      (Closes: #544722, #544723)
   * Refreshed all patches
Checksums-Sha1: 
 d0f5f50fb74b71ab450658bc43c42d9c13aa7098 1202 gwibber_1.2.0+bzr358-1.dsc
 64f6ef1ae92a4d1987a717faa8e03b01a2a34815 298416 
gwibber_1.2.0+bzr358.orig.tar.gz
 cd070aa7a7c96b99cda1a028ec1348ac336619bd 6105 gwibber_1.2.0+bzr358-1.diff.gz
 6769d82f9bd9b229d25bfae334c6b98a8fae24e2 204170 gwibber_1.2.0+bzr358-1_all.deb
Checksums-Sha256: 
 1584924be9643b8f9682b0003ddada20905386eacd6437052ac4d9a1634ae67c 1202 
gwibber_1.2.0+bzr358-1.dsc
 5c3140435afeb805e55639e5fbb51a93ce925c7c778b66592dbea659f7571258 298416 
gwibber_1.2.0+bzr358.orig.tar.gz
 5cd2ab1b38b60f98bda5abaf4960da8889a43f5d21d66bc1f935acc27609aaa3 6105 
gwibber_1.2.0+bzr358-1.diff.gz
 5e4e90c41396f8a9607bc31c581b4a71b647c074dbdaa99c517928edf893915c 204170 
gwibber_1.2.0+bzr358-1_all.deb
Files: 
 b438ec7c2bc30603238501f2a9936745 1202 gnome optional gwibber_1.2.0+bzr358-1.dsc
 ad3fc32cef835d64aab027d5dc1eef51 298416 gnome optional 
gwibber_1.2.0+bzr358.orig.tar.gz
 f4dcb346f01ca0f5b2ef96172e5bd149 6105 gnome optional 
gwibber_1.2.0+bzr358-1.diff.gz
 fa6335d726a670e97558638c2e2c6226 204170 gnome optional 
gwibber_1.2.0+bzr358-1_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkqsirgACgkQoRg/jtECjI0EDQCgoc+aQeRIjXiTbNZra4F2Y46t
Pn8AoJwPTB8wBPMD7aCzq2Td9jNmk9zD
=Uv9X
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to