bump PySwitchbot-0.11.0

This commit is contained in:
Andreas Billmeier 2021-10-02 13:59:56 +02:00 committed by Andreas Billmeier
parent 622993f6e8
commit b9c382398c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 34 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST PySwitchbot-0.11.0.tar.gz 5646 BLAKE2B 4dd94030974d15c075f9163a9d40f10b6171c9409e1854c8dcd399fd0b9b569b11af98a59aa9df30f701922cabc6249433c70c5b4ec9674bbbfd5f9705134815 SHA512 16c870250bb2ccfe3db1f1fcbfb40969da006467e6c19ccaaf885984fc4739de3397577f660c79b01594b5d23797d8ab0fa099cc19571c4510e602aeab98c6da
DIST PySwitchbot-0.8.0.tar.gz 2339 BLAKE2B 18ff8acdeb0fa9b42c25d66f62400a2f33481322262ea1aa9f20d11df784feb2a7f6ee1bf3b6bb836e08087fc07e895d17920f015020b06f46908193b133f1e7 SHA512 54d87c800dc0c15187bef145ec8ced475c839f2e86533004c3faacd0c4e4877b8db3763e919d487dbb46f3cc575b6b9ead329d72c5e851ca0871b2399abf982f
EBUILD PySwitchbot-0.11.0.ebuild 740 BLAKE2B 4fa60ac6690029df26e6c302dbd374ba67c3382d2b43bbd7e237da733a3eeaf7e7a3a62520b3560c5605a05611652ebeb7364eeef1af4889d5f16ceca185e106 SHA512 ac15581a0007916d052a15c93d34cf03e3351b4499b38d83b5cbcd16bb930d767fd7b054ca2521a683847520fa04d3923885e7fd3e14108da2245d9d74804874
EBUILD PySwitchbot-0.8.0.ebuild 740 BLAKE2B 4fa60ac6690029df26e6c302dbd374ba67c3382d2b43bbd7e237da733a3eeaf7e7a3a62520b3560c5605a05611652ebeb7364eeef1af4889d5f16ceca185e106 SHA512 ac15581a0007916d052a15c93d34cf03e3351b4499b38d83b5cbcd16bb930d767fd7b054ca2521a683847520fa04d3923885e7fd3e14108da2245d9d74804874
MISC metadata.xml 330 BLAKE2B 513f48da73e61f211a2398788c1ae2fa6a5f11b75bbe22b6e01eecb74623ead9e67076a57515be99a3178af24f41a51866b8e81c03d719cdff8ff3566ac471ac SHA512 9a8ed7d0c9e9092fa6af0ee042fb27e45b552e2256f0a95f94f31b79ae597cae02efb38ff66e64c2e296494ba8baedee9f700190ebcdd0de5d27d197cad7311f

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_{8..10} )
inherit distutils-r1
DESCRIPTION="A library to communicate with Switchbot"
HOMEPAGE="https://github.com/Danielhiversen/pySwitchbot/ https://pypi.org/project/PySwitchbot/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/bluepy[${PYTHON_USEDEP}]"
BDEPEND="
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
}