- Fixed cdi-search-harder patch.

This commit is contained in:
Tim Waugh 2010-03-25 17:07:11 +00:00
parent 57d971d7db
commit 9007e3ff74
2 changed files with 5 additions and 2 deletions

View File

@ -17,7 +17,7 @@ diff -up system-config-printer-1.2.0/check-device-ids.py.cdi-search-harder syste
- for each in missing: - for each in missing:
- print "%s MISSING %s [%s]" % (more, each, - print "%s MISSING %s [%s]" % (more, each,
- driver_uri_to_pkg (each)) - driver_uri_to_pkg (each))
+ matches += set (bestmatches) + matches = matches.union (set (bestmatches))
+ +
+ missing = set (matches) - set (drivers) + missing = set (matches) - set (drivers)
+ for each in missing: + for each in missing:

View File

@ -7,7 +7,7 @@
Summary: A printer administration tool Summary: A printer administration tool
Name: system-config-printer Name: system-config-printer
Version: 1.2.0 Version: 1.2.0
Release: 8%{?dist} Release: 9%{?dist}
License: GPLv2+ License: GPLv2+
URL: http://cyberelk.net/tim/software/system-config-printer/ URL: http://cyberelk.net/tim/software/system-config-printer/
Group: System Environment/Base Group: System Environment/Base
@ -248,6 +248,9 @@ rm -rf %buildroot
exit 0 exit 0
%changelog %changelog
* Thu Mar 25 2010 Tim Waugh <twaugh@redhat.com> - 1.2.0-9
- Fixed cdi-search-harder patch.
* Thu Mar 25 2010 Tim Waugh <twaugh@redhat.com> - 1.2.0-8 * Thu Mar 25 2010 Tim Waugh <twaugh@redhat.com> - 1.2.0-8
- Fixed traceback in asyncipp (bug #576932). - Fixed traceback in asyncipp (bug #576932).
- check-device-ids: search harder for missing Device IDs. - check-device-ids: search harder for missing Device IDs.