diff options
| author | Pablo Saavedra <psaavedra@igalia.com> | 2024-11-18 20:35:20 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-11-19 17:04:22 -0800 |
| commit | afd72775425ce9e413e47a3960b5a469381ae0e4 (patch) | |
| tree | a10ba20f02098ab3e8a8219754bbec83981eaf32 /meta-python/recipes-devtools/python/python3-uinput_1.0.1.bb | |
| parent | a7165a0e4805a288a0d9bc5eef881fffe639f131 (diff) | |
| download | meta-openembedded-afd72775425ce9e413e47a3960b5a469381ae0e4.tar.gz | |
python3-uinput: Re-add recipe
- Added `python3-uinput_1.0.1.bb` recipe for the Python interface to
the Linux uinput kernel module.
- Included a submitted patch to handle 64-bit `time_t` on 32-bit
architectures to address Y2K38 issues in recent kernels and libcs.
Removed in b4efcecc63c86f3e7fa9d5c6205f1bd07d951fed for lack of
maintenance the situation change. There is a new release from 2024
March what addresses the build issues reported lately.
Signed-off-by: Pablo Saavedra <psaavedra@igalia.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-uinput_1.0.1.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-uinput_1.0.1.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-uinput_1.0.1.bb b/meta-python/recipes-devtools/python/python3-uinput_1.0.1.bb new file mode 100644 index 0000000000..7c1eb85264 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-uinput_1.0.1.bb | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | SUMMARY = "Python interface to Linux uinput kernel module." | ||
| 2 | HOMEPAGE = "https://pypi.org/project/python-uinput/" | ||
| 3 | LICENSE = "GPL-3.0-only" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949" | ||
| 5 | |||
| 6 | SRC_URI += "file://0001-Deal-with-64bit-time_t-default-on-32bit-architecture.patch" | ||
| 7 | SRC_URI[sha256sum] = "853697344b64df5537d4ae32ba6fbcf0515d51a9010910f5d5019959038b6eba" | ||
| 8 | |||
| 9 | PYPI_PACKAGE = "python-uinput" | ||
| 10 | |||
| 11 | inherit pypi setuptools3 | ||
| 12 | |||
| 13 | DEPENDS += "udev" | ||
| 14 | RDEPENDS:${PN} += " \ | ||
| 15 | python3-ctypes \ | ||
| 16 | python3-setuptools \ | ||
| 17 | " | ||
| 18 | RRECOMMENDS:${PN} += "kernel-module-uinput" | ||
