dev-python/elgato: add 4.0.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-02-28 19:52:25 +01:00 committed by Andreas Billmeier
parent 47589e51e5
commit cd7d262608
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 40 additions and 2 deletions

View File

@ -573,11 +573,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 1745 Ebuilds in total, 1734 of them have in total 1738 (34 different) licenses assigned.
There are 1746 Ebuilds in total, 1735 of them have in total 1739 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1018|
|MIT|1019|
|Apache-2.0|376|
|GPL-3|107|
|BSD|91|

View File

@ -1,3 +1,5 @@
DIST elgato-3.0.0.tar.gz 11178 BLAKE2B 8d01ff15c00c640451f1efc14bb4c643bbb13b38e50155efea4702a8fcbbe3117db40895bebcb9e9c9b312122afd8b2b87b4dcb5408c0e9cb94a0d6acfd450d0 SHA512 d3d1be02f1d37e6f22dc161c4696a9a08a2e264b4d626ad6a1878ddd76b1f719cfb8796a9573923342c64974df352d7b9a1f6e0cf199be7140813d181d19a4f7
DIST elgato-4.0.1.tar.gz 13466 BLAKE2B b679f95e64e168965698c1c8dd2344b46c2cb142516bcf2398eb580428f4f79908eb501b51924cd11b285afe54007d4eeba49bf868157632e4a474a619e5c227 SHA512 2f7137714c4f7dcba4db8cad13ce59208aa6082e0e1347bfde59c7fc30393c5fc4acb632a0f1fa3a0c29e971d2c04ac127023f9688a6b83e9903fad6723b8dc0
EBUILD elgato-3.0.0.ebuild 835 BLAKE2B 0fbedd73a0e9e23a8da840bcafb7c56c963cc27d294dc61f05f71b3c835a484379d6c37da64e71463669a933e05dbdca75ee459987f87744ccff4660a6675d4e SHA512 78b9bb842368386930727f1d51ca7dcf3ebf6f13cb8ab2fdb8503b8172dfca9a1a6ecabd0cb93ca09b27aaeca798b39c7dda1f033c8fe991f72997b9a7298a42
EBUILD elgato-4.0.1.ebuild 844 BLAKE2B 42d7e41d59d03e37aefdf950db2b609169982f5ae7063ac2f0db4d8d40cff2d494cee8f1facbce16058a0f073babebd685fb26d2c030f98cb96ea5b24a843315 SHA512 921a75e756893c3d533091e055adae2aa41d1412dec5739f75c4c49ce8e88c0b899fe179785f3533adc46f5df956c238efb1d0368bcb13070605662bcb9e4447
MISC metadata.xml 515 BLAKE2B f8d385718c514f1cdf7df6cda0cb9dab92dc162a8301c78f607a484a9e97f3625a69c8cd1333d7ea67d0e0163858aab0996191cd1e070b06f914116a6fcc2019 SHA512 3c3b881941f222db197e0de12ce7d53a2c0ed04c3df2efb97485e453e653fb6ee5ecdfb8183916f926c0ec1977f44ead2b0df7a5980b37b8094e680e0a30820e

View File

@ -0,0 +1,36 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="Asynchronous Python client for Elgato Lights."
HOMEPAGE="https://github.com/frenck/python-elgato https://pypi.org/project/elgato/"
SRC_URI="$(pypi_sdist_url)"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/yarl[${PYTHON_USEDEP}]
>=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}]
>=dev-python/pydantic-1.8.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest