http://bugzilla.novell.com/show_bug.cgi?id=600505
http://bugzilla.novell.com/show_bug.cgi?id=600505#c0
Summary: cups-drivers contains PPDs which use non-existent filters Classification: openSUSE Product: openSUSE 11.3 Version: Factory Platform: All OS/Version: openSUSE 11.3 Status: ASSIGNED Severity: Normal Priority: P5 - None Component: Printing AssignedTo: jsmeix@novell.com ReportedBy: jsmeix@novell.com QAContact: jsmeix@novell.com Found By: Development Blocker: ---
The "filters" package was dropped for openSUSE 11.2 but cups-drivers still contains PPDs which use filters from the "filters" package, e.g. see http://bugzilla.novell.com/show_bug.cgi?id=566312#c5
Accordingly such PPDs should be dropped from cups-drivers.
The initial suspects are: --------------------------------------------------------------------- root@host# for p in $( rpm -ql cups-drivers | grep '.ppd.gz' ) ; \ do zgrep -q '*driverType F' $p && echo $p ; done /usr/share/cups/model/Canon/LBP-4U-cjet.ppd.gz /usr/share/cups/model/Canon/LBP-8A1-cjet.ppd.gz /usr/share/cups/model/HP/DeskJet_1000C-pnm2ppa.ppd.gz /usr/share/cups/model/HP/DeskJet_710C-pnm2ppa.ppd.gz /usr/share/cups/model/HP/DeskJet_712C-pnm2ppa.ppd.gz /usr/share/cups/model/HP/DeskJet_720C-pnm2ppa.ppd.gz /usr/share/cups/model/HP/DeskJet_722C-pnm2ppa.ppd.gz /usr/share/cups/model/HP/DeskJet_820C-pnm2ppa.ppd.gz /usr/share/cups/model/Lexmark/1000-lm1100.ppd.gz /usr/share/cups/model/Lexmark/1020-lm1100.ppd.gz /usr/share/cups/model/Lexmark/1100-lm1100.ppd.gz /usr/share/cups/model/Lexmark/2030-pbm2l2030.ppd.gz /usr/share/cups/model/Lexmark/2070-c2070.ppd.gz /usr/share/cups/model/Minolta/PagePro_1200W-min12xxw.ppd.gz /usr/share/cups/model/Minolta/PagePro_1250W-min12xxw.ppd.gz /usr/share/cups/model/Minolta/PagePro_1300W-min12xxw.ppd.gz /usr/share/cups/model/Minolta/PagePro_1350W-min12xxw.ppd.gz /usr/share/cups/model/Minolta/PagePro_1400W-min12xxw.ppd.gz ---------------------------------------------------------------------
http://bugzilla.novell.com/show_bug.cgi?id=600505
http://bugzilla.novell.com/show_bug.cgi?id=600505#c
Johannes Meixner jsmeix@novell.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Priority|P5 - None |P3 - Medium
http://bugzilla.novell.com/show_bug.cgi?id=600505
http://bugzilla.novell.com/show_bug.cgi?id=600505#c1
--- Comment #1 from Johannes Meixner jsmeix@novell.com 2010-04-28 15:02:20 UTC --- A more sophisticated analysis results exactly the same PPDs ------------------------------------------------------------------------------ # rpm -ql cups-drivers | grep '.ppd.gz' >/tmp/cups-drivers.ppds
# rpm -ql filters | grep bin | sed -e 's|^/usr/bin/||' >/tmp/filters.bins
# for p in $( cat /tmp/cups-drivers.ppds ) ; \ do for f in $( cat /tmp/filters.bins ) ; \ do zgrep -q $f $p && echo found $f in $p ; done ; done found cjet in /usr/share/cups/model/Canon/LBP-4U-cjet.ppd.gz found cjet in /usr/share/cups/model/Canon/LBP-8A1-cjet.ppd.gz found pnm2ppa in /usr/share/cups/model/HP/DeskJet_1000C-pnm2ppa.ppd.gz found pnm2ppa in /usr/share/cups/model/HP/DeskJet_710C-pnm2ppa.ppd.gz found pnm2ppa in /usr/share/cups/model/HP/DeskJet_712C-pnm2ppa.ppd.gz found pnm2ppa in /usr/share/cups/model/HP/DeskJet_720C-pnm2ppa.ppd.gz found pnm2ppa in /usr/share/cups/model/HP/DeskJet_722C-pnm2ppa.ppd.gz found pnm2ppa in /usr/share/cups/model/HP/DeskJet_820C-pnm2ppa.ppd.gz found cjet in /usr/share/cups/model/IBM/Execjet_4072-bj200.ppd.gz found lm1100 in /usr/share/cups/model/Lexmark/1000-lm1100.ppd.gz found lm1100 in /usr/share/cups/model/Lexmark/1020-lm1100.ppd.gz found lm1100 in /usr/share/cups/model/Lexmark/1100-lm1100.ppd.gz found pbm2l2030 in /usr/share/cups/model/Lexmark/2030-pbm2l2030.ppd.gz found c2070 in /usr/share/cups/model/Lexmark/2070-c2070.ppd.gz found min12xxw in /usr/share/cups/model/Minolta/PagePro_1200W-min12xxw.ppd.gz found min12xxw in /usr/share/cups/model/Minolta/PagePro_1250W-min12xxw.ppd.gz found min12xxw in /usr/share/cups/model/Minolta/PagePro_1300W-min12xxw.ppd.gz found min12xxw in /usr/share/cups/model/Minolta/PagePro_1350W-min12xxw.ppd.gz found min12xxw in /usr/share/cups/model/Minolta/PagePro_1400W-min12xxw.ppd.gz
# zgrep cjet /usr/share/cups/model/IBM/Execjet_4072-bj200.ppd.gz *% You may save this file as 'IBM-Execjet_4072-bj200.ppd' *Product: "(Execjet 4072)" *ModelName: "IBM Execjet 4072" *ShortNickName: "IBM Execjet 4072 bj200" *NickName: "IBM Execjet 4072 Foomatic/bj200 (recommended)" *FoomaticIDs: IBM-Execjet_4072 bj200 ------------------------------------------------------------------------------ because /usr/share/cups/model/IBM/Execjet_4072-bj200.ppd.gz is a false positive.
http://bugzilla.novell.com/show_bug.cgi?id=600505
http://bugzilla.novell.com/show_bug.cgi?id=600505#c2
Johannes Meixner jsmeix@novell.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED Target Milestone|--- |Milestone 7
--- Comment #2 from Johannes Meixner jsmeix@novell.com 2010-04-29 12:38:36 UTC --- Submitted to openSUSE:Factory via submitrequest 39112: "removed non-working Foomatic PPDs which use filters (bnc#600505)"
http://bugzilla.novell.com/show_bug.cgi?id=600505
http://bugzilla.novell.com/show_bug.cgi?id=600505#c3
Johannes Meixner jsmeix@novell.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |rvpittman+novell@gmail.com
--- Comment #3 from Johannes Meixner jsmeix@novell.com 2010-05-18 07:19:44 UTC --- *** Bug 603806 has been marked as a duplicate of this bug. *** http://bugzilla.novell.com/show_bug.cgi?id=603806
http://bugzilla.novell.com/show_bug.cgi?id=600505 http://bugzilla.novell.com/show_bug.cgi?id=600505#c4
--- Comment #4 from Bernhard Wiedemann bwiedemann@suse.com --- This is an autogenerated message for OBS integration: This bug (600505) was mentioned in https://build.opensuse.org/request/show/39112 Factory / cups-drivers