bump intellifire4py-0.6

This commit is contained in:
2022-02-12 12:48:21 +01:00
committed by Andreas Billmeier
parent fd3eaae5d1
commit 563dd3ae4b
2 changed files with 35 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
DIST intellifire4py-0.5.tar.gz 5218 BLAKE2B 8e5f54109ac19738db59289b9f432621ee8eeae15371174c1aa8214a641a221aaf8184e85d72b40b8f0e2cf0f74eba98bfb847be84bedb0a937275b7f29787ce SHA512 fd6a2f95d3a7e7c9e84e222bd4bfcadcab5697bed02f1589131e13f1644fb7d58dc264b667a9795efc3fc4f3ccb39f8fdd94052648738c53764aba561b4c4c64
DIST intellifire4py-0.6.tar.gz 5230 BLAKE2B bcb3463f44c0065e713db741e8080561ff97642f7a725f9d5f9feba7f98971f152ba2208d3c222ffdc1de1aedc3d31834ce8bddcd3e00b3d9802825f6706bbe2 SHA512 246866f788f9026fb46b7791aca71bbcc6d994b8ec118c10c50a68acc182bc475c7b67bd000c2908f792802d038181d2678426849c8d68d80850313981c13820
EBUILD intellifire4py-0.5.ebuild 793 BLAKE2B aef946ec5def77e8c686a3570bbc3b4e2d2e8a752b8ca3b346f955f2da978f625b97f8654cd23c3b77d3c24f9010c00ffd987abaefd148c6f10cab4c05038b2b SHA512 63418da3f6abc436a6cdb7d661ac40dbaad4207ce39d2e8b742a428aab8d8423a8374551ec6f6e82bcd07e2fbe46ef48657ba76d223be1e39026176f98f1afb2
EBUILD intellifire4py-0.6.ebuild 793 BLAKE2B aef946ec5def77e8c686a3570bbc3b4e2d2e8a752b8ca3b346f955f2da978f625b97f8654cd23c3b77d3c24f9010c00ffd987abaefd148c6f10cab4c05038b2b SHA512 63418da3f6abc436a6cdb7d661ac40dbaad4207ce39d2e8b742a428aab8d8423a8374551ec6f6e82bcd07e2fbe46ef48657ba76d223be1e39026176f98f1afb2
MISC metadata.xml 333 BLAKE2B a2f0c7b22d1b4352166544000b2bb7a386aff62b46f3df994e69d72428e576dd7308145aff503c2e1664ac184a203d330c2d028dda7505ba42a66ee6c05a42cf SHA512 eb7f7d035a841938e268f98cabb7c41a932cf0bd49a0636a47c43c27d77151ddeb0a2586f4fc8d0212d9ec3b24f1626268c3c418006e7ee31573b7696d6577f4

View File

@@ -0,0 +1,33 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="An API to read the status of an intellifire wifi module"
HOMEPAGE="https://github.com/jeeftor/intellifire4py https://pypi.org/project/intellifire4py/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/pydantic[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}