Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/spectrum2/
Date: Fri, 30 Jul 2021 23:31:16
Message-Id: 1627687805.c6b85657d1b66832cdccf901d5ab8ecd19c02dcc.sam@gentoo
1 commit: c6b85657d1b66832cdccf901d5ab8ecd19c02dcc
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 30 22:56:45 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 30 23:30:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6b85657
7
8 net-im/spectrum2: [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 net-im/spectrum2/spectrum2-2.0.13-r2.ebuild | 6 +++++-
17 1 file changed, 5 insertions(+), 1 deletion(-)
18
19 diff --git a/net-im/spectrum2/spectrum2-2.0.13-r2.ebuild b/net-im/spectrum2/spectrum2-2.0.13-r2.ebuild
20 index ea3909e6add..e270aa2de67 100644
21 --- a/net-im/spectrum2/spectrum2-2.0.13-r2.ebuild
22 +++ b/net-im/spectrum2/spectrum2-2.0.13-r2.ebuild
23 @@ -1,4 +1,4 @@
24 -# Copyright 1999-2020 Gentoo Authors
25 +# Copyright 1999-2021 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=7
29 @@ -108,3 +108,7 @@ src_install() {
30
31 einstalldocs
32 }
33 +
34 +pkg_postinst() {
35 + tmpfiles_process spectrum2.conf
36 +}