mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-02-14 19:33:51 +01:00
theHarvester-3.2.1.ebuild
This commit is contained in:
parent
5cb9777d09
commit
cd97f3ecce
2 changed files with 55 additions and 0 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST theHarvester-3.2.0.tar.gz 1044360 BLAKE2B 2b007aff2a70de9d99a48da7becd96b32bbf41022ee1fece60f0cf5436d7265103642b5b10665cae628ed44a34a35736afbea43d2e99053ed9b8ef569812c659 SHA512 8717445b8fa842da33cd6a4be43bafa7a4d3f94d66d32ede79bc8cfb1b48d1a1a77d2ed5160be65de4fc95f4b770fd369907f523b495c51e61281b92b79056c8
|
||||
DIST theHarvester-3.2.1.tar.gz 1048542 BLAKE2B 3ddd15d321028acb3695deb8efa6ad644442f5e5d906ec101f59a998213d0061ee24854200c0af4f843774c955c6a512155a2fc0b7bffdb681de5599c2f26d07 SHA512 45bfb65eb8c0424589244726e8471dfa9e69bccce4b105129afd65147727415852e84e44ef54d6ce4bc7f8bd0ce70af4999672d8c7779f5ee429b080f0c9bafc
|
||||
|
|
|
|||
54
net-analyzer/theHarvester/theHarvester-3.2.1.ebuild
Normal file
54
net-analyzer/theHarvester/theHarvester-3.2.1.ebuild
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="The Harvester is a tool designed to collect email accounts of the target domain"
|
||||
HOMEPAGE="http://www.edge-security.com/theharvester.php"
|
||||
SRC_URI="https://github.com/laramies/theHarvester/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
# IUSE="test"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
# RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
dev-python/aiodns[${PYTHON_USEDEP}]
|
||||
dev-python/aiohttp[${PYTHON_USEDEP}]
|
||||
dev-python/aiomultiprocess[${PYTHON_USEDEP}]
|
||||
dev-python/aiosqlite[${PYTHON_USEDEP}]
|
||||
dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
|
||||
dev-python/certifi[${PYTHON_USEDEP}]
|
||||
>=dev-python/dnspython-1.16.0[${PYTHON_USEDEP}]
|
||||
dev-python/netaddr[${PYTHON_USEDEP}]
|
||||
dev-python/plotly[${PYTHON_USEDEP}]
|
||||
dev-python/pyppeteer[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyyaml-5.1.2[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
dev-python/retrying[${PYTHON_USEDEP}]
|
||||
>=dev-python/shodan-1.17.0[${PYTHON_USEDEP}]
|
||||
dev-python/texttable[${PYTHON_USEDEP}]
|
||||
dev-python/lxml[${PYTHON_USEDEP}]
|
||||
dev-python/uvloop[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
DEPEND="${RDEPEND}"
|
||||
# test? (
|
||||
# dev-python/flake8[${PYTHON_USEDEP}]
|
||||
# dev-python/mypy[${PYTHON_USEDEP}]
|
||||
# )"
|
||||
|
||||
# distutils_enable_tests pytest
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# network required for tests
|
||||
rm -r tests || die
|
||||
}
|
||||
Loading…
Reference in a new issue