commit: 046ca1abb81066d508b72cf4efc40041adf8932f
Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 25 11:22:50 2026 +0000
Commit: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
CommitDate: Wed Feb 25 23:37:38 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=046ca1ab
net-im/qtox: update the minimum version of 'net-libs/tox' required
Also use 'CMAKE_SKIP_TESTS' to skip tests which require metwork
access.
Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>
net-im/qtox/qtox-9999.ebuild | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/net-im/qtox/qtox-9999.ebuild b/net-im/qtox/qtox-9999.ebuild
index 06ade434245b..8bdf04985bb1 100644
--- a/net-im/qtox/qtox-9999.ebuild
+++ b/net-im/qtox/qtox-9999.ebuild
@@ -35,7 +35,7 @@ RDEPEND="
media-libs/libexif
media-libs/openal
media-video/ffmpeg:=[webp]
- >=net-libs/tox-0.2.19:=[av]
+ >=net-libs/tox-0.2.20:=[av]
spellcheck? (
|| (
kde-frameworks/sonnet:6[aspell]
@@ -54,6 +54,12 @@ DEPEND="${RDEPEND}
DOCS=( CHANGELOG.md README.md doc/user_manual_en.md )
+# Skip tests which require network access.
+CMAKE_SKIP_TESTS=(
+ test_bsu
+ test_core
+)
+
src_configure() {
local mycmakeargs=(
-DASAN=OFF
@@ -70,8 +76,3 @@ src_configure() {
cmake_src_configure
}
-
-src_test() {
- # The excluded tests require network access.
- cmake_src_test -E "test_(bsu|core)"
-}