dev-python/python-opensky: new package, add 0.2.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-10-20 16:59:44 +02:00 committed by Andreas Billmeier
parent 18bf7348e0
commit a517475c95
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST python_opensky-0.2.0.tar.gz 10922 BLAKE2B c7880f7c87295e090f37dfd83b04ae44ddafda13b0f30ba2e7ba92acd3c0c41e72e6e30dedd3d8c3305ad28651b5193434e1a584e5827a72610c19d9ed4cc75f SHA512 108578b8d9550cd0a4de4090dd6e2d527d1539e6efb55e8622b40f62c6a4f5ad7da36b60adf0baddcbeb13de585c26f78fe568f8db6b62203fd7835ce4324920
EBUILD python-opensky-0.2.0.ebuild 748 BLAKE2B 239069d5e610cf95013da2ae7156b67517f83c416a1c9c1b577a32b93e3d3b1ebeba72ced5c386074b8dd058383be2cee031241ae230f086218889f1ddbd7de0 SHA512 bad76c204a229edc9d23ae17eab95d9e29f7efa689546d0588e1675a53e8114c57b90ac180621b2697aa7f1e095b532e7f7a8d94531da42bcdc5cda923a970b2
MISC metadata.xml 530 BLAKE2B 7d67addd27b2ea321294d2b1b39899b9e08b17cef889f7ecf123c2eb71c0b5e563a891b53423f77c61e6b3c4c129ed6719e24b0710762386568aee317af6008d SHA512 c6e07e53f4c7587b75555db709e5c4811e602ad099566065d845980ab6d4b5ac7b81323ee4b225d544f94a32dfafd30f2d419baa1dcf74abfc479acf487e8d52

View File

@ -0,0 +1,16 @@
<?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">python-opensky</remote-id>
<remote-id type="github">joostlek/python-opensky</remote-id>
<maintainer status="unknown">
<email>joostlek@outlook.com</email>
<name>Joost Lekkerkerker</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,33 @@
# 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/pydantic-1.10.8[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest