add pylitterbot-2021.2.5

This commit is contained in:
Andreas Billmeier 2021-03-14 14:14:57 +01:00 committed by Andreas Billmeier
parent 647c9249fb
commit 701cc5005b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 53 additions and 0 deletions

View File

@ -19,6 +19,7 @@
* update python-smarttub-0.0.12, bump python-smarttub-0.0.17
* add pykmtronic-0.0.3
* update samsungtvws-1.6.0
* add pylitterbot-2021.2.5
2021-02-17
* bump HATasmota-0.2.9

View File

@ -0,0 +1,3 @@
DIST pylitterbot-2021.2.5.tar.gz 9852 BLAKE2B 4621785b4c22e4cf950c4d48ea1e60668fadfb0c0efd665e91ede2a2f83a11b1a1b4f3323ef740281cf9e1aee1c3836a95ab4686a2e30a135dcea5dd156f6fba SHA512 85e85f0678530fa712e7d80ca4d14d5c4f05843a44495b6730f2ee8fdcaf1704bf019726d02cc088dbe16e25f6bd0fcdcb11f5df416c7b240430c42f365f2ef0
EBUILD pylitterbot-2021.2.5.ebuild 848 BLAKE2B a3d1fa52c1847f7a9bb5766cd1476a010a1f5711bbb592344986444e1f92fc59c72e474ad887ba0421b58d5a30db388162da330912b0518b409cd887c06175db SHA512 92c90a935f20c3e214320437634921e7c76844ba71f5f8c1ceafe5aea3c9c15b0a478fe9f9cc8fc4758cc7b280eda870d3e32c26909356752defde8c0d178950
MISC metadata.xml 460 BLAKE2B 06e8b3ae287664389964652844249cc2bd2e748821cbae4f7f5360c3c2302507c55b4873285163ca49d481ad8ab82355839af94c9bcbc788770eb8969807a351 SHA512 992fefd164f416fce4108ad628d1db5f85c3328f114badcb34e373899743e0e456e45c5816bd62954658ccde12f6ddc122139fffd15f1761e016e87a00faf9e3

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">pylitterbot</remote-id>
<maintainer status="unknown">
<email>natekspencer@gmail.com</email>
<name>Nathan Spencer</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,34 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
DESCRIPTION="Python package for controlling a Litter-Robot Connect self-cleaning litter box."
HOMEPAGE="https://github.com/natekspencer/pylitterbot https://pypi.org/project/pylitterbot/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/Authlib[${PYTHON_USEDEP}]
dev-python/httpx[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]"
BDEPEND="
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
}