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 0DB3415838C for ; Tue, 30 Jan 2024 21:28:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24A492BC0C0; Tue, 30 Jan 2024 21:28:36 +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 03B612BC0C0 for ; Tue, 30 Jan 2024 21:28:36 +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 F0B683430EC for ; Tue, 30 Jan 2024 21:28:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E51F1494 for ; Tue, 30 Jan 2024 21:28:33 +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: <1706650068.6a499659bc0cd104d9fa50c45b56fbdd905839ab.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/bind-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/bind-tools/bind-tools-9.16.41.ebuild net-dns/bind-tools/bind-tools-9.16.42.ebuild X-VCS-Directories: net-dns/bind-tools/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6a499659bc0cd104d9fa50c45b56fbdd905839ab X-VCS-Branch: master Date: Tue, 30 Jan 2024 21:28:33 +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: 863788b6-a123-4909-8485-927c61248ab1 X-Archives-Hash: c745e172b71fde512b9c9401dae89556 commit: 6a499659bc0cd104d9fa50c45b56fbdd905839ab Author: Matoro Mahri matoro tk> AuthorDate: Tue Jan 30 20:54:14 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jan 30 21:27:48 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a499659 net-dns/bind-tools: increase test timeouts, skip one test on sparc Closes: https://bugs.gentoo.org/852692 Bug: https://bugs.gentoo.org/908617 Signed-off-by: Matoro Mahri matoro.tk> Closes: https://github.com/gentoo/gentoo/pull/35106 Signed-off-by: Sam James gentoo.org> net-dns/bind-tools/bind-tools-9.16.41.ebuild | 9 ++++++++- net-dns/bind-tools/bind-tools-9.16.42.ebuild | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/net-dns/bind-tools/bind-tools-9.16.41.ebuild b/net-dns/bind-tools/bind-tools-9.16.41.ebuild index 69c405cfce33..53c11f114c95 100644 --- a/net-dns/bind-tools/bind-tools-9.16.41.ebuild +++ b/net-dns/bind-tools/bind-tools-9.16.41.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -60,6 +60,13 @@ src_prepare() { # toolchain, and it breaks further configure checks sed -i -e '/LDFLAGS=/s/-zrelax=transtls//' configure.ac configure || die + # Slow tests + sed -i "s/{name='mem_test'}/{name='mem_test',timeout=900}/" "lib/isc/tests/Kyuafile" || die + sed -i "s/{name='timer_test'}/{name='timer_test',timeout=900}/" "lib/isc/tests/Kyuafile" || die + + # Conditionally broken + use sparc && sed -i "/{name='netmgr_test'}/d" "lib/isc/tests/Kyuafile" || die + # bug #220361 rm aclocal.m4 || die rm -rf libtool.m4/ || die diff --git a/net-dns/bind-tools/bind-tools-9.16.42.ebuild b/net-dns/bind-tools/bind-tools-9.16.42.ebuild index 69c405cfce33..53c11f114c95 100644 --- a/net-dns/bind-tools/bind-tools-9.16.42.ebuild +++ b/net-dns/bind-tools/bind-tools-9.16.42.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -60,6 +60,13 @@ src_prepare() { # toolchain, and it breaks further configure checks sed -i -e '/LDFLAGS=/s/-zrelax=transtls//' configure.ac configure || die + # Slow tests + sed -i "s/{name='mem_test'}/{name='mem_test',timeout=900}/" "lib/isc/tests/Kyuafile" || die + sed -i "s/{name='timer_test'}/{name='timer_test',timeout=900}/" "lib/isc/tests/Kyuafile" || die + + # Conditionally broken + use sparc && sed -i "/{name='netmgr_test'}/d" "lib/isc/tests/Kyuafile" || die + # bug #220361 rm aclocal.m4 || die rm -rf libtool.m4/ || die