From d25baa3dc7f706a92f25be21dd91631b7fe61ac8 Mon Sep 17 00:00:00 2001 From: Andreas Billmeier Date: Sun, 23 Feb 2020 23:37:35 +0100 Subject: [PATCH] bump pyhiveapi-0.2.20.1 --- CHANGELOG.txt | 1 + dev-python/pyhiveapi/Manifest | 2 ++ .../pyhiveapi/pyhiveapi-0.2.20.1.ebuild | 30 +++++++++++++++++++ 3 files changed, 33 insertions(+) create mode 100644 dev-python/pyhiveapi/pyhiveapi-0.2.20.1.ebuild diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 4759b5526..f6b0eabf5 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,7 @@ 2020-02-23 * bump env-canada-0.0.35 * bump haanna-0.14.3 + * bump pyhiveapi-0.2.20.1 2020-02-22 homeassistant-0.106.0_beta2 * bump homematicip-0.10.17 diff --git a/dev-python/pyhiveapi/Manifest b/dev-python/pyhiveapi/Manifest index 394ad429b..bba2d8587 100644 --- a/dev-python/pyhiveapi/Manifest +++ b/dev-python/pyhiveapi/Manifest @@ -1,3 +1,5 @@ DIST pyhiveapi-0.2.19.3.tar.gz 14831 BLAKE2B 7ea157d0f4cd5aa8aa95ebe32006be3f1c4ae4ddd7b3e22cbe698311e2249149980c728b24498fa218a2a34470040e3d0eec0399311ea02116e6f2982e755aeb SHA512 16f45b0e762014bb4095302895307046ad101c84dfaeab3fcb7fee3bc2c07f06c6d63eeaf2513ac0130b7412efae7db7b0720b53e271d9d70f23519a7b25d734 +DIST pyhiveapi-0.2.20.1.tar.gz 15574 BLAKE2B 84cbbb27a127666f9ca4a1f87ab612ffbe8cb8abd030edd1accbf80c8d555fddd160ec6edfc444e3d52aa906346f154eaa183812bbcebf7374f4f9bba10e69c9 SHA512 925d9b54454e8af408140f4a2587048bafbe59cf5a1f9e285a85bfc87015d1ed4ad622ae4fb14acbfa40222295ef1988aa7af99787c9198a24e247bf2d8480ec EBUILD pyhiveapi-0.2.19.3.ebuild 688 BLAKE2B c02550f908530b387bf1345e96321b6fd6450f4b0b3e50167609b4bb9d026088490863b4034437dec961a43feb627c48f48e818569a8e236ad6c3f6c0f553068 SHA512 2d5357ebef0bb1dd987bcfe9c9e2e7a8c78922c4c526cd06cfd65a012156240b63d7794ac0958819b6f0588d2a9350d075ae741eed9bfaa0d91556f87e04c099 +EBUILD pyhiveapi-0.2.20.1.ebuild 688 BLAKE2B c02550f908530b387bf1345e96321b6fd6450f4b0b3e50167609b4bb9d026088490863b4034437dec961a43feb627c48f48e818569a8e236ad6c3f6c0f553068 SHA512 2d5357ebef0bb1dd987bcfe9c9e2e7a8c78922c4c526cd06cfd65a012156240b63d7794ac0958819b6f0588d2a9350d075ae741eed9bfaa0d91556f87e04c099 MISC metadata.xml 448 BLAKE2B e53ffdabdd7118dd92566dcc48ad9919fe96554a2518d84888c0f553922f1faa324f34db62ba0c6f54859917ebd30f219010902eed4675500c62e76d866589be SHA512 fdcda3f6ab4a1dedfc1096ee29a795a20b65d030c92e4768ea25885342479295b82caa915164662f209c04495f99a7cd1734f211734f260a18601a75e680189a diff --git a/dev-python/pyhiveapi/pyhiveapi-0.2.20.1.ebuild b/dev-python/pyhiveapi/pyhiveapi-0.2.20.1.ebuild new file mode 100644 index 000000000..ef08a8c8b --- /dev/null +++ b/dev-python/pyhiveapi/pyhiveapi-0.2.20.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="A Python library to interface with the Hive API" +HOMEPAGE="https://github.com/Rendili/pyhiveapi https://pypi.org/project/pyhiveapi/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +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/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +}