aboutsummarylogtreecommitdiffstats
path: root/0001-Add-support-for-BUS_VIRTUAL.patch
diff options
context:
space:
mode:
authorMaximilian Luz2023-05-17 21:37:29 +0200
committerMaximilian Luz2023-05-17 21:37:29 +0200
commit8e6bdc2718ab92fff668014bfb8c8d326a423e9a (patch)
tree1e03e74dba81caa105b0a1c76b6fdc51ddadc0e0 /0001-Add-support-for-BUS_VIRTUAL.patch
parentb82c467a19c271b26ce25c3773ffd573c9a40d4e (diff)
downloadaur-8e6bdc2718ab92fff668014bfb8c8d326a423e9a.tar.gz
Update to libwacom-2.7.0
Diffstat (limited to '0001-Add-support-for-BUS_VIRTUAL.patch')
-rw-r--r--0001-Add-support-for-BUS_VIRTUAL.patch27
1 files changed, 13 insertions, 14 deletions
diff --git a/0001-Add-support-for-BUS_VIRTUAL.patch b/0001-Add-support-for-BUS_VIRTUAL.patch
index 1ec830d6aac4..945b8faa3f09 100644
--- a/0001-Add-support-for-BUS_VIRTUAL.patch
+++ b/0001-Add-support-for-BUS_VIRTUAL.patch
@@ -1,4 +1,4 @@
-From a7475cd68d1e76d74bdb192652bdd5b7a879f1d7 Mon Sep 17 00:00:00 2001
+From 6fe89a80a28042bc57fd625ad82181e4092b95f2 Mon Sep 17 00:00:00 2001
From: Dorian Stoll <dorian.stoll@tmsp.io>
Date: Sat, 27 Jun 2020 18:21:11 +0200
Subject: [PATCH 01/12] Add support for BUS_VIRTUAL
@@ -16,8 +16,8 @@ Signed-off-by: Dorian Stoll <dorian.stoll@tmsp.io>
libwacom/libwacom.c | 5 +++++
libwacom/libwacom.h | 1 +
test/test-tablet-validity.c | 1 +
- test/test_data_files.py | 2 +-
- 5 files changed, 12 insertions(+), 1 deletion(-)
+ test/test_data_files.py | 1 +
+ 5 files changed, 12 insertions(+)
diff --git a/libwacom/libwacom-database.c b/libwacom/libwacom-database.c
index 804ac3d..96aaa5e 100644
@@ -89,18 +89,17 @@ index 2095089..da5fe07 100644
g_assert_cmpint(pid, >, 0);
break;
diff --git a/test/test_data_files.py b/test/test_data_files.py
-index d732bd1..4b21b6a 100755
+index c2db899..476aeca 100755
--- a/test/test_data_files.py
+++ b/test/test_data_files.py
-@@ -41,7 +41,7 @@ def test_device_match(tabletfile):
- continue
-
- bus, vid, pid = match.split(':')[:3] # skip the name part of the match
-- assert bus in ['usb', 'bluetooth', 'i2c', 'serial'], f'{tabletfile}: unknown bus type'
-+ assert bus in ['usb', 'bluetooth', 'i2c', 'serial', 'virt'], f'{tabletfile}: unknown bus type'
- assert re.match('[0-9a-f]{4}', vid), f'{tabletfile}: {vid} must be lowercase hex'
- assert re.match('[0-9a-f]{4}', pid), f'{tabletfile}: {pid} must be lowercase hex'
-
+@@ -46,6 +46,7 @@ def test_device_match(tabletfile):
+ "bluetooth",
+ "i2c",
+ "serial",
++ "virt",
+ ], f"{tabletfile}: unknown bus type"
+ assert re.match(
+ "[0-9a-f]{4}", vid
--
-2.39.1
+2.40.1