dev-python/aiopulse: add 0.4.4

Closes: #2547
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-28 16:35:00 +01:00
parent f56c8e1b44
commit 93e2c0b2cf
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 2 deletions

View File

@ -612,12 +612,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 1555 Ebuilds in total, 1544 of them have in total 1561 (42 different) licenses assigned.
There are 1557 Ebuilds in total, 1546 of them have in total 1563 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|898|
|Apache-2.0|329|
|Apache-2.0|331|
|GPL-3|95|
|BSD|86|
|LGPL-3|22|

View File

@ -1,3 +1,5 @@
DIST aiopulse-0.4.3.tar.gz 14135 BLAKE2B 4465371ae94316bfc714c4239f2f8f294105613ad114605e451954532c846d4a02d4df719863f33128037cce6ced0ac2d100c2ab04f58c31edc6c0fca8adb884 SHA512 42a72148936c672425d643e479c32901b40ff814bf451e165f65d9e06feed0de38b8ba2263ffac266f2eabfb3bbf5a45e3bdb27fff4d5d091da950fc55e2730c
DIST aiopulse-0.4.4.tar.gz 15289 BLAKE2B 8f11dd66a84d0aabb541f84b5fe83353011213aeec753e57510a8a23057f00117a50c327ded4fe37a1bb05c81ffc513a6a0c408c01770d9e48a989953ef6e655 SHA512 b7378240cabe3b7a830f74565f6f04717ba958277bdca9ec098376634e1f30701d5eed36e5170f9dd23a1f6bd0fd20bf55905525a2f58e09a3c4c6c8bddc9316
EBUILD aiopulse-0.4.3.ebuild 665 BLAKE2B 04846b3dd0ba66777bae9a18f3810c3c28cdde70785cba3b249d4ccd0aa204f1bb18c9270f3ae8f1e3881c62cc8be1411f3feb30bc93cb766a99223d3add6be7 SHA512 053c7f3d54fef1af69536d179e8b1959a006355071d0818872ee99d4dba75aef1b92ba86e2461c6c6cb01cba190e4df213ac71455e067e91c63fe9fdce2e1759
EBUILD aiopulse-0.4.4.ebuild 665 BLAKE2B 04846b3dd0ba66777bae9a18f3810c3c28cdde70785cba3b249d4ccd0aa204f1bb18c9270f3ae8f1e3881c62cc8be1411f3feb30bc93cb766a99223d3add6be7 SHA512 053c7f3d54fef1af69536d179e8b1959a006355071d0818872ee99d4dba75aef1b92ba86e2461c6c6cb01cba190e4df213ac71455e067e91c63fe9fdce2e1759
MISC metadata.xml 508 BLAKE2B 84d654adf19da6588cbc6cb3d26cfcbdca025f4c243df58b3e5d527bff23970bf4e941cc8c6b3913ed053b6cbd10721d845a68ac49cf6af411e37e0b26dc33c7 SHA512 7535c2d6fa4219a4ad525855efcbb8fc89289099951034aaf670a3f2a066e8e8adb59a9fd9c633d5e83c6088fdf335ad9311339c8f1161825a365dba21dabcc5

View File

@ -0,0 +1,30 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python module for Rollease Acmeda Automate integration."
HOMEPAGE="https://github.com/atmurray/aiopulse https://pypi.org/project/aiopulse/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/async-timeout[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest