From 8dc6e7878da540c27618b7127e3147d35fbe4b6b Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Oct 29 2010 14:50:38 +0000 Subject: Make sure InstallPrinterDrivers gets correctly typed values (bug #647270). --- diff --git a/system-config-printer-uint32.patch b/system-config-printer-uint32.patch new file mode 100644 index 0000000..b008907 --- /dev/null +++ b/system-config-printer-uint32.patch @@ -0,0 +1,26 @@ +diff -up system-config-printer-1.2.5/installdriver.py.uint32 system-config-printer-1.2.5/installdriver.py +--- system-config-printer-1.2.5/installdriver.py.uint32 2010-10-29 14:42:04.310843583 +0100 ++++ system-config-printer-1.2.5/installdriver.py 2010-10-29 15:30:47.524996563 +0100 +@@ -49,7 +49,8 @@ class PrinterDriversInstaller(dbus.servi + interaction = "hide-finished" + debugprint ("Calling InstallPrinterDrivers (%s, %s, %s)" % + (repr (xid), repr (resources), repr (interaction))) +- proxy.InstallPrinterDrivers (xid, resources, interaction, ++ proxy.InstallPrinterDrivers (dbus.UInt32 (xid), ++ resources, interaction, + reply_handler=reply_handler, + error_handler=error_handler, + timeout=3600) +diff -up system-config-printer-1.2.5/ppdsloader.py.uint32 system-config-printer-1.2.5/ppdsloader.py +--- system-config-printer-1.2.5/ppdsloader.py.uint32 2010-10-29 14:42:04.323844010 +0100 ++++ system-config-printer-1.2.5/ppdsloader.py 2010-10-29 15:30:47.525996440 +0100 +@@ -169,7 +169,8 @@ class PPDsLoader: + interaction = "hide-finished" + debugprint ("Calling InstallPrinterDrivers (%s, %s, %s)" % + (repr (xid), repr (resources), repr (interaction))) +- proxy.InstallPrinterDrivers (xid, resources, interaction, ++ proxy.InstallPrinterDrivers (dbus.UInt32 (xid), ++ resources, interaction, + reply_handler=self._packagekit_reply, + error_handler=self._packagekit_error, + timeout=3600) diff --git a/system-config-printer.spec b/system-config-printer.spec index 8522be4..e5643f6 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: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base @@ -19,6 +19,7 @@ Source2: http://pypi.python.org/packages/source/p/pysmbc/pysmbc-%{pysmbc_version Patch1: system-config-printer-InstallPrinterDrivers-debug.patch Patch2: system-config-printer-mfg-mdl.patch Patch3: system-config-printer-NPTLpdQueue.patch +Patch4: system-config-printer-uint32.patch Patch101: pysmbc-doczip.patch BuildRequires: cups-devel >= 1.2 BuildRequires: python-devel >= 2.4 @@ -88,6 +89,9 @@ printers. # Don't check ComboBoxEntry for allowed characters (bug #644131). %patch3 -p1 -b .NPTLpdQueue +# Make sure InstallPrinterDrivers gets correctly typed values (bug #647270). +%patch4 -p1 -b .uint32 + pushd pysmbc-%{pysmbc_version} %patch101 -p1 -b .doczip popd @@ -211,6 +215,9 @@ rm -rf %buildroot exit 0 %changelog +* Fri Oct 29 2010 Tim Waugh - 1.2.5-6 +- Make sure InstallPrinterDrivers gets correctly typed values (bug #647270). + * Sun Oct 24 2010 Jiri Popelka 1.2.5-5 - Correct newly added NPTLpdQueue.patch (bug #646002).