bump venstarcolortouch-0.9.ebuild

This commit is contained in:
2019-11-24 19:13:42 +01:00
parent d229203ad4
commit a308588f15
3 changed files with 33 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* bump venstarcolortouch-0.9
* add my own release of uscisstatus-0.1.1
* add upcloud-api-0.4.3
* bump tuyaha-0.0.4

View File

@@ -1,3 +1,5 @@
DIST venstarcolortouch-0.7.tar.gz 8611 BLAKE2B f291ef47a9dd340cf12c4120f44b048d0a165e03b904eca8d52c4d79faea2c199fd40010f010d67724b3b93b368c913dcb2a76d55ba02aaf0df78771a178161d SHA512 8e829846e4bad96d11daabbbcad2876567c5d84ad56f62c2d5cb29c6809ec732133c4d7d14a1d78b851e464ac5208170c21229671ed1e2565ce4c4205abd60e0
DIST venstarcolortouch-0.9.tar.gz 8203 BLAKE2B 23f413ccccfe4500e6e78c9aa8ef0812771708d5c3d9935577cd9e82ce0bc73eb2d8ca43078be070e0734278ef8347c0ccdd7a6b7bb644f6c95bcdf0268798e4 SHA512 058a2322350ca08b1b42890c43b339b0774506c380a4471ef7ea7bbba78114bce685fd34902c87a5e0e0fb537c0a4b3f0e68052cdf95d13d70ac0d7c0f65cbd3
EBUILD venstarcolortouch-0.7.ebuild 705 BLAKE2B d297b385435a319971b2ca0c8db9270e26eede0d45f0acd64f0f18d2f2d8d6652e975968b0fdc3c7205dee3cf3e34b4ae99d42c8165604f00df04257a192d4ad SHA512 a55758075e614aa97368930fc3384fec18fe3bcaceb22b1a6aaba4acfd98b3c7873e86fca43c68d0ed30d1ed3cafaa7b154a97679d0d37a346ed5553d56f2ad0
EBUILD venstarcolortouch-0.9.ebuild 705 BLAKE2B d297b385435a319971b2ca0c8db9270e26eede0d45f0acd64f0f18d2f2d8d6652e975968b0fdc3c7205dee3cf3e34b4ae99d42c8165604f00df04257a192d4ad SHA512 a55758075e614aa97368930fc3384fec18fe3bcaceb22b1a6aaba4acfd98b3c7873e86fca43c68d0ed30d1ed3cafaa7b154a97679d0d37a346ed5553d56f2ad0
MISC metadata.xml 472 BLAKE2B e9c9b90782f3c03655056e455b5e13f4b0c635f324bdc59ece7b3a57caebc4a5eea4fa3807281866b713a8cfcfa58a0cf4c679ef7f67d33a413982969658814e SHA512 13dc2d819f356ba0247aebbcbf7a76444b688de32fbec49c60513c70a94dd132cf309c6033198a4afec30ac92d5431ff2964799e5e15d18afc6d0a88d897ac14

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="Interface Library for Venstar ColorTouch Thermostat API"
HOMEPAGE="https://github.com/hpeyerl/venstarcolortouch https://pypi.org/project/venstarcolortouch/"
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
}