-
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/3136 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
4 changed files
with
32 additions
and
5 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 ondilo-0.2.0.tar.gz 3693 BLAKE2B 69ffeb5b61eead3cc37bb13e0817d83fe555668f7f25103e2b30e2e5be6f225b7f1ef9a6c1780e1b3e08dce597b87fd1f42b0fa7b4d2aa2c49fd469c386981f5 SHA512 91a6a99a8778fd61dbb14a7e8778de84317df0d52b3671f728b01090f9b1c021d79551453813e308d38713d91466947a3c2ccd626dbca66842acb3df5636b457 | ||
EBUILD ondilo-0.2.0.ebuild 717 BLAKE2B 6cec437099238a6ea7195c0dba8d193328ec858cb377b8372637ef0f99aa8242927302b862ef1959b82780dc5eba87e13808738c4365ac770c96eddf9df63d22 SHA512 7dc2e06b861ee22eda8fe43b25fed242617e86213cadb918ebad39b213fa91dbf9977e2a41ef930019a95de783495a45902f93fd040c8720e17c2ce38f4591dd | ||
DIST ondilo-0.4.0.tar.gz 4423 BLAKE2B 7f4b9e1a7dd1e0021684e91791721a0327ed613f9ea886696a7de9e454055676db124fcea559109e30a911b56937e5a4375d467d9109d6ba561550de05c64bf3 SHA512 5d050e229a981608b66a000c3dcbcb2073c1bc4db6aa31b3fab00e2a454b8b53295b0bebe63776fd9f37bb475773f1220499db879059e499aaf4f9396e716163 | ||
EBUILD ondilo-0.2.0.ebuild 717 BLAKE2B 9c21f27241e6a19e62f4b35596e45233e962f637deee2d5032ddce523d452c6cd44ade30ab3c7d16e011e4ab88ca8447fb84d002033b7d181808fd43b52f7873 SHA512 ed2d6240e2d2e1914551a3e573207feefa35526ef1c94db883f7be02c9e68a8f69fe1501048fbbe66b46425b5471110864cb33f2e202f78e74709897d59b0ec4 | ||
EBUILD ondilo-0.4.0.ebuild 615 BLAKE2B c163e5bad9233dc57a8273fc8796d479e8bbcb60ab3839c59df927d9f72ab7bc3c6a98252cc6037a5364f362153cc05ef024da9c3aefc4647660a10c2c8345f0 SHA512 f6a64df353f5bd01d06641bedf51648b48873f286d37f8af7ee90efb01a8f05b426360adcd2a5539a1f9f1b9db26893101c6ce4cf9a19db02eec114dc8ec6d67 | ||
MISC metadata.xml 514 BLAKE2B 063b0cc22ba5ab0db1b583c80224223f5b03936615eb0789435677258c6c065d032616d778a3784039e2883e0ae73fbeaa7ccc7a7ee200beac666b2d33359075 SHA512 bb05e44c1d832a6cc1b00e3077f31642fb23b967404a100b327bf774f64d226231fbb8c9d7e2cc1e59177583304a7ab3fdb24f25c9fa24e4ef154b8bc6021a24 |
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,25 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{11..12} ) | ||
DISTUTILS_USE_PEP517=setuptools | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="A client to access Ondilo ICO APIs" | ||
HOMEPAGE="https://github.com/JeromeHXP/ondilo https://pypi.org/project/ondilo/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND="dev-python/requests[${PYTHON_USEDEP}] | ||
dev-python/requests-oauthlib[${PYTHON_USEDEP}] | ||
dev-python/oauthlib[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |