-
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/3479 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
3 changed files
with
27 additions
and
2 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,5 +1,7 @@ | ||
DIST reolink_aio-0.8.10.tar.gz 52394 BLAKE2B 7b2a3f5376042650a5cda68ae7ee6b747e72d3ebbc58a0917c5a1322399fab009a05b9ddb8db1ad231ab95ec3843238ca3b2fd3abb8ff0887fa1604df2c49bcb SHA512 ac72a99725c4b330a5321bbc721461d173e6e3ea01a5850425a7141188673fbe71ee657b52e870a780ed5bc9c0bdf22a376f72ff29d8cac227b2ae465f7b41a7 | ||
DIST reolink_aio-0.8.9.tar.gz 51674 BLAKE2B de6cf1889ded09239d10e410f9aa9acc4f797874d1c6c922349956d7e5883cdcc5f29cd1cd46962dc88c4dbb92a7bfdc86cd63f30b95c3ef4c5a8d727f12c8d8 SHA512 ee780e6a22c785de30fb078c8f64a41dec5a042e198a1931d6cdca12d1a13eccf5b31b848ab5647d56d4cb2152a1b21b7d4815004ee1ff7bb1e4f550f3012c49 | ||
DIST reolink_aio-0.9.1.tar.gz 54211 BLAKE2B 939daf7ff6c110a0038446cd07c30c2b9a225632489684b1e73453c1573c5499f2d1397f4131974db9b6eba4033b94fee447ff0a805c074403b9388ff3062136 SHA512 7c40eb8ad4c9f2de7e700eedc2e034895e516700d80e775ff244539ce0e83dc92f5b99d64716e4666836fd2bba2d57d38c36904e9fbbe41bc6fce7f27957ab47 | ||
EBUILD reolink-aio-0.8.10.ebuild 628 BLAKE2B 66c1a0ed491f3d23abaaff9cbbdf9476dc1d47d9af01c2df8757888e232dcdd89a844772c0754fd20213b0a06382aef970691022cfc8e7c85ff04a0eff8ea4cb SHA512 c9523ccbb2284a90775ade02b8996ea71ddb4b8ce69139ad0dccabe4239183d72cd3f7ddc1e328a28baa158ab9962f9a5e63f8835735a1be6d6746c49f9ca9d1 | ||
EBUILD reolink-aio-0.8.9.ebuild 628 BLAKE2B 66c1a0ed491f3d23abaaff9cbbdf9476dc1d47d9af01c2df8757888e232dcdd89a844772c0754fd20213b0a06382aef970691022cfc8e7c85ff04a0eff8ea4cb SHA512 c9523ccbb2284a90775ade02b8996ea71ddb4b8ce69139ad0dccabe4239183d72cd3f7ddc1e328a28baa158ab9962f9a5e63f8835735a1be6d6746c49f9ca9d1 | ||
EBUILD reolink-aio-0.9.1.ebuild 628 BLAKE2B 66c1a0ed491f3d23abaaff9cbbdf9476dc1d47d9af01c2df8757888e232dcdd89a844772c0754fd20213b0a06382aef970691022cfc8e7c85ff04a0eff8ea4cb SHA512 c9523ccbb2284a90775ade02b8996ea71ddb4b8ce69139ad0dccabe4239183d72cd3f7ddc1e328a28baa158ab9962f9a5e63f8835735a1be6d6746c49f9ca9d1 | ||
MISC metadata.xml 525 BLAKE2B 29e44c742104b7e0314912a9869edef7f6d27144815eda51330fb09b4f6918b9c5e3444655f33421c86c1e5d8b886da448a303606f06228a4ce70a9fc728cb35 SHA512 edb1321ea260d46eb0a3f2e8a84287b978fe2d865e01ce4d3fddf5b70698c1da5bf189a8c26a6eccd25b0fe6b9c81a5ba0e2db259719120692c52a71675ea225 |
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="Reolink NVR/cameras API package" | ||
HOMEPAGE="https://github.com/starkillerOG/reolink_aio https://pypi.org/project/reolink-aio/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}] | ||
dev-python/aiortsp[${PYTHON_USEDEP}] | ||
dev-python/orjson[${PYTHON_USEDEP}] | ||
dev-python/typing-extensions[${PYTHON_USEDEP}]" |