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 C26C8158041 for ; Sat, 16 Mar 2024 05:23:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75978E29ED; Sat, 16 Mar 2024 05:23:45 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 54303E29ED for ; Sat, 16 Mar 2024 05:23:45 +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 F00E433BDC5 for ; Sat, 16 Mar 2024 05:23:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E2EF14A8 for ; Sat, 16 Mar 2024 05:23: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: <1710566591.acc020e3ee4ade729f99d49d5ee43f90a8d510e1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/json-c/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/json-c/json-c-0.17.ebuild dev-libs/json-c/json-c-9999.ebuild X-VCS-Directories: dev-libs/json-c/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: acc020e3ee4ade729f99d49d5ee43f90a8d510e1 X-VCS-Branch: master Date: Sat, 16 Mar 2024 05:23: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: c7e2590d-1944-42dd-9544-9f5efc89cb4a X-Archives-Hash: 0a87e99d2eabc4ce5bff3393a9b16c46 commit: acc020e3ee4ade729f99d49d5ee43f90a8d510e1 Author: Sam James gentoo org> AuthorDate: Sat Mar 16 05:22:30 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 16 05:23:11 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acc020e3 dev-libs/json-c: don't use Valgrind automagically in tests Closes: https://bugs.gentoo.org/927027 Signed-off-by: Sam James gentoo.org> dev-libs/json-c/json-c-0.17.ebuild | 5 ++++- dev-libs/json-c/json-c-9999.ebuild | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-libs/json-c/json-c-0.17.ebuild b/dev-libs/json-c/json-c-0.17.ebuild index 4f44e489c9b1..6fb6f4f13f3a 100644 --- a/dev-libs/json-c/json-c-0.17.ebuild +++ b/dev-libs/json-c/json-c-0.17.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 @@ -19,6 +19,9 @@ MULTILIB_WRAPPED_HEADERS=( ) multilib_src_configure() { + # Tests use Valgrind automagically otherwise (bug #927027) + export USE_VALGRIND=0 + local mycmakeargs=( # apps are not installed, so disable unconditionally. # https://github.com/json-c/json-c/blob/json-c-0.17-20230812/apps/CMakeLists.txt#L119...L121 diff --git a/dev-libs/json-c/json-c-9999.ebuild b/dev-libs/json-c/json-c-9999.ebuild index 29dc876b223b..2ee46fcafda5 100644 --- a/dev-libs/json-c/json-c-9999.ebuild +++ b/dev-libs/json-c/json-c-9999.ebuild @@ -20,6 +20,9 @@ MULTILIB_WRAPPED_HEADERS=( ) multilib_src_configure() { + # Tests use Valgrind automagically otherwise (bug #927027) + export USE_VALGRIND=0 + local mycmakeargs=( # apps are not installed, so disable unconditionally. # https://github.com/json-c/json-c/blob/json-c-0.17-20230812/apps/CMakeLists.txt#L119...L121