bump bump python-smarttub-0.0.17

This commit is contained in:
Andreas Billmeier 2021-03-14 14:00:17 +01:00 committed by Andreas Billmeier
parent 66adde2baa
commit 069ab85a8a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 45 additions and 1 deletions

View File

@ -16,7 +16,7 @@
* add pyrituals-0.0.2
* bump zigpy-znp-0.4.0
* add stdiomask-0.0.6, add subarulink-0.3.12
* update python-smarttub-0.0.12
* update python-smarttub-0.0.12, bump python-smarttub-0.0.17
2021-02-17
* bump HATasmota-0.2.9

View File

@ -1,5 +1,7 @@
DIST python-smarttub-0.0.12.tar.gz 8092 BLAKE2B 4d1f5636d16d446da42454da8f8aa626d471bbb5d8676058691978652aaf6a244c50832621b1449b1fe7b4bb52d61ef378ae95df4cb38b1e87b73f836d7f83ca SHA512 e2c644829d4c1fe00eab479dcf2088f9f7cc0920a58e13f1c6ee01d0da5ae8cd0df3d128ee00789658e399bf8cb57733f3f3038ffcdc0178be297e36f1d6df21
DIST python-smarttub-0.0.17.tar.gz 9442 BLAKE2B 0616c06547c1f8942f388a3b40f7c4ac53dfd2f725fb53bde863f3f41930c5e29d2411005d50a01b3b8c8a63a2bbfcea00fe17f2bea1dff46669a7ba36c0872b SHA512 f7196e3789d6ee256ff862ffd4a50faaa3bc4e51a18ed9ae65ff0c3dc8855c48d19f79c6292d9d26f77d0daba8ddc9af13623af529aee91841cc76c922b48078
DIST python-smarttub-0.0.6.tar.gz 4768 BLAKE2B e9bb914fa1cea2435393a92e458364b8324ddccebdc5eef47f593dd2db263e48a1b9387e8a73aba3c1d3879e67b193ba0099da780c76fc74c3a6251736db5659 SHA512 abac05ed71240ba00493dd802ce00469a88ea7bf11e3afe10bd41661612a49f4f1c0114345e2c2b9113a8a8c05b50a3e32f122724439a018b202557e63b79bb9
EBUILD python-smarttub-0.0.12.ebuild 1128 BLAKE2B 19eefe64dbf8804c55b2db721de7d211dfff07e9b3e915195c066ab9b8cee6ff4971d45104e79c62fabdf764ca114cf9c49500f5f9e144b029e0fb0c59ecd82e SHA512 43d97e5bede30ba8e74c35ff5936e892a1ecb8aa9985487cc1515732014dac2906b034b8ff6e593c4f369dcde6668cc58f643d0e21d6573f835ffab627c5a2df
EBUILD python-smarttub-0.0.17.ebuild 1128 BLAKE2B 19eefe64dbf8804c55b2db721de7d211dfff07e9b3e915195c066ab9b8cee6ff4971d45104e79c62fabdf764ca114cf9c49500f5f9e144b029e0fb0c59ecd82e SHA512 43d97e5bede30ba8e74c35ff5936e892a1ecb8aa9985487cc1515732014dac2906b034b8ff6e593c4f369dcde6668cc58f643d0e21d6573f835ffab627c5a2df
EBUILD python-smarttub-0.0.6.ebuild 926 BLAKE2B c1de5cb60ff5eb243fc0a7bce6a126060d0808361c154fffe9988688dc3a0894def94a69577ba68b310e58984e85a2c44650a34d830b8cfaf8536c5bcfcc9e8c SHA512 b1cf1a739815279d92c5c135fdb9529b97f6e495bea8f49f2bcf8f1bfdcdd9b5c8813dfcb75f788ed3290841f13870cdaa34e51adb444b1751bb9dfcc0ff3395
MISC metadata.xml 455 BLAKE2B 792de6abb175bcc2456dc8fc4bba75efeb8765a7ec85d8590c043e393149e9fff8c963b3b8782d62df9d7aaa0d7749ad24a1d0a7e9a046ba77efc43d7acb35de SHA512 a31807a58fd16441ce2153a11fbec5cc05de042a59dc1368c3a11df0c7b2942e1a99ab01b910c7f3ca61e77c26799d5ab6e3468876c15c6024d1c48f24921cbf

View File

@ -0,0 +1,42 @@
# 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="API to query and control hot tubs using the SmartTub system"
HOMEPAGE="https://github.com/mdz/python-smarttub https://pypi.org/project/python-smarttub/"
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/aiohttp[${PYTHON_USEDEP}]
dev-python/inflection[${PYTHON_USEDEP}]
dev-python/pyjwt[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/aresponses[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
src_prepare() {
sed "s/packages=setuptools.find_packages()/packages=setuptools.find_packages(exclude=['tests','tests.*'])/g" -i setup.py || die
eapply_user
}