add poolsense-0.0.[5,8]

This commit is contained in:
Andreas Billmeier 2020-07-11 10:51:19 +02:00 committed by Andreas Billmeier
parent fab429639b
commit 5bb6dd6a4f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
5 changed files with 81 additions and 0 deletions

View File

@ -4,6 +4,7 @@
* bump fritzconnection-1.3.0
* bump pychromecast-7.0.1
* bump pymyq-2.0.5
* add poolsense-0.0.[5,8]
2020-06-29
* bump aioguardian-1.0.0

View File

@ -0,0 +1,5 @@
DIST poolsense-0.0.5.tar.gz 2333 BLAKE2B e49c7f4fc584a65aa0778d0f4f1dfad62f830f9beaf99decba0951a6f3192a63c93b83e204e7e86b589d081e3c5d0942fc03d5c5f6eaede1d3eb663e989af393 SHA512 524e7b6d9df80a98406dd222c08392d6043d0bd71b03c850de3a9cc76cc47f18798b684de17f864dae68389e4c8832c5c9587e61a73b38f5ce3421157a9ddf38
DIST poolsense-0.0.8.tar.gz 2351 BLAKE2B a59b4a4090c8480028e972dfcbce75e5209af0c565fb1038bd8b6ebdc69066bc6411aa8e7480d37f85dfe33def3ddb1f77d1727f7279e5cee1cb0a2027367981 SHA512 5333fce1ce10b9ec7e6a55193ff1fc845f4703dae3dd98b6ee244092409b8f6764a565c96b2e080349aa0f2d55b859c679b3092f5efc9b63459acb5bf5431695
EBUILD poolsense-0.0.5.ebuild 740 BLAKE2B 06a5aaab7ba99c972eadd7921dc81423d9743e9b0a792a626baa0fe7a3af3bc1a686b56db10e1993abd31b03deaa8209d4d4bf8979ed8f85c758e4892282b7bf SHA512 2208cdc18d814bddb259832d1159aa6ea698181c0df67080a486682754b18560c6ef92ecdfd09301e78a580ba69b99cfc800b168f745e15d8af952f1d62f69ed
EBUILD poolsense-0.0.8.ebuild 740 BLAKE2B 06a5aaab7ba99c972eadd7921dc81423d9743e9b0a792a626baa0fe7a3af3bc1a686b56db10e1993abd31b03deaa8209d4d4bf8979ed8f85c758e4892282b7bf SHA512 2208cdc18d814bddb259832d1159aa6ea698181c0df67080a486682754b18560c6ef92ecdfd09301e78a580ba69b99cfc800b168f745e15d8af952f1d62f69ed
MISC metadata.xml 454 BLAKE2B 5b5bd738327e0a170b1d661fdf0ff9695f22e84640023ba910a8c289fa7d5964745e9a5ab96fdea6e831b7d0b596cd45524c76579754021cdaa58e31ab4bd758 SHA512 41227cb584f547f9e0ad5ca286420476fa8218d1e172d03c0b4f0cf47cc171fc3a2d6033b7ab8dd39f7031e4774581015104f7ba4911cc3428fe0fc1795573c5

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">poolsense</remote-id>
<maintainer status="unknown">
<email>haemish.kyd@gmail.com</email>
<name>Haemish Kyd</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="Asynchronous Python client for getting PoolSense data."
HOMEPAGE="https://github.com/haemishkyd/poolsense https://pypi.org/project/poolsense/"
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.0[${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
}

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="Asynchronous Python client for getting PoolSense data."
HOMEPAGE="https://github.com/haemishkyd/poolsense https://pypi.org/project/poolsense/"
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.0[${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
}