add pyCEC-0.4.13

This commit is contained in:
Andreas Billmeier 2019-11-22 22:25:32 +01:00
parent b9ca760999
commit e58ee6a368
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -105,6 +105,7 @@
* add greeneye-monitor-1.0.1
* add gstreamer-player-1.1.2
* add pygtfs-0.1.5
* add pyCEC-0.4.13
2019-11-21 homeassistant-0.102.0
* bump homeassistant-0.102.0

View File

@ -0,0 +1,3 @@
DIST pyCEC-0.4.13.zip 16435 BLAKE2B 66e02fe4567f1b59bb0aed35dd7f7871c60d7fb714504e29be17681f5ffbef99d148c4936d39df64a0d652f3964b0a800b803c35464ea79fbe05e2ea4a90b0e9 SHA512 f66f141c2afafb93a23afa786754fc505d9b61c4235fb432d7791422c6b5b4126d1b8a7600854a3bc13d1435e34bd7ebb76a1d99160cf61c464750df36a3cd3a
EBUILD pyCEC-0.4.13.ebuild 701 BLAKE2B 71f90035c94cd73f312cd0a1ec0f1043ceb38b1746ab5068a5c70cc34c176301dc0d30a7cc395e75b945dfb252add1f002e7e1fc5960924de2a6d70fbabb608a SHA512 24832ce4741782ad96e4a4ea0c1b544d4e8ab80fe1e95135e6d041c2454938976866b03482f9b75d263a2d5a2c51801a7ce05167be3af9efc8b8c5d0e6948236
MISC metadata.xml 452 BLAKE2B 667b7f7c02e5aa3d32899a9207368a8e7aa83b8c9ee0c6bf83ca344c5096ffa2e926d512ff71910bdc8218bd5302160ae0c654774c9579b4f74c60ce752994a5 SHA512 71f7f52b9a792eadc81cc4ccf46e0894500672dba96589b0e25b67c0f3f538b73bbd84982e01bf5b3c220479974031e5c8179c2b1e71b194381dbb74526c8d81

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">pyCEC</remote-id>
<maintainer status="unknown">
<email>hpa@suteren.net</email>
<name>Petr Vraník</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# 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="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}.zip"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}