Simple update opencolorio-2.4.2. Tested on amd64. OK? Cheers Rafael
diff --git a/graphics/opencolorio/Makefile b/graphics/opencolorio/Makefile index 92fe2dc0abd..01dbea784bf 100644 --- a/graphics/opencolorio/Makefile +++ b/graphics/opencolorio/Makefile @@ -2,10 +2,9 @@ COMMENT = color management library GH_ACCOUNT = AcademySoftwareFoundation GH_PROJECT = OpenColorIO -GH_TAGNAME = v2.4.0 +GH_TAGNAME = v2.4.2 PKGNAME = ${DISTNAME:L} EPOCH = 2 -REVISION = 0 SHARED_LIBS += OpenColorIO 5.0 # 1.1.1 diff --git a/graphics/opencolorio/distinfo b/graphics/opencolorio/distinfo index e88e987d4be..6d56c85f6c5 100644 --- a/graphics/opencolorio/distinfo +++ b/graphics/opencolorio/distinfo @@ -1,2 +1,2 @@ -SHA256 (OpenColorIO-2.4.0.tar.gz) = D/OWa5IU2glBsrHL2rOXWgClH8bzQX+oYPmPU1jywoI= -SIZE (OpenColorIO-2.4.0.tar.gz) = 11380037 +SHA256 (OpenColorIO-2.4.2.tar.gz) = LY8sR8QEdtbozqnYePZgHQT21WQrRwGOqvqen4M/NpA= +SIZE (OpenColorIO-2.4.2.tar.gz) = 11398186 diff --git a/graphics/opencolorio/patches/patch-src_utils_NumberUtils_h b/graphics/opencolorio/patches/patch-src_utils_NumberUtils_h index fb4d19fe804..6d0f36eca94 100644 --- a/graphics/opencolorio/patches/patch-src_utils_NumberUtils_h +++ b/graphics/opencolorio/patches/patch-src_utils_NumberUtils_h @@ -1,7 +1,7 @@ Index: src/utils/NumberUtils.h --- src/utils/NumberUtils.h.orig +++ src/utils/NumberUtils.h -@@ -67,8 +67,10 @@ really_inline from_chars_result from_chars(const char +@@ -125,8 +125,10 @@ really_inline from_chars_result from_chars(const char double #ifdef _WIN32 tempval = _strtod_l(first, &endptr, loc.local); @@ -13,7 +13,7 @@ Index: src/utils/NumberUtils.h #endif if (errno != 0 && errno != EINVAL) -@@ -111,8 +113,10 @@ really_inline from_chars_result from_chars(const char +@@ -181,8 +183,10 @@ really_inline from_chars_result from_chars(const char #elif __APPLE__ // On OSX, strtod_l is for some reason drastically faster than strtof_l. tempval = static_cast<float>(::strtod_l(first, &endptr, loc.local)); @@ -25,7 +25,7 @@ Index: src/utils/NumberUtils.h #endif if (errno != 0) -@@ -147,7 +151,7 @@ really_inline from_chars_result from_chars(const char +@@ -229,7 +233,7 @@ really_inline from_chars_result from_chars(const char long int #ifdef _WIN32 tempval = _strtol_l(first, &endptr, 0, loc.local);