mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-25 16:20:55 +02:00
pyhunter: bump to 1.7 and drop old API
This commit is contained in:
parent
91bc6f159f
commit
1a9d8cfdc1
5 changed files with 66 additions and 24 deletions
|
|
@ -1 +1 @@
|
|||
DIST pyhunter-0.3.tar.gz 6345 BLAKE2B 2353298d1a30e1fb75f533ee7f26d28fcbcfb3c20953ff753875e93c8a049880b11c14234decfdd9eede7bea7ed239567052a74523e2b45298218d2c1624172e SHA512 97c98119aa2b8d690b1978b7d6839bfc8c9f18c84b7ea1a39d971ef79a58446ec70fa9ece9fc69469247f58382bab6910a043a767cc9ecd7c1e0dd59ff7d5978
|
||||
DIST pyhunter-1.7.tar.gz 5888 BLAKE2B 9e730f50cf9cd6964792c9fd85331a2d3e7138734e0b2dcb75d10d9765a542194b30ee3454a4dc2fc4023da071ec5958074ece755c9f574160610a74bb5f89cf SHA512 6cffe3f8bf08a931c20b7eeb3f209f6393a7e9b35d871195f6249589ac7d8f4c8152b94b957ea407cc103c1bc1625e82da4a12d3ece4b0810ad2b4286a6c8d4a
|
||||
|
|
|
|||
8
dev-python/pyhunter/metadata.xml
Normal file
8
dev-python/pyhunter/metadata.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>email@linxon.ru</email>
|
||||
<name>Yury Martynov</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
|
|
@ -1 +0,0 @@
|
|||
pyhunter-9999.ebuild
|
||||
36
dev-python/pyhunter/pyhunter-1.7.ebuild
Normal file
36
dev-python/pyhunter/pyhunter-1.7.ebuild
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7,8} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="An (unofficial) Python wrapper for the Hunter.io API"
|
||||
HOMEPAGE="https://github.com/VonStruddle/PyHunter"
|
||||
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/VonStruddle/PyHunter.git"
|
||||
else
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="${PYTHON_DEPS}
|
||||
dev-python/appdirs[${PYTHON_USEDEP}]
|
||||
dev-python/autopep8[${PYTHON_USEDEP}]
|
||||
dev-python/packaging[${PYTHON_USEDEP}]
|
||||
dev-python/pkginfo[${PYTHON_USEDEP}]
|
||||
dev-python/pycodestyle[${PYTHON_USEDEP}]
|
||||
dev-python/pyparsing[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
dev-python/requests-toolbelt[${PYTHON_USEDEP}]
|
||||
dev-python/six[${PYTHON_USEDEP}]
|
||||
dev-python/tqdm[${PYTHON_USEDEP}]
|
||||
dev-python/twine[${PYTHON_USEDEP}]"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
|
@ -1,37 +1,36 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_6} )
|
||||
PYTHON_COMPAT=( python3_{6,7,8} )
|
||||
|
||||
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."
|
||||
DESCRIPTION="An (unofficial) Python wrapper for the Hunter.io API"
|
||||
HOMEPAGE="https://github.com/VonStruddle/PyHunter"
|
||||
|
||||
if [[ ${PV} == "9999" ]] ; then
|
||||
# MY_P=${P}
|
||||
EGIT_REPO_URI="https://github.com/VonStruddle/PyHunter.git"
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/VonStruddle/PyHunter.git"
|
||||
else
|
||||
# MY_P=${PN}-${PV/_/-}
|
||||
SRC_URI="https://github.com/VonStruddle/PyHunter/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/PyHunter-${PV}"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
DEPEND="dev-python/appdirs[${PYTHON_USEDEP}]
|
||||
dev-python/autopep8[${PYTHON_USEDEP}]
|
||||
dev-python/packaging[${PYTHON_USEDEP}]
|
||||
dev-python/pkginfo[${PYTHON_USEDEP}]
|
||||
dev-python/pycodestyle[${PYTHON_USEDEP}]
|
||||
dev-python/pyparsing[${PYTHON_USEDEP}]
|
||||
dev-python/requests-toolbelt[${PYTHON_USEDEP}]
|
||||
dev-python/six[${PYTHON_USEDEP}]
|
||||
dev-python/tqdm[${PYTHON_USEDEP}]
|
||||
dev-python/twine[${PYTHON_USEDEP}]"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="${PYTHON_DEPS}
|
||||
dev-python/appdirs[${PYTHON_USEDEP}]
|
||||
dev-python/autopep8[${PYTHON_USEDEP}]
|
||||
dev-python/packaging[${PYTHON_USEDEP}]
|
||||
dev-python/pkginfo[${PYTHON_USEDEP}]
|
||||
dev-python/pycodestyle[${PYTHON_USEDEP}]
|
||||
dev-python/pyparsing[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
dev-python/requests-toolbelt[${PYTHON_USEDEP}]
|
||||
dev-python/six[${PYTHON_USEDEP}]
|
||||
dev-python/tqdm[${PYTHON_USEDEP}]
|
||||
dev-python/twine[${PYTHON_USEDEP}]"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
|
|
|||
Loading…
Reference in a new issue