From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1307775-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 92A14139337 for <garchives@archives.gentoo.org>; Fri, 30 Jul 2021 23:31:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FACBE08DD; Fri, 30 Jul 2021 23:31:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 14E7EE08BF for <gentoo-commits@lists.gentoo.org>; Fri, 30 Jul 2021 23:31:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 0CCDF3432A5 for <gentoo-commits@lists.gentoo.org>; Fri, 30 Jul 2021 23:31:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6706884D for <gentoo-commits@lists.gentoo.org>; Fri, 30 Jul 2021 23:31:10 +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: <1627687805.1c77ec49e504e970eb8fd74a1d835c7ba75ac360.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/ejabberd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/ejabberd/ejabberd-20.04.ebuild net-im/ejabberd/ejabberd-21.04.ebuild X-VCS-Directories: net-im/ejabberd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1c77ec49e504e970eb8fd74a1d835c7ba75ac360 X-VCS-Branch: master Date: Fri, 30 Jul 2021 23:31:10 +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: ffc4f58b-86b7-4b6f-8893-f1be003b42f4 X-Archives-Hash: 736ca155e6f66b0a7669980b886d5512 commit: 1c77ec49e504e970eb8fd74a1d835c7ba75ac360 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Fri Jul 30 23:14:43 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Jul 30 23:30:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c77ec49 net-im/ejabberd: [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 <sam <AT> gentoo.org> net-im/ejabberd/ejabberd-20.04.ebuild | 2 ++ net-im/ejabberd/ejabberd-21.04.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/net-im/ejabberd/ejabberd-20.04.ebuild b/net-im/ejabberd/ejabberd-20.04.ebuild index e2df234b563..90c657f64b0 100644 --- a/net-im/ejabberd/ejabberd-20.04.ebuild +++ b/net-im/ejabberd/ejabberd-20.04.ebuild @@ -271,6 +271,8 @@ pkg_preinst() { } pkg_postinst() { + tmpfiles_process ${PN}.tmpfiles.conf + if [[ ! ${REPLACING_VERSIONS} ]]; then echo elog "For configuration instructions, please see" diff --git a/net-im/ejabberd/ejabberd-21.04.ebuild b/net-im/ejabberd/ejabberd-21.04.ebuild index 3cf52812905..245c006f114 100644 --- a/net-im/ejabberd/ejabberd-21.04.ebuild +++ b/net-im/ejabberd/ejabberd-21.04.ebuild @@ -252,6 +252,8 @@ pkg_preinst() { } pkg_postinst() { + tmpfiles_process ${PN}.tmpfiles.conf + if [[ ! ${REPLACING_VERSIONS} ]]; then echo elog "For configuration instructions, please see"