Skip to content

Commit e346176

Browse files
committed
dev-python/aiolifx: add 1.0.2
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3281 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 21fb6bd commit e346176

File tree

4 files changed

+33
-4
lines changed

4 files changed

+33
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,11 +617,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
617617

618618
## Licenses
619619
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.
620-
There are 1804 Ebuilds in total, 1793 of them have in total 1812 (42 different) licenses assigned.
620+
There are 1805 Ebuilds in total, 1794 of them have in total 1813 (42 different) licenses assigned.
621621

622622
|License| Ebuilds using it|
623623
|-------|-----|
624-
|MIT|1031|
624+
|MIT|1032|
625625
|Apache-2.0|397|
626626
|GPL-3|108|
627627
|BSD|106|

dev-python/aiolifx/Manifest

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
DIST aiolifx-1.0.0.tar.gz 39567 BLAKE2B 0bbc416769c07916313054009158240202148698289adab0d17c7e51bb4810cfb74fb0588d7038ac442b0a85d6c28e4964b8ad6ff94dd6733bcc14f2371d1054 SHA512 941967ba9f0f4c0ebadf5ba56605dea562ce5c28c94cb803baa8e8ad8931a09515a838fb89f9531b3bb2d24141670003ebb37bf43326f466fb30f38b7ab99c85
2-
EBUILD aiolifx-1.0.0.ebuild 860 BLAKE2B e4ddfe43022d4002ac03a3b67a205d18730bfd85abc93408d2c80788c2996271db851ecba704fd3dab703d647f1c73104ec64a56e5827cf8e38d965453670ace SHA512 95555d7329a79a35cd2fc3a63421fed14325655636a3e17290e4bd62a67682878055deb96294b436dec4fec422cce61a97ce39c365c70f549cf74b4f0afa6b19
2+
DIST aiolifx-1.0.2.tar.gz 39888 BLAKE2B ada9312d5f3802dd9d550b90e76f33b50f7ac973191dde2b29845e5b13badce4a2598c49390039bfb6ffbb66422e3262ccd3af8518c362f6fa747fa3584506df SHA512 90f04da6418cd93902a6273b211c25a3260a525e9a01356f7a5fd2843163175ca1f9046500721c4e004c938ec981e17a22715f3e9372db6a93f9eabada562735
3+
EBUILD aiolifx-1.0.0.ebuild 860 BLAKE2B b455738dbf6bde46de8d435451025aebd0573e9ef75ed42b306ea396ba19a0d81ced5a2a1cb5eded71813352c4722a27880965ea2d5a40429453d40078c0770e SHA512 bcbc89a404e0f773eab2f750acb50eef4cd5dfcd77bd2af05c797c284ee98c6d420eb2c8d9cb5d5257c56e276a5136c99a7104f433cc3e7d0dd7e05f90b720d1
4+
EBUILD aiolifx-1.0.2.ebuild 758 BLAKE2B 03d64c5d1a5338a409f959cd55f90bc481c17a9c85b81c59c64628fca8cb3dfb9548c61e8a044fcf848496325e8b132b4b6d818e1d8ec19c858ed3e2f5680532 SHA512 0ef635aada237c6c48e309f63b7ae3709b4be42b954ef7d1fd98091a33e30f288650fcc15c253d88dacae8e02e3bd44ca86940d69ea0bd130a9d3e78a99c945f
35
MISC metadata.xml 512 BLAKE2B 8e3b5fe76995c2cd9b16ca04007fbe81d3f109547789aef25114e2a5118a9836891279a4a90be401e076748167b239bfd4144ce6ac8e97279b692ea67ad47a5f SHA512 1cf59ecf3eb7636121f7e6e44952a27fadc8425047289b4f89608c372ef3d259201cbf56ad6212582596b6d699f86bb32ab466007f63d7668683905103cd27bf

dev-python/aiolifx/aiolifx-1.0.0.ebuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
EAPI=8
55

6-
PYTHON_COMPAT=( python3_{11..12} )
6+
PYTHON_COMPAT=( python3_{11..13} )
77
DISTUTILS_USE_PEP517=setuptools
88
inherit distutils-r1 pypi
99

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Copyright 1999-2024 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{11..13} )
7+
DISTUTILS_USE_PEP517=setuptools
8+
inherit distutils-r1 pypi
9+
10+
DESCRIPTION="API for local communication with LIFX devices over a LAN with asyncio."
11+
HOMEPAGE="https://github.com/frawau/aiolifx https://pypi.org/project/aiolifx/"
12+
13+
LICENSE="MIT"
14+
SLOT="0"
15+
KEYWORDS="amd64 arm arm64 x86"
16+
IUSE="test"
17+
RESTRICT="!test? ( test )"
18+
19+
DOCS="README.md"
20+
21+
RDEPEND="$(python_gen_cond_dep 'dev-python/async-timeout[${PYTHON_USEDEP}]' python3_10)
22+
dev-python/bitstring[${PYTHON_USEDEP}]
23+
dev-python/ifaddr[${PYTHON_USEDEP}]
24+
dev-python/click[${PYTHON_USEDEP}]
25+
dev-python/inquirerpy[${PYTHON_USEDEP}]"
26+
27+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)