bump anthemav-1.4.1

This commit is contained in:
Andreas Billmeier 2022-09-03 08:29:35 +02:00 committed by Andreas Billmeier
parent b9e558e1da
commit 975cca80e0
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 39 additions and 2 deletions

View File

@ -523,11 +523,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 1857 Ebuilds in total, 1850 of them have in total 1862 (35 different) licenses assigned.
There are 1858 Ebuilds in total, 1851 of them have in total 1863 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1125|
|MIT|1126|
|Apache-2.0|341|
|GPL-3|112|
|BSD|106|

View File

@ -1,5 +1,7 @@
DIST anthemav-1.2.0.tar.gz 16813 BLAKE2B 3e521d91103c908a9c4ad0d2827eb13bd92cec393f802a5f06e3bf06ac7e0c1131adb4c23144ea78a5bf177ba9382e81f0db63eb44421651f761cef53f25fb02 SHA512 47e0a7d478c8885948ece5b10c58dac09e68aa9ad8d1b16c1529bb598fbd13855482f7958fe5c4b39e0c373142897915bc3e0c0e09d74d13a6172adef9cbeacf
DIST anthemav-1.3.2.tar.gz 18187 BLAKE2B 548b6d1d0c34a7af9be53ae1b05e49d9b22de2ea3d87b2b1b4476873f895a3771bb96bd35d317915b6a99ae1eeb0e8feb71db60dfaa1a4490501ef2e4ae504f3 SHA512 06eb736e5f7733f8447e1fd2465fb7402f35b00e8e931c3d3f5f21b563efc977b1323f4dd078e83169d3d55a9867e40a11df1f084fdbafac9262f7f402575528
DIST anthemav-1.4.1.tar.gz 20812 BLAKE2B 4e3591e078955223f3c0308cd4af967711d7e8326c670f6ce057125ea0cdcf9cb1299f30cbbebede99274e73153498ecd9320e8d4bbd223355f30494cf8fe5b8 SHA512 24822dcf5cb1eb5c4f970aac9588b880458c697969ed2415d5677f20f5faa6ba46af3da5ab360ef1a47bae3272f522a87c9ba500ced41c42383f68673c9f7e24
EBUILD anthemav-1.2.0.ebuild 699 BLAKE2B 7559e295f09d7bc63718e4b69744a3f10e7c5e75e3df7e7bc2f667809d61e8ecf7ffa9688bc56cdb9d5e6c67ac60d173a5d83621802b989a7bd4e84602ff1ef3 SHA512 4370f235bc7d4743c9e1166d7b0bb4acbe74d64b2e66aada1dfde45e631a1703bd5ee5ca806a92e73c5024805bc4e8962c6a6cdbc68ad0facc96f242010907dd
EBUILD anthemav-1.3.2.ebuild 699 BLAKE2B 7559e295f09d7bc63718e4b69744a3f10e7c5e75e3df7e7bc2f667809d61e8ecf7ffa9688bc56cdb9d5e6c67ac60d173a5d83621802b989a7bd4e84602ff1ef3 SHA512 4370f235bc7d4743c9e1166d7b0bb4acbe74d64b2e66aada1dfde45e631a1703bd5ee5ca806a92e73c5024805bc4e8962c6a6cdbc68ad0facc96f242010907dd
EBUILD anthemav-1.4.1.ebuild 730 BLAKE2B 2e9a1e4f2d50e3cb8f51723a62ddbb1e6b36a6d51cc01b00d81682f146ec542de3412fe912856faf9c6a4f3649d10bf00acd7c1879043f2c1165bf244398cc1c SHA512 0507ea7fbe2f10f275355df7a364e324f0083299dc02d536d1a89a3d6e326333c7ee8d3c42bcad80f4fbc563c2d23805ceca63085ba5e126f851824eee14a1f4
MISC metadata.xml 453 BLAKE2B 40e0b3d31c38e6d8f7293e99f6b89c77e83625004c94b3887555001717001c81defd27357560f724b0dc5c36ed0af4ce6b4523cbd647867cb3a5dc83f4d408cf SHA512 22f28ad6a0026373bb1015663a5be1561e43312ef06f7ae459aab16d2ba8b0d91c59f47385f300b6e047ced838fa5050b9854d3328b23104e8fb777b06a58468

View File

@ -0,0 +1,35 @@
# 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 API for controlling Anthem Receivers"
HOMEPAGE="https://github.com/nugget/python-anthemav https://pypi.org/project/anthemav/"
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.rst"
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
}
distutils_enable_tests pytest