diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2023-01-17 15:24:21 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-01-17 01:05:53 -0800 |
| commit | ef59d1fb7e7c74441682283c65e759c318703ba4 (patch) | |
| tree | 9be73e2f736cd4ec1a4410f54666a9f32635b601 /meta-python/recipes-devtools/python/python3-pymodbus_3.1.0.bb | |
| parent | 7b86dc79c0f43025104a619af937ddf7133a298b (diff) | |
| download | meta-openembedded-ef59d1fb7e7c74441682283c65e759c318703ba4.tar.gz | |
python3-pymodbus: upgrade 3.0.2 -> 3.1.0
Changelog:
==========
Add xdist pr default. (#1253)
Create docker-publish.yml (#1250)
Parallelize pytest with pytest-xdist (#1247)
Support Python3.11 (#1246)
Fix reconnectDelay to be within (100ms, 5min) (#1244)
Fix typos in comments (#1233)
WEB simulator, first version. (#1226)
Clean async serial problem. (#1235)
terminate when using 'randomize' and 'change_rate' at the same time (#1231)
Used tooled python and OS (#1232)
add 'change_rate' randomization option (#1229)
add check_ci.sh (#1225)
Simplify CI and use cache. (#1217)
Solve issue 1210, update simulator (#1211)
Add missing client calls in mixin.py. (#1206)
Advanced simulator with cross memory. (#1195)
AsyncModbusTcp/UdpClient honors delay_ms == 0 (#1203) (#1205)
Fix #1188 and some pylint issues (#1189)
Serial receive incomplete bytes.issue #1183 (#1185)
Handle echo (#1186)
Add updating server example. (#1176)
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.1.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-pymodbus_3.1.0.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pymodbus_3.1.0.bb b/meta-python/recipes-devtools/python/python3-pymodbus_3.1.0.bb new file mode 100644 index 0000000000..b58c62218a --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pymodbus_3.1.0.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=2c2223d66c7e674b40527b5a4c35bd76" | ||
| 5 | DEPENDS += "python3-six-native" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "eeba02c86b13b1f885c0acc50adf4611df24ab85066ff54daa37c2d883c32525" | ||
| 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 | |||
