bump pyzerproc-0.2.5

This commit is contained in:
Andreas Billmeier 2020-06-27 14:49:35 +02:00 committed by Andreas Billmeier
parent 4ada09fe99
commit e86e417703
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 0 deletions

View File

@ -19,6 +19,7 @@
* add toonapi-0.1.0
* bump home-assistant-frontend-20200623.2
* bump Plugwise-Smile-1.1.0
* bump pyzerproc-0.2.5
2020-06-21
* bump ptvsd-4.3.2

View File

@ -1,3 +1,5 @@
DIST pyzerproc-0.2.4.tar.gz 12712 BLAKE2B 74317b67d89f07f283d19923934c1bbc55487693b4aca454a52354659fa2f49f15def42b91df2d9a23690223de20123e2d44d1a5ac7a5e151f04b3f6f3518b4f SHA512 9df7b84967581c370c8cae8574711c58cd60780e37b23dcb36c129a23c1a14ef2a2f2e08990f6b9ba9b2f668fcb2b4f74c4f7d9b9fa2fd674af358ce57dc2377
DIST pyzerproc-0.2.5.tar.gz 12858 BLAKE2B 4ad678c247465739c43dd198272a63e1a23a7a18a6be71b7513ecdf6d2f0b64c7dca94c7d189a5f139ffebf10a55cae085372d52bca2c51d1c07518d43e78af3 SHA512 95b906152517076b561562182fea878e93e33d420b715634f2943f34d4f0d4576787e02ad77c2f12e34a7f568e8ea430266fef9b9f1cb5bcae2e17683cfe0632
EBUILD pyzerproc-0.2.4.ebuild 792 BLAKE2B 904bb27110d84d0e0fd37d65a33b84462436ecd9b65c90ed2f31b9436b9cfe31c38bbe249da6e6083fa8130d187f2220a24c68d5f36196af5b29fc572d72eef8 SHA512 9e5bcbd901f61ef7e46c769bfe33c70f22073e92e6ae13ba15f79cd6aaaec2ac5d1ab9588f582a7320e97aaa57661ffcdf3e32ff2174127417d9895a7e97b2e0
EBUILD pyzerproc-0.2.5.ebuild 792 BLAKE2B 904bb27110d84d0e0fd37d65a33b84462436ecd9b65c90ed2f31b9436b9cfe31c38bbe249da6e6083fa8130d187f2220a24c68d5f36196af5b29fc572d72eef8 SHA512 9e5bcbd901f61ef7e46c769bfe33c70f22073e92e6ae13ba15f79cd6aaaec2ac5d1ab9588f582a7320e97aaa57661ffcdf3e32ff2174127417d9895a7e97b2e0
MISC metadata.xml 448 BLAKE2B ae1a6d965d8e780477725d3c0a6f1b051bd39977c84684d5b9fc7b698d1b2eeecf761e9fe25c6cb1f365e09ea6ad55ee929a1fce2bdaaeb5cff0da9884418f47 SHA512 6bdd00efa1d50a3df2fe1d3df8cbb253e7724fb69691e290a708d724ccacccd8c36e7096b961878a4d5c0af007b188fa7bc167504272bcee84c07c937f99c9b0

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_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Library to control Zerproc Bluetooth LED smart string lights"
HOMEPAGE="https://github.com/emlove/pyzerproc https://pypi.org/project/pyzerproc/"
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=">=dev-python/click-7.0[${PYTHON_USEDEP}]
>=dev-python/pygatt-4.0.5[${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
}