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 8622613934E for ; Sat, 31 Jul 2021 05:20:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 513EAE0880; Sat, 31 Jul 2021 05:20:03 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 23372E0880 for ; Sat, 31 Jul 2021 05:20:03 +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 8ED49335D50 for ; Sat, 31 Jul 2021 05:20:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C69EC744 for ; Sat, 31 Jul 2021 05:19:59 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1627707519.34e2da370e2c4e21c19ae0657e4d09bd147fcb09.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/progress/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/progress/progress-0.15-r1.ebuild sys-apps/progress/progress-0.15.ebuild X-VCS-Directories: sys-apps/progress/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 34e2da370e2c4e21c19ae0657e4d09bd147fcb09 X-VCS-Branch: master Date: Sat, 31 Jul 2021 05:19:59 +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: bb23fff3-5893-4f10-8ddd-4158f95d5d34 X-Archives-Hash: 0960c561b469ddc2cf6f641dc5719bfb commit: 34e2da370e2c4e21c19ae0657e4d09bd147fcb09 Author: Sam James gentoo org> AuthorDate: Sat Jul 31 04:58:20 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jul 31 04:58:39 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34e2da37 sys-apps/progress: port to EAPI 7 We also add a missing subslot dependency on sys-libs/ncurses, as we link against it. Signed-off-by: Sam James gentoo.org> .../{progress-0.15.ebuild => progress-0.15-r1.ebuild} | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/sys-apps/progress/progress-0.15.ebuild b/sys-apps/progress/progress-0.15-r1.ebuild similarity index 78% rename from sys-apps/progress/progress-0.15.ebuild rename to sys-apps/progress/progress-0.15-r1.ebuild index 2f46847710f..7b176623820 100644 --- a/sys-apps/progress/progress-0.15.ebuild +++ b/sys-apps/progress/progress-0.15-r1.ebuild @@ -1,7 +1,8 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 + inherit toolchain-funcs DESCRIPTION="Coreutils Viewer: show progress for cp, rm, dd, and so forth" @@ -12,17 +13,17 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="amd64 ppc ppc64 x86" -RDEPEND="sys-libs/ncurses" -DEPEND=" - ${RDEPEND} - virtual/pkgconfig -" +RDEPEND="sys-libs/ncurses:=" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" src_prepare() { + default + tc-export CC } src_install() { - emake PREFIX="${D}/${EPREFIX}/usr" install + emake PREFIX="${ED}/usr" install dodoc README.md }