-
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/3856 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
3 changed files
with
34 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 aiogithubapi-22.10.1.tar.gz 38264 BLAKE2B 7971519028bb72b9147b5deed274b4cd3a17bfe2607fc6b00e84942d02e72496437d4e5dcdadbce1ad1c5d374815a5053743b4e2cd92be79965b34b6d8058eb6 SHA512 419fbad33d6ad0c3fa9d416b4a3807c6d5f63910bdb95418f4f3ac838d9c7163660723eab903e052153da0e98c0b093dce50a7aa90bd4ea02bac559c456bfeb1 | ||
DIST aiogithubapi-23.11.0.tar.gz 39903 BLAKE2B 5ad9c236d5e3e2288ac3a4ef9b6ecaa39666fb8399423e075beaa89c2d8870dbd6aff17a228d93305bbedc568dd2bb754b26075625c7da9721ad2c5be597a307 SHA512 1b63ac7825b885b211dd3ee203dd4d93fcf01c1d82211e11cfe3d5df8a8ca966a49c574b1b6527a1d85ea293f3cca59d57a4f3e626e1faad9e3e8550f8c5cf44 | ||
DIST aiogithubapi-24.6.0.tar.gz 40283 BLAKE2B a3fb7ba5476a53aa99c49c53ea26aceefa5d624bcb23722a0b90866453cdedfa898645b460a4dfb328f9fb4e6a131f969e8eebd3990565f0f6bfc1e0bede5322 SHA512 de714a482169e431eed83be9193c4ec9139d12e8f4f0a74a1d9f3db5a1b4d829e80add57b11d93c43ca475d3aab36ab863bbd2b844db7ba00f758bd007ea190d | ||
EBUILD aiogithubapi-22.10.1.ebuild 819 BLAKE2B 1f5e32409c8409047449b0eb71dab59a38d93dbf5d3669b9dddb90dcc1d55516430c20e4472193d35f2a6c8b3a28e308421374f9d3f901c79171715cb21bcd59 SHA512 fd7e504828b1c2f36fe8f7c296ddf88f7bd164f15115ed3f18f05fe50f2ffb6e4651fc23205b1e77e210093a77426003f39fc50227163fb3b872523132ed068d | ||
EBUILD aiogithubapi-23.11.0-r1.ebuild 779 BLAKE2B b20d12348725f8e7fa06322e5b4958b66f0fbe1204dc352b6f47dbd3e57e4b8f3044f5cb845eff7f46272acd6eceae71de3fb661f8bc1d19376d6a09950e8ff3 SHA512 9c942c313610ea69d80e63343114c130f35e0cde40644b3f39c8c265ac6aec2f09ab47a9239298df61b41234dd4d662b8e3d3f553d75bf3df6b6465f63d9235d | ||
EBUILD aiogithubapi-24.6.0.ebuild 779 BLAKE2B b20d12348725f8e7fa06322e5b4958b66f0fbe1204dc352b6f47dbd3e57e4b8f3044f5cb845eff7f46272acd6eceae71de3fb661f8bc1d19376d6a09950e8ff3 SHA512 9c942c313610ea69d80e63343114c130f35e0cde40644b3f39c8c265ac6aec2f09ab47a9239298df61b41234dd4d662b8e3d3f553d75bf3df6b6465f63d9235d | ||
MISC metadata.xml 513 BLAKE2B 26e60ec444b54f315bb40176cbf2c764eb8118f9a8d294dbca99ba3a51f0e522cba5518ee33ac770d522a2382715fbfd5550f8958b9d43888206d6cc7fd2b81f SHA512 6e585021dd863c123ad307665387adf63b6ff37ab9794b324cbbd50907f84e7b264a82d2ea63100ee726366687e4266717c45902664a572fd3fc7be31edaa296 |
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,30 @@ | ||
# 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="Asynchronous Python client for the GitHub API" | ||
HOMEPAGE="https://github.com/ludeeus/aiogithubapi https://pypi.org/project/aiogithubapi/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND=">=dev-python/aiohttp-3.8[${PYTHON_USEDEP}] | ||
dev-python/backoff[${PYTHON_USEDEP}] | ||
dev-python/sigstore[${PYTHON_USEDEP}]" | ||
BDEPEND=" | ||
test? ( | ||
dev-python/aresponses[${PYTHON_USEDEP}] | ||
dev-python/pytest-asyncio[${PYTHON_USEDEP}] | ||
dev-python/pytest-cov[${PYTHON_USEDEP}] | ||
)" | ||
|
||
distutils_enable_tests pytest |