From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1231130-garchives=archives.gentoo.org@lists.gentoo.org>
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 7D5D61382C5
	for <garchives@archives.gentoo.org>; Tue, 15 Dec 2020 03:26:02 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 969F4E0909;
	Tue, 15 Dec 2020 03:26:01 +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 569ECE0909
	for <gentoo-commits@lists.gentoo.org>; Tue, 15 Dec 2020 03:26:01 +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 02E9E34126F
	for <gentoo-commits@lists.gentoo.org>; Tue, 15 Dec 2020 03:26:00 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 6730056
	for <gentoo-commits@lists.gentoo.org>; Tue, 15 Dec 2020 03:25:58 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org>
Message-ID: <1608002746.f8bffcde1e9da31f06ec54c9ce89116096fb7237.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: net-news/rssguard/
X-VCS-Repository: repo/gentoo
X-VCS-Files: net-news/rssguard/rssguard-3.8.3.ebuild
X-VCS-Directories: net-news/rssguard/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: f8bffcde1e9da31f06ec54c9ce89116096fb7237
X-VCS-Branch: master
Date: Tue, 15 Dec 2020 03:25:58 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: d2b593f4-f6bd-4fcb-93f5-5367f631e396
X-Archives-Hash: b1762af9c3c9040968ba4d92911e3f4c

commit:     f8bffcde1e9da31f06ec54c9ce89116096fb7237
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 15 03:25:46 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 15 03:25:46 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8bffcde

net-news/rssguard: xdg-utils -> xdg

xdg.eclass has some nice logic to automatically
update the various caches, so we save a few lines.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-news/rssguard/rssguard-3.8.3.ebuild | 11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)

diff --git a/net-news/rssguard/rssguard-3.8.3.ebuild b/net-news/rssguard/rssguard-3.8.3.ebuild
index ee3584a663e..974794479bf 100644
--- a/net-news/rssguard/rssguard-3.8.3.ebuild
+++ b/net-news/rssguard/rssguard-3.8.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit flag-o-matic xdg-utils qmake-utils
+inherit flag-o-matic qmake-utils xdg
 
 DESCRIPTION="Tiny RSS and Atom feed reader"
 HOMEPAGE="https://github.com/martinrotter/rssguard"
@@ -29,6 +29,7 @@ RDEPEND="${DEPEND}"
 
 src_prepare() {
 	default
+
 	ebegin 'Sedding pri/install.pri to install to $(get_libdir)'
 	if grep -q 'lib.path = $$quote($$PREFIX/lib/)' pri/install.pri; then
 		sed -i \
@@ -55,11 +56,3 @@ src_configure() {
 src_install() {
 	emake install INSTALL_ROOT="${D}"
 }
-
-pkg_postinst() {
-	xdg_icon_cache_update
-}
-
-pkg_postrm() {
-	xdg_icon_cache_update
-}