add uModbus-1.0.4

add nibe-0.5.0
add connio-0.2.0
add async-modbus-0.2.1
This commit is contained in:
2022-10-06 01:12:11 +02:00
committed by Andreas Billmeier
parent 7baab7b89c
commit 716a936bf8
13 changed files with 226 additions and 5 deletions

View File

@@ -0,0 +1,3 @@
DIST uModbus-1.0.4.tar.gz 19423 BLAKE2B f469e4d202b3aa21a35f5f854e760f83b501781b341b28732a122426f31f6c2051be62eae1e55b2070fe6c4e7729912161822f0005b5d1e0959b17d5d1214366 SHA512 0e601d22374b8936d9e6e9cfd8d05e405ebf96f6912420f3def2f6dcdabd22ed106e6cdc3b2196522675baf1f9e954f5aae043a316ba4d1d4c249a964a7127df
EBUILD uModbus-1.0.4.ebuild 795 BLAKE2B 4ea2d66d91e53bc8fd436e4da1173c5e39d0721840aec24aca0447d11c639b44a17dde6c636a6cfa402f9fe3240bfcae7ff6d8d92e76dc680b33f96b6de59115 SHA512 796908c46daa6aa681517b0443a1e28e17831e5b8519a8fd350c3bec62d13eb4850c92f20b745dabc64d9a2868df1d9d54f0bbc65cabbf7a573e7ebb3008b706
MISC metadata.xml 468 BLAKE2B b970e5291603d5c3c3e760215fcb751a043c629358611977e3127bff807610a49a9877fe150cdcc5ed391ba35f75a90f432e6bb89231f4f40ff2b47de05918f7 SHA512 302cd56ca5346c2eee87a461d87874777b62a8c5b8dbd88f9af5e8371abdcee34a429bbce1aace0c9d08509a75ad6e38fb97444e095f26b649e1534551d823f2

View File

@@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">uModbus</remote-id>
<maintainer status="unknown">
<email>a.oosterhoff@climotion.com</email>
<name>Auke Willem Oosterhoff</name>
</maintainer>
</upstream>
</pkgmetadata>

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="Implementation of the Modbus protocol in pure Python."
HOMEPAGE="https://github.com/AdvancedClimateSystems/umodbus/ https://pypi.org/project/uModbus/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MPL-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/pyserial-3.4[${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
}
distutils_enable_tests pytest