Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenColorIO: Add version 2.4.2 #26913

Merged
merged 1 commit into from
Apr 1, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 6 additions & 23 deletions recipes/opencolorio/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
sources:
"2.4.2":
url: "https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/v2.4.2.tar.gz"
sha256: "2d8f2c47c40476d6e8cea9d878f6601d04f6d5642b47018eaafa9e9f833f3690"
"2.4.1":
url: "https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/v2.4.1.tar.gz"
sha256: "d4eb15408b33dffd6ba0bba9a53328085b40bdd9319fa3d0d7348d06a8cbe842"
"2.4.0":
url: "https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/v2.4.0.tar.gz"
sha256: "0ff3966b9214da0941b2b1cbdab3975a00a51fc6f3417fa860f98f5358f2c282"
"2.3.2":
url: "https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/v2.3.2.tar.gz"
sha256: "6bbf4e7fa4ea2f743a238cb22aff44890425771a2f57f62cece1574e46ceec2f"
"2.2.1":
url: "https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/v2.2.1.tar.gz"
sha256: "36f27c5887fc4e5c241805c29b8b8e68725aa05520bcaa7c7ec84c0422b8580e"
"2.1.0":
url: "https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/v2.1.0.tar.gz"
sha256: "81fc7853a490031632a69c73716bc6ac271b395e2ba0e2587af9995c2b0efb5f"
"1.1.1":
url: "https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/v1.1.1.tar.gz"
sha256: "c9b5b9def907e1dafb29e37336b702fff22cc6306d445a13b1621b8a754c14c8"
patches:
"2.4.1":
- patch_file: "patches/2.4.0-0001-fix-cmake-source-dir-and-targets.patch"
"2.4.2":
- patch_file: "patches/2.4.2-0001-fix-cmake-source-dir-and-targets.patch"
patch_description: "use cci package, use PROJECT_BINARY_DIR/PROJECT_SOURCE_DIR"
patch_type: "conan"
"2.4.0":
"2.4.1":
- patch_file: "patches/2.4.0-0001-fix-cmake-source-dir-and-targets.patch"
patch_description: "use cci package, use PROJECT_BINARY_DIR/PROJECT_SOURCE_DIR"
patch_type: "conan"
@@ -40,20 +37,6 @@ patches:
- patch_file: "patches/2.2.1-0003-strlen.patch"
patch_description: "add std namespace for strlen"
patch_type: "portability"
"2.1.0":
- patch_file: "patches/2.1.0-0001-fix-cmake-source-dir-and-targets.patch"
patch_description: "use cci package, use PROJECT_BINARY_DIR/PROJECT_SOURCE_DIR"
patch_type: "conan"
- patch_file: "patches/2.1.0-0002-fix-pystring.patch"
patch_description: "fix include path for pystring"
patch_type: "conan"
- patch_file: "patches/2.1.0-0003-strlen.patch"
patch_description: "include string.h for strlen"
patch_type: "portability"
- patch_file: "patches/2.1.0-0004-fix-cpp-version-check.patch"
patch_description: "fix C++20 compilation error"
patch_type: "portability"
patch_source: "https://github.com/AcademySoftwareFoundation/OpenColorIO/pull/1542"
"1.1.1":
- patch_file: "patches/1.1.1-fix-cmake.patch"
patch_description: "use cci package, use PROJECT_BINARY_DIR/PROJECT_SOURCE_DIR"

This file was deleted.

117 changes: 0 additions & 117 deletions recipes/opencolorio/all/patches/2.1.0-0002-fix-pystring.patch

This file was deleted.

12 changes: 0 additions & 12 deletions recipes/opencolorio/all/patches/2.1.0-0003-strlen.patch

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
diff --git CMakeLists.txt CMakeLists.txt
index 3feba7ee..b4c2d473 100755
--- CMakeLists.txt
+++ CMakeLists.txt
@@ -518,7 +518,7 @@ install(
FILE ${OCIO_TARGETS_EXPORT_NAME}
)

-if (NOT BUILD_SHARED_LIBS)
+if (0)
# Install custom macros used in the find modules.
install(FILES
${CMAKE_CURRENT_LIST_DIR}/share/cmake/macros/VersionUtils.cmake
diff --git share/cmake/modules/FindExtPackages.cmake share/cmake/modules/FindExtPackages.cmake
index aa2550ac..04b51b25 100644
--- share/cmake/modules/FindExtPackages.cmake
+++ share/cmake/modules/FindExtPackages.cmake
@@ -63,7 +63,7 @@ ocio_handle_dependency( expat REQUIRED ALLOW_INSTALL
# https://github.com/jbeder/yaml-cpp
ocio_handle_dependency( yaml-cpp REQUIRED ALLOW_INSTALL
MIN_VERSION 0.6.3
- RECOMMENDED_VERSION 0.7.0
+ RECOMMENDED_VERSION 0.8.0
RECOMMENDED_VERSION_REASON "Latest version tested with OCIO")

# pystring
@@ -110,9 +110,9 @@ ocio_handle_dependency( ZLIB REQUIRED ALLOW_INSTALL

# minizip-ng
# https://github.com/zlib-ng/minizip-ng
-ocio_handle_dependency( minizip-ng REQUIRED ALLOW_INSTALL
+ocio_handle_dependency( minizip REQUIRED ALLOW_INSTALL
MIN_VERSION 3.0.6
- RECOMMENDED_VERSION 3.0.7
+ RECOMMENDED_VERSION 4.0.1
RECOMMENDED_VERSION_REASON "Latest version tested with OCIO")

###############################################################################
@@ -131,7 +131,7 @@ if(OCIO_BUILD_APPS)

# lcms2
# https://github.com/mm2/Little-CMS
- ocio_handle_dependency( lcms2 REQUIRED ALLOW_INSTALL
+ ocio_handle_dependency( lcms REQUIRED ALLOW_INSTALL
MIN_VERSION 2.2
RECOMMENDED_VERSION 2.2
RECOMMENDED_VERSION_REASON "Latest version tested with OCIO")
diff --git share/cmake/utils/CppVersion.cmake share/cmake/utils/CppVersion.cmake
index 175d89c2..ac93b87a 100644
--- share/cmake/utils/CppVersion.cmake
+++ share/cmake/utils/CppVersion.cmake
@@ -16,7 +16,7 @@ elseif(NOT CMAKE_CXX_STANDARD IN_LIST SUPPORTED_CXX_STANDARDS)
"CMAKE_CXX_STANDARD=${CMAKE_CXX_STANDARD} is unsupported. Supported standards are: ${SUPPORTED_CXX_STANDARDS_STR}.")
endif()

-set_property(CACHE CMAKE_CXX_STANDARD PROPERTY STRINGS "${SUPPORTED_CXX_STANDARDS}")
+# set_property(CACHE CMAKE_CXX_STANDARD PROPERTY STRINGS "${SUPPORTED_CXX_STANDARDS}")

include(CheckCXXCompilerFlag)

diff --git src/OpenColorIO/CMakeLists.txt src/OpenColorIO/CMakeLists.txt
index 7d2894da..33540a11 100755
--- src/OpenColorIO/CMakeLists.txt
+++ src/OpenColorIO/CMakeLists.txt
@@ -315,8 +315,8 @@ target_link_libraries(OpenColorIO
"$<BUILD_INTERFACE:utils::from_chars>"
"$<BUILD_INTERFACE:utils::strings>"
"$<BUILD_INTERFACE:xxHash>"
- ${YAML_CPP_LIBRARIES}
- MINIZIP::minizip-ng
+ PUBLIC yaml-cpp
+ MINIZIP::minizip
)

if(OCIO_USE_SIMD AND OCIO_USE_SSE2NEON AND COMPILER_SUPPORTS_SSE_WITH_SSE2NEON)
diff --git src/apps/ocioarchive/CMakeLists.txt src/apps/ocioarchive/CMakeLists.txt
index 599d706f..efe6cd5a 100644
--- src/apps/ocioarchive/CMakeLists.txt
+++ src/apps/ocioarchive/CMakeLists.txt
@@ -21,7 +21,7 @@ target_link_libraries(ocioarchive
PRIVATE
apputils
OpenColorIO
- MINIZIP::minizip-ng
+ MINIZIP::minizip
)

include(StripUtils)
diff --git src/apps/ociobakelut/CMakeLists.txt src/apps/ociobakelut/CMakeLists.txt
index 3d6e586b..f7069a1f 100755
--- src/apps/ociobakelut/CMakeLists.txt
+++ src/apps/ociobakelut/CMakeLists.txt
@@ -29,7 +29,7 @@ set_target_properties(ociobakelut
target_link_libraries(ociobakelut
PRIVATE
apputils
- lcms2::lcms2
+ lcms::lcms
OpenColorIO
)

6 changes: 2 additions & 4 deletions recipes/opencolorio/config.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
versions:
"2.4.1":
"2.4.2":
folder: "all"
"2.4.0":
"2.4.1":
folder: "all"
"2.3.2":
folder: "all"
"2.2.1":
folder: "all"
"2.1.0":
folder: "all"
"1.1.1":
folder: "all"