dev-python/youtubeaio: new package, add 1.1.5

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-10-11 18:56:03 +02:00 committed by Andreas Billmeier
parent 0f6d62a9ba
commit 0b990267b3
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST youtubeaio-1.1.5.tar.gz 13181 BLAKE2B 10d948bc907a6ab41e2e0d80f307463a7d33b85a7e3673b42c0af755feaaa5f0bc4e0ae2d864b1614757087c292686c5d2d6cd0af9c974726b75b6f70c00e7af SHA512 aa658333198b5d181e9348c13541041339a54df3cf7380215d34c4b89f64ea06b2660917646685f0c9d5e6c829ccd2c9b712f135a4fc2ec6d8a1eb1c3d583bc2
EBUILD youtubeaio-1.1.5.ebuild 835 BLAKE2B a6342ef63e40e6f5b04d4565a99ef93600fcb5a11830eb92452b95a52ff2ca14836757cf963a9e8af8fd540f6c5d105a5b79cede23034ef61fd0cc92a9dcdb95 SHA512 ef57e6cbfa35c10a044e3ffee59c4339d8983eeab0767577e70bb818f98eb87fe8899929d34fa6a507ed825c62e1b9709fd11cf2ccd262fc6cd6a4fe959db905
MISC metadata.xml 526 BLAKE2B 629612fb1865a58dbf99d5e96762b800e0b6aaeed4fbfec96474670cd3322b45ee8115c67d8bf4412c5050d16824f5de44387ec2390b53716531990b8bc1af77 SHA512 f0988aa7212a2408cf5ca2e27944e7612f230fc99bbe7ef7c53c72ab0ea9f231d4601e7d1def6dd5691173ee7ef8c00d1b477400204e05c29ff5ac6f0a80eabc

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">youtubeaio</remote-id>
<remote-id type="github">joostlek/python-youtube</remote-id>
<maintainer status="unknown">
<email>joostlek@outlook.com</email>
<name>Joost Lekkerkerker</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,35 @@
# 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 YouTube V3 API."
HOMEPAGE="https://github.com/joostlek/python-youtube https://pypi.org/project/youtubeaio/"
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/aresponses[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest