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 0420E13835B for ; Sun, 22 Nov 2020 19:32:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52D43E0802; Sun, 22 Nov 2020 19:32:08 +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 3853CE0802 for ; Sun, 22 Nov 2020 19:32:08 +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 C5FA8340CAA for ; Sun, 22 Nov 2020 19:32:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 780EB42C for ; Sun, 22 Nov 2020 19:32:05 +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: <1606073510.2fd03636fc46e1a070b0f2521ba79490524d73c8.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/utfcpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/utfcpp/utfcpp-3.1.ebuild dev-libs/utfcpp/utfcpp-9999.ebuild X-VCS-Directories: dev-libs/utfcpp/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 2fd03636fc46e1a070b0f2521ba79490524d73c8 X-VCS-Branch: master Date: Sun, 22 Nov 2020 19:32:05 +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: 8143c1e6-eecf-43fc-8350-c9915adcb207 X-Archives-Hash: 127d71c3d993841f3d60644b91f50f63 commit: 2fd03636fc46e1a070b0f2521ba79490524d73c8 Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Thu Nov 19 00:00:00 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sun Nov 22 19:31:50 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fd03636 dev-libs/utfcpp: Use cmake.eclass. Signed-off-by: Arfrever Frehtes Taifersar Arahesis Apache.Org> Signed-off-by: Mike Gilbert gentoo.org> dev-libs/utfcpp/utfcpp-3.1.ebuild | 6 +++--- dev-libs/utfcpp/utfcpp-9999.ebuild | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dev-libs/utfcpp/utfcpp-3.1.ebuild b/dev-libs/utfcpp/utfcpp-3.1.ebuild index 5afa6b05063..65c032f5f0a 100644 --- a/dev-libs/utfcpp/utfcpp-3.1.ebuild +++ b/dev-libs/utfcpp/utfcpp-3.1.ebuild @@ -3,7 +3,7 @@ EAPI="7" -inherit cmake-utils +inherit cmake if [[ "${PV}" == "9999" ]]; then inherit git-r3 @@ -34,7 +34,7 @@ src_prepare() { sed -e "/add_subdirectory(extern\/gtest)/d" -i CMakeLists.txt || die sed -e "s/gtest_main/gtest &/" -i tests/CMakeLists.txt || die - cmake-utils_src_prepare + cmake_src_prepare } src_configure() { @@ -43,5 +43,5 @@ src_configure() { -DUTF8_TESTS=$(usex test ON OFF) ) - cmake-utils_src_configure + cmake_src_configure } diff --git a/dev-libs/utfcpp/utfcpp-9999.ebuild b/dev-libs/utfcpp/utfcpp-9999.ebuild index 2b6fa17b596..ca5002a6125 100644 --- a/dev-libs/utfcpp/utfcpp-9999.ebuild +++ b/dev-libs/utfcpp/utfcpp-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 2015-2019 Gentoo Authors +# Copyright 2015-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" -inherit cmake-utils +inherit cmake if [[ "${PV}" == "9999" ]]; then inherit git-r3 @@ -34,7 +34,7 @@ src_prepare() { sed -e "/add_subdirectory(extern\/gtest)/d" -i CMakeLists.txt || die sed -e "s/gtest_main/gtest &/" -i tests/CMakeLists.txt || die - cmake-utils_src_prepare + cmake_src_prepare } src_configure() { @@ -43,5 +43,5 @@ src_configure() { -DUTF8_TESTS=$(usex test ON OFF) ) - cmake-utils_src_configure + cmake_src_configure }