Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/unscd/
Date: Fri, 30 Jul 2021 23:31:17
Message-Id: 1627687814.15b7614fcd08b8f01a343fb10c9d95aea16c4d48.sam@gentoo
1 commit: 15b7614fcd08b8f01a343fb10c9d95aea16c4d48
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 30 22:58:26 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 30 23:30:14 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15b7614f
7
8 sys-apps/unscd: [QA] call tmpfiles_process in pkg_postinst
9
10 This is needed to actually apply the tmpfiles configuration
11 we've installed in the ebuild. See tmpfiles.eclass documentation.
12
13 Package-Manager: Portage-3.0.20, Repoman-3.0.3
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 sys-apps/unscd/unscd-0.54-r1.ebuild | 4 ++++
17 1 file changed, 4 insertions(+)
18
19 diff --git a/sys-apps/unscd/unscd-0.54-r1.ebuild b/sys-apps/unscd/unscd-0.54-r1.ebuild
20 index f8010311180..0e9ee2aa391 100644
21 --- a/sys-apps/unscd/unscd-0.54-r1.ebuild
22 +++ b/sys-apps/unscd/unscd-0.54-r1.ebuild
23 @@ -34,3 +34,7 @@ src_install() {
24 systemd_dounit "${FILESDIR}"/unscd.service
25 dosbin unscd
26 }
27 +
28 +pkg_postinst() {
29 + tmpfiles_process unscd.conf
30 +}