dev-python/pylibrespot-java: add 0.1.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2022-10-30 19:14:41 +01:00 committed by Andreas Billmeier
parent 4a199e05c2
commit 1128fb8c2c
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 1509 Ebuilds in total, 1502 of them have in total 1511 (34 different) licenses assigned.
There are 1510 Ebuilds in total, 1503 of them have in total 1512 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|878|
|MIT|879|
|Apache-2.0|306|
|GPL-3|96|
|BSD|88|

View File

@ -1,3 +1,5 @@
DIST pylibrespot-java-0.1.0.tar.gz 3184 BLAKE2B b23c2ad1433d5ab21298a975c07507aa44f27b9d2f24d673d38d97020e9304492bb58a632a1914d11daf25a43854608171dd3e6c120f496d4eb8890c5bd5c16c SHA512 78bcfbbed59948d61c79d43e7d9aed6c3b0203fd6755e4e34a531ec652b43b14a7c49f4ed49e2de07dea488d18a43dbc2a01736fb958b73514d00d7fa7032f96
DIST pylibrespot-java-0.1.1.tar.gz 4037 BLAKE2B 2037373280ee521e7a4f00fde65c374d755b25f771a82793e64145773d286f1d1b46e5f15aa70a3f07790a21ccddeaed42ba834ddc53b38468a256bc1ed1d9d1 SHA512 a53e537de746a1cf4f6d91ef6227595351bc2d13173722de84c9ccf13bf9922a3c09cda881fc7150d730f2b9b732f1df091ad2d4f5f9fb928c900357963bf842
EBUILD pylibrespot-java-0.1.0.ebuild 705 BLAKE2B 4ab0711d745c77e837bca611ec596d59b49be326e15ff44557c7a5637a9d05cf78652dc5f2c5cd5ca45acd58bcf498d75d00bc6cbcd0ef3998bfe160a43d0e64 SHA512 a994fceef4c76fde016067ff4cb89aa7786f5c767930ed5b424c824087cbe6c31332ca12992b9b6546e3b8f8ecb1fcd7982f826be14916fc23c1eb3f81e01a70
EBUILD pylibrespot-java-0.1.1.ebuild 705 BLAKE2B 4ab0711d745c77e837bca611ec596d59b49be326e15ff44557c7a5637a9d05cf78652dc5f2c5cd5ca45acd58bcf498d75d00bc6cbcd0ef3998bfe160a43d0e64 SHA512 a994fceef4c76fde016067ff4cb89aa7786f5c767930ed5b424c824087cbe6c31332ca12992b9b6546e3b8f8ecb1fcd7982f826be14916fc23c1eb3f81e01a70
MISC metadata.xml 482 BLAKE2B be4cae60656c9c0d5e0673361da0f34d614bddcb0a9c9061c25911c54cc9f1c6a9b56f2f946f8292919d5ad87174dcc9de3a1e3ae86c2428c498753979e0a618 SHA512 0d37484e4ff81567a47810b2ce261c42e64e932fb328525291634343c5f7247c928e96e2166728adf9bfe203d7fa515bf13f6017f45b29766529542e120c0d6e

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 librespot-java"
HOMEPAGE="https://github.com/uvjustin/pylibrespot-java/ https://pypi.org/project/pylibrespot-java/"
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