From 9901416233867233192b63fde7f616751127b189 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 23 May 2024 16:11:46 +0300 Subject: [PATCH] gnu: ctl: Update to 1.5.3. * gnu/packages/graphics.scm (ctl): Update to 1.5.3. [source]: Download using git-fetch. [arguments]: Don't skip the tests. [inputs]: Add libtiff. Change-Id: Iae08b6a2a7c0418bde10b31c3356425750703a9f --- gnu/packages/graphics.scm | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 7a2f827d361be91d8e27d86651aa2755711498ab..6eaebc3a12829a0bde7c348becef99c541781fe4 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2015 Tomáš Čech ;;; Copyright © 2016, 2019 Leo Famulari ;;; Copyright © 2016, 2017, 2019, 2023 Ricardo Wurmus -;;; Copyright © 2016, 2018, 2021, 2023 Efraim Flashner +;;; Copyright © 2016, 2018, 2021, 2023, 2024 Efraim Flashner ;;; Copyright © 2016 Andreas Enge ;;; Copyright © 2017 Manolis Fragkiskos Ragkousis ;;; Copyright © 2017, 2018 Ben Woodcroft @@ -1599,19 +1599,21 @@ realistic reflections, shading, perspective and other effects.") (define-public ctl (package (name "ctl") - (version "1.5.2") + (version "1.5.3") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/ampas/CTL/archive/ctl-" - version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/ampas/CTL") + (commit (string-append "ctl-" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "1gg04pyvw0m398akn0s1l07g5b1haqv5na1wpi5dii1jjd1w3ynp")))) + "1qhfp9b90czvxjkf66sbnqyw3wvmdvl1pkh6201fxhqg7grbfvwc")))) (build-system cmake-build-system) - (arguments '(#:tests? #f)) ;no 'test' target ;; Headers include OpenEXR and IlmBase headers. (propagated-inputs (list openexr-2)) + (inputs (list libtiff)) (home-page "https://ampasctl.sourceforge.net") (synopsis "Color Transformation Language")