- Convert MFG and MDL to lowercase before D-Bus call to work around bug

#566217.
This commit is contained in:
Tim Waugh 2010-02-17 16:18:46 +00:00
parent 8d060252b2
commit c87e56a4dd
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,12 @@
diff -up system-config-printer-1.1.91/installdriver.py.lowercase-mfg-mdl system-config-printer-1.1.91/installdriver.py
--- system-config-printer-1.1.91/installdriver.py.lowercase-mfg-mdl 2010-02-08 17:25:56.000000000 +0000
+++ system-config-printer-1.1.91/installdriver.py 2010-02-17 15:49:19.064410563 +0000
@@ -43,6 +43,8 @@ class PrinterDriversInstaller(dbus.servi
obj = bus.get_object ("org.freedesktop.PackageKit",
"/org/freedesktop/PackageKit")
proxy = dbus.Interface (obj, "org.freedesktop.PackageKit.Modify")
+ mfg = mfg.lower ()
+ mdl = mdl.lower ()
proxy.InstallPrinterDrivers (0, ["MFG:%s;MDL:%s;" % (mfg, mdl)],
"hide-finished",
reply_handler=reply_handler,

View File

@ -7,7 +7,7 @@
Summary: A printer administration tool
Name: system-config-printer
Version: 1.1.91
Release: 2%{?dist}
Release: 3%{?dist}
License: GPLv2+
URL: http://cyberelk.net/tim/software/system-config-printer/
Group: System Environment/Base
@ -17,6 +17,7 @@ Source2: http://cyberelk.net/tim/data/pysmbc/pysmbc-%{pysmbc_version}.tar.bz2
Patch1: system-config-printer-no-epydoc.patch
Patch2: system-config-printer-device-settings.patch
Patch3: system-config-printer-lowercase-mfg-mdl.patch
BuildRequires: cups-devel >= 1.2
BuildRequires: python-devel >= 2.4
@ -77,6 +78,7 @@ printers.
%setup -q -a 1 -a 2
%patch1 -p1 -b .no-epydoc
%patch2 -p1 -b .device-settings
%patch3 -p1 -b .lowercase-mfg-mdl
%build
%configure --with-udev-rules --with-polkit-1
@ -192,6 +194,10 @@ rm -rf %buildroot
exit 0
%changelog
* Wed Feb 17 2010 Tim Waugh <twaugh@redhat.com> - 1.1.91-3
- Convert MFG and MDL to lowercase before D-Bus call to work around
bug #566217.
* Thu Feb 11 2010 Tim Waugh <twaugh@redhat.com> - 1.1.91-2
- Avoid clearing device settings when adding printer (bug #563989).