This commit is contained in:
parent
7fa95f6741
commit
5d71d8a33a
@ -17,10 +17,10 @@ Summary: HPIJS stand-alone
|
||||
# x.y.m : x = major release number, y = year (eg: 6 = 2006), m = month (eg: 6a = second release in June)
|
||||
# Official releases have a 3 digit number and release candidates have a 4 digit number: x.y.m.rc
|
||||
Version: 2.7.7
|
||||
Release: 10
|
||||
Release: 13
|
||||
Group: Hardware/Printing
|
||||
License: BSD 3-Clause, In general all applications are covered by the GNU General Public License (GPL) and the backend is covered by a MIT license. The printer driver HPIJS uses a BSD license. See the COPYING file in the HPLIP tar ball for more details.
|
||||
URL: http://hpinkjet.sourceforge.net/
|
||||
Url: http://hpinkjet.sourceforge.net/
|
||||
# Source0...Source9 is for sources from HP:
|
||||
# URL for Source0: http://switch.dl.sourceforge.net/sourceforge/hplip/hplip-2.7.7.tar.gz
|
||||
Source0: hplip-%{version}.tar.bz2
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 18 12:18:25 CEST 2007 - jsmeix@suse.de
|
||||
|
||||
- Add a line-feed to the end of all PPDs to fix those PPDs where
|
||||
it is missing. See Novell/Suse Bugzilla bug #309832:
|
||||
Unix/Linux text files must end with a line-feed.
|
||||
Otherwise reading the last line results EOF and then some
|
||||
programs may ignore the last line.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 12 16:17:46 CEST 2007 - jsmeix@suse.de
|
||||
|
||||
|
16
hplip.spec
16
hplip.spec
@ -17,10 +17,10 @@ Summary: HP's Printing, Scanning, and Faxing Software
|
||||
# x.y.m : x = major release number, y = year (eg: 6 = 2006), m = month (eg: 6a = second release in June)
|
||||
# Official releases have a 3 digit number and release candidates have a 4 digit number: x.y.m.rc
|
||||
Version: 2.7.7
|
||||
Release: 27
|
||||
Release: 32
|
||||
Group: Hardware/Printing
|
||||
License: BSD 3-Clause, GPL v2 or later, In general all applications are covered by the GNU General Public License (GPL) and the backend is covered by a MIT license. The printer driver HPIJS uses a BSD license. See the COPYING file in the HPLIP tar ball for more details.
|
||||
URL: http://hpinkjet.sourceforge.net/
|
||||
Url: http://hpinkjet.sourceforge.net/
|
||||
# Source0...Source9 is for sources from HP:
|
||||
# URL for Source0: http://sourceforge.net/project/downloading.php?groupname=hplip&filename=hplip-2.7.7.tar.gz&use_mirror=osdn
|
||||
Source0: %{name}-%{version}.tar.bz2
|
||||
@ -168,6 +168,12 @@ rm %{buildroot}%{_sysconfdir}/sane.d/dll.conf
|
||||
# Make some general tests and adjustments for all PPDs (see manufacturer-PPDs.spec):
|
||||
pushd %{buildroot}%{_datadir}/cups/model/manufacturer-PPDs/%{name}
|
||||
gunzip *.ppd.gz
|
||||
# Add a line-feed to the end of all PPDs to fix those PPDs where it is missing.
|
||||
# See Novell/Suse Bugzilla bug #309832: Unix/Linux text files must end with a line-feed.
|
||||
# Otherwise reading the last line results EOF and then some programs may ignore the last line.
|
||||
for p in *.ppd
|
||||
do echo -en '\n' >>$p
|
||||
done
|
||||
# Correct or remove non-working PPDs:
|
||||
# Several HP PPDs contain "600x600x2dpi" which is not allowed
|
||||
# according to the Adobe PPD specification section 5.9
|
||||
@ -350,6 +356,12 @@ exit 0
|
||||
%{_libdir}/libhpmud.*
|
||||
|
||||
%changelog
|
||||
* Tue Sep 18 2007 - jsmeix@suse.de
|
||||
- Add a line-feed to the end of all PPDs to fix those PPDs where
|
||||
it is missing. See Novell/Suse Bugzilla bug #309832:
|
||||
Unix/Linux text files must end with a line-feed.
|
||||
Otherwise reading the last line results EOF and then some
|
||||
programs may ignore the last line.
|
||||
* Wed Sep 12 2007 - jsmeix@suse.de
|
||||
- Ignore cupstestppd FAILs because of errors in UIConstraints
|
||||
and/or NonUIConstraints which are detected since cupstestppd
|
||||
|
Loading…
Reference in New Issue
Block a user