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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 184C415808B for ; Sun, 27 Feb 2022 14:00:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C9DBE07D4; Sun, 27 Feb 2022 14:00:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 42646E07D4 for ; Sun, 27 Feb 2022 14:00:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 38BEA342BAB for ; Sun, 27 Feb 2022 14:00:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 85DB2D0 for ; Sun, 27 Feb 2022 14:00:18 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1645970396.acc95a5cab904d82e5a6776271becc3273912985.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/dfc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/dfc/dfc-3.1.1.ebuild X-VCS-Directories: sys-fs/dfc/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: acc95a5cab904d82e5a6776271becc3273912985 X-VCS-Branch: master Date: Sun, 27 Feb 2022 14:00:18 +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: 0083b508-002a-4cf0-9549-c30fd01182fb X-Archives-Hash: 1804feacf44698bde910146b8cf61b1f commit: acc95a5cab904d82e5a6776271becc3273912985 Author: Yixun Lan gentoo org> AuthorDate: Sun Feb 27 13:59:31 2022 +0000 Commit: Yixun Lan gentoo org> CommitDate: Sun Feb 27 13:59:56 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acc95a5c sys-fs/dfc: QA, port to cmake eclass Closes: https://bugs.gentoo.org/834298 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Yixun Lan gentoo.org> sys-fs/dfc/dfc-3.1.1.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-fs/dfc/dfc-3.1.1.ebuild b/sys-fs/dfc/dfc-3.1.1.ebuild index ec6877dbb2b0..6efb0e5b80cd 100644 --- a/sys-fs/dfc/dfc-3.1.1.ebuild +++ b/sys-fs/dfc/dfc-3.1.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit cmake-utils +EAPI=8 +inherit cmake DESCRIPTION="A simple CLI tool that display file system usage, with colors" HOMEPAGE="https://projects.gw-computing.net/projects/dfc" @@ -30,5 +30,5 @@ src_configure() { -DLFS_ENABLED=ON ) - cmake-utils_src_configure + cmake_src_configure }