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 4B01F138359 for ; Thu, 13 Aug 2020 15:47:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5DCF6E096C; Thu, 13 Aug 2020 15:47:25 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 498B0E096C for ; Thu, 13 Aug 2020 15:47:25 +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 504D834F28C for ; Thu, 13 Aug 2020 15:47:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 79A7F329 for ; Thu, 13 Aug 2020 15:47:20 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1597333524.719e990944ef137b6353c8ce2f0ffb3cb81b220f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/lximage-qt/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/lximage-qt/lximage-qt-0.15.0.ebuild X-VCS-Directories: media-gfx/lximage-qt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 719e990944ef137b6353c8ce2f0ffb3cb81b220f X-VCS-Branch: master Date: Thu, 13 Aug 2020 15:47:20 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f7b9a5f8-154d-4c85-a082-2e7a86c0bfd6 X-Archives-Hash: e601f557c0e626e7fda3cf410e096451 commit: 719e990944ef137b6353c8ce2f0ffb3cb81b220f Author: Jimi Huotari gentoo org> AuthorDate: Thu Aug 13 03:35:52 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Aug 13 15:45:24 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=719e9909 media-gfx/lximage-qt: add missing xdg_desktop_database_update Reported-by: Agostino Sarubbo gentoo.org> Closes: https://bugs.gentoo.org/735586 Package-Manager: Portage-3.0.2, Repoman-2.3.23 Signed-off-by: Jimi Huotari gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/17108 Signed-off-by: Andreas Sturmlechner gentoo.org> media-gfx/lximage-qt/lximage-qt-0.15.0.ebuild | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/media-gfx/lximage-qt/lximage-qt-0.15.0.ebuild b/media-gfx/lximage-qt/lximage-qt-0.15.0.ebuild index 27e66724b27..d798b41b727 100644 --- a/media-gfx/lximage-qt/lximage-qt-0.15.0.ebuild +++ b/media-gfx/lximage-qt/lximage-qt-0.15.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake +inherit cmake xdg-utils DESCRIPTION="Qt Image Viewer" HOMEPAGE="https://lxqt.github.io/" @@ -42,3 +42,11 @@ DEPEND=" RDEPEND="${DEPEND} !lxqt-base/lxqt-l10n " + +pkg_postinst() { + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_desktop_database_update +}