me
/
guix
Archived
1
0
Fork 0

gnu: openexr: Update to 3.2.4 [security fixes].

Previous versions, 3.2.2 and 3.1.4, fixed CVE-2023-5841 and CVE-2021-45942,
respectively.

* gnu/packages/graphics.scm (openexr): Update to 3.2.4.
[arguments]: Remove unneeded files from patch-test-directory phase.
[inputs]: Add libdeflate.

Reported-by: Vinicius Monego <monego@posteo.net>
Change-Id: I72f82e623c9b8988cae433947117cd81f40cdbc3
master
John Kehayias 2024-04-03 22:45:50 -04:00
parent b1b22cab72
commit 410e699e09
No known key found for this signature in database
GPG Key ID: 499097AE5EA815D9
1 changed files with 3 additions and 5 deletions

View File

@ -1200,7 +1200,7 @@ graphics.")
(define-public openexr
(package
(name "openexr")
(version "3.1.3")
(version "3.2.4")
(source (origin
(method git-fetch)
(uri (git-reference
@ -1210,7 +1210,7 @@ graphics.")
(file-name (git-file-name name version))
(sha256
(base32
"0c9vla0kbsbbhkk42jlbf94nzfb1anqh7dy9b0b3nna1qr6v4bh6"))))
"00s1a05kggk71vfbnsvykyjc2j7y6yyzgl63sy4yiddshz2k2mcr"))))
(build-system cmake-build-system)
(arguments
(list #:phases
@ -1218,8 +1218,6 @@ graphics.")
(add-after 'unpack 'patch-test-directory
(lambda _
(substitute* (list
"src/test/OpenEXRUtilTest/tmpDir.h"
"src/test/OpenEXRFuzzTest/tmpDir.h"
"src/test/OpenEXRTest/tmpDir.h"
"src/test/OpenEXRCoreTest/main.cpp")
(("/var/tmp")
@ -1247,7 +1245,7 @@ graphics.")
"")
(("TEST \\(testOptimizedInterleavePatterns, \"basic\"\\);")
"")))))))))
(inputs (list imath zlib))
(inputs (list imath libdeflate zlib))
(home-page "https://www.openexr.com/")
(synopsis "High-dynamic-range file format library")
(description