dg pyvesync-1.4.1

This commit is contained in:
Andreas Billmeier 2021-12-05 21:25:21 +01:00 committed by Andreas Billmeier
parent 0a0049bca6
commit 59466cd158
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 34 additions and 0 deletions

View File

@ -1,5 +1,7 @@
DIST pyvesync-1.4.0.tar.gz 29807 BLAKE2B 91ed529d95beea0e7d9866cb02459e563f19e7db783d9662d561252c88f22232dfd30fa92bf870120404adccab772ba088f8425bbfff289cb34ba7a554423670 SHA512 cf997ff87a01799d2dca0bdff82a29287f66c1aeef47128dc26e904f013ee0c8da31f337da367925af8c8363a5b42b6103194f342e58f7172c61a5393f4b4e99
DIST pyvesync-1.4.1.tar.gz 30663 BLAKE2B 6d2515d86b2ecbb89d9ac3402a63fa081bfde6cf8fbf99cb79673c90884c14435994bdbcc4bf0a45ad740fb1a4a9e9a2257a446031310cdd13c354434cc662c6 SHA512 d117ae0a1a476686fb8b6cde7135ca6533fc24c396bb844332766a5b0aa2536c0883aedeecfad8b01d265a0bec759afb7e167f59cfdafa1bed462483384dfc3c
DIST pyvesync-1.4.2.tar.gz 30965 BLAKE2B e54d11fa1a355e0de151cf91436c9ea42b129e17018db07b19bbe6fb19bc54fa97244dd5e6b82b8c550937d477e61108d5a27a7ebcca6cb4838968d19ef13433 SHA512 d1d3c7ddd94e93f077105aed339c0249223ea9926214087ff832271a013cb0bf1974712865d57fe6d0b8f3acdb11734dd0e3faa54abf55a526c733d60ebb2fb2
EBUILD pyvesync-1.4.0.ebuild 773 BLAKE2B cd942fa5eeb2346444545a0e83768cad2f965850fa3fd4113275076ac90d7a64aa5195e693f2f84a28296fd90cafb0418da982f881ad2be4e8ffb6d47f6c2f88 SHA512 dae603e7580edb3d5a02512a9bc44c21249ac2b9531379cbda3f71b3977be046aa431f015ff8fe047946abec5c7c509cbb487a48eafb634f890e1e03b319d17b
EBUILD pyvesync-1.4.1.ebuild 771 BLAKE2B 88e34e39c303f4b8f8b1babfcdd9a8c84e63cb396466d69bc1777d0d15be61380f2ddc01c8c784a7eefeb273cc52ea592d36801cf6aefab94092cfb1e42d2291 SHA512 401a05952f00708792aa4c8d22991201f4240c4cdfe7636325b69928277702970287d06bdf0c8bdaa02fd750ecd9a7a4721055b8e89e9a9cb1ba4d4b219d97cd
EBUILD pyvesync-1.4.2.ebuild 771 BLAKE2B 88e34e39c303f4b8f8b1babfcdd9a8c84e63cb396466d69bc1777d0d15be61380f2ddc01c8c784a7eefeb273cc52ea592d36801cf6aefab94092cfb1e42d2291 SHA512 401a05952f00708792aa4c8d22991201f4240c4cdfe7636325b69928277702970287d06bdf0c8bdaa02fd750ecd9a7a4721055b8e89e9a9cb1ba4d4b219d97cd
MISC metadata.xml 463 BLAKE2B deaa1c010047d8b2bf2df72c830dd70c1b36a4b3026ab3a74b638a88ebf1ee379446dc15a31203fc640f1c896bc97f8c42df43233e9277284982609a7bd099a7 SHA512 6082a86e9255dde7dab70cd8f111b5c667d3c3e80c3f403223175d49652f9794cd2d379b8a23a9c4fd29b9d68aa6ded94edbb79bae033cb68f62b0ff2e9fd2cd

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="pyvesync is a library to manage Etekcity Devices and Levoit Air Purifier"
HOMEPAGE="https://github.com/markperdue/pyvesync https://pypi.org/project/pyvesync/"
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/requests-2.20.0[${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
}