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 692D2138334 for ; Wed, 13 Feb 2019 18:26:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9251CE0955; Wed, 13 Feb 2019 18:26: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 67D6BE0954 for ; Wed, 13 Feb 2019 18:26:42 +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 0FC03335DA0 for ; Wed, 13 Feb 2019 18:26:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B62053E for ; Wed, 13 Feb 2019 18:26:39 +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: <1550082365.e3ccedd5f7da8862eeb612a7777f731b48f10715.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde5.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e3ccedd5f7da8862eeb612a7777f731b48f10715 X-VCS-Branch: master Date: Wed, 13 Feb 2019 18:26: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: 916fc481-0d60-4c73-9b6b-44a6ad708e7f X-Archives-Hash: 3c2dac8fffe90d681b971f4abe49bff0 commit: e3ccedd5f7da8862eeb612a7777f731b48f10715 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Feb 11 22:09:22 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Feb 13 18:26:05 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=e3ccedd5 kde5.eclass: Drop gnome2_icon_cache_update (now duplicate in EAPI-6) Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/kde5.eclass | 7 ------- 1 file changed, 7 deletions(-) diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index b25679a76c..1167e2c532 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -723,7 +723,6 @@ kde5_src_install() { kde5_pkg_preinst() { debug-print-function ${FUNCNAME} "$@" - [[ ${EAPI} == 6 ]] && gnome2_icon_savelist xdg_pkg_preinst } @@ -733,9 +732,6 @@ kde5_pkg_preinst() { kde5_pkg_postinst() { debug-print-function ${FUNCNAME} "$@" - if [[ ${EAPI} == 6 && -n ${GNOME2_ECLASS_ICONS} ]]; then - gnome2_icon_cache_update - fi xdg_pkg_postinst if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then @@ -754,9 +750,6 @@ kde5_pkg_postinst() { kde5_pkg_postrm() { debug-print-function ${FUNCNAME} "$@" - if [[ ${EAPI} == 6 && -n ${GNOME2_ECLASS_ICONS} ]]; then - gnome2_icon_cache_update - fi xdg_pkg_postrm }