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 8F72515806E for ; Sat, 27 May 2023 06:12:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8CA8E0877; Sat, 27 May 2023 06:12:28 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 B11A7E087A for ; Sat, 27 May 2023 06:12:28 +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 DC37034103F for ; Sat, 27 May 2023 06:12:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7736DA7A for ; Sat, 27 May 2023 06:12:26 +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: <1685167933.d8d979e0bda3d2f4be903e20846ceba321e39c72.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/jalv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/jalv/jalv-1.6.8.ebuild X-VCS-Directories: media-sound/jalv/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d8d979e0bda3d2f4be903e20846ceba321e39c72 X-VCS-Branch: master Date: Sat, 27 May 2023 06:12:26 +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: 8d94f572-84f8-4d52-8eb6-74501d2043b7 X-Archives-Hash: 1766c5b15675f6a2648054f05cd40a2f commit: d8d979e0bda3d2f4be903e20846ceba321e39c72 Author: Sam James gentoo org> AuthorDate: Sat May 27 05:59:08 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat May 27 06:12:13 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8d979e0 media-sound/jalv: conditionally build tests Signed-off-by: Sam James gentoo.org> media-sound/jalv/jalv-1.6.8.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/media-sound/jalv/jalv-1.6.8.ebuild b/media-sound/jalv/jalv-1.6.8.ebuild index e6469c2fab7e..da48f7dfbce1 100644 --- a/media-sound/jalv/jalv-1.6.8.ebuild +++ b/media-sound/jalv/jalv-1.6.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -12,8 +12,9 @@ SRC_URI="https://download.drobilla.net/${P}.tar.xz" LICENSE="ISC" SLOT="0" KEYWORDS="amd64" -IUSE="gtk +jack portaudio qt5" +IUSE="gtk +jack portaudio qt5 test" REQUIRED_USE="^^ ( jack portaudio )" +RESTRICT="!test? ( test )" RDEPEND=" dev-libs/serd @@ -49,6 +50,7 @@ src_configure() { $(meson_feature jack) $(meson_feature portaudio) $(meson_feature qt5) + $(meson_feature test tests) ) meson_src_configure }