update pylitterbot-2021.3.1

This commit is contained in:
Andreas Billmeier 2021-05-15 09:11:04 +02:00 committed by Andreas Billmeier
parent a6b0879493
commit 615c55b55f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 43 additions and 0 deletions

View File

@ -2,6 +2,7 @@
* update pyialarm-1.5
* bump pykmtronic-0.3.0
* bump xknx-0.18.1
* bump pylitterbot-2021.3.1
2021-05-14
* update astral-2.2

View File

@ -1,5 +1,7 @@
DIST pylitterbot-2021.2.5.tar.gz 9852 BLAKE2B 4621785b4c22e4cf950c4d48ea1e60668fadfb0c0efd665e91ede2a2f83a11b1a1b4f3323ef740281cf9e1aee1c3836a95ab4686a2e30a135dcea5dd156f6fba SHA512 85e85f0678530fa712e7d80ca4d14d5c4f05843a44495b6730f2ee8fdcaf1704bf019726d02cc088dbe16e25f6bd0fcdcb11f5df416c7b240430c42f365f2ef0
DIST pylitterbot-2021.2.8.tar.gz 10915 BLAKE2B 1cc5da7b830801b509e35ccf4e59d775733da133df069f4d8cc9242211d05ef2c8e2a1211eb8e6160fc3a5b5845eb3f1f5785f0617baa1b1a95d84d6a7c48468 SHA512 7c007c989df09e25869845300ce2837addf78aa37aa2c4ddcba2a7cd0f099e1ccbfe46e5cc32cfc80899db97754dc2fd76b06edb4d637491a85863e140101d0e
DIST pylitterbot-2021.3.1.tar.gz 18354 BLAKE2B 701a1a65ca7dfd5e26351218c555dced54663649d13d00fad0a14771221cc8f4f68a8bc085efe908e6c85fc805078d4f53b1143a2a9b0ee9470150c4b65c92a4 SHA512 6ec2ac8b8034f10fe705cb23309d4afbfd095bf3ef74a620d542b8fc446e7b92cae269ce2de72a75ebae39dbb263d7037d4851f19b30240976a79998791f12d9
EBUILD pylitterbot-2021.2.5.ebuild 848 BLAKE2B a3d1fa52c1847f7a9bb5766cd1476a010a1f5711bbb592344986444e1f92fc59c72e474ad887ba0421b58d5a30db388162da330912b0518b409cd887c06175db SHA512 92c90a935f20c3e214320437634921e7c76844ba71f5f8c1ceafe5aea3c9c15b0a478fe9f9cc8fc4758cc7b280eda870d3e32c26909356752defde8c0d178950
EBUILD pylitterbot-2021.2.8.ebuild 848 BLAKE2B a3d1fa52c1847f7a9bb5766cd1476a010a1f5711bbb592344986444e1f92fc59c72e474ad887ba0421b58d5a30db388162da330912b0518b409cd887c06175db SHA512 92c90a935f20c3e214320437634921e7c76844ba71f5f8c1ceafe5aea3c9c15b0a478fe9f9cc8fc4758cc7b280eda870d3e32c26909356752defde8c0d178950
EBUILD pylitterbot-2021.3.1.ebuild 993 BLAKE2B a49eef831d6f05153d1dd446646e9a62e28ab4d48ed92351f44eeb719f68074c55e809d85281e0612ad05a497fe6023c7451d4d4c2b96a153917389b8a87618e SHA512 3b6453e491d29f5a9ce1bba5c5ae343de4974ba92339dd7b5e029c85fb9affe3601670a5fc4b635da0cfba991d533bd20591b1495ae173e65a274841db6145ed
MISC metadata.xml 460 BLAKE2B 06e8b3ae287664389964652844249cc2bd2e748821cbae4f7f5360c3c2302507c55b4873285163ca49d481ad8ab82355839af94c9bcbc788770eb8969807a351 SHA512 992fefd164f416fce4108ad628d1db5f85c3328f114badcb34e373899743e0e456e45c5816bd62954658ccde12f6ddc122139fffd15f1761e016e87a00faf9e3

View File

@ -0,0 +1,40 @@
# 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
}
src_prepare() {
# sed -i "s///g" -i setup.cfg || die
echo -ne "\n[options.packages.find]\nexclude = tests" >> setup.cfg || die
eapply_user
}