mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

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>
36 lines
1009 B
BlitzBasic
36 lines
1009 B
BlitzBasic
SUMMARY = "A fully featured modbus protocol stack in python"
|
|
HOMEPAGE = "https://github.com/riptideio/pymodbus/"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=430604f78bee72425da231d42eac9cee"
|
|
DEPENDS += "python3-six-native"
|
|
|
|
SRC_URI[sha256sum] = "2a95a311669f6734f94535332984474e4b4815de1500c74e6b94432a8bd9820a"
|
|
S = "${WORKDIR}/pymodbus-${PV}"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG[repl] = ",,,python3-aiohttp python3-click python3-prompt-toolkit python3-pygments python3-pyserial-asyncio"
|
|
PACKAGECONFIG[asyncio] = ",,,python3-pyserial-asyncio"
|
|
PACKAGECONFIG[tornado] = ",,,python3-tornado"
|
|
PACKAGECONFIG[twisted] = ",,,python3-twisted-conch"
|
|
PACKAGECONFIG[redis] = ",,,python3-redis"
|
|
PACKAGECONFIG[sql] = ",,,python3-sqlalchemy"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-asyncio \
|
|
python3-core \
|
|
python3-io \
|
|
python3-json \
|
|
python3-logging \
|
|
python3-math \
|
|
python3-netserver \
|
|
"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-pyserial \
|
|
python3-six \
|
|
"
|
|
|
|
|