add pyenvisalink-4.0

This commit is contained in:
Andreas Billmeier 2019-11-22 19:15:59 +01:00
parent 30d4091914
commit ebdbda291a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -86,6 +86,7 @@
* add pythonegardia-1.0.40
* add pyEmby-1.6
* add enturclient-0.2.0
* add pyenvisalink-4.0
2019-11-18 homeassistant-0.102.0_beta2
* update pyatmo-3.0.1

View File

@ -0,0 +1,3 @@
DIST pyenvisalink-4.0.tar.gz 15391 BLAKE2B b9c76f202510559fed0a0285c520960f48b93212f30b814a4ac21ce4da2ec84b89ce1019da7d6a7ec5a33605976186e9922c923998749cbe937518e81a32f1ba SHA512 cf493a51875a76c4e54e3d8f4c41ff0d0c975e9625324351eb0c951c027d07515430939ebccecda4394afa05c3174a5ed32feac8f4875eb83d817bf41c93a2f4
EBUILD pyenvisalink-4.0.ebuild 739 BLAKE2B 446aaaaa6555077b3958a09fc255a141dd00c5b8190a805a72e6dac7f687733069579c9e9fdbdb2b7679fbe5887a0b8b5aebda26930833a8dbf43624a56465e4 SHA512 d449a5e10395d42126afa8ebb99028ef700883dec7e09949e14efb4f6d83136bfd0c7b6a202255c004f22b5ab69edeae24340520b5762cafcaf2ad340efab44f
MISC metadata.xml 463 BLAKE2B 202cf9775d44f4ce4dcd1e3a5f63ba6828d29a433f9d7ab701f0efb1bed165177ebbe97d121c1cca98e287a53a125472406c375c707f3b30c194d2e06b775903 SHA512 b04c107f3975c7bf35fb2d944903f485c0ed02811641a7144b29f45ad4682411469941f2308303f6c075132e90cde90dd803223fbb6a8970cf4a136874303f03

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">pyenvisalink</remote-id>
<maintainer status="unknown">
<email>dcinnamon@gmail.com</email>
<name>Dan Cinnamon</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 python3 library for running asynchronus communications with envisalink alarm control panel modules."
HOMEPAGE="https://github.com/Cinntax/pyenvisalink https://pypi.org/project/pyenvisalink/"
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
}