Diff arp-scan-1.9.7 with a arp-scan-1.10.0

/usr/portage/net-analyzer/arp-scan/arp-scan-1.10.0.ebuild 2023-10-09 14:52:33.304368446 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5

  
5 6
inherit autotools
6 7

  
7 8
DESCRIPTION="ARP scanning and fingerprinting tool"
......
10 11

  
11 12
LICENSE="GPL-3"
12 13
SLOT="0"
13
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
14
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
14 15

  
15 16
DEPEND="
16 17
	net-libs/libpcap
18
	sys-libs/libcap
17 19
"
18 20
RDEPEND="
19 21
	${DEPEND}
20 22
	dev-lang/perl
21 23
"
24
# Needed for _F_S patch
25
BDEPEND="sys-devel/autoconf-archive"
26

  
27
PATCHES=(
28
	"${FILESDIR}"/${PN}-1.10.0-dont-clobber-fortify-source.patch
29
)
22 30

  
23 31
src_prepare() {
24 32
	default
Thank you!