net-analyzer/smbmap: bump 1.8.2

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Yury Martynov <email@linxon.ru>
This commit is contained in:
Yury Martynov 2020-03-15 12:23:14 +03:00
parent c7bbc641d9
commit 1eabb56342
No known key found for this signature in database
GPG key ID: EBE62DD0CCEAE19E
2 changed files with 38 additions and 0 deletions

View file

@ -1 +1,2 @@
DIST smbmap-1.1.0.tar.gz 26090 BLAKE2B bdc9faceba78ad65d3e5a90713c9c9e98ec3681e3c454b1bdce6556e9d22510181cef0fa0bbddf83d5ecf17db614b3f5b111bb7d1bc55188b4a8a4ac20efedf0 SHA512 9e94953a17cd9b84d782a3afb12b2fea71c50c5a80c3b9e1274aa7b9de74ecf30fa22831a1c00035c89d26808859b2a840a6cfb3ade0efcf87e4586f77cef097
DIST smbmap-1.8.2.tar.gz 32811 BLAKE2B fd0cd82f027faa562ee1cb4da101cab97e0d8b398b712815c1cf47c85c88874831acbfcef2e8f75dbbc89f6c69f85be6c46bfe1069d3d030171b55f52bb1b3fa SHA512 e2f2f4bd76178d02a0cd0822e36a04e4f87f6b00d4ff461e0a5e14d54d3652f95fe2415d1e8b7678873b4aac108c8372f0fff9848344f742ef1ca88b0f0792b8

View file

@ -0,0 +1,37 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
# TODO: add py3.* support
PYTHON_COMPAT=( python3_6 )
inherit python-r1
DESCRIPTION="SMBMap is a handy SMB enumeration tool"
HOMEPAGE="https://github.com/ShawnDEvans/smbmap"
if [[ ${PV} = *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/ShawnDEvans/smbmap"
else
SRC_URI="https://github.com/ShawnDEvans/smbmap/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-3"
SLOT="0"
RDEPEND="${PYTHON_DEPS}
dev-python/impacket[${PYTHON_USEDEP}]
dev-python/pyasn1[${PYTHON_USEDEP}]
dev-python/pycryptodomex[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}"
pkg_setup() {
python_setup
}
src_install() {
python_foreach_impl python_newscript ${PN}.py ${PN}
}