From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 4BBA11581F0 for ; Sat, 25 Jan 2025 03:57:46 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 141C034352D for ; Sat, 25 Jan 2025 03:57:46 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id EB4E011042D; Sat, 25 Jan 2025 03:57:44 +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 bobolink.gentoo.org (Postfix) with ESMTPS id E394B11042D for ; Sat, 25 Jan 2025 03:57:44 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 951A23434EA for ; Sat, 25 Jan 2025 03:57:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF56212CA for ; Sat, 25 Jan 2025 03:57:42 +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: <1737777438.3fd26f73ff5868c5c1a1d6279491dcbe47d7f129.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgcrypt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgcrypt/libgcrypt-1.10.2.ebuild dev-libs/libgcrypt/libgcrypt-1.10.3-r1.ebuild dev-libs/libgcrypt/libgcrypt-1.10.3-r2.ebuild dev-libs/libgcrypt/libgcrypt-1.11.0-r1.ebuild dev-libs/libgcrypt/libgcrypt-1.11.0-r2.ebuild dev-libs/libgcrypt/libgcrypt-1.11.0.ebuild X-VCS-Directories: dev-libs/libgcrypt/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3fd26f73ff5868c5c1a1d6279491dcbe47d7f129 X-VCS-Branch: master Date: Sat, 25 Jan 2025 03:57:42 +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: b1e3f664-a7d9-4e9d-b0e3-dcdf7513b8e9 X-Archives-Hash: 84364a164bc9f364ea66f21603fb479c commit: 3fd26f73ff5868c5c1a1d6279491dcbe47d7f129 Author: Sam James gentoo org> AuthorDate: Sat Jan 25 03:55:11 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jan 25 03:57:18 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fd26f73 dev-libs/libgcrypt: skip benchmark tests Matt reported that 'bench-slope' took at least 6.5 hours on HPPA (on a PA8900, which is the fastest it has!) and I've noticed this test taking a while (though far less time) on amd64. Let's skip it by setting GCRYPT_NO_BENCHMARKS which the testsuite already provides for us. Reported-by: Matt Turner gentoo.org> Signed-off-by: Sam James gentoo.org> dev-libs/libgcrypt/libgcrypt-1.10.2.ebuild | 5 ++++- dev-libs/libgcrypt/libgcrypt-1.10.3-r1.ebuild | 5 ++++- dev-libs/libgcrypt/libgcrypt-1.10.3-r2.ebuild | 5 ++++- dev-libs/libgcrypt/libgcrypt-1.11.0-r1.ebuild | 3 +++ dev-libs/libgcrypt/libgcrypt-1.11.0-r2.ebuild | 5 ++++- dev-libs/libgcrypt/libgcrypt-1.11.0.ebuild | 5 ++++- 6 files changed, 23 insertions(+), 5 deletions(-) diff --git a/dev-libs/libgcrypt/libgcrypt-1.10.2.ebuild b/dev-libs/libgcrypt/libgcrypt-1.10.2.ebuild index 6c0585d89698..7954c5f2aa9a 100644 --- a/dev-libs/libgcrypt/libgcrypt-1.10.2.ebuild +++ b/dev-libs/libgcrypt/libgcrypt-1.10.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -167,6 +167,9 @@ multilib_src_test() { # t-secmem and t-sexp need mlock which requires extra privileges; nspawn # at least disallows that by default. local -x GCRYPT_IN_ASAN_TEST=1 + # Avoid running (very) expensive bench-slope test. On hppa, it + # takes at least 7 hours. + local -x GCRYPT_NO_BENCHMARKS=1 default } diff --git a/dev-libs/libgcrypt/libgcrypt-1.10.3-r1.ebuild b/dev-libs/libgcrypt/libgcrypt-1.10.3-r1.ebuild index ec0db5a77c6b..c651cc767b8c 100644 --- a/dev-libs/libgcrypt/libgcrypt-1.10.3-r1.ebuild +++ b/dev-libs/libgcrypt/libgcrypt-1.10.3-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -165,6 +165,9 @@ multilib_src_test() { # t-secmem and t-sexp need mlock which requires extra privileges; nspawn # at least disallows that by default. local -x GCRYPT_IN_ASAN_TEST=1 + # Avoid running (very) expensive bench-slope test. On hppa, it + # takes at least 7 hours. + local -x GCRYPT_NO_BENCHMARKS=1 default } diff --git a/dev-libs/libgcrypt/libgcrypt-1.10.3-r2.ebuild b/dev-libs/libgcrypt/libgcrypt-1.10.3-r2.ebuild index 07596861dd7d..c546de3cf23b 100644 --- a/dev-libs/libgcrypt/libgcrypt-1.10.3-r2.ebuild +++ b/dev-libs/libgcrypt/libgcrypt-1.10.3-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -171,6 +171,9 @@ multilib_src_test() { # t-secmem and t-sexp need mlock which requires extra privileges; nspawn # at least disallows that by default. local -x GCRYPT_IN_ASAN_TEST=1 + # Avoid running (very) expensive bench-slope test. On hppa, it + # takes at least 7 hours. + local -x GCRYPT_NO_BENCHMARKS=1 default } diff --git a/dev-libs/libgcrypt/libgcrypt-1.11.0-r1.ebuild b/dev-libs/libgcrypt/libgcrypt-1.11.0-r1.ebuild index e90e50144ed6..45bc4ef0ff04 100644 --- a/dev-libs/libgcrypt/libgcrypt-1.11.0-r1.ebuild +++ b/dev-libs/libgcrypt/libgcrypt-1.11.0-r1.ebuild @@ -165,6 +165,9 @@ multilib_src_test() { # t-secmem and t-sexp need mlock which requires extra privileges; nspawn # at least disallows that by default. local -x GCRYPT_IN_ASAN_TEST=1 + # Avoid running (very) expensive bench-slope test. On hppa, it + # takes at least 7 hours. + local -x GCRYPT_NO_BENCHMARKS=1 default } diff --git a/dev-libs/libgcrypt/libgcrypt-1.11.0-r2.ebuild b/dev-libs/libgcrypt/libgcrypt-1.11.0-r2.ebuild index 4b77f2ee8add..f1ad04917853 100644 --- a/dev-libs/libgcrypt/libgcrypt-1.11.0-r2.ebuild +++ b/dev-libs/libgcrypt/libgcrypt-1.11.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -172,6 +172,9 @@ multilib_src_test() { # t-secmem and t-sexp need mlock which requires extra privileges; nspawn # at least disallows that by default. local -x GCRYPT_IN_ASAN_TEST=1 + # Avoid running (very) expensive bench-slope test. On hppa, it + # takes at least 7 hours. + local -x GCRYPT_NO_BENCHMARKS=1 default } diff --git a/dev-libs/libgcrypt/libgcrypt-1.11.0.ebuild b/dev-libs/libgcrypt/libgcrypt-1.11.0.ebuild index 77bc6b55e34b..f996a1611e03 100644 --- a/dev-libs/libgcrypt/libgcrypt-1.11.0.ebuild +++ b/dev-libs/libgcrypt/libgcrypt-1.11.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -164,6 +164,9 @@ multilib_src_test() { # t-secmem and t-sexp need mlock which requires extra privileges; nspawn # at least disallows that by default. local -x GCRYPT_IN_ASAN_TEST=1 + # Avoid running (very) expensive bench-slope test. On hppa, it + # takes at least 7 hours. + local -x GCRYPT_NO_BENCHMARKS=1 default }