From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1324651-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 D0AC0158016
	for <garchives@archives.gentoo.org>; Sun, 26 Sep 2021 19:36:30 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 16191E09C3;
	Sun, 26 Sep 2021 19:36:30 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id ED5BEE0917
	for <gentoo-commits@lists.gentoo.org>; Sun, 26 Sep 2021 19:36: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-CHACHA20-POLY1305 (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id ED78E342D8E
	for <gentoo-commits@lists.gentoo.org>; Sun, 26 Sep 2021 19:36:28 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F1D110D
	for <gentoo-commits@lists.gentoo.org>; Sun, 26 Sep 2021 19:36:27 +0000 (UTC)
From: "Conrad Kostecki" <conikost@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, "Conrad Kostecki" <conikost@gentoo.org>
Message-ID: <1632684967.8c9a45d4532b73f1694a91b55cb6f05e33ccdf30.conikost@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/munge/
X-VCS-Repository: repo/gentoo
X-VCS-Files: sys-auth/munge/munge-0.5.13-r2.ebuild
X-VCS-Directories: sys-auth/munge/
X-VCS-Committer: conikost
X-VCS-Committer-Name: Conrad Kostecki
X-VCS-Revision: 8c9a45d4532b73f1694a91b55cb6f05e33ccdf30
X-VCS-Branch: master
Date: Sun, 26 Sep 2021 19:36:27 +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: 2e73389c-6505-4e40-928b-e23ff0f4d11e
X-Archives-Hash: db35e167902f80bbcbf6e54509ead2f9

commit:     8c9a45d4532b73f1694a91b55cb6f05e33ccdf30
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 26 19:20:02 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Sep 26 19:36:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c9a45d4

sys-auth/munge: fix tmpfiles

Closes: https://bugs.gentoo.org/810835
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 sys-auth/munge/munge-0.5.13-r2.ebuild | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/sys-auth/munge/munge-0.5.13-r2.ebuild b/sys-auth/munge/munge-0.5.13-r2.ebuild
index b10bf0e8169..6eb0ac441fe 100644
--- a/sys-auth/munge/munge-0.5.13-r2.ebuild
+++ b/sys-auth/munge/munge-0.5.13-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit autotools prefix
+inherit autotools prefix tmpfiles
 
 DESCRIPTION="An authentication service for creating and validating credentials"
 HOMEPAGE="https://github.com/dun/munge"
@@ -71,3 +71,7 @@ src_install() {
 		find "${D}" -name '*.la' -delete || die
 	fi
 }
+
+pkg_postinst() {
+	tmpfiles_process munge.conf
+}