From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id DF87A1582EF for ; Fri, 28 Feb 2025 14:44:33 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id CC12E343224 for ; Fri, 28 Feb 2025 14:44:33 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id CBF841102D0; Fri, 28 Feb 2025 14:44:32 +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 bobolink.gentoo.org (Postfix) with ESMTPS id C18C11102C9 for ; Fri, 28 Feb 2025 14:44:32 +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 70140343222 for ; Fri, 28 Feb 2025 14:44:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 055AF16DF for ; Fri, 28 Feb 2025 14:44:31 +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: <1740753837.df5f2d54a6e4b685329a6948239f4574cd8eb679.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/dbus/files/, sys-apps/dbus/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/dbus/dbus-1.16.0-r2.ebuild sys-apps/dbus/dbus-1.16.0-r3.ebuild sys-apps/dbus/files/dbus.sh X-VCS-Directories: sys-apps/dbus/files/ sys-apps/dbus/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: df5f2d54a6e4b685329a6948239f4574cd8eb679 X-VCS-Branch: master Date: Fri, 28 Feb 2025 14:44:31 +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: 81a581ba-9bf1-424a-8341-7c5ae3413214 X-Archives-Hash: d8269ad03e67634e113553c39a41e661 commit: df5f2d54a6e4b685329a6948239f4574cd8eb679 Author: Anna (navi) Figueiredo Gomes vlhl dev> AuthorDate: Fri Feb 28 14:39:13 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 28 14:43:57 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df5f2d54 sys-apps/dbus: remove profile.d script for now Some tools (namely plasma) don't check if the script is valid, and then deadlocks. Once we have more robust login mechanisms we can re-introduce those. Signed-off-by: Anna (navi) Figueiredo Gomes vlhl.dev> Signed-off-by: Sam James gentoo.org> sys-apps/dbus/{dbus-1.16.0-r2.ebuild => dbus-1.16.0-r3.ebuild} | 3 --- sys-apps/dbus/files/dbus.sh | 7 ------- 2 files changed, 10 deletions(-) diff --git a/sys-apps/dbus/dbus-1.16.0-r2.ebuild b/sys-apps/dbus/dbus-1.16.0-r3.ebuild similarity index 99% rename from sys-apps/dbus/dbus-1.16.0-r2.ebuild rename to sys-apps/dbus/dbus-1.16.0-r3.ebuild index 15416a5511d7..329294046b7e 100644 --- a/sys-apps/dbus/dbus-1.16.0-r2.ebuild +++ b/sys-apps/dbus/dbus-1.16.0-r3.ebuild @@ -161,9 +161,6 @@ multilib_src_install_all() { exeinto /etc/user/init.d newexe "${FILESDIR}/dbus.user.initd" dbus - insinto /etc/profile.d - doins "${FILESDIR}"/dbus.sh - if use X; then # dbus X session script (bug #77504) # turns out to only work for GDM (and startx). has been merged into diff --git a/sys-apps/dbus/files/dbus.sh b/sys-apps/dbus/files/dbus.sh deleted file mode 100644 index 6111f1e34992..000000000000 --- a/sys-apps/dbus/files/dbus.sh +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License, v2 or later -# -if [ -f /run/openrc/softlevel ] && [ -z "$DBUS_SESSION_BUS_ADDRESS" ] \ - && rc-service --user --exists dbus 2>&1 >/dev/null; then - export DBUS_SESSION_BUS_ADDRESS="unix:path=${XDG_RUNTIME_DIR}/bus" -fi