dev-python/pyforked-daapd: add 0.1.14

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2022-10-30 15:18:18 +01:00 committed by Andreas Billmeier
parent 5e98dad35f
commit bae7e0a9e3
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 additions and 2 deletions

View File

@ -548,11 +548,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 1458 Ebuilds in total, 1451 of them have in total 1460 (34 different) licenses assigned.
There are 1459 Ebuilds in total, 1452 of them have in total 1461 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|850|
|MIT|851|
|Apache-2.0|293|
|GPL-3|92|
|BSD|86|

View File

@ -1,3 +1,5 @@
DIST pyforked-daapd-0.1.11.tar.gz 5261 BLAKE2B e5ad499e4ceef0cfcd62553528760f893768b6efc537a7295bbb35ac4ec8b0119620316471e7a2680bb738b60e087f6201a1a513eea7d4acee7b0c72b64b1b9f SHA512 4574c37fc93b86d46ac47c6c4a00f14ab8788a942e78282249250623792db6439b13bef7465f9f740bcb4efe1f0980aebaaa849b096a1d5adfe0a8e0bef6c3a6
DIST pyforked-daapd-0.1.14.tar.gz 6562 BLAKE2B 51c46dfdeef85caa6198316268a62e5e0acb0ad3f62b740eb2b59bf3cb82794d1ea34d0dfe0c1cfa9e23e82c19bb6e09eacfdd8a77c626ffc101373b90a31898 SHA512 c61a149e4e0ad54603ae36887574a243d50fdbb88cc2658f271355343ae3db4dd64cd91356a12e7cb21b386bd26bc03eb252d1b20a4c75b7cc03888e5ca6105d
EBUILD pyforked-daapd-0.1.11.ebuild 699 BLAKE2B 5df4f74ef3b1b36f4a829eedc0b11d5cc77afe7ec201d0ae47940960261c7f36b902aa8360fddf0e6e562f3c7f086abd1f0304bb3f0bb73047dc621b447fce40 SHA512 35bc493af81bd52a0738d5a7d21c4eb664f115a0decc0b48bc7e477ac52c022ab80bdd9aa43748f7f5f05d482c5043fb52165662fb10f6cb22fbc2131e0ec57f
EBUILD pyforked-daapd-0.1.14.ebuild 699 BLAKE2B 5df4f74ef3b1b36f4a829eedc0b11d5cc77afe7ec201d0ae47940960261c7f36b902aa8360fddf0e6e562f3c7f086abd1f0304bb3f0bb73047dc621b447fce40 SHA512 35bc493af81bd52a0738d5a7d21c4eb664f115a0decc0b48bc7e477ac52c022ab80bdd9aa43748f7f5f05d482c5043fb52165662fb10f6cb22fbc2131e0ec57f
MISC metadata.xml 480 BLAKE2B 0e7e508c45f44a31f56f6ca714d5b6428ba324054d07b9ac8afcee9dfe69cd3445e1765b193bc31f6398f2b76059eb6f3089a0ec58e506125dee33b3b63f4bd5 SHA512 3ea56d38b5993574b66725a4b0185aad9ca3e518ad6b46312ce27e9db3d44d8913417cf8f68c50f4ea85143bf915b48bd12b28b143062501ea07d09198289644

View File

@ -0,0 +1,33 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="Python Interface for forked-daapd"
HOMEPAGE="https://github.com/uvjustin/pyforked-daapd/ https://pypi.org/project/pyforked-daapd/"
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