add pyRFXtrx-0.24.0

This commit is contained in:
Andreas Billmeier 2019-11-20 11:40:51 +01:00
parent 166e9a8c32
commit 151271eb00
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,6 +1,7 @@
2019-11-20
* add pyversasense-0.0.6
* bump frontend-20191119.0
* add pyRFXtrx-0.24.0
2019-11-18 homeassistant-0.102.0_beta2
* update pyatmo-3.0.1

View File

@ -0,0 +1,3 @@
DIST pyRFXtrx-0.24.0.tar.gz 22991 BLAKE2B b319d9510b3240b4146acba93ee96813ffed24d078882324af35142bd39711fdee00c6e3db48976f43048558576aad5e5d5f56bca6e1ef5e9d75de7ed0aad5b4 SHA512 00ed3d563c40022bdf5377f1a66d3610d2c6c02f4125413bda1d237229cd5d4be0e7a3177a03c5899a7dbd1ef9092157a308a043dfa125f39b843089d7bd74d3
EBUILD pyRFXtrx-0.24.0.ebuild 735 BLAKE2B c1f35605ecb2dc8474a407f338cc1a48b9dba7269b43896766014c5494163519379c94911a6dcb9d583e713ff1f0f66b8695b17b9ef9a07d8f6f40f3c3c2902d SHA512 bdf1ee052c258953a609d9bc21d607e6b81f1c23f58fcafa482fb2d00ec25846dcda17cb34862e2503251b09bd27cc43ffb1615336b7603feba68aa15441beba
MISC metadata.xml 453 BLAKE2B cf3de6207fe0bc23785b1058ce7612f7e6d97e01bce6c7dc72c73a1aa6218d77a9222f2d7615fc7e3f92d3db2889462c3de15ba33def1374ab6311a1498a5bd4 SHA512 1a5c1829da5ff3e8917c49428e3d7caa4588f37ca99660b11bc30ac7ca7408e7787ce8b49d0ef066a019996f0c4d0e6dd4a0a252f0fb486b1279c96cce2893a1

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">pyRFXtrx</remote-id>
<maintainer status="unknown">
<email>edwin@woudt.nl</email>
<name>Edwin Woudt</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} )
inherit distutils-r1
DESCRIPTION="a library to communicate with the RFXtrx family of devices"
HOMEPAGE="https://github.com/Danielhiversen/pyRFXtrx https://pypi.org/project/pyRFXtrx/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/pyserial-2.7[${PYTHON_USEDEP}]"
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
}