From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1572364-garchives=archives.gentoo.org@lists.gentoo.org>
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 EA3A0158099
	for <garchives@archives.gentoo.org>; Wed, 22 Nov 2023 18:29:05 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 1B6A32BC022;
	Wed, 22 Nov 2023 18:29:05 +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 001D72BC022
	for <gentoo-commits@lists.gentoo.org>; Wed, 22 Nov 2023 18:29:04 +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 1357A335DBE
	for <gentoo-commits@lists.gentoo.org>; Wed, 22 Nov 2023 18:29:04 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 73C4E13B4
	for <gentoo-commits@lists.gentoo.org>; Wed, 22 Nov 2023 18:29:02 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
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" <sam@gentoo.org>
Message-ID: <1700677716.757911e7a1ce427f54964ece16389633d1e3f335.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/liblc3/
X-VCS-Repository: repo/gentoo
X-VCS-Files: media-sound/liblc3/liblc3-1.0.4-r1.ebuild
X-VCS-Directories: media-sound/liblc3/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: 757911e7a1ce427f54964ece16389633d1e3f335
X-VCS-Branch: master
Date: Wed, 22 Nov 2023 18:29:02 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 8298f099-baaa-4b47-b596-cdb2ba04a739
X-Archives-Hash: 82204b2237d4563034f846004d4f59fb

commit:     757911e7a1ce427f54964ece16389633d1e3f335
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 22 18:28:01 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 22 18:28:36 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=757911e7

media-sound/liblc3: style tweaks

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-sound/liblc3/liblc3-1.0.4-r1.ebuild | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/media-sound/liblc3/liblc3-1.0.4-r1.ebuild b/media-sound/liblc3/liblc3-1.0.4-r1.ebuild
index 13bee49ab7af..4d4ee40bc106 100644
--- a/media-sound/liblc3/liblc3-1.0.4-r1.ebuild
+++ b/media-sound/liblc3/liblc3-1.0.4-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10,11,12} pypy3 )
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
 inherit meson python-any-r1
 
 DESCRIPTION="LC3 is an efficient low latency audio codec"
@@ -16,16 +16,18 @@ IUSE="test tools"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
 RESTRICT="!test? ( test )"
 
-DEPEND="test? (
-	$(python_gen_any_dep '
-		dev-python/numpy[${PYTHON_USEDEP}]
-		dev-python/scipy[${PYTHON_USEDEP}]
-	')
-)"
+BDEPEND="
+	test? (
+		$(python_gen_any_dep '
+			dev-python/numpy[${PYTHON_USEDEP}]
+			dev-python/scipy[${PYTHON_USEDEP}]
+		')
+	)
+"
 
 python_check_deps() {
-	python_has_version -d "dev-python/numpy[${PYTHON_USEDEP}]" &&
-	python_has_version -d "dev-python/scipy[${PYTHON_USEDEP}]"
+	python_has_version "dev-python/numpy[${PYTHON_USEDEP}]" &&
+	python_has_version "dev-python/scipy[${PYTHON_USEDEP}]"
 }
 
 pkg_setup() {