diff options
author | Leo Famulari <leo@famulari.name> | 2016-12-11 01:29:06 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-12-11 02:04:31 -0500 |
commit | 0e8b7b1c351a2307bfc33211b4d76dbe7dfa01ef (patch) | |
tree | 1dc3048c1b8033329246dec6c013802b40a30527 /gnu/packages/image.scm | |
parent | edd1652e0a66c7d0713c810c1e3711840d5ab8bc (diff) | |
download | patches-0e8b7b1c351a2307bfc33211b4d76dbe7dfa01ef.tar patches-0e8b7b1c351a2307bfc33211b4d76dbe7dfa01ef.tar.gz |
gnu: openjpeg: Update replacement to 2.1.2 [fixes CVE-2016-{7445,8332}].
* gnu/packages/image.scm (openjpeg/fixed): Replace variable with ...
(openjpeg-2.1.2): ... this.
[patches]: Remove patches inherited from openjpeg.
(openjpeg)[replacement]: Replace with openjpeg-2.1.2.
Diffstat (limited to 'gnu/packages/image.scm')
-rw-r--r-- | gnu/packages/image.scm | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index b9669ce177..86afb7320b 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -444,7 +444,7 @@ work.") (define-public openjpeg (package (name "openjpeg") - (replacement openjpeg/fixed) + (replacement openjpeg-2.1.2) (version "2.1.1") (source (origin @@ -481,16 +481,20 @@ error-resilience, a Java-viewer for j2k-images, ...") (home-page "https://github.com/uclouvain/openjpeg") (license license:bsd-2))) -(define openjpeg/fixed +(define openjpeg-2.1.2 (package (inherit openjpeg) + (version "2.1.2") (source (origin - (inherit (package-source openjpeg)) + (method url-fetch) + (uri (string-append "https://github.com/uclouvain/openjpeg/archive/v" + version ".tar.gz")) + (sha256 + (base32 + "19yz4g0c45sm8y1z01j9djsrl1mkz3pmw7fykc6hkvrqymp7prsc")) (patches - (append - (origin-patches (package-source openjpeg)) - (search-patches "openjpeg-CVE-2016-9850-CVE-2016-9851.patch"))))))) + (search-patches "openjpeg-CVE-2016-9850-CVE-2016-9851.patch")))))) (define-public openjpeg-1 (package (inherit openjpeg) |