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 3300313835A for ; Sat, 5 Dec 2020 14:58:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C8A8E0866; Sat, 5 Dec 2020 14:58:31 +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 32F3EE086E for ; Sat, 5 Dec 2020 14:58:31 +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 B9C283410CF for ; Sat, 5 Dec 2020 14:58:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 224D5478 for ; Sat, 5 Dec 2020 14:58:28 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1607180050.585904e5111ac033fa04465bdc96ad5ace2bf71f.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cppcheck/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/cppcheck/cppcheck-2.2.ebuild X-VCS-Directories: dev-util/cppcheck/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 585904e5111ac033fa04465bdc96ad5ace2bf71f X-VCS-Branch: master Date: Sat, 5 Dec 2020 14:58:28 +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: 43766171-8ce6-4b86-8901-aff2a19d7a2b X-Archives-Hash: dd72d83d2bb39fb9e4de580f197bc079 commit: 585904e5111ac033fa04465bdc96ad5ace2bf71f Author: Guilherme Amadio gentoo org> AuthorDate: Fri Dec 4 14:33:12 2020 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Sat Dec 5 14:54:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=585904e5 dev-util/cppcheck: move to cmake.eclass Package-Manager: Portage-3.0.11, Repoman-3.0.2 Signed-off-by: Guilherme Amadio gentoo.org> dev-util/cppcheck/cppcheck-2.2.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-util/cppcheck/cppcheck-2.2.ebuild b/dev-util/cppcheck/cppcheck-2.2.ebuild index b25286926e7..11db1fddb9e 100644 --- a/dev-util/cppcheck/cppcheck-2.2.ebuild +++ b/dev-util/cppcheck/cppcheck-2.2.ebuild @@ -3,7 +3,7 @@ EAPI=7 PYTHON_COMPAT=( python{3_6,3_7,3_8,3_9} ) -inherit distutils-r1 toolchain-funcs cmake-utils +inherit distutils-r1 toolchain-funcs cmake DESCRIPTION="Static analyzer of C/C++ code" HOMEPAGE="https://github.com/danmar/cppcheck" @@ -31,7 +31,7 @@ DEPEND="${RDEPEND} " src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare } src_configure() { @@ -43,11 +43,11 @@ src_configure() { -DFILESDIR="usr/share/${PN}/" -ENABLE_OSS_FUZZ=OFF ) - cmake-utils_src_configure + cmake_src_configure } src_compile() { - cmake-utils_src_compile + cmake_src_compile if use htmlreport ; then pushd htmlreport || die