From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1211154-garchives=archives.gentoo.org@lists.gentoo.org> 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 17E28138359 for <garchives@archives.gentoo.org>; Thu, 1 Oct 2020 21:49:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BE8FE0819; Thu, 1 Oct 2020 21:49: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 2E0BFE0819 for <gentoo-commits@lists.gentoo.org>; Thu, 1 Oct 2020 21:49:16 +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 984E2340BFD for <gentoo-commits@lists.gentoo.org>; Thu, 1 Oct 2020 21:49:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21307357 for <gentoo-commits@lists.gentoo.org>; Thu, 1 Oct 2020 21:49:13 +0000 (UTC) From: "Sergei Trofimovich" <slyfox@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" <slyfox@gentoo.org> Message-ID: <1601588948.41397061c6b11b25c2d2b812f290196c99506a51.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/rr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/rr/rr-5.3.0-r2.ebuild X-VCS-Directories: dev-util/rr/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 41397061c6b11b25c2d2b812f290196c99506a51 X-VCS-Branch: master Date: Thu, 1 Oct 2020 21:49:13 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fab85786-b68a-435e-ad9a-bc85daca73de X-Archives-Hash: 2934591de5dad6ae3d15009349710810 commit: 41397061c6b11b25c2d2b812f290196c99506a51 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> AuthorDate: Thu Oct 1 21:49:01 2020 +0000 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> CommitDate: Thu Oct 1 21:49:08 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41397061 dev-util/rr: switch from cmake-utils to cmake Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org> dev-util/rr/rr-5.3.0-r2.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-util/rr/rr-5.3.0-r2.ebuild b/dev-util/rr/rr-5.3.0-r2.ebuild index a6c39d9625b..e46b29249fe 100644 --- a/dev-util/rr/rr-5.3.0-r2.ebuild +++ b/dev-util/rr/rr-5.3.0-r2.ebuild @@ -6,7 +6,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{6,7,8} ) CMAKE_BUILD_TYPE=Release -inherit cmake-utils linux-info python-single-r1 +inherit cmake linux-info python-single-r1 DESCRIPTION="Record and Replay Framework" HOMEPAGE="https://rr-project.org/" @@ -44,7 +44,7 @@ pkg_setup() { } src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare sed -i 's:-Werror::' CMakeLists.txt || die #609192 } @@ -55,7 +55,7 @@ src_test() { return 0 fi - cmake-utils_src_test + cmake_src_test } src_configure() { @@ -64,5 +64,5 @@ src_configure() { -Ddisable32bit=$(usex !multilib) #636786 ) - cmake-utils_src_configure + cmake_src_configure }