Package: pygtk / 2.24.0-5.1

Metadata

Package Version Patches format
pygtk 2.24.0-5.1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
01_pygtk demo.patch | (download)

examples/pygtk-demo/pygtk-demo.in | 4 2 + 2 - 0 !
1 file changed, 2 insertions(+), 2 deletions(-)

---
03_testsuite_filechooser.patch | (download)

tests/runtests.py | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

---
04_Fix_leaks_of_Pango_objects.patch | (download)

gtk/gtk-2.10.defs | 2 2 + 0 - 0 !
pangocairo.override | 11 8 + 3 - 0 !
2 files changed, 10 insertions(+), 3 deletions(-)

 fix leaks of pango objects

Gtk.PrintContext.create_pango_context()
Gtk.PrintContext.create_pango_layout()
pangocairo.CairoContext.create_layout()

were leaking the objects they returned.

https://bugzilla.gnome.org/show_bug.cgi?id=660216

05_Fix_GdkColor_pixel_parse.patch | (download)

gtk/gdkcolor.override | 5 4 + 1 - 0 !
1 file changed, 4 insertions(+), 1 deletion(-)

 fix bus error on sparc64
 Since GdkColor.pixel is a guint32, but "k" in the format string means unsigned
 long, a temporary local needs to be used to get the right alignment and size
 on platforms where unsigned long is not 32-bit.