diff --git a/dev-python/bellows-homeassistant/Manifest b/dev-python/bellows-homeassistant/Manifest index cc968c8cb..822e9cdd1 100644 --- a/dev-python/bellows-homeassistant/Manifest +++ b/dev-python/bellows-homeassistant/Manifest @@ -1,3 +1,5 @@ DIST bellows-homeassistant-0.7.1.tar.gz 46623 BLAKE2B 35db111572bae7b6ee75e38b3ce5fdc4a312a5f99c8ec44cef3c1274ed9e98e8a40a788a6ae4b8ef9c35f0506a8a44c06aa563955cefa53bb5b27a4f603e0e69 SHA512 c45990e6573f1e9251243d51deec58c4da2735797391b9080de4a684f0c69d46158da79b75aac75843543abbaf7cc36a2f61553bc362bbb36c4e54c22052d7f5 +DIST bellows-homeassistant-0.7.2.tar.gz 48671 BLAKE2B e3eda4cf28f96a579617b49c21ded7f6f9f6d1ecf14831745bfea3b59e1d034d6f34949deeaee257e8b68e1c4f7737267fe64f33e7437d9864b5fe394d3ee550 SHA512 144df9125df797674a790893ccdf1397024a5a6f6a6400938e6df001de74ed6d3fd950c588869e2b660cd4247c9cb5151ff891ff779ba510a810a05b853822ab EBUILD bellows-homeassistant-0.7.1.ebuild 673 BLAKE2B be6ae6e53486c6ec35ddf1224622aae567915af2beafe64214e2b5fe38dfae708794f66f5cf51b1c67c36ea00f804599ec1544236e173c7099075ea0bec9a75d SHA512 67c5b2205d5e6889e340688b5ff2bfc81e4397de31a16cf88dc4d0301889d30b9d578b48213b8fc690df7e9a41c9021a9effd1afa52d6bebedcd0aa062641cc3 +EBUILD bellows-homeassistant-0.7.2.ebuild 673 BLAKE2B be6ae6e53486c6ec35ddf1224622aae567915af2beafe64214e2b5fe38dfae708794f66f5cf51b1c67c36ea00f804599ec1544236e173c7099075ea0bec9a75d SHA512 67c5b2205d5e6889e340688b5ff2bfc81e4397de31a16cf88dc4d0301889d30b9d578b48213b8fc690df7e9a41c9021a9effd1afa52d6bebedcd0aa062641cc3 MISC metadata.xml 374 BLAKE2B ef9bed1725f9a06124f79befeb6f0f2d4a5108b349767a48b0354d5ec44c8a9dd82f9458c6725529bac2d6b14e91253bb5341f4515e5816ba83c05f55419c15c SHA512 c0d0f70f8a6c7afec9ff09043c7c1fd1066a6305ceef963058a846ad4456b4194185ac6bbc069fcecfcf284dba8c17f4ce9dab383e18b4fd345221c74364612b diff --git a/dev-python/bellows-homeassistant/bellows-homeassistant-0.7.2.ebuild b/dev-python/bellows-homeassistant/bellows-homeassistant-0.7.2.ebuild new file mode 100644 index 000000000..53304dbf9 --- /dev/null +++ b/dev-python/bellows-homeassistant/bellows-homeassistant-0.7.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v3.0 + +EAPI=6 + +PYTHON_COMPAT=( python3_{5,6,7} ) + +inherit distutils-r1 + +DESCRIPTION="Library implementing EZSP" +HOMEPAGE="http://github.com/zigpy/bellows https://pypi.org/project/bellows-homeassistant/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3.0" +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 +}