[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70035] [PATCH v2 8/8] gnu: opensubdiv: Update to 3.6.0.
From: |
Vinicius Monego |
Subject: |
[bug#70035] [PATCH v2 8/8] gnu: opensubdiv: Update to 3.6.0. |
Date: |
Thu, 28 Mar 2024 15:40:48 +0000 |
* gnu/packages/graphics.scm (opensubdiv): Update to 3.6.0.
[arguments]: Use G-Expressions. Delete the set-glew-location phase.
Change-Id: Ie37f70a5146e5072b362a4439d0669ea19ca2869
---
gnu/packages/graphics.scm | 21 ++++++++-------------
1 file changed, 8 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm
index 5915ecc329..f7519c3abf 100644
--- a/gnu/packages/graphics.scm
+++ b/gnu/packages/graphics.scm
@@ -1909,7 +1909,7 @@ (define-public fgallery
(define-public opensubdiv
(package
(name "opensubdiv")
- (version "3.4.0")
+ (version "3.6.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -1919,20 +1919,15 @@ (define-public opensubdiv
(file-name (git-file-name name version))
(sha256
(base32
- "0cippg6aqc5dlya1cmh3908pwssrg52fwgyylnvz5343yrxmgk12"))))
+ "0h9scxiigijzlpv4r0s0nhxlndhv1cmarb2bqgmlwcln1jjvlb4n"))))
(build-system cmake-build-system)
(arguments
- `(#:phases (modify-phases %standard-phases
- (add-before 'configure 'set-glew-location
- (lambda* (#:key inputs #:allow-other-keys)
- (setenv "GLEW_LOCATION" (assoc-ref inputs "glew"))
- #t))
- (add-before 'check 'start-xorg-server
- (lambda* (#:key inputs #:allow-other-keys)
- ;; The test suite requires a running X server.
- (system "Xvfb :1 &")
- (setenv "DISPLAY" ":1")
- #t)))))
+ (list #:phases #~(modify-phases %standard-phases
+ (add-before 'check 'start-xorg-server
+ (lambda* (#:key inputs #:allow-other-keys)
+ ;; The test suite requires a running X server.
+ (system "Xvfb :1 &")
+ (setenv "DISPLAY" ":1"))))))
(native-inputs
(list xorg-server-for-tests))
(inputs
--
2.39.2
- [bug#70035] [PATCH 8/8] gnu: opensubdiv: Update to 3.6.0., (continued)
- [bug#70035] [PATCH 8/8] gnu: opensubdiv: Update to 3.6.0., Vinicius Monego, 2024/03/27
- [bug#70035] [PATCH 7/8] gnu: openvdb: Update to 11.0.0., Vinicius Monego, 2024/03/27
- [bug#70035] [PATCH v2 0/8] Update and cleanup ASWF tools., Vinicius Monego, 2024/03/28
- [bug#70035] [PATCH v2 1/8] gnu: openimageio: Update to 2.5.9.0., Vinicius Monego, 2024/03/28
- [bug#70035] [PATCH v2 3/8] gnu: Add partio., Vinicius Monego, 2024/03/28
- [bug#70035] [PATCH v2 4/8] gnu: Add pystring., Vinicius Monego, 2024/03/28
- [bug#70035] [PATCH v2 7/8] gnu: openvdb: Update to 11.0.0., Vinicius Monego, 2024/03/28
- [bug#70035] [PATCH v2 5/8] gnu: Add minizip-ng., Vinicius Monego, 2024/03/28
- [bug#70035] [PATCH v2 6/8] gnu: opencolorio: Update to 2.3.2., Vinicius Monego, 2024/03/28
- [bug#70035] [PATCH v2 2/8] gnu: openshadinglanguage: Update to 1.13.7.0., Vinicius Monego, 2024/03/28
- [bug#70035] [PATCH v2 8/8] gnu: opensubdiv: Update to 3.6.0.,
Vinicius Monego <=