From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1255606-garchives=archives.gentoo.org@lists.gentoo.org>
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 84A8B13835A
	for <garchives@archives.gentoo.org>; Sat, 27 Feb 2021 01:00:35 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id D35B1E088F;
	Sat, 27 Feb 2021 01:00:34 +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 824F4E0893
	for <gentoo-commits@lists.gentoo.org>; Sat, 27 Feb 2021 01:00:34 +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 400C0340F8F
	for <gentoo-commits@lists.gentoo.org>; Sat, 27 Feb 2021 01:00:33 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C1BB58F
	for <gentoo-commits@lists.gentoo.org>; Sat, 27 Feb 2021 01:00:29 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
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" <sam@gentoo.org>
Message-ID: <1614387614.b8cec8606b75dc332d73e1799ad8aa9275c7ff8a.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libstatgrab/
X-VCS-Repository: repo/gentoo
X-VCS-Files: sys-libs/libstatgrab/libstatgrab-0.91.ebuild
X-VCS-Directories: sys-libs/libstatgrab/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: b8cec8606b75dc332d73e1799ad8aa9275c7ff8a
X-VCS-Branch: master
Date: Sat, 27 Feb 2021 01:00:29 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: a18565c2-ad3a-4a3e-9831-8da9c5833a34
X-Archives-Hash: ec542760167698c93ebe6b291d73b0d4

commit:     b8cec8606b75dc332d73e1799ad8aa9275c7ff8a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 27 00:42:02 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 27 01:00:14 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8cec860

sys-libs/libstatgrab: port to EAPI 7

Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-libs/libstatgrab/libstatgrab-0.91.ebuild | 23 +++++++++++++----------
 1 file changed, 13 insertions(+), 10 deletions(-)

diff --git a/sys-libs/libstatgrab/libstatgrab-0.91.ebuild b/sys-libs/libstatgrab/libstatgrab-0.91.ebuild
index 2e211e2a49e..8fa5c728d72 100644
--- a/sys-libs/libstatgrab/libstatgrab-0.91.ebuild
+++ b/sys-libs/libstatgrab/libstatgrab-0.91.ebuild
@@ -1,39 +1,42 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
-AUTOTOOLS_AUTORECONF=frob
-inherit autotools-utils
+inherit autotools
 
 DESCRIPTION="A tool to provide access to statistics about the system on which it's run"
 HOMEPAGE="https://www.i-scream.org/libstatgrab/"
 SRC_URI="https://www.mirrorservice.org/sites/ftp.i-scream.org/pub/i-scream/libstatgrab/${P}.tar.gz"
 
 LICENSE="|| ( GPL-2 LGPL-2.1 )"
-SLOT=0
+SLOT="0"
 KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc x86"
-IUSE="doc examples static-libs"
+IUSE="doc examples"
 
 RDEPEND="sys-libs/ncurses"
 DEPEND="${RDEPEND}"
 
 DOCS=( ChangeLog PLATFORMS NEWS AUTHORS README )
 
-PATCHES=( "${FILESDIR}"/${P}-tinfo.patch )
+PATCHES=(
+	"${FILESDIR}"/${P}-tinfo.patch
+)
 
 src_configure() {
 	local myeconfargs=(
 		--disable-setgid-binaries
 		--disable-setuid-binaries
 		--with-ncurses
-		$(use_enable static-libs static)
+		--disable-static
 	)
-	autotools-utils_src_configure
+
+	econf "${myeconfargs[@]}"
 }
 
 src_install() {
-	autotools-utils_src_install
+	default
+
 	if use examples; then
 		docompress -x /usr/share/doc/${PF}/examples
 		insinto /usr/share/doc/${PF}/examples