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 ED9261382C5 for ; Sun, 14 Jun 2020 15:00:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1931BE09CF; Sun, 14 Jun 2020 15:00:36 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 EC0EFE09CF for ; Sun, 14 Jun 2020 15:00:35 +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 623D234EEF9 for ; Sun, 14 Jun 2020 15:00:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D44FD242 for ; Sun, 14 Jun 2020 15:00:31 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1592132558.147fbf6bcc8a3972080db01d7a7837d4b34546d7.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-process/nvtop/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-process/nvtop/nvtop-1.0.0.ebuild sys-process/nvtop/nvtop-9999.ebuild X-VCS-Directories: sys-process/nvtop/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 147fbf6bcc8a3972080db01d7a7837d4b34546d7 X-VCS-Branch: master Date: Sun, 14 Jun 2020 15:00:31 +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: 68a21e8a-975a-4231-8d6e-0df226ba97d1 X-Archives-Hash: 65f5eb0d7eee85775fe5bf009788d691 commit: 147fbf6bcc8a3972080db01d7a7837d4b34546d7 Author: Huang Rui gmail com> AuthorDate: Sun Jun 14 11:02:18 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sun Jun 14 11:02:38 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=147fbf6b sys-process/nvtop: use cmake eclass replace cmake-utils make-utils eclass will be deprecated soon Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Huang Rui gmail.com> sys-process/nvtop/nvtop-1.0.0.ebuild | 4 ++-- sys-process/nvtop/nvtop-9999.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-process/nvtop/nvtop-1.0.0.ebuild b/sys-process/nvtop/nvtop-1.0.0.ebuild index 5a831a1..cf47220 100644 --- a/sys-process/nvtop/nvtop-1.0.0.ebuild +++ b/sys-process/nvtop/nvtop-1.0.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils +inherit cmake DESCRIPTION="NVIDIA GPUs htop like monitoring tool" HOMEPAGE="https://github.com/Syllo/nvtop" @@ -49,5 +49,5 @@ src_configure() { ${CMAKE_CONF} ) - cmake-utils_src_configure + cmake_src_configure } diff --git a/sys-process/nvtop/nvtop-9999.ebuild b/sys-process/nvtop/nvtop-9999.ebuild index 42b38e8..02eab10 100644 --- a/sys-process/nvtop/nvtop-9999.ebuild +++ b/sys-process/nvtop/nvtop-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils +inherit cmake DESCRIPTION="NVIDIA GPUs htop like monitoring tool" HOMEPAGE="https://github.com/Syllo/nvtop" @@ -48,5 +48,5 @@ src_configure() { ${CMAKE_CONF} ) - cmake-utils_src_configure + cmake_src_configure }