bump pyatag-0.3.1.1

This commit is contained in:
Andreas Billmeier 2020-05-16 09:04:21 +02:00
parent 280a5a51b4
commit 99334e6984
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 additions and 0 deletions

View File

@ -18,6 +18,7 @@
* bump aioswitcher-1.2.0
* bump zigpy-0.20.3
* bump upb-lib-0.4.11
* bump pyatag-0.3.1.1
2020-05-09 homeassistant-0.109.6
* aiohttp-cors-0.7.0-r1 from main repo is now OK again

View File

@ -1,3 +1,5 @@
DIST pyatag-0.2.19.tar.gz 8442 BLAKE2B 35860d06bdbef373287907f1c2fc50b848fc8271d79a109e74481f855c64ac9434b70455afd7cf1c93e3c610fef38d85dd9ef7650ed9126b3eb4ed1ea67c9f08 SHA512 69b4735c26cd3479aff54056900608e0ec6b11c4519c17309a5e11e34ad30bb4e6e3a76035e2c737c57b6f23a82bad782546bf2727ac2f94ed4e15e3370e2905
DIST pyatag-0.3.1.1.tar.gz 6103 BLAKE2B e0c5dc6c19a1f3a32b7bb47e2d8b1e88973d56d04d44f3fa901b08554a48659c5e936ccc329eb8a46e5f34111d0270a89257da9e37cbd9fc2901ab1d198b5130 SHA512 1708a8304355598ae933f944d59f9091675d5b1ff15d8564a66833f19fc2dc499c5d09796cdef29313a84b81408907154e5db9b8f1a324f3dccb3a2ffda8e97b
EBUILD pyatag-0.2.19.ebuild 745 BLAKE2B bd914e672602ec5d343aae676e37caeec3dc45662d78857a19af7271bb7942a18bb2b77cde690cf7ef169a90584a7ac1eb7ee3712c5deef035b7787a2cf3ea8f SHA512 c4d50fba0cdd8186bb414eec93f3624d81f3b89cd6dfbf71f9c735ac0a638fa8a0dcfbc0041ce8ee197cfbc0bd30cc15f91c0f8aab1ae6a3b6ed5b5083eb5e5f
EBUILD pyatag-0.3.1.1.ebuild 745 BLAKE2B bd914e672602ec5d343aae676e37caeec3dc45662d78857a19af7271bb7942a18bb2b77cde690cf7ef169a90584a7ac1eb7ee3712c5deef035b7787a2cf3ea8f SHA512 c4d50fba0cdd8186bb414eec93f3624d81f3b89cd6dfbf71f9c735ac0a638fa8a0dcfbc0041ce8ee197cfbc0bd30cc15f91c0f8aab1ae6a3b6ed5b5083eb5e5f
MISC metadata.xml 446 BLAKE2B d061ed26d7a653201a1817a918ce681d3d91cff3a37776a8ee9f7c499a335688deb6e5c91058b394060e92d55565bfed885f68a4a9cfb3f70857ed30e84a1b2b SHA512 bf2e68a80c9db11f2b56c374ade5b2fbaec7a6712081f0a52d5d9722970357ad7b314a08c815d37fe82f18806edba369ab439f1902e0dcfcdad6ae3dab35f1f1

View File

@ -0,0 +1,32 @@
# 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="Connection to ATAG One Thermostat"
HOMEPAGE="https://github.com/MatsNl/pyatag https://pypi.org/project/pyatag/"
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="
dev-python/asyncio[${PYTHON_USEDEP}]
dev-python/aiohttp[${PYTHON_USEDEP}]"
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
}