-
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.
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3406 Signed-off-by: Andreas Billmeier <b@edevau.net>
- Loading branch information
Showing
5 changed files
with
32 additions
and
7 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 pyenvisalink-4.6.tar.gz 18279 BLAKE2B c41f10486e339a28347140f3e55226ec9546ae4346fd0f58abd9cd31e1324fa4fef188c7dacb1414bd8c40fb0ba5d42687dedea06a86567cff39999e6f1d771c SHA512 21fb0f8dda7dfb7bb88c8609d88c424c25e813106e2fd72d6b7d999ebd9118c99cabf7af3bace77ec112c1d17fdd4bd3d0e76e049c9f7592b969a5e25ed9de1b | ||
EBUILD pyenvisalink-4.6.ebuild 610 BLAKE2B 86dc77ac70ba541e5e864afe201fac5aaca71f558985051dd1212fa0455e3311a33caded822351b7b84550e5161fc90d5f317c9045a6b3657301f839f48ac098 SHA512 716ab26a48ab51081470c2f3744f46e8face778bda92f2c81efcdef01a6fe41aa22b65ca69e3b8dfc77679ac6b8567125f12e7888c6b23f2909d2d39161a4967 | ||
MISC metadata.xml 517 BLAKE2B 9c405e02cf9309b8ccb3dbc1d8ff7c5cd882e568a6868a016770ab2e48b57f205355dd59c366a104aac1d0f50616bb4f80f05f8c3ea86976aefc9e71f4bfd69d SHA512 c1e4b218709b33cab3b5b2bb87baf9fd75508f05a39e307a0da84586b013314019fc5d49c58e8b21e3c4b030570ac8a8b17ca122e2a487e76d764e02168e1356 | ||
DIST pyenvisalink-4.7.tar.gz 18414 BLAKE2B 6ab113a802a6cf870a7d1906db7f4ae380195f34db632a03b54e9faae9bff99fe46d0ab132bd1b06a6fb8a78b6bbd9aabfc60801cc458ff8d823a9a2dba5ca04 SHA512 ce24bb5c6e677520657c2b3b1d25f17e9344fa6712ec295077cb05f4aa50bcb03d6aaaf89dc3d8056e2c41d58ab9cc6339ee8ee14d278bea302743acf7a6bdde | ||
EBUILD pyenvisalink-4.6.ebuild 610 BLAKE2B 6a7de5bd1a6ce494ed0be78558b1c3e4878f31c66e8afc091e1e3af4532c5fe5b72338fca8fc531898d243d76c681a70dc96e48f2dac571a6642e9abf5dccfdd SHA512 fc92d8d1ced1f8f28527c276ba3acc9d133f67f19d94f949d4e0800ecbbd82d7c46ebabf9dd112488c637b7c5c563fa5027a7e978a7569243aab40d3ba5ef650 | ||
EBUILD pyenvisalink-4.7.ebuild 604 BLAKE2B 7105dc556c4faa5e8e117448fcffa1025d29eb5f93b1593b6dbf6c96229d6593937f3aa9fb8704d5f7968639c1e734e2af2b4e32cade9c1d815f8a9753a44c78 SHA512 dc8359da1e5a6c823335b5a263d58d333a31bb2b02c9c708ec804946825e280a82a34393b19a24a0b23b38738748e9b1790a2c3c6f16acac601139ca37ec86c7 | ||
MISC metadata.xml 517 BLAKE2B cd91c169541821356579cacd659b088cb102c193e068631e7881ccf25250f45f17b45c0c4c7e5ef3ed8be7ae7f819a47c869960d8fbea60cdc7b1d6e21a71f98 SHA512 6ea4dfe10812c3c29362272147d4ed9657609a9885d086ba1bdfa22b2dcc0be431529acc930e74b211fe7225aa30b7795d0fdedcbd53b35855f068beb4172275 |
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
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,23 @@ | ||
# 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=setuptools | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="A python3 library for running asynchronus communications with envisalink alarm control panel modules." | ||
HOMEPAGE="https://github.com/Cinntax/pyenvisalink https://pypi.org/project/pyenvisalink/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |