dev-python/androidtvremote2: add 0.1.1

Closes: #3380
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-06-24 00:03:32 +02:00
parent ced968e3a4
commit 543890d11c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 2 deletions

View File

@ -606,12 +606,12 @@ 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 1933 Ebuilds in total, 1922 of them have in total 1945 (42 different) licenses assigned.
There are 1934 Ebuilds in total, 1923 of them have in total 1946 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1109|
|Apache-2.0|434|
|Apache-2.0|435|
|GPL-3|114|
|BSD|110|
|LGPL-3|25|

View File

@ -1,5 +1,7 @@
DIST androidtvremote2-0.0.14.tar.gz 25207 BLAKE2B c0ed73e5b207e12aeb45935419fc77face3d945c319e1afd3eb62a5e24eb98a0a4693af307100c1e4836c57e984d59f4b35d15bbb5de99b68bb67da306eb177f SHA512 a649366a8e179f31c67823d03656ad7234eb25f04a061c8daec11c5d2c0762d39e9eb51b999a754c4df0520b3adc543f28e9ad75af7e8e527b7a24ae492312b3
DIST androidtvremote2-0.0.15.tar.gz 41270 BLAKE2B 4dc3ad3eb5141dcfb130303851afa5802f9a6e8cf4b6e59dd03e0384b4403af11c2e898cd2fccf435cb72793eea94c474384ad5218c8c73fbd39974758c4d791 SHA512 751d7caf3278bea225513214ace9636ba44412b2bf944334c471088138f47602f91875dfe5e86d1e1cd3912d7e59905e2624d78e67d1d3b23c8c2a09f7f920c6
DIST androidtvremote2-0.1.1.tar.gz 41356 BLAKE2B 3b897e845aa51627d4a7d824b076128088e8a57444bd106c27d141c718b6bef384adff09245cfffc7f2de41c7d3d35553e9f875b3a18839bac84a182bb2f4558 SHA512 0a860f9696bee4de6c4b19d54da13c13cf067cc379a4b7761f626c35c32f52eeadff94008dceb94f10dba947d32f3c1235a703a179818fe44194eabba896ff11
EBUILD androidtvremote2-0.0.14.ebuild 836 BLAKE2B 288bdbca80691e5626c9f5d4a462b82690f23c76899073795b0f2b9a7582b5f9fe5c3d8ec654fcab3289af4f638acf02318ec752178db64fa5a7ea0ef8c4fd87 SHA512 5817ee5df6ea05d2999da66438b75a40a9cfe218e3789eb75a34913d0c8b616c36f575e6e3e3c27a8e079c73fc43f11956d067962f6122c317c55f50a7a4669a
EBUILD androidtvremote2-0.0.15.ebuild 775 BLAKE2B 15acec2663c4fa3e342df14b79eaae436512d9bb33e4e3e8af8e6b0a4e511d82886ec11143b8f82a99165c879dc98ce9d332c45cb753aa57223c0df1b156a33c SHA512 04aceab0dad61f08726c5617019970c690572c54981719f59dd3ad6954ce0237ee82f9a9186fafc773a50f8353d8814ecddcd30235b00f022a857989522642da
EBUILD androidtvremote2-0.1.1.ebuild 775 BLAKE2B 15acec2663c4fa3e342df14b79eaae436512d9bb33e4e3e8af8e6b0a4e511d82886ec11143b8f82a99165c879dc98ce9d332c45cb753aa57223c0df1b156a33c SHA512 04aceab0dad61f08726c5617019970c690572c54981719f59dd3ad6954ce0237ee82f9a9186fafc773a50f8353d8814ecddcd30235b00f022a857989522642da
MISC metadata.xml 522 BLAKE2B 516348610d828c7fc831d74b22577a3dfca8326e5683a7d2d5e501e98b31d41a33267f93eacc8dce10c83b1da56cc5fb3fe2cb696cbb840f265fddec54a43afa SHA512 c909021bb51c51c0ab098a1cf565bf1e03b2ca09060392e3958b6a4b9b80ef077b824ebc422902ac48135b9cfd95f8c565a366b7e7ee9de4312caa5f99005e10

View File

@ -0,0 +1,30 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="A Python library for interacting with Android TV using the Android TV Remote protocol v2"
HOMEPAGE="https://github.com/tronikos/androidtvremote2 https://pypi.org/project/androidtvremote2/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiofiles-0.8[${PYTHON_USEDEP}]
>=dev-python/cryptography-3[${PYTHON_USEDEP}]
>=dev-python/protobuf-python-4.21[${PYTHON_USEDEP}]"
src_prepare() {
rm src/demo.py
distutils-r1_src_prepare
}
distutils_enable_tests pytest