-
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.
dev-python/teslemetry-stream: new package, add 0.4.2
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/4071 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
4 changed files
with
44 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
DIST teslemetry_stream-0.4.2.tar.gz 10698 BLAKE2B 5ddab919530eb36f9bc2c79b83c2c7f014108d07994ecf3c27617ceffe607521b3d1ff65094191e0bc359c6f8ada3ef49dd82e7ddd63413a97f2c22b3cae0c9a SHA512 7806d6d9f03e1490dfd0e2bb5f5fc894d1f6bece157d192cc587ca74ec5ae518465c5a16150c462c9ac8a75869df8739b8fbd3d451175239c443cc629ab18cd0 | ||
EBUILD teslemetry-stream-0.4.2.ebuild 566 BLAKE2B 8de14a07fbbbdcd4f88bad2b7b05900872fb3df98f098560d45766b15524fe81388bb2220e2e2f3a68ef8ad64456c67a9aac8db931fc37bfa80749e7b1392e4a SHA512 d488aa6912f3b02a5d523e89a40dfb46952d31f34518a75370104860c400e2d438ebbd145b766580e412d49cd19316b047a057ed261e3359834d13f63dbb6457 | ||
MISC metadata.xml 531 BLAKE2B 6aecf9c8450d2c9cc9c419f70d0cd83f4bc42a78c434bbcd26c71eec60238ef7735b7a492dc205c164d1aa24c88bab70054d405ee8aaa6987a301341997253ac SHA512 56939edd6c7de177fdf51b64877a3582b6b9459a9d97b1c6a25e14e808dffb2f1f0028962912bbf828c1c6a7ae6d8b67ea52780242c632ec0958dd2fa0230e08 |
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,16 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Andreas Billmeier</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="pypi">teslemetry-stream</remote-id> | ||
<remote-id type="github">Teslemetry/teslemetry_stream</remote-id> | ||
<maintainer status="unknown"> | ||
<email>[email protected]</email> | ||
<name>Brett Adams</name> | ||
</maintainer> | ||
</upstream> | ||
</pkgmetadata> |
23 changes: 23 additions & 0 deletions
23
dev-python/teslemetry-stream/teslemetry-stream-0.4.2.ebuild
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="Teslemetry Streaming API library for Python" | ||
HOMEPAGE="https://github.com/Teslemetry/teslemetry_stream https://pypi.org/project/teslemetry-stream/" | ||
|
||
LICENSE="Apache-2.0" | ||
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 |