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 DC84D15806E for ; Tue, 16 May 2023 01:52:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1AAA5E08E5; Tue, 16 May 2023 01:52:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 02107E08F0 for ; Tue, 16 May 2023 01:52:59 +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 43A2733D3C5 for ; Tue, 16 May 2023 01:52:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74BFEA75 for ; Tue, 16 May 2023 01:52:55 +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: <1684201940.7d30eab6e802ebc2fe427d30e220b3c92cb17908.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/fio/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/fio/fio-3.34.ebuild X-VCS-Directories: sys-block/fio/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7d30eab6e802ebc2fe427d30e220b3c92cb17908 X-VCS-Branch: master Date: Tue, 16 May 2023 01:52:55 +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: b0d10171-b964-4c30-a82d-6d98763bdf97 X-Archives-Hash: 6c23f1ded300403489071456900bea0b commit: 7d30eab6e802ebc2fe427d30e220b3c92cb17908 Author: Sam James gentoo org> AuthorDate: Tue May 16 01:50:37 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 16 01:52:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d30eab6 sys-block/fio: add Valgrind annotation support Signed-off-by: Sam James gentoo.org> sys-block/fio/fio-3.34.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys-block/fio/fio-3.34.ebuild b/sys-block/fio/fio-3.34.ebuild index 7ca26eaf225e..b090ea6b924f 100644 --- a/sys-block/fio/fio-3.34.ebuild +++ b/sys-block/fio/fio-3.34.ebuild @@ -17,7 +17,7 @@ SRC_URI="https://brick.kernel.dk/snaps/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 arm ~arm64 ~ia64 ~loong ~ppc ppc64 ~riscv x86" -IUSE="aio curl glusterfs gnuplot gtk io-uring nfs numa python rbd rdma static tcmalloc test zbc zlib" +IUSE="aio curl glusterfs gnuplot gtk io-uring nfs numa python rbd rdma static tcmalloc test valgrind zbc zlib" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} ) gnuplot? ( python ) io-uring? ( aio )" @@ -48,7 +48,8 @@ RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} ) gtk? ( x11-libs/gtk+:2 )" DEPEND="${RDEPEND} static? ( ${LIB_DEPEND} ) - test? ( dev-util/cunit )" + test? ( dev-util/cunit ) + valgrind? ( dev-util/valgrind )" RDEPEND+=" python? ( ${PYTHON_DEPS} @@ -74,6 +75,7 @@ src_prepare() { -e '/if compile_prog "" "-lz" "zlib" *; *then/ '"s::if $(usex zlib true false) ; then:" \ -e '/if compile_prog "" "-laio" "libaio" *; *then/'"s::if $(usex aio true false) ; then:" \ -e '/if compile_prog "" "-lcunit" "CUnit" *; *then/'"s::if $(usex test true false) ; then:" \ + -e '/if compile_prog "" "" "valgrind_dev" *; *then/'"s::if $(usex valgrind true false) ; then:" \ configure || die }