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 4B7B31382C5 for ; Sat, 3 Apr 2021 15:57:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91559E08BB; Sat, 3 Apr 2021 15:57:18 +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 74249E08BB for ; Sat, 3 Apr 2021 15:57:18 +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 8FA81340BE3 for ; Sat, 3 Apr 2021 15:57:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00E2A63D for ; Sat, 3 Apr 2021 15:57:16 +0000 (UTC) From: "Sam James" 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" Message-ID: <1617465297.b7053d6131a750d6c96b0cbea3dc2ad9e0724df8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/egressor/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/egressor/egressor-1.0-r2.ebuild X-VCS-Directories: net-analyzer/egressor/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b7053d6131a750d6c96b0cbea3dc2ad9e0724df8 X-VCS-Branch: master Date: Sat, 3 Apr 2021 15:57:16 +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: d5c3b1ad-2394-4725-b46d-d1e504ba6f91 X-Archives-Hash: 76406ef61795748dbbce2bc45bfde2bb commit: b7053d6131a750d6c96b0cbea3dc2ad9e0724df8 Author: Sam James gentoo org> AuthorDate: Fri Apr 2 00:33:57 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Apr 3 15:54:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7053d61 net-analyzer/egressor: port to EAPI 7 Signed-off-by: Sam James gentoo.org> net-analyzer/egressor/egressor-1.0-r2.ebuild | 32 +++++++++++++++------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/net-analyzer/egressor/egressor-1.0-r2.ebuild b/net-analyzer/egressor/egressor-1.0-r2.ebuild index 528e269b589..6a3ea8056e3 100644 --- a/net-analyzer/egressor/egressor-1.0-r2.ebuild +++ b/net-analyzer/egressor/egressor-1.0-r2.ebuild @@ -1,30 +1,32 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit eutils toolchain-funcs +EAPI=7 + +inherit toolchain-funcs DESCRIPTION="tool for checking router configuration" HOMEPAGE="http://packetfactory.openwall.net/projects/egressor/" SRC_URI="http://packetfactory.openwall.net/projects/egressor/${PN}_release${PV}.tar.gz" +S="${WORKDIR}" LICENSE="egressor" SLOT="0" KEYWORDS="amd64 ppc x86" -DEPEND="=net-libs/libnet-1.0.2a-r3" -RDEPEND="net-libs/libpcap +DEPEND=" + =net-libs/libnet-1.0.2a-r3 +" +RDEPEND=" + net-libs/libpcap dev-perl/Net-RawIP - dev-lang/perl" - -S=${WORKDIR} - -src_prepare() { - epatch \ - "${FILESDIR}"/${PV}-libnet-1.0.patch \ - "${FILESDIR}"/${PV}-flags.patch -} + dev-lang/perl +" +PATCHES=( + "${FILESDIR}"/${PV}-libnet-1.0.patch + "${FILESDIR}"/${PV}-flags.patch +) src_compile() { tc-export CC