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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4CF6C139337 for ; Sat, 31 Jul 2021 22:17:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 725E0E097B; Sat, 31 Jul 2021 22:17:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 51C4DE0975 for ; Sat, 31 Jul 2021 22:17:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 61BB234394E for ; Sat, 31 Jul 2021 22:17:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C56C685A for ; Sat, 31 Jul 2021 22:17:25 +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: <1627769623.de685543b4a4739589ffe03e257c5d9ecdca14fd.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/udisks/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/udisks/udisks-2.9.1-r1.ebuild sys-fs/udisks/udisks-2.9.1-r2.ebuild sys-fs/udisks/udisks-2.9.2-r1.ebuild sys-fs/udisks/udisks-2.9.2-r2.ebuild X-VCS-Directories: sys-fs/udisks/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: de685543b4a4739589ffe03e257c5d9ecdca14fd X-VCS-Branch: master Date: Sat, 31 Jul 2021 22:17:25 +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: 073e09d1-de5b-46a8-9f12-b1bc15503cfc X-Archives-Hash: 00f389efec833694a2fab1e74a045393 commit: de685543b4a4739589ffe03e257c5d9ecdca14fd Author: Sam James gentoo org> AuthorDate: Sat Jul 31 03:22:54 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jul 31 22:13:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de685543 sys-fs/udisks: [QA] call tmpfiles_process in pkg_postinst This is needed to actually apply the tmpfiles configuration we've installed in the ebuild. See tmpfiles.eclass documentation. Revbump because the new tmpfiles inherit adds a new dependency (virtual/tmpfiles). Signed-off-by: Sam James gentoo.org> sys-fs/udisks/{udisks-2.9.1-r1.ebuild => udisks-2.9.1-r2.ebuild} | 7 +++++-- sys-fs/udisks/{udisks-2.9.2-r1.ebuild => udisks-2.9.2-r2.ebuild} | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/sys-fs/udisks/udisks-2.9.1-r1.ebuild b/sys-fs/udisks/udisks-2.9.1-r2.ebuild similarity index 94% rename from sys-fs/udisks/udisks-2.9.1-r1.ebuild rename to sys-fs/udisks/udisks-2.9.1-r2.ebuild index c6aaf008337..57047f60efe 100644 --- a/sys-fs/udisks/udisks-2.9.1-r1.ebuild +++ b/sys-fs/udisks/udisks-2.9.1-r2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit bash-completion-r1 linux-info systemd udev xdg-utils +inherit bash-completion-r1 linux-info systemd tmpfiles udev xdg-utils DESCRIPTION="Daemon providing interfaces to work with storage devices" HOMEPAGE="https://www.freedesktop.org/wiki/Software/udisks" @@ -119,7 +119,10 @@ pkg_preinst() { } pkg_postinst() { - mkdir -p "${EROOT}"/run #415987 + # TODO: obsolete with tmpfiles_process? + #mkdir -p "${EROOT}"/run #415987 + + tmpfiles_process udisks2.conf # See pkg_postinst() of >=sys-apps/baselayout-2.1-r1. Keep in sync? if ! grep -qs "^tmpfs.*/run " "${EROOT}"/proc/mounts ; then diff --git a/sys-fs/udisks/udisks-2.9.2-r1.ebuild b/sys-fs/udisks/udisks-2.9.2-r2.ebuild similarity index 95% rename from sys-fs/udisks/udisks-2.9.2-r1.ebuild rename to sys-fs/udisks/udisks-2.9.2-r2.ebuild index 47fbecee3c8..480609ab96f 100644 --- a/sys-fs/udisks/udisks-2.9.2-r1.ebuild +++ b/sys-fs/udisks/udisks-2.9.2-r2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit bash-completion-r1 linux-info systemd udev xdg-utils +inherit bash-completion-r1 linux-info systemd tmpfiles udev xdg-utils DESCRIPTION="Daemon providing interfaces to work with storage devices" HOMEPAGE="https://www.freedesktop.org/wiki/Software/udisks" @@ -122,7 +122,10 @@ pkg_preinst() { } pkg_postinst() { - mkdir -p "${EROOT}"/run #415987 + # TODO: obsolete with tmpfiles_process? + # mkdir -p "${EROOT}"/run #415987 + + tmpfiles_process udisks2.conf # See pkg_postinst() of >=sys-apps/baselayout-2.1-r1. Keep in sync? if ! grep -qs "^tmpfs.*/run " "${EROOT}"/proc/mounts ; then