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 C3F5215800F for ; Mon, 13 Feb 2023 07:53:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E15D7E0788; Mon, 13 Feb 2023 07:53:45 +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 C7FC4E0788 for ; Mon, 13 Feb 2023 07:53:45 +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 A2A95340D7B for ; Mon, 13 Feb 2023 07:53:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71F828A3 for ; Mon, 13 Feb 2023 07:53:41 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1676274804.89c3b54f581b42fbfab5e6f7c443255449f3a711.asturm@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: x11-misc/sddm/ X-VCS-Repository: proj/qt X-VCS-Files: x11-misc/sddm/sddm-9999.ebuild X-VCS-Directories: x11-misc/sddm/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 89c3b54f581b42fbfab5e6f7c443255449f3a711 X-VCS-Branch: master Date: Mon, 13 Feb 2023 07:53:41 +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: 5e9057fe-e389-4696-ac5c-fac6d256f809 X-Archives-Hash: bfe582192748ec4a09b7111df9229374 commit: 89c3b54f581b42fbfab5e6f7c443255449f3a711 Author: Robert Buhren robertbuhren de> AuthorDate: Sun Feb 12 23:41:54 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Feb 13 07:53:24 2023 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=89c3b54f x11-misc/sddm: Change RUNTIME_DIR path to "/run/sddm" The systemd tmpfiles config provided with sddm sets the permission for RUNTIME_DIR to 0711. Setting RUNTIME_DIR to "/run" results in the wrong permission set for this directory leading to bugs similar to: "systemd-networkd fails to start before dbus.socket with selinux enabled" Closes: https://github.com/gentoo/qt/pull/265 Signed-off-by: Andreas Sturmlechner gentoo.org> x11-misc/sddm/sddm-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-misc/sddm/sddm-9999.ebuild b/x11-misc/sddm/sddm-9999.ebuild index b8117a94..d4499b5d 100644 --- a/x11-misc/sddm/sddm-9999.ebuild +++ b/x11-misc/sddm/sddm-9999.ebuild @@ -110,7 +110,7 @@ src_configure() { local mycmakeargs=( -DBUILD_MAN_PAGES=ON -DDBUS_CONFIG_FILENAME="org.freedesktop.sddm.conf" - -DRUNTIME_DIR=/run + -DRUNTIME_DIR=/run/sddm -DSYSTEMD_TMPFILES_DIR="/usr/lib/tmpfiles.d" -DENABLE_PAM=$(usex pam) -DNO_SYSTEMD=$(usex !systemd)