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 EC7A31382C5 for ; Wed, 9 Dec 2020 15:35:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 396D2E0A9A; Wed, 9 Dec 2020 15:35:13 +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 11F56E0A9A for ; Wed, 9 Dec 2020 15:35:13 +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 A21A1340B57 for ; Wed, 9 Dec 2020 15:35:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28430478 for ; Wed, 9 Dec 2020 15:35:10 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1607528019.f28d868a79da3c645512852ca5c31b0aa5ad4e5c.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/hicolor-icon-theme/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.17.ebuild X-VCS-Directories: x11-themes/hicolor-icon-theme/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: f28d868a79da3c645512852ca5c31b0aa5ad4e5c X-VCS-Branch: master Date: Wed, 9 Dec 2020 15:35:10 +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: ab443820-1ca0-45d5-95b8-bb98182d49a9 X-Archives-Hash: 22cd7346588672830945be39eb69e3a3 commit: f28d868a79da3c645512852ca5c31b0aa5ad4e5c Author: David Michael gmail com> AuthorDate: Tue Dec 8 23:12:52 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Wed Dec 9 15:33:39 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f28d868a x11-themes/hicolor-icon-theme: EAPI 7 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: David Michael gmail.com> Signed-off-by: Mike Gilbert gentoo.org> .../hicolor-icon-theme/hicolor-icon-theme-0.17.ebuild | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.17.ebuild b/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.17.ebuild index d05f0515940..544b2ef3106 100644 --- a/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.17.ebuild +++ b/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.17.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit gnome2-utils +EAPI=7 +inherit xdg-utils DESCRIPTION="Fallback theme for the freedesktop icon theme specification" HOMEPAGE="https://freedesktop.org/wiki/Software/icon-theme" @@ -11,13 +11,10 @@ SRC_URI="https://icon-theme.freedesktop.org/releases/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="" -RDEPEND="" -DEPEND="app-arch/xz-utils" +BDEPEND="app-arch/xz-utils" RESTRICT="binchecks strip" -pkg_preinst() { gnome2_icon_savelist; } -pkg_postinst() { gnome2_icon_cache_update; } -pkg_postrm() { gnome2_icon_cache_update; } +pkg_postinst() { xdg_icon_cache_update; } +pkg_postrm() { xdg_icon_cache_update; }