add (old) shodan-1.11.0.ebuild

This commit is contained in:
Andreas Billmeier 2019-02-27 18:00:11 +01:00
parent 6cbd68439f
commit 64ef1bf352
2 changed files with 32 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST shodan-1.11.0.tar.gz 45855 BLAKE2B 6def888ad21f92cfb9bf7ad869dc9bcbdae88b9b399b1d1937877583242b6c9fd6a674a8415acc44c7af700c580cb208fb9dcee5b12862b5b72fd19cdbaea705 SHA512 945b0ba026b4a0a030a470216ae00073f10397688dff55a8e07f4f1b3113fae6d2d4d026d5415edd6b009e11f455a570a013215fa941786a4002fa77ce9b6ff6
DIST shodan-1.11.1.tar.gz 45943 BLAKE2B f3a3a05a0a76f4b5f78dd21dc1a2b5c3af319b5a07b08e6575a270dbe7c7761541785d0edf7de94592146a85998a395d8dd70f6481024b1f6444d081dc905019 SHA512 7f8ad635823bac5e20aea05743b51b791a13878a8494339a123add5bfbbc1df15a70dac8876c7913a5095dd1519f301b47802d90bba84587b3fa62161b7d4924
EBUILD shodan-1.11.0.ebuild 728 BLAKE2B 63b3a604f1104aaab9440c2e7e91a238ed9400ab503d66440581ed040902458ee4b74982b2366efbde04a30ad51659b489d352c78d91be66df82e0c566984513 SHA512 e17bd0bc020143f953c0cb3469c968892624c7e0ef10003982faa6b9319805246a25a9a468e54d8d40a70c73a48e16faaa3b9117b508564c5c19780f49a61a06
EBUILD shodan-1.11.1.ebuild 728 BLAKE2B 63b3a604f1104aaab9440c2e7e91a238ed9400ab503d66440581ed040902458ee4b74982b2366efbde04a30ad51659b489d352c78d91be66df82e0c566984513 SHA512 e17bd0bc020143f953c0cb3469c968892624c7e0ef10003982faa6b9319805246a25a9a468e54d8d40a70c73a48e16faaa3b9117b508564c5c19780f49a61a06
MISC metadata.xml 356 BLAKE2B e818f63b49f2f21f637f639d1e2d109b82a8d2a0f9545ccd40e91e76e63918915e96b4dc039ef9aa31a23ec4c8a1bc3b1ec6f9dbbac34dc5c0901e2ebeae44b1 SHA512 d9f8ea964ec12728ff8f4e3197f4a1c2f9a993291ade110a95ad7bf27ee5bd44ec751b3aabea4a9075d4b4a951b7d406cd0904b67a85ac47458e6f2822885dd7

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
}