pyHS100-0.3.3 added

This commit is contained in:
Andreas Billmeier 2019-01-06 19:25:50 +01:00
parent fa5b352419
commit efea961906
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,2 @@
DIST pyHS100-0.3.3.tar.gz 15250 BLAKE2B 118689acac2d292a01a83b84af3263995a7ad85fcf754106eb1be24ed4188c64cef3bc07b73df17937e4b3deba28726d27a462e05a8f54cc768d1629ff97282c SHA512 f1abdf6376c0ee955a7609540683230d221a67cac7fceb841badfbd0e7335e71f7bb06ce64ac8f6f9ced7b6ae57dc1ab2e7e1f4f9d6132e14f95fbf0abcb8733
EBUILD pyHS100-0.3.3.ebuild 734 BLAKE2B 7d06491833a1d456580a1354ed8568202b525e6ff8fe3fcb3581ad92ca1822aa49e2da943e9fd56494f67d19ac553fbae619d437711dcd3a0b0da9f1205389c4 SHA512 502728cfc3351a65acb6f546f7e5f8b7ba4c157f99a232e3c7d0343edf74599312488a42db9b1acb95bffb511c80a5ec2a5a2a9d7476bf7612099b7695cbcc18

View File

@ -0,0 +1,31 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
inherit distutils-r1
DESCRIPTION="Interface for TPLink HS1xx plugs, HS2xx wall switches & LB1xx bulbs"
HOMEPAGE="https://github.com/GadgetReactor/pyHS100 https://pypi.org/project/pyHS100/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPLv3"
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
}