dev-python/idasen-ha: add 2.4

Closes: #2454
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-12-10 10:35:57 +01:00
committed by Andreas Billmeier
parent 064733d5f4
commit 014b30cdc8
3 changed files with 36 additions and 2 deletions

View File

@@ -612,11 +612,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 1684 Ebuilds in total, 1673 of them have in total 1693 (43 different) licenses assigned.
There are 1685 Ebuilds in total, 1674 of them have in total 1694 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|982|
|MIT|983|
|Apache-2.0|355|
|GPL-3|96|
|BSD|96|

View File

@@ -1,5 +1,7 @@
DIST idasen-ha-1.4.1.tar.gz 5419 BLAKE2B 1b0207cba6966a1673f91419091aeb600930d4cf6c292c4ed2144fd0fa992ce7b42767f1f83770a032545e501cbe72c31af54cbce32349ce3337ea65f0972c55 SHA512 10cfa00baccd9534382e8bd93139bb9fb1c51f9b7a8686a65e718c39a3a605ce46ac546444334175a084e9dda0bf649a93df5e95197a522a37215295ec8335e7
DIST idasen-ha-2.3.tar.gz 7849 BLAKE2B c126ed688241fbdb5a6529f753824ef86ee96d289602a6d4786ebed117393c566566d69957095febc26782ea43ba13abf6629f376554a2bc48ce81a3ae5e319e SHA512 7bf099bde9d365c3f126149951cbd8af52a27019bd5838a95a3d39666fd414d7f3e9c0518b5a5cb17357f17fd53bed5cf856d92d7b0cde037dcec62a9ddc1ea8
DIST idasen-ha-2.4.tar.gz 7881 BLAKE2B acaec192e372c33c7ef715f0c7ad56df8b80b897076c4099e361b7a3d183bf5049dcf1d6031cb2dd8c8fee738f0670b0ca58c3b2cd8bacc89555734e3c5749f7 SHA512 4105b9fd74da6d537fcd2268920ef28113dce880c8abdae013b9214ac46ed454f3692a690eb7fc3f0e63fdb00c237c42cfad5afea3e80ffe0e2085483db4e02b
EBUILD idasen-ha-1.4.1.ebuild 682 BLAKE2B aa99ed39a16d1427ebeb911c13a2909669e4bbb25e16c772b69612ed9f70a52be69cdfc599c4b4f5911b2a25e2dac242e7931075f97440dfc753f3dfa7ef1781 SHA512 30c3ea9016d17f29eaf6ebed5ae074add6219760a6390022fb7d4ff172039900acd251886e1063907ddac2de557aaca335b2076e07a6993bf68bcea141b646a0
EBUILD idasen-ha-2.3.ebuild 682 BLAKE2B aa99ed39a16d1427ebeb911c13a2909669e4bbb25e16c772b69612ed9f70a52be69cdfc599c4b4f5911b2a25e2dac242e7931075f97440dfc753f3dfa7ef1781 SHA512 30c3ea9016d17f29eaf6ebed5ae074add6219760a6390022fb7d4ff172039900acd251886e1063907ddac2de557aaca335b2076e07a6993bf68bcea141b646a0
EBUILD idasen-ha-2.4.ebuild 682 BLAKE2B aa99ed39a16d1427ebeb911c13a2909669e4bbb25e16c772b69612ed9f70a52be69cdfc599c4b4f5911b2a25e2dac242e7931075f97440dfc753f3dfa7ef1781 SHA512 30c3ea9016d17f29eaf6ebed5ae074add6219760a6390022fb7d4ff172039900acd251886e1063907ddac2de557aaca335b2076e07a6993bf68bcea141b646a0
MISC metadata.xml 512 BLAKE2B f0bb506bf9c47b96e679471c64fe11d886be6582286df7631c5458cdd0d76a7a005c7107eb1e03dd39caa6901556895c4c875f2ae5bc67ebce8f71c7b0b4a9f5 SHA512 61e70ba7585f5b205f14c71d11e035afd69ffa9a5b9d6f3f43957ef3da20cfc370e0db8fad97a61b7c4fe8d5ec981a25404a8bd85666f7bcae9c27209b67efb2

View File

@@ -0,0 +1,32 @@
# 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
PYPI_NO_NORMALIZE=1
inherit distutils-r1 pypi
DESCRIPTION="Home Assistant helper lib for the IKEA Idasen Desk integration"
HOMEPAGE="https://github.com/abmantis/idasen-ha/ https://pypi.org/project/idasen-ha/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/idasen[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest