bump starline-0.1.5

This commit is contained in:
Andreas Billmeier 2021-01-19 20:16:20 +01:00 committed by Andreas Billmeier
parent 7e97b05d99
commit 1558abcfaa
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.7.1
* bump axis-42
* bump bimmer_connected-0.7.14
* bump starline-0.1.5
2021-01-09 homeassistant-2021.1.1
* update pyzerproc-0.4.7

View File

@ -1,3 +1,5 @@
DIST starline-0.1.3.tar.gz 5089 BLAKE2B 8c80e4b62f13ad6008e554c6cbaec325abcd1493a4833e0151cf9cfc988036621adfe68cf7d7c196c5cfe4281a283340458f95e9281e26187c82d163b1bd7bb3 SHA512 d67c12a80bb3fed4ae4fc4fc26ed037fb4b46de100dd0fd556f7be80fb73df85318628f276e95d1ff66cb7b311424d0d422910d65f54043a36f4da7c51e70c9f
DIST starline-0.1.5.tar.gz 6053 BLAKE2B d9095e8bfb18c3e97d849b177e5c0d7b0d7e4fc25cb42667624822446786f9ecb0b9796a8459f0c0009e2f8a04e029cc7d88e390cdb6f40ecb90c015b011956f SHA512 8ca830e850bc83812ca50ba36f54b129ff692980bfc6ecc2701d876e3844e35f8cac096b833e398c990f42cbc588954f97213e7f411e0bc9ffe87e11a9597584
EBUILD starline-0.1.3.ebuild 741 BLAKE2B 2da48a53a09cca8a29d63eaeb8a9afc428b17c595556210188d66e6cceb4aa3a75c8bf7a490ef2ce34c7f6303a75d9630d4707c21decdcb0c460ce48ee2d9265 SHA512 6b71ff903e891719bfe245b7fd9abaaa8ce1024227985a94d181048f09658a7e36e55ea2d02c873e9d1db8b0adde0f2bad7d6e61bd7d807addb54475095409dc
EBUILD starline-0.1.5.ebuild 759 BLAKE2B 3038f9578a955033f88635d7a553926e8722e4ee5b12ac183e2fe9ea3081b71b9bb8957c96a4c074c19e16564770ed6d5e51864aa4b3890eb6e58ace394b2a62 SHA512 415c719ac6edefbc9b3c371bbed176bb2c2b324441d11c93ca916b8168b3ac6e5504a4470c560b4d318231d7d9bce2707a39a2f9bf0cd1360578694593386d70
MISC metadata.xml 458 BLAKE2B 58440d5bbdf6f161584352ce70ce7d903fe9fbaac28ad308c7b31183f5a7dea48903b8e073c76d452e47d8211cdfba2424ac82c1c7dd5d7285322e2c66d202af SHA512 b35243a8ae9aace8d065c881b56a3fbcc73cee79c09473e0a6467baac4c90dd3f7fb84fad47048885c77d4b1bf426f9ad1a5948ac1bda9d7f3a79424d9327809

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_{7..9} )
inherit distutils-r1
DESCRIPTION="Unofficial python library for StarLine API"
HOMEPAGE="https://github.com/Anonym-tsk/starline/ https://pypi.org/project/starline/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=">=dev-python/aiohttp-3.6.1[${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
}