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 DE14A138350 for ; Sun, 9 Feb 2020 11:36:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0666EE0839; Sun, 9 Feb 2020 11:36:07 +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 57A7FE0839 for ; Sun, 9 Feb 2020 11:36:06 +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 248F034E84C for ; Sun, 9 Feb 2020 11:36:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA70698 for ; Sun, 9 Feb 2020 11:36:02 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1581248158.3c3d1d71ef1aa4fdbb29f4f4a3035468726f55a6.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/cinit/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/cinit/cinit-0.2.1.ebuild X-VCS-Directories: sys-apps/cinit/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 3c3d1d71ef1aa4fdbb29f4f4a3035468726f55a6 X-VCS-Branch: master Date: Sun, 9 Feb 2020 11:36:02 +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: 57d3c6d2-9441-486e-8d93-25a8b8deac30 X-Archives-Hash: 71e7f19822c618fae8e84e225ebe8262 commit: 3c3d1d71ef1aa4fdbb29f4f4a3035468726f55a6 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Feb 9 11:34:51 2020 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sun Feb 9 11:35:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c3d1d71 sys-apps/cinit: port to EAPI=7 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Mikle Kolyada gentoo.org> sys-apps/cinit/cinit-0.2.1.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sys-apps/cinit/cinit-0.2.1.ebuild b/sys-apps/cinit/cinit-0.2.1.ebuild index c52fcc2f673..252f62e217b 100644 --- a/sys-apps/cinit/cinit-0.2.1.ebuild +++ b/sys-apps/cinit/cinit-0.2.1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 inherit toolchain-funcs @@ -17,6 +17,7 @@ IUSE="doc" src_prepare() { sed -i "/contrib+tools/d" Makefile || die sed -i "/^STRIP/s/strip.*/true/" Makefile.include || die + default } src_compile() { @@ -31,7 +32,7 @@ src_compile() { src_install() { emake LD=$(tc-getCC) DESTDIR="${D}" install - rm -f "${D}"/sbin/{init,shutdown,reboot} + rm -f "${D}"/sbin/{init,shutdown,reboot} || die dodoc Changelog CHANGES CREDITS README TODO use doc && dodoc -r doc }