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 26A16138350 for ; Thu, 6 Feb 2020 04:17:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62367E089A; Thu, 6 Feb 2020 04:17:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 48D60E089A for ; Thu, 6 Feb 2020 04:17:42 +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 407F334E7C1 for ; Thu, 6 Feb 2020 04:17:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B39B92B for ; Thu, 6 Feb 2020 04:17:39 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1580962612.94cc96837c5eaf0e73cbed728a8988af2200b8bc.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/feh/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/feh/feh-3.3.ebuild X-VCS-Directories: media-gfx/feh/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 94cc96837c5eaf0e73cbed728a8988af2200b8bc X-VCS-Branch: master Date: Thu, 6 Feb 2020 04:17:39 +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: 199c1a8c-769c-46cc-b9d5-1f5407948007 X-Archives-Hash: 1ca6ae353074563f4da05bf6be557b9a commit: 94cc96837c5eaf0e73cbed728a8988af2200b8bc Author: Tim Harder gentoo org> AuthorDate: Thu Feb 6 04:16:52 2020 +0000 Commit: Tim Harder gentoo org> CommitDate: Thu Feb 6 04:16:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94cc9683 media-gfx/feh: update 3.3 to EAPI 7 Signed-off-by: Tim Harder gentoo.org> media-gfx/feh/feh-3.3.ebuild | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/media-gfx/feh/feh-3.3.ebuild b/media-gfx/feh/feh-3.3.ebuild index ad37f294e68..cdfb177f990 100644 --- a/media-gfx/feh/feh-3.3.ebuild +++ b/media-gfx/feh/feh-3.3.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit toolchain-funcs gnome2-utils xdg-utils +EAPI=7 +inherit toolchain-funcs xdg-utils DESCRIPTION="A fast, lightweight imageviewer using imlib2" HOMEPAGE="https://feh.finalrewind.org/" @@ -57,18 +57,14 @@ src_install() { emake "${fehopts[@]}" install } -pkg_preinst() { - gnome2_icon_savelist -} - pkg_postinst() { - gnome2_icon_cache_update + xdg_icon_cache_update xdg_mimeinfo_database_update xdg_desktop_database_update } pkg_postrm() { - gnome2_icon_cache_update + xdg_icon_cache_update xdg_mimeinfo_database_update xdg_desktop_database_update }