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 ACCBA138334 for ; Fri, 15 Mar 2019 09:29:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3B6A7E0900; Fri, 15 Mar 2019 09:29:52 +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 0CE1DE0900 for ; Fri, 15 Mar 2019 09:29:52 +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 B6478335CF2 for ; Fri, 15 Mar 2019 09:29:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2BA2F4B2 for ; Fri, 15 Mar 2019 09:29:49 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1552642183.b30fc0fbf9d5884b9650ca14b4cb373559c513cb.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/arp-scan/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/arp-scan/Manifest net-analyzer/arp-scan/arp-scan-1.9.5.ebuild X-VCS-Directories: net-analyzer/arp-scan/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: b30fc0fbf9d5884b9650ca14b4cb373559c513cb X-VCS-Branch: master Date: Fri, 15 Mar 2019 09:29:49 +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: f888d5cf-cdcb-4ace-abc4-1cefda4e64ac X-Archives-Hash: 7c74a19d18d5c8cd6c18b4ef49d386fa commit: b30fc0fbf9d5884b9650ca14b4cb373559c513cb Author: Jeroen Roovers gentoo org> AuthorDate: Fri Mar 15 09:28:35 2019 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Fri Mar 15 09:29:43 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b30fc0fb net-analyzer/arp-scan: Version 1.9.5 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Fixes: https://bugs.gentoo.org/680408 Signed-off-by: Jeroen Roovers gentoo.org> net-analyzer/arp-scan/Manifest | 1 + net-analyzer/arp-scan/arp-scan-1.9.5.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/net-analyzer/arp-scan/Manifest b/net-analyzer/arp-scan/Manifest index 186b9035400..0baf0c1bce2 100644 --- a/net-analyzer/arp-scan/Manifest +++ b/net-analyzer/arp-scan/Manifest @@ -1 +1,2 @@ +DIST arp-scan-1.9.5.tar.gz 414114 BLAKE2B 8a38f74bc2660a43905a6db1411dbea4a29b030bc66e22cd569a7f3001a4a32553a9c09ace4b56db6b91d5a2bc2854b40b8af87034fed86e79f2d602893e71ae SHA512 a10c510dc668b103fc508619d04e5870fdf6f576b79222904cfe988b4e9255604ce1a724100318a662d5f77d33270bc733f0e3091fb9da034a54b9ab402cbcab DIST arp-scan-1.9.tar.gz 488442 BLAKE2B f4170736c07ff69e044ca0c17150fafb5aee9de67463ce828a856d21e264c43e9354ba1663f630fa6c40628b97e97884588ca6c4b0f372263af087a78c45730b SHA512 5061ac82d1acad3dd5dab998e4e2d2d9d2dbf436a2839ee1f68dd2997278df7e77f5dda7e54bdb13c9200d7a714b8d82737c041cec8438571d1d14c9d7f936ac diff --git a/net-analyzer/arp-scan/arp-scan-1.9.5.ebuild b/net-analyzer/arp-scan/arp-scan-1.9.5.ebuild new file mode 100644 index 00000000000..b98d876c237 --- /dev/null +++ b/net-analyzer/arp-scan/arp-scan-1.9.5.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools + +DESCRIPTION="ARP scanning and fingerprinting tool" +HOMEPAGE="https://github.com/royhills/arp-scan" +SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + net-libs/libpcap +" +RDEPEND=" + ${DEPEND} + dev-lang/perl +" + +src_prepare() { + default + eautoreconf +}