- Removed references to unshipped drivers:

drv_x125
ml85p
pbm2lxwl
pbmtozjs
bjc800j
This commit is contained in:
Tim Waugh 2007-08-15 11:52:02 +00:00
parent d8f0bd115a
commit 5e81cbb095
1 changed files with 17 additions and 3 deletions

View File

@ -6,7 +6,7 @@
Summary: Foomatic printer database.
Name: foomatic
Version: 3.0.2
Release: 49%{?dist}
Release: 50%{?dist}
License: GPL
Group: System Environment/Libraries
@ -119,12 +119,18 @@ perl -pi -e 's,>gutenprint<,>gutenprint-ijs-simplified.5.0<,' printer/*.xml
# Remove references to foo2zjs, foo2oak and foo2hp (bug #208851).
for x in zjs oak hp
do
find printer -name '*.xml' |xargs grep -l "<driver>foo2${x}"|xargs rm -f
find printer -name '*.xml' |xargs grep -l "<driver>foo2${x}"|xargs rm -vf
rm -f driver/foo2${x}.xml opt/foo2${x}-*
done
# Same for m2300w/m2400w
find printer -name '*.xml' |xargs grep -l '<driver>m2[34]00w<'|xargs rm -f
find printer -name '*.xml' |xargs grep -l '<driver>m2[34]00w<'|xargs rm -vf
rm -f driver/m2300w.xml driver/m2400w.xml opt/m2300w-*
# Same for all these.
for x in drv_x125 ml85p pbm2lwxl pbmtozjs bjc800j
do
find printer -name '*.xml' |xargs grep -l "<driver>${x}</driver>"|xargs rm -vf
rm -vf driver/${x}.xml opt/${x}-*
done
popd
@ -255,6 +261,14 @@ rm -fr %buildroot $RPM_BUILD_DIR/%{name}
%{_var}/cache/foomatic
%changelog
* Wed Aug 15 2007 Tim Waugh <twaugh@redhat.com> 3.0.2-50
- Removed references to unshipped drivers:
* drv_x125
* ml85p
* pbm2lxwl
* pbmtozjs
* bjc800j
* Thu Jun 14 2007 Tim Waugh <twaugh@redhat.com> 3.0.2-49
- Safe default margins for PPDs (bug #244161).
- Added missing IEEE 1284 ID for HP Photosmart 380 (bug #241352).