Hello community, here is the log from the commit of package zenity for openSUSE:Factory checked in at Fri Sep 9 12:55:51 CEST 2011.
-------- --- GNOME/zenity/zenity.changes 2011-04-05 18:51:04.000000000 +0200 +++ /mounts/work_src_done/STABLE/zenity/zenity.changes 2011-08-17 18:04:02.000000000 +0200 @@ -1,0 +2,13 @@ +Wed Aug 17 17:32:41 CEST 2011 - [email protected] + +- Update to version 3.1.5: + + Enable html support in --text-info option. + + Add --ok-label and --cancel-label in all dialogs. + + Documentation / man page updates. + + Bugs fixed: bgo#611297, bgo#592199, bgo#598655, bgo#540489, + bgo#501001, bgo#621907, bgo#651948, bgo#651723. + + Updated translations. +- Add zenity-add-sentinel.patch: Add sentinel to g_object_get + function call. + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- zenity-3.0.0.tar.bz2 New: ---- zenity-3.1.5.tar.bz2 zenity-add-sentinel.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ zenity.spec ++++++ --- /var/tmp/diff_new_pack.pLMvlr/_old 2011-09-09 12:55:47.000000000 +0200 +++ /var/tmp/diff_new_pack.pLMvlr/_new 2011-09-09 12:55:47.000000000 +0200 @@ -18,13 +18,15 @@ Name: zenity -Version: 3.0.0 +Version: 3.1.5 Release: 1 License: LGPLv2.1+ Summary: GNOME Command Line Dialog Utility Url: http://www.gnome.org/ Group: System/GUI/GNOME -Source: ftp://ftp.gnome.org/pub/GNOME/sources/zenity/2.20/%{name}-%{version}.tar.bz2 +Source: http://download.gnome.org/sources/zenity/3.1/%{name}-%{version}.tar.bz2 +# PATCH-FIX-UPSTREAM zenity-add-sentinel.patch bgo#656757 [email protected] -- Add sentinel to g_object_get function call. +Patch0: zenity-add-sentinel.patch BuildRequires: fdupes BuildRequires: gnome-doc-utils-devel BuildRequires: intltool @@ -49,6 +51,7 @@ %lang_package %prep %setup -q +%patch0 -p1 translation-update-upstream %build ++++++ zenity-3.0.0.tar.bz2 -> zenity-3.1.5.tar.bz2 ++++++ ++++ 23160 lines of diff (skipped) ++++++ zenity-add-sentinel.patch ++++++ >From 2b58848b44ba8890ff5d962dee6b4895d117d1a5 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger <[email protected]> Date: Wed, 17 Aug 2011 17:59:11 +0200 Subject: [PATCH] bgo#656757: missing sentinel in function call g_object_get needs a NULL sentinel. --- src/color.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/color.c b/src/color.c index 5e24e3d..4c9c151 100644 --- a/src/color.c +++ b/src/color.c @@ -58,7 +58,7 @@ void zenity_colorselection (ZenityData *data, ZenityColorData *color_data) } if (data->ok_label) { - g_object_get (G_OBJECT (dialog), "ok-button", &button); + g_object_get (G_OBJECT (dialog), "ok-button", &button, NULL); gtk_button_set_label (GTK_BUTTON (button), data->ok_label); gtk_button_set_image (GTK_BUTTON (button), gtk_image_new_from_stock (GTK_STOCK_OK, GTK_ICON_SIZE_BUTTON)); @@ -66,7 +66,7 @@ void zenity_colorselection (ZenityData *data, ZenityColorData *color_data) } if (data->cancel_label) { - g_object_get (G_OBJECT (dialog), "cancel-button", &button); + g_object_get (G_OBJECT (dialog), "cancel-button", &button, NULL); gtk_button_set_label (GTK_BUTTON (button), data->cancel_label); gtk_button_set_image (GTK_BUTTON (button), gtk_image_new_from_stock (GTK_STOCK_CANCEL, GTK_ICON_SIZE_BUTTON)); -- 1.7.6 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
