From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1374430-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 B402315808B
	for <garchives@archives.gentoo.org>; Fri, 11 Mar 2022 15:22:29 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id D418BE0877;
	Fri, 11 Mar 2022 15:22: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 BB9A8E0877
	for <gentoo-commits@lists.gentoo.org>; Fri, 11 Mar 2022 15:22: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 A22C933BEE0
	for <gentoo-commits@lists.gentoo.org>; Fri, 11 Mar 2022 15:22:27 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 266A9287
	for <gentoo-commits@lists.gentoo.org>; Fri, 11 Mar 2022 15:22:26 +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: <1647012129.09f84e1ace61c4adcb30e9fa84cc319513af5c9b.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pulseaudio/
X-VCS-Repository: repo/gentoo
X-VCS-Files: media-sound/pulseaudio/pulseaudio-15.99.1-r1.ebuild
X-VCS-Directories: media-sound/pulseaudio/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: 09f84e1ace61c4adcb30e9fa84cc319513af5c9b
X-VCS-Branch: master
Date: Fri, 11 Mar 2022 15:22:26 +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: fec7456a-4b10-4008-aeb3-3c4e5f2d98c4
X-Archives-Hash: 9446857f1f093d56ceeec38827df1a0b

commit:     09f84e1ace61c4adcb30e9fa84cc319513af5c9b
Author:     Igor V. Kovalenko <igor.v.kovalenko <AT> gmail <DOT> com>
AuthorDate: Thu Mar 10 08:34:12 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 11 15:22:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09f84e1a

media-sound/pulseaudio: Pass through USE flags to dependency

Pass USE flags to media-sound/pulseaudio-daemon to ease transition
for users who have enabled e.g. bluetooth for pulseaudio package only.

Signed-off-by: Igor V. Kovalenko <igor.v.kovalenko <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/24451
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-sound/pulseaudio/pulseaudio-15.99.1-r1.ebuild | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/media-sound/pulseaudio/pulseaudio-15.99.1-r1.ebuild b/media-sound/pulseaudio/pulseaudio-15.99.1-r1.ebuild
index cd33ef88feb7..cb446d289297 100644
--- a/media-sound/pulseaudio/pulseaudio-15.99.1-r1.ebuild
+++ b/media-sound/pulseaudio/pulseaudio-15.99.1-r1.ebuild
@@ -15,11 +15,14 @@ LICENSE="metapackage"
 
 SLOT="0"
 
-IUSE="+daemon +glib"
+# NOTE: bluetooth, native-headset and ofono-headset are passed through to
+# pulseaudio-daemon dependency to make sure users who have bluetooth enabled
+# just for pulseaudio package will also get these enabled via metapackage.
+IUSE="bluetooth +daemon +glib jack native-headset ofono-headset"
 
 RDEPEND="
 	>=media-libs/libpulse-${PV}[glib?,${MULTILIB_USEDEP}]
-	daemon? ( >=media-sound/pulseaudio-daemon-${PV} )
+	daemon? ( >=media-sound/pulseaudio-daemon-${PV}[bluetooth?,glib?,jack?,native-headset?,ofono-headset?] )
 "
 DEPEND="${RDEPEND}"