forked from pool/ghostscript
Accepting request 334736 from home:jsmeix:branches:Printing
Ghostscript version upgrade to 9.18rc2 (second release candidate for 9.18) OBS-URL: https://build.opensuse.org/request/show/334736 OBS-URL: https://build.opensuse.org/package/show/Printing/ghostscript?expand=0&rev=56
This commit is contained in:
parent
15c8faebef
commit
59c03fa4b8
@ -1,38 +0,0 @@
|
|||||||
--- base/gximono.c.orig 2015-09-23 16:04:26.000000000 +0200
|
|
||||||
+++ base/gximono.c 2015-09-24 11:56:42.000000000 +0200
|
|
||||||
@@ -1065,7 +1065,7 @@ image_render_mono_ht(gx_image_enum * pen
|
|
||||||
dda_next(dda_ht);
|
|
||||||
xn = fixed2int_var_rounded(dda_current(dda_ht));
|
|
||||||
while (xr < xn) {
|
|
||||||
- dev_value = color_cache[*psrc * spp_out];
|
|
||||||
+ dev_value = &(color_cache[*psrc * spp_out]);
|
|
||||||
for (j = 0; j < spp_out; j++) {
|
|
||||||
*(devc_contone[j])++ = dev_value[j];
|
|
||||||
}
|
|
||||||
@@ -1097,7 +1097,7 @@ image_render_mono_ht(gx_image_enum * pen
|
|
||||||
dda_next(dda_ht);
|
|
||||||
xn = fixed2int_var_rounded(dda_current(dda_ht));
|
|
||||||
while (xr > xn) {
|
|
||||||
- dev_value = color_cache[*psrc * spp_out];
|
|
||||||
+ dev_value = &(color_cache[*psrc * spp_out]);
|
|
||||||
for (j = 0; j < spp_out; j++) {
|
|
||||||
*(devc_contone[j])-- = dev_value[j];
|
|
||||||
}
|
|
||||||
@@ -1135,7 +1135,7 @@ image_render_mono_ht(gx_image_enum * pen
|
|
||||||
dda_next(dda_ht);
|
|
||||||
xn = fixed2int_var_rounded(dda_current(dda_ht));
|
|
||||||
while (xr > xn) {
|
|
||||||
- dev_value = color_cache[*psrc * spp_out];
|
|
||||||
+ dev_value = &(color_cache[*psrc * spp_out]);
|
|
||||||
for (j = 0; j < spp_out; j++) {
|
|
||||||
*(devc_contone[j] + position) = dev_value[j];
|
|
||||||
position -= LAND_BITS;
|
|
||||||
@@ -1172,7 +1172,7 @@ image_render_mono_ht(gx_image_enum * pen
|
|
||||||
dda_next(dda_ht);
|
|
||||||
xn = fixed2int_var_rounded(dda_current(dda_ht));
|
|
||||||
while (xr < xn) {
|
|
||||||
- dev_value = color_cache[*psrc * spp_out];
|
|
||||||
+ dev_value = &(color_cache[*psrc * spp_out]);
|
|
||||||
for (j = 0; j < spp_out; j++) {
|
|
||||||
*(devc_contone[j] + position) = dev_value[j];
|
|
||||||
devc_contone[j] += LAND_BITS;
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:cf3c63835c7836ab25b137941e04c6e8d9392057db09a76bb4d01df0adc8ee74
|
|
||||||
size 33721556
|
|
3
ghostscript-9.18rc2.tar.gz
Normal file
3
ghostscript-9.18rc2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:12e603464f09e0b0b2483286c95129c913ec16b8ecf9272801668058e1479b4b
|
||||||
|
size 33725337
|
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 29 11:05:48 CEST 2015 - jsmeix@suse.de
|
||||||
|
|
||||||
|
- Version upgrade to 9.18rc2 (second release candidate for 9.18).
|
||||||
|
For details see the News.htm and History9.htm files.
|
||||||
|
Regarding installing packages (in particular release candidates)
|
||||||
|
from the openSUSE build service development project "Printing"
|
||||||
|
see https://build.opensuse.org/project/show/Printing
|
||||||
|
- assign_pointer_not_value_in_gximono.c.patch is no longer needed
|
||||||
|
because it is fixed in the upstream sources.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Sep 24 10:29:04 CEST 2015 - jsmeix@suse.de
|
Thu Sep 24 10:29:04 CEST 2015 - jsmeix@suse.de
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ Url: http://www.ghostscript.com/
|
|||||||
# But only with the alphabetic prefix "9.pre15rc1" would be older than the previous version number "9.14"
|
# 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
|
# 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:
|
# so that we keep additionally the previous version number to upgrade from the previous version:
|
||||||
Version: 9.16pre18rc1
|
Version: 9.16pre18rc2
|
||||||
Release: 0
|
Release: 0
|
||||||
# Normal version for Ghostscript releases is the upstream version:
|
# Normal version for Ghostscript releases is the upstream version:
|
||||||
#Version: 9.16
|
#Version: 9.16
|
||||||
@ -43,7 +43,7 @@ Release: 0
|
|||||||
# Special tarball_version needed for Ghostscript release candidates e.g. "define tarball_version 9.15rc1".
|
# 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):
|
# For Ghostscript releases tarball_version and version are the same (i.e. the upstream version):
|
||||||
#define tarball_version %{version}
|
#define tarball_version %{version}
|
||||||
%define tarball_version 9.18rc1
|
%define tarball_version 9.18rc2
|
||||||
# built_version is used below in the install and files sections:
|
# 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".
|
# 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):
|
# For Ghostscript releases built_version and version are the same (i.e. the upstream version):
|
||||||
@ -55,8 +55,8 @@ Release: 0
|
|||||||
# URL for MD5 checksums: http://www.ghostscript.com/~chrisl/MD5SUMS
|
# URL for MD5 checksums: http://www.ghostscript.com/~chrisl/MD5SUMS
|
||||||
# or http://www.ghostscript.com/~chrisl/MD5SUM
|
# or http://www.ghostscript.com/~chrisl/MD5SUM
|
||||||
# or http://downloads.ghostscript.com/public/.release_candidate/MD5SUMS
|
# or http://downloads.ghostscript.com/public/.release_candidate/MD5SUMS
|
||||||
# MD5 checksum for Source0: fed5d3b6bd20265c25373310ce37b21f
|
# MD5 checksum for Source0: 7cea0466e845de0a05e60b89225ab0d3
|
||||||
Source0: http://downloads.ghostscript.com/public/.release_candidate/ghostscript-9.18rc1.tar.gz
|
Source0: http://downloads.ghostscript.com/public/.release_candidate/ghostscript-9.18rc2.tar.gz
|
||||||
# Normal URLs for Ghostscript releases:
|
# Normal URLs for Ghostscript releases:
|
||||||
# URL for Source0: http://downloads.ghostscript.com/public/ghostscript-9.16.tar.gz
|
# URL for Source0: http://downloads.ghostscript.com/public/ghostscript-9.16.tar.gz
|
||||||
# URL for MD5 checksums: http://downloads.ghostscript.com/public/MD5SUMS
|
# URL for MD5 checksums: http://downloads.ghostscript.com/public/MD5SUMS
|
||||||
@ -73,10 +73,6 @@ Source0: http://downloads.ghostscript.com/public/.release_candidate/ghost
|
|||||||
# but the hunk for LCMS2 (lcms2/include/lcms2.h) is still needed
|
# but the hunk for LCMS2 (lcms2/include/lcms2.h) is still needed
|
||||||
# see http://bugs.ghostscript.com/show_bug.cgi?id=695544
|
# see http://bugs.ghostscript.com/show_bug.cgi?id=695544
|
||||||
Patch11: ppc64le-support.patch
|
Patch11: ppc64le-support.patch
|
||||||
# Patch12 assign_pointer_not_value_in_gximono.c.patch attempts to fix
|
|
||||||
# a "assignment makes pointer from integer without a cast" compiler warning
|
|
||||||
# by assigning the pointer and not the integer value:
|
|
||||||
Patch12: assign_pointer_not_value_in_gximono.c.patch
|
|
||||||
#
|
#
|
||||||
# Source100...Source999 is for sources from SUSE which are not intended for upstream:
|
# Source100...Source999 is for sources from SUSE which are not intended for upstream:
|
||||||
#
|
#
|
||||||
@ -155,10 +151,6 @@ This package contains the development files for Minimal Ghostscript.
|
|||||||
# but the hunk for LCMS2 (lcms2/include/lcms2.h) is still needed
|
# but the hunk for LCMS2 (lcms2/include/lcms2.h) is still needed
|
||||||
# see http://bugs.ghostscript.com/show_bug.cgi?id=695544
|
# see http://bugs.ghostscript.com/show_bug.cgi?id=695544
|
||||||
%patch11 -p1 -b ppc64le-support.orig
|
%patch11 -p1 -b ppc64le-support.orig
|
||||||
# Patch12 assign_pointer_not_value_in_gximono.c.patch attempts to fix
|
|
||||||
# a "assignment makes pointer from integer without a cast" compiler warning
|
|
||||||
# by assigning the pointer and not the integer value:
|
|
||||||
%patch12 -b assign_pointer_not_value_in_gximono.c.orig
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# Set our preferred architecture-specific flags for the compiler and linker:
|
# Set our preferred architecture-specific flags for the compiler and linker:
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 29 11:05:48 CEST 2015 - jsmeix@suse.de
|
||||||
|
|
||||||
|
- Version upgrade to 9.18rc2 (second release candidate for 9.18).
|
||||||
|
For details see the News.htm and History9.htm files.
|
||||||
|
Regarding installing packages (in particular release candidates)
|
||||||
|
from the openSUSE build service development project "Printing"
|
||||||
|
see https://build.opensuse.org/project/show/Printing
|
||||||
|
- assign_pointer_not_value_in_gximono.c.patch is no longer needed
|
||||||
|
because it is fixed in the upstream sources.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Sep 24 10:29:04 CEST 2015 - jsmeix@suse.de
|
Thu Sep 24 10:29:04 CEST 2015 - jsmeix@suse.de
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ Url: http://www.ghostscript.com/
|
|||||||
# But only with the alphabetic prefix "9.pre15rc1" would be older than the previous version number "9.14"
|
# 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
|
# 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:
|
# so that we keep additionally the previous version number to upgrade from the previous version:
|
||||||
Version: 9.16pre18rc1
|
Version: 9.16pre18rc2
|
||||||
Release: 0
|
Release: 0
|
||||||
# Normal version for Ghostscript releases is the upstream version:
|
# Normal version for Ghostscript releases is the upstream version:
|
||||||
#Version: 9.16
|
#Version: 9.16
|
||||||
@ -63,7 +63,7 @@ Release: 0
|
|||||||
# Special tarball_version needed for Ghostscript release candidates e.g. "define tarball_version 9.15rc1".
|
# 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):
|
# For Ghostscript releases tarball_version and version are the same (i.e. the upstream version):
|
||||||
#define tarball_version %{version}
|
#define tarball_version %{version}
|
||||||
%define tarball_version 9.18rc1
|
%define tarball_version 9.18rc2
|
||||||
# built_version is used below in the install and files sections:
|
# 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".
|
# 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):
|
# For Ghostscript releases built_version and version are the same (i.e. the upstream version):
|
||||||
@ -75,8 +75,8 @@ Release: 0
|
|||||||
# URL for MD5 checksums: http://www.ghostscript.com/~chrisl/MD5SUMS
|
# URL for MD5 checksums: http://www.ghostscript.com/~chrisl/MD5SUMS
|
||||||
# or http://www.ghostscript.com/~chrisl/MD5SUM
|
# or http://www.ghostscript.com/~chrisl/MD5SUM
|
||||||
# or http://downloads.ghostscript.com/public/.release_candidate/MD5SUMS
|
# or http://downloads.ghostscript.com/public/.release_candidate/MD5SUMS
|
||||||
# MD5 checksum for Source0: fed5d3b6bd20265c25373310ce37b21f
|
# MD5 checksum for Source0: 7cea0466e845de0a05e60b89225ab0d3
|
||||||
Source0: http://downloads.ghostscript.com/public/.release_candidate/ghostscript-9.18rc1.tar.gz
|
Source0: http://downloads.ghostscript.com/public/.release_candidate/ghostscript-9.18rc2.tar.gz
|
||||||
# Normal URLs for Ghostscript releases:
|
# Normal URLs for Ghostscript releases:
|
||||||
# URL for Source0: http://downloads.ghostscript.com/public/ghostscript-9.16.tar.gz
|
# URL for Source0: http://downloads.ghostscript.com/public/ghostscript-9.16.tar.gz
|
||||||
# URL for MD5 checksums: http://downloads.ghostscript.com/public/MD5SUMS
|
# URL for MD5 checksums: http://downloads.ghostscript.com/public/MD5SUMS
|
||||||
@ -93,10 +93,6 @@ Source0: http://downloads.ghostscript.com/public/.release_candidate/ghost
|
|||||||
# but the hunk for LCMS2 (lcms2/include/lcms2.h) is still needed
|
# but the hunk for LCMS2 (lcms2/include/lcms2.h) is still needed
|
||||||
# see http://bugs.ghostscript.com/show_bug.cgi?id=695544
|
# see http://bugs.ghostscript.com/show_bug.cgi?id=695544
|
||||||
Patch11: ppc64le-support.patch
|
Patch11: ppc64le-support.patch
|
||||||
# Patch12 assign_pointer_not_value_in_gximono.c.patch attempts to fix
|
|
||||||
# a "assignment makes pointer from integer without a cast" compiler warning
|
|
||||||
# by assigning the pointer and not the integer value:
|
|
||||||
Patch12: assign_pointer_not_value_in_gximono.c.patch
|
|
||||||
#
|
#
|
||||||
# Source100...Source999 is for sources from SUSE which are not intended for upstream:
|
# Source100...Source999 is for sources from SUSE which are not intended for upstream:
|
||||||
#
|
#
|
||||||
@ -292,10 +288,6 @@ This package contains the development files for Ghostscript.
|
|||||||
# but the hunk for LCMS2 (lcms2/include/lcms2.h) is still needed
|
# but the hunk for LCMS2 (lcms2/include/lcms2.h) is still needed
|
||||||
# see http://bugs.ghostscript.com/show_bug.cgi?id=695544
|
# see http://bugs.ghostscript.com/show_bug.cgi?id=695544
|
||||||
%patch11 -p1 -b ppc64le-support.orig
|
%patch11 -p1 -b ppc64le-support.orig
|
||||||
# Patch12 assign_pointer_not_value_in_gximono.c.patch attempts to fix
|
|
||||||
# a "assignment makes pointer from integer without a cast" compiler warning
|
|
||||||
# by assigning the pointer and not the integer value:
|
|
||||||
%patch12 -b assign_pointer_not_value_in_gximono.c.orig
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# Set our preferred architecture-specific flags for the compiler and linker:
|
# Set our preferred architecture-specific flags for the compiler and linker:
|
||||||
|
Loading…
Reference in New Issue
Block a user