shodan: 1.12.0 bump

This commit is contained in:
blshkv 2019-04-08 08:43:19 +08:00
parent 2f963de2b1
commit 11e3da7ae1
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
5 changed files with 34 additions and 25 deletions

View file

@ -1,3 +1,2 @@
DIST psycopg2-binary-2.7.6.1.tar.gz 428649 BLAKE2B 8435b016a6824036b958c673bb194620057b015d8e6b70d8cb5669dfbb02d3ac6360ae9393d381631108e17612ec9891a8ccd1fb796d60c31d2d49fa47164d00 SHA512 3cffc1e831f64bdd3b361a9d5a9f39c1348a87a0b93c0bb09efb9de5f10b4d78fd9ecc1f70c548baffc8b275cda7134118bef515539303212ae8e0bb95b29019
DIST psycopg2-binary-2.7.6.tar.gz 428565 BLAKE2B df7ee3992a04f212c72a9ae58bfbe89f644a6fb2506b347cd617f4bd3f324c9bb6158e5d0447af9f8a2e248425c6d5cf556fd581d44aea04cf176addb178a89c SHA512 c3a1d46b8c3363dd03801791f12be60825627f9ca882272930addda1b35a9ba161627910cf76b8e133903fa1247a1341d240673a5fe0c08252ed0627d195fa47
DIST psycopg2-binary-2.7.7.tar.gz 428751 BLAKE2B e66ae1afc4cb75b23743211d347300bcea3fa6db0b704e50cbe36606290235a2a54cafaf2ddf5c287033b8e5c5f019ca231f85de7c09c949881e72646ed64cba SHA512 728423d800d6eea3f74cebea8fd342055c43ca77a94dfba398b2af34de4fe355e484f0ea7602d9aee69ee6b7f6705e2c4f4965153cf4beee9e56fa5992707299
DIST psycopg2-binary-2.8.1.tar.gz 368918 BLAKE2B 0b80c42b4b69e5d4249a38c5fcbbc6aec22d9df95b480c88dd74fe56d9231dbb82fe1f8b775aa365cd949176002161eb7dced1652aa4e63f31398ee639840fe1 SHA512 3416909a696ead206e6cb50da28f0cbcb1a6bab5e9069b40d22ec8658381cbe013d3b36405d8b6e4b3c778bd5861a81c7e901c2c479ef314b4f5871cef1bb4b0

View file

@ -1,21 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python{2_7,3_6,3_7} )
inherit distutils-r1
DESCRIPTION="PostgreSQL database adapter for the Python programming language"
HOMEPAGE="http://initd.org/psycopg/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"

View file

@ -1,7 +1,7 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EAPI=7
PYTHON_COMPAT=( python{2_7,3_6,3_7} )

View file

@ -1 +1,2 @@
DIST shodan-1.11.1.tar.gz 45943 BLAKE2B f3a3a05a0a76f4b5f78dd21dc1a2b5c3af319b5a07b08e6575a270dbe7c7761541785d0edf7de94592146a85998a395d8dd70f6481024b1f6444d081dc905019 SHA512 7f8ad635823bac5e20aea05743b51b791a13878a8494339a123add5bfbbc1df15a70dac8876c7913a5095dd1519f301b47802d90bba84587b3fa62161b7d4924
DIST shodan-1.12.0.tar.gz 46048 BLAKE2B 0d6e2ae95ed2b9513c4c08f601b053aab95103ec56fecc75998524ced0636d2efa158c8418b1b30da695b479dcb2dad87bc08549b556209b5e90f9f076b871be SHA512 8c228cfe10fbc2e3f48282c44a76a168cb65b270ffa58856d8aad62b7485a0d8d220621fd61387a8ea690991bb2551998266c2770ba94686f355fb1d2773b24d

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
}