bump pycomfoconnect-0.4

This commit is contained in:
Andreas Billmeier 2021-01-21 22:14:04 +01:00 committed by Andreas Billmeier
parent e9de2b3322
commit e0c919b96b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 additions and 0 deletions

View File

@ -7,6 +7,7 @@
* bump zwave-js-server-python-0.11.0
* bump zigpy-0.30.0
* bump zigpy-0.31.0
* bump pycomfoconnect-0.4
2021-01-19
* bump google-nest-sdm-0.2.8

View File

@ -1,3 +1,5 @@
DIST pycomfoconnect-0.3.tar.gz 18897 BLAKE2B 7c369f5fcf24e36f0dcd785a4fcb8f3c95cf9f1e24138b048ec3d01a9868b24185e90e381b52583bce015763c39d9bce47b7e634f9cf6ed7151db9b62476b9fa SHA512 f29b961d4572100ac1d672a59813e99e184e390356b83201b3112f0a887d499d2e4870855ecb858dd952573b5370562714b6f1c3ce3bf66ba382afd93d63c245
DIST pycomfoconnect-0.4.tar.gz 20140 BLAKE2B c288f9974c9d4aa3a5618a16bdd4860316c995e1e3972c51b2fe63cb38da57c0d489219ced961a3523d3b338111a3ad493f17997b5af0141d34460d063dd922f SHA512 c5e42a445b47efd9a3a08d447497b78d4bb14f2fce269cf670fc6d65f5919ba4888b7fff3325c76684139589e58f23db0ea042118616ccb552b9f3d385866382
EBUILD pycomfoconnect-0.3.ebuild 772 BLAKE2B 091ff30dcc8dfcbe03f677ece07d058a73e943592fde87dac147a49f31e13a7b9835c9bfaecd7158a1149b6301d3aaaa70a455bb576f4cb18fb2c3b0b2b2797d SHA512 c0c7478785db12671903581298102d126c1fa5ce82f8747fdcc72646ac4daf1f235dd63e059fbd14b39981f10b4e54fcc67c2c5ed10576ea064a24fde72986bb
EBUILD pycomfoconnect-0.4.ebuild 780 BLAKE2B 7b138491b4585fbe3d60dd2e692561fc2e845db75d2fb7ed58d9a5f3e444aad9af72a507a9bb8c06d1497fd668cd452a31f991aa9ba381239287380c91dd3901 SHA512 f6b31626c728e2ac00e4ba89e709092d64ebd792b84a700e1bc657888dc97ea432a4404dd82036fc9dbad851769f24b8af4bae5280baf9fee0cb7d70cc91c86a
MISC metadata.xml 468 BLAKE2B 3136bb9a62bebf4f922cbdade9ef5dda581bcafc9d12ab11ec15211462b0259559626545b333f2d620b398c3704133ecd507de5ddfe50dbbcccab06911da2434 SHA512 f8593bf5df329c6be5dc7880a0a9d307c78f9e9b92f8c3b0cbd0c3bb90e895da822cd2f87bf8a3e4ae38c4d7d4f15cfcdbeb9bf8eaa8a2f8ab6095ab107775ba

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_{6..9} )
inherit distutils-r1
DESCRIPTION="Python interface for the Zehnder ComfoConnect LAN C bridge."
HOMEPAGE="https://github.com/michaelarnauts/comfoconnect https://pypi.org/project/pycomfoconnect/"
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=">=dev-python/protobuf-python-3.0.0[${PYTHON_USEDEP}]"
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
}