diff --git a/README.md b/README.md index 7f77566a1..22d9c7e88 100644 --- a/README.md +++ b/README.md @@ -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 1525 Ebuilds in total, 1518 of them have in total 1526 (34 different) licenses assigned. +There are 1526 Ebuilds in total, 1519 of them have in total 1527 (34 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|883| +|MIT|884| |Apache-2.0|314| |GPL-3|96| |BSD|90| diff --git a/dev-python/pysnooz/Manifest b/dev-python/pysnooz/Manifest index 6be110679..c50d5bbae 100644 --- a/dev-python/pysnooz/Manifest +++ b/dev-python/pysnooz/Manifest @@ -1,3 +1,5 @@ DIST pysnooz-0.8.2.tar.gz 15931 BLAKE2B 07502655f03522d2c45a279a15fa5332b0be0f91f261f05838a68eb42b0e894fb807fb5b69a1572c2be458304df3d670c8a68ef6437f1db64b2fcc61a0c00b25 SHA512 c264d37f94349493417f31d1b351541cc4792d34462cd04c4212b72b1d493e4980c74b148424a80afa2536f78840014493466275b00543f782aced40a011de74 +DIST pysnooz-0.8.3.tar.gz 15969 BLAKE2B 0e8c553936b630e5db042fdaaddcf8b7c073f474e951dc71310174ca09f6706917094a263617ab15b762776d5415463d32e110d8b63cdab608d2a2e6872378c3 SHA512 61178822166405b459dee93c1f3ace55b37d74ed28e49624e49a1b09a8ec69d24ffe726726313214941843b19830de3c556b05aea1fca55c04b49bad37502704 EBUILD pysnooz-0.8.2.ebuild 1012 BLAKE2B 31189b89e88683c48a4774c215f6e51832353eac357fa52e80f75e4e0fdff61151c8e80c0fc5c4eab351eb345ffb4336dad892fa4fde5cf855fbf3ba37333ef4 SHA512 a3d6d43fc91050eeb24ed9eb5f60038c3291883c28a0321c98820ea4470bab853a9dbaca7752ec43ba2c01c6ce164fa7ede503ddb1a26eb54d00265b9c0a1e37 +EBUILD pysnooz-0.8.3.ebuild 1141 BLAKE2B e348ac3e683fcbfed2debb2dfdcfc469d57be767cda53c78b1357ce1305ff2fa310d969b8c126bacb2a6e62500a4f4b40585471bac30cc0c8d98109d3638a81c SHA512 a6a244e946748aac245c94861eb2574f5671780406b5dd522c8aab6f4af2446f0fdcb3a18156befe7deffb0bb639dbe81a377a944b5b3cb82ee4a31fdf2b0de5 MISC metadata.xml 452 BLAKE2B b83d0ae2734e72c51520dd12edc9f840a70ab6d8065e8fb7fb69088f5fec155ef7d308657aaafb19c9251bc659b2ce67665d4ba014568d5bf06c70a024ee50d4 SHA512 6d254378e16654299397f98cc26a2cbe00559467166c2c4d8e1ce943f2a9aa14c0a86e04803ea04ba2aef796aede23db2e3fcdaba1a9d205936b4f575f931f55 diff --git a/dev-python/pysnooz/pysnooz-0.8.3.ebuild b/dev-python/pysnooz/pysnooz-0.8.3.ebuild new file mode 100644 index 000000000..77b4ebf1f --- /dev/null +++ b/dev-python/pysnooz/pysnooz-0.8.3.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=poetry + +inherit distutils-r1 + +DESCRIPTION="Control SNOOZ white noise machines." +HOMEPAGE="https://github.com/AustinBrunkhorst/pysnooz https://pypi.org/project/pysnooz/" +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/home-assistant-bluetooth-1.3.0[${PYTHON_USEDEP}] + >=dev-python/bluetooth-sensor-state-data-1.5.0[${PYTHON_USEDEP}] + >=dev-python/bleak-retry-connector-2.1.3[${PYTHON_USEDEP}] + >=dev-python/bleak-0.18.1[${PYTHON_USEDEP}] + >=dev-python/Events-0.4[${PYTHON_USEDEP}] + >=dev-python/transitions-0.8.11[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/freezegun[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + dev-python/pytest-cov[${PYTHON_USEDEP}] + )" + +python_test() { + py.test -v -v || die +} + +distutils_enable_tests pytest