bump shodan-1.26.1

This commit is contained in:
2022-01-29 08:39:06 +01:00
committed by Andreas Billmeier
parent d68aa23abb
commit c9b00c895c
2 changed files with 37 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
DIST shodan-1.25.0.tar.gz 51374 BLAKE2B 8068a02f7bb8ae91fd56c7b9a42b6b6c3195e689bf1f12e39fcd64b071fb1d6d6336f56b68a690e89a638ceecefdc4a9ec8b65561f529c62e334d80f10a2c479 SHA512 5a86e537ff5d74f1fa91a5b7591b939cfd73570961392bd4ea457a4e089a65bf601b890888c739bac292ed5b55478400cfdefc1fbcb748e3dfd2bb79f2d9bbce
DIST shodan-1.26.1.tar.gz 51573 BLAKE2B 869544a3f0301ab430b56e8dd3dc1fc97117de0222a18f96fe73e0d9ae103c3e65107ea9f6c85b6db4d58b6c0e11b688333fe2d14994f8db96d953635410b026 SHA512 f2b9af5fdee7fcca52a85059c7c68f951ccab2459d668c6be30934f4822bde6d4422549de4e210814045a09b4c4d8c9116d807114e2c4bb07b28cb18a6c5e179
EBUILD shodan-1.25.0.ebuild 903 BLAKE2B e46ea84b38f626db3dbe4b946784f32da456b079782e5a9bb41c08aa0c70bea239b19983705819ea5e01181fdd34da1f18eb2caf485a73a2dc22a778a825e5e8 SHA512 72bdb77e05e482ed872f450fedd2b00038d8bb0fcad538aab40a0d6b133ac44dd27ee5ce1814989c9a17f42faac427bc1719c426fcdabe05b3d40cab29afe349
EBUILD shodan-1.26.1.ebuild 901 BLAKE2B 26e6a211e7641bfa6e64bfc3c168e559c1c58f8ee1cbb869469bcdd2b2e055caf960114d5968353667c90578b417f7e70aa851dab8d5dc427d3c5578b8206474 SHA512 1ec9e30ab3371c24da21aeecc7ddc5407ad86555a6aed78ed6e5a892adfe29b36f7567a05590b5b5dd4e0361c873f654ae7c70eaa641dbedaa30bdefa7e2f492
MISC metadata.xml 447 BLAKE2B 2581c7f6bd7a31b7387145dfca7a0defb2880089ecee4ae4da33d3fbad255dd57d8464bcc98ddd693761c1123fb33bbd253b6625df3f92209a4833ea0312e8d5 SHA512 d726f28c5bbf92acb7741d79b97ca548dea743d0dd453a9cd1b1b90edc46d3b53e532664400eac94fb169e0ea316b2f2daa442399304d6089a5da1e324639252

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python library and command-line utility for Shodan (https://developer.shodan.io)"
HOMEPAGE="https://github.com/achillean/shodan-python/ https://pypi.org/project/shodan/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=">=dev-python/requests-2.2.1[${PYTHON_USEDEP}]
dev-python/click[${PYTHON_USEDEP}]
dev-python/colorama[${PYTHON_USEDEP}]
dev-python/click-plugins[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}