dev-python/pychromecast: add 13.0.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2022-12-12 22:32:15 +01:00 committed by Andreas Billmeier
parent 85a98ca4c9
commit bc491baca9
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 39 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST PyChromecast-13.0.1.tar.gz 51576 BLAKE2B d8a219b18fa96ed7842c9ffbef94b4fa4f87e3dda0675040a6500d22c91769eb97661c2c6ecbee939cdb11bc0ac3c2e9ba70e0909686422d2674c73e8296120a SHA512 86c4119dcd53128c5919627aeb55eb153332826b5b2f8855c59e367098db5201a6f870a8d7a95029393a9522d415ce89e659619608ab11c6cd932b09f694f3a5
DIST PyChromecast-13.0.2.tar.gz 51966 BLAKE2B f29a9fa63e263b8a20ec5fa2bcdda8dd80d9d76d896bcba067458f77a520cb037826328055ecbfd0556a1ad256ae924958fb6bb238d072164f93eeaa9aa70a03 SHA512 04be2e144f148641b5df7c8863280ca9e1bf2ab0e6d56847c91fb38de6e0a8f8e38be1cdcae38a68087fa5da4bf88efe6298bf36c42ec656cb0a01045d3b8b3f
EBUILD pychromecast-13.0.1.ebuild 923 BLAKE2B 7cee724fd69f173d22dcc3cd3bad73d45c12f47bfb102a7ddc972ab54119eb8f781069eae4cc07e138a9501c55933780dfe8730f6d6b129a4ef39108c2f36a89 SHA512 2096646c529d8e0c47958c1547c9ebe070d97a46f8c8963e9726b03c70a276fec1f22858d8ece4b24e259dc31b1ef325e914feacdc97e14ee9df265df57a8595
EBUILD pychromecast-13.0.2.ebuild 922 BLAKE2B 2ca3c2635d38fcbb22be126d917b9caea8fd59234009a639672b5a62f80e8bbd2cbfab37cb1a70d9a9cd07a755a41744e9a7e5a7e4299527847e7f6221c19a31 SHA512 4c50ba7ce0f1ca7d5c276894a417bde24a4e20647082c6c3f5376d4c06dfa9323402abbc481c9c11b925452c9cea0f792f20cc85ca3ab724a2fc53b4f7272297
MISC metadata.xml 528 BLAKE2B 5dafc67b7558de5f6aefff40101dd255a3932d7ec749d8b61ce57c8ce634ac10270abba4d348bb105825e9bdb94b71a2734a215611529d2cd3bbcd4c33895fb7 SHA512 d9358eee788b75b13d5ac513af4f5342eb8dcd0efb49b1eb60fc48bae5bc4f54f1ad38f67c5a228f733a8db292bfe2fda045467d395815fc75bde051c157dfc7

View File

@ -0,0 +1,37 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Python module to talk to Google Chromecast."
HOMEPAGE="https://github.com/balloob/pychromecast https://pypi.org/project/PyChromecast/"
MY_PN="PyChromecast"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/protobuf-python-3.19.1[${PYTHON_USEDEP}]
>=dev-python/python-zeroconf-0.25.1[${PYTHON_USEDEP}]
>=dev-python/casttube-0.2.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest