diff options
author | Mario Haustein <mario.haustein@hrz.tu-chemnitz.de> | 2023-10-16 22:42:16 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-01-20 11:48:32 +0000 |
commit | e227ae5eff7213a66e4cf520463b8997fa50bd87 (patch) | |
tree | ceecfc27f66ed090f67f65f33adc8c1ed867cd15 /net-analyzer/shodan | |
parent | net-analyzer/shodan: enable py3.12 (diff) | |
download | gentoo-e227ae5eff7213a66e4cf520463b8997fa50bd87.tar.gz gentoo-e227ae5eff7213a66e4cf520463b8997fa50bd87.tar.bz2 gentoo-e227ae5eff7213a66e4cf520463b8997fa50bd87.zip |
net-analyzer/shodan: add 1.30.1
Signed-off-by: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
Closes: https://github.com/gentoo/gentoo/pull/33227
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer/shodan')
-rw-r--r-- | net-analyzer/shodan/Manifest | 1 | ||||
-rw-r--r-- | net-analyzer/shodan/shodan-1.30.1.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/net-analyzer/shodan/Manifest b/net-analyzer/shodan/Manifest index c6bc514144b6..2c81189db4da 100644 --- a/net-analyzer/shodan/Manifest +++ b/net-analyzer/shodan/Manifest @@ -1 +1,2 @@ DIST shodan-1.30.0.tar.gz 57790 BLAKE2B 1c3c030e84d31dc79ad737b71e63ce6c9218441be04ec94b4144013545e0d7dd79f1e25e51af1811cdd624f2f32b128e5aeb7dbc8d71b21741712733ca4b6d39 SHA512 996555945f4d874cb0fa3c596e6fad9298f7af396c0e94d75b8e9e103d4a2d7dd33ed8af24a218c753117231a0713caa971106f2152bc429d7c8b5c07b00dbc6 +DIST shodan-1.30.1.tar.gz 57908 BLAKE2B 21ef6f4ae2fd6a487e478627f8623dde4e2092fe9dec893e443fc27e94dc3e65a3483317c6819c947f053542414babcfa57ddb82c40f8a83d43bd9e2d9e84d44 SHA512 498d9057271e112940f00dda76a0ecb80a30ea66df84cfecb6e4b77197225714dc1a22d848e6b14a71a48bb4ded5e77a0924bc3915b552acb4ee35f3444cf558 diff --git a/net-analyzer/shodan/shodan-1.30.1.ebuild b/net-analyzer/shodan/shodan-1.30.1.ebuild new file mode 100644 index 000000000000..bc9092e7acc5 --- /dev/null +++ b/net-analyzer/shodan/shodan-1.30.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) +inherit distutils-r1 + +DESCRIPTION="The official Python library for Shodan" +HOMEPAGE="https://github.com/achillean/shodan-python" + +MY_PN="${PN}-python" + +if [[ ${PV} = "9999" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/achillean/shodan-python.git" +else + inherit pypi + KEYWORDS="~amd64 ~loong ~x86" +fi + +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + dev-python/click[${PYTHON_USEDEP}] + dev-python/click-plugins[${PYTHON_USEDEP}] + dev-python/colorama[${PYTHON_USEDEP}] + >=dev-python/requests-2.2.1[${PYTHON_USEDEP}] + dev-python/tldextract[${PYTHON_USEDEP}] + dev-python/xlsxwriter[${PYTHON_USEDEP}] +" + +# Test requires API key +RESTRICT="test" |