gnu: jbig2dec: Replace with 0.15 [security fixes].
* gnu/packages/image.scm (jbig2dec-0.15): New public variable. (jbig2dec)[replacement]: New field.
This commit is contained in:
parent
a617fd55df
commit
910a20e2b8
|
@ -19,6 +19,7 @@
|
||||||
;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
|
;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
|
||||||
;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com>
|
;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com>
|
||||||
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||||
|
;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -495,6 +496,7 @@ arithmetic ops.")
|
||||||
(package
|
(package
|
||||||
(name "jbig2dec")
|
(name "jbig2dec")
|
||||||
(version "0.14")
|
(version "0.14")
|
||||||
|
(replacement jbig2dec-0.15)
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -519,6 +521,21 @@ work.")
|
||||||
(home-page "https://jbig2dec.com")
|
(home-page "https://jbig2dec.com")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
;; This is a bugfix release from an ongoing Ghostscript security audit.
|
||||||
|
;; It was released alongside Ghostscript 9.24.
|
||||||
|
(define-public jbig2dec-0.15
|
||||||
|
(package
|
||||||
|
(inherit jbig2dec)
|
||||||
|
(version "0.15")
|
||||||
|
(source (origin
|
||||||
|
(inherit (package-source jbig2dec))
|
||||||
|
(uri (string-append "https://github.com/ArtifexSoftware"
|
||||||
|
"/ghostpdl-downloads/releases/download/gs924/"
|
||||||
|
"jbig2dec-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0m1qwpbjbirgw2fqznbajdhdhh35d6xa2csr64lpjz735pvimykb"))))))
|
||||||
|
|
||||||
(define-public openjpeg
|
(define-public openjpeg
|
||||||
(package
|
(package
|
||||||
(name "openjpeg")
|
(name "openjpeg")
|
||||||
|
|
Loading…
Reference in New Issue