diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-03-25 19:04:58 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-04-17 22:58:41 +0200 |
commit | 92e2f0ed4ff9ad5dcd7e1d50de081a9442f8d37a (patch) | |
tree | 0d522fa8b66897369abbd9cecd0798f0f8a0f613 /media-libs/libjxl | |
parent | dev-scheme/gauche: remove unused patch (diff) | |
download | gentoo-92e2f0ed4ff9ad5dcd7e1d50de081a9442f8d37a.tar.gz gentoo-92e2f0ed4ff9ad5dcd7e1d50de081a9442f8d37a.tar.bz2 gentoo-92e2f0ed4ff9ad5dcd7e1d50de081a9442f8d37a.zip |
media-libs/libjxl: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'media-libs/libjxl')
-rw-r--r-- | media-libs/libjxl/files/libjxl-0.9.1-backport-pr3138.patch | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/media-libs/libjxl/files/libjxl-0.9.1-backport-pr3138.patch b/media-libs/libjxl/files/libjxl-0.9.1-backport-pr3138.patch deleted file mode 100644 index 0da0a9ba8ab8..000000000000 --- a/media-libs/libjxl/files/libjxl-0.9.1-backport-pr3138.patch +++ /dev/null @@ -1,46 +0,0 @@ -https://github.com/libjxl/libjxl/issues/3137 -https://github.com/libjxl/libjxl/pull/3138 - -From 5e5dda47aee0a6f480984cf13cfc2be0044316e4 Mon Sep 17 00:00:00 2001 -From: Moritz Firsching <firsching@google.com> -Date: Mon, 15 Jan 2024 13:43:01 +0100 -Subject: [PATCH] disable tooling test when not JPEGXL_ENABLE_TOOLS - ---- - tools/conformance/CMakeLists.txt | 25 ++++++++++++++----------- - 1 file changed, 14 insertions(+), 11 deletions(-) - -diff --git a/tools/conformance/CMakeLists.txt b/tools/conformance/CMakeLists.txt -index 5766612abf9..36249048c59 100644 ---- a/tools/conformance/CMakeLists.txt -+++ b/tools/conformance/CMakeLists.txt -@@ -4,15 +4,18 @@ - # license that can be found in the LICENSE file. - - if(BUILD_TESTING AND CMAKE_EXECUTABLE_SUFFIX STREQUAL "") --# Script to validate the tooling. --find_program (BASH_PROGRAM bash) --if(BASH_PROGRAM) -- add_test( -- NAME conformance_tooling_test -- COMMAND -- ${BASH_PROGRAM} ${CMAKE_CURRENT_SOURCE_DIR}/tooling_test.sh -- ${CMAKE_BINARY_DIR} ${JPEGXL_TEST_DATA_PATH}) -- # Skip the test if dependencies are not available. -- set_tests_properties(conformance_tooling_test PROPERTIES SKIP_RETURN_CODE 254) --endif() -+ # Script to validate the tooling. -+ # Only add it when djxl being build. -+ if(JPEGXL_ENABLE_TOOLS) -+ find_program (BASH_PROGRAM bash) -+ if(BASH_PROGRAM) -+ add_test( -+ NAME conformance_tooling_test -+ COMMAND -+ ${BASH_PROGRAM} ${CMAKE_CURRENT_SOURCE_DIR}/tooling_test.sh -+ ${CMAKE_BINARY_DIR} ${JPEGXL_TEST_DATA_PATH}) -+ # Skip the test if dependencies are not available. -+ set_tests_properties(conformance_tooling_test PROPERTIES SKIP_RETURN_CODE 254) -+ endif() # BASH_PROGRAM -+ endif() # JPEGXL_ENABLE_TOOLS - endif() # BUILD_TESTING |