ghostscript: Update to version 9.55.0

Message ID 20211020202843.3061810-1-adolf.belka@ipfire.org
State Accepted
Commit 4ee445ce44e801c5746e05f06ffa7d05932fdee7
Headers
Series ghostscript: Update to version 9.55.0 |

Commit Message

Adolf Belka Oct. 20, 2021, 8:28 p.m. UTC
  - Update from 9.54 to 9.55.0
- Update rootfile
- Changelog
   Version 9.55.0 (2021-09-27)
     Highlights in this release include:
       This release includes the fix for the %pipe% security issue (CVE-2021-3781).
       New PDF Interpreter: This is an entirely new implementation written in C (rather
        than PostScript, as before). For a full discussion of this change and reasons for
        it see: Changes Coming to the PDF Interpreter.
       In this (9.55.0) release, the new PDF interpreter is disabled by default in
        Ghostscript, but can be used by specifying -dNEWPDF. We hope to make it the
        default in 9.56.0, and fully deprecate the PostScript implementation shortly
        after that (depending on the feedback we get).
       This also allows us to offer a new executable (gpdf, or gpdfwin??.exe on Windows)
        which is purely for PDF input. For this release, those new binaries are not
        included in the "install" make targets, nor in the Windows installers (they will
        be from 9.56.0 onwards).
       We would ask that as many users as possible take the opportunity to test with the
        new PDF implementation (i.e. using -dNEWPDF on your gs command line), and discuss
        any problems with us, before the new implementation becomes the default.
       The pdfwrite device now supports "passthrough" for JPX/JPG2000 data images (as
        well as the already supported JPEG/DCT Encoded). That means that if no rescaling
        or color conversion of the image data is required, the encoded/compressed image
        data from the input file will be written unchanged to the output, preventing
        potential image degradation caused by decompressing and recompressing.
       The Ghostscript/GhostPDL demo apps for C, C#, Java and Python have all had
        improvements and the C#/Java/Python language bindings have now been documented,
        see Ghostscript Language Bindings
       The Zugferd compliant PDF generating definitions (lib/zugferd.ps) have been
        updated and expanded to support the current version (2.1.1) of the Zugferd spec,
        and optionally different versions of the specification.
       The PCL/m output devices now support Duplex/Tumble.
       The internal support for "n-up" style simple imposition (introduced in 9.54.0) has
        been extended and improved for better support across all input formats.
       Ghostscript now supports object specific halftone - for example, different
        halftones can be specified for text and images, reflecting the differing needs of
        rendering those two types of object.
       Our efforts in code hygiene and maintainability continue.
       The usual round of bug fixes, compatibility changes, and incremental improvements.
       (9.53.0) We have added the capability to build with the Tesseract OCR engine. In
        such a build, new devices are available (pdfocr8/pdfocr24/pdfocr32) which render
        the output file to an image, OCR that image, and output the image "wrapped" up as
        a PDF file, with the OCR generated text information included as "invisible" text
        (in PDF terms, text rendering mode 3).
       Mainly due to time constraints, we only support including Tesseract from source
        included in our release packages, and not linking to Tesseract/Leptonica shared
        libraries. Whether we add this capability will be largely dependent on community
        demand for the feature.
       See Enabling OCR for more details.
     For a list of open issues, or to report problems, please visit bugs.ghostscript.com.
     Incompatible changes
       (9.55.0) Changes to the device API. This will affect developers and maintainers of
        Ghostscript devices. Firstly, and most importantly, the way device-specific
        "procs" are specified has been rewritten to make it (we think!) clearer and less
        confusing. See The Interface between Ghostscript and Device Drivers and The Great
        Device Rework Of 2021 for more details.
       (9.55.0) The command line options -sGraphicsICCProfile=___, -dGraphicsIntent=#,
        -dGraphicsBlackPt=#, -dGraphicsKPreserve=# have been changed to
        -sVectorICCProfile=___, -dVectorIntent=#, -dVectorBlackPt=#,
        -dVectorKPreserve=#.
     From 9.55.0 onwards, in recognition of how unwieldy very large HTML files can become
      (History9.html had reached 8.1Mb!), we intend to only include the summary
      highlights (above).
     For anyone wanting the full details of the changes in a release, we ask them to look
      at the history in our public git repository: ghostpdl-9.55.0 log.
     If this change does not draw negative feedback, History?.htm file(s) will be removed
      from the release archives.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/packages/ghostscript | 404 +++++++++++++-------------
 lfs/ghostscript                       |   6 +-
 2 files changed, 205 insertions(+), 205 deletions(-)
  

Comments

Michael Tremer Oct. 21, 2021, 10:11 a.m. UTC | #1
Reviewed-by: Michael Tremer <michael.tremer@ipfire.org>

> On 20 Oct 2021, at 21:28, Adolf Belka <adolf.belka@ipfire.org> wrote:
> 
> - Update from 9.54 to 9.55.0
> - Update rootfile
> - Changelog
>   Version 9.55.0 (2021-09-27)
>     Highlights in this release include:
>       This release includes the fix for the %pipe% security issue (CVE-2021-3781).
>       New PDF Interpreter: This is an entirely new implementation written in C (rather
>        than PostScript, as before). For a full discussion of this change and reasons for
>        it see: Changes Coming to the PDF Interpreter.
>       In this (9.55.0) release, the new PDF interpreter is disabled by default in
>        Ghostscript, but can be used by specifying -dNEWPDF. We hope to make it the
>        default in 9.56.0, and fully deprecate the PostScript implementation shortly
>        after that (depending on the feedback we get).
>       This also allows us to offer a new executable (gpdf, or gpdfwin??.exe on Windows)
>        which is purely for PDF input. For this release, those new binaries are not
>        included in the "install" make targets, nor in the Windows installers (they will
>        be from 9.56.0 onwards).
>       We would ask that as many users as possible take the opportunity to test with the
>        new PDF implementation (i.e. using -dNEWPDF on your gs command line), and discuss
>        any problems with us, before the new implementation becomes the default.
>       The pdfwrite device now supports "passthrough" for JPX/JPG2000 data images (as
>        well as the already supported JPEG/DCT Encoded). That means that if no rescaling
>        or color conversion of the image data is required, the encoded/compressed image
>        data from the input file will be written unchanged to the output, preventing
>        potential image degradation caused by decompressing and recompressing.
>       The Ghostscript/GhostPDL demo apps for C, C#, Java and Python have all had
>        improvements and the C#/Java/Python language bindings have now been documented,
>        see Ghostscript Language Bindings
>       The Zugferd compliant PDF generating definitions (lib/zugferd.ps) have been
>        updated and expanded to support the current version (2.1.1) of the Zugferd spec,
>        and optionally different versions of the specification.
>       The PCL/m output devices now support Duplex/Tumble.
>       The internal support for "n-up" style simple imposition (introduced in 9.54.0) has
>        been extended and improved for better support across all input formats.
>       Ghostscript now supports object specific halftone - for example, different
>        halftones can be specified for text and images, reflecting the differing needs of
>        rendering those two types of object.
>       Our efforts in code hygiene and maintainability continue.
>       The usual round of bug fixes, compatibility changes, and incremental improvements.
>       (9.53.0) We have added the capability to build with the Tesseract OCR engine. In
>        such a build, new devices are available (pdfocr8/pdfocr24/pdfocr32) which render
>        the output file to an image, OCR that image, and output the image "wrapped" up as
>        a PDF file, with the OCR generated text information included as "invisible" text
>        (in PDF terms, text rendering mode 3).
>       Mainly due to time constraints, we only support including Tesseract from source
>        included in our release packages, and not linking to Tesseract/Leptonica shared
>        libraries. Whether we add this capability will be largely dependent on community
>        demand for the feature.
>       See Enabling OCR for more details.
>     For a list of open issues, or to report problems, please visit bugs.ghostscript.com.
>     Incompatible changes
>       (9.55.0) Changes to the device API. This will affect developers and maintainers of
>        Ghostscript devices. Firstly, and most importantly, the way device-specific
>        "procs" are specified has been rewritten to make it (we think!) clearer and less
>        confusing. See The Interface between Ghostscript and Device Drivers and The Great
>        Device Rework Of 2021 for more details.
>       (9.55.0) The command line options -sGraphicsICCProfile=___, -dGraphicsIntent=#,
>        -dGraphicsBlackPt=#, -dGraphicsKPreserve=# have been changed to
>        -sVectorICCProfile=___, -dVectorIntent=#, -dVectorBlackPt=#,
>        -dVectorKPreserve=#.
>     From 9.55.0 onwards, in recognition of how unwieldy very large HTML files can become
>      (History9.html had reached 8.1Mb!), we intend to only include the summary
>      highlights (above).
>     For anyone wanting the full details of the changes in a release, we ask them to look
>      at the history in our public git repository: ghostpdl-9.55.0 log.
>     If this change does not draw negative feedback, History?.htm file(s) will be removed
>      from the release archives.
> 
> Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
> ---
> config/rootfiles/packages/ghostscript | 404 +++++++++++++-------------
> lfs/ghostscript                       |   6 +-
> 2 files changed, 205 insertions(+), 205 deletions(-)
> 
> diff --git a/config/rootfiles/packages/ghostscript b/config/rootfiles/packages/ghostscript
> index 45337fc36..0fc837dfa 100644
> --- a/config/rootfiles/packages/ghostscript
> +++ b/config/rootfiles/packages/ghostscript
> @@ -25,209 +25,209 @@ usr/bin/ps2ps
> usr/bin/ps2ps2
> usr/bin/unix-lpr.sh
> #usr/share/doc/ghostscript
> -#usr/share/doc/ghostscript/9.54.0
> -#usr/share/doc/ghostscript/9.54.0/API.htm
> -#usr/share/doc/ghostscript/9.54.0/C-style.htm
> -#usr/share/doc/ghostscript/9.54.0/COPYING
> -#usr/share/doc/ghostscript/9.54.0/Commprod.htm
> -#usr/share/doc/ghostscript/9.54.0/DLL.htm
> -#usr/share/doc/ghostscript/9.54.0/Deprecated.htm
> -#usr/share/doc/ghostscript/9.54.0/Develop.htm
> -#usr/share/doc/ghostscript/9.54.0/Devices.htm
> -#usr/share/doc/ghostscript/9.54.0/Drivers.htm
> -#usr/share/doc/ghostscript/9.54.0/Fonts.htm
> -#usr/share/doc/ghostscript/9.54.0/GS9_Color_Management.pdf
> -#usr/share/doc/ghostscript/9.54.0/History9.htm
> -#usr/share/doc/ghostscript/9.54.0/Install.htm
> -#usr/share/doc/ghostscript/9.54.0/Language.htm
> -#usr/share/doc/ghostscript/9.54.0/Lib.htm
> -#usr/share/doc/ghostscript/9.54.0/Make.htm
> -#usr/share/doc/ghostscript/9.54.0/News.htm
> -#usr/share/doc/ghostscript/9.54.0/Ps-style.htm
> -#usr/share/doc/ghostscript/9.54.0/Ps2epsi.htm
> -#usr/share/doc/ghostscript/9.54.0/Psfiles.htm
> -#usr/share/doc/ghostscript/9.54.0/Readme.htm
> -#usr/share/doc/ghostscript/9.54.0/Release.htm
> -#usr/share/doc/ghostscript/9.54.0/SavedPages.htm
> -#usr/share/doc/ghostscript/9.54.0/Source.htm
> -#usr/share/doc/ghostscript/9.54.0/Unix-lpr.htm
> -#usr/share/doc/ghostscript/9.54.0/Use.htm
> -#usr/share/doc/ghostscript/9.54.0/VectorDevices.htm
> -#usr/share/doc/ghostscript/9.54.0/WhatIsGS.htm
> -#usr/share/doc/ghostscript/9.54.0/gdevds32.c
> -#usr/share/doc/ghostscript/9.54.0/gs-style.css
> -#usr/share/doc/ghostscript/9.54.0/images
> -#usr/share/doc/ghostscript/9.54.0/images/Artifex_logo.png
> -#usr/share/doc/ghostscript/9.54.0/images/favicon.png
> -#usr/share/doc/ghostscript/9.54.0/images/ghostscript_logo.png
> -#usr/share/doc/ghostscript/9.54.0/images/hamburger-light.png
> -#usr/share/doc/ghostscript/9.54.0/images/x-light.png
> -#usr/share/doc/ghostscript/9.54.0/index.html
> -#usr/share/doc/ghostscript/9.54.0/index.js
> -#usr/share/doc/ghostscript/9.54.0/pscet_status.txt
> -#usr/share/doc/ghostscript/9.54.0/sample_downscale_device.htm
> -#usr/share/doc/ghostscript/9.54.0/style.css
> -#usr/share/doc/ghostscript/9.54.0/subclass.htm
> -#usr/share/doc/ghostscript/9.54.0/thirdparty.htm
> +#usr/share/doc/ghostscript/9.55.0
> +#usr/share/doc/ghostscript/9.55.0/API.htm
> +#usr/share/doc/ghostscript/9.55.0/C-style.htm
> +#usr/share/doc/ghostscript/9.55.0/COPYING
> +#usr/share/doc/ghostscript/9.55.0/Commprod.htm
> +#usr/share/doc/ghostscript/9.55.0/DLL.htm
> +#usr/share/doc/ghostscript/9.55.0/Deprecated.htm
> +#usr/share/doc/ghostscript/9.55.0/Develop.htm
> +#usr/share/doc/ghostscript/9.55.0/Devices.htm
> +#usr/share/doc/ghostscript/9.55.0/Drivers.htm
> +#usr/share/doc/ghostscript/9.55.0/Fonts.htm
> +#usr/share/doc/ghostscript/9.55.0/GS9_Color_Management.pdf
> +#usr/share/doc/ghostscript/9.55.0/History9.htm
> +#usr/share/doc/ghostscript/9.55.0/Install.htm
> +#usr/share/doc/ghostscript/9.55.0/Language.htm
> +#usr/share/doc/ghostscript/9.55.0/Lib.htm
> +#usr/share/doc/ghostscript/9.55.0/Make.htm
> +#usr/share/doc/ghostscript/9.55.0/News.htm
> +#usr/share/doc/ghostscript/9.55.0/Ps-style.htm
> +#usr/share/doc/ghostscript/9.55.0/Ps2epsi.htm
> +#usr/share/doc/ghostscript/9.55.0/Psfiles.htm
> +#usr/share/doc/ghostscript/9.55.0/Readme.htm
> +#usr/share/doc/ghostscript/9.55.0/Release.htm
> +#usr/share/doc/ghostscript/9.55.0/SavedPages.htm
> +#usr/share/doc/ghostscript/9.55.0/Source.htm
> +#usr/share/doc/ghostscript/9.55.0/Unix-lpr.htm
> +#usr/share/doc/ghostscript/9.55.0/Use.htm
> +#usr/share/doc/ghostscript/9.55.0/VectorDevices.htm
> +#usr/share/doc/ghostscript/9.55.0/WhatIsGS.htm
> +#usr/share/doc/ghostscript/9.55.0/gdevds32.c
> +#usr/share/doc/ghostscript/9.55.0/gs-style.css
> +#usr/share/doc/ghostscript/9.55.0/images
> +#usr/share/doc/ghostscript/9.55.0/images/Artifex_logo.png
> +#usr/share/doc/ghostscript/9.55.0/images/favicon.png
> +#usr/share/doc/ghostscript/9.55.0/images/ghostscript_logo.png
> +#usr/share/doc/ghostscript/9.55.0/images/hamburger-light.png
> +#usr/share/doc/ghostscript/9.55.0/images/x-light.png
> +#usr/share/doc/ghostscript/9.55.0/index.html
> +#usr/share/doc/ghostscript/9.55.0/index.js
> +#usr/share/doc/ghostscript/9.55.0/pscet_status.txt
> +#usr/share/doc/ghostscript/9.55.0/sample_downscale_device.htm
> +#usr/share/doc/ghostscript/9.55.0/style.css
> +#usr/share/doc/ghostscript/9.55.0/subclass.htm
> +#usr/share/doc/ghostscript/9.55.0/thirdparty.htm
> #usr/share/ghostscript
> -#usr/share/ghostscript/9.54.0
> -#usr/share/ghostscript/9.54.0/lib
> -usr/share/ghostscript/9.54.0/lib/PDFA_def.ps
> -usr/share/ghostscript/9.54.0/lib/PDFX_def.ps
> -usr/share/ghostscript/9.54.0/lib/PM760p.upp
> -usr/share/ghostscript/9.54.0/lib/PM760pl.upp
> -usr/share/ghostscript/9.54.0/lib/PM820p.upp
> -usr/share/ghostscript/9.54.0/lib/PM820pl.upp
> -usr/share/ghostscript/9.54.0/lib/Stc670p.upp
> -usr/share/ghostscript/9.54.0/lib/Stc670pl.upp
> -usr/share/ghostscript/9.54.0/lib/Stc680p.upp
> -usr/share/ghostscript/9.54.0/lib/Stc680pl.upp
> -usr/share/ghostscript/9.54.0/lib/Stc740p.upp
> -usr/share/ghostscript/9.54.0/lib/Stc740pl.upp
> -usr/share/ghostscript/9.54.0/lib/Stc760p.upp
> -usr/share/ghostscript/9.54.0/lib/Stc760pl.upp
> -usr/share/ghostscript/9.54.0/lib/Stc777p.upp
> -usr/share/ghostscript/9.54.0/lib/Stc777pl.upp
> -usr/share/ghostscript/9.54.0/lib/Stp720p.upp
> -usr/share/ghostscript/9.54.0/lib/Stp720pl.upp
> -usr/share/ghostscript/9.54.0/lib/Stp870p.upp
> -usr/share/ghostscript/9.54.0/lib/Stp870pl.upp
> -usr/share/ghostscript/9.54.0/lib/acctest.ps
> -usr/share/ghostscript/9.54.0/lib/align.ps
> -usr/share/ghostscript/9.54.0/lib/bj8.rpd
> -usr/share/ghostscript/9.54.0/lib/bj8gc12f.upp
> -usr/share/ghostscript/9.54.0/lib/bj8hg12f.upp
> -usr/share/ghostscript/9.54.0/lib/bj8oh06n.upp
> -usr/share/ghostscript/9.54.0/lib/bj8pa06n.upp
> -usr/share/ghostscript/9.54.0/lib/bj8pp12f.upp
> -usr/share/ghostscript/9.54.0/lib/bj8ts06n.upp
> -usr/share/ghostscript/9.54.0/lib/bjc6000a1.upp
> -usr/share/ghostscript/9.54.0/lib/bjc6000b1.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610a0.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610a1.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610a2.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610a3.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610a4.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610a5.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610a6.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610a7.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610a8.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610b1.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610b2.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610b3.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610b4.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610b6.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610b7.upp
> -usr/share/ghostscript/9.54.0/lib/bjc610b8.upp
> -usr/share/ghostscript/9.54.0/lib/caption.ps
> -usr/share/ghostscript/9.54.0/lib/cbjc600.ppd
> -usr/share/ghostscript/9.54.0/lib/cbjc800.ppd
> -usr/share/ghostscript/9.54.0/lib/cdj550.upp
> -usr/share/ghostscript/9.54.0/lib/cdj690.upp
> -usr/share/ghostscript/9.54.0/lib/cdj690ec.upp
> -usr/share/ghostscript/9.54.0/lib/cid2code.ps
> -usr/share/ghostscript/9.54.0/lib/dnj750c.upp
> -usr/share/ghostscript/9.54.0/lib/dnj750m.upp
> -usr/share/ghostscript/9.54.0/lib/docie.ps
> -usr/share/ghostscript/9.54.0/lib/font2pcl.ps
> -usr/share/ghostscript/9.54.0/lib/ghostpdf.ppd
> -usr/share/ghostscript/9.54.0/lib/gs_ce_e.ps
> -usr/share/ghostscript/9.54.0/lib/gs_css_e.ps
> -usr/share/ghostscript/9.54.0/lib/gs_il2_e.ps
> -usr/share/ghostscript/9.54.0/lib/gs_kanji.ps
> -usr/share/ghostscript/9.54.0/lib/gs_ksb_e.ps
> -usr/share/ghostscript/9.54.0/lib/gs_l.xbm
> -usr/share/ghostscript/9.54.0/lib/gs_l.xpm
> -usr/share/ghostscript/9.54.0/lib/gs_l_m.xbm
> -usr/share/ghostscript/9.54.0/lib/gs_lgo_e.ps
> -usr/share/ghostscript/9.54.0/lib/gs_lgx_e.ps
> -usr/share/ghostscript/9.54.0/lib/gs_m.xbm
> -usr/share/ghostscript/9.54.0/lib/gs_m.xpm
> -usr/share/ghostscript/9.54.0/lib/gs_m_m.xbm
> -usr/share/ghostscript/9.54.0/lib/gs_s.xbm
> -usr/share/ghostscript/9.54.0/lib/gs_s.xpm
> -usr/share/ghostscript/9.54.0/lib/gs_s_m.xbm
> -usr/share/ghostscript/9.54.0/lib/gs_t.xbm
> -usr/share/ghostscript/9.54.0/lib/gs_t.xpm
> -usr/share/ghostscript/9.54.0/lib/gs_t_m.xbm
> -usr/share/ghostscript/9.54.0/lib/gs_wl1_e.ps
> -usr/share/ghostscript/9.54.0/lib/gs_wl2_e.ps
> -usr/share/ghostscript/9.54.0/lib/gs_wl5_e.ps
> -usr/share/ghostscript/9.54.0/lib/gslp.ps
> -usr/share/ghostscript/9.54.0/lib/gsnup.ps
> -usr/share/ghostscript/9.54.0/lib/ht_ccsto.ps
> -usr/share/ghostscript/9.54.0/lib/image-qa.ps
> -usr/share/ghostscript/9.54.0/lib/jispaper.ps
> -usr/share/ghostscript/9.54.0/lib/landscap.ps
> -usr/share/ghostscript/9.54.0/lib/lines.ps
> -usr/share/ghostscript/9.54.0/lib/mkcidfm.ps
> -usr/share/ghostscript/9.54.0/lib/necp2x.upp
> -usr/share/ghostscript/9.54.0/lib/necp2x6.upp
> -usr/share/ghostscript/9.54.0/lib/pdf2dsc.ps
> -usr/share/ghostscript/9.54.0/lib/pdf_info.ps
> -usr/share/ghostscript/9.54.0/lib/pf2afm.ps
> -usr/share/ghostscript/9.54.0/lib/pfbtopfa.ps
> -usr/share/ghostscript/9.54.0/lib/ppath.ps
> -usr/share/ghostscript/9.54.0/lib/pphs.ps
> -usr/share/ghostscript/9.54.0/lib/prfont.ps
> -usr/share/ghostscript/9.54.0/lib/printafm.ps
> -usr/share/ghostscript/9.54.0/lib/ps2ai.ps
> -usr/share/ghostscript/9.54.0/lib/ps2epsi.ps
> -usr/share/ghostscript/9.54.0/lib/ras1.upp
> -usr/share/ghostscript/9.54.0/lib/ras24.upp
> -usr/share/ghostscript/9.54.0/lib/ras3.upp
> -usr/share/ghostscript/9.54.0/lib/ras32.upp
> -usr/share/ghostscript/9.54.0/lib/ras4.upp
> -usr/share/ghostscript/9.54.0/lib/ras8m.upp
> -usr/share/ghostscript/9.54.0/lib/rollconv.ps
> -usr/share/ghostscript/9.54.0/lib/s400a1.upp
> -usr/share/ghostscript/9.54.0/lib/s400b1.upp
> -usr/share/ghostscript/9.54.0/lib/sharp.upp
> -usr/share/ghostscript/9.54.0/lib/sipixa6.upp
> -usr/share/ghostscript/9.54.0/lib/st640ih.upp
> -usr/share/ghostscript/9.54.0/lib/st640ihg.upp
> -usr/share/ghostscript/9.54.0/lib/st640p.upp
> -usr/share/ghostscript/9.54.0/lib/st640pg.upp
> -usr/share/ghostscript/9.54.0/lib/st640pl.upp
> -usr/share/ghostscript/9.54.0/lib/st640plg.upp
> -usr/share/ghostscript/9.54.0/lib/stc.upp
> -usr/share/ghostscript/9.54.0/lib/stc1520h.upp
> -usr/share/ghostscript/9.54.0/lib/stc2.upp
> -usr/share/ghostscript/9.54.0/lib/stc200_h.upp
> -usr/share/ghostscript/9.54.0/lib/stc2_h.upp
> -usr/share/ghostscript/9.54.0/lib/stc2s_h.upp
> -usr/share/ghostscript/9.54.0/lib/stc300.upp
> -usr/share/ghostscript/9.54.0/lib/stc300bl.upp
> -usr/share/ghostscript/9.54.0/lib/stc300bm.upp
> -usr/share/ghostscript/9.54.0/lib/stc500p.upp
> -usr/share/ghostscript/9.54.0/lib/stc500ph.upp
> -usr/share/ghostscript/9.54.0/lib/stc600ih.upp
> -usr/share/ghostscript/9.54.0/lib/stc600p.upp
> -usr/share/ghostscript/9.54.0/lib/stc600pl.upp
> -usr/share/ghostscript/9.54.0/lib/stc640p.upp
> -usr/share/ghostscript/9.54.0/lib/stc740ih.upp
> -usr/share/ghostscript/9.54.0/lib/stc800ih.upp
> -usr/share/ghostscript/9.54.0/lib/stc800p.upp
> -usr/share/ghostscript/9.54.0/lib/stc800pl.upp
> -usr/share/ghostscript/9.54.0/lib/stc_h.upp
> -usr/share/ghostscript/9.54.0/lib/stc_l.upp
> -usr/share/ghostscript/9.54.0/lib/stcany.upp
> -usr/share/ghostscript/9.54.0/lib/stcany_h.upp
> -usr/share/ghostscript/9.54.0/lib/stcinfo.ps
> -usr/share/ghostscript/9.54.0/lib/stcolor.ps
> -usr/share/ghostscript/9.54.0/lib/stocht.ps
> -usr/share/ghostscript/9.54.0/lib/traceimg.ps
> -usr/share/ghostscript/9.54.0/lib/traceop.ps
> -usr/share/ghostscript/9.54.0/lib/uninfo.ps
> -usr/share/ghostscript/9.54.0/lib/viewcmyk.ps
> -usr/share/ghostscript/9.54.0/lib/viewgif.ps
> -usr/share/ghostscript/9.54.0/lib/viewjpeg.ps
> -usr/share/ghostscript/9.54.0/lib/viewmiff.ps
> -usr/share/ghostscript/9.54.0/lib/viewpbm.ps
> -usr/share/ghostscript/9.54.0/lib/viewpcx.ps
> -usr/share/ghostscript/9.54.0/lib/viewps2a.ps
> -usr/share/ghostscript/9.54.0/lib/winmaps.ps
> -usr/share/ghostscript/9.54.0/lib/zeroline.ps
> +#usr/share/ghostscript/9.55.0
> +#usr/share/ghostscript/9.55.0/lib
> +#usr/share/ghostscript/9.55.0/lib/PDFA_def.ps
> +#usr/share/ghostscript/9.55.0/lib/PDFX_def.ps
> +#usr/share/ghostscript/9.55.0/lib/PM760p.upp
> +#usr/share/ghostscript/9.55.0/lib/PM760pl.upp
> +#usr/share/ghostscript/9.55.0/lib/PM820p.upp
> +#usr/share/ghostscript/9.55.0/lib/PM820pl.upp
> +#usr/share/ghostscript/9.55.0/lib/Stc670p.upp
> +#usr/share/ghostscript/9.55.0/lib/Stc670pl.upp
> +#usr/share/ghostscript/9.55.0/lib/Stc680p.upp
> +#usr/share/ghostscript/9.55.0/lib/Stc680pl.upp
> +#usr/share/ghostscript/9.55.0/lib/Stc740p.upp
> +#usr/share/ghostscript/9.55.0/lib/Stc740pl.upp
> +#usr/share/ghostscript/9.55.0/lib/Stc760p.upp
> +#usr/share/ghostscript/9.55.0/lib/Stc760pl.upp
> +#usr/share/ghostscript/9.55.0/lib/Stc777p.upp
> +#usr/share/ghostscript/9.55.0/lib/Stc777pl.upp
> +#usr/share/ghostscript/9.55.0/lib/Stp720p.upp
> +#usr/share/ghostscript/9.55.0/lib/Stp720pl.upp
> +#usr/share/ghostscript/9.55.0/lib/Stp870p.upp
> +#usr/share/ghostscript/9.55.0/lib/Stp870pl.upp
> +#usr/share/ghostscript/9.55.0/lib/acctest.ps
> +#usr/share/ghostscript/9.55.0/lib/align.ps
> +#usr/share/ghostscript/9.55.0/lib/bj8.rpd
> +#usr/share/ghostscript/9.55.0/lib/bj8gc12f.upp
> +#usr/share/ghostscript/9.55.0/lib/bj8hg12f.upp
> +#usr/share/ghostscript/9.55.0/lib/bj8oh06n.upp
> +#usr/share/ghostscript/9.55.0/lib/bj8pa06n.upp
> +#usr/share/ghostscript/9.55.0/lib/bj8pp12f.upp
> +#usr/share/ghostscript/9.55.0/lib/bj8ts06n.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc6000a1.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc6000b1.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610a0.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610a1.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610a2.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610a3.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610a4.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610a5.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610a6.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610a7.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610a8.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610b1.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610b2.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610b3.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610b4.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610b6.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610b7.upp
> +#usr/share/ghostscript/9.55.0/lib/bjc610b8.upp
> +#usr/share/ghostscript/9.55.0/lib/caption.ps
> +#usr/share/ghostscript/9.55.0/lib/cbjc600.ppd
> +#usr/share/ghostscript/9.55.0/lib/cbjc800.ppd
> +#usr/share/ghostscript/9.55.0/lib/cdj550.upp
> +#usr/share/ghostscript/9.55.0/lib/cdj690.upp
> +#usr/share/ghostscript/9.55.0/lib/cdj690ec.upp
> +#usr/share/ghostscript/9.55.0/lib/cid2code.ps
> +#usr/share/ghostscript/9.55.0/lib/dnj750c.upp
> +#usr/share/ghostscript/9.55.0/lib/dnj750m.upp
> +#usr/share/ghostscript/9.55.0/lib/docie.ps
> +#usr/share/ghostscript/9.55.0/lib/font2pcl.ps
> +#usr/share/ghostscript/9.55.0/lib/ghostpdf.ppd
> +#usr/share/ghostscript/9.55.0/lib/gs_ce_e.ps
> +#usr/share/ghostscript/9.55.0/lib/gs_css_e.ps
> +#usr/share/ghostscript/9.55.0/lib/gs_il2_e.ps
> +#usr/share/ghostscript/9.55.0/lib/gs_kanji.ps
> +#usr/share/ghostscript/9.55.0/lib/gs_ksb_e.ps
> +#usr/share/ghostscript/9.55.0/lib/gs_l.xbm
> +#usr/share/ghostscript/9.55.0/lib/gs_l.xpm
> +#usr/share/ghostscript/9.55.0/lib/gs_l_m.xbm
> +#usr/share/ghostscript/9.55.0/lib/gs_lgo_e.ps
> +#usr/share/ghostscript/9.55.0/lib/gs_lgx_e.ps
> +#usr/share/ghostscript/9.55.0/lib/gs_m.xbm
> +#usr/share/ghostscript/9.55.0/lib/gs_m.xpm
> +#usr/share/ghostscript/9.55.0/lib/gs_m_m.xbm
> +#usr/share/ghostscript/9.55.0/lib/gs_s.xbm
> +#usr/share/ghostscript/9.55.0/lib/gs_s.xpm
> +#usr/share/ghostscript/9.55.0/lib/gs_s_m.xbm
> +#usr/share/ghostscript/9.55.0/lib/gs_t.xbm
> +#usr/share/ghostscript/9.55.0/lib/gs_t.xpm
> +#usr/share/ghostscript/9.55.0/lib/gs_t_m.xbm
> +#usr/share/ghostscript/9.55.0/lib/gs_wl1_e.ps
> +#usr/share/ghostscript/9.55.0/lib/gs_wl2_e.ps
> +#usr/share/ghostscript/9.55.0/lib/gs_wl5_e.ps
> +#usr/share/ghostscript/9.55.0/lib/gslp.ps
> +#usr/share/ghostscript/9.55.0/lib/gsnup.ps
> +#usr/share/ghostscript/9.55.0/lib/ht_ccsto.ps
> +#usr/share/ghostscript/9.55.0/lib/image-qa.ps
> +#usr/share/ghostscript/9.55.0/lib/jispaper.ps
> +#usr/share/ghostscript/9.55.0/lib/landscap.ps
> +#usr/share/ghostscript/9.55.0/lib/lines.ps
> +#usr/share/ghostscript/9.55.0/lib/mkcidfm.ps
> +#usr/share/ghostscript/9.55.0/lib/necp2x.upp
> +#usr/share/ghostscript/9.55.0/lib/necp2x6.upp
> +#usr/share/ghostscript/9.55.0/lib/pdf2dsc.ps
> +#usr/share/ghostscript/9.55.0/lib/pdf_info.ps
> +#usr/share/ghostscript/9.55.0/lib/pf2afm.ps
> +#usr/share/ghostscript/9.55.0/lib/pfbtopfa.ps
> +#usr/share/ghostscript/9.55.0/lib/ppath.ps
> +#usr/share/ghostscript/9.55.0/lib/pphs.ps
> +#usr/share/ghostscript/9.55.0/lib/prfont.ps
> +#usr/share/ghostscript/9.55.0/lib/printafm.ps
> +#usr/share/ghostscript/9.55.0/lib/ps2ai.ps
> +#usr/share/ghostscript/9.55.0/lib/ps2epsi.ps
> +#usr/share/ghostscript/9.55.0/lib/ras1.upp
> +#usr/share/ghostscript/9.55.0/lib/ras24.upp
> +#usr/share/ghostscript/9.55.0/lib/ras3.upp
> +#usr/share/ghostscript/9.55.0/lib/ras32.upp
> +#usr/share/ghostscript/9.55.0/lib/ras4.upp
> +#usr/share/ghostscript/9.55.0/lib/ras8m.upp
> +#usr/share/ghostscript/9.55.0/lib/rollconv.ps
> +#usr/share/ghostscript/9.55.0/lib/s400a1.upp
> +#usr/share/ghostscript/9.55.0/lib/s400b1.upp
> +#usr/share/ghostscript/9.55.0/lib/sharp.upp
> +#usr/share/ghostscript/9.55.0/lib/sipixa6.upp
> +#usr/share/ghostscript/9.55.0/lib/st640ih.upp
> +#usr/share/ghostscript/9.55.0/lib/st640ihg.upp
> +#usr/share/ghostscript/9.55.0/lib/st640p.upp
> +#usr/share/ghostscript/9.55.0/lib/st640pg.upp
> +#usr/share/ghostscript/9.55.0/lib/st640pl.upp
> +#usr/share/ghostscript/9.55.0/lib/st640plg.upp
> +#usr/share/ghostscript/9.55.0/lib/stc.upp
> +#usr/share/ghostscript/9.55.0/lib/stc1520h.upp
> +#usr/share/ghostscript/9.55.0/lib/stc2.upp
> +#usr/share/ghostscript/9.55.0/lib/stc200_h.upp
> +#usr/share/ghostscript/9.55.0/lib/stc2_h.upp
> +#usr/share/ghostscript/9.55.0/lib/stc2s_h.upp
> +#usr/share/ghostscript/9.55.0/lib/stc300.upp
> +#usr/share/ghostscript/9.55.0/lib/stc300bl.upp
> +#usr/share/ghostscript/9.55.0/lib/stc300bm.upp
> +#usr/share/ghostscript/9.55.0/lib/stc500p.upp
> +#usr/share/ghostscript/9.55.0/lib/stc500ph.upp
> +#usr/share/ghostscript/9.55.0/lib/stc600ih.upp
> +#usr/share/ghostscript/9.55.0/lib/stc600p.upp
> +#usr/share/ghostscript/9.55.0/lib/stc600pl.upp
> +#usr/share/ghostscript/9.55.0/lib/stc640p.upp
> +#usr/share/ghostscript/9.55.0/lib/stc740ih.upp
> +#usr/share/ghostscript/9.55.0/lib/stc800ih.upp
> +#usr/share/ghostscript/9.55.0/lib/stc800p.upp
> +#usr/share/ghostscript/9.55.0/lib/stc800pl.upp
> +#usr/share/ghostscript/9.55.0/lib/stc_h.upp
> +#usr/share/ghostscript/9.55.0/lib/stc_l.upp
> +#usr/share/ghostscript/9.55.0/lib/stcany.upp
> +#usr/share/ghostscript/9.55.0/lib/stcany_h.upp
> +#usr/share/ghostscript/9.55.0/lib/stcinfo.ps
> +#usr/share/ghostscript/9.55.0/lib/stcolor.ps
> +#usr/share/ghostscript/9.55.0/lib/stocht.ps
> +#usr/share/ghostscript/9.55.0/lib/traceimg.ps
> +#usr/share/ghostscript/9.55.0/lib/traceop.ps
> +#usr/share/ghostscript/9.55.0/lib/uninfo.ps
> +#usr/share/ghostscript/9.55.0/lib/viewcmyk.ps
> +#usr/share/ghostscript/9.55.0/lib/viewgif.ps
> +#usr/share/ghostscript/9.55.0/lib/viewjpeg.ps
> +#usr/share/ghostscript/9.55.0/lib/viewmiff.ps
> +#usr/share/ghostscript/9.55.0/lib/viewpbm.ps
> +#usr/share/ghostscript/9.55.0/lib/viewpcx.ps
> +#usr/share/ghostscript/9.55.0/lib/viewps2a.ps
> +#usr/share/ghostscript/9.55.0/lib/winmaps.ps
> +#usr/share/ghostscript/9.55.0/lib/zeroline.ps
> #usr/share/ghostscript/fonts
> #usr/share/ghostscript/fonts/COPYING
> #usr/share/ghostscript/fonts/ChangeLog
> diff --git a/lfs/ghostscript b/lfs/ghostscript
> index 1ee14a16e..695ff6bcb 100644
> --- a/lfs/ghostscript
> +++ b/lfs/ghostscript
> @@ -24,7 +24,7 @@
> 
> include Config
> 
> -VER        = 9.54.0
> +VER        = 9.55.0
> 
> THISAPP    = ghostscript-$(VER)
> DL_FILE    = $(THISAPP).tar.xz
> @@ -32,7 +32,7 @@ DL_FROM    = $(URL_IPFIRE)
> DIR_APP    = $(DIR_SRC)/$(THISAPP)
> TARGET     = $(DIR_INFO)/$(THISAPP)
> PROG       = ghostscript
> -PAK_VER    = 8
> +PAK_VER    = 9
> 
> DEPS       = cups dbus libtiff
> 
> @@ -48,7 +48,7 @@ $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
> ghostscript-fonts-std-8.11.tar.gz = $(URL_IPFIRE)/ghostscript-fonts-std-8.11.tar.gz
> gnu-gs-fonts-other-6.0.tar.gz = $(URL_IPFIRE)/gnu-gs-fonts-other-6.0.tar.gz
> 
> -$(DL_FILE)_MD5 = 72535d31018129a1a8ff636a47ba1f92
> +$(DL_FILE)_MD5 = 92aa46e75c4f32eb11d9c975053d876c
> ghostscript-fonts-std-8.11.tar.gz_MD5 = 6865682b095f8c4500c54b285ff05ef6
> gnu-gs-fonts-other-6.0.tar.gz_MD5 = 33457d3f37de7ef03d2eea05a9e6aa4f
> 
> -- 
> 2.33.0
>
  

Patch

diff --git a/config/rootfiles/packages/ghostscript b/config/rootfiles/packages/ghostscript
index 45337fc36..0fc837dfa 100644
--- a/config/rootfiles/packages/ghostscript
+++ b/config/rootfiles/packages/ghostscript
@@ -25,209 +25,209 @@  usr/bin/ps2ps
 usr/bin/ps2ps2
 usr/bin/unix-lpr.sh
 #usr/share/doc/ghostscript
-#usr/share/doc/ghostscript/9.54.0
-#usr/share/doc/ghostscript/9.54.0/API.htm
-#usr/share/doc/ghostscript/9.54.0/C-style.htm
-#usr/share/doc/ghostscript/9.54.0/COPYING
-#usr/share/doc/ghostscript/9.54.0/Commprod.htm
-#usr/share/doc/ghostscript/9.54.0/DLL.htm
-#usr/share/doc/ghostscript/9.54.0/Deprecated.htm
-#usr/share/doc/ghostscript/9.54.0/Develop.htm
-#usr/share/doc/ghostscript/9.54.0/Devices.htm
-#usr/share/doc/ghostscript/9.54.0/Drivers.htm
-#usr/share/doc/ghostscript/9.54.0/Fonts.htm
-#usr/share/doc/ghostscript/9.54.0/GS9_Color_Management.pdf
-#usr/share/doc/ghostscript/9.54.0/History9.htm
-#usr/share/doc/ghostscript/9.54.0/Install.htm
-#usr/share/doc/ghostscript/9.54.0/Language.htm
-#usr/share/doc/ghostscript/9.54.0/Lib.htm
-#usr/share/doc/ghostscript/9.54.0/Make.htm
-#usr/share/doc/ghostscript/9.54.0/News.htm
-#usr/share/doc/ghostscript/9.54.0/Ps-style.htm
-#usr/share/doc/ghostscript/9.54.0/Ps2epsi.htm
-#usr/share/doc/ghostscript/9.54.0/Psfiles.htm
-#usr/share/doc/ghostscript/9.54.0/Readme.htm
-#usr/share/doc/ghostscript/9.54.0/Release.htm
-#usr/share/doc/ghostscript/9.54.0/SavedPages.htm
-#usr/share/doc/ghostscript/9.54.0/Source.htm
-#usr/share/doc/ghostscript/9.54.0/Unix-lpr.htm
-#usr/share/doc/ghostscript/9.54.0/Use.htm
-#usr/share/doc/ghostscript/9.54.0/VectorDevices.htm
-#usr/share/doc/ghostscript/9.54.0/WhatIsGS.htm
-#usr/share/doc/ghostscript/9.54.0/gdevds32.c
-#usr/share/doc/ghostscript/9.54.0/gs-style.css
-#usr/share/doc/ghostscript/9.54.0/images
-#usr/share/doc/ghostscript/9.54.0/images/Artifex_logo.png
-#usr/share/doc/ghostscript/9.54.0/images/favicon.png
-#usr/share/doc/ghostscript/9.54.0/images/ghostscript_logo.png
-#usr/share/doc/ghostscript/9.54.0/images/hamburger-light.png
-#usr/share/doc/ghostscript/9.54.0/images/x-light.png
-#usr/share/doc/ghostscript/9.54.0/index.html
-#usr/share/doc/ghostscript/9.54.0/index.js
-#usr/share/doc/ghostscript/9.54.0/pscet_status.txt
-#usr/share/doc/ghostscript/9.54.0/sample_downscale_device.htm
-#usr/share/doc/ghostscript/9.54.0/style.css
-#usr/share/doc/ghostscript/9.54.0/subclass.htm
-#usr/share/doc/ghostscript/9.54.0/thirdparty.htm
+#usr/share/doc/ghostscript/9.55.0
+#usr/share/doc/ghostscript/9.55.0/API.htm
+#usr/share/doc/ghostscript/9.55.0/C-style.htm
+#usr/share/doc/ghostscript/9.55.0/COPYING
+#usr/share/doc/ghostscript/9.55.0/Commprod.htm
+#usr/share/doc/ghostscript/9.55.0/DLL.htm
+#usr/share/doc/ghostscript/9.55.0/Deprecated.htm
+#usr/share/doc/ghostscript/9.55.0/Develop.htm
+#usr/share/doc/ghostscript/9.55.0/Devices.htm
+#usr/share/doc/ghostscript/9.55.0/Drivers.htm
+#usr/share/doc/ghostscript/9.55.0/Fonts.htm
+#usr/share/doc/ghostscript/9.55.0/GS9_Color_Management.pdf
+#usr/share/doc/ghostscript/9.55.0/History9.htm
+#usr/share/doc/ghostscript/9.55.0/Install.htm
+#usr/share/doc/ghostscript/9.55.0/Language.htm
+#usr/share/doc/ghostscript/9.55.0/Lib.htm
+#usr/share/doc/ghostscript/9.55.0/Make.htm
+#usr/share/doc/ghostscript/9.55.0/News.htm
+#usr/share/doc/ghostscript/9.55.0/Ps-style.htm
+#usr/share/doc/ghostscript/9.55.0/Ps2epsi.htm
+#usr/share/doc/ghostscript/9.55.0/Psfiles.htm
+#usr/share/doc/ghostscript/9.55.0/Readme.htm
+#usr/share/doc/ghostscript/9.55.0/Release.htm
+#usr/share/doc/ghostscript/9.55.0/SavedPages.htm
+#usr/share/doc/ghostscript/9.55.0/Source.htm
+#usr/share/doc/ghostscript/9.55.0/Unix-lpr.htm
+#usr/share/doc/ghostscript/9.55.0/Use.htm
+#usr/share/doc/ghostscript/9.55.0/VectorDevices.htm
+#usr/share/doc/ghostscript/9.55.0/WhatIsGS.htm
+#usr/share/doc/ghostscript/9.55.0/gdevds32.c
+#usr/share/doc/ghostscript/9.55.0/gs-style.css
+#usr/share/doc/ghostscript/9.55.0/images
+#usr/share/doc/ghostscript/9.55.0/images/Artifex_logo.png
+#usr/share/doc/ghostscript/9.55.0/images/favicon.png
+#usr/share/doc/ghostscript/9.55.0/images/ghostscript_logo.png
+#usr/share/doc/ghostscript/9.55.0/images/hamburger-light.png
+#usr/share/doc/ghostscript/9.55.0/images/x-light.png
+#usr/share/doc/ghostscript/9.55.0/index.html
+#usr/share/doc/ghostscript/9.55.0/index.js
+#usr/share/doc/ghostscript/9.55.0/pscet_status.txt
+#usr/share/doc/ghostscript/9.55.0/sample_downscale_device.htm
+#usr/share/doc/ghostscript/9.55.0/style.css
+#usr/share/doc/ghostscript/9.55.0/subclass.htm
+#usr/share/doc/ghostscript/9.55.0/thirdparty.htm
 #usr/share/ghostscript
-#usr/share/ghostscript/9.54.0
-#usr/share/ghostscript/9.54.0/lib
-usr/share/ghostscript/9.54.0/lib/PDFA_def.ps
-usr/share/ghostscript/9.54.0/lib/PDFX_def.ps
-usr/share/ghostscript/9.54.0/lib/PM760p.upp
-usr/share/ghostscript/9.54.0/lib/PM760pl.upp
-usr/share/ghostscript/9.54.0/lib/PM820p.upp
-usr/share/ghostscript/9.54.0/lib/PM820pl.upp
-usr/share/ghostscript/9.54.0/lib/Stc670p.upp
-usr/share/ghostscript/9.54.0/lib/Stc670pl.upp
-usr/share/ghostscript/9.54.0/lib/Stc680p.upp
-usr/share/ghostscript/9.54.0/lib/Stc680pl.upp
-usr/share/ghostscript/9.54.0/lib/Stc740p.upp
-usr/share/ghostscript/9.54.0/lib/Stc740pl.upp
-usr/share/ghostscript/9.54.0/lib/Stc760p.upp
-usr/share/ghostscript/9.54.0/lib/Stc760pl.upp
-usr/share/ghostscript/9.54.0/lib/Stc777p.upp
-usr/share/ghostscript/9.54.0/lib/Stc777pl.upp
-usr/share/ghostscript/9.54.0/lib/Stp720p.upp
-usr/share/ghostscript/9.54.0/lib/Stp720pl.upp
-usr/share/ghostscript/9.54.0/lib/Stp870p.upp
-usr/share/ghostscript/9.54.0/lib/Stp870pl.upp
-usr/share/ghostscript/9.54.0/lib/acctest.ps
-usr/share/ghostscript/9.54.0/lib/align.ps
-usr/share/ghostscript/9.54.0/lib/bj8.rpd
-usr/share/ghostscript/9.54.0/lib/bj8gc12f.upp
-usr/share/ghostscript/9.54.0/lib/bj8hg12f.upp
-usr/share/ghostscript/9.54.0/lib/bj8oh06n.upp
-usr/share/ghostscript/9.54.0/lib/bj8pa06n.upp
-usr/share/ghostscript/9.54.0/lib/bj8pp12f.upp
-usr/share/ghostscript/9.54.0/lib/bj8ts06n.upp
-usr/share/ghostscript/9.54.0/lib/bjc6000a1.upp
-usr/share/ghostscript/9.54.0/lib/bjc6000b1.upp
-usr/share/ghostscript/9.54.0/lib/bjc610a0.upp
-usr/share/ghostscript/9.54.0/lib/bjc610a1.upp
-usr/share/ghostscript/9.54.0/lib/bjc610a2.upp
-usr/share/ghostscript/9.54.0/lib/bjc610a3.upp
-usr/share/ghostscript/9.54.0/lib/bjc610a4.upp
-usr/share/ghostscript/9.54.0/lib/bjc610a5.upp
-usr/share/ghostscript/9.54.0/lib/bjc610a6.upp
-usr/share/ghostscript/9.54.0/lib/bjc610a7.upp
-usr/share/ghostscript/9.54.0/lib/bjc610a8.upp
-usr/share/ghostscript/9.54.0/lib/bjc610b1.upp
-usr/share/ghostscript/9.54.0/lib/bjc610b2.upp
-usr/share/ghostscript/9.54.0/lib/bjc610b3.upp
-usr/share/ghostscript/9.54.0/lib/bjc610b4.upp
-usr/share/ghostscript/9.54.0/lib/bjc610b6.upp
-usr/share/ghostscript/9.54.0/lib/bjc610b7.upp
-usr/share/ghostscript/9.54.0/lib/bjc610b8.upp
-usr/share/ghostscript/9.54.0/lib/caption.ps
-usr/share/ghostscript/9.54.0/lib/cbjc600.ppd
-usr/share/ghostscript/9.54.0/lib/cbjc800.ppd
-usr/share/ghostscript/9.54.0/lib/cdj550.upp
-usr/share/ghostscript/9.54.0/lib/cdj690.upp
-usr/share/ghostscript/9.54.0/lib/cdj690ec.upp
-usr/share/ghostscript/9.54.0/lib/cid2code.ps
-usr/share/ghostscript/9.54.0/lib/dnj750c.upp
-usr/share/ghostscript/9.54.0/lib/dnj750m.upp
-usr/share/ghostscript/9.54.0/lib/docie.ps
-usr/share/ghostscript/9.54.0/lib/font2pcl.ps
-usr/share/ghostscript/9.54.0/lib/ghostpdf.ppd
-usr/share/ghostscript/9.54.0/lib/gs_ce_e.ps
-usr/share/ghostscript/9.54.0/lib/gs_css_e.ps
-usr/share/ghostscript/9.54.0/lib/gs_il2_e.ps
-usr/share/ghostscript/9.54.0/lib/gs_kanji.ps
-usr/share/ghostscript/9.54.0/lib/gs_ksb_e.ps
-usr/share/ghostscript/9.54.0/lib/gs_l.xbm
-usr/share/ghostscript/9.54.0/lib/gs_l.xpm
-usr/share/ghostscript/9.54.0/lib/gs_l_m.xbm
-usr/share/ghostscript/9.54.0/lib/gs_lgo_e.ps
-usr/share/ghostscript/9.54.0/lib/gs_lgx_e.ps
-usr/share/ghostscript/9.54.0/lib/gs_m.xbm
-usr/share/ghostscript/9.54.0/lib/gs_m.xpm
-usr/share/ghostscript/9.54.0/lib/gs_m_m.xbm
-usr/share/ghostscript/9.54.0/lib/gs_s.xbm
-usr/share/ghostscript/9.54.0/lib/gs_s.xpm
-usr/share/ghostscript/9.54.0/lib/gs_s_m.xbm
-usr/share/ghostscript/9.54.0/lib/gs_t.xbm
-usr/share/ghostscript/9.54.0/lib/gs_t.xpm
-usr/share/ghostscript/9.54.0/lib/gs_t_m.xbm
-usr/share/ghostscript/9.54.0/lib/gs_wl1_e.ps
-usr/share/ghostscript/9.54.0/lib/gs_wl2_e.ps
-usr/share/ghostscript/9.54.0/lib/gs_wl5_e.ps
-usr/share/ghostscript/9.54.0/lib/gslp.ps
-usr/share/ghostscript/9.54.0/lib/gsnup.ps
-usr/share/ghostscript/9.54.0/lib/ht_ccsto.ps
-usr/share/ghostscript/9.54.0/lib/image-qa.ps
-usr/share/ghostscript/9.54.0/lib/jispaper.ps
-usr/share/ghostscript/9.54.0/lib/landscap.ps
-usr/share/ghostscript/9.54.0/lib/lines.ps
-usr/share/ghostscript/9.54.0/lib/mkcidfm.ps
-usr/share/ghostscript/9.54.0/lib/necp2x.upp
-usr/share/ghostscript/9.54.0/lib/necp2x6.upp
-usr/share/ghostscript/9.54.0/lib/pdf2dsc.ps
-usr/share/ghostscript/9.54.0/lib/pdf_info.ps
-usr/share/ghostscript/9.54.0/lib/pf2afm.ps
-usr/share/ghostscript/9.54.0/lib/pfbtopfa.ps
-usr/share/ghostscript/9.54.0/lib/ppath.ps
-usr/share/ghostscript/9.54.0/lib/pphs.ps
-usr/share/ghostscript/9.54.0/lib/prfont.ps
-usr/share/ghostscript/9.54.0/lib/printafm.ps
-usr/share/ghostscript/9.54.0/lib/ps2ai.ps
-usr/share/ghostscript/9.54.0/lib/ps2epsi.ps
-usr/share/ghostscript/9.54.0/lib/ras1.upp
-usr/share/ghostscript/9.54.0/lib/ras24.upp
-usr/share/ghostscript/9.54.0/lib/ras3.upp
-usr/share/ghostscript/9.54.0/lib/ras32.upp
-usr/share/ghostscript/9.54.0/lib/ras4.upp
-usr/share/ghostscript/9.54.0/lib/ras8m.upp
-usr/share/ghostscript/9.54.0/lib/rollconv.ps
-usr/share/ghostscript/9.54.0/lib/s400a1.upp
-usr/share/ghostscript/9.54.0/lib/s400b1.upp
-usr/share/ghostscript/9.54.0/lib/sharp.upp
-usr/share/ghostscript/9.54.0/lib/sipixa6.upp
-usr/share/ghostscript/9.54.0/lib/st640ih.upp
-usr/share/ghostscript/9.54.0/lib/st640ihg.upp
-usr/share/ghostscript/9.54.0/lib/st640p.upp
-usr/share/ghostscript/9.54.0/lib/st640pg.upp
-usr/share/ghostscript/9.54.0/lib/st640pl.upp
-usr/share/ghostscript/9.54.0/lib/st640plg.upp
-usr/share/ghostscript/9.54.0/lib/stc.upp
-usr/share/ghostscript/9.54.0/lib/stc1520h.upp
-usr/share/ghostscript/9.54.0/lib/stc2.upp
-usr/share/ghostscript/9.54.0/lib/stc200_h.upp
-usr/share/ghostscript/9.54.0/lib/stc2_h.upp
-usr/share/ghostscript/9.54.0/lib/stc2s_h.upp
-usr/share/ghostscript/9.54.0/lib/stc300.upp
-usr/share/ghostscript/9.54.0/lib/stc300bl.upp
-usr/share/ghostscript/9.54.0/lib/stc300bm.upp
-usr/share/ghostscript/9.54.0/lib/stc500p.upp
-usr/share/ghostscript/9.54.0/lib/stc500ph.upp
-usr/share/ghostscript/9.54.0/lib/stc600ih.upp
-usr/share/ghostscript/9.54.0/lib/stc600p.upp
-usr/share/ghostscript/9.54.0/lib/stc600pl.upp
-usr/share/ghostscript/9.54.0/lib/stc640p.upp
-usr/share/ghostscript/9.54.0/lib/stc740ih.upp
-usr/share/ghostscript/9.54.0/lib/stc800ih.upp
-usr/share/ghostscript/9.54.0/lib/stc800p.upp
-usr/share/ghostscript/9.54.0/lib/stc800pl.upp
-usr/share/ghostscript/9.54.0/lib/stc_h.upp
-usr/share/ghostscript/9.54.0/lib/stc_l.upp
-usr/share/ghostscript/9.54.0/lib/stcany.upp
-usr/share/ghostscript/9.54.0/lib/stcany_h.upp
-usr/share/ghostscript/9.54.0/lib/stcinfo.ps
-usr/share/ghostscript/9.54.0/lib/stcolor.ps
-usr/share/ghostscript/9.54.0/lib/stocht.ps
-usr/share/ghostscript/9.54.0/lib/traceimg.ps
-usr/share/ghostscript/9.54.0/lib/traceop.ps
-usr/share/ghostscript/9.54.0/lib/uninfo.ps
-usr/share/ghostscript/9.54.0/lib/viewcmyk.ps
-usr/share/ghostscript/9.54.0/lib/viewgif.ps
-usr/share/ghostscript/9.54.0/lib/viewjpeg.ps
-usr/share/ghostscript/9.54.0/lib/viewmiff.ps
-usr/share/ghostscript/9.54.0/lib/viewpbm.ps
-usr/share/ghostscript/9.54.0/lib/viewpcx.ps
-usr/share/ghostscript/9.54.0/lib/viewps2a.ps
-usr/share/ghostscript/9.54.0/lib/winmaps.ps
-usr/share/ghostscript/9.54.0/lib/zeroline.ps
+#usr/share/ghostscript/9.55.0
+#usr/share/ghostscript/9.55.0/lib
+#usr/share/ghostscript/9.55.0/lib/PDFA_def.ps
+#usr/share/ghostscript/9.55.0/lib/PDFX_def.ps
+#usr/share/ghostscript/9.55.0/lib/PM760p.upp
+#usr/share/ghostscript/9.55.0/lib/PM760pl.upp
+#usr/share/ghostscript/9.55.0/lib/PM820p.upp
+#usr/share/ghostscript/9.55.0/lib/PM820pl.upp
+#usr/share/ghostscript/9.55.0/lib/Stc670p.upp
+#usr/share/ghostscript/9.55.0/lib/Stc670pl.upp
+#usr/share/ghostscript/9.55.0/lib/Stc680p.upp
+#usr/share/ghostscript/9.55.0/lib/Stc680pl.upp
+#usr/share/ghostscript/9.55.0/lib/Stc740p.upp
+#usr/share/ghostscript/9.55.0/lib/Stc740pl.upp
+#usr/share/ghostscript/9.55.0/lib/Stc760p.upp
+#usr/share/ghostscript/9.55.0/lib/Stc760pl.upp
+#usr/share/ghostscript/9.55.0/lib/Stc777p.upp
+#usr/share/ghostscript/9.55.0/lib/Stc777pl.upp
+#usr/share/ghostscript/9.55.0/lib/Stp720p.upp
+#usr/share/ghostscript/9.55.0/lib/Stp720pl.upp
+#usr/share/ghostscript/9.55.0/lib/Stp870p.upp
+#usr/share/ghostscript/9.55.0/lib/Stp870pl.upp
+#usr/share/ghostscript/9.55.0/lib/acctest.ps
+#usr/share/ghostscript/9.55.0/lib/align.ps
+#usr/share/ghostscript/9.55.0/lib/bj8.rpd
+#usr/share/ghostscript/9.55.0/lib/bj8gc12f.upp
+#usr/share/ghostscript/9.55.0/lib/bj8hg12f.upp
+#usr/share/ghostscript/9.55.0/lib/bj8oh06n.upp
+#usr/share/ghostscript/9.55.0/lib/bj8pa06n.upp
+#usr/share/ghostscript/9.55.0/lib/bj8pp12f.upp
+#usr/share/ghostscript/9.55.0/lib/bj8ts06n.upp
+#usr/share/ghostscript/9.55.0/lib/bjc6000a1.upp
+#usr/share/ghostscript/9.55.0/lib/bjc6000b1.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610a0.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610a1.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610a2.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610a3.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610a4.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610a5.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610a6.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610a7.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610a8.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610b1.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610b2.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610b3.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610b4.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610b6.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610b7.upp
+#usr/share/ghostscript/9.55.0/lib/bjc610b8.upp
+#usr/share/ghostscript/9.55.0/lib/caption.ps
+#usr/share/ghostscript/9.55.0/lib/cbjc600.ppd
+#usr/share/ghostscript/9.55.0/lib/cbjc800.ppd
+#usr/share/ghostscript/9.55.0/lib/cdj550.upp
+#usr/share/ghostscript/9.55.0/lib/cdj690.upp
+#usr/share/ghostscript/9.55.0/lib/cdj690ec.upp
+#usr/share/ghostscript/9.55.0/lib/cid2code.ps
+#usr/share/ghostscript/9.55.0/lib/dnj750c.upp
+#usr/share/ghostscript/9.55.0/lib/dnj750m.upp
+#usr/share/ghostscript/9.55.0/lib/docie.ps
+#usr/share/ghostscript/9.55.0/lib/font2pcl.ps
+#usr/share/ghostscript/9.55.0/lib/ghostpdf.ppd
+#usr/share/ghostscript/9.55.0/lib/gs_ce_e.ps
+#usr/share/ghostscript/9.55.0/lib/gs_css_e.ps
+#usr/share/ghostscript/9.55.0/lib/gs_il2_e.ps
+#usr/share/ghostscript/9.55.0/lib/gs_kanji.ps
+#usr/share/ghostscript/9.55.0/lib/gs_ksb_e.ps
+#usr/share/ghostscript/9.55.0/lib/gs_l.xbm
+#usr/share/ghostscript/9.55.0/lib/gs_l.xpm
+#usr/share/ghostscript/9.55.0/lib/gs_l_m.xbm
+#usr/share/ghostscript/9.55.0/lib/gs_lgo_e.ps
+#usr/share/ghostscript/9.55.0/lib/gs_lgx_e.ps
+#usr/share/ghostscript/9.55.0/lib/gs_m.xbm
+#usr/share/ghostscript/9.55.0/lib/gs_m.xpm
+#usr/share/ghostscript/9.55.0/lib/gs_m_m.xbm
+#usr/share/ghostscript/9.55.0/lib/gs_s.xbm
+#usr/share/ghostscript/9.55.0/lib/gs_s.xpm
+#usr/share/ghostscript/9.55.0/lib/gs_s_m.xbm
+#usr/share/ghostscript/9.55.0/lib/gs_t.xbm
+#usr/share/ghostscript/9.55.0/lib/gs_t.xpm
+#usr/share/ghostscript/9.55.0/lib/gs_t_m.xbm
+#usr/share/ghostscript/9.55.0/lib/gs_wl1_e.ps
+#usr/share/ghostscript/9.55.0/lib/gs_wl2_e.ps
+#usr/share/ghostscript/9.55.0/lib/gs_wl5_e.ps
+#usr/share/ghostscript/9.55.0/lib/gslp.ps
+#usr/share/ghostscript/9.55.0/lib/gsnup.ps
+#usr/share/ghostscript/9.55.0/lib/ht_ccsto.ps
+#usr/share/ghostscript/9.55.0/lib/image-qa.ps
+#usr/share/ghostscript/9.55.0/lib/jispaper.ps
+#usr/share/ghostscript/9.55.0/lib/landscap.ps
+#usr/share/ghostscript/9.55.0/lib/lines.ps
+#usr/share/ghostscript/9.55.0/lib/mkcidfm.ps
+#usr/share/ghostscript/9.55.0/lib/necp2x.upp
+#usr/share/ghostscript/9.55.0/lib/necp2x6.upp
+#usr/share/ghostscript/9.55.0/lib/pdf2dsc.ps
+#usr/share/ghostscript/9.55.0/lib/pdf_info.ps
+#usr/share/ghostscript/9.55.0/lib/pf2afm.ps
+#usr/share/ghostscript/9.55.0/lib/pfbtopfa.ps
+#usr/share/ghostscript/9.55.0/lib/ppath.ps
+#usr/share/ghostscript/9.55.0/lib/pphs.ps
+#usr/share/ghostscript/9.55.0/lib/prfont.ps
+#usr/share/ghostscript/9.55.0/lib/printafm.ps
+#usr/share/ghostscript/9.55.0/lib/ps2ai.ps
+#usr/share/ghostscript/9.55.0/lib/ps2epsi.ps
+#usr/share/ghostscript/9.55.0/lib/ras1.upp
+#usr/share/ghostscript/9.55.0/lib/ras24.upp
+#usr/share/ghostscript/9.55.0/lib/ras3.upp
+#usr/share/ghostscript/9.55.0/lib/ras32.upp
+#usr/share/ghostscript/9.55.0/lib/ras4.upp
+#usr/share/ghostscript/9.55.0/lib/ras8m.upp
+#usr/share/ghostscript/9.55.0/lib/rollconv.ps
+#usr/share/ghostscript/9.55.0/lib/s400a1.upp
+#usr/share/ghostscript/9.55.0/lib/s400b1.upp
+#usr/share/ghostscript/9.55.0/lib/sharp.upp
+#usr/share/ghostscript/9.55.0/lib/sipixa6.upp
+#usr/share/ghostscript/9.55.0/lib/st640ih.upp
+#usr/share/ghostscript/9.55.0/lib/st640ihg.upp
+#usr/share/ghostscript/9.55.0/lib/st640p.upp
+#usr/share/ghostscript/9.55.0/lib/st640pg.upp
+#usr/share/ghostscript/9.55.0/lib/st640pl.upp
+#usr/share/ghostscript/9.55.0/lib/st640plg.upp
+#usr/share/ghostscript/9.55.0/lib/stc.upp
+#usr/share/ghostscript/9.55.0/lib/stc1520h.upp
+#usr/share/ghostscript/9.55.0/lib/stc2.upp
+#usr/share/ghostscript/9.55.0/lib/stc200_h.upp
+#usr/share/ghostscript/9.55.0/lib/stc2_h.upp
+#usr/share/ghostscript/9.55.0/lib/stc2s_h.upp
+#usr/share/ghostscript/9.55.0/lib/stc300.upp
+#usr/share/ghostscript/9.55.0/lib/stc300bl.upp
+#usr/share/ghostscript/9.55.0/lib/stc300bm.upp
+#usr/share/ghostscript/9.55.0/lib/stc500p.upp
+#usr/share/ghostscript/9.55.0/lib/stc500ph.upp
+#usr/share/ghostscript/9.55.0/lib/stc600ih.upp
+#usr/share/ghostscript/9.55.0/lib/stc600p.upp
+#usr/share/ghostscript/9.55.0/lib/stc600pl.upp
+#usr/share/ghostscript/9.55.0/lib/stc640p.upp
+#usr/share/ghostscript/9.55.0/lib/stc740ih.upp
+#usr/share/ghostscript/9.55.0/lib/stc800ih.upp
+#usr/share/ghostscript/9.55.0/lib/stc800p.upp
+#usr/share/ghostscript/9.55.0/lib/stc800pl.upp
+#usr/share/ghostscript/9.55.0/lib/stc_h.upp
+#usr/share/ghostscript/9.55.0/lib/stc_l.upp
+#usr/share/ghostscript/9.55.0/lib/stcany.upp
+#usr/share/ghostscript/9.55.0/lib/stcany_h.upp
+#usr/share/ghostscript/9.55.0/lib/stcinfo.ps
+#usr/share/ghostscript/9.55.0/lib/stcolor.ps
+#usr/share/ghostscript/9.55.0/lib/stocht.ps
+#usr/share/ghostscript/9.55.0/lib/traceimg.ps
+#usr/share/ghostscript/9.55.0/lib/traceop.ps
+#usr/share/ghostscript/9.55.0/lib/uninfo.ps
+#usr/share/ghostscript/9.55.0/lib/viewcmyk.ps
+#usr/share/ghostscript/9.55.0/lib/viewgif.ps
+#usr/share/ghostscript/9.55.0/lib/viewjpeg.ps
+#usr/share/ghostscript/9.55.0/lib/viewmiff.ps
+#usr/share/ghostscript/9.55.0/lib/viewpbm.ps
+#usr/share/ghostscript/9.55.0/lib/viewpcx.ps
+#usr/share/ghostscript/9.55.0/lib/viewps2a.ps
+#usr/share/ghostscript/9.55.0/lib/winmaps.ps
+#usr/share/ghostscript/9.55.0/lib/zeroline.ps
 #usr/share/ghostscript/fonts
 #usr/share/ghostscript/fonts/COPYING
 #usr/share/ghostscript/fonts/ChangeLog
diff --git a/lfs/ghostscript b/lfs/ghostscript
index 1ee14a16e..695ff6bcb 100644
--- a/lfs/ghostscript
+++ b/lfs/ghostscript
@@ -24,7 +24,7 @@ 
 
 include Config
 
-VER        = 9.54.0
+VER        = 9.55.0
 
 THISAPP    = ghostscript-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -32,7 +32,7 @@  DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = ghostscript
-PAK_VER    = 8
+PAK_VER    = 9
 
 DEPS       = cups dbus libtiff
 
@@ -48,7 +48,7 @@  $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 ghostscript-fonts-std-8.11.tar.gz = $(URL_IPFIRE)/ghostscript-fonts-std-8.11.tar.gz
 gnu-gs-fonts-other-6.0.tar.gz = $(URL_IPFIRE)/gnu-gs-fonts-other-6.0.tar.gz
 
-$(DL_FILE)_MD5 = 72535d31018129a1a8ff636a47ba1f92
+$(DL_FILE)_MD5 = 92aa46e75c4f32eb11d9c975053d876c
 ghostscript-fonts-std-8.11.tar.gz_MD5 = 6865682b095f8c4500c54b285ff05ef6
 gnu-gs-fonts-other-6.0.tar.gz_MD5 = 33457d3f37de7ef03d2eea05a9e6aa4f