From bed9028cc4250a9406dd1e9946ecc6e5c2798200 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Thu, 13 Nov 2025 19:18:36 +1300 Subject: evtest: upgrade 1.35 -> 1.36 0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch refreshed for 1.36 Changelog: =============== - Add KEY_ROTATE_LOCK_TOGGLE, KEY_REFRESH_RATE_TOGGLE - Add performance key - Add ifdef - Use bytes instead of bits for size of ioctl input - CI: add workflow rules - evtest 1.36 - Add SW_MACHINE_COVER - add KEY_MACRO 1-30 and other keys Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj (cherry picked from commit 3682b77d4d7430e3542b57b3d0fb0a6318afe8bf) Signed-off-by: Ankur Tyagi Signed-off-by: Anuj Mittal --- ...001-Fix-build-on-32bit-arches-with-64bit-time_t.patch | 7 +++---- meta-oe/recipes-test/evtest/evtest_1.35.bb | 16 ---------------- meta-oe/recipes-test/evtest/evtest_1.36.bb | 16 ++++++++++++++++ 3 files changed, 19 insertions(+), 20 deletions(-) delete mode 100644 meta-oe/recipes-test/evtest/evtest_1.35.bb create mode 100644 meta-oe/recipes-test/evtest/evtest_1.36.bb (limited to 'meta-oe/recipes-test') diff --git a/meta-oe/recipes-test/evtest/evtest/0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch b/meta-oe/recipes-test/evtest/evtest/0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch index 595b0296ea..55162207f8 100644 --- a/meta-oe/recipes-test/evtest/evtest/0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch +++ b/meta-oe/recipes-test/evtest/evtest/0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch @@ -1,4 +1,4 @@ -From 490f5b6cd788692d989f07180a5714c76872911e Mon Sep 17 00:00:00 2001 +From 55c872430c9444d7edaf50db0faa9bbc31dd085f Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sat, 30 Nov 2019 11:58:58 -0800 Subject: [PATCH] Fix build on 32bit arches with 64bit time_t @@ -10,13 +10,12 @@ input.h [1] Upstream-Status: Submitted [https://gitlab.freedesktop.org/libevdev/evtest/merge_requests/6] Signed-off-by: Khem Raj - --- evtest.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/evtest.c b/evtest.c -index ba7a161..8fc2e5a 100644 +index d3d3d8f..3045cce 100644 --- a/evtest.c +++ b/evtest.c @@ -63,6 +63,11 @@ @@ -30,4 +29,4 @@ index ba7a161..8fc2e5a 100644 + #define BITS_PER_LONG (sizeof(long) * 8) #define NBITS(x) ((((x)-1)/BITS_PER_LONG)+1) - #define OFF(x) ((x)%BITS_PER_LONG) + #define NBYTES(x) (NBITS(x) * sizeof(long)) diff --git a/meta-oe/recipes-test/evtest/evtest_1.35.bb b/meta-oe/recipes-test/evtest/evtest_1.35.bb deleted file mode 100644 index 52f684ce5f..0000000000 --- a/meta-oe/recipes-test/evtest/evtest_1.35.bb +++ /dev/null @@ -1,16 +0,0 @@ -SUMMARY = "Simple tool for input event debugging" -HOMEPAGE = "http://people.freedesktop.org/~whot/evtest/" -SECTION = "console/utils" -LICENSE = "GPL-2.0-only" -LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" - -DEPENDS = "libxml2" - -SRCREV = "da347a8f88d2e5729dd12d61ee9743f902065b55" -SRC_URI = "git://gitlab.freedesktop.org/libevdev/evtest.git;protocol=https;branch=master \ - file://0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch \ - " - -S = "${WORKDIR}/git" - -inherit autotools pkgconfig diff --git a/meta-oe/recipes-test/evtest/evtest_1.36.bb b/meta-oe/recipes-test/evtest/evtest_1.36.bb new file mode 100644 index 0000000000..56f50f74ca --- /dev/null +++ b/meta-oe/recipes-test/evtest/evtest_1.36.bb @@ -0,0 +1,16 @@ +SUMMARY = "Simple tool for input event debugging" +HOMEPAGE = "http://people.freedesktop.org/~whot/evtest/" +SECTION = "console/utils" +LICENSE = "GPL-2.0-only" +LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" + +DEPENDS = "libxml2" + +SRCREV = "96e6cb5ae90726883be095a3e467e847c06225f7" +SRC_URI = "git://gitlab.freedesktop.org/libevdev/evtest.git;protocol=https;branch=master \ + file://0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch \ + " + +S = "${WORKDIR}/git" + +inherit autotools pkgconfig -- cgit v1.2.3-54-g00ecf