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 C34971396D9 for ; Sat, 18 Nov 2017 01:26:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EE366E0C11; Sat, 18 Nov 2017 01:26:29 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 CEF3EE0C11 for ; Sat, 18 Nov 2017 01:26:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 DEC3433DDA5 for ; Sat, 18 Nov 2017 01:26:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 79FCE9E73 for ; Sat, 18 Nov 2017 01:26:27 +0000 (UTC) From: "Jonas Stein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jonas Stein" Message-ID: <1510968372.8c1e42deb79f1ccbb0ffaa1526731039af792cf1.jstein@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/scite/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/scite/scite-3.5.5.ebuild X-VCS-Directories: app-editors/scite/ X-VCS-Committer: jstein X-VCS-Committer-Name: Jonas Stein X-VCS-Revision: 8c1e42deb79f1ccbb0ffaa1526731039af792cf1 X-VCS-Branch: master Date: Sat, 18 Nov 2017 01:26:27 +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: da1fec38-4bae-4336-b483-9ab7ef67c806 X-Archives-Hash: d72207abca2e2e774fbbabef932b76b1 commit: 8c1e42deb79f1ccbb0ffaa1526731039af792cf1 Author: Ervin Peters ervnet de> AuthorDate: Sat Nov 18 01:23:42 2017 +0000 Commit: Jonas Stein gentoo org> CommitDate: Sat Nov 18 01:26:12 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c1e42de app-editors/scite: Add inherit xdg-utils Closes: https://bugs.gentoo.org/628716 Package-Manager: Portage-2.3.14, Repoman-2.3.5 app-editors/scite/scite-3.5.5.ebuild | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app-editors/scite/scite-3.5.5.ebuild b/app-editors/scite/scite-3.5.5.ebuild index e6365031367..e780172d8de 100644 --- a/app-editors/scite/scite-3.5.5.ebuild +++ b/app-editors/scite/scite-3.5.5.ebuild @@ -3,7 +3,7 @@ EAPI="5" -inherit toolchain-funcs eutils +inherit toolchain-funcs eutils xdg-utils MY_PV=${PV//./} DESCRIPTION="A very powerful editor for programmers" @@ -82,3 +82,11 @@ src_install() { doman ../doc/scite.1 dodoc ../README } + +pkg_postinst() { + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_desktop_database_update +}