Accepting request 431513 from home:jsmeix:branches:Printing
Version upgrade to 9.20 OBS-URL: https://build.opensuse.org/request/show/431513 OBS-URL: https://build.opensuse.org/package/show/Printing/ghostscript?expand=0&rev=70
This commit is contained in:
parent
0a14318d2b
commit
7572456c4d
3
ghostscript-9.20.tar.gz
Normal file
3
ghostscript-9.20.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:949b64b46ecf8906db54a94ecf83ab97534ebf946f770d3c3f283cb469cb6e14
|
||||
size 36080631
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:43039d8700800fa08bce265c3fe7807f20767f62b1ab60a5427d5109c0c8ff18
|
||||
size 36545884
|
@ -1,3 +1,25 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 29 14:40:38 CEST 2016 - jsmeix@suse.de
|
||||
|
||||
- Version upgrade to 9.20. Purely a maintenance release.
|
||||
For details see the News.htm and History9.htm files.
|
||||
Highlights in this release include:
|
||||
* The usual round of bug fixes, compatibility changes,
|
||||
and incremental improvements.
|
||||
Incompatible changes:
|
||||
* The planned device API tidy did not happen for this release,
|
||||
due to time pressures, but we still intend to undertake the
|
||||
following: We plan to somewhat tidy up the device API.
|
||||
We intend to remove deprecated device procs
|
||||
(methods/function pointers) and change the device API
|
||||
so every device proc takes a graphics state parameter (rather
|
||||
than the current scheme where only a very few procs take an
|
||||
imager state parameter). This should serve as notice to anyone
|
||||
maintaining a Ghostscript device outside the canonical source
|
||||
tree that you may (probably will) need to update your
|
||||
device(s) when these changes happen. Devices using only
|
||||
the non-deprecated procs should be trivial to update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 15 10:12:03 CEST 2016 - jsmeix@suse.de
|
||||
|
||||
|
@ -36,31 +36,33 @@ Url: http://www.ghostscript.com/
|
||||
# But only with the alphabetic prefix "9.pre15rc1" would be older than the previous version number "9.14"
|
||||
# because rpmvercmp would treat 9.pre15rc1 as 9.pre.15.rc1 and letters are older than numbers
|
||||
# so that we keep additionally the previous version number to upgrade from the previous version:
|
||||
Version: 9.19pre20rc1
|
||||
Release: 0
|
||||
#Version: 9.19pre20rc1
|
||||
# Normal version for Ghostscript releases is the upstream version:
|
||||
#Version: 9.19
|
||||
Version: 9.20
|
||||
Release: 0
|
||||
# tarball_version is used below to specify the directory via "setup -n":
|
||||
# Special tarball_version needed for Ghostscript release candidates e.g. "define tarball_version 9.15rc1".
|
||||
# For Ghostscript releases tarball_version and version are the same (i.e. the upstream version):
|
||||
#define tarball_version %{version}
|
||||
%define tarball_version 9.20rc1
|
||||
%define tarball_version %{version}
|
||||
#define tarball_version 9.20rc1
|
||||
# built_version is used below in the install and files sections:
|
||||
# Separated built_version needed in case of Ghostscript release candidates e.g. "define built_version 9.15".
|
||||
# For Ghostscript releases built_version and version are the same (i.e. the upstream version):
|
||||
#define built_version %{version}
|
||||
%define built_version 9.20
|
||||
%define built_version %{version}
|
||||
#%define built_version 9.20
|
||||
# Source0...Source9 is for sources from upstream:
|
||||
# Special URLs for Ghostscript release candidates:
|
||||
# URL for Source0: https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs920rc1/ghostscript-9.20rc1.tar.gz
|
||||
# How to download it:
|
||||
# wget -O ghostscript-9.20rc1.tar.gz https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs920rc1/ghostscript-9.20rc1.tar.gz
|
||||
Source0: ghostscript-%{tarball_version}.tar.gz
|
||||
#Source0: ghostscript-%{tarball_version}.tar.gz
|
||||
# Normal URLs for Ghostscript releases:
|
||||
# URL for Source0: http://downloads.ghostscript.com/public/ghostscript-9.18.tar.gz
|
||||
# URL for MD5 checksums: http://downloads.ghostscript.com/public/MD5SUMS
|
||||
# MD5 checksum for Source0: 33a47567d7a591c00a253caddd12a88a
|
||||
#Source0: ghostscript-%{version}.tar.gz
|
||||
# URL for Source0: https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs920/ghostscript-9.20.tar.gz
|
||||
# How to download it:
|
||||
# wget -O ghostscript-9.20.tar.gz https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs920/ghostscript-9.20.tar.gz
|
||||
# URL for MD5 checksums: https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs920/MD5SUMS
|
||||
# MD5 checksum for Source0: 93c5987cd3ab341108be1ebbaadc24fe
|
||||
Source0: ghostscript-%{version}.tar.gz
|
||||
# Patch0...Patch9 is for patches from upstream:
|
||||
# Source10...Source99 is for sources from SUSE which are intended for upstream:
|
||||
# Patch10...Patch99 is for patches from SUSE which are intended for upstream:
|
||||
|
@ -1,3 +1,25 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 29 14:40:38 CEST 2016 - jsmeix@suse.de
|
||||
|
||||
- Version upgrade to 9.20. Purely a maintenance release.
|
||||
For details see the News.htm and History9.htm files.
|
||||
Highlights in this release include:
|
||||
* The usual round of bug fixes, compatibility changes,
|
||||
and incremental improvements.
|
||||
Incompatible changes:
|
||||
* The planned device API tidy did not happen for this release,
|
||||
due to time pressures, but we still intend to undertake the
|
||||
following: We plan to somewhat tidy up the device API.
|
||||
We intend to remove deprecated device procs
|
||||
(methods/function pointers) and change the device API
|
||||
so every device proc takes a graphics state parameter (rather
|
||||
than the current scheme where only a very few procs take an
|
||||
imager state parameter). This should serve as notice to anyone
|
||||
maintaining a Ghostscript device outside the canonical source
|
||||
tree that you may (probably will) need to update your
|
||||
device(s) when these changes happen. Devices using only
|
||||
the non-deprecated procs should be trivial to update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 15 10:12:03 CEST 2016 - jsmeix@suse.de
|
||||
|
||||
|
@ -56,31 +56,33 @@ Url: http://www.ghostscript.com/
|
||||
# But only with the alphabetic prefix "9.pre15rc1" would be older than the previous version number "9.14"
|
||||
# because rpmvercmp would treat 9.pre15rc1 as 9.pre.15.rc1 and letters are older than numbers
|
||||
# so that we keep additionally the previous version number to upgrade from the previous version:
|
||||
Version: 9.19pre20rc1
|
||||
Release: 0
|
||||
#Version: 9.19pre20rc1
|
||||
# Normal version for Ghostscript releases is the upstream version:
|
||||
#Version: 9.19
|
||||
Version: 9.20
|
||||
Release: 0
|
||||
# tarball_version is used below to specify the directory via "setup -n":
|
||||
# Special tarball_version needed for Ghostscript release candidates e.g. "define tarball_version 9.15rc1".
|
||||
# For Ghostscript releases tarball_version and version are the same (i.e. the upstream version):
|
||||
#define tarball_version %{version}
|
||||
%define tarball_version 9.20rc1
|
||||
%define tarball_version %{version}
|
||||
#define tarball_version 9.20rc1
|
||||
# built_version is used below in the install and files sections:
|
||||
# Separated built_version needed in case of Ghostscript release candidates e.g. "define built_version 9.15".
|
||||
# For Ghostscript releases built_version and version are the same (i.e. the upstream version):
|
||||
#define built_version %{version}
|
||||
%define built_version 9.20
|
||||
%define built_version %{version}
|
||||
#%define built_version 9.20
|
||||
# Source0...Source9 is for sources from upstream:
|
||||
# Special URLs for Ghostscript release candidates:
|
||||
# URL for Source0: https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs920rc1/ghostscript-9.20rc1.tar.gz
|
||||
# How to download it:
|
||||
# wget -O ghostscript-9.20rc1.tar.gz https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs920rc1/ghostscript-9.20rc1.tar.gz
|
||||
Source0: ghostscript-%{tarball_version}.tar.gz
|
||||
#Source0: ghostscript-%{tarball_version}.tar.gz
|
||||
# Normal URLs for Ghostscript releases:
|
||||
# URL for Source0: http://downloads.ghostscript.com/public/ghostscript-9.18.tar.gz
|
||||
# URL for MD5 checksums: http://downloads.ghostscript.com/public/MD5SUMS
|
||||
# MD5 checksum for Source0: 33a47567d7a591c00a253caddd12a88a
|
||||
#Source0: ghostscript-%{version}.tar.gz
|
||||
# URL for Source0: https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs920/ghostscript-9.20.tar.gz
|
||||
# How to download it:
|
||||
# wget -O ghostscript-9.20.tar.gz https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs920/ghostscript-9.20.tar.gz
|
||||
# URL for MD5 checksums: https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs920/MD5SUMS
|
||||
# MD5 checksum for Source0: 93c5987cd3ab341108be1ebbaadc24fe
|
||||
Source0: ghostscript-%{version}.tar.gz
|
||||
# Patch0...Patch9 is for patches from upstream:
|
||||
# Source10...Source99 is for sources from SUSE which are intended for upstream:
|
||||
# Patch10...Patch99 is for patches from SUSE which are intended for upstream:
|
||||
|
Loading…
x
Reference in New Issue
Block a user