add pyfnip-0.2

This commit is contained in:
Andreas Billmeier 2019-11-22 20:46:02 +01:00
parent 424efa82b8
commit ff4b858255
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -91,6 +91,7 @@
* add fritzconnection-0.8.4
* add fritzhome-1.0.5, downgrade to fritzhome-1.0.4
* add afsapi-0.0.4
* add pyfnip-0.2
2019-11-21 homeassistant-0.102.0
* bump homeassistant-0.102.0

View File

@ -0,0 +1,3 @@
DIST pyfnip-0.2.tar.gz 1690 BLAKE2B 7335eda26c23437d5bb882c96bfff8991c9a89395c32429b975f8e4a1172938edbd969dc80a35684e49286c4fe5f5b2597503bfea6f5ad10cbe91d38a4139f86 SHA512 a66171302c5329f41d3a73606fd8260b53ed4e5c3147b373cc21a4cf2052832eecef033c26492469e8d18f0bc5f27630762617dc216d768faf38ab65f61b68d0
EBUILD pyfnip-0.2.ebuild 714 BLAKE2B f2c4c8372d867fa71bdf78bc9ad64350f44b11c814d744ada562ffb75916945d98fb7a309db943ebe6b79e0c3cd15ac990fc29ddae3966f9b2646d0b3775a657 SHA512 bd552027616b4888b63a74f7c56697aa53f0be795146a229f6355e290e02a4b0228ef0883fb5e330dfe3b85ce5397603e47eb1d41488eb55a87d9dd4fe86e109
MISC metadata.xml 454 BLAKE2B dc7bc2ec4e1e2302a5d40901c38cbe37611437e5307ff7f8010a2762832a126b9fd59b668d3baa47ad04c54edb070174a2b978a3604a3f53dac05eee02d6b92e SHA512 85b040df88ec8aa7aa331b7a31f02bebadae05e41d82cd357ce3c5159c08b52c5072a80e2b3f4c6b835181db7c0ebcad4a3afc6e3dd22c1cf4013839b4f01082

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">pyfnip</remote-id>
<maintainer status="unknown">
<email>juha@juhaniemi.net</email>
<name>Juha Niemi</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="Python wrapper for FutureNow IP relay/dimmer units"
HOMEPAGE="http://github.com/juhaniemi/pyfnip https://pypi.org/project/pyfnip/"
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="dev-python/requests[${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
}