diffstat of debian/ for zenity_3.4.0-2 zenity_3.7.2-SprezzOS1 changelog | 12 ++++++++++++ control | 8 ++++---- control.in | 6 +++--- patches/02_fix_segfault_in_listview.patch | 29 ----------------------------- patches/series | 1 - rules | 2 -- watch | 2 +- zenity-common.install | 2 +- 8 files changed, 21 insertions(+), 41 deletions(-) --- zenity-3.4.0/debian/changelog 2012-05-12 19:20:57.000000000 +0000 +++ zenity-3.7.2/debian/changelog 2013-03-10 15:29:15.000000000 +0000 @@ -1,3 +1,15 @@ +zenity (3.7.2-SprezzOS1) unstable; urgency=low + + * New upstream + + -- Nick Black Sun, 10 Mar 2013 11:28:57 -0400 + +zenity (3.6.0-SprezzOS1) unstable; urgency=low + + * Upgrade to new upstream 3.6.0 + + -- nick black Mon, 05 Nov 2012 02:41:03 -0500 + zenity (3.4.0-2) unstable; urgency=low [ Jordi Mallach ] --- zenity-3.4.0/debian/control 2012-05-12 19:23:58.000000000 +0000 +++ zenity-3.7.2/debian/control 2013-03-10 15:29:19.000000000 +0000 @@ -6,20 +6,20 @@ Source: zenity Section: gnome Priority: optional -Maintainer: Debian GNOME Maintainers -Uploaders: Emilio Pozuelo Monfort , Frederic Peters , Jordi Mallach , Laurent Bigonville , Michael Biebl +Maintainer: Nick Black +XSBC-Original-Maintainer: Debian GNOME Maintainers +Uploaders: Debian GNOME Maintainers , Frederic Peters , Jordi Mallach , Laurent Bigonville , Michael Biebl Build-Depends: debhelper (>= 9), cdbs (>= 0.4.4), gnome-pkg-tools (>= 0.10), gnome-doc-utils (>= 0.3.2), intltool (>= 0.40.0), + itstool, libglib2.0-dev, libgtk-3-dev (>= 3.0.0), libnotify-dev (>= 0.6.1), libwebkitgtk-3.0-dev (>= 1.4.0) Standards-Version: 3.9.3 -Vcs-Svn: svn://anonscm.debian.org/svn/pkg-gnome/desktop/unstable/zenity -Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/zenity Homepage: http://live.gnome.org/Zenity Package: zenity --- zenity-3.4.0/debian/control.in 2012-05-12 19:13:57.000000000 +0000 +++ zenity-3.7.2/debian/control.in 2013-03-10 15:29:15.000000000 +0000 @@ -1,20 +1,20 @@ Source: zenity Section: gnome Priority: optional -Maintainer: Debian GNOME Maintainers +Maintainer: Nick Black +XSBC-Original-Maintainer: Debian GNOME Maintainers Uploaders: @GNOME_TEAM@ Build-Depends: debhelper (>= 9), cdbs (>= 0.4.4), gnome-pkg-tools (>= 0.10), gnome-doc-utils (>= 0.3.2), intltool (>= 0.40.0), + itstool, libglib2.0-dev, libgtk-3-dev (>= 3.0.0), libnotify-dev (>= 0.6.1), libwebkitgtk-3.0-dev (>= 1.4.0) Standards-Version: 3.9.3 -Vcs-Svn: svn://anonscm.debian.org/svn/pkg-gnome/desktop/unstable/zenity -Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/zenity Homepage: http://live.gnome.org/Zenity Package: zenity --- zenity-3.4.0/debian/patches/02_fix_segfault_in_listview.patch 2012-05-12 19:05:54.000000000 +0000 +++ zenity-3.7.2/debian/patches/02_fix_segfault_in_listview.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -diff --git a/src/tree.c b/src/tree.c -index ad4a6d1..b347b15 100644 ---- a/src/tree.c -+++ b/src/tree.c -@@ -120,13 +120,13 @@ zenity_tree_handle_stdin (GIOChannel *channel, - - string = g_string_new (NULL); - -- while (channel->is_readable != TRUE) -+ while ((g_io_channel_get_flags(channel) & G_IO_FLAG_IS_READABLE) != G_IO_FLAG_IS_READABLE) - ; - do { - gint status; - - do { -- if (channel->is_readable == TRUE) -+ if (g_io_channel_get_flags(channel) & G_IO_FLAG_IS_READABLE) - status = g_io_channel_read_line_string (channel, string, NULL, &error); - else - return FALSE; -@@ -645,7 +645,7 @@ zenity_tree_dialog_response (GtkWidget *widget, int response, gpointer data) - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_ESC); - break; - } -- if (channel->is_readable == TRUE) -+ if (channel != NULL && g_io_channel_get_flags (channel) & G_IO_FLAG_IS_READABLE) - g_io_channel_shutdown (channel, TRUE, NULL); - - gtk_main_quit (); --- zenity-3.4.0/debian/patches/series 2012-05-12 19:06:04.000000000 +0000 +++ zenity-3.7.2/debian/patches/series 2013-03-10 15:29:15.000000000 +0000 @@ -1,2 +1 @@ 01_dont_quit_zenity_when_stdin_ends.patch -02_fix_segfault_in_listview.patch --- zenity-3.4.0/debian/rules 2012-04-02 11:43:42.000000000 +0000 +++ zenity-3.7.2/debian/rules 2013-03-10 15:29:15.000000000 +0000 @@ -6,8 +6,6 @@ include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk -include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk -DEB_CONFIGURE_EXTRA_FLAGS += --disable-scrollkeeper - LDFLAGS += -Wl,-O1 -Wl,-z,defs -Wl,--as-needed DEB_DH_INSTALL_ARGS += --list-missing --- zenity-3.4.0/debian/watch 2012-04-02 11:43:42.000000000 +0000 +++ zenity-3.7.2/debian/watch 2013-03-10 15:29:15.000000000 +0000 @@ -1,2 +1,2 @@ version=3 -http://ftp.gnome.org/pub/gnome/sources/zenity/([\d\.]+[02468])/zenity-([\d\.]+)\.tar\.xz +http://ftp.gnome.org/pub/gnome/sources/zenity/([\d\.]+)/zenity-([\d\.]+)\.tar\.xz --- zenity-3.4.0/debian/zenity-common.install 2012-04-02 11:43:42.000000000 +0000 +++ zenity-3.7.2/debian/zenity-common.install 2013-03-10 15:29:15.000000000 +0000 @@ -1,3 +1,3 @@ usr/share/zenity/ usr/share/locale/ -usr/share/gnome/help/zenity/ +usr/share/help/