add whois-0.9.13

This commit is contained in:
Andreas Billmeier 2022-01-29 10:44:21 +01:00 committed by Andreas Billmeier
parent 8fff9aa112
commit 05defe259d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST whois-0.9.13.tar.gz 9161 BLAKE2B f4ffa19a248e30d420aa2f7f4e7eef174dfb0491c7e64d2661e1013ed96422e904a0c024ce1fd106450dfbb445b76c4879c0ed818beb6b3c87b10ffa889c6a60 SHA512 5ee37d239b616076049f9d25fe47a5e820dcb4ade6276792a217e284bccc8a4aa8f34a6727da3c0e620eb06c453f736fecb405237be61ad143ffbdc199c00b70
EBUILD whois-0.9.13.ebuild 714 BLAKE2B b7da2081cd4d3cdaccccd324240fca63f557382c85a39848488d86e11bb18a81ad9fbba50195ff4e4823c19ea70f430e4a9c77418ebe5236a704f901e066d900 SHA512 2afc755406d91260a16e73d7c3c3e8f3810dbe4e0497b8e2b26dd4a0db9a742575a16b3dd40d8b7e16d4e56c459570852f557c6b3faad16dbc2052b47592ed37
MISC metadata.xml 444 BLAKE2B 4a955ec6172dd6f44f6a91d14578ed2696c6bc87e72cae600d6b1639d1ea91f58a8c7cfa135f541dc3a14494114bd5fdfb7a2563752a6562d186a5fddb6cf50c SHA512 2bb4948f019c33faf2869b5bcc439442bdd028ab99396108aae04ca7c782990a69257dd67a6affcb69eeeda06583db8b520aaca828c2b3251db690a5986e3d91

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">whois</remote-id>
<maintainer status="unknown">
<email>ddarko@ddarko.org</email>
<name>DannyCork</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
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 ~amd64-linux ~x86-linux"
IUSE="test"
#DOCS="README.md"
RDEPEND=""
BDEPEND="
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
}