Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/ploop/
Date: Sun, 26 Sep 2021 19:36:30
Message-Id: 1632684966.5cacda7aa68b1042fce4e9bfb6dcae542fb83f8f.conikost@gentoo
1 commit: 5cacda7aa68b1042fce4e9bfb6dcae542fb83f8f
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 26 18:32:44 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 26 19:36:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cacda7a
7
8 sys-cluster/ploop: fix tmpfiles
9
10 Closes: https://bugs.gentoo.org/810913
11 Package-Manager: Portage-3.0.22, Repoman-3.0.3
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 sys-cluster/ploop/ploop-1.14.1.ebuild | 8 ++++++--
15 1 file changed, 6 insertions(+), 2 deletions(-)
16
17 diff --git a/sys-cluster/ploop/ploop-1.14.1.ebuild b/sys-cluster/ploop/ploop-1.14.1.ebuild
18 index adb736dd7bd..3e65c0a6151 100644
19 --- a/sys-cluster/ploop/ploop-1.14.1.ebuild
20 +++ b/sys-cluster/ploop/ploop-1.14.1.ebuild
21 @@ -1,9 +1,9 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 +# Copyright 1999-2021 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=5
27
28 -inherit eutils toolchain-funcs multilib systemd
29 +inherit eutils toolchain-funcs multilib systemd tmpfiles
30
31 DESCRIPTION="openvz tool and a library to control ploop block devices"
32 HOMEPAGE="https://wiki.openvz.org/Download/ploop"
33 @@ -58,3 +58,7 @@ src_install() {
34 default
35 ldconfig -n "${D}/usr/$(get_libdir)/" || die
36 }
37 +
38 +pkg_postinst() {
39 + tmpfiles_process ploop.conf
40 +}