dev-python/samsungtvws: drop 2.5.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 18:09:03 +01:00 committed by Andreas Billmeier
parent bf5d4e8a3d
commit 78c1cf1ca6
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 40 deletions

View File

@ -612,11 +612,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 1593 Ebuilds in total, 1582 of them have in total 1599 (42 different) licenses assigned.
There are 1592 Ebuilds in total, 1581 of them have in total 1598 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|916|
|MIT|915|
|Apache-2.0|340|
|GPL-3|100|
|BSD|87|

View File

@ -1,5 +1,3 @@
DIST samsungtvws-2.5.0.tar.gz 23065 BLAKE2B d723a0278e4cdd3d2fc7db20e15486e1f1ade2a8b60c869e67ca72a8b89f5c6a7defb6a0e87ce361c3838a33feee584aae99ddcf69a3a1fb3e8ba19d01f58570 SHA512 0360f4a59f8da82ea522fc18d20a7f45640e8f93511369ba60557e842e3fa3e99265b7d72c42a5d6e2000ebf6a1637de2312f96db61e480a5429b72ba9a39650
DIST samsungtvws-2.6.0.tar.gz 23298 BLAKE2B 718f0f02ee82126dd6f12f7d734b254adf6cc61807e80a3685a4f1c20fc296b274cb1e7f9db347b0f2f91ee9a860fabd4a9e40bc75445d31ad3de1e652ca801c SHA512 7d6caddf4f9aec217a47fa427fc4ab232e8cd709bb9d20a4c7abd3f5c9008bb537c2c665d4c48177be90f50f6cb044af75592a87e6982ee6dc5b899b35c58905
EBUILD samsungtvws-2.5.0.ebuild 955 BLAKE2B 27a73b40d07f019963981f6499c0776e6943d00bedc42cd57f6af21488bf4b51006fb8912d2ea273cf3ff78f795dd0e7f86bfb0b362579807e5e59c15fd37b91 SHA512 6e76befa98f96ae8f08bc50ce935a65681e33d283cfd98d8e6a52517b0a7e0451475ee399e2e9e7c0c7475f2b3c1be939e5dfa6f67260537adebdfcd1a72b0a9
EBUILD samsungtvws-2.6.0.ebuild 957 BLAKE2B 170349b2a8a5500c4defc02519e6ad7e78a5db5cafed361fe877edeac86cefd5a178052215a11e828cf394f7cece25c361d7c999c7c0bde2921ebc6baa2d770d SHA512 0c88f586aac995d62f2288d6856272eb6314e34c110fd6930d66086c8b38d15bfc72cb85deaf42a121fd45cdf0ca70ca77f0ce2bea4812076a37964a6a9b382b
MISC metadata.xml 398 BLAKE2B ee5cfd61e2674e16536bbdfb1620cc37f7135fb6448a16067d5c8c7f1bc06a74afa57b82716003802eaf2bc7b8ef8948423ee7f4566e3a5b61e089bb4e63c21d SHA512 63fa30e703fb0bcb18aaf035a99793bb57daa9d79b8eca835f0eed2fd77bd5ba14c978428b242a557311b48338318b029cb95b75cf531bda6b275d46d7f12741

View File

@ -1,36 +0,0 @@
# 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=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Samsung Smart TV WS API wrapper"
HOMEPAGE="https://github.com/xchwarze/samsung-tv-ws-api https://pypi.org/project/samsungtvws/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="+async +encrypted test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/websocket-client-0.57.0[${PYTHON_USEDEP}]
>=dev-python/requests-2.21.0[${PYTHON_USEDEP}]
async? ( >=dev-python/aiohttp-3.8.1[${PYTHON_USEDEP}]
>=dev-python/websockets-10.2[${PYTHON_USEDEP}] )
encrypted? ( >=dev-python/cryptography-35.0.0[${PYTHON_USEDEP}]
>=dev-python/py3rijndael-0.3.3[${PYTHON_USEDEP}] )"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest