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 4F3AE138335 for ; Sat, 4 Jan 2020 17:14:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7BBC7E088C; Sat, 4 Jan 2020 17:14:23 +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 4CBFAE088C for ; Sat, 4 Jan 2020 17:14:23 +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 1CDBC34DD50 for ; Sat, 4 Jan 2020 17:14:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93B4EA8 for ; Sat, 4 Jan 2020 17:14:20 +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: <1578158046.38cc525db6db66713207f49686e10ede64776d81.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/brotli/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/brotli/brotli-1.0.7.ebuild app-arch/brotli/brotli-9999.ebuild X-VCS-Directories: app-arch/brotli/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 38cc525db6db66713207f49686e10ede64776d81 X-VCS-Branch: master Date: Sat, 4 Jan 2020 17:14:20 +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: bdb488d8-e96e-48df-b648-4c1f7a4c5132 X-Archives-Hash: 09e23ca4fc1297c8cba27f1d59246428 commit: 38cc525db6db66713207f49686e10ede64776d81 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jan 4 17:14:06 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jan 4 17:14:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38cc525d app-arch/brotli: Switch back to cmake-utils.eclass Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> app-arch/brotli/brotli-1.0.7.ebuild | 14 +++++++------- app-arch/brotli/brotli-9999.ebuild | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/app-arch/brotli/brotli-1.0.7.ebuild b/app-arch/brotli/brotli-1.0.7.ebuild index fec4aa455a7..dd0a67b6a93 100644 --- a/app-arch/brotli/brotli-1.0.7.ebuild +++ b/app-arch/brotli/brotli-1.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -6,7 +6,7 @@ EAPI=7 PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy ) DISTUTILS_OPTIONAL="1" DISTUTILS_IN_SOURCE_BUILD="1" -CMAKE_ECLASS=cmake + inherit cmake-multilib distutils-r1 DESCRIPTION="Generic-purpose lossless compression algorithm" @@ -37,14 +37,14 @@ RESTRICT="!test? ( test )" src_prepare() { use python && distutils-r1_src_prepare - cmake_src_prepare + cmake-utils_src_prepare } multilib_src_configure() { local mycmakeargs=( -DBUILD_TESTING="$(usex test)" ) - cmake_src_configure + cmake-utils_src_configure } src_configure() { cmake-multilib_src_configure @@ -52,7 +52,7 @@ src_configure() { } multilib_src_compile() { - cmake_src_compile + cmake-utils_src_compile } src_compile() { cmake-multilib_src_compile @@ -64,7 +64,7 @@ python_test(){ } multilib_src_test() { - cmake_src_test + cmake-utils_src_test } src_test() { cmake-multilib_src_test @@ -72,7 +72,7 @@ src_test() { } multilib_src_install() { - cmake_src_install + cmake-utils_src_install } multilib_src_install_all() { use python && distutils-r1_src_install diff --git a/app-arch/brotli/brotli-9999.ebuild b/app-arch/brotli/brotli-9999.ebuild index 26f80b64ecb..8cc58bf0272 100644 --- a/app-arch/brotli/brotli-9999.ebuild +++ b/app-arch/brotli/brotli-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -6,7 +6,7 @@ EAPI=7 PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy ) DISTUTILS_OPTIONAL="1" DISTUTILS_IN_SOURCE_BUILD="1" -CMAKE_ECLASS=cmake + inherit cmake-multilib distutils-r1 DESCRIPTION="Generic-purpose lossless compression algorithm" @@ -37,14 +37,14 @@ RESTRICT="!test? ( test )" src_prepare() { use python && distutils-r1_src_prepare - cmake_src_prepare + cmake-utils_src_prepare } multilib_src_configure() { local mycmakeargs=( -DBUILD_TESTING="$(usex test)" ) - cmake_src_configure + cmake-utils_src_configure } src_configure() { cmake-multilib_src_configure @@ -52,7 +52,7 @@ src_configure() { } multilib_src_compile() { - cmake_src_compile + cmake-utils_src_compile } src_compile() { cmake-multilib_src_compile @@ -64,7 +64,7 @@ python_test(){ } multilib_src_test() { - cmake_src_test + cmake-utils_src_test } src_test() { cmake-multilib_src_test @@ -72,7 +72,7 @@ src_test() { } multilib_src_install() { - cmake_src_install + cmake-utils_src_install } multilib_src_install_all() { use python && distutils-r1_src_install