-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-python/aiolifx-themes: add 0.4.15
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3282 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
4 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
DIST aiolifx_themes-0.4.10.tar.gz 13081 BLAKE2B b9ffa64bdc1a44f15310b4eee32ae428d666c327d70620f4cb722237e4f2a065df08f45556cdabce1d9f3ef459406fd7a181e20214e503f2139551b2354eb835 SHA512 3785f60072a8f4f68a97d5207d1650439e959a124d230b7c98457d1a7b4ca9be29d5d4793e8779b7e7172575aba4343cb72051ca7d2d41c32428d20fa144486d | ||
EBUILD aiolifx-themes-0.4.10.ebuild 670 BLAKE2B 34e41b165ac3b102bd63292d7916e6f7af6babdbec87f49013a6ecec6244797ee16f491a3148582f0cdcf1483bedfd0c8f5bba0bf0d5caeedf69655443fcb9ba SHA512 d1111d3c4674065f9517a0844fbc1076f33559b86e213c825d984b44522582f97de803f0029d956d87ba8e385e65603786b183380db1dae82b0a897f5e4d4302 | ||
DIST aiolifx_themes-0.4.15.tar.gz 12966 BLAKE2B b8902c54bff553c969c6655012cb071dc4aadc875422609a2aa3079ad5f86956a67bfa43d3352309354c7f668641316a1326be9f36d5da48587ac223daad55c3 SHA512 ca038ad4f1c006c9b04a6e0f024ede197fc41daa153d989a4cd4e58266d80fc8e78a66d7d53eded5e013b633bbff6e29026fdf2b6f4823093a9a518557c37647 | ||
EBUILD aiolifx-themes-0.4.10.ebuild 670 BLAKE2B 07d73a4fb7e5a002a2b20e8104b2ec2a2003bd09fc21cc8017e4b58cac5c8bf2aedcdb931344f8c2628007835dc9c3735154b27232d60c7d11a9454551f6af03 SHA512 4609e624e89598f25f54beab05a8ad307109f9ba8148fce6d2a9931882968e4feea7c5a6dd203e4c8f9ad0959971f907878da7c6db9fff70a2e6eeda739d7484 | ||
EBUILD aiolifx-themes-0.4.15.ebuild 637 BLAKE2B ae965193bf8ad7f765e92b13640728ca3614e47411f3759a6a2335672d4290b215fb1fd3f0bcb44aef8413c6a3b87cb7d60042a7a76111d2158f32971370f00b SHA512 642c570c6814e6b155d4bc1bab20cae7c729a8a5680c4ef3c3608ba6aa6242e0edd62bf9997d5fab5413464f6e64ee4a072fd271e26737ea87650309ac5bc68b | ||
MISC metadata.xml 513 BLAKE2B 4961599829aeaed7db9440112142564e7af35ac90c5c9fb4126cd7ff7cf19fea7aa965b765d9d7e7472128ac1cf591bc0eb9b69535b2b12927141ffdfb12bd10 SHA512 cba1b8cf2ac0c9ff1ce3efa14c2e0a87af6f9b5b23e26b80f5ff54c020a215d4687a1bc3a1ea26b92f6d0b3156a6ad411034e6395a4074bbec7c3ab34cd3e29e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{11..13} ) | ||
DISTUTILS_USE_PEP517=poetry | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="Async library that applies color themes to LIFX lights" | ||
HOMEPAGE="https://github.com/Djelibeybi/aiolifx-themes https://pypi.org/project/aiolifx-themes/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND=">=dev-python/aiolifx-1.0.0[${PYTHON_USEDEP}]" | ||
BDEPEND=" | ||
test? ( | ||
dev-python/pytest-asyncio[${PYTHON_USEDEP}] | ||
)" | ||
|
||
distutils_enable_tests pytest |