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 6475415838C for ; Mon, 22 Jan 2024 05:55:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6825AE2A0E; Mon, 22 Jan 2024 05:55:49 +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 415DBE2A0E for ; Mon, 22 Jan 2024 05:55:49 +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 54C243430A2 for ; Mon, 22 Jan 2024 05:55:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F4EB14C3 for ; Mon, 22 Jan 2024 05:55:45 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1705902890.8a04cb92c7caaff1db47d2253d96469af42ea0b1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/qbittorrent/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/qbittorrent/qbittorrent-4.5.5-r2.ebuild net-p2p/qbittorrent/qbittorrent-4.6.2-r1.ebuild net-p2p/qbittorrent/qbittorrent-9999.ebuild X-VCS-Directories: net-p2p/qbittorrent/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8a04cb92c7caaff1db47d2253d96469af42ea0b1 X-VCS-Branch: master Date: Mon, 22 Jan 2024 05:55:45 +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: 62e3149f-2d44-465c-933f-f699ad0253d0 X-Archives-Hash: cf29ada9842b52464047855ac88099d0 commit: 8a04cb92c7caaff1db47d2253d96469af42ea0b1 Author: Eli Schwartz gmail com> AuthorDate: Sun Jan 21 18:46:41 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jan 22 05:54:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a04cb92 net-p2p/qbittorrent: add comment explaining why cmake_src_test isn't used Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> net-p2p/qbittorrent/qbittorrent-4.5.5-r2.ebuild | 2 ++ net-p2p/qbittorrent/qbittorrent-4.6.2-r1.ebuild | 2 ++ net-p2p/qbittorrent/qbittorrent-9999.ebuild | 2 ++ 3 files changed, 6 insertions(+) diff --git a/net-p2p/qbittorrent/qbittorrent-4.5.5-r2.ebuild b/net-p2p/qbittorrent/qbittorrent-4.5.5-r2.ebuild index f01ecb3233cc..59e8d99bcc36 100644 --- a/net-p2p/qbittorrent/qbittorrent-4.5.5-r2.ebuild +++ b/net-p2p/qbittorrent/qbittorrent-4.5.5-r2.ebuild @@ -124,6 +124,8 @@ src_compile() { src_test() { my_src_test() { + # cmake does not detect tests by default, if you use enable_testing + # in a subdirectory instead of the root CMakeLists.txt cd "${BUILD_DIR}"/test || die edo ctest . } diff --git a/net-p2p/qbittorrent/qbittorrent-4.6.2-r1.ebuild b/net-p2p/qbittorrent/qbittorrent-4.6.2-r1.ebuild index aea6929464d7..1c8f0230fd60 100644 --- a/net-p2p/qbittorrent/qbittorrent-4.6.2-r1.ebuild +++ b/net-p2p/qbittorrent/qbittorrent-4.6.2-r1.ebuild @@ -120,6 +120,8 @@ src_compile() { src_test() { my_src_test() { + # cmake does not detect tests by default, if you use enable_testing + # in a subdirectory instead of the root CMakeLists.txt cd "${BUILD_DIR}"/test || die edo ctest . } diff --git a/net-p2p/qbittorrent/qbittorrent-9999.ebuild b/net-p2p/qbittorrent/qbittorrent-9999.ebuild index b5ae2f148965..3bb8284e631e 100644 --- a/net-p2p/qbittorrent/qbittorrent-9999.ebuild +++ b/net-p2p/qbittorrent/qbittorrent-9999.ebuild @@ -124,6 +124,8 @@ src_compile() { src_test() { my_src_test() { + # cmake does not detect tests by default, if you use enable_testing + # in a subdirectory instead of the root CMakeLists.txt cd "${BUILD_DIR}"/test || die edo ctest . }