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 B6C27138359 for ; Sat, 4 Jul 2020 13:53:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA8D6E09DB; Sat, 4 Jul 2020 13:53:16 +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 A8424E09DB for ; Sat, 4 Jul 2020 13:53:16 +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 A95D134F1DC for ; Sat, 4 Jul 2020 13:53:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C06C2E7 for ; Sat, 4 Jul 2020 13:53: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: <1593870752.eb41ca6ddfc758248bd2922b34e75210df31b96a.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/fcitx/fcitx-4.2.9.6.ebuild app-i18n/fcitx/fcitx-4.9999.ebuild X-VCS-Directories: app-i18n/fcitx/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: eb41ca6ddfc758248bd2922b34e75210df31b96a X-VCS-Branch: master Date: Sat, 4 Jul 2020 13:53: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: 0458d423-0e81-4afb-b9b1-28b7a83b6029 X-Archives-Hash: 63219b00707c2d470e66f769df3467ba commit: eb41ca6ddfc758248bd2922b34e75210df31b96a Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Fri Jul 3 09:31:49 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Jul 4 13:52:32 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb41ca6d app-i18n/fcitx: Use cmake.eclass. Signed-off-by: Arfrever Frehtes Taifersar Arahesis Apache.Org> Signed-off-by: Mike Gilbert gentoo.org> app-i18n/fcitx/fcitx-4.2.9.6.ebuild | 8 ++++---- app-i18n/fcitx/fcitx-4.9999.ebuild | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app-i18n/fcitx/fcitx-4.2.9.6.ebuild b/app-i18n/fcitx/fcitx-4.2.9.6.ebuild index 02f9ec2f4cd..abf4e1cbdb6 100644 --- a/app-i18n/fcitx/fcitx-4.2.9.6.ebuild +++ b/app-i18n/fcitx/fcitx-4.2.9.6.ebuild @@ -3,7 +3,7 @@ EAPI="7" -inherit cmake-utils gnome2-utils xdg-utils +inherit cmake gnome2-utils xdg-utils if [[ "${PV}" =~ (^|\.)9999$ ]]; then inherit git-r3 @@ -88,7 +88,7 @@ src_prepare() { -e "/^find_package(XKeyboardConfig REQUIRED)/,+1d" \ -i CMakeLists.txt - cmake-utils_src_prepare + cmake_src_prepare } src_configure() { @@ -117,11 +117,11 @@ src_configure() { -DENABLE_XDGAUTOSTART=$(usex autostart ON OFF) ) - cmake-utils_src_configure + cmake_src_configure } src_install() { - cmake-utils_src_install + cmake_src_install rm -r "${ED}/usr/share/doc/${PN}" } diff --git a/app-i18n/fcitx/fcitx-4.9999.ebuild b/app-i18n/fcitx/fcitx-4.9999.ebuild index 8588631be12..53d5b963fa2 100644 --- a/app-i18n/fcitx/fcitx-4.9999.ebuild +++ b/app-i18n/fcitx/fcitx-4.9999.ebuild @@ -3,7 +3,7 @@ EAPI="7" -inherit cmake-utils gnome2-utils xdg-utils +inherit cmake gnome2-utils xdg-utils if [[ "${PV}" =~ (^|\.)9999$ ]]; then inherit git-r3 @@ -88,7 +88,7 @@ src_prepare() { -e "/^find_package(XKeyboardConfig REQUIRED)/,+1d" \ -i CMakeLists.txt - cmake-utils_src_prepare + cmake_src_prepare } src_configure() { @@ -117,11 +117,11 @@ src_configure() { -DENABLE_XDGAUTOSTART=$(usex autostart ON OFF) ) - cmake-utils_src_configure + cmake_src_configure } src_install() { - cmake-utils_src_install + cmake_src_install rm -r "${ED}/usr/share/doc/${PN}" }