summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-smbus2_0.6.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-12-24 17:13:00 +0800
committerKhem Raj <raj.khem@gmail.com>2025-12-24 13:18:29 -0800
commitaba3856c1e21979376949e2b9c6726787fa4e085 (patch)
tree625282e319ebc865c5955525284a5f3c82301b22 /meta-python/recipes-devtools/python/python3-smbus2_0.6.0.bb
parent8db029f9a539fedf31414129ab3378bda58b0939 (diff)
downloadmeta-openembedded-aba3856c1e21979376949e2b9c6726787fa4e085.tar.gz
python3-smbus2: upgrade 0.5.0 -> 0.6.0
Changelog: ========== - Python 3.14 added. - Fix SystemError: buffer overflow on Python 3.14+ on 64-bit systems by using c_ulong instead of c_uint32 for I2C_FUNCS ioctl. 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-smbus2_0.6.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-smbus2_0.6.0.bb18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-smbus2_0.6.0.bb b/meta-python/recipes-devtools/python/python3-smbus2_0.6.0.bb
new file mode 100644
index 0000000000..33613d9abe
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-smbus2_0.6.0.bb
@@ -0,0 +1,18 @@
1SUMMARY = "Drop-in replacement for smbus-cffi/smbus-python in pure Python"
2DESCRIPTION = "smbus2 is a drop-in replacement for smbus-cffi/smbus-python in pure Python"
3HOMEPAGE = "https://github.com/kplindegaard/smbus2"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=2a3eca2de44816126b3c6f33811a9fba"
6
7inherit pypi setuptools3
8
9SRC_URI[sha256sum] = "9b5ff1e998e114730f9dfe0c4babbef06c92468cfb61eaa684e30f225661b95b"
10
11CLEANBROKEN = "1"
12
13PYPI_PACKAGE = "smbus2"
14
15RDEPENDS:${PN} += "\
16 python3-ctypes \
17 python3-fcntl \
18"