From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1308135-garchives=archives.gentoo.org@lists.gentoo.org> 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 38C1213934F for <garchives@archives.gentoo.org>; 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 6225FE0974; 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 44739E0974 for <gentoo-commits@lists.gentoo.org>; 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 5E3AE3438E2 for <gentoo-commits@lists.gentoo.org>; Sat, 31 Jul 2021 22:17:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1983859 for <gentoo-commits@lists.gentoo.org>; Sat, 31 Jul 2021 22:17:25 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1627769622.32ecc44a3eafa00f99c83cabb547f1a45b30cc36.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptsetup/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/cryptsetup/cryptsetup-2.3.4-r1.ebuild sys-fs/cryptsetup/cryptsetup-2.3.4-r2.ebuild sys-fs/cryptsetup/cryptsetup-2.3.6-r1.ebuild sys-fs/cryptsetup/cryptsetup-2.3.6.ebuild sys-fs/cryptsetup/cryptsetup-2.4.0_rc1-r1.ebuild sys-fs/cryptsetup/cryptsetup-2.4.0_rc1.ebuild X-VCS-Directories: sys-fs/cryptsetup/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 32ecc44a3eafa00f99c83cabb547f1a45b30cc36 X-VCS-Branch: master Date: Sat, 31 Jul 2021 22:17:25 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: de91020a-b8d5-45d2-b8ee-205305bf925e X-Archives-Hash: c944cb020821662d816f9093bbf6813a commit: 32ecc44a3eafa00f99c83cabb547f1a45b30cc36 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Jul 31 03:19:45 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Jul 31 22:13:42 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32ecc44a sys-fs/cryptsetup: [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 <sam <AT> gentoo.org> .../{cryptsetup-2.3.4-r1.ebuild => cryptsetup-2.3.4-r2.ebuild} | 6 +++++- .../{cryptsetup-2.3.6.ebuild => cryptsetup-2.3.6-r1.ebuild} | 6 +++++- .../{cryptsetup-2.4.0_rc1.ebuild => cryptsetup-2.4.0_rc1-r1.ebuild} | 6 +++++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/sys-fs/cryptsetup/cryptsetup-2.3.4-r1.ebuild b/sys-fs/cryptsetup/cryptsetup-2.3.4-r2.ebuild similarity index 97% rename from sys-fs/cryptsetup/cryptsetup-2.3.4-r1.ebuild rename to sys-fs/cryptsetup/cryptsetup-2.3.4-r2.ebuild index e96df12d24b..3c4bf01a993 100644 --- a/sys-fs/cryptsetup/cryptsetup-2.3.4-r1.ebuild +++ b/sys-fs/cryptsetup/cryptsetup-2.3.4-r2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools linux-info +inherit autotools linux-info tmpfiles DESCRIPTION="Tool to setup encrypted devices with dm-crypt" HOMEPAGE="https://gitlab.com/cryptsetup/cryptsetup/blob/master/README.md" @@ -121,3 +121,7 @@ src_install() { newconfd "${FILESDIR}"/1.6.7-dmcrypt.confd dmcrypt newinitd "${FILESDIR}"/1.6.7-dmcrypt.rc dmcrypt } + +pkg_postinst() { + tmpfiles_process cryptsetup.conf +} diff --git a/sys-fs/cryptsetup/cryptsetup-2.3.6.ebuild b/sys-fs/cryptsetup/cryptsetup-2.3.6-r1.ebuild similarity index 97% rename from sys-fs/cryptsetup/cryptsetup-2.3.6.ebuild rename to sys-fs/cryptsetup/cryptsetup-2.3.6-r1.ebuild index e96df12d24b..3c4bf01a993 100644 --- a/sys-fs/cryptsetup/cryptsetup-2.3.6.ebuild +++ b/sys-fs/cryptsetup/cryptsetup-2.3.6-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools linux-info +inherit autotools linux-info tmpfiles DESCRIPTION="Tool to setup encrypted devices with dm-crypt" HOMEPAGE="https://gitlab.com/cryptsetup/cryptsetup/blob/master/README.md" @@ -121,3 +121,7 @@ src_install() { newconfd "${FILESDIR}"/1.6.7-dmcrypt.confd dmcrypt newinitd "${FILESDIR}"/1.6.7-dmcrypt.rc dmcrypt } + +pkg_postinst() { + tmpfiles_process cryptsetup.conf +} diff --git a/sys-fs/cryptsetup/cryptsetup-2.4.0_rc1.ebuild b/sys-fs/cryptsetup/cryptsetup-2.4.0_rc1-r1.ebuild similarity index 97% rename from sys-fs/cryptsetup/cryptsetup-2.4.0_rc1.ebuild rename to sys-fs/cryptsetup/cryptsetup-2.4.0_rc1-r1.ebuild index bf7a491c4a5..3e204ddad19 100644 --- a/sys-fs/cryptsetup/cryptsetup-2.4.0_rc1.ebuild +++ b/sys-fs/cryptsetup/cryptsetup-2.4.0_rc1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools linux-info +inherit autotools linux-info tmpfiles DESCRIPTION="Tool to setup encrypted devices with dm-crypt" HOMEPAGE="https://gitlab.com/cryptsetup/cryptsetup/blob/master/README.md" @@ -127,3 +127,7 @@ src_install() { newconfd "${FILESDIR}"/1.6.7-dmcrypt.confd dmcrypt newinitd "${FILESDIR}"/1.6.7-dmcrypt.rc dmcrypt } + +pkg_postinst() { + tmpfiles_process cryptsetup.conf +}