diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2023-08-01 15:41:50 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-08-01 08:46:48 -0700 |
| commit | 5a38445182d535feeb588d6f05bce9063a8da4e2 (patch) | |
| tree | 475faa3d228ef7a4914ccfa17922822bb82a376c /meta-python/recipes-devtools/python/python3-pymodbus_3.4.1.bb | |
| parent | 9bc5c823b19038170084a5c3426bd274b56f78fd (diff) | |
| download | meta-openembedded-5a38445182d535feeb588d6f05bce9063a8da4e2.tar.gz | |
python3-pymodbus: upgrade 3.3.2 -> 3.4.1
Changelog:
==========
Fix serial startup problems. (#1701)
pass source_address in tcp client. (#1700)
serial server use source_address[0]. (#1699)
Examples coverage nearly 100%. (#1694)
new async serial (#1681)
Docker is not supported (lack of maintainer). (#1693)
Forwarder write_coil --> write_coil. (#1691)
Change default source_address to (0.0.0.0, 502) (#1690)
Update ruff to 0.0.277 (#1689)
Fix dict comprehension (#1687)
Removed requests dependency from contrib/explain.py (#1688)
Fix broken test (#1685)
Fix readme badges (#1682)
Bump aiohttp from 3.8.3 to 3.8.5 (#1680)
pygments from 2.14.0 to 2.15.0 (#1677)
Handle partial local echo. (#1675)
clarify handle_local_echo. (#1674)
async_client: add retries/reconnect. (#1672)
Fix 3.11 problem. (#1673)
Add new example simulator server/client. (#1671)
examples/contrib/explain.py leveraging Rapid SCADA (#1665)
_logger missed basicConfig. (#1670)
Bug fix for #1662 (#1663)
Bug fix for #1661 (#1664)
Fix typo in config.rst (#1660)
test action_increment. (#1659)
test codeql (#1655)
mypy complaints. (#1656)
Remove self.params from async client (#1640)
Drop test of pypy with python 3.8.
repair server_async.py (#1644)
move common framer to base. (#1639)
Restrict Return diag call to bytes. (#1638)
use slave= in diag requests. (#1636)
transport listen in server. (#1628)
CI test.
Integrate transport in server. (#1617)
fix getFrameStart for ExceptionResponse (#1627)
Add min/min to simulator actions.
Change to "sync client" in forwarder example (#1625)
Remove docker (lack of maintenance). (#1623)
Clean defaults (#1618)
Reduce CI log with no debug. (#1616)
prepare server to use transport. (#1607)
Fix RemoteSlaveContext (#1599)
Combine stale and lock. (#1608)
update pytest + extensions. (#1610)
Change version follow PEP 440. (#1609)
Fix regression with REPL server not listening (#1604)
Remove handler= for server classes. (#1602)
Fix write function codes (#1598)
transport nullmodem (#1591)
move test of examples to subdirectory. (#1592)
transport as object, not base class. (#1572)
Simple examples. (#1590)
transport_connect as bool. (#1587)
Prepare dev (#1588)
Release corrections. (#1586)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pymodbus_3.4.1.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-pymodbus_3.4.1.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pymodbus_3.4.1.bb b/meta-python/recipes-devtools/python/python3-pymodbus_3.4.1.bb new file mode 100644 index 0000000000..ecc56781a3 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pymodbus_3.4.1.bb | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | SUMMARY = "A fully featured modbus protocol stack in python" | ||
| 2 | HOMEPAGE = "https://github.com/riptideio/pymodbus/" | ||
| 3 | LICENSE = "BSD-3-Clause" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=430604f78bee72425da231d42eac9cee" | ||
| 5 | DEPENDS += "python3-six-native" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "2a95a311669f6734f94535332984474e4b4815de1500c74e6b94432a8bd9820a" | ||
| 8 | S = "${WORKDIR}/pymodbus-${PV}" | ||
| 9 | |||
| 10 | inherit pypi setuptools3 | ||
| 11 | |||
| 12 | PACKAGECONFIG ??= "" | ||
| 13 | PACKAGECONFIG[repl] = ",,,python3-aiohttp python3-click python3-prompt-toolkit python3-pygments python3-pyserial-asyncio" | ||
| 14 | PACKAGECONFIG[asyncio] = ",,,python3-pyserial-asyncio" | ||
| 15 | PACKAGECONFIG[tornado] = ",,,python3-tornado" | ||
| 16 | PACKAGECONFIG[twisted] = ",,,python3-twisted-conch" | ||
| 17 | PACKAGECONFIG[redis] = ",,,python3-redis" | ||
| 18 | PACKAGECONFIG[sql] = ",,,python3-sqlalchemy" | ||
| 19 | |||
| 20 | RDEPENDS:${PN} += " \ | ||
| 21 | python3-asyncio \ | ||
| 22 | python3-core \ | ||
| 23 | python3-io \ | ||
| 24 | python3-json \ | ||
| 25 | python3-logging \ | ||
| 26 | python3-math \ | ||
| 27 | python3-netserver \ | ||
| 28 | " | ||
| 29 | |||
| 30 | RDEPENDS:${PN} += " \ | ||
| 31 | python3-pyserial \ | ||
| 32 | python3-six \ | ||
| 33 | " | ||
| 34 | |||
| 35 | |||
