add pyvizio-0.0.7

This commit is contained in:
Andreas Billmeier 2019-11-24 19:21:15 +01:00
parent f0c551dd24
commit b653be98d2
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 53 additions and 1 deletions

View File

@ -1,7 +1,7 @@
2019-11 23 (reverse added today)
* update PyViCare-0.1.2
* dg to vsure-1.5.2
* add vtjp-0.1.14
* add vtjp-0.1.14, pyvizio-0.0.7
* bump venstarcolortouch-0.9
* add my own release of uscisstatus-0.1.1
* add upcloud-api-0.4.3

View File

@ -0,0 +1,3 @@
DIST pyvizio-0.0.7.tar.gz 12029 BLAKE2B be632b8f93c6ab7b18b780af5703fc59e8d2249c6e9838e9f587cb87c616c14ed3495e0c9875ea306dfbbcb3a3c958ed4ed533644ccd2b263a13fe9893793310 SHA512 9a1ffdd8d4c2c03d7bddaef18bebf3186512b2444e9da42c5444eb6d2959af5a5161dd60fd0fc41ad05d55cf3d0e2252c4a5f86e431bc4f60125912398bbbbad
EBUILD pyvizio-0.0.7.ebuild 865 BLAKE2B 5f67501f8db95d21b84b9cafe2d2e6abf3dcbfe138945ec36a7e34899fbb86360fb07adf53816f38cd98680f291cbb197b01fa7138db09c9cf3e82ea987c4510 SHA512 518692cdb44fa2cf4e45acd4cfd272ae34bb8de69f81cd0d99f73faf4171a05305fc1e263b49d14ceeae4945a05f605236548ed2812cad3012088b8613e38d02
MISC metadata.xml 464 BLAKE2B 2701d70a2bebe54471c9af625ef736c472f15e9b98474f19debcf2201e9ba3c2be0d8c7ecf1f82bd703970bebc7cdedda27b15c18cec0c6f8c4db6f494aec80a SHA512 9295428bef531f2d5a53170405497ac77f653b69418576a6c461fed6b757ccdfcd47bc58bf21db97a21d7c2ca5b620fb3c59e1f1910fc2f3ff2e4f69dbdcec1e

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">pyvizio</remote-id>
<maintainer status="unknown">
<email>vladimir.kornev@gmail.com</email>
<name>Vlad Korniev</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,33 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Python library for interfacing with Vizio SmartCast TVs and Sound Bars (2016+ models)"
HOMEPAGE="https://github.com/vkorn/pyvizio https://pypi.org/project/pyvizio/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/click[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/jsonpickle[${PYTHON_USEDEP}]
dev-python/xmltodict[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
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
}