From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F0A09158013 for ; Fri, 15 Dec 2023 20:49:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 302F92BC017; Fri, 15 Dec 2023 20:49:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 072CD2BC017 for ; Fri, 15 Dec 2023 20:49:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B062D335D76 for ; Fri, 15 Dec 2023 20:49:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1480F119 for ; Fri, 15 Dec 2023 20:49:26 +0000 (UTC) From: "Jan-Espen Oversand" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jan-Espen Oversand" Message-ID: <1702673359.e4cc5a8427e5d028114a5aad19365b546ad95571.sigsegv@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/cpprestsdk/, dev-cpp/cpprestsdk/files/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-cpp/cpprestsdk/cpprestsdk-2.10.19-r1.ebuild dev-cpp/cpprestsdk/cpprestsdk-2.10.19.ebuild dev-cpp/cpprestsdk/files/cpprestsdk-2.10.19-disabl-int-tests.patch X-VCS-Directories: dev-cpp/cpprestsdk/ dev-cpp/cpprestsdk/files/ X-VCS-Committer: sigsegv X-VCS-Committer-Name: Jan-Espen Oversand X-VCS-Revision: e4cc5a8427e5d028114a5aad19365b546ad95571 X-VCS-Branch: dev Date: Fri, 15 Dec 2023 20:49:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 27b845b1-6939-4aba-b9e0-ac55bc8b1425 X-Archives-Hash: 4ad6a0d21eaf1578b562ae20beb22ab8 commit: e4cc5a8427e5d028114a5aad19365b546ad95571 Author: Jan-Espen Oversand radiotube org> AuthorDate: Fri Dec 15 20:48:24 2023 +0000 Commit: Jan-Espen Oversand radiotube org> CommitDate: Fri Dec 15 20:49:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e4cc5a84 dev-cpp/cpprestsdk: disable failing tests Bug: https://bugs.gentoo.org/920028 Closes: https://bugs.gentoo.org/920028 Signed-off-by: Jan-Espen Oversand radiotube.org> ...2.10.19.ebuild => cpprestsdk-2.10.19-r1.ebuild} | 12 +---------- .../cpprestsdk-2.10.19-disabl-int-tests.patch | 24 ++++++++++++++++++++++ 2 files changed, 25 insertions(+), 11 deletions(-) diff --git a/dev-cpp/cpprestsdk/cpprestsdk-2.10.19.ebuild b/dev-cpp/cpprestsdk/cpprestsdk-2.10.19-r1.ebuild similarity index 88% rename from dev-cpp/cpprestsdk/cpprestsdk-2.10.19.ebuild rename to dev-cpp/cpprestsdk/cpprestsdk-2.10.19-r1.ebuild index 2024e804e2..97aea7c69e 100644 --- a/dev-cpp/cpprestsdk/cpprestsdk-2.10.19.ebuild +++ b/dev-cpp/cpprestsdk/cpprestsdk-2.10.19-r1.ebuild @@ -26,21 +26,11 @@ BDEPEND=">=dev-util/cmake-3.23 PATCHES=( "${FILESDIR}"/cpprestsdk-${PV}-warnings.patch + "${FILESDIR}"/cpprestsdk-${PV}-disabl-int-tests.patch ) -src_prepare(){ - cmake_src_prepare -} - src_configure() { local mycmakeargs=( -DCMAKE_BUILD_TYPE=Release ) cmake_src_configure } -src_compile(){ - cmake_src_compile -} - -src_install(){ - cmake_src_install -} diff --git a/dev-cpp/cpprestsdk/files/cpprestsdk-2.10.19-disabl-int-tests.patch b/dev-cpp/cpprestsdk/files/cpprestsdk-2.10.19-disabl-int-tests.patch new file mode 100644 index 0000000000..25a95cc9c5 --- /dev/null +++ b/dev-cpp/cpprestsdk/files/cpprestsdk-2.10.19-disabl-int-tests.patch @@ -0,0 +1,24 @@ +--- a/Release/tests/functional/http/CMakeLists.txt ++++ b/Release/tests/functional/http/CMakeLists.txt +@@ -1,3 +1,3 @@ + add_subdirectory(utilities) +-add_subdirectory(client) ++#add_subdirectory(client) + add_subdirectory(listener) +--- a/Release/tests/functional/websockets/CMakeLists.txt ++++ b/Release/tests/functional/websockets/CMakeLists.txt +@@ -27,9 +27,9 @@ if (NOT CPPREST_EXCLUDE_WEBSOCKETS) + client/stdafx.cpp + ) + +- add_casablanca_test(websocketsclient_test SOURCES) +- if(NOT TEST_LIBRARY_TARGET_TYPE STREQUAL "OBJECT") +- target_link_libraries(websocketsclient_test PRIVATE websockettest_utilities) +- endif() +- target_include_directories(websocketsclient_test PRIVATE utilities) ++# add_casablanca_test(websocketsclient_test SOURCES) ++# if(NOT TEST_LIBRARY_TARGET_TYPE STREQUAL "OBJECT") ++# target_link_libraries(websocketsclient_test PRIVATE websockettest_utilities) ++# endif() ++# target_include_directories(websocketsclient_test PRIVATE utilities) + endif()