dev-python/pyeconet: bump 0.1.18

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-01-07 13:01:49 +01:00 committed by Andreas Billmeier
parent 44ada1036d
commit a55f4242b4
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 39 additions and 3 deletions

View File

@ -1,3 +1,5 @@
DIST pyeconet-0.1.15.tar.gz 9487 BLAKE2B d1e57dd1b7222efb4bb8f9c8cf3b8885c99d1550eff0895cef6a5722cf8272a66cfd46b4e80e1016500af15f56c5be3a7cfe29fe3e69a67d955331cd6861698d SHA512 e8f1d7ec11f9f4c6ab3e19f1c8c3e6ccac1a0782e3c09a731b6aa02488b6eb92b6d21feb196890675b2c38f5d932d7127299a07dca225723daf0337fa1c70c31
EBUILD pyeconet-0.1.15.ebuild 749 BLAKE2B 1bd90c36c6d15d6acbfe19c7d3cf22b967f42bdbf00c254638bbca3b76b984c33117ed0b825d40a525af36a5515a0c845b4a96a44faf3dc8ef6c4ab49ac3df83 SHA512 8350f18d16baa0f1906449b3ddff0f273c1a4c8c4c270859577d1ed7a0a20f5b8dcc879a76bfb75cf2d0159930dbb14fa4dc23d333b7bbc8901358b39d630917
DIST pyeconet-0.1.18.tar.gz 12459 BLAKE2B 7421b067a876b6b13ce49449407a568058e9e149309d519350225b91eef54dfde6c79167fa00a8a6f652f6b6554381285b0a6da03cf85853fae31c56505baa41 SHA512 899dc08999d1be2086fa1eb9e36d0836acf23cdad34b0f644b4a7341022165a0d70f51f7fab7a99aeeb036ec293b1197d2cfda20ccfe6544beca8180feeb0cc1
EBUILD pyeconet-0.1.15.ebuild 780 BLAKE2B 3a093c2fb8305563b93602a3b24584b820cb4879408cea406a6ea5bb50258459445b5b1c4c196523aeeb6b47815abc182db8660b3133d6aab323a8ad94ac646f SHA512 cf6a2038d3733f2eb27f5651c7da8edec2e87b1f238b2c13efef3511149d10aa3d69969096b239fd016f1f71447f455baed2c794d1d50bdaa356f0a2a1768bb8
EBUILD pyeconet-0.1.18.ebuild 780 BLAKE2B 3a093c2fb8305563b93602a3b24584b820cb4879408cea406a6ea5bb50258459445b5b1c4c196523aeeb6b47815abc182db8660b3133d6aab323a8ad94ac646f SHA512 cf6a2038d3733f2eb27f5651c7da8edec2e87b1f238b2c13efef3511149d10aa3d69969096b239fd016f1f71447f455baed2c794d1d50bdaa356f0a2a1768bb8
MISC metadata.xml 387 BLAKE2B a1a37b7814a773a4e1358488de97fed1adae65e1cd5b70673314ffc4af9d830161aa75dcd306a666af959b8bc7fec946b115e7ec2309ec4b9e8660f0895dc1ca SHA512 fa1279aa2a3fe935f62efa8501c867c25d82ac023b4b3321db06f78c5e0d419d55226d630c4176401079b50646c13081d0037a31df1d31b1725b02f2de8ee3dc

View File

@ -1,10 +1,10 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Interface to the unofficial EcoNet API"

View File

@ -0,0 +1,34 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Interface to the unofficial EcoNet API"
HOMEPAGE="https://github.com/w1ll1am23/pyeconet https://pypi.org/project/pyeconet/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
#DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.6.0[${PYTHON_USEDEP}]
>=dev-python/paho-mqtt-1.5.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest