summaryrefslogtreecommitdiff
path: root/net-libs/cppzmq/files/cppzmq-use-system-catch2.patch
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2022-12-20 21:05:35 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2022-12-20 23:31:02 +0100
commit572dcd65b441136ad462d2d8b9651aa791ba6dac (patch)
treed2be91af05ab21b9fcd4ead0a793284a93b2358b /net-libs/cppzmq/files/cppzmq-use-system-catch2.patch
parent03696c95ec423b415c854cdc863f1ebc5fc0d1ff (diff)
downloadgentoo-572dcd65b441136ad462d2d8b9651aa791ba6dac.tar.gz
gentoo-572dcd65b441136ad462d2d8b9651aa791ba6dac.tar.bz2
gentoo-572dcd65b441136ad462d2d8b9651aa791ba6dac.zip
net-libs/cppzmq: drop 4.6.0
Closes: https://bugs.gentoo.org/887527 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-libs/cppzmq/files/cppzmq-use-system-catch2.patch')
-rw-r--r--net-libs/cppzmq/files/cppzmq-use-system-catch2.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/net-libs/cppzmq/files/cppzmq-use-system-catch2.patch b/net-libs/cppzmq/files/cppzmq-use-system-catch2.patch
deleted file mode 100644
index b15b9172ad43..000000000000
--- a/net-libs/cppzmq/files/cppzmq-use-system-catch2.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- a/tests/CMakeLists.txt
-+++ b/tests/CMakeLists.txt
-@@ -9,9 +9,10 @@
- set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR})
- set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR})
-
-+find_package(Catch2 REQUIRED)
- include(CTest)
--include(cmake/catch.cmake)
--include(${CATCH_MODULE_PATH}/Catch.cmake)
-+include(Catch)
-+find_path(CATCH_INCLUDE_DIR "catch.hpp" HINT /usr/include/catch/)
-
- find_package(Threads)
-
-@@ -31,9 +32,9 @@
- utilities.cpp
- )
-
--add_dependencies(unit_tests catch)
-+add_dependencies(unit_tests Catch2::Catch2)
-
--target_include_directories(unit_tests PUBLIC ${CATCH_MODULE_PATH})
-+target_include_directories(unit_tests PUBLIC ${CATCH_INCLUDE_DIR})
- target_link_libraries(
- unit_tests
- PRIVATE cppzmq