bump whois-0.9.16

This commit is contained in:
Andreas Billmeier 2022-07-17 08:44:18 +02:00 committed by Andreas Billmeier
parent 46d868a4b5
commit 24aa76a961
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 39 additions and 4 deletions

View File

@ -524,11 +524,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 1767 Ebuilds in total, 1760 of them have in total 1769 (35 different) licenses assigned.
There are 1768 Ebuilds in total, 1761 of them have in total 1770 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1081|
|MIT|1082|
|Apache-2.0|315|
|GPL-3|106|
|BSD|102|

View File

@ -1,3 +1,5 @@
DIST whois-0.9.13.tar.gz 9161 BLAKE2B f4ffa19a248e30d420aa2f7f4e7eef174dfb0491c7e64d2661e1013ed96422e904a0c024ce1fd106450dfbb445b76c4879c0ed818beb6b3c87b10ffa889c6a60 SHA512 5ee37d239b616076049f9d25fe47a5e820dcb4ade6276792a217e284bccc8a4aa8f34a6727da3c0e620eb06c453f736fecb405237be61ad143ffbdc199c00b70
EBUILD whois-0.9.13-r1.ebuild 779 BLAKE2B c935c49130d8607522b0ee4bfebd79b5428d2b16ea71b390fce9a5ab9abd7da5d2ff1b4bf0ac0eb45fa72f1f5df81f135d11d39749ab6cb51a62d1cc6aee103d SHA512 4d6d880f1426c67c9adc08a76cbecfe7ac97dfd09c01e362a72762ac40a96e31255b197b3576098648d0d3c86715eda8896e15fde44d976784ad073870ae2d55
DIST whois-0.9.16.tar.gz 16864 BLAKE2B df0b2ad415611e0197a29fd73c9a300af44b775a14722cbc886bd3de82bce9bb2bb6e24f15b8299ff14bf7c874305d0d7996b82b84071bb0555757f0ee5e9210 SHA512 6295f773d05def5c873859612e1f56bf784a79409adac3513cfc01f154d5dddb4d64f565896ccffea6405e55b9077b2f5b1072d07656124650384c43bf2a9c4f
EBUILD whois-0.9.13-r1.ebuild 755 BLAKE2B 7bb1d5e1d761641e4ae9e8b98317a85cf7d6d991893d7d15a10d436827338ed787fcc9647967a154904ffe06e6d84345c1c3a39064f82bc9081b72c10d1ecceb SHA512 e262d4a79a5c4f478c0b8ac6fdbb6380cdd56b93a887ba9dd5221020e4ae9b31d7eb91b2061c10ed6b34e25c0ed1918d0595d04a3874f62ae0532784a767b4c8
EBUILD whois-0.9.16.ebuild 755 BLAKE2B 7bb1d5e1d761641e4ae9e8b98317a85cf7d6d991893d7d15a10d436827338ed787fcc9647967a154904ffe06e6d84345c1c3a39064f82bc9081b72c10d1ecceb SHA512 e262d4a79a5c4f478c0b8ac6fdbb6380cdd56b93a887ba9dd5221020e4ae9b31d7eb91b2061c10ed6b34e25c0ed1918d0595d04a3874f62ae0532784a767b4c8
MISC metadata.xml 444 BLAKE2B 4a955ec6172dd6f44f6a91d14578ed2696c6bc87e72cae600d6b1639d1ea91f58a8c7cfa135f541dc3a14494114bd5fdfb7a2563752a6562d186a5fddb6cf50c SHA512 2bb4948f019c33faf2869b5bcc439442bdd028ab99396108aae04ca7c782990a69257dd67a6affcb69eeeda06583db8b520aaca828c2b3251db690a5986e3d91

View File

@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"

View File

@ -0,0 +1,33 @@
# 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"
IUSE="test"
RESTRICT="!test? ( test )"
#DOCS="README.md"
RDEPEND="!dev-python/python-whois[${PYTHON_USEDEP}]"
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
}