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 8914D158090 for ; Fri, 27 May 2022 05:40:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C703E0817; Fri, 27 May 2022 05:40:01 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 28E6DE0817 for ; Fri, 27 May 2022 05:40:01 +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 930D73413F3 for ; Fri, 27 May 2022 05:39:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B34B94D3 for ; Fri, 27 May 2022 05:39:57 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1653629989.f1a368ed1ede5a27f90c4e86d4fa54ccacf993bf.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ssh-audit/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/ssh-audit/Manifest net-analyzer/ssh-audit/metadata.xml net-analyzer/ssh-audit/ssh-audit-2.5.0.ebuild X-VCS-Directories: net-analyzer/ssh-audit/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: f1a368ed1ede5a27f90c4e86d4fa54ccacf993bf X-VCS-Branch: master Date: Fri, 27 May 2022 05:39:57 +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: ef4f8921-f158-4d6d-b117-7a043d2befbb X-Archives-Hash: b50d5ede2ffd2d5b327fdeb78313d5ab commit: f1a368ed1ede5a27f90c4e86d4fa54ccacf993bf Author: Hans de Graaff gentoo org> AuthorDate: Fri May 27 05:38:50 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri May 27 05:39:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1a368ed net-analyzer/ssh-audit: initial import of 2.5.0 Signed-off-by: Hans de Graaff gentoo.org> net-analyzer/ssh-audit/Manifest | 1 + net-analyzer/ssh-audit/metadata.xml | 10 ++++++++++ net-analyzer/ssh-audit/ssh-audit-2.5.0.ebuild | 26 ++++++++++++++++++++++++++ 3 files changed, 37 insertions(+) diff --git a/net-analyzer/ssh-audit/Manifest b/net-analyzer/ssh-audit/Manifest new file mode 100644 index 000000000000..169dc979d882 --- /dev/null +++ b/net-analyzer/ssh-audit/Manifest @@ -0,0 +1 @@ +DIST ssh-audit-2.5.0.tar.gz 125991 BLAKE2B 902c29c3eb6dc1ac894d8a75a28f74a43a2e172e513db97d70358d7e6737115e5308fef33541baf0f272a2dce4bb29355eb8809274cfffa64c16a02cb19ce75b SHA512 252d29cb95dc5b0c40d2c47f2f884417a924fe08668db49d6284a931806730729569b9e3049157b0cee00515fbb04d99a98c3933ebcfd8ad847ab343d13e234e diff --git a/net-analyzer/ssh-audit/metadata.xml b/net-analyzer/ssh-audit/metadata.xml new file mode 100644 index 000000000000..915e0081a17e --- /dev/null +++ b/net-analyzer/ssh-audit/metadata.xml @@ -0,0 +1,10 @@ + + + + + graaff@gentoo.org + + + jtesta/ssh-audit + + diff --git a/net-analyzer/ssh-audit/ssh-audit-2.5.0.ebuild b/net-analyzer/ssh-audit/ssh-audit-2.5.0.ebuild new file mode 100644 index 000000000000..4f67c7b42ec0 --- /dev/null +++ b/net-analyzer/ssh-audit/ssh-audit-2.5.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=(python3_{8,9,10}) + +inherit distutils-r1 + +DESCRIPTION="SSH server auditing (banner, key exchange, encryption, mac, compression, etc)" +HOMEPAGE="https://github.com/jtesta/ssh-audit" +SRC_URI="https://github.com/jtesta/ssh-audit/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +# Tests require prospector which is not packaged +RESTRICT="test" + +src_install() { + distutils-r1_src_install + + doman ssh-audit.1 +}