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-misc/exabgp/
Date: Fri, 30 Jul 2021 23:31:20
Message-Id: 1627687809.63b1973563aeecee27ec9a4359b6b33dfcbe6cd6.sam@gentoo
1 commit: 63b1973563aeecee27ec9a4359b6b33dfcbe6cd6
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 30 22:57:22 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 30 23:30:09 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63b19735
7
8 net-misc/exabgp: [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-misc/exabgp/exabgp-4.2.11-r1.ebuild | 6 +++++-
17 net-misc/exabgp/exabgp-4.2.11-r2.ebuild | 4 ++++
18 2 files changed, 9 insertions(+), 1 deletion(-)
19
20 diff --git a/net-misc/exabgp/exabgp-4.2.11-r1.ebuild b/net-misc/exabgp/exabgp-4.2.11-r1.ebuild
21 index a61e484d126..1ec8278c564 100644
22 --- a/net-misc/exabgp/exabgp-4.2.11-r1.ebuild
23 +++ b/net-misc/exabgp/exabgp-4.2.11-r1.ebuild
24 @@ -1,4 +1,4 @@
25 -# Copyright 1999-2020 Gentoo Authors
26 +# Copyright 1999-2021 Gentoo Authors
27 # Distributed under the terms of the GNU General Public License v2
28
29 EAPI=7
30 @@ -54,3 +54,7 @@ python_install_all() {
31
32 doman doc/man/*.?
33 }
34 +
35 +pkg_postinst() {
36 + tmpfiles_process ${PN}.conf
37 +}
38
39 diff --git a/net-misc/exabgp/exabgp-4.2.11-r2.ebuild b/net-misc/exabgp/exabgp-4.2.11-r2.ebuild
40 index 3e7774c0353..be3a94116ae 100644
41 --- a/net-misc/exabgp/exabgp-4.2.11-r2.ebuild
42 +++ b/net-misc/exabgp/exabgp-4.2.11-r2.ebuild
43 @@ -57,3 +57,7 @@ python_install_all() {
44
45 doman doc/man/*.?
46 }
47 +
48 +pkg_postinst() {
49 + tmpfiles_process ${PN}.conf
50 +}