update python-whois-0.7.3

This commit is contained in:
Andreas Billmeier 2020-08-24 23:06:06 +02:00 committed by Andreas Billmeier
parent 4f95b6d0a9
commit 3e34c81c95
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 0 deletions

View File

@ -26,6 +26,7 @@
* add python-http-client-3.3.1
* add starkbank-ecdsa-1.0.0
* update sendgrid-6.4.6
* update python-whois-0.7.3
2020-08-16
* update esphome-1.15.0_beta3 (experimental)

View File

@ -1,5 +1,7 @@
DIST python-whois-0.7.1.tar.gz 83403 BLAKE2B 16d1faac41e1679001210dbf6e347068d14989f9b83a4446dd680e414547dd5cf34714151115452d800b4bfb7a26b4449e210499f9e1b7cb87fb515d75563483 SHA512 b5954b92c72fa03a8dab01cddae85a7f964cca3f72820788140e75c8702ead7884ebefdaf95c50efd2992efc7966c287a5ea66220b44348827d35d62bd9b4494
DIST python-whois-0.7.2.tar.gz 90030 BLAKE2B e851e45ca0f342c89fdf8e48bfa3972d64db2b8a9e74985d07006ad2ec1deefc430068b25334c3cbde5f5f38e0f1acc69116b94fdf041d97a0cf4795b34de756 SHA512 9f0b0ceedac13b8c4f51389063096819b6aef2b3454c297ca7497dbe78800447e39f61e42fefec84994070ef0d10d75a4342d99a9dc5d76b711b21da0e76f1b6
DIST python-whois-0.7.3.tar.gz 91507 BLAKE2B 5ea312de8c9beeff0d8626deb5fd1c8100940531fdaf3dd9c357c24d2a8043a6a5c508f3b722d42296aaeb3b529d248de1f7ed726b3fcac992f12e9c38415a9c SHA512 59ef578d7611f8925449dd837c8f77982eeffb2e5454ed2f893596dfc73dd984d52d1e5e557d3424bca136b40ff14e720e55feb424692c448e94fee6cd65cdc2
EBUILD python-whois-0.7.1.ebuild 703 BLAKE2B bf105dbcd5ff573dbfbf5ba67e6d5b203fab6d033c634eb6fa9bdf18a37190ea5cc7f5282ad974191d342ac045eae784d5df7a4918388b7fe7e9d7aaf0cb319b SHA512 f35554ecefe0bddba461259706fe69cb8981859f60eec8728f2f1230f213024c4555c572947998b12f314f27429c6e4ef87383ec3d38adf77b2f6d785fa6de3c
EBUILD python-whois-0.7.2.ebuild 710 BLAKE2B 039a17d00e53c7b4196739b938ae594c26ec122ece9b7b8a5bacd868e512258df96f274d392983224a4b3ed2bd0c50790f019ae1434c852a87ab764828c16de2 SHA512 b3b4fddcb3d329f5b0ff5392b9ea233150316a5096257a78cc48678301e07416a364c78481334796de980215b081e6742fb42154f36d74e7722e373bed7dd37d
EBUILD python-whois-0.7.3.ebuild 791 BLAKE2B 66b47b84aea95ff46e7ba125c83147270ab3f45797b09ff1f0196f9d0a3458d73ad92ba145c9bbc9bc1e6c62ab1db0a92002efae8df866cc91d782542c1d4076 SHA512 9f0b97e9e7221d804e0fe4319d8d1692044d1585615f1cca5c5c7b690e56ca76378b0897b4a07b33eb2846cdcb60493bf4d61a8425461cb98bb842db08bb00be
MISC metadata.xml 463 BLAKE2B e8da73cab49f6f2911b6c3887da7101459daaeba8ef14b2fb461ed4eb88ca3b0dcaec2a56176941c8d2a70ec7d45472c3c42ce69384bf336fc2983acfa48d17c SHA512 0167048e15b78d9105056ccd1f0dc33eb287160a4b4b5a9277a8f5abb9b238a570a97fd7e451d502ec766553774d3bcd67d61ed7dc9336f7273503bd612bf095

View File

@ -0,0 +1,31 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Whois querying and parsing of domain registration information."
HOMEPAGE="https://github.com/richardpenman/pywhois https://pypi.org/project/python-whois/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/future[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]"
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
}