update pyCEC-0.4.14

This commit is contained in:
Andreas Billmeier 2020-09-28 20:41:21 +02:00 committed by Andreas Billmeier
parent 94ec82fdd0
commit c691a09cb5
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 33 additions and 0 deletions

View File

@ -6,6 +6,7 @@
* add grpcio-1.31.0
* update zigpy-0.24.3, fix zigpy-0.24.1
* bump zigpy-znp-0.2.0
* update pyCEC-0.4.14
2020-09-27
* add config-0.5.0

View File

@ -1,3 +1,5 @@
DIST pyCEC-0.4.13.zip 16435 BLAKE2B 66e02fe4567f1b59bb0aed35dd7f7871c60d7fb714504e29be17681f5ffbef99d148c4936d39df64a0d652f3964b0a800b803c35464ea79fbe05e2ea4a90b0e9 SHA512 f66f141c2afafb93a23afa786754fc505d9b61c4235fb432d7791422c6b5b4126d1b8a7600854a3bc13d1435e34bd7ebb76a1d99160cf61c464750df36a3cd3a
DIST pyCEC-0.4.14.tar.gz 12831 BLAKE2B 722b1e0aaddcfb3d55327a187c2003e851a4a6a57467fe7e3942084c7f9f441d7369701e63feb154d49e8b0a1ac525bbcd5e1622ca2d48060c4c77ab53094e0c SHA512 5337f6e1cdbd4872f88e10ce25666c6642ad53bfe209508b8fb4c73709dd41d782bf0e7f95570e71ab24b8465626658334fad7f902ca460c0506e5af271dc59b
EBUILD pyCEC-0.4.13.ebuild 710 BLAKE2B afe47a5e03b02732490332f9a3a899e579a43b36fc2a844b99e913cb080471508dd02cf83368aecd6bd9ed6481ed9d6aeae95d60efecc763a49bf97df537fea8 SHA512 2cc372ff1e5e568bc2f97902b02e450356f176c5ac13e5ba44e3e7172e225a67315c09c772458d368bfa74ce5fa047f02495765950a27db54aa8a294f70645e0
EBUILD pyCEC-0.4.14.ebuild 713 BLAKE2B 5c93b3b8277d1b3093dadcafa21d84dc01b8bd699f5940c8681d82a155e185a0c5be15fab52a7fd6329b08b3ccf27a65ab12c7d91893621abb043b7c5f2b9aa9 SHA512 3fd02cfcdffb09d0bf4e18a9e71055d307f0ea9fc423832e1140068e2b94157e2fa5ff084a277ca0eca32f6b8efbc47af0c0684e2cb24569ec04f6b1bbf25581
MISC metadata.xml 445 BLAKE2B 98d12193389b6f112c9af61da26da7d9ecaa6ca85762316f78cb1ee8fa78afcaba7025774dc79a3244771406871ff1cd6282d5b7779838137c35022e02653644 SHA512 6d43cab3f4bf160d36029f81f51010349ae87b13658e2ecff272d0d1005a76c58b3883640f1fcae5982b022239205c84cd85cef717224a627bbbff4c696f0633

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="Provide HDMI CEC devices as objects, especially for use with Home Assistant"
HOMEPAGE="https://github.com/konikvranik/pycec/ https://pypi.org/project/pyCEC/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
BDEPEND="${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
}