dev-python/pyhiveapi: drop olds

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-12 18:36:28 +02:00
parent aa25a64a63
commit dc66a58df1
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 7 additions and 39 deletions

View File

@ -617,13 +617,13 @@ 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 1864 Ebuilds in total, 1853 of them have in total 1873 (42 different) licenses assigned.
There are 1861 Ebuilds in total, 1850 of them have in total 1870 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1058|
|Apache-2.0|412|
|GPL-3|126|
|MIT|1057|
|Apache-2.0|411|
|GPL-3|125|
|BSD|105|
|LGPL-3|26|
|GPL-2|21|

View File

@ -1,5 +1,3 @@
DIST pyhiveapi-0.5.14.tar.gz 40441 BLAKE2B bfa71c578e502598687441986593e7461d3f5a4d6c4afa0749954f9229011d0d3f103465c0fbdff791af70aa75718a7af697767800c4aa61bac1ae31cb39abf7 SHA512 0c18c8caffe5427c6ad1d47683fedba9b24787739171b14ce8a3c4aabbf9d1171dd220d019017945c8be28bb9e35e841201e3bc04652e2e617c8f29550328542
DIST pyhiveapi-0.5.16.tar.gz 40801 BLAKE2B 081df80f741d8c04fc827775da87312de9ecf37c50e340ce37d388ba5ee8d0aec4f2b1f3b059840cb08e613ff6ffb7f9450b2d5eba8d6094187bd7c0a708c179 SHA512 ce8f2c0ee02fb75b39d8b986139ebb4f943c2dec5310b18deff7999037d46cce996629ae340d55d5a90b5df110ad31b054638cb5cf376040df0dff08699fae6a
EBUILD pyhiveapi-0.5.14.ebuild 808 BLAKE2B 6c0cbd6ceecb1f99fd1336bd702ecf02c652ce3186dbb68bcc204872474d330dafd7f239d39c1d9d0ceab0245807d5273a5d9c5beac2aafa88d9af3e1f55d420 SHA512 13e972ee12bc0b2864b65e8e512cef5727663003ef76940954486ef23dc9a7c5312d1f24277dc1fea2f46ed5f15aa0fdcca45782294ea6c4245b52240f143ef6
EBUILD pyhiveapi-0.5.16.ebuild 808 BLAKE2B 6c0cbd6ceecb1f99fd1336bd702ecf02c652ce3186dbb68bcc204872474d330dafd7f239d39c1d9d0ceab0245807d5273a5d9c5beac2aafa88d9af3e1f55d420 SHA512 13e972ee12bc0b2864b65e8e512cef5727663003ef76940954486ef23dc9a7c5312d1f24277dc1fea2f46ed5f15aa0fdcca45782294ea6c4245b52240f143ef6
EBUILD pyhiveapi-0.5.16.ebuild 808 BLAKE2B c68be88eb3ee968ea2119a00c4aa2df8119d3e9a7fdd21db6cbc8e2b0203d80b1468c3402452d42e6cfd10b157c4536fb4f08b1c308132768b0c60a7a2d2ec11 SHA512 77347709b0531d03168e32d5e804aa011024a0a9abf0ed61a1e63f29158c05cda66a3ef08404ec33cf9469073aa22ff62ca4f9275fcb0f9ca720cca59dc9fdf4
MISC metadata.xml 506 BLAKE2B c429aba5ea9b69c72262cf310ea2ab7be50277666048447204aa1b933633b4ce3391c1ae77b44a8bf6f6e3925bca1cb8c243ca6f7b53391b056c5fd3702fc851 SHA512 04f92df9f4d6e6bc73c5bebd19bd13ed37f009a3561960016db0edf20ce547c015941d46d61131aefcd27b04caccff3ded3b2efea22d578d3a8672872dd20de6

View File

@ -1,30 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="A Python library to interface with the Hive API"
HOMEPAGE="https://github.com/Pyhive/pyhiveapi https://pypi.org/project/pyhiveapi/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
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}]"
distutils_enable_tests pytest

View File

@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi