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 E27AD158041 for ; Thu, 28 Mar 2024 21:12:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A96BE29FB; Thu, 28 Mar 2024 21:12:33 +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 DBB3EE29FB for ; Thu, 28 Mar 2024 21:12: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BA4AC34309B for ; Thu, 28 Mar 2024 21:12:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D52C14C3 for ; Thu, 28 Mar 2024 21:12:30 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1711660326.dafe17091a2bfa128ee7f706d63e76cc42e4c58f.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd-utils/files/, sys-apps/systemd-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/systemd-utils/files/tmp.conf sys-apps/systemd-utils/systemd-utils-254.10-r1.ebuild sys-apps/systemd-utils/systemd-utils-254.10.ebuild sys-apps/systemd-utils/systemd-utils-254.8-r1.ebuild sys-apps/systemd-utils/systemd-utils-254.8.ebuild sys-apps/systemd-utils/systemd-utils-255.4.ebuild X-VCS-Directories: sys-apps/systemd-utils/ sys-apps/systemd-utils/files/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: dafe17091a2bfa128ee7f706d63e76cc42e4c58f X-VCS-Branch: master Date: Thu, 28 Mar 2024 21:12:30 +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: 54296e45-fa88-4c56-b132-d949e19f19ca X-Archives-Hash: 8738f7a4d23f01ae6f97db4d925ae94a commit: dafe17091a2bfa128ee7f706d63e76cc42e4c58f Author: Mike Gilbert gentoo org> AuthorDate: Thu Mar 28 21:09:36 2024 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Thu Mar 28 21:12:06 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dafe1709 sys-apps/systemd-utils: disable auto-cleanup of /tmp and /var/tmp This can go awry when people have non-standard mount options for these paths. Closes: https://bugs.gentoo.org/910233 Bug: https://bugs.gentoo.org/916623 Closes: https://bugs.gentoo.org/917777 Signed-off-by: Mike Gilbert gentoo.org> sys-apps/systemd-utils/files/tmp.conf | 2 ++ .../{systemd-utils-254.10.ebuild => systemd-utils-254.10-r1.ebuild} | 4 ++-- .../{systemd-utils-254.8.ebuild => systemd-utils-254.8-r1.ebuild} | 4 ++-- sys-apps/systemd-utils/systemd-utils-255.4.ebuild | 4 ++-- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/sys-apps/systemd-utils/files/tmp.conf b/sys-apps/systemd-utils/files/tmp.conf new file mode 100644 index 000000000000..9f3d19bb7a2d --- /dev/null +++ b/sys-apps/systemd-utils/files/tmp.conf @@ -0,0 +1,2 @@ +q /tmp 1777 root root +q /var/tmp 1777 root root diff --git a/sys-apps/systemd-utils/systemd-utils-254.10.ebuild b/sys-apps/systemd-utils/systemd-utils-254.10-r1.ebuild similarity index 99% rename from sys-apps/systemd-utils/systemd-utils-254.10.ebuild rename to sys-apps/systemd-utils/systemd-utils-254.10-r1.ebuild index 93436b880f05..80c11bee8adc 100644 --- a/sys-apps/systemd-utils/systemd-utils-254.10.ebuild +++ b/sys-apps/systemd-utils/systemd-utils-254.10-r1.ebuild @@ -517,8 +517,8 @@ multilib_src_install_all() { insinto /usr/share/zsh/site-functions doins shell-completion/zsh/_systemd-tmpfiles insinto /usr/lib/tmpfiles.d - doins tmpfiles.d/{tmp,x11}.conf - doins "${FILESDIR}"/legacy.conf + doins tmpfiles.d/x11.conf + doins "${FILESDIR}"/{legacy,tmp}.conf fi if use udev; then doheader src/libudev/libudev.h diff --git a/sys-apps/systemd-utils/systemd-utils-254.8.ebuild b/sys-apps/systemd-utils/systemd-utils-254.8-r1.ebuild similarity index 99% rename from sys-apps/systemd-utils/systemd-utils-254.8.ebuild rename to sys-apps/systemd-utils/systemd-utils-254.8-r1.ebuild index b73e1d640a89..bbe8dec823b3 100644 --- a/sys-apps/systemd-utils/systemd-utils-254.8.ebuild +++ b/sys-apps/systemd-utils/systemd-utils-254.8-r1.ebuild @@ -518,8 +518,8 @@ multilib_src_install_all() { insinto /usr/share/zsh/site-functions doins shell-completion/zsh/_systemd-tmpfiles insinto /usr/lib/tmpfiles.d - doins tmpfiles.d/{tmp,x11}.conf - doins "${FILESDIR}"/legacy.conf + doins tmpfiles.d/x11.conf + doins "${FILESDIR}"/{legacy,tmp}.conf fi if use udev; then doheader src/libudev/libudev.h diff --git a/sys-apps/systemd-utils/systemd-utils-255.4.ebuild b/sys-apps/systemd-utils/systemd-utils-255.4.ebuild index b258f5748243..a4f60f47e7f3 100644 --- a/sys-apps/systemd-utils/systemd-utils-255.4.ebuild +++ b/sys-apps/systemd-utils/systemd-utils-255.4.ebuild @@ -517,8 +517,8 @@ multilib_src_install_all() { insinto /usr/share/zsh/site-functions doins shell-completion/zsh/_systemd-tmpfiles insinto /usr/lib/tmpfiles.d - doins tmpfiles.d/{tmp,x11}.conf - doins "${FILESDIR}"/legacy.conf + doins tmpfiles.d/x11.conf + doins "${FILESDIR}"/{legacy,tmp}.conf fi if use udev; then doheader src/libudev/libudev.h