Accepting request 137740 from home:jsmeix:branches:Printing

Bugfix version upgrade to 3.12.10a that fixes only bnc#784173 plus a fix for bnc#783810

OBS-URL: https://build.opensuse.org/request/show/137740
OBS-URL: https://build.opensuse.org/package/show/Printing/hplip?expand=0&rev=57
This commit is contained in:
Johannes Meixner 2012-10-10 13:46:53 +00:00 committed by Git OBS Bridge
parent af334604b3
commit d7f4ed5f98
4 changed files with 28 additions and 7 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:66c159421c6941e20c88e9372ad2885248b0fc0546c1896cfbfce7ff840faa08
size 21832868

3
hplip-3.12.10a.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:616a30f260407f959874d35d351eaf73c74f7f8f016a7826286c88d923a4b1fc
size 21827613

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Wed Oct 10 14:23:14 CEST 2012 - jsmeix@suse.de
- Bugfix version upgrade to 3.12.10a:
The 'a' does not mean 'alpha' but "first bugfix of 3.12.10".
Fixed crash in HP Device Manager and System Tray due to
ValueError exception in HPLIP upgrade functionality, see
https://bugs.launchpad.net/hplip/+bug/1064889 (bnc#784173).
- Added "chmod a+x ... usr/share/hplip/fax/pstotiff" because
"make install" installs it only with -rw-r--r-- permissions
so that when the CUPS filter usr/lib/cups/filter/pstotiff
which is a link to usr/share/hplip/fax/pstotiff is called,
it cannot execute usr/share/hplip/fax/pstotiff, see
https://bugs.launchpad.net/hplip/+bug/1064247 (bnc#783810).
-------------------------------------------------------------------
Fri Oct 5 11:51:35 CEST 2012 - jsmeix@suse.de

View File

@ -55,15 +55,15 @@ Group: Hardware/Printing
# HPLIP has reached 1.0 status. With this release a date encoded revision number is used:
# 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: 3.12.10
Version: 3.12.10a
Release: 0
Url: http://hplipopensource.com
# Source0...Source9 is for sources from HP:
# URL for Source0: http://prdownloads.sourceforge.net/hplip/hplip-3.12.10.tar.gz
# URL to verify Source0: http://prdownloads.sourceforge.net/hplip/hplip-3.12.10.tar.gz.asc
# URL for Source0: http://prdownloads.sourceforge.net/hplip/hplip-3.12.10a.tar.gz
# URL to verify Source0: http://prdownloads.sourceforge.net/hplip/hplip-3.12.10a.tar.gz.asc
# How to verify Source0 see: http://hplipopensource.com/node/327
# For example: /usr/bin/gpg --keyserver pgp.mit.edu --recv-keys 0xA59047B9
# /usr/bin/gpg --verify hplip-3.12.10.tar.gz.asc hplip-3.12.10.tar.gz
# /usr/bin/gpg --verify hplip-3.12.10a.tar.gz.asc hplip-3.12.10a.tar.gz
# must result: Good signature from "HPLIP (HP Linux Imaging and Printing) <hplip@hp.com>"
Source0: hplip-%{version}.tar.gz
# Patch0...Patch9 is for patches from HP:
@ -394,6 +394,12 @@ make
%install
make install DESTDIR=%{buildroot}
# HPLIP's "make install" installs -rw-r--r-- usr/share/hplip/fax/pstotiff
# and usr/lib/cups/filter/pstotiff -> usr/share/hplip/fax/pstotiff
# so that when the CUPS filter usr/lib/cups/filter/pstotiff is called,
# it cannot execute usr/share/hplip/fax/pstotiff which is fixed hereby
# (see https://bugs.launchpad.net/hplip/+bug/1064247 and bnc#783810):
chmod a+x %{buildroot}%{_datadir}/hplip/fax/pstotiff
# The /var/lib/hp directory is created everywhere except on openSUSE 12.2 and later versions
# (perhaps an autoconf issue) so that it is created here as simple and fail-safe workaround
# see https://bugs.launchpad.net/bugs/1018303 and bnc#780413