-
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/4062 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
4 changed files
with
29 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 smhi_pkg-1.0.16.tar.gz 5633 BLAKE2B 8b289c8bab06bd71c9b4e709cbe68a4d921dbf3d4e3f81011d3c6ee8ce460d26985c02ab3cd3e3ff39c217051ce45060cbb2bf0fe37d081285a04c34eaebf656 SHA512 7c52e8506e18eb4b9d77b04dc099ff75808cdd55eb002f89e866ad15b98e20bd259a4a3b0f2db053ec2ba6f3f7d6e168fb3be11a5a6e48d6ff505963ce9f5548 | ||
EBUILD smhi-pkg-1.0.16.ebuild 663 BLAKE2B a346813ff185d27249df80a218860572d5a09b0f197bde83607f13c0b2b5d7d9452bee878d276ab05a2e94e20f9de453738089fc8440653bc5e8741d58607f6e SHA512 c36b7e545ced355b00d2a432d14ea310af7466ee499ab7b3d755844e4594238f36ad7e3157990e7d17d833deeb9753a0b4b6daa8177c7fc876400d71233d1677 | ||
DIST smhi_pkg-1.0.18.tar.gz 5615 BLAKE2B 3fb23426814b12353b8dd741b5cb24ef39af02c4878bbb1e2c42ff99163aa51eeeb960b9b57591d1bc8afa6a4848ffcd541a0132d2f0840c29387526d5414730 SHA512 aac97feb252d3c6a5adaf71574bb09d7cdc9a20e1cbfae52ad31bcc3850ceed62c2fa850bc4f2e9dd858e3e1ecbf45d723bc92adc5aa18e9408515e3e5d91727 | ||
EBUILD smhi-pkg-1.0.16.ebuild 663 BLAKE2B 50406600c41989e7a80b9f1b3698b5b58cb12646fadfe901a9475c5c1e2cb900526129be18388c1856e1dfe218376355be838ff29c654550130543bc9568c250 SHA512 5e83d21ea12d6d7bd5ab2a6a642148815b2a9a879548fc7ed6c9cbb1c3942c122bb6e009ec7029f9c58554a38c2bf6bca815b1cfa1b13dc45c8700af4c3774a0 | ||
EBUILD smhi-pkg-1.0.18.ebuild 561 BLAKE2B 282144570dbdf65edcd512599a2e8d1394223510f22cb120156f75f979b17ddc6477f97e8f777d0462ba8341986f8382445799da2374a37d15a5ad15d36592bc SHA512 36462e63d1c6a852b6094a1738444f403b9bddc1928deea571967619f749ae0fc666aa615d0a2c1ee42faaf9b414776460342be28398cf79aa941bbfcea57652 | ||
MISC metadata.xml 514 BLAKE2B d1980bdd60c36b03d482f8544a327841fb46b9e04d8d2a89ced44b474aefe6002ebfaf4b67b1db9ef4daae2d68750b6dccb60681c391bd9ea751223968e18dc6 SHA512 e2a2d1c1305053377ba129b297cfc55ce7deeaf6094d37accd5f91cfb525f6686f1748dd714c24276bf4e1415e01fbd6a7b27d4b5bbaebe69bddce35f1f22576 |
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,22 @@ | ||
# 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="Gets the weather forecast data from Swedish weather institute" | ||
HOMEPAGE="https://github.com/joysoftware/pypi_smhi https://pypi.org/project/smhi-pkg/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |