Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] xf86-input-synaptics: update to 1.9.2.
@ 2023-07-17  7:17 Bnyro
  2023-07-22 23:31 ` [PR PATCH] [Merged]: " Piraty
  0 siblings, 1 reply; 2+ messages in thread
From: Bnyro @ 2023-07-17  7:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 590 bytes --]

There is a new pull request by Bnyro against master on the void-packages repository

https://github.com/Bnyro/void-packages xf86-input-synaptics
https://github.com/void-linux/void-packages/pull/45076

xf86-input-synaptics: update to 1.9.2.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)



A patch file from https://github.com/void-linux/void-packages/pull/45076.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-xf86-input-synaptics-45076.patch --]
[-- Type: text/x-diff, Size: 2766 bytes --]

From 7b0149165250747612b6fae47873ff5121bff259 Mon Sep 17 00:00:00 2001
From: Bnyro <bnyro@tutanota.com>
Date: Mon, 17 Jul 2023 09:04:02 +0200
Subject: [PATCH] xf86-input-synaptics: update to 1.9.2.

---
 .../patches/fix-input_event-time.patch        | 27 -------------------
 srcpkgs/xf86-input-synaptics/template         |  6 ++---
 2 files changed, 3 insertions(+), 30 deletions(-)
 delete mode 100644 srcpkgs/xf86-input-synaptics/patches/fix-input_event-time.patch

diff --git a/srcpkgs/xf86-input-synaptics/patches/fix-input_event-time.patch b/srcpkgs/xf86-input-synaptics/patches/fix-input_event-time.patch
deleted file mode 100644
index e584bf77497e..000000000000
--- a/srcpkgs/xf86-input-synaptics/patches/fix-input_event-time.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- a/src/eventcomm.c	2018-05-29 05:18:45.000000000 +0200
-+++ b/src/eventcomm.c	2020-12-01 21:27:55.746811502 +0100
-@@ -575,9 +575,12 @@
-         ev->type = EV_SYN;
-         ev->code = SYN_REPORT;
-         ev->value = 0;
--        ev->time = last_event_time;
--    } else if (ev->type == EV_SYN)
--        last_event_time = ev->time;
-+        ev->input_event_sec = last_event_time.tv_sec;
-+        ev->input_event_usec = last_event_time.tv_usec;
-+    } else if (ev->type == EV_SYN) {
-+        last_event_time.tv_sec = ev->input_event_sec;
-+        last_event_time.tv_usec = ev->input_event_usec;
-+    }
- 
-     return TRUE;
- }
-@@ -725,7 +728,7 @@
-             case SYN_REPORT:
-                 hw->numFingers = count_fingers(pInfo, comm);
-                 if (proto_data->have_monotonic_clock)
--                    hw->millis = 1000 * ev.time.tv_sec + ev.time.tv_usec / 1000;
-+                    hw->millis = 1000 * ev.input_event_sec + ev.input_event_usec / 1000;
-                 else
-                     hw->millis = GetTimeInMillis();
-                 SynapticsCopyHwState(hwRet, hw);
diff --git a/srcpkgs/xf86-input-synaptics/template b/srcpkgs/xf86-input-synaptics/template
index 1c9f2be0a939..26b204f63583 100644
--- a/srcpkgs/xf86-input-synaptics/template
+++ b/srcpkgs/xf86-input-synaptics/template
@@ -1,6 +1,6 @@
 # Template file for 'xf86-input-synaptics'
 pkgname=xf86-input-synaptics
-version=1.9.1
+version=1.9.2
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config"
@@ -11,8 +11,8 @@ short_desc="Xorg synaptics touchpad input driver"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
 homepage="http://www.x.org/"
-distfiles="${XORG_SITE}/driver/${pkgname}-${version}.tar.bz2"
-checksum=7af83526eff1c76e8b9e1553b34245c203d029028d8044dd9dcf71eef1001576
+distfiles="${XORG_SITE}/driver/${pkgname}-${version}.tar.gz"
+checksum=ab1fd79957d680a770afa4c123deb603ea0fe843e876391387eddb6b7f29ce17
 lib32disabled=yes
 
 post_install() {

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PR PATCH] [Merged]: xf86-input-synaptics: update to 1.9.2.
  2023-07-17  7:17 [PR PATCH] xf86-input-synaptics: update to 1.9.2 Bnyro
@ 2023-07-22 23:31 ` Piraty
  0 siblings, 0 replies; 2+ messages in thread
From: Piraty @ 2023-07-22 23:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 430 bytes --]

There's a merged pull request on the void-packages repository

xf86-input-synaptics: update to 1.9.2.
https://github.com/void-linux/void-packages/pull/45076

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-07-22 23:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-17  7:17 [PR PATCH] xf86-input-synaptics: update to 1.9.2 Bnyro
2023-07-22 23:31 ` [PR PATCH] [Merged]: " Piraty

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).