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 29116158020 for ; Mon, 21 Nov 2022 20:12:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7554FE0901; Mon, 21 Nov 2022 20:12:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 607CFE0901 for ; Mon, 21 Nov 2022 20:12:39 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7C41D340E8A for ; Mon, 21 Nov 2022 20:12:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 10FA373B for ; Mon, 21 Nov 2022 20:12:37 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1669057057.a06086230187aa6be6f9a53d0500d33be31c6a36.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-portage/portconf/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-portage/portconf/portconf-1.6.8-r1.ebuild X-VCS-Directories: app-portage/portconf/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: a06086230187aa6be6f9a53d0500d33be31c6a36 X-VCS-Branch: dev Date: Mon, 21 Nov 2022 20:12:37 +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: b660bd25-eaa5-4e9e-96d0-476273eabb53 X-Archives-Hash: a4b4e07840d97ade8e1b792987f48856 commit: a06086230187aa6be6f9a53d0500d33be31c6a36 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Mon Nov 21 18:57:34 2022 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Mon Nov 21 18:57:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a0608623 app-portage/portconf: drop dependency on app-text/agrep update EAPI 7 -> 8 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> app-portage/portconf/portconf-1.6.8-r1.ebuild | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/app-portage/portconf/portconf-1.6.8-r1.ebuild b/app-portage/portconf/portconf-1.6.8-r1.ebuild index afabf396a..237e58873 100644 --- a/app-portage/portconf/portconf-1.6.8-r1.ebuild +++ b/app-portage/portconf/portconf-1.6.8-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" +EAPI=8 DESCRIPTION="/etc/portage cleaner" HOMEPAGE="https://github.com/megabaks/portconf" @@ -11,17 +11,10 @@ LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" -IUSE="" - -DEPEND=" - app-shells/bash:= - sys-apps/portage -" -RDEPEND="${DEPEND} +RDEPEND=" app-portage/eix app-portage/portage-utils - sys-apps/gawk - || ( app-text/agrep dev-libs/tre ) + dev-libs/tre " src_install() { @@ -29,5 +22,5 @@ src_install() { dobin portconf insinto /etc - newins portconf.conf portconf.conf + doins portconf.conf }