Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/arping/
Date: Thu, 01 Jul 2021 06:45:37
Message-Id: 1625121919.d4a1ca5040f7fde084492d0417e27c23d8ce9777.sam@gentoo
1 commit: d4a1ca5040f7fde084492d0417e27c23d8ce9777
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 1 06:37:49 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 1 06:45:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4a1ca50
7
8 net-analyzer/arping: add 2.22
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-analyzer/arping/Manifest | 1 +
13 net-analyzer/arping/arping-2.22.ebuild | 37 ++++++++++++++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/net-analyzer/arping/Manifest b/net-analyzer/arping/Manifest
17 index 19b7129a26b..fb1a565d27c 100644
18 --- a/net-analyzer/arping/Manifest
19 +++ b/net-analyzer/arping/Manifest
20 @@ -1 +1,2 @@
21 DIST arping-2.21.tar.gz 50067 BLAKE2B 67b76cc48e9717117dbf43702df7f422634ed40196ec44d273a773610618922ddf7de47ffdf32cb7296db1dbce0a696c57b7992e6ad11f6fddf52a16212154fc SHA512 e976ce1a3ec0e4f57bbded09c6a07934e21df66ce7931422c420f5335dafcd88968f03ba6987d192dcdf51cca89180c86337aff50806713c7b04cb13e3e83504
22 +DIST arping-2.22.tar.gz 50152 BLAKE2B 2215773b922219537339550e8034bb6eca82974469ebd0e399c73bd259ef4ff7a4510d9a5ff108cef3dac492477c54fc2517c2dfd4035158d0269f03c0e2a0b5 SHA512 0b36fff2c14c1ff89453ba63eea04de3343fcb19da7dbc1c8749bc926e441c54915cd628d54171d449e66e92663e31f12e057c30a80cd49c4412650e2cd00ef3
23
24 diff --git a/net-analyzer/arping/arping-2.22.ebuild b/net-analyzer/arping/arping-2.22.ebuild
25 new file mode 100644
26 index 00000000000..1df1402f5ea
27 --- /dev/null
28 +++ b/net-analyzer/arping/arping-2.22.ebuild
29 @@ -0,0 +1,37 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit autotools fcaps
36 +
37 +DESCRIPTION="A utility to see if a specific IP is taken and what MAC owns it"
38 +HOMEPAGE="http://www.habets.pp.se/synscan/programs.php?prog=arping"
39 +SRC_URI="https://github.com/ThomasHabets/${PN}/archive/${P}.tar.gz"
40 +S="${WORKDIR}/${PN}-${P}"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="2"
44 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
45 +IUSE="test"
46 +RESTRICT="!test? ( test )"
47 +
48 +RDEPEND="
49 + net-libs/libpcap
50 + net-libs/libnet:1.1
51 + !net-misc/iputils[arping(+)]
52 +"
53 +DEPEND="
54 + ${RDEPEND}
55 + test? (
56 + dev-libs/check
57 + dev-python/subunit
58 + )
59 +"
60 +
61 +FILECAPS=( cap_net_raw usr/sbin/arping )
62 +
63 +src_prepare() {
64 + default
65 + eautoreconf
66 +}