bump python-tado-0.2.9

This commit is contained in:
Andreas Billmeier 2019-11-24 17:57:21 +01:00
parent 6d47c2933a
commit cb51df0090
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* bump python-tado-0.2.9
* add py-synology-0.3.0, python-synology-0.2.0, synology-srm-0.1.2
* add python_opendata_transport-0.1.4
* add pysupla-0.0.3, swisshydrodata-0.0.3

View File

@ -1,5 +1,7 @@
DIST python-tado-0.2.3.tar.gz 3071 BLAKE2B 931bcca00331b8b91885c092a9012de37fcac3664e71a24421426415cd7876a2fe95a8907bd2378bb7b2ce84f1b66367119e3bf0b4f0adbb8d463ca064df932e SHA512 3e092d9f25b96c2936cf43700b1cbf61135387c235a6d319e3583f9ca0b4c11c860df5e4c77e492cf6dc062411cf856f651c8525276ebf3f3f8178425a06f7da
DIST python-tado-0.2.8.tar.gz 20047 BLAKE2B fd476d69eb5310054d71f285fca88b1f9d68447ba4a957a672e821ecc27eddd841b596c6cb2dfd0b896a56d1329fbd8b3fe378033d4b22fda5d50edc63467fa5 SHA512 8623e6b79070c7ff2248a17bd1c1e78ea4a703820bd1c1ebce2860ecb606559fc48ed7e192f3fc650d6f33c08e4f155bbe864b194433c470d7b3df50f09dff1c
DIST python-tado-0.2.9.tar.gz 20044 BLAKE2B 3125df3f9740a436a4999a5425215b38ad9c92d6122dc1c1e0ada4bbf29c9931a87b416e59c25e22808b032f39b0ed909ad6ad232d85ebd550baa0c6516e0f3a SHA512 0a6dba5236dea271d74581749750248cee8e46eb056d5cb03a335f7d8539e48fabe4f10a86901a29e7e72c88b1f831c1fe9b002dd2a65ada04a15f39c772dcf2
EBUILD python-tado-0.2.3.ebuild 682 BLAKE2B 3c530f9703ee3c34b2ea8f0baef3548978104395e69b0ab59e5e2f15902ade25be257db306588c75c0da28156194cfe6f05ee15b7e272d5c5a45ab816d370622 SHA512 0204f4fb8f720f43ee0c9c7ebfcfb4d2bbed9a5519a19336377df103c1bf18252fd6e6ab5ba07ee50f8536313f52303ce82fc02a15a3c85aed7c54e06f9f33fd
EBUILD python-tado-0.2.8.ebuild 765 BLAKE2B 318c6e61fa432a1eb659e545e7f572427ea1b2cd291991e0607a9954a71865f603a5f75eae22734f68bb6b8037baee74d54e0eb274f3b87a0ae0bd62d9fb8e13 SHA512 efed4aacbdf06cf99f8f797eb121b637f0c8992d4482b00c8b70f3a4bf68ffc215e567f339fc478c928ce7b55d37cb691abf83dcd7c6111e667f28afc1331f47
EBUILD python-tado-0.2.9.ebuild 765 BLAKE2B 318c6e61fa432a1eb659e545e7f572427ea1b2cd291991e0607a9954a71865f603a5f75eae22734f68bb6b8037baee74d54e0eb274f3b87a0ae0bd62d9fb8e13 SHA512 efed4aacbdf06cf99f8f797eb121b637f0c8992d4482b00c8b70f3a4bf68ffc215e567f339fc478c928ce7b55d37cb691abf83dcd7c6111e667f28afc1331f47
MISC metadata.xml 495 BLAKE2B 8161e9799bf3fe20c6a3ca52c721353fda624947130a89716a0683fd34100b9b00a9f8ecb69348096a709d938e0775f5fef7a1fe653e6738a4de6717578afb22 SHA512 2c7a7030d14a17ec377c0476a85b2e1af1e870e7ee4093a5bb484e6ca7857bc0fcb5f3cc647903ea4c34ff5ff5d2549a5bff80d7226e3f7dda238d1d99b4cf3d

View File

@ -0,0 +1,31 @@
# 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="PyTado from chrism0dwk, modfied by w.malgadey"
HOMEPAGE="https://github.com/wmalgadey/PyTado https://pypi.org/project/python-tado/"
#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
SRC_URI="https://github.com/wmalgadey/PyTado/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
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
}