diff --git a/README.md b/README.md index 27e23a31d..c39114bdb 100644 --- a/README.md +++ b/README.md @@ -506,12 +506,12 @@ 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 1723 Ebuilds in total, 1716 of them have in total 1720 (35 different) licenses assigned. +There are 1725 Ebuilds in total, 1718 of them have in total 1722 (35 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1048| -|Apache-2.0|313| +|MIT|1049| +|Apache-2.0|314| |GPL-3|106| |BSD|91| |LGPL-3|28| diff --git a/dev-python/aioslimproto/Manifest b/dev-python/aioslimproto/Manifest index 9eca2fb55..8925cf5f0 100644 --- a/dev-python/aioslimproto/Manifest +++ b/dev-python/aioslimproto/Manifest @@ -1,3 +1,5 @@ DIST aioslimproto-1.0.0.tar.gz 20386 BLAKE2B 3c368966392450a4bd5810ca2372d294d2f08b688d2b559f00c649b0d499a244c2cb32634f1dfa66edab7e50f7c367554e00ed6514e3d5287b6e262e7ec32ab6 SHA512 2ffa36a99041ceecdf8f4450d94cdc5761b176b84be212a4b85af7021c1474e158d37ae7493db8dd26b75ead22d759bca6ef8cd03785eca2408369921dbae3df +DIST aioslimproto-2.0.1.tar.gz 21436 BLAKE2B 1f800797db9eaf2c0079e4ef6e952601c4275374eaa77e11cf2f06ff0dbab7cc3a8ec833543a5e0e4d5444e572706b63dcad6c52d604c63d7ee89b1ea2365f28 SHA512 1ba5f3de7dc0daff8e05031de969f593f9da23ff016aa53fa13e55f5e49a89efc3514cb3c79a4a1a8161bcf12f5877943e77b5276f877205db2bbd506c0bbcae EBUILD aioslimproto-1.0.0.ebuild 789 BLAKE2B 8671e28bf0e10d73db409f9953058d8983f2c84369851094a89f3406137608ccd09825b9025c72b663a20d341d52401171877a2888df15ed1177144e04e983cf SHA512 381b67a960ce571640593d5799106cafd424fd9218196e97a19ff52977f91e1e214b5ffc1327b6f499f16b8319b95d6ea696874ccffce3afaaa6b03ddf6723c1 +EBUILD aioslimproto-2.0.1.ebuild 784 BLAKE2B c66e9b101977c4b138e9e1a7f0e589b5e6bcf51d8ceb4a05475ffb2a58e61709253cab0083fa4d587ace041d76ccc8c611255a0272537f33ec3afafffc0478ca SHA512 2b7897d6be0d60303891a7fe625f6090fb934ea5c417d36e3ce1b47f7d2fc072ec2fca42f54e2ba13dc29a540928c1f189ba1c09fe5f4183512f77d9bf7d4400 MISC metadata.xml 481 BLAKE2B 3120932c9d9ca3fb5f22299b3ae4c51fa377984e7f2129f6756f781355431b347bdfb0e7371cc6cf691a6a8e4270426fbf220373f27c2423cd8fd7bcfb7024db SHA512 00306c8cb0543b52f6e0d13cddbaeffefeef715bf51a8112d21ab38eee84c92750e9565a0e169a146e1264a7c98c7856aba76bb45f3b68ed95a8a89c0a1d9d39 diff --git a/dev-python/aioslimproto/aioslimproto-2.0.1.ebuild b/dev-python/aioslimproto/aioslimproto-2.0.1.ebuild new file mode 100644 index 000000000..6b7f0bd19 --- /dev/null +++ b/dev-python/aioslimproto/aioslimproto-2.0.1.ebuild @@ -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..10} ) + +inherit distutils-r1 + +DESCRIPTION="Python module to talk to Logitech Squeezebox players directly (without Logitech server)." +HOMEPAGE="https://github.com/music-assistant/aioslimproto https://pypi.org/project/aioslimproto/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND="" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +}