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 6723B13933E for ; Sat, 31 Jul 2021 22:17:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E51A6E0921; Sat, 31 Jul 2021 22:17:27 +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 BA324E0921 for ; Sat, 31 Jul 2021 22:17:27 +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 82B13343949 for ; Sat, 31 Jul 2021 22:17:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C04084D 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: <1627769618.2a330638070882a0a9635498c8e6d99aeeca65a8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/puppet/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/puppet/puppet-5.5.22-r1.ebuild app-admin/puppet/puppet-5.5.22.ebuild app-admin/puppet/puppet-7.8.0-r1.ebuild app-admin/puppet/puppet-7.8.0.ebuild app-admin/puppet/puppet-7.9.0-r1.ebuild app-admin/puppet/puppet-7.9.0.ebuild X-VCS-Directories: app-admin/puppet/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2a330638070882a0a9635498c8e6d99aeeca65a8 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: 5fc64548-c405-4d77-801b-42198102f521 X-Archives-Hash: 2a84f699fbe760e39485ae2525f0c8b5 commit: 2a330638070882a0a9635498c8e6d99aeeca65a8 Author: Sam James gentoo org> AuthorDate: Sat Jul 31 03:09:33 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jul 31 22:13:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a330638 app-admin/puppet: [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> app-admin/puppet/{puppet-5.5.22.ebuild => puppet-5.5.22-r1.ebuild} | 7 ++++--- app-admin/puppet/{puppet-7.8.0.ebuild => puppet-7.8.0-r1.ebuild} | 7 ++++--- app-admin/puppet/{puppet-7.9.0.ebuild => puppet-7.9.0-r1.ebuild} | 7 ++++--- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/app-admin/puppet/puppet-5.5.22.ebuild b/app-admin/puppet/puppet-5.5.22-r1.ebuild similarity index 97% rename from app-admin/puppet/puppet-5.5.22.ebuild rename to app-admin/puppet/puppet-5.5.22-r1.ebuild index d0814cc9e78..a33a8285cc8 100644 --- a/app-admin/puppet/puppet-5.5.22.ebuild +++ b/app-admin/puppet/puppet-5.5.22-r1.ebuild @@ -11,7 +11,7 @@ RUBY_FAKEGEM_TASK_DOC="doc:all" RUBY_FAKEGEM_EXTRAINSTALL="locales" -inherit ruby-fakegem +inherit ruby-fakegem tmpfiles DESCRIPTION="A system automation and configuration management software." HOMEPAGE="https://puppet.com/" @@ -88,8 +88,7 @@ all_ruby_install() { doins "${WORKDIR}/all/${P}/ext/systemd/puppet.service" # tmpfiles stuff - insinto /usr/lib/tmpfiles.d - newins "${FILESDIR}/tmpfiles.d" "puppet.conf" + newtmpfiles "${FILESDIR}/tmpfiles.d" "puppet.conf" # openrc init stuff newinitd "${FILESDIR}"/puppet.init-4.x puppet @@ -121,6 +120,8 @@ all_ruby_install() { } pkg_postinst() { + tmpfiles_process puppet.conf + elog elog "Please, *don't* include the --ask option in EMERGE_EXTRA_OPTS as this could" elog "cause puppet to hang while installing packages." diff --git a/app-admin/puppet/puppet-7.8.0.ebuild b/app-admin/puppet/puppet-7.8.0-r1.ebuild similarity index 96% rename from app-admin/puppet/puppet-7.8.0.ebuild rename to app-admin/puppet/puppet-7.8.0-r1.ebuild index d3f1ad182f3..9c67dbe4f52 100644 --- a/app-admin/puppet/puppet-7.8.0.ebuild +++ b/app-admin/puppet/puppet-7.8.0-r1.ebuild @@ -8,7 +8,7 @@ RUBY_FAKEGEM_RECIPE_TEST="rspec3" RUBY_FAKEGEM_TASK_DOC="doc:all" RUBY_FAKEGEM_EXTRAINSTALL="locales" -inherit ruby-fakegem +inherit ruby-fakegem tmpfiles DESCRIPTION="A system automation and configuration management software." HOMEPAGE="https://puppet.com/" @@ -85,8 +85,7 @@ all_ruby_install() { doins "${WORKDIR}/all/${P}/ext/systemd/puppet.service" # tmpfiles stuff - insinto /usr/lib/tmpfiles.d - newins "${FILESDIR}/tmpfiles.d" "puppet.conf" + newtmpfiles "${FILESDIR}/tmpfiles.d" "puppet.conf" # openrc init stuff newinitd "${FILESDIR}"/puppet.init-4.x puppet @@ -118,6 +117,8 @@ all_ruby_install() { } pkg_postinst() { + tmpfiles_process puppet.conf + elog elog "Please, *don't* include the --ask option in EMERGE_EXTRA_OPTS as this could" elog "cause puppet to hang while installing packages." diff --git a/app-admin/puppet/puppet-7.9.0.ebuild b/app-admin/puppet/puppet-7.9.0-r1.ebuild similarity index 96% rename from app-admin/puppet/puppet-7.9.0.ebuild rename to app-admin/puppet/puppet-7.9.0-r1.ebuild index 125aa53e82c..b097feb026a 100644 --- a/app-admin/puppet/puppet-7.9.0.ebuild +++ b/app-admin/puppet/puppet-7.9.0-r1.ebuild @@ -8,7 +8,7 @@ RUBY_FAKEGEM_RECIPE_TEST="rspec3" RUBY_FAKEGEM_TASK_DOC="doc:all" RUBY_FAKEGEM_EXTRAINSTALL="locales" -inherit ruby-fakegem +inherit ruby-fakegem tmpfiles DESCRIPTION="A system automation and configuration management software." HOMEPAGE="https://puppet.com/" @@ -85,8 +85,7 @@ all_ruby_install() { doins "${WORKDIR}/all/${P}/ext/systemd/puppet.service" # tmpfiles stuff - insinto /usr/lib/tmpfiles.d - newins "${FILESDIR}/tmpfiles.d" "puppet.conf" + newtmpfiles "${FILESDIR}/tmpfiles.d" "puppet.conf" # openrc init stuff newinitd "${FILESDIR}"/puppet.init-4.x puppet @@ -118,6 +117,8 @@ all_ruby_install() { } pkg_postinst() { + tmpfiles_process puppet.conf + elog elog "Please, *don't* include the --ask option in EMERGE_EXTRA_OPTS as this could" elog "cause puppet to hang while installing packages."