dev-python/androidtv: bump androidtv-0.0.69

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2022-10-30 13:28:55 +01:00 committed by Andreas Billmeier
parent f43e900c80
commit 74638e4ada
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 40 additions and 2 deletions

View File

@ -548,11 +548,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 1445 Ebuilds in total, 1438 of them have in total 1447 (34 different) licenses assigned.
There are 1446 Ebuilds in total, 1439 of them have in total 1448 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|840|
|MIT|841|
|Apache-2.0|291|
|GPL-3|91|
|BSD|86|

View File

@ -1,3 +1,5 @@
DIST androidtv-0.0.67.tar.gz 36352 BLAKE2B 778925f01d72f882e332fcc3cd3eca95f4f96a2755331d85047e733879e8a69b4ba0f3864846b812b78de33d66825197bd431b0cf15cb05c6c7a4b0e4fad596c SHA512 ff50e2df1c122b68d09b1536a55f81f78f552a8da4a74b38014c0f9d51b4c59ffead791eec8e26b1d780c79c0a58f188120816306d75b6666a8b9b0dad115b20
DIST androidtv-0.0.69.tar.gz 33560 BLAKE2B ba4de5411184ef665d10f7bb2542d320405ba01a17800e5ec72017babd7ffa88447db9a792c29a7a79c6e964cafaab61b11625a4e36cbb137b4611f889d3daf6 SHA512 d4513e07194de4005be5aaeaf370e0c4420dbc75d77f14e35b442e8eb72aafd549b677da0474df938e737b6dea035e81589feb96b5c4b445fee28bfdd1db3d4b
EBUILD androidtv-0.0.67.ebuild 906 BLAKE2B 07fa5224561430765c74090d8474845ad12326ce4f1e3260ce4f4f07b3a1fd2762e03d1e550dfc7c535fc1d1cc7d345da4f90986117fe63648709c02857b4745 SHA512 ad1d216edb6dfd8f6e8aa5760d0248465b6a7662ed0bfd2e03ba36fb3a262bfb1cd960675bc889f4477f3b695f6d765b26ff4f73356c79a6ddcf3b2ff222a38a
EBUILD androidtv-0.0.69.ebuild 906 BLAKE2B 07fa5224561430765c74090d8474845ad12326ce4f1e3260ce4f4f07b3a1fd2762e03d1e550dfc7c535fc1d1cc7d345da4f90986117fe63648709c02857b4745 SHA512 ad1d216edb6dfd8f6e8aa5760d0248465b6a7662ed0bfd2e03ba36fb3a262bfb1cd960675bc889f4477f3b695f6d765b26ff4f73356c79a6ddcf3b2ff222a38a
MISC metadata.xml 467 BLAKE2B a18a44a1d761dd7d94f98375f0dc6607a4c0bc8414fea37cb0c952974275146c4bf4ebe4d1a62e72a514690d3c4eac92997dcb99dccf1ae42507a05458377698 SHA512 2aa06e706fb50e8766d201d65c6681f0051606b8d58836c3b9fe35f9edd43e0c9555b19ebc2b6337cca81cbb7a15f461ed808a7bce04d0add549de15ceab23e5

View File

@ -0,0 +1,36 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="Communicate with an Android TV or Fire TV device via ADB over a network."
HOMEPAGE="https://github.com/JeffLIrion/python-androidtv/ https://pypi.org/project/androidtv/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test usb"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/pure-python-adb-0.3.0[${PYTHON_USEDEP}]
>=dev-python/adb-shell-0.4.0[${PYTHON_USEDEP}]
>=dev-python/adb-shell-0.4.0[usb?,${PYTHON_USEDEP}]
>=dev-python/aiofiles-0.4.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