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 E18221382C5 for ; Sun, 14 Jun 2020 11:03:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 27058E0A6B; Sun, 14 Jun 2020 11:03:47 +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 0A8C3E0A6B for ; Sun, 14 Jun 2020 11:03:46 +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 739CD34F304 for ; Sun, 14 Jun 2020 11:03:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6317A24C for ; Sun, 14 Jun 2020 11:03:43 +0000 (UTC) From: "Rui Huang" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rui Huang" Message-ID: <1592132558.147fbf6bcc8a3972080db01d7a7837d4b34546d7.vowstar@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev 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: vowstar X-VCS-Committer-Name: Rui Huang X-VCS-Revision: 147fbf6bcc8a3972080db01d7a7837d4b34546d7 X-VCS-Branch: dev Date: Sun, 14 Jun 2020 11:03:43 +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: 6751a242-d3e7-4e5a-99ad-2a2df28b798c X-Archives-Hash: 7de68acc72af5d120a894eecac3672d2 commit: 147fbf6bcc8a3972080db01d7a7837d4b34546d7 Author: Huang Rui gmail com> AuthorDate: Sun Jun 14 11:02:18 2020 +0000 Commit: Rui Huang gmail com> 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 }