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 A0C461382C5 for ; Mon, 14 Jun 2021 13:57:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4F66E0AFC; Mon, 14 Jun 2021 13:57:10 +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 A8119E0AFC for ; Mon, 14 Jun 2021 13:57:10 +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 44D0F335C86 for ; Mon, 14 Jun 2021 13:57:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A6BE9720 for ; Mon, 14 Jun 2021 13:57:07 +0000 (UTC) From: "Matthew Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Thode" Message-ID: <1623679023.204589defdceebfc8bee7982fef54012b71e67f0.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/leatherman/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/leatherman/leatherman-1.12.5.ebuild X-VCS-Directories: dev-libs/leatherman/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: 204589defdceebfc8bee7982fef54012b71e67f0 X-VCS-Branch: master Date: Mon, 14 Jun 2021 13:57:07 +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: 377b5543-a201-4be5-b4d5-17a3c222e037 X-Archives-Hash: 83647c471c44b587a550422150247fbf commit: 204589defdceebfc8bee7982fef54012b71e67f0 Author: Matthew Thode gentoo org> AuthorDate: Mon Jun 14 13:56:50 2021 +0000 Commit: Matthew Thode gentoo org> CommitDate: Mon Jun 14 13:57:03 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=204589de dev-libs/leatherman: switch to cmake from cmake-utils Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Matthew Thode gentoo.org> dev-libs/leatherman/leatherman-1.12.5.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-libs/leatherman/leatherman-1.12.5.ebuild b/dev-libs/leatherman/leatherman-1.12.5.ebuild index 7f68e10d0d2..c105fc67cf2 100644 --- a/dev-libs/leatherman/leatherman-1.12.5.ebuild +++ b/dev-libs/leatherman/leatherman-1.12.5.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils +inherit cmake DESCRIPTION="A C++ toolkit" HOMEPAGE="https://github.com/puppetlabs/leatherman" @@ -27,7 +27,7 @@ PATCHES+=( "${FILESDIR}"/1.12.2-shared_nowide.patch ) src_prepare() { sed -i 's/\-Werror\ //g' "cmake/cflags.cmake" || die # vendored boost lib conflicts with boost 1.73 and above - cmake-utils_src_prepare + cmake_src_prepare } src_configure() { @@ -49,7 +49,7 @@ src_configure() { -DCMAKE_BUILD_TYPE=Debug ) fi - cmake-utils_src_configure + cmake_src_configure } src_test() { @@ -57,5 +57,5 @@ src_test() { } src_install() { - cmake-utils_src_install + cmake_src_install }