dev-python/whois: add 0.9.23

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-02-12 09:39:01 +01:00 committed by Andreas Billmeier
parent dafc5c7c39
commit 667906565c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 34 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST whois-0.9.16.tar.gz 16864 BLAKE2B df0b2ad415611e0197a29fd73c9a300af44b775a14722cbc886bd3de82bce9bb2bb6e24f15b8299ff14bf7c874305d0d7996b82b84071bb0555757f0ee5e9210 SHA512 6295f773d05def5c873859612e1f56bf784a79409adac3513cfc01f154d5dddb4d64f565896ccffea6405e55b9077b2f5b1072d07656124650384c43bf2a9c4f
DIST whois-0.9.23.tar.gz 24458 BLAKE2B 2c10a57fdbae82ae894a144c6b0b84d4d9f2bfb75b87cf1a20b1ef389b5e7785ebd90ecf7a147d734d4b4330199606454f42f2f4565560a649dbb8c4c5c16fd4 SHA512 703948bc6b3304e2acb64b33516ebaa00fd9db71346ab04642bcd02095164246a09bc43d8bcfbcf6f83020225b6260489eecf4e40fca965550f0f2e4b3172a6c
EBUILD whois-0.9.16.ebuild 669 BLAKE2B fa7430529dd0cd5ed1da318160c278902d6b7f002d24bc30084ea92320e1c10ec2941d75a7af69bf9572809338707f99139c43d1b4b5c980efac72f5e7e8034f SHA512 081355740adf2bb7ef961179febcae4b20a6be5cdaf062ef7175a65c501cc213551d02eee6242b7cec4bea4cdb1de9ac936d2ce4759a7ff133dd1d9092423cce
EBUILD whois-0.9.23.ebuild 700 BLAKE2B 6e6bfcf924776431b4a2d976740387760710ca35ad2d748e25ed8394df3f808336499abe1e12f87b05420d59f617b4a90ac27918808ea75feb13d715f1e76bad SHA512 a285dac610ee4f1f5974ca4442558c4eb0075f6fbe9ecc3ae4926ec771386b0928b9dac8714700d9c96eb632116366d89f6ce0602444eb7e2c1546455dd36795
MISC metadata.xml 508 BLAKE2B fbded45feac30901115dc71605030b74cca00151b7cbe7eae1a962564e571b71a5b0911f20d183ff17a677c204f7e84ba8b9493a288ef2fe6b91e241ff0aab2d SHA512 7e23ba622f7c8003f47e70f143029f9cd64668cf63d99bad9a608e2577830b0d7e37d655055ffe6d94a0343ef922ecfa1d278ec12a48eee599517976f79be791

View File

@ -0,0 +1,32 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Python package for retrieving WHOIS information of domains."
HOMEPAGE="https://github.com/DannyCork/python-whois/ https://pypi.org/project/whois/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
#DOCS="README.md"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest