update pyhiveapi-0.5.4

This commit is contained in:
Andreas Billmeier 2022-06-01 01:36:20 +02:00 committed by Andreas Billmeier
parent f9a2be18f9
commit fbdccb25f9
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
5 changed files with 49 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 1759 Ebuilds in total, 1752 of them have in total 1759 (35 different) licenses assigned.
There are 1760 Ebuilds in total, 1753 of them have in total 1760 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1072|
|MIT|1073|
|Apache-2.0|317|
|GPL-3|108|
|BSD|98|

View File

@ -1,3 +1,5 @@
DIST pyhiveapi-0.4.2.tar.gz 36380 BLAKE2B c45ea98fc6f23f72875552146dc9ee1d8b9c8bf44cb79be051bac3af034dc84761e7738bc75ae5732a45d4a40e3aa8f34c29f54328e12d803d18d8bd99b8c42e SHA512 dd97bf1a3611cf0752dcc5c7c0355d3753698b243f6976cfaad825b186acfcf1f989970f4d99525317e4b172dc44c6c26a27baa56718a75410c3c90c237dcd6e
EBUILD pyhiveapi-0.4.2.ebuild 953 BLAKE2B 568b3a8dc0942ff9f878080f1f0c82d89d5d2f09e738bf3685876078f430ab4943d4fc3057e28a5cd6d4603c663daf08a46a15973e9a605021ab86eeb535084c SHA512 156688ccd3c1285f3cca12f54c2812061521ebc3672dada9b68de5cbaac8e37476b114aedf999371cbe21b0eb19f59da8af10c8d8638b1a49db3791ebd277391
DIST pyhiveapi-0.5.4.tar.gz 40310 BLAKE2B fa607bf3ca172dc9cdbd0721f48439f8e659c093c9bb8be76ffd489f224d7feee7b87ec1ce9de261bc22feb8fedfe22689215556b0142b24d82fa1a31c807d22 SHA512 ea5aa84211e8c6fbc27bf4af135c8f243a13b613c2eee93077e1e90570580b96358aef8d84aadea2c2892b59750fdf50a08fbfa92039a9a8f0e0734e1514fb80
EBUILD pyhiveapi-0.4.2.ebuild 951 BLAKE2B 3e8bc65635ff88a8fcf063935c50b3b27a01014c5b1f6e0d851228be49926c8bb195fdc58e1a0ec26fda88a6c7be6ae10a71f9b668c2931001f62aa6c967251d SHA512 4a39e92b177b83c0d09b2639a9d62e31321e956e64a87601ae400cfed9e13e2ce5cc3976494e6184839a01847f272a7da12df28dc4ddcb2917e141fa4e6e3d90
EBUILD pyhiveapi-0.5.4.ebuild 1053 BLAKE2B 4cfa578ae6e6f76c0539a3c34a038012e98e14701b025400059fd1eb8228ececb1539f61b92c9c197dd853e17ee0d385d1bc0956ce51db74e6d9315ba1d3b609 SHA512 73202c89ce4e77e3f69487a9f0bc1e3095be17592691a9f68305f9b5fb5864f7ac464fa5ee00052159fc5158094e5c9e9992610ec00bf35f78e6150ed5b4f798
MISC metadata.xml 448 BLAKE2B e53ffdabdd7118dd92566dcc48ad9919fe96554a2518d84888c0f553922f1faa324f34db62ba0c6f54859917ebd30f219010902eed4675500c62e76d866589be SHA512 fdcda3f6ab4a1dedfc1096ee29a795a20b65d030c92e4768ea25885342479295b82caa915164662f209c04495f99a7cd1734f211734f260a18601a75e680189a

View File

@ -1,7 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )

View File

@ -0,0 +1,42 @@
# 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="A Python library to interface with the Hive API"
HOMEPAGE="https://github.com/Pyhive/pyhiveapi https://pypi.org/project/pyhiveapi/"
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"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/pyquery[${PYTHON_USEDEP}]
dev-python/boto3[${PYTHON_USEDEP}]
dev-python/botocore[${PYTHON_USEDEP}]
dev-python/pyquery[${PYTHON_USEDEP}]
dev-python/unasync[${PYTHON_USEDEP}]
dev-python/loguru[${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
}
distutils_enable_tests pytest

View File

@ -22,6 +22,7 @@ net-analyzer/fail2ban ~amd64
=dev-python/humanfriendly-10.0 ~amd64
=dev-python/imageio-2.16.1 ~amd64
=dev-python/jinja-3.1.2 ~amd64
=dev-python/loguru-0.6.0 ~amd64
=dev-python/mediafile-0.9.0-r1 ~amd64
=dev-python/mypy-0.942 ~amd64
=dev-python/pillow-9.1.1 ~amd64