From 701cc5005baac7d1a22df9ff59b9ef43b1367589 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 14 Mar 2021 14:14:57 +0100 Subject: [PATCH] add pylitterbot-2021.2.5 --- CHANGELOG.txt | 1 + dev-python/pylitterbot/Manifest | 3 ++ dev-python/pylitterbot/metadata.xml | 15 ++++++++ .../pylitterbot/pylitterbot-2021.2.5.ebuild | 34 +++++++++++++++++++ 4 files changed, 53 insertions(+) create mode 100644 dev-python/pylitterbot/Manifest create mode 100644 dev-python/pylitterbot/metadata.xml create mode 100644 dev-python/pylitterbot/pylitterbot-2021.2.5.ebuild diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 86229248f..6e150d915 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 diff --git a/dev-python/pylitterbot/Manifest b/dev-python/pylitterbot/Manifest new file mode 100644 index 000000000..8d3baae25 --- /dev/null +++ b/dev-python/pylitterbot/Manifest @@ -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 diff --git a/dev-python/pylitterbot/metadata.xml b/dev-python/pylitterbot/metadata.xml new file mode 100644 index 000000000..31e5d7066 --- /dev/null +++ b/dev-python/pylitterbot/metadata.xml @@ -0,0 +1,15 @@ + + + + + b@edevau.net + Andreas Billmeier + + + pylitterbot + + natekspencer@gmail.com + Nathan Spencer + + + diff --git a/dev-python/pylitterbot/pylitterbot-2021.2.5.ebuild b/dev-python/pylitterbot/pylitterbot-2021.2.5.ebuild new file mode 100644 index 000000000..46a19896f --- /dev/null +++ b/dev-python/pylitterbot/pylitterbot-2021.2.5.ebuild @@ -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 +}