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 9ED9715ACFD for ; Sat, 29 Apr 2023 03:50:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53D02E085B; Sat, 29 Apr 2023 03:50:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 F0367E0855 for ; Sat, 29 Apr 2023 03:50:08 +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 E808E340D30 for ; Sat, 29 Apr 2023 03:50:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 46446A36 for ; Sat, 29 Apr 2023 03:50:06 +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: <1682739124.192cb2edeb4d08a1216a35821ef16a3d2588302e.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd/files/, sys-apps/systemd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/systemd/files/legacy.conf sys-apps/systemd/systemd-253.3-r1.ebuild sys-apps/systemd/systemd-253.3.ebuild sys-apps/systemd/systemd-9999.ebuild X-VCS-Directories: sys-apps/systemd/ sys-apps/systemd/files/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 192cb2edeb4d08a1216a35821ef16a3d2588302e X-VCS-Branch: master Date: Sat, 29 Apr 2023 03:50:06 +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: 39912128-f741-4b8f-976a-8640be7b5e36 X-Archives-Hash: 4554045d7aea89b90729a0dce00eb7c6 commit: 192cb2edeb4d08a1216a35821ef16a3d2588302e Author: Mike Gilbert gentoo org> AuthorDate: Sat Apr 29 03:32:04 2023 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Apr 29 03:32:04 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=192cb2ed sys-apps/systemd: install legacy.conf tmpfiles snippet Signed-off-by: Mike Gilbert gentoo.org> sys-apps/systemd/files/legacy.conf | 3 +++ sys-apps/systemd/{systemd-253.3.ebuild => systemd-253.3-r1.ebuild} | 3 +++ sys-apps/systemd/systemd-9999.ebuild | 3 +++ 3 files changed, 9 insertions(+) diff --git a/sys-apps/systemd/files/legacy.conf b/sys-apps/systemd/files/legacy.conf new file mode 100644 index 000000000000..2d322e886960 --- /dev/null +++ b/sys-apps/systemd/files/legacy.conf @@ -0,0 +1,3 @@ +# Based on legacy.conf from systemd +d /run/lock +L /var/lock - - - - ../run/lock diff --git a/sys-apps/systemd/systemd-253.3.ebuild b/sys-apps/systemd/systemd-253.3-r1.ebuild similarity index 99% rename from sys-apps/systemd/systemd-253.3.ebuild rename to sys-apps/systemd/systemd-253.3-r1.ebuild index 885075d2a96a..291e51240b56 100644 --- a/sys-apps/systemd/systemd-253.3.ebuild +++ b/sys-apps/systemd/systemd-253.3-r1.ebuild @@ -359,6 +359,9 @@ multilib_src_install_all() { einstalldocs dodoc "${FILESDIR}"/nsswitch.conf + insinto /usr/lib/tmpfiles.d + doins "${FILESDIR}"/legacy.conf + if ! use resolvconf; then rm -f "${ED}${rootprefix}/${sbin}"/resolvconf || die fi diff --git a/sys-apps/systemd/systemd-9999.ebuild b/sys-apps/systemd/systemd-9999.ebuild index 04abcb6fb4bf..595551b2bfaf 100644 --- a/sys-apps/systemd/systemd-9999.ebuild +++ b/sys-apps/systemd/systemd-9999.ebuild @@ -358,6 +358,9 @@ multilib_src_install_all() { einstalldocs dodoc "${FILESDIR}"/nsswitch.conf + insinto /usr/lib/tmpfiles.d + doins "${FILESDIR}"/legacy.conf + if ! use resolvconf; then rm -f "${ED}${rootprefix}/${sbin}"/resolvconf || die fi