dev-python/pystiebeleltron: update SRC_URI

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-11-24 00:14:21 +01:00 committed by Andreas Billmeier
parent f5988ad15a
commit d882165953
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 12 additions and 10 deletions

View File

@ -660,9 +660,9 @@ There are 1659 Ebuilds in total, 1648 of them have in total 1669 (43 different)
|GPL-2+|1|
|GPL-2-with-linking-exception|1|
(Last counted: 23/11/2023)
(Last counted: 24/11/2023)
I did my best to keep these clean. If a valid license was published on PyPI, it has been automatically merged. Otherwise I took it from GitHub or alternatively from comments/files in the source. Sometimes these differed and have been not unique. All license strings are adjusted to the list in `/usr/portage/gentoo/licenses/`. Some packages do not have any license published. In this case, Authors have been asked for clarification, some did not respond. Following the [official Gentoo Guide](https://devmanual.gentoo.org/general-concepts/licenses/index.html), these then were added with an `all-rights-reserved` license and `RESTRICT="mirror"` was set. Find the appropriate licenses referenced in the Ebuild files and in the corresponding homepages or sources.
A big thanks goes to Iris for reviewing this README.
Last updated: 23/11/2023
Last updated: 24/11/2023

View File

@ -1,3 +1,3 @@
DIST pystiebeleltron-0.0.1.tar.gz 8970 BLAKE2B da5b43a4d86c6d4a0f6eb5965298a164db05d9125556cde59b3b0bd6730d4344a232730b991dfc9f57bdb5f7093e90deff4426e518e3b8f6ca92489eb70ac0fe SHA512 adc878bfe4e2a5167e3a30f1720ea383e4ff8efd4d0825095ab7c86b6e2de0da341b389ded4ae5cdcf281dbc7025e3908ab7b40cc937d65e9652793a8b93a49e
EBUILD pystiebeleltron-0.0.1.ebuild 937 BLAKE2B 9525211a1f281aa1d22c4c71ac79073021e5c36694426b676f8578e7e62a5a6544962e75822e8a19fbe04e2694bd148f6fb99f94d81ee564f331f781b2d17350 SHA512 10a7ef684285cf71e3e9889dbd7c46bdb3556b35a004136397d1938a5a54aad486bb6702edecc405c0f93637aff23d6c91ddeaefab7149cae1a9b400289117fb
DIST pystiebeleltron-0.0.1.gh.zip 15303 BLAKE2B 90cb43670c035692e2b3522d1279db2f0c9d6ea2547ab2c18d20bc4ef0ddcb8e2293c71b3d04faca7fee9b9802c15e29266a6050b98aea36f37f03289afa3e3e SHA512 0c7ce612561292ede49bfa56e6edd2033470c237225e15987a7f1521431b27d426f9a402891e27d585a700d6f2de49dc7c824508bc4a47927e5198021ceba440
EBUILD pystiebeleltron-0.0.1.ebuild 1036 BLAKE2B 0e55d70b4def8807957ff8ec1bab169f1889cf73e998a1f0b3be639a5f729c549ea75ad4b0498e294a46eca3c4158014184550f7ce333335669a7b8066b9291b SHA512 66a23a70c0bee34dd3cbc9660391adf7e016104b09bfdbcbed311b627fc5835c86b9f78903292c657971d62f0e42c243ba066ada4a380570b0e36f8206a9a984
MISC metadata.xml 402 BLAKE2B a3f2aa3c0ca299347099a0de5efd582c4c505ea6d6397cb3312d9368eee5a7f67981e21a2443249cc9480d8c1ddbda4d72b065503dbfa768a7c5d78e66ac0be9 SHA512 49e76da93373dbb0799ffb446ffd60ea272a2ac83153f116c3de5a0acd536912411f1795abc0ecfb581d9d65f1e06488a2573dd3555e4c70263f1a40f3dfcbac

View File

@ -1,16 +1,18 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Python API for interacting with the Stiebel Eltron ISG web gateway via Modbus."
HOMEPAGE="https://github.com/fucm/python-stiebel-eltron https://pypi.org/project/pystiebeleltron/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.dev2.tar.gz -> ${P}.tar.gz"
S=${WORKDIR}/${PN}-${PV}.dev2
MY_PN="python-stiebel-eltron"
COMMIT="536367f6b272b13f33437ad33a6cc6b5c6ab55d3"
SRC_URI="https://codeload.github.com/fucm/${MY_PN}/zip/${COMMIT} -> ${P}.gh.zip"
S=${WORKDIR}/${MY_PN}-${COMMIT}
LICENSE="MIT"
SLOT="0"
@ -22,7 +24,7 @@ DOCS="README.md"
RDEPEND=">=dev-python/pymodbus-2.1.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
app-arch/unzip
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"