mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-09 18:02:56 +01:00
38 lines
890 B
Bash
38 lines
890 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
PYTHON_COMPAT=( python{2_7,3_6} )
|
|
|
|
inherit distutils-r1
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~arm ~arm64 ~*"
|
|
DESCRIPTION="PyHunter.io wrappper (often for marketing ), Redteam's use as OSINT wrapper verify harvest/emails."
|
|
HOMEPAGE="https://github.com/VonStruddle/PyHunter"
|
|
|
|
if [[ ${PV} == "9999" ]] ; then
|
|
MY_P=${P}
|
|
EGIT_REPO_URI="https://github.com/VonStruddle/PyHunter.git"
|
|
inherit git-r3
|
|
else
|
|
MY_P=${PN}-${PV/_/-}
|
|
SRC_URI="https://github.com/VonStruddle/PyHunter/archive/v${PV}.tar.gz -> ${P}.tar.gz""
|
|
|
|
fi
|
|
|
|
|
|
DEPEND="dev-python/appdirs
|
|
dev-python/autopep8
|
|
dev-python/packaging
|
|
dev-python/pkginfo
|
|
dev-python/pycodestyle
|
|
dev-python/pyparsing
|
|
dev-python/requests-toolbelt
|
|
dev-python/six
|
|
dev-python/tqdm
|
|
dev-python/twine"
|
|
|
|
RDEPEND="${DEPEND}"
|