[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70035] [PATCH v3 2/9] gnu: openshadinglanguage: Update to 1.13.8.0.
From: |
Vinicius Monego |
Subject: |
[bug#70035] [PATCH v3 2/9] gnu: openshadinglanguage: Update to 1.13.8.0. |
Date: |
Wed, 3 Apr 2024 01:30:22 +0000 |
* gnu/packages/graphics.scm (openshadinglanguage): Update to 1.13.8.0.
[source]: Add patch.
[arguments]: Use G-Expressions. In #:configure-flags, pass the
"-DLLVM_BC_GENERATOR" option. Delete the add-ilmbase-include-path phase. Add
new tests to skip.
[native-inputs]: Use Clang 13 and LLVM 13.
[inputs]: Use OpenEXR 3 and Qt 6.
Change-Id: Ib3e7ed39c3eb170e3d24ccc74243ebff490e07ab
---
gnu/packages/graphics.scm | 64 ++++++++++++++++++---------------------
1 file changed, 29 insertions(+), 35 deletions(-)
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm
index 23b6af066a..b593f03690 100644
--- a/gnu/packages/graphics.scm
+++ b/gnu/packages/graphics.scm
@@ -707,7 +707,7 @@ (define-public mikktspace
(define-public openshadinglanguage
(package
(name "openshadinglanguage")
- (version "1.11.16.0")
+ (version "1.13.8.0")
(source
(origin
(method git-fetch)
@@ -716,52 +716,46 @@ (define-public openshadinglanguage
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0x0lc163vl2b57l75bf5zxlr6vm2y1f1izlxdnrw3vsapv3r9k9g"))))
+ (base32 "1ji4bw8z4ylsh0jvir3d40p6xyhr63g588gh3bag7bzsr3flsb02"))))
(build-system cmake-build-system)
(arguments
- `(#:configure-flags (list "-DUSE_PARTIO=OFF") ; TODO: not packaged
- #:phases
- (modify-phases %standard-phases
- (add-after 'set-paths 'add-ilmbase-include-path
- (lambda* (#:key inputs #:allow-other-keys)
- ;; OpenEXR 2 propagates ilmbase, but its include files do not
- ;; appear in the C_INCLUDE_PATH.
- (let ((headers (string-append
- (assoc-ref inputs "ilmbase")
- "/include/OpenEXR")))
- (setenv "C_INCLUDE_PATH"
- (string-append headers ":"
- (or (getenv "C_INCLUDE_PATH") "")))
- (setenv "CPLUS_INCLUDE_PATH"
- (string-append headers ":"
- (or (getenv "CPLUS_INCLUDE_PATH")
""))))))
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "ctest" "--exclude-regex"
- (string-join
- (list
- "osl-imageio" ; OIIO not compiled with freetype
- "osl-imageio.opt" ; OIIO not compiled with freetype
- "texture-udim" ; file does not exist
- "texture-udim.opt" ; file does not exist
- "example-deformer" ; could not find OSLConfig
- "python-oslquery") ; no module oslquery
- "|"))))))))
+ (list #:configure-flags
+ #~(list "-DUSE_PARTIO=OFF" ; TODO: not packaged
+ (string-append "-DLLVM_BC_GENERATOR="
+ #$(this-package-native-input "clang")
+ "/bin/clang++"))
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke
+ "ctest" "--exclude-regex"
+ (string-join
+ (list
+ "osl-imageio" ; file does not exist
+ "osl-imageio.opt" ; file does not exist
+ "osl-imageio.opt.rs_bitcode" ; file does not exist
+ "texture-udim" ; file does not exist
+ "texture-udim.opt" ; file does not exist
+ "texture-udim.opt.rs_bitcode" ; file does not exist
+ "example-deformer" ; could not find OSLConfig
+ "python-oslquery") ; no module oslquery
+ "|"))))))))
(native-inputs
(list bison
- clang-9
+ clang
flex
- llvm-9
+ llvm
pybind11
python-wrapper))
(inputs
(list boost
imath
- openexr-2
+ openexr
openimageio
pugixml
- qtbase-5
+ qtbase
zlib))
(home-page
"https://github.com/AcademySoftwareFoundation/OpenShadingLanguage")
(synopsis "Shading language for production GI renderers")
--
2.39.2
- [bug#70035] [PATCH v3 0/9] Update and cleanup ASWF tools., Vinicius Monego, 2024/04/02
- [bug#70035] [PATCH v3 2/9] gnu: openshadinglanguage: Update to 1.13.8.0.,
Vinicius Monego <=
- [bug#70035] [PATCH v3 3/9] gnu: Add partio., Vinicius Monego, 2024/04/02
- [bug#70035] [PATCH v3 1/9] gnu: openimageio: Update to 2.5.10.1., Vinicius Monego, 2024/04/02
- [bug#70035] [PATCH v3 5/9] gnu: Add minizip-ng., Vinicius Monego, 2024/04/02
- [bug#70035] [PATCH v3 6/9] gnu: opencolorio: Update to 2.3.2., Vinicius Monego, 2024/04/02
- [bug#70035] [PATCH v3 7/9] gnu: openvdb: Update to 11.0.0., Vinicius Monego, 2024/04/02
- [bug#70035] [PATCH v3 4/9] gnu: Add pystring., Vinicius Monego, 2024/04/02
- [bug#70035] [PATCH v3 8/9] gnu: opensubdiv: Update to 3.6.0., Vinicius Monego, 2024/04/02
- [bug#70035] [PATCH v3 9/9] gnu: blender: Update to 3.6.10., Vinicius Monego, 2024/04/02