From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1240720-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 02FDA1382C5 for <garchives@archives.gentoo.org>; Sun, 10 Jan 2021 17:32:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2605EE0AC5; Sun, 10 Jan 2021 17:32:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 EFBD5E0AC6 for <gentoo-commits@lists.gentoo.org>; Sun, 10 Jan 2021 17:32:11 +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 F0767341021 for <gentoo-commits@lists.gentoo.org>; Sun, 10 Jan 2021 17:32:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F93846B for <gentoo-commits@lists.gentoo.org>; Sun, 10 Jan 2021 17:32:08 +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: <1610299926.0c0d20c31b64d344bc6feaad39c2a85df2d6ffbd.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/biosdevname/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/biosdevname/biosdevname-0.7.3.ebuild X-VCS-Directories: sys-apps/biosdevname/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0c0d20c31b64d344bc6feaad39c2a85df2d6ffbd X-VCS-Branch: master Date: Sun, 10 Jan 2021 17:32:08 +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: a0eb5ea8-a756-48c8-96f2-2f50efe02f4a X-Archives-Hash: 1f4910604ce6ebf4a1f510d19c8d6fb7 commit: 0c0d20c31b64d344bc6feaad39c2a85df2d6ffbd Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Jan 10 17:31:36 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Jan 10 17:32:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c0d20c3 sys-apps/biosdevname: use autotools.eclass Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-apps/biosdevname/biosdevname-0.7.3.ebuild | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/sys-apps/biosdevname/biosdevname-0.7.3.ebuild b/sys-apps/biosdevname/biosdevname-0.7.3.ebuild index 3382b9289a9..57d14bc37fe 100644 --- a/sys-apps/biosdevname/biosdevname-0.7.3.ebuild +++ b/sys-apps/biosdevname/biosdevname-0.7.3.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit udev +inherit autotools udev DESCRIPTION="Sets BIOS-given device names instead of kernel eth* names" HOMEPAGE="http://linux.dell.com/biosdevname/" @@ -12,12 +12,10 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" -CDEPEND="virtual/udev" -DEPEND="${CDEPEND} +RDEPEND="virtual/udev" +DEPEND="${RDEPEND} sys-apps/pciutils" -RDEPEND="${CDEPEND}" src_prepare() { default @@ -25,5 +23,5 @@ src_prepare() { sed -i -e 's|/sbin/biosdevname|/usr\0|g' biosdevname.rules.in || die sed -i -e "/RULEDEST/s:/lib/udev:$(get_udevdir):" configure.ac || die - ./autogen.sh --no-configure || die + eautoreconf }