From dd6e295528dce16383dbbd3c33b82942bc427cf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abril=20Rinc=C3=B3n=20Blanco?= Date: Sat, 2 Nov 2024 12:02:58 +0100 Subject: [PATCH 1/2] Revert "(#25660) opencolorio: Bump lcms requirement to 2.16" This reverts commit cd1cf218e45f6639e815ddfd75e0549e7f8a1ddb. --- recipes/opencolorio/all/conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/opencolorio/all/conanfile.py b/recipes/opencolorio/all/conanfile.py index 48a0a82ccdec4..df0fa402cd1f2 100644 --- a/recipes/opencolorio/all/conanfile.py +++ b/recipes/opencolorio/all/conanfile.py @@ -66,7 +66,7 @@ def requirements(self): self.requires("minizip-ng/3.0.9") # for tools only - self.requires("lcms/2.16") + self.requires("lcms/2.14") # TODO: add GLUT (needed for ociodisplay tool) def validate(self): From b3901e242e8473f5b3ae24b1d30b55dcbc8a5260 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abril=20Rinc=C3=B3n=20Blanco?= Date: Sat, 2 Nov 2024 12:19:59 +0100 Subject: [PATCH 2/2] Fix linter warning --- recipes/opencolorio/all/conanfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes/opencolorio/all/conanfile.py b/recipes/opencolorio/all/conanfile.py index df0fa402cd1f2..e9222139bf7f2 100644 --- a/recipes/opencolorio/all/conanfile.py +++ b/recipes/opencolorio/all/conanfile.py @@ -18,6 +18,7 @@ class OpenColorIOConan(ConanFile): url = "https://github.com/conan-io/conan-center-index" topics = ("colors", "visual", "effects", "animation") settings = "os", "arch", "compiler", "build_type" + package_type = "library" options = { "shared": [True, False], "fPIC": [True, False],