add pyskyqhub-0.1.0

This commit is contained in:
Andreas Billmeier 2020-07-25 12:14:45 +02:00 committed by Andreas Billmeier
parent 44d089c443
commit 99f12fd3cf
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 49 additions and 0 deletions

View File

@ -10,6 +10,7 @@
* add wolf_smartset-0.1.4
* bump pyinsteon-1.0.7
* bump bellows-0.18.0
* add pyskyqhub-0.1.0
2020-07-18 homeassistant-0.112.5.ebuild
* remove typing

View File

@ -0,0 +1,3 @@
DIST pyskyqhub-0.1.0.tar.gz 3511 BLAKE2B 576591e89537858b91c6133d5e2a7696df8e232d1e7fe298d2f678f35a136bedaee9ba24246269817e175f537341a1e03d705313110db664179b3426fee2a827 SHA512 ab1be0302dd43de5ae0c8e50d340060819386c3008919811485323e0831ac9058803dd4b19d012d8e07400a442d1f6a782bb5f6d9a9d79774641fcba9adffb3b
EBUILD pyskyqhub-0.1.0.ebuild 708 BLAKE2B 8b1926541a717b1b360705f7b1d34d620c14078f59d79348d6661a660821aedd99ba4e81a21f74e4c317458afe7f7485f9523f07438e967394ae56cae3f08ba9 SHA512 01ec7e29785569218788ebcbc9f12122e45a62e7605f4843e5f201b262af7aa55a0a66ca4446ed13a7395a3f90892700d63ef1e22700ec8cdab6b92bbe1ddfbe
MISC metadata.xml 457 BLAKE2B 641192ded5de5c196ebe1e0e7c803ff851c0f89ef0eb16bcb6fa0861c3ea385dc88a19997d5afe7a79ff71c627a83e0235d21b1b4ebf66fb42446c5ccfe9eb71 SHA512 e26b52536374c70e13facceec057874ff4d0061d96538081cd4e28ede37d9136832df689fd2fe0716af02f29f3bdfc5842aae2c07ba33624bd7f3d725fabf041

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pyskyqhub</remote-id>
<maintainer status="unknown">
<email>roger.selwyn@nomail.com</email>
<name>Roger Selwyn</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Library for Sky Q hub"
HOMEPAGE="https://github.com/RogerSelwyn/skyq_hub https://pypi.org/project/pyskyqhub/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="~dev-python/aiohttp-3.6.2[${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
}