add pyhomematic

This commit is contained in:
2019-01-10 12:02:40 +01:00
parent 7e995eeeb7
commit 330512bf25
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
DIST pyhomematic-0.1.54.tar.gz 38076 BLAKE2B 532b6d5adf2fb247f3eab2bd8c6c5535c675039799c4ae632aa92f895bcb40528d31f6f6b1a1dd168d5a8ac410609e29294dc66b87fabf5d4e33f326bf8dea03 SHA512 20a612edfd3825361485fee833c5b0c5d8c3ee7ab5087a1f342cff4685f80082dbec76e61c6233c9234c2f98b9d14041e6c428d4fe02e929893084ce2cba83ee
EBUILD pyhomematic-0.1.54.ebuild 677 BLAKE2B d6eb1a7c8bcd896be3d3c50b6fc7979269119f29ef3af9d79ee3e190fd89c1a4680f7a625be877d8267d454c688ff95319858caaf624e71846f7d7430d760dc0 SHA512 0ccb7f22babc5a375e36f89a4d685b9ee08845de46a0287608624d365726d8e5cc40c21bbbd9e38c46300c509bb2f4660a121b0519fffa502304864ca12905fc

View File

@@ -0,0 +1,31 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Homematic interface"
HOMEPAGE="https://github.com/danielperna84/pyhomematic https://pypi.org/project/pyhomematic/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT License"
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
}