add tuyaha-0.0.4

This commit is contained in:
Andreas Billmeier 2019-11-24 18:56:17 +01:00
parent 2b90e4540a
commit 024304ef4c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 33 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* bump tuyaha-0.0.4
* add PyTransportNSW-0.1.1, TravisPy-0.3.5
* add pytrackr-0.0.5, pytrafikverket-0.1.5.9
* add tp-connected-0.0.4, Js2Py-0.66, pyjsparser-2.7.1

View File

@ -1,3 +1,5 @@
DIST tuyaha-0.0.1.tar.gz 4879 BLAKE2B debad66961530955ae76cdbb2e5563ea5038d2342b1975b076839a189e0d154a13f318280a315e8d539796fe060ae33ce9dba3867ce9fe0af2e6f64226199ccc SHA512 3fc24ff57f50dcd486cb97e9e66836cc8ef534aaa76d99886b8eb141907df71e3d421aac59ad7839d7840c194211896b91916d7895f99751aeb3a88588a34ccd
DIST tuyaha-0.0.4.tar.gz 4828 BLAKE2B 2c28b7d5323679a495341a7d243d2541515c54a932c10794ce25dd1da338af4aad6251f044caefd965074cc6de83905a12b0d3e52f5f4bb6d75308a6ecd37f48 SHA512 9c9cfb51419dc71fc1aa9c413d91e89a25b7d58e40a5e602981b5e1e8d0b96deaab7627f120b7180d779a00519feee68d6d16e4f4bc0bf3d32ac9e6dd017226c
EBUILD tuyaha-0.0.1.ebuild 731 BLAKE2B 1e5d526980006f115845862535c19870d73f9b895994614253b0499c229d9d8441ff6487719b68ef970367ec0526f84abc3d565ae21071e56767f7de461e91bd SHA512 1aea16dadaf37650e7eb75b30354f16efd4f75645d313b93874acb6e54a322778bf88099c688ba9d80dca401526c74be2ae9b01308e2aa851f5a89d554b70b01
EBUILD tuyaha-0.0.4.ebuild 731 BLAKE2B 1e5d526980006f115845862535c19870d73f9b895994614253b0499c229d9d8441ff6487719b68ef970367ec0526f84abc3d565ae21071e56767f7de461e91bd SHA512 1aea16dadaf37650e7eb75b30354f16efd4f75645d313b93874acb6e54a322778bf88099c688ba9d80dca401526c74be2ae9b01308e2aa851f5a89d554b70b01
MISC metadata.xml 461 BLAKE2B b56ea9d50a862ee1ecf58aa077fec7322d79a96b03f702653268a33403d163430caae3344c7475fe2704ab7e15077c7c3f3a21f6de6e9d7132c85779ec4e0c0d SHA512 38c6af109f749f7e78edd0e6300b8fc3f6bf7ed687d1332a22db0c2610a9f91cd1c8a5231e770094726006f39be037576aaf12475ad1adf79666c755a1929371

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="A Python library that implements a Tuya API endpoint that was specially designed for Home Assistant"
HOMEPAGE="https://github.com/PaulAnnekov/tuyaha https://pypi.org/project/tuyaha/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~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
}