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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4F802158087 for ; Thu, 3 Feb 2022 10:09:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6D1852BC005; Thu, 3 Feb 2022 10:09:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D452D2BC005 for ; Thu, 3 Feb 2022 10:09:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 658B1342F59 for ; Thu, 3 Feb 2022 10:09:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86015272 for ; Thu, 3 Feb 2022 10:09:23 +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: <1643882490.c55a4c82b75015c11741c817e77b91f0eaa709fd.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nbtscan/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/nbtscan/Manifest net-analyzer/nbtscan/nbtscan-1.7.2.ebuild X-VCS-Directories: net-analyzer/nbtscan/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c55a4c82b75015c11741c817e77b91f0eaa709fd X-VCS-Branch: master Date: Thu, 3 Feb 2022 10:09:23 +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: 8e3aef8f-1c38-45c9-abc3-b5e56f41f9e6 X-Archives-Hash: 8a2fb3b61d7424c60ca56210db151700 commit: c55a4c82b75015c11741c817e77b91f0eaa709fd Author: Sam James gentoo org> AuthorDate: Thu Feb 3 10:01:30 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Feb 3 10:01:30 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c55a4c82 net-analyzer/nbtscan: add 1.7.2 Signed-off-by: Sam James gentoo.org> net-analyzer/nbtscan/Manifest | 1 + net-analyzer/nbtscan/nbtscan-1.7.2.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/net-analyzer/nbtscan/Manifest b/net-analyzer/nbtscan/Manifest index 15c4906f4d6a..8ce623844a6f 100644 --- a/net-analyzer/nbtscan/Manifest +++ b/net-analyzer/nbtscan/Manifest @@ -1 +1,2 @@ DIST nbtscan-1.6.tar.gz 27290 BLAKE2B 3e38e946aa875be2bca8ad0155a5bf4c612cecda3761623d75657b2ab54aa7a7526d284a78db764518748e092c2719a4c02bcdce32095c87537c9979571c10f7 SHA512 b791357160ae7fe784ebf3b74df551c0b7dcaeefae2ddd585a9e5ac0fe7dd1bb32f00d2b898dcd700e74809708f42fc8e5f0022254e1282914b3f668564b4bcb +DIST nbtscan-1.7.2.tar.gz 29758 BLAKE2B 8e6af433a600865c391d0f7a72a8aa0b82d6ae61abedec8c2dc5cc89515f92c2ebdfd4868d578d4028b9aee4224b2f972bd574040db3c30caf9e0e59f9eb303a SHA512 b20eafe6737aa378e230dd2842e045bf2a48497e21b87ce6c534366cbb162862168a5c8143c0a69d495525caca75e91e437b87d9778e4cfe573b20461e2ccbbf diff --git a/net-analyzer/nbtscan/nbtscan-1.7.2.ebuild b/net-analyzer/nbtscan/nbtscan-1.7.2.ebuild new file mode 100644 index 000000000000..a004786f28bf --- /dev/null +++ b/net-analyzer/nbtscan/nbtscan-1.7.2.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="NBTscan is a program for scanning IP networks for NetBIOS name information" +HOMEPAGE="https://github.com/resurrecting-open-source-projects/nbtscan" +SRC_URI="https://github.com/resurrecting-open-source-projects/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" + +DOCS=( AUTHORS CONTRIBUTING.md ChangeLog NEWS README.md ) + +src_prepare() { + default + + eautoreconf +}