diff --git a/README.md b/README.md index f12d029a1..ca6ca4da1 100644 --- a/README.md +++ b/README.md @@ -576,11 +576,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 1818 Ebuilds in total, 1807 of them have in total 1824 (40 different) licenses assigned. +There are 1819 Ebuilds in total, 1808 of them have in total 1825 (40 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1059| +|MIT|1060| |Apache-2.0|376| |GPL-3|116| |BSD|102| diff --git a/dev-python/pyEmby/Manifest b/dev-python/pyEmby/Manifest index f0f908300..a360648f4 100644 --- a/dev-python/pyEmby/Manifest +++ b/dev-python/pyEmby/Manifest @@ -1,3 +1,5 @@ DIST pyEmby-1.8.tar.gz 8352 BLAKE2B 0e858dd42bac327faf3f1d66e011142fd0d460dc4d25600115cd913529263af75c4b6d0bccdcd7bd17ed2889e0cfef382ac48f771ce096722b3970b3e67ceed4 SHA512 3cdf26e5c6a3fdf36543a86c162f0394cf9b78f0c944fe22285ff7e5f8f340f330e186f46846018c5c2b629fb406dbe915f35638e9f5831eb4ed7cdff2766038 +DIST pyEmby-1.9.tar.gz 8430 BLAKE2B 782ee2ef7f9220fbb2d42dfbf00dae252bfa0b38d1094a12610aee80f4f2d95d99f7cc4e3a4b7c4a0b3bc5979572d194d509c46221f4c738ced5bcae26ab227e SHA512 4d4e0f523c754a4500dad91037d39c9acdaa08d9dbdba61678bb7b01cf2c97495226be00032e0c04c8533bada1d8cfc726c4f0d3ff49cfb261617fff9108493f EBUILD pyEmby-1.8.ebuild 619 BLAKE2B feac60becba1d211158a6165b6f6ed5913a019fade8ce7ae4c61b678cba9354b3c337a8b6193fe5a9a19deb96b0964447e887f790e4ab5deae09a4d9ffab5118 SHA512 e8ee1e082fd6e05eb2923c1c8e2e5da97fa7e0b5eb460535bafd3a9b0a5b08b6493d8e285554823d566835c7091bc714e44cc1cc4b21b9b9689da66d3d123e31 +EBUILD pyEmby-1.9.ebuild 619 BLAKE2B feac60becba1d211158a6165b6f6ed5913a019fade8ce7ae4c61b678cba9354b3c337a8b6193fe5a9a19deb96b0964447e887f790e4ab5deae09a4d9ffab5118 SHA512 e8ee1e082fd6e05eb2923c1c8e2e5da97fa7e0b5eb460535bafd3a9b0a5b08b6493d8e285554823d566835c7091bc714e44cc1cc4b21b9b9689da66d3d123e31 MISC metadata.xml 517 BLAKE2B 97399901849331fa1de42d89b5091bbd9ef8ab946829320c4b041423831967abae1318dfff7649bc246ec645887e1f0d7056b28d8ed177ca86d2b46999746e8f SHA512 9ef60d0322e39d70ffce570531c8bc30f8696c90f43481420e2a12a3cde72ec4c97f5a35e69e052b976f75bf75ad0124ac52a7f380144d96648aa2a17efc38b0 diff --git a/dev-python/pyEmby/pyEmby-1.9.ebuild b/dev-python/pyEmby/pyEmby-1.9.ebuild new file mode 100644 index 000000000..45a3e42a1 --- /dev/null +++ b/dev-python/pyEmby/pyEmby-1.9.ebuild @@ -0,0 +1,25 @@ +# 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 +PYPI_NO_NORMALIZE=1 +inherit distutils-r1 pypi + +DESCRIPTION="Provides a python interface to interact with a Emby media server." +HOMEPAGE="https://github.com/mezz64/pyemby https://pypi.org/project/pyEmby/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}] + dev-python/async-timeout[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest