From edbc206718afd6451624bac5ebbbf649644c6966 Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Mon, 22 Nov 2010 13:23:30 +0000 Subject: [PATCH] Added in missing part of patch for last change (bug #655317). --- system-config-printer-statusicon.patch | 68 +++++++++++++++++++++++++- system-config-printer.spec | 5 +- 2 files changed, 71 insertions(+), 2 deletions(-) diff --git a/system-config-printer-statusicon.patch b/system-config-printer-statusicon.patch index f9935a3..aeab7af 100644 --- a/system-config-printer-statusicon.patch +++ b/system-config-printer-statusicon.patch @@ -1,6 +1,72 @@ +diff -up system-config-printer-1.2.5/applet.py.statusicon system-config-printer-1.2.5/applet.py +--- system-config-printer-1.2.5/applet.py.statusicon 2010-10-12 17:03:22.000000000 +0100 ++++ system-config-printer-1.2.5/applet.py 2010-11-22 13:19:08.690523505 +0000 +@@ -80,7 +80,7 @@ class NewPrinterNotification(dbus.servic + pass + runloop = gobject.MainLoop () + viewer = jobviewer.JobViewer(bus=bus, loop=runloop, +- trayicon=trayicon, ++ applet=applet, + suppress_icon_hide=True) + + @dbus.service.method(PDS_IFACE, in_signature='', out_signature='') +@@ -292,7 +292,7 @@ def show_version (): + + global waitloop, runloop, viewer + +-trayicon = True ++applet = True + waitloop = runloop = None + viewer = None + +@@ -316,7 +316,7 @@ if __name__ == '__main__': + show_version () + sys.exit (0) + if opt == "--no-tray-icon": +- trayicon = False ++ applet = False + elif opt == "--debug": + set_debugging (True) + +@@ -328,7 +328,7 @@ if __name__ == '__main__': + except: + pass + +- if trayicon: ++ if applet: + # Stop running when the session ends. + def monitor_session (*args): + pass +@@ -352,7 +352,7 @@ if __name__ == '__main__': + finally: + sys.exit (1) + +- if trayicon: ++ if applet: + try: + NewPrinterNotification(bus) + except: +@@ -374,7 +374,7 @@ if __name__ == '__main__': + except: + pass + +- if trayicon and get_debugging () == False: ++ if applet and get_debugging () == False: + # Start off just waiting for print jobs. + def any_jobs (): + try: +@@ -437,7 +437,7 @@ if __name__ == '__main__': + runloop = gobject.MainLoop () + gtk.window_set_default_icon_name ('printer') + viewer = jobviewer.JobViewer(bus=bus, loop=runloop, +- trayicon=trayicon) ++ applet=applet) + + try: + runloop.run() diff -up system-config-printer-1.2.5/jobviewer.py.statusicon system-config-printer-1.2.5/jobviewer.py --- system-config-printer-1.2.5/jobviewer.py.statusicon 2010-10-13 13:11:15.000000000 +0100 -+++ system-config-printer-1.2.5/jobviewer.py 2010-11-03 14:08:59.741352866 +0000 ++++ system-config-printer-1.2.5/jobviewer.py 2010-11-22 13:22:40.847137433 +0000 @@ -277,15 +277,18 @@ class JobViewer (GtkGUI, monitor.Watcher 'time-at-creation']) diff --git a/system-config-printer.spec b/system-config-printer.spec index 124d4fa..1bfc2de 100644 --- a/system-config-printer.spec +++ b/system-config-printer.spec @@ -7,7 +7,7 @@ Summary: A printer administration tool Name: system-config-printer Version: 1.2.5 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base @@ -219,6 +219,9 @@ rm -rf %buildroot exit 0 %changelog +* Mon Nov 22 2010 Tim Waugh - 1.2.5-8 +- Added in missing part of patch for last change (bug #655317). + * Wed Nov 3 2010 Tim Waugh - 1.2.5-7 - Don't use status icon if notification server supports persistence.