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 4C08D139345 for ; Thu, 1 Jul 2021 06:45:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91918E0817; Thu, 1 Jul 2021 06:45:36 +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 78B84E0817 for ; Thu, 1 Jul 2021 06:45:36 +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 7665A335CDF for ; Thu, 1 Jul 2021 06:45:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2EE59581 for ; Thu, 1 Jul 2021 06:45:34 +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: <1625121919.d4a1ca5040f7fde084492d0417e27c23d8ce9777.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/arping/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/arping/Manifest net-analyzer/arping/arping-2.22.ebuild X-VCS-Directories: net-analyzer/arping/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d4a1ca5040f7fde084492d0417e27c23d8ce9777 X-VCS-Branch: master Date: Thu, 1 Jul 2021 06:45:34 +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: cea4b840-b24b-43bf-9bce-b61fecc0dd4a X-Archives-Hash: e63797a4cfcb4035a4a86ccb26b1302c commit: d4a1ca5040f7fde084492d0417e27c23d8ce9777 Author: Sam James gentoo org> AuthorDate: Thu Jul 1 06:37:49 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jul 1 06:45:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4a1ca50 net-analyzer/arping: add 2.22 Signed-off-by: Sam James gentoo.org> net-analyzer/arping/Manifest | 1 + net-analyzer/arping/arping-2.22.ebuild | 37 ++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/net-analyzer/arping/Manifest b/net-analyzer/arping/Manifest index 19b7129a26b..fb1a565d27c 100644 --- a/net-analyzer/arping/Manifest +++ b/net-analyzer/arping/Manifest @@ -1 +1,2 @@ DIST arping-2.21.tar.gz 50067 BLAKE2B 67b76cc48e9717117dbf43702df7f422634ed40196ec44d273a773610618922ddf7de47ffdf32cb7296db1dbce0a696c57b7992e6ad11f6fddf52a16212154fc SHA512 e976ce1a3ec0e4f57bbded09c6a07934e21df66ce7931422c420f5335dafcd88968f03ba6987d192dcdf51cca89180c86337aff50806713c7b04cb13e3e83504 +DIST arping-2.22.tar.gz 50152 BLAKE2B 2215773b922219537339550e8034bb6eca82974469ebd0e399c73bd259ef4ff7a4510d9a5ff108cef3dac492477c54fc2517c2dfd4035158d0269f03c0e2a0b5 SHA512 0b36fff2c14c1ff89453ba63eea04de3343fcb19da7dbc1c8749bc926e441c54915cd628d54171d449e66e92663e31f12e057c30a80cd49c4412650e2cd00ef3 diff --git a/net-analyzer/arping/arping-2.22.ebuild b/net-analyzer/arping/arping-2.22.ebuild new file mode 100644 index 00000000000..1df1402f5ea --- /dev/null +++ b/net-analyzer/arping/arping-2.22.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools fcaps + +DESCRIPTION="A utility to see if a specific IP is taken and what MAC owns it" +HOMEPAGE="http://www.habets.pp.se/synscan/programs.php?prog=arping" +SRC_URI="https://github.com/ThomasHabets/${PN}/archive/${P}.tar.gz" +S="${WORKDIR}/${PN}-${P}" + +LICENSE="GPL-2" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + net-libs/libpcap + net-libs/libnet:1.1 + !net-misc/iputils[arping(+)] +" +DEPEND=" + ${RDEPEND} + test? ( + dev-libs/check + dev-python/subunit + ) +" + +FILECAPS=( cap_net_raw usr/sbin/arping ) + +src_prepare() { + default + eautoreconf +}