add pysensibo-1.0.3

This commit is contained in:
Andreas Billmeier 2019-11-24 11:51:31 +01:00
parent 24a9732425
commit 8e295bc69b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* add pysensibo-1.0.3
* sense-energy-0.7.0
* add scsgate-0.1.0
* add satel-integra-0.3.4

View File

@ -0,0 +1,3 @@
DIST pysensibo-1.0.3.tar.gz 2033 BLAKE2B 79ce163bb501c455eb60cb588a39061af85a503606b4e5017cbba2d56bfc2886b1a4f6470e4a2a5c271582506f19cfac2fb826756c544f768cec3e92f120bcfd SHA512 d73a9c08c6f776a9250f6633e34fb35de421c28b1447811135af429e063cb0cf082fe0b1f608e0d2f68a8409341fd8d7fb695f695c44bd524c91bd32b6bffb02
EBUILD pysensibo-1.0.3.ebuild 710 BLAKE2B 2a24a3436db38b861129c003dd49a7519e3463e902e0e6b2c6a69b2c3fff5b7c8b4510a229a46877ec65dd9d005a8d9db9aea72832873a20ab6a2584dabe4c55 SHA512 160a0492abe8beaea20c737fa0ffbfac3cdec134ee3eb6facbfade0d61fdd16e432c7c64c280fc4cc7b9eec21b2a416f30df9e2ab4011773ceef2ce125f831b1
MISC metadata.xml 474 BLAKE2B 54e78f2c6b55635457f18510d3e7e83dadf13f4b8a84858a15ad843765ebcc8e9546f35213d45cbc6a6bf0a6ec46945f016da50eff9b45a3f26ecaa50fb06f9e SHA512 9ff5c9a91de7903ef0a4b19aeddd9f21176b418eb152e75bc5ff8f1121469b1dbd195bf4c04b081f3f96f1040fe01ea9522b59d66dda8f7357359b649be468bd

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">pysensibo</remote-id>
<maintainer status="unknown">
<email>andrey-git@users.noreply.github.com</email>
<name>andrey-git</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="asyncio-friendly python API for Sensibo"
HOMEPAGE="https://github.com/andrey-git/pysensibo https://pypi.org/project/pysensibo/"
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="dev-python/aiohttp[${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
}