dev-python/pykwb: update SRC_URI

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-07-12 21:59:46 +02:00 committed by Andreas Billmeier
parent ab7c045907
commit 3ced92e1a0
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 5 additions and 15 deletions

View File

@ -1,3 +1,3 @@
DIST pykwb-0.0.8.tar.gz 4613 BLAKE2B 4544f30995cd74a0461c48c11e3be9c4e5defa91849763c1fdc0e5a5d9f8b777c993bcc28be15ca915b587388e1249d0eddb3146bfbbd495e57e11e11c80683e SHA512 84f0c08c74487d0e2c1f9ce4fe02c26f76c9137e1af28e653bdace614dde937ddfd5202a03fc2b01a243967f96f77faeb722e24a493e1f930a0e833f1b3627e0
EBUILD pykwb-0.0.8.ebuild 670 BLAKE2B a149620291a8b6add3e00abf9bda3b8e6af765dd5807d6a538e03e4beb6df8fa7fd7d19df2731fcb0cd1e0da0c5cad1f930924f6af24d05e06dc45f928abec4e SHA512 6115919169cf62c29df45ee00e713ba760bffcb937999f1dae7a560de191d1cd44ae060a5d06b4f8c5a3d6d85540034d0836d6d04c4c15fb431e8227abd9e956
EBUILD pykwb-0.0.8.ebuild 513 BLAKE2B 40ff200c6b55b436c0bfb5aedc9fe8882fdf4b1723a901d53ed76f2448d71b7cc260ad977a26fba264ffd00eb7591ba07c5192289fcdfac0b4b4b037c9c3508e SHA512 16bd0a97ea8383e7c03fa05d299cd03433668da623a9f2b0d36b1677a79bf4e5cbd6b46f5b1a4a9565dcabb852293803a7d9461a6a070d24ed512a7b16664a54
MISC metadata.xml 499 BLAKE2B 7f3073d1098da0b05801fb824e88270dcd6e97cc4997b0136d789d52114f8e1508bd07cf5ab1508650c2e0ee33f038e0d04654733a2bc2839da960ee72dd2438 SHA512 3117bd3a98430d748417c1f74fd40473ef429cd19fce27c62d2d935dd6589898e06686d8c1ca7e25c075f25f1952dd9f1f3627fba40a0d377072ba0b76a34389

View File

@ -1,15 +1,14 @@
# 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} )
inherit distutils-r1
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="KWB Easyfire serial library, for inclusion into homeassistant"
HOMEPAGE="https://github.com/bimbar/pykwb.git https://pypi.org/project/pykwb/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
@ -18,12 +17,3 @@ IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND=">=dev-python/pyserial-3.0.1[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}