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 D4D2E139337 for ; Fri, 30 Jul 2021 23:31:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7A01EE08EC; Fri, 30 Jul 2021 23:31:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0C79BE08E8 for ; Fri, 30 Jul 2021 23:31:14 +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 3A840343207 for ; Fri, 30 Jul 2021 23:31:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8BD51850 for ; Fri, 30 Jul 2021 23:31:10 +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: <1627687806.bbf4c7e032ea50a9ed3257fa3743abf2679c8485.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/fetchmail/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/fetchmail/fetchmail-6.4.19.ebuild net-mail/fetchmail/fetchmail-6.4.20.ebuild net-mail/fetchmail/fetchmail-7.0.0_alpha8.ebuild X-VCS-Directories: net-mail/fetchmail/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: bbf4c7e032ea50a9ed3257fa3743abf2679c8485 X-VCS-Branch: master Date: Fri, 30 Jul 2021 23:31:10 +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: 741f1d98-d4f9-427d-9630-ba6847892ecb X-Archives-Hash: 497c19cf72ae3478b829731a69302e6a commit: bbf4c7e032ea50a9ed3257fa3743abf2679c8485 Author: Sam James gentoo org> AuthorDate: Fri Jul 30 23:14:59 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jul 30 23:30:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbf4c7e0 net-mail/fetchmail: [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. Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Sam James gentoo.org> net-mail/fetchmail/fetchmail-6.4.19.ebuild | 2 ++ net-mail/fetchmail/fetchmail-6.4.20.ebuild | 2 ++ net-mail/fetchmail/fetchmail-7.0.0_alpha8.ebuild | 2 ++ 3 files changed, 6 insertions(+) diff --git a/net-mail/fetchmail/fetchmail-6.4.19.ebuild b/net-mail/fetchmail/fetchmail-6.4.19.ebuild index dfd0275cfb0..e2ab38dd186 100644 --- a/net-mail/fetchmail/fetchmail-6.4.19.ebuild +++ b/net-mail/fetchmail/fetchmail-6.4.19.ebuild @@ -98,6 +98,8 @@ src_install() { } pkg_postinst() { + tmpfiles_process ${PN}.conf + if [[ -z ${REPLACING_VERSIONS} ]]; then elog "Please see /etc/conf.d/fetchmail if you want to adjust" elog "the polling delay used by the fetchmail init script." diff --git a/net-mail/fetchmail/fetchmail-6.4.20.ebuild b/net-mail/fetchmail/fetchmail-6.4.20.ebuild index 14870c0aa04..3da9426438a 100644 --- a/net-mail/fetchmail/fetchmail-6.4.20.ebuild +++ b/net-mail/fetchmail/fetchmail-6.4.20.ebuild @@ -98,6 +98,8 @@ src_install() { } pkg_postinst() { + tmpfiles_process ${PN}.conf + if [[ -z ${REPLACING_VERSIONS} ]]; then elog "Please see /etc/conf.d/fetchmail if you want to adjust" elog "the polling delay used by the fetchmail init script." diff --git a/net-mail/fetchmail/fetchmail-7.0.0_alpha8.ebuild b/net-mail/fetchmail/fetchmail-7.0.0_alpha8.ebuild index 2a9b14181a0..80f96706c30 100644 --- a/net-mail/fetchmail/fetchmail-7.0.0_alpha8.ebuild +++ b/net-mail/fetchmail/fetchmail-7.0.0_alpha8.ebuild @@ -101,6 +101,8 @@ src_install() { } pkg_postinst() { + tmpfiles_process ${PN}.conf + if [[ -z ${REPLACING_VERSIONS} ]]; then elog "Please see /etc/conf.d/fetchmail if you want to adjust" elog "the polling delay used by the fetchmail init script."