bump python-openzwave-mqtt-1.0.1

This commit is contained in:
Andreas Billmeier 2020-05-23 11:08:02 +02:00 committed by Andreas Billmeier
parent 207ec90188
commit 4144c19267
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 0 deletions

View File

@ -3,6 +3,7 @@
* bump pydaikin-2.0.4
* bump av-8.0.1
* bump proxmoxer-1.1.0
* bump python-openzwave-mqtt-1.0.1
2020-05-21 homeassistant-0.110.0
* add forgotten Manifest

View File

@ -1,3 +1,5 @@
DIST python-openzwave-mqtt-1.0.1.tar.gz 18491 BLAKE2B e60ce121c802a874a40cafc570b62fb78473efb2559f1683b5adf4ff82bbe71854fe6498cd429d45a63a2931e76a3aa4522d84c2c7e0f06fcdabc013566cea0e SHA512 5949455c8ea4fcabe4425f6b58c65236eab40d3898e0a3bba4071c91c41eb3ce154665221749d9e5de5271cc419265dcab81c37fc815f1f4d0378841fb0ca971
DIST python-openzwave-mqtt-1.0.2.tar.gz 18495 BLAKE2B ea7a1721cf964450943efda0b08076a4a6fb96eaaadd68956a94d0514fc711c49e4e82556d5d92bf34d1a62919094a2ca8b53c9f6907159b02f1d6c1289024c6 SHA512 7e3482375639286f99300766b9963a0f51ec6036e22283c9c14ba7094ad963060326650969f91babeec51f92b5ca49de720d628407a0cf117d7202bee68f962f
EBUILD python-openzwave-mqtt-1.0.1.ebuild 777 BLAKE2B 0fa1bf9323170ad30e3dff23bf8701d4f05f611c8e91219e0de422760b1315d58e5d7f444484926ed4dc05473b0e33600582cc96e1f64b0c8d40fc13b79f6179 SHA512 99a9b6d1bd7e7997a42bdd4795340dd6e8f1b3e6d22c682a5b00ef33a867b5b373b443292e96fb151fd6fd75dbbfee62eea0f69ff431a5a864d76d5abe8b7d4f
EBUILD python-openzwave-mqtt-1.0.2.ebuild 777 BLAKE2B 0fa1bf9323170ad30e3dff23bf8701d4f05f611c8e91219e0de422760b1315d58e5d7f444484926ed4dc05473b0e33600582cc96e1f64b0c8d40fc13b79f6179 SHA512 99a9b6d1bd7e7997a42bdd4795340dd6e8f1b3e6d22c682a5b00ef33a867b5b373b443292e96fb151fd6fd75dbbfee62eea0f69ff431a5a864d76d5abe8b7d4f
MISC metadata.xml 467 BLAKE2B 682e384f5f9ae2131ab84016d70df50c16bbd54a3be5985a488ad3631c1b9bd1f4c8b191e9ab2143df117e74a4a9760c197748e0c39614322feb17471f745866 SHA512 01060649f0aab181469fd319ff29357ca0f1c29a5472cb1c171df798d8a99b364d968e44ca2d7a30116e794aec975b71ee270c4d395e26449d02aeaa72da2c97

View File

@ -0,0 +1,31 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7,8} )
inherit distutils-r1
DESCRIPTION="Converts MQTT messages from qt-openzwave into Python objects and events"
HOMEPAGE="https://github.com/cgarwood/python-openzwave-mqtt https://pypi.org/project/python-openzwave-mqtt/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/tox[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}