bump pyCEC-0.5.1

This commit is contained in:
Andreas Billmeier 2021-03-20 08:27:35 +01:00 committed by Andreas Billmeier
parent 0c9e10962e
commit 3a0bb8386d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 additions and 0 deletions

View File

@ -8,6 +8,7 @@
* bump home-assistant-frontend-20210316.0
* bump aioesphomeapi-2.6.6
* bump aiopylgtv-0.4.0
* bump pyCEC-0.5.1
2021-03-15
* add a copy (from main repo) of acme-1.11.0, still needed

View File

@ -1,5 +1,7 @@
DIST pyCEC-0.4.13.zip 16435 BLAKE2B 66e02fe4567f1b59bb0aed35dd7f7871c60d7fb714504e29be17681f5ffbef99d148c4936d39df64a0d652f3964b0a800b803c35464ea79fbe05e2ea4a90b0e9 SHA512 f66f141c2afafb93a23afa786754fc505d9b61c4235fb432d7791422c6b5b4126d1b8a7600854a3bc13d1435e34bd7ebb76a1d99160cf61c464750df36a3cd3a
DIST pyCEC-0.4.14.tar.gz 12831 BLAKE2B 722b1e0aaddcfb3d55327a187c2003e851a4a6a57467fe7e3942084c7f9f441d7369701e63feb154d49e8b0a1ac525bbcd5e1622ca2d48060c4c77ab53094e0c SHA512 5337f6e1cdbd4872f88e10ce25666c6642ad53bfe209508b8fb4c73709dd41d782bf0e7f95570e71ab24b8465626658334fad7f902ca460c0506e5af271dc59b
DIST pyCEC-0.5.1.tar.gz 12955 BLAKE2B 3df2bbf38bc3a30735763daa0030898f73db97ba6140a307aee400a16ecd2ff08ec04987bbdfaa7eb6218f086fa7f0c04c0d88e0b383af6ec30fa305507383dd SHA512 6e0142d34b4d7b622290921ad5e1ed90c7a9d1955e402cbb792a0588a2a99b96399db4cfd83f7cb021ca2bf6dee7ce68fe9a4623bffd11ef908781c999b8d9d6
EBUILD pyCEC-0.4.13.ebuild 715 BLAKE2B a1fec93c5c808753ae8009ef5ea49b56f52b1b3c8bcb396a6efc6e6a864842659285adba20c8b6de40284f6848e366a97ba8dd62494b672d68492cde459671cc SHA512 008fbec30e4869b6a826c1ba7f72ba9dfbe7eb44eaf7817124259bd40da6724e4f94d8698e1e7c1371b02292a6c7b6f81e5aebaa193c59807d031b5ae5a9c4eb
EBUILD pyCEC-0.4.14.ebuild 718 BLAKE2B 9b2ceec269b34addd7f8a6926b67375d1ca4fa3930d1dddb71eb6d22616c60b3dbf78dfff687af804d646dfbcc1e723bdd6506e1d95c2fc826c8db287652a07f SHA512 5484fb7db1aebeb076d669be15bf175cb72899ea4b1c8a3358d7708e748857d3263b14af07644d50f7b159a89d508894d52dcd1d03ec8eaac55ad650f1a5525a
EBUILD pyCEC-0.5.1.ebuild 726 BLAKE2B b7bac06358729aa5fa8dd5918834da86211f8a01c8ab31c7052ab2c41575bce6dc09fa5f951ebd758529a6d7fe9a0a6768c03443194dda1449fd5f8a5b9ba1e0 SHA512 9032fcbeefa5a8bf094b2528d8d18f0d7a4d79f11970339774520e1a7dd2f2692a94098ea08440f651441c74fe762d48545caaca322000cca17f54c141797055
MISC metadata.xml 445 BLAKE2B 98d12193389b6f112c9af61da26da7d9ecaa6ca85762316f78cb1ee8fa78afcaba7025774dc79a3244771406871ff1cd6282d5b7779838137c35022e02653644 SHA512 6d43cab3f4bf160d36029f81f51010349ae87b13658e2ecff272d0d1005a76c58b3883640f1fcae5982b022239205c84cd85cef717224a627bbbff4c696f0633

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
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 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=""
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
}