dev-python/pyotgw: add 2.1.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2022-10-30 16:59:11 +01:00
committed by onkelbeh
parent 0a75c68d85
commit 1443aac9d5
3 changed files with 39 additions and 2 deletions
+2
View File
@@ -1,5 +1,7 @@
DIST pyotgw-2.0.2.tar.gz 58389 BLAKE2B d31150bf61c47a7200a3b1f1f8facde08d9bb0d2b9e2796a7cedfad5a9c17ce4605b250c37b15cc068838f264d9a91c16d64827ae41f9d75a77ea598798a0298 SHA512 8161e2acab9cc7e5cfb2f61b9876dac4a4274bfcd665d7ece75f7118daf044f3f845601c793e8dc005bdd32aa24b4a5e5b6bdb338572ad78804908e695bcaa67
DIST pyotgw-2.0.3.tar.gz 58539 BLAKE2B 152ac2273050c08353eaf95e82d22e2580a3a05821545ca164c115676580d70f9ddc8c3dc7b8c35c714cc32b418638e140249035bf347f8bc02463ff8d87de06 SHA512 e4870b4c3434cf79b6187cf2325b05186445eb8e7df4c1f97ee22cc091f622fcc15c677f4bcf821423b84921efc33549ecad4626bef8afae8aa1c0ae633c8026
DIST pyotgw-2.1.1.tar.gz 59037 BLAKE2B 7680df9acb316cea0cafa5ea7e9ad360b7386a16243a139e3c328f8d8de7703c93dd197041b30927b0d3f21385f0542f74ca3ca2026cefd0467c854561486171 SHA512 7d1da4e3680311fd334e11e17f30ad1e04d7e7703ffcd576137d738946d2708d61c0924be32da37921ef0320ea03f9691c3f4997945f9c6f510a235aefb04fa7
EBUILD pyotgw-2.0.2.ebuild 798 BLAKE2B 4e0da809007cd0599dc9f58cf33426df6839f75c38a7315f76a39c7a78b38a7863bc621a855d2196397cc99b8636dc56b02d92f02e98a81ef61a727eaa6ca11e SHA512 51801f3d3a6792efd6a1e2c8603840391406366dce8be5022badb50f01acbc1929cb0c94ccdd2eb3bde0796c4e564789743a38d0d306348100be5fee01bdad58
EBUILD pyotgw-2.0.3.ebuild 798 BLAKE2B 4e0da809007cd0599dc9f58cf33426df6839f75c38a7315f76a39c7a78b38a7863bc621a855d2196397cc99b8636dc56b02d92f02e98a81ef61a727eaa6ca11e SHA512 51801f3d3a6792efd6a1e2c8603840391406366dce8be5022badb50f01acbc1929cb0c94ccdd2eb3bde0796c4e564789743a38d0d306348100be5fee01bdad58
EBUILD pyotgw-2.1.1.ebuild 798 BLAKE2B 4e0da809007cd0599dc9f58cf33426df6839f75c38a7315f76a39c7a78b38a7863bc621a855d2196397cc99b8636dc56b02d92f02e98a81ef61a727eaa6ca11e SHA512 51801f3d3a6792efd6a1e2c8603840391406366dce8be5022badb50f01acbc1929cb0c94ccdd2eb3bde0796c4e564789743a38d0d306348100be5fee01bdad58
MISC metadata.xml 455 BLAKE2B 18c060e7d00164739a1a98debce079e52756c40cda1e4e99e754596b5740f3154a245251416312d1106d7b40ae01eb028838b7e96df47e6215e82720e3b3c066 SHA512 a598c74011f95f31b1eab06f269246452387af3c33e74067841209490070bfa8632cf9e5c610fb396a817d7e9fecbc2c17fda92ccb1f2454c38b3b4eb13969ca
+35
View File
@@ -0,0 +1,35 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="A library to interface with the opentherm gateway through serial or network connection."
HOMEPAGE="https://github.com/mvn23/pyotgw https://pypi.org/project/pyotgw/"
MY_P="${PN}-${PV/_beta/b}"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/pyserial-asyncio[${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