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 49F7915808E for ; Thu, 28 Apr 2022 16:00:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6734AE07C7; Thu, 28 Apr 2022 16:00:17 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 49334E07C7 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 18B0934183A 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 6363575 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.1a6802800f93cfde252a7fccf431924a0d1ad8d0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libpulse/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libpulse/libpulse-15.99.1-r1.ebuild media-libs/libpulse/libpulse-15.99.1.ebuild X-VCS-Directories: media-libs/libpulse/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1a6802800f93cfde252a7fccf431924a0d1ad8d0 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: ab662c49-6005-4ebb-9a8b-67e74cc51758 X-Archives-Hash: c1a8613bc8b03c0a62be2f0225a44af9 commit: 1a6802800f93cfde252a7fccf431924a0d1ad8d0 Author: Igor V. Kovalenko gmail com> AuthorDate: Tue Apr 26 21:54:48 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=1a680280 media-libs/libpulse: Client part of split autospawn implementation No need to enable autospawn for pulseaudio daemon if daemon is not insalled. Disable autospawn in client.conf installed with libpulse, pulseaudio-daemon package can enable it via file in /etc/pulse/client.conf.d/ Signed-off-by: Igor V. Kovalenko gmail.com> Signed-off-by: Sam James gentoo.org> .../libpulse/{libpulse-15.99.1.ebuild => libpulse-15.99.1-r1.ebuild} | 3 +++ 1 file changed, 3 insertions(+) diff --git a/media-libs/libpulse/libpulse-15.99.1.ebuild b/media-libs/libpulse/libpulse-15.99.1-r1.ebuild similarity index 97% rename from media-libs/libpulse/libpulse-15.99.1.ebuild rename to media-libs/libpulse/libpulse-15.99.1-r1.ebuild index 357eea6b8537..4fc935f42f75 100644 --- a/media-libs/libpulse/libpulse-15.99.1.ebuild +++ b/media-libs/libpulse/libpulse-15.99.1-r1.ebuild @@ -77,6 +77,9 @@ PATCHES=( src_prepare() { default + # disable autospawn by client + sed -i -e 's:; autospawn = yes:autospawn = no:g' src/pulse/client.conf.in || die + gnome2_environment_reset }