-
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/4061 Signed-off-by: Andreas Billmeier <b@edevau.net>
- 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 goslide-api-0.5.1.tar.gz 4535 BLAKE2B ce14037d27e115835ab643358f989e945bb881c2bc5c3d4cb95704219aca8efb36f1dd40844eda6aeed15e92d0fe71e87199d13b264abff1a3ee92352248ee00 SHA512 27d76837ccbf5f660943f1cc7471ef05baed495d616d6a9c4fd432605c26975ddcc376d72d43e81d5a6f6cad0af48baf4422514088c0dfffcd1eef43a244eee5 | ||
EBUILD goslide-api-0.5.1.ebuild 663 BLAKE2B 6807f3bc5683714a7ff1f5dcf300710bdf86519a72f69f56931d7023e687d99afa91fb5be2eb82cdab086c0fe4f7996d6976026d36e841106743800af4c4b7d5 SHA512 68c17fe887a2ce4afb26948e7930490b960f975718013c6fcc1e6b55e9f17b681135f558377e317c58c6335bcebfe6acf478c012446c417cf4702be6b7b03d53 | ||
DIST goslide-api-0.7.0.gh.tar.gz 10729 BLAKE2B 5dc042114f6d3097bf7160a2959fe151fe1f80e66517d083f2927a944d8f291474803d653a3a3bfc3b7019002bedeba9b32efd2c497577ff7548375a113e04d0 SHA512 5abef842c34232990f2e818a73fc69a4e0f9a241a3990244576e84ac8299d2d9958b2ec75646dfa039fdf18e518a59eaf8b4731b4bd03482d7a3ab403a06b660 | ||
EBUILD goslide-api-0.5.1.ebuild 663 BLAKE2B 611226b11c20a376f06559cdd7ec8171c73de6cadb449b0c543da820a69e1664c2df16a481dd4c6c69b68425cc2c14908aca155a5fd3172c30bfe2e3ffbbe08c SHA512 29cccf5d8298cb035f61b2c489d7d079f646c2ac2004b7c8b5b8b98084f36dee18864e272c0732f6d0d1d25548e90db7dfd28b55e3342bed44534d7306fecccd | ||
EBUILD goslide-api-0.7.0.ebuild 649 BLAKE2B ac2ddddb4bb28f0bc6d9cd5bbc0c39d437320e45e1ede917238e1e01ca44099077ea1fde170bb73ee904f39316dcc43d80e70924de245721ec89b70a6e7aeca4 SHA512 9c97f4d359ad1a3a93dc0fbc845bd366916dcfb3b2f3d4f1a7db217c1756a59b7927053ecb47e3ecce1da5f97ae7db75a4922b742e66c2b7e563a0e186d47e0b | ||
MISC metadata.xml 518 BLAKE2B 2c9701aba8f02c7d6bbb22c214684f8f90947aee90f6a7bb97f783729f42d009cff3f1a911fb76f3fda2627fa07e9f652f9f073bec1f8e3b4a477fb2b0fbc67d SHA512 d7288af02230c28d3f74098a05ca90c8c8e6e3761b371e4541563a33e70ebd80b99217bb38f2f6ecd87947e616dce55c00aff384ffd654d7f2c71ecddd533545 |
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..13} ) | ||
DISTUTILS_USE_PEP517=setuptools | ||
inherit distutils-r1 | ||
|
||
DESCRIPTION="Python API to utilise the goslide.io Open Cloud API" | ||
HOMEPAGE="https://github.com/ualex73/goslide-api https://pypi.org/project/goslide-api/" | ||
|
||
SRC_URI="https://github.com/ualex73/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.pypi" | ||
|
||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |