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 647651382C5 for ; Fri, 22 Jan 2021 18:58:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A7DBE0B89; Fri, 22 Jan 2021 18:58:58 +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 6A49AE0B89 for ; Fri, 22 Jan 2021 18:58:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 EF0A634104B for ; Fri, 22 Jan 2021 18:58:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75392CC for ; Fri, 22 Jan 2021 18:58:55 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1611341881.b54cf12224c4c90792c4fa01bf45abdd3d39faa8.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/manpager/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/manpager/manpager-1.ebuild X-VCS-Directories: app-text/manpager/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: b54cf12224c4c90792c4fa01bf45abdd3d39faa8 X-VCS-Branch: master Date: Fri, 22 Jan 2021 18:58:55 +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: cd08ce3c-6193-4d89-a2b6-904c6e8077b8 X-Archives-Hash: 15a47d62946810dae392a107b5f82410 commit: b54cf12224c4c90792c4fa01bf45abdd3d39faa8 Author: David Michael gmail com> AuthorDate: Fri Jan 22 18:22:58 2021 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Fri Jan 22 18:58:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b54cf122 app-text/manpager: EAPI 7 Closes: https://bugs.gentoo.org/757564 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: David Michael gmail.com> Signed-off-by: Mike Gilbert gentoo.org> app-text/manpager/manpager-1.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/app-text/manpager/manpager-1.ebuild b/app-text/manpager/manpager-1.ebuild index 947ef1d31be..8d814266873 100644 --- a/app-text/manpager/manpager-1.ebuild +++ b/app-text/manpager/manpager-1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=7 inherit toolchain-funcs @@ -11,7 +11,6 @@ HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="" S=${WORKDIR} @@ -26,6 +25,5 @@ src_compile() { src_install() { dobin ${PN} - insinto /etc/env.d - echo "MANPAGER=manpager" | newins - 00manpager + echo "MANPAGER=manpager" | newenvd - 00manpager }