pywemo-0.4.38 added

This commit is contained in:
Andreas Billmeier 2019-01-06 19:26:45 +01:00
parent 3904cb09ae
commit bb752da9a9
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,2 @@
DIST pywemo-0.4.38.tar.gz 38974 BLAKE2B 4a7a1d9915585b2eecb92634eaa5ef87b7fd345058147493de0098f1524c250a50fc052f70c0aea153141d3374d22ab5a1d869569fcdf6de02392609925d5a4c SHA512 2ad36b256dee071703928a20191b9ab6e031ea5b9c17616db00dca61ba5e8619814c8673292f40e5a2f5eb4a85150784becd2492761096fe171dc393d9e6b162
EBUILD pywemo-0.4.38.ebuild 717 BLAKE2B 38ae3365251d9bbbceba370c1784015dc8d5b3c992aaeba87e9e54b1ce7360c1ed44520d0ff37ef077a24f6d28c73921402b44465913c5336d423a52869fbf31 SHA512 7eb8fb5eb32bccdb40b639a6a952eefba1ff8300b770de79ae091abeefea6ccd293a16d776f742c39832fa1caf6a959a8b07ada7bb2bfabc29971d8ddbd9c2df

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="Lightweight Python module to discover and control WeMo devices"
HOMEPAGE="http://github.com/pavoni/pywemo https://pypi.org/project/pywemo/"
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
}