dev-python/pytautulli: add 23.1.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-03-01 21:12:15 +01:00 committed by Andreas Billmeier
parent b1c29cb618
commit 25e0f3dd31
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 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 1774 Ebuilds in total, 1763 of them have in total 1767 (34 different) licenses assigned.
There are 1775 Ebuilds in total, 1764 of them have in total 1768 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1034|
|MIT|1035|
|Apache-2.0|384|
|GPL-3|109|
|BSD|93|

View File

@ -1,3 +1,5 @@
DIST pytautulli-21.11.0.tar.gz 9608 BLAKE2B d40be2ae0b8465ab3da5b8d9478ce2ab1c5322fc6e21746f00f3d39fcecab90ebdfbe4abb0bbafd9ccc851b435f7c2a689691c3de30130a864b4a555e4f3b575 SHA512 56a4e12076c5b90737771ca1c31fe25f60d1ed92d56ddd4a67467b0c0aa315d4e43b4a825a8976f17e889b0cdbbd1768ecc240da7db996da14eca8a3a3b176cf
DIST pytautulli-23.1.1.tar.gz 9708 BLAKE2B 600e0eb65be329f08e3a86559c29a012c3f9958be1daee4b8e5c6f77236628f77e5513accc62af1ea1d673caf51fd694385e869b88d9ec7ad31a2ce6652e1b35 SHA512 c1d2283b958855da4ee87ef4c85b5623125c686469c4f5e7b3c9ac1d2863dd07e22e36c68d19d51fe439dd99395894d2d70c9bf90400df14b68e37b8702cd4b3
EBUILD pytautulli-21.11.0.ebuild 732 BLAKE2B 8c6668c689c9688b7f3c2a95d4d4c060b13e1c0731ab598d9492d1ee8edf72ed346294b8775be34c60f234dfcab867fc3c95838911a0b49322b62a583a892029 SHA512 15eeb6b3a1687a259a69f44cea9a847603c9931038cdeba71a6b20cd0b321b266eafad4a4ddb5232133f3a7f1a5e32062f49ea3fbbbec39e7f046e2bdfaa5947
EBUILD pytautulli-23.1.1.ebuild 719 BLAKE2B b2043957bb530626b2ec14f3bef09ff42acb7e8df075393f1c3c963d2a897dd7d9f50ff53e924052e1bd64e21ad8a31a04b0b7cafc5f5a5b237b82c4d6a1eb64 SHA512 41c99d4db0df6314e68da2eae936e24b8c68c76afb342abb78dbec4b8c04ed530d33cb83998b33e40ef80eb7211dcf4f6b4aef630fe168a87851377d3b485071
MISC metadata.xml 512 BLAKE2B cd0613ffcca520a3d2cad4b8344bcd79c4cabde3ef19e09d3216aff969aaa0bb23db80849a0824f4c79ecdb34071a6cd3754ab9eee3e7e78834528051870765e SHA512 1a9ed19fbfa58366ff8eb83d08d30e8f43a2ab05366325c4fb821dc3c7e4cff6dd060c57479ff3ff8722dc2fae0b1e74ba9ef8856dc2552a0dac4a92e28cfad5

View File

@ -0,0 +1,33 @@
# 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=setuptools
inherit distutils-r1
DESCRIPTION="Python API wrapper for Tautulli."
HOMEPAGE="https://github.com/ludeeus/pytautulli https://pypi.org/project/pytautulli/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${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