dev-python/python-opensky: drop 0.2.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-12 20:41:48 +02:00
parent f1cb51790b
commit 01ed150849
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 5 additions and 40 deletions

View File

@ -617,11 +617,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 1840 Ebuilds in total, 1829 of them have in total 1849 (42 different) licenses assigned.
There are 1836 Ebuilds in total, 1825 of them have in total 1845 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1045|
|MIT|1041|
|Apache-2.0|410|
|GPL-3|119|
|BSD|105|

View File

@ -1,5 +1,3 @@
DIST python-opensky-1.0.0.gh.tar.gz 62415 BLAKE2B 4b44220a54c5af27f27748fcc63fec55beb8a92e639bf99a6f495014bd54335924fada4f7b7a0523b9260c3ad17c14f20f2896686632af08fa4af26a9f11c9e9 SHA512 5133c1a40c9f7ee0d4c06dc165470706b63b8820ca0094e6717e6927cc1107a99eed12475868ffd469f5274614477c05c8539a31754f99845fd722f79ac6a821
DIST python_opensky-0.2.1.tar.gz 11671 BLAKE2B 0e15bf205995d56407dfe75f5cb298c33d8ab0ebd946501af041d0fa5efeb14edb773e7253deaf6cd192f07339b3a8353a15c266aec003d59b7b3f08853f8162 SHA512 466904e368f14ebc49c26b00c5b915bf69e841abdc95db368c3d7a5140c48d047a45c943b14938f0c64baf99ea153e93388975a44c7f3dce8f804c5827820bfb
EBUILD python-opensky-0.2.1.ebuild 745 BLAKE2B 0a180a0e8a226f327b30f3bd104d7e5d9900d288452eaf40a9c38b9ee29a0e6a28e33cd9cef2e75663467fa745a5e42696dd8becec31c3c55efe7e62432989b2 SHA512 91364ada8d899fab1c48e3c5467396174a5b1aa9e2f45c42f400ea0844de719ee245daa519f1acca3d99d24414f2d3214ae8ac9c4bcd6b4da98be6dbfa75a402
EBUILD python-opensky-1.0.0.ebuild 974 BLAKE2B 70b59f9aa3739af44e48dbb761c0f88fb0cf044cdfbf3eb7a05f33b73267fd16a59fc1e3b6983ceef5c740ae1436d4716c5d382587814b5eb0c1bf23f2218d43 SHA512 f5d5da05b9813f0d644724e3a61fb7482d6738142fd12693f80ab1a6e34a20662449c1d5181dba21664ec9519eadeb54af49baa5e7753007167aca563edd6f03
EBUILD python-opensky-1.0.0.ebuild 974 BLAKE2B 68254e1a3d424a2d61dfeb4b3ff36f1bc45ea53a1eadabf12241a1a85538c9586df1cde8a4e3556ac8083ea988f46f42fda52c95c999c068b00f152da4801ca1 SHA512 3863b932331fa5d670ab67080e27e2e757a5c3166772f35ba7a955c3b39cdab1e2ffce377178b5073f31c34af22cb99693ec3ce2aa03cbb974a7d0489a552b1d
MISC metadata.xml 530 BLAKE2B d18c629e5c557efb3f45a792d22885b65f95efe8dd84ba35efacbab80ba5706411b66cbf31e11e48a5ccc247a75f5d4d8d3d5b58f4ec80f3cd34525df87bbaf8 SHA512 f7c887f7f43ca71e109d4f453192ec9cf7431e63d45b2030c2d190d38cb98c1cdd9b7b1d6e724ed352698304cf2c1f05b7ebec1eff248bb0ecc3ffca04b26ce1

View File

@ -1,33 +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=poetry
inherit distutils-r1 pypi
DESCRIPTION="Asynchronous Python client for Opensky API."
HOMEPAGE="https://github.com/joostlek/python-opensky https://pypi.org/project/python-opensky/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}]
>=dev-python/yarl-1.6.0[${PYTHON_USEDEP}]
>=dev-python/syrupy-4.5.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
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=poetry
inherit distutils-r1