From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4006F138334 for ; Tue, 25 Sep 2018 21:14:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD6FEE0BC6; Tue, 25 Sep 2018 21:14:46 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AFD9DE0BC6 for ; Tue, 25 Sep 2018 21:14:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 56384335C70 for ; Tue, 25 Sep 2018 21:14:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02A7E3D4 for ; Tue, 25 Sep 2018 21:14:41 +0000 (UTC) From: "Jimi Huotari" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jimi Huotari" Message-ID: <1537910030.16e31fc56c83f2f3f2156101956f8f98af146868.chiitoo@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: x11-misc/pcmanfm-qt/ X-VCS-Repository: proj/qt X-VCS-Files: x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild X-VCS-Directories: x11-misc/pcmanfm-qt/ X-VCS-Committer: chiitoo X-VCS-Committer-Name: Jimi Huotari X-VCS-Revision: 16e31fc56c83f2f3f2156101956f8f98af146868 X-VCS-Branch: master Date: Tue, 25 Sep 2018 21:14:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9a2230f2-f022-4eab-a1cd-4192651be243 X-Archives-Hash: 2bcff4e4da9fb9f6c3adcc185df4fac5 commit: 16e31fc56c83f2f3f2156101956f8f98af146868 Author: Jimi Huotari gentoo org> AuthorDate: Tue Sep 25 21:13:50 2018 +0000 Commit: Jimi Huotari gentoo org> CommitDate: Tue Sep 25 21:13:50 2018 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=16e31fc5 x11-misc/pcmanfm-qt: sync with the main Gentoo repo tree Call 'xdg_desktop_database_update' during 'pkg_postinst' and 'pkg_postrm'. Package-Manager: Portage-2.3.50, Repoman-2.3.11 x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild b/x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild index e3344d87..3a307e99 100644 --- a/x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild +++ b/x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit cmake-utils eapi7-ver +inherit cmake-utils eapi7-ver xdg-utils if [[ "${PV}" == "9999" ]]; then inherit git-r3 @@ -45,3 +45,11 @@ src_configure() { ) cmake-utils_src_configure } + +pkg_postinst() { + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_desktop_database_update +}