summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Bigonville <bigon@debian.org>2014-05-24 10:18:56 +0000
committerLaurent Bigonville <bigon@debian.org>2014-05-24 10:18:56 +0000
commitaab44e811ac5861595e95387df62c22d39db1cd0 (patch)
tree107dbb5e8a0642a535e37e5f37ca0844844b11a3
parentClose bugs in the bts that have been fixed upstream (diff)
downloadzenity-aab44e811ac5861595e95387df62c22d39db1cd0.tar.gz
zenity-aab44e811ac5861595e95387df62c22d39db1cd0.tar.bz2
zenity-aab44e811ac5861595e95387df62c22d39db1cd0.zip
Drop d/p/01_dont_quit_zenity_when_stdin_ends.patch: This patch is changing
the upstream behavior when using --listen flag (Closes: #612683)
-rw-r--r--debian/changelog4
-rw-r--r--debian/patches/01_dont_quit_zenity_when_stdin_ends.patch27
-rw-r--r--debian/patches/series1
3 files changed, 3 insertions, 29 deletions
diff --git a/debian/changelog b/debian/changelog
index b74311c2..244e2a95 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,8 +9,10 @@ zenity (3.12.1-1) UNRELEASED; urgency=low
- Do not return item twice when double clicking in a list (Closes: #717053)
- Expand lists vertically (Closes: #739248)
* debian/control.in: Bump Standards-Version to 3.9.5 (no further changes)
+ * Drop d/p/01_dont_quit_zenity_when_stdin_ends.patch: This patch is changing
+ the upstream behavior when using --listen flag (Closes: #612683)
- -- Laurent Bigonville <bigon@debian.org> Fri, 23 May 2014 23:33:38 +0200
+ -- Laurent Bigonville <bigon@debian.org> Sat, 24 May 2014 12:18:44 +0200
zenity (3.8.0-1) unstable; urgency=low
diff --git a/debian/patches/01_dont_quit_zenity_when_stdin_ends.patch b/debian/patches/01_dont_quit_zenity_when_stdin_ends.patch
deleted file mode 100644
index 1a754d1b..00000000
--- a/debian/patches/01_dont_quit_zenity_when_stdin_ends.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From fc381b5938f7235401286d4821f03d2b05d4876a Mon Sep 17 00:00:00 2001
-From: Emilio Pozuelo Monfort <pochu27@gmail.com>
-Date: Sat, 27 Feb 2010 15:32:23 +0100
-Subject: [PATCH] Don't quit zenity when the input stream is closed
-
-When using --listen for a notification, zenity quits when the stream
-ends. This makes it impossible to read commands from a pipe as in
-`echo icon:info | zenity --notification --listen'.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=525596
----
- src/notification.c | 2 --
- 1 files changed, 0 insertions(+), 2 deletions(-)
-
-Index: zenity-3.8.0/src/notification.c
-===================================================================
---- zenity-3.8.0.orig/src/notification.c 2013-05-25 23:51:03.085727542 +0200
-+++ zenity-3.8.0/src/notification.c 2013-05-25 23:51:03.077727349 +0200
-@@ -291,8 +291,6 @@
-
- if ((condition & G_IO_HUP) != 0) {
- g_io_channel_shutdown (channel, TRUE, NULL);
-- zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK);
-- gtk_main_quit ();
- return FALSE;
- }
-
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 777963c8..00000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-01_dont_quit_zenity_when_stdin_ends.patch
bgstack15