File tree 2 files changed +37
-0
lines changed
2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 1
1
DIST aiolifx-0.8.10.tar.gz 35087 BLAKE2B b27bc86d092f64addc3257d53022c8d413f1091b83d009bf7e3ced6c7cc1b4aca5537a4915677eccc6754867f3216240d8bf3f2832e55d626107fe4a24cb383c SHA512 f4a4c049efca466f97fc29fc017be2264f91cc0df3ed15b42b1dcc00562cb9a513ae9c2678d77c171ee29910e076c1a3e5236e6fb3e7ed234d1705bc7cff97d4
2
+ DIST aiolifx-1.0.0.tar.gz 39567 BLAKE2B 0bbc416769c07916313054009158240202148698289adab0d17c7e51bb4810cfb74fb0588d7038ac442b0a85d6c28e4964b8ad6ff94dd6733bcc14f2371d1054 SHA512 941967ba9f0f4c0ebadf5ba56605dea562ce5c28c94cb803baa8e8ad8931a09515a838fb89f9531b3bb2d24141670003ebb37bf43326f466fb30f38b7ab99c85
2
3
EBUILD aiolifx-0.8.10.ebuild 747 BLAKE2B bb3c396350e6022fb7c7fbb3b6bd18129d5fc8e6539762ec4358324670f206369a97f8ad6e20167ffc93aba86685a3d95c89736fe7645fa9bb862c41e4d8ee11 SHA512 240848d19ea70136d14e099646debba67405deff48deb41a3172df5c7ba0a2c716eafc4b6d40dd6b6343358463b7883e982746af01a8cec88873c0d02ac8c986
4
+ EBUILD aiolifx-1.0.0.ebuild 860 BLAKE2B fcb43ed33d2c50d2e76a0f99774d97c367e6c3c9636464741d8ac45c13d04b389dad8de237480d4ccf213f1e74de61c34ab0bca1dcf7044050f4eb432a4cf601 SHA512 4cba3cc46b9509f18acaed301fa0bef034a7bfb8e4940382b1cecca2129c44b75fa4ec87c7354fb565a49ad0beb5287d7b8b2b019cbf6411941badadc5fc6059
3
5
MISC metadata.xml 512 BLAKE2B 8e3b5fe76995c2cd9b16ca04007fbe81d3f109547789aef25114e2a5118a9836891279a4a90be401e076748167b239bfd4144ce6ac8e97279b692ea67ad47a5f SHA512 1cf59ecf3eb7636121f7e6e44952a27fadc8425047289b4f89608c372ef3d259201cbf56ad6212582596b6d699f86bb32ab466007f63d7668683905103cd27bf
Original file line number Diff line number Diff line change
1
+ # Copyright 1999-2023 Gentoo Authors
2
+ # Distributed under the terms of the GNU General Public License v2
3
+
4
+ EAPI=8
5
+
6
+ PYTHON_COMPAT=( python3_{10..12} )
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/click[${PYTHON_USEDEP} ]
24
+ dev-python/inquirerpy[${PYTHON_USEDEP} ]
25
+ dev-python/ifaddr[${PYTHON_USEDEP} ]"
26
+ BDEPEND="
27
+ test? (
28
+ dev-python/pytest[${PYTHON_USEDEP} ]
29
+ )"
30
+
31
+ python_test () {
32
+ py.test -v -v || die
33
+ }
34
+
35
+ distutils_enable_tests pytest
You can’t perform that action at this time.
0 commit comments