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 1395A15808E for ; Thu, 28 Apr 2022 16:00:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CA23E07EE; Thu, 28 Apr 2022 16:00:17 +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 5CBFDE07EE for ; Thu, 28 Apr 2022 16:00:17 +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 111EB341803 for ; Thu, 28 Apr 2022 16:00:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 77D4342F for ; Thu, 28 Apr 2022 16:00:14 +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: <1651161592.d5453db8eeeee7aec0b61f772a7b76e3400f1d8b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pulseaudio-daemon/files/, media-sound/pulseaudio-daemon/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/pulseaudio-daemon/files/enable-autospawn.conf media-sound/pulseaudio-daemon/pulseaudio-daemon-15.99.1-r1.ebuild media-sound/pulseaudio-daemon/pulseaudio-daemon-15.99.1.ebuild X-VCS-Directories: media-sound/pulseaudio-daemon/ media-sound/pulseaudio-daemon/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d5453db8eeeee7aec0b61f772a7b76e3400f1d8b X-VCS-Branch: master Date: Thu, 28 Apr 2022 16:00:14 +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: 4a2203b4-4fb5-4308-b1f1-91b2715bd413 X-Archives-Hash: 25ee939e025c27498448ec0fa09046be commit: d5453db8eeeee7aec0b61f772a7b76e3400f1d8b Author: Igor V. Kovalenko gmail com> AuthorDate: Tue Apr 26 21:55:30 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Apr 28 15:59:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5453db8 media-sound/pulseaudio-daemon: Daemon part of split autospawn implementation Now that libpulse has daemon autospawn disabled, enable it back for systems without systemd when pulseaudio-daemon is installed. Signed-off-by: Igor V. Kovalenko gmail.com> Closes: https://github.com/gentoo/gentoo/pull/25207 Signed-off-by: Sam James gentoo.org> media-sound/pulseaudio-daemon/files/enable-autospawn.conf | 2 ++ ...io-daemon-15.99.1.ebuild => pulseaudio-daemon-15.99.1-r1.ebuild} | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/media-sound/pulseaudio-daemon/files/enable-autospawn.conf b/media-sound/pulseaudio-daemon/files/enable-autospawn.conf new file mode 100644 index 000000000000..5681459a32cd --- /dev/null +++ b/media-sound/pulseaudio-daemon/files/enable-autospawn.conf @@ -0,0 +1,2 @@ +# Enable automatic spawning of pulseaudio daemon +autospawn = yes diff --git a/media-sound/pulseaudio-daemon/pulseaudio-daemon-15.99.1.ebuild b/media-sound/pulseaudio-daemon/pulseaudio-daemon-15.99.1-r1.ebuild similarity index 97% rename from media-sound/pulseaudio-daemon/pulseaudio-daemon-15.99.1.ebuild rename to media-sound/pulseaudio-daemon/pulseaudio-daemon-15.99.1-r1.ebuild index 71655e65efbd..19134e3b2752 100644 --- a/media-sound/pulseaudio-daemon/pulseaudio-daemon-15.99.1.ebuild +++ b/media-sound/pulseaudio-daemon/pulseaudio-daemon-15.99.1-r1.ebuild @@ -272,6 +272,12 @@ src_install() { || die fi + # Only enable autospawning pulseaudio daemon on systems without systemd + if ! use systemd; then + insinto /etc/pulse/client.conf.d + newins "${FILESDIR}/enable-autospawn.conf" "enable-autospawn.conf" + fi + find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die }