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 1C0271396D0 for ; Sun, 1 Oct 2017 18:09:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 404B72BC00B; Sun, 1 Oct 2017 18:09:41 +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 1ABD72BC00B for ; Sun, 1 Oct 2017 18:09:40 +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 CFD413417E5 for ; Sun, 1 Oct 2017 18:09:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F2CE73E3 for ; Sun, 1 Oct 2017 18:09:38 +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: <1506881100.c6c821d0284913abd562055d59683fb33d0a13f1.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde4-base.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c6c821d0284913abd562055d59683fb33d0a13f1 X-VCS-Branch: master Date: Sun, 1 Oct 2017 18:09:38 +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: ff2e66a0-a507-471d-96e1-de0ade04fd90 X-Archives-Hash: e52dcc764b3eef771648bf172eec488e commit: c6c821d0284913abd562055d59683fb33d0a13f1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Oct 1 18:05:00 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 1 18:05:00 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=c6c821d0 kde4-base.eclass: Switch from fdo-mime to xdg-utils eclass/kde4-base.eclass | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass index 0348a5f80f..bac6a24fc1 100644 --- a/eclass/kde4-base.eclass +++ b/eclass/kde4-base.eclass @@ -33,7 +33,7 @@ _KDE4_BASE_ECLASS=1 # for tests you should proceed with setting VIRTUALX_REQUIRED=test. : ${VIRTUALX_REQUIRED:=manual} -inherit kde4-functions toolchain-funcs fdo-mime flag-o-matic gnome2-utils virtualx versionator eutils multilib +inherit kde4-functions toolchain-funcs flag-o-matic gnome2-utils virtualx versionator eutils multilib xdg-utils if [[ ${KDE_BUILD_TYPE} = live ]]; then case ${KDE_SCM} in @@ -982,8 +982,8 @@ kde4-base_pkg_postinst() { if [[ -n ${GNOME2_ECLASS_ICONS} ]]; then gnome2_icon_cache_update fi - fdo-mime_desktop_database_update - fdo-mime_mime_database_update + xdg_desktop_database_update + xdg_mimeinfo_database_update buildsycoca if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]]; then @@ -1016,8 +1016,8 @@ kde4-base_pkg_postrm() { if [[ -n ${GNOME2_ECLASS_ICONS} ]]; then gnome2_icon_cache_update fi - fdo-mime_desktop_database_update - fdo-mime_mime_database_update + xdg_desktop_database_update + xdg_mimeinfo_database_update buildsycoca }