shodan-1.11.1 added

This commit is contained in:
2019-02-24 12:02:15 +01:00
parent fdf04d6fbf
commit 228ce5028e
3 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST shodan-1.11.1.tar.gz 45943 BLAKE2B f3a3a05a0a76f4b5f78dd21dc1a2b5c3af319b5a07b08e6575a270dbe7c7761541785d0edf7de94592146a85998a395d8dd70f6481024b1f6444d081dc905019 SHA512 7f8ad635823bac5e20aea05743b51b791a13878a8494339a123add5bfbbc1df15a70dac8876c7913a5095dd1519f301b47802d90bba84587b3fa62161b7d4924
EBUILD shodan-1.11.1.ebuild 728 BLAKE2B 63b3a604f1104aaab9440c2e7e91a238ed9400ab503d66440581ed040902458ee4b74982b2366efbde04a30ad51659b489d352c78d91be66df82e0c566984513 SHA512 e17bd0bc020143f953c0cb3469c968892624c7e0ef10003982faa6b9319805246a25a9a468e54d8d40a70c73a48e16faaa3b9117b508564c5c19780f49a61a06
MISC metadata.xml 356 BLAKE2B e818f63b49f2f21f637f639d1e2d109b82a8d2a0f9545ccd40e91e76e63918915e96b4dc039ef9aa31a23ec4c8a1bc3b1ec6f9dbbac34dc5c0901e2ebeae44b1 SHA512 d9f8ea964ec12728ff8f4e3197f4a1c2f9a993291ade110a95ad7bf27ee5bd44ec751b3aabea4a9075d4b4a951b7d406cd0904b67a85ac47458e6f2822885dd7

View File

@@ -0,0 +1,12 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<upstream>
<remote-id type="pypi">shodan</remote-id>
<maintainer status="unknown">
<email>jmath@shodan.io</email>
<name>John Matherly</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v3.0
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Python library and command-line utility for Shodan (https://developer.shodan.io)"
HOMEPAGE="http://github.com/achillean/shodan-python/tree/master https://pypi.org/project/shodan/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
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
}