update pyrainbird-0.4.3

This commit is contained in:
Andreas Billmeier 2021-07-17 01:21:05 +02:00 committed by Andreas Billmeier
parent 18240371c1
commit 22a224b15c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 35 additions and 0 deletions

View File

@ -1,2 +1,4 @@
DIST pyrainbird-0.4.3.tar.gz 11479 BLAKE2B c9bcc062825063096e3681c07661df35a58a21329fbdc2768ff13824b2d8091bc237c9af36db82417bb3840d47ee4bb9791f9563ea6f83834f8cf08f28bed2c4 SHA512 47eb5403852e89e2c5f58c657044a3a2ce84b21a16a4bc849dc93bd0c85ee59c52cdfba7d6a6907fcb75bf80c928194043ae7be641c8eb383a7cdaeca60b665d
EBUILD pyrainbird-0.4.2.ebuild 1150 BLAKE2B 1d39a2d75d9fdf0bc7f5c4fc02b55c3292d67d6bde47b13c7ca2c4c7a742202d9e84fb016998c897efdd6e1487e76793a00cdcf49157236a9825b4f9bdb9814e SHA512 01107751c53aec723a49345ad9941895d9618368e394ee434b1b5731771bbf5afc50d24539798575bcac2ce48db63dc0ea14a36cf2d8eaf1ac18583c87ffe44d
EBUILD pyrainbird-0.4.3.ebuild 801 BLAKE2B c9fb2b92e7314253db441c5f94c2322b5b5147ea44306882fed44e0f053a6bad562363373d72dcffbe660ac5c5c79a7f7486387d888ea816b3e1f0cdc198fa1f SHA512 9313b4e0c9e3824214c1aeed467054d83cc0f5280369096db704c2843279a6e50a0437f35dd78e426318cc09f9af3288213a0b019b5ff840269af799a2f836c0
MISC metadata.xml 455 BLAKE2B 2f5a8853b71eaf3e4ee94334f49990d3025d2020630deb872baea2d4b0a710ddf69b27f7fcfba38791b81962afb027d8ec388e0dab11558180c8a5778bfe628f SHA512 88f9206c51f311ece73caf23f4bc26fac91c08d039657dba3cd6556bcd41de7aa2fcfc99931c40aa227c93d6577b3ef7a733112eee53d0c8c0ad460125c61c58

View File

@ -0,0 +1,33 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Rain Bird Controller"
HOMEPAGE="https://github.com/jbarrancos/pyrainbird/ https://pypi.org/project/pyrainbird/"
SRC_URI="https://github.com/jbarrancos/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/pycryptodome[${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
}