Gentoo Archives: gentoo-commits

From: Jimi Huotari <chiitoo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qt:master commit in: x11-misc/pcmanfm-qt/
Date: Tue, 25 Sep 2018 21:14:48
Message-Id: 1537910030.16e31fc56c83f2f3f2156101956f8f98af146868.chiitoo@gentoo
1 commit: 16e31fc56c83f2f3f2156101956f8f98af146868
2 Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 25 21:13:50 2018 +0000
4 Commit: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 25 21:13:50 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=16e31fc5
7
8 x11-misc/pcmanfm-qt: sync with the main Gentoo repo tree
9
10 Call 'xdg_desktop_database_update' during 'pkg_postinst'
11 and 'pkg_postrm'.
12
13 Package-Manager: Portage-2.3.50, Repoman-2.3.11
14
15 x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild | 10 +++++++++-
16 1 file changed, 9 insertions(+), 1 deletion(-)
17
18 diff --git a/x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild b/x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild
19 index e3344d87..3a307e99 100644
20 --- a/x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild
21 +++ b/x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild
22 @@ -3,7 +3,7 @@
23
24 EAPI=6
25
26 -inherit cmake-utils eapi7-ver
27 +inherit cmake-utils eapi7-ver xdg-utils
28
29 if [[ "${PV}" == "9999" ]]; then
30 inherit git-r3
31 @@ -45,3 +45,11 @@ src_configure() {
32 )
33 cmake-utils_src_configure
34 }
35 +
36 +pkg_postinst() {
37 + xdg_desktop_database_update
38 +}
39 +
40 +pkg_postrm() {
41 + xdg_desktop_database_update
42 +}