diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-05-08 23:29:25 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-05-11 21:55:01 +0200 |
commit | b8bb2f0793aa2c5ff32956a90a0cfdb94bbe7a89 (patch) | |
tree | 3c7383fe690088b3e2facb8a83d90a0cb87ab14d /gnu/packages/graphics.scm | |
parent | fef052b1b8238d6680437d62ce318e49922edb3d (diff) | |
download | patches-b8bb2f0793aa2c5ff32956a90a0cfdb94bbe7a89.tar patches-b8bb2f0793aa2c5ff32956a90a0cfdb94bbe7a89.tar.gz |
gnu: OpenEXR: Update to 2.5.0.
* gnu/packages/patches/ilmbase-openexr-pkg-config.patch: Delete file.
* gnu/packages/patches/ilmbase-fix-test-arm.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/graphics.scm (ilmbase): Update to 2.5.0.
Diffstat (limited to 'gnu/packages/graphics.scm')
-rw-r--r-- | gnu/packages/graphics.scm | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 16ab9d20a4..97dff5b3b9 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -299,7 +299,7 @@ many more.") (define-public ilmbase (package (name "ilmbase") - (version "2.4.1") + (version "2.5.0") (source (origin (method git-fetch) (uri (git-reference @@ -308,9 +308,9 @@ many more.") (file-name (git-file-name "ilmbase" version)) (sha256 (base32 - "020gyl8zv83ag6gbcchmqiyx9rh2jca7j8n52zx1gk4rck7kwc01")) + "1k50cvi3sk6gf6w713lkk2gv5cvs74vkc7s7k4z6nmyhi4g89w4y")) (patches (search-patches "ilmbase-fix-tests.patch" - "ilmbase-openexr-pkg-config.patch")))) + "ilmbase-fix-test-arm.patch")))) (build-system cmake-build-system) (arguments `(#:phases (modify-phases %standard-phases @@ -426,10 +426,7 @@ graphics.") ;; https://github.com/openexr/openexr/issues/67#issuecomment-21169748 (lambda _ (substitute* "IlmImfTest/main.cpp" - ((".*testOptimizedInterleavePatterns.*") "") - ;; This test is broken in 2.4.0 and will be fixed in a later - ;; release: <https://github.com/openexr/openexr/issues/571>. - ((".*testLargeDataWindowOffsets.*") "")) + ((".*testOptimizedInterleavePatterns.*") "")) #t))) '())))) (native-inputs |