# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{10..12} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 MY_PV="v-${PV/_beta/}" DESCRIPTION="A tool to enumerate information from NTLM authentication enabled web endpoints" HOMEPAGE="https://github.com/sachinkamath/NTLMRecon" SRC_URI="https://github.com/sachinkamath/NTLMRecon/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" RESTRICT="!test? ( test )" RDEPEND=" dev-python/requests[${PYTHON_USEDEP}] dev-python/colorama[${PYTHON_USEDEP}] dev-python/termcolor[${PYTHON_USEDEP}] dev-python/python-iptools[${PYTHON_USEDEP}] " DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}]" S="${WORKDIR}/NTLMRecon-${MY_PV}"