add radiotherm-2.0.0

This commit is contained in:
Andreas Billmeier 2019-11-23 22:41:08 +01:00
parent a4fe451aef
commit 808804a36c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add radiotherm-2.0.0
* add RachioPy-0.1.3
* add pyqwikswitch-0.94
* add georss-qld-bushfire-alert-client-0.3

View File

@ -0,0 +1,3 @@
DIST radiotherm-2.0.0.tar.gz 10061 BLAKE2B bda40c2081609233bb24dcbf79583c6ee06a66322c875f3de7eaacf8726e861e323e1a443888d716924073831ac2f95b7e090399b834e06154dd244cb2cb40b9 SHA512 f5b831a8ea2454e741e3528018747cc55b96e3c211242a750c513d910ff20e39a7d7f9370acbf047aa94ba211e636d1f198604a75b70684eb1aefe188bdc8f72
EBUILD radiotherm-2.0.0.ebuild 700 BLAKE2B 973d6076c7e9afa16fb53747485f0cea08acd93974a339b48a2c729a1597c18579395f9e50dfba938c52bf02098d38c9960c5c595cec1cdab3ce0d6e3a2d0cef SHA512 6390e335185e1269d0c06cb34b0e6f236aa0123f78e9762d35c021ad40be9fb7b7f48ac9bd38c789d679facc3ba9bf5e956cb227d5be8dd52dcc0dbd693b1b11
MISC metadata.xml 465 BLAKE2B 470d345b8af08d8f706a46909acdc76279530d65f40f885396dc96450c6e00db0ee03e17f1d3bfa640d3032a3a317ed1391ae926f886e6c18d68de2d339533ee SHA512 ffc140f53ad6f0e980755153fb03a021791491c085667e2d22170866c186901b543805e0682c9dc7e327b40badc8c1d9ca36258e6a2d52185bfbb2c596753d49

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">radiotherm</remote-id>
<maintainer status="unknown">
<email>mhrivnak@hrivnak.org</email>
<name>Michael Hrivnak</name>
</maintainer>
</upstream>
</pkgmetadata>

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_{6,7,8} )
inherit distutils-r1
DESCRIPTION="client library for wifi thermostats sold by radiothermostat.com"
HOMEPAGE="https://github.com/mhrivnak/radiotherm https://pypi.org/project/radiotherm/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
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
}