--- xserver-xorg-input-libinput-1.2.1.orig/.gitlab-ci.yml +++ xserver-xorg-input-libinput-1.2.1/.gitlab-ci.yml @@ -0,0 +1,56 @@ +# vim: set expandtab shiftwidth=2 tabstop=8 textwidth=0: + +include: + - project: 'freedesktop/ci-templates' + ref: 59de540b620c45739871d1a073d76d5521989d11 # see https://docs.gitlab.com/ee/ci/yaml/#includefile + file: '/templates/fedora.yml' + + +variables: + FDO_UPSTREAM_REPO: xorg/drivers/xf86-input-libinput + + +stages: + - containers + - build + + +.fedora: + variables: + FDO_DISTRIBUTION_VERSION: 33 + FDO_DISTRIBUTION_PACKAGES: 'git autoconf automake libtool make xorg-x11-server-devel libudev-devel libevdev-devel libinput-devel xorg-x11-util-macros' + FDO_DISTRIBUTION_EXEC: 'env FDO_CI_CONCURRENT=${FDO_CI_CONCURRENT} bash .gitlab-ci/fedora-install.sh' + FDO_DISTRIBUTION_TAG: '2021-09-15.0' + + +fedora@container_build: + extends: + - .fedora + - .fdo.container-build@fedora + stage: containers + variables: + GIT_STRATEGY: none + + +.default_build: + stage: build + script: + - mkdir _builddir _inst + - pushd _builddir > /dev/null + - ../autogen.sh --prefix=$(realpath ../_inst) --disable-silent-rules + - make && make check + - make install + - popd > /dev/null + artifacts: + name: "automake-logs-$CI_JOB_NAME" + when: always + expire_in: 1 week + paths: + - _builddir/config.log + + +fedora:33@default-build: + extends: + - .fedora + - .fdo.distribution-image@fedora + - .default_build --- xserver-xorg-input-libinput-1.2.1.orig/.gitlab-ci/fedora-install.sh +++ xserver-xorg-input-libinput-1.2.1/.gitlab-ci/fedora-install.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# we require at least inputproto >= 2.3.99.1 which has been released in xorgproto 2021.5 +git clone https://gitlab.freedesktop.org/xorg/proto/xorgproto.git --depth 1 --branch=xorgproto-2021.5 +pushd xorgproto +./autogen.sh +make -j${FDO_CI_CONCURRENT:-4} install +popd +rm -rf xorgproto --- xserver-xorg-input-libinput-1.2.1.orig/ChangeLog +++ xserver-xorg-input-libinput-1.2.1/ChangeLog @@ -1,804 +1,3 @@ -commit 62f267a952208005bf378c554fa84f4dc2489b35 -Author: Peter Hutterer -Date: Mon Jan 24 15:00:09 2022 +1000 - - xf86-input-libinput 1.2.1 - - Signed-off-by: Peter Hutterer - -commit c1f07edafafe63f8f22fd4e2aff6761e46872ed4 -Author: Peter Hutterer -Date: Mon Jan 24 11:38:01 2022 +1000 - - Fix a compiler warning - - xf86libinput.c:2457:89: warning: passing argument 1 of - ‘libinput_event_pointer_get_axis_source’ from incompatible - pointer type [-Wincompatible-pointer-types] - - No function changes due to the binary layout of libinput events but - let's not rely on that. - - Signed-off-by: Peter Hutterer - -commit a3d38b0f40c771c4064cb0047ccf46f4d299d557 -Author: Alan Coopersmith -Date: Sun Jan 16 11:45:08 2022 -0800 - - Build xz tarballs instead of bzip2 - - Signed-off-by: Alan Coopersmith - -commit e3a75f34f865f66e0ebf04b8c11fd97c972647d6 -Author: Alan Coopersmith -Date: Sun Jan 16 11:50:26 2022 -0800 - - Fix spelling/wording issues - - Found by using: - codespell --builtin clear,rare,usage,informal,code,names - - Signed-off-by: Alan Coopersmith - -commit 830f7c3b1bd29e0e6b6bdbf0ffd2390a4d385413 -Author: Luna Nova -Date: Sat Dec 18 04:55:14 2021 +0000 - - Fix copy-paste error in LibinputInitAccelProperty checking available profiles against adaptive/flat - -commit 4ab78733662e6eb44c0ba6435ee58a8a4d6b264f -Author: Peter Hutterer -Date: Mon Nov 22 10:14:33 2021 +1000 - - Quietly check for the _source option - - xf86CheckStrOption returns the same value but doesn't mark it as used in - the server and, more importantly, doesn't spam the log with - (**) Option "_source" "server/udev" - messages. - - Signed-off-by: Peter Hutterer - -commit b3e65904dbb81181b207711dd7e40c5f85852cfd -Author: José Expósito -Date: Wed Nov 17 07:57:28 2021 +0100 - - Make XIPropertyValuePtr verification consistent - - Signed-off-by: José Expósito - -commit 75cc87518b1ae611e7495be3a516a1395cef5891 -Author: José Expósito -Date: Sun Nov 14 22:52:47 2021 +0000 - - Add an option to disable high-resolution wheel scroll - - Starting on libinput 1.19 pointer axis events have been deprecated in - favor of their scroll equivalents, including support for high-resolution - wheel scroll. - - While it is recommended to handle the new events, some applications - and/or frameworks might not be ready at the moment. - - Provide an option to discard high-resolution wheel scroll events. - - Fix #41 - - Signed-off-by: José Expósito - -commit 3951ce739def06c99df5d4669d2af5c74653ad66 -Author: José Expósito -Date: Wed Nov 10 18:12:46 2021 +0100 - - man: fix horizontal scroll property name - - Signed-off-by: José Expósito - -commit cbdd9efaab17b90567f1cb8f44da657a40c33d6d -Author: Povilas Kanapickas -Date: Sun Sep 19 19:55:46 2021 +0300 - - xf86-input-libinput 1.2.0 - - Signed-off-by: Povilas Kanapickas - -commit 4c54f4d0d2267425730e88c35d3aa4c373988272 -Author: Peter Hutterer -Date: Thu Sep 16 11:08:44 2021 +1000 - - Rename HAS_GESTURES to HAVE_GESTURES - - HAVE_FOO is generally used everywhere (see HAVE_CONFIG_H) so let's keep - this consistent. - - Signed-off-by: Peter Hutterer - -commit 83312147716cfb4627cd9ae8e58ac5aec50e168f -Author: Povilas Kanapickas -Date: Wed Sep 15 20:09:33 2021 +0300 - - gitlab-ci: Configure xorgproto build from source - - We need newer xorgproto than what's in fedora as we depend on inputproto - 2.3.99.1 or newer. - -commit 8588a19f63f9c17f66a83850e20955450c3098a2 -Author: Povilas Kanapickas -Date: Wed Sep 15 19:45:49 2021 +0300 - - Require inputproto 2.4 to build the gesture support - - Signed-off-by: Povilas Kanapickas - -commit beb94333e1450006942a7f0ee38bc2a2f5719238 -Author: Peter Hutterer -Date: Wed Jan 23 20:07:37 2019 +1000 - - Use the new v120 API from libinput if available - - Signed-off-by: Peter Hutterer - -commit ca9042c7f08f8f0dc214b9cc19f3243728ec8c4a -Author: José Expósito -Date: Wed Aug 4 17:51:26 2021 +0200 - - Get scroll source in the event handler - - Where libinput supports high-resolution scroll events, the scroll source - is encoded in the event type. - - Get the scroll source in xf86libinput_handle_event to facilitate the - migration. - - Refactor, no functional changes. - - Signed-off-by: José Expósito - -commit bf8dc2e2ed0780b947eccfc9ac3694c518dee605 -Author: Peter Hutterer -Date: Wed Jan 23 09:01:24 2019 +1000 - - Upgrade the default scroll distance to 120 - - This is just a number, to be used as divider and shouldn't have any effect in - correctly written clients. With the high-res scrolling coming up however, we - have a few devices where the dist cannot be expressed as an integer fraction - of 15, so let's up it to 120 because we know all hardware wheels have to be an - integer fraction of that that, thanks to Microsoft's API requirements. - - For non-wheel scrolls we need to now map into the new range. Previously we - just passed the scroll events on from the touchpad/button scrolling, meaning a - vdist of 15 meant 15 "libinput pixels" of scrolling resulted in a logical - wheel click. Now that we have 120 as vdist, we need to times the input data by - 8 to keep the same proportions. - - See 39b0bb4585106a56a51236d8e9843b2da8d745a5 for the previous revert. - - Signed-off-by: Peter Hutterer - -commit ecd845c30752a328acfeccb7750dc70350beab0d -Author: Povilas Kanapickas -Date: Sat Oct 10 02:57:40 2020 +0300 - - Implement support for touchpad gestures - -commit 0d9184cb769d38f3cf5a92004211315e5407183d -Author: Peter Hutterer -Date: Thu Jun 24 08:26:19 2021 +1000 - - xf86-input-libinput 1.1.0 - - Signed-off-by: Peter Hutterer - -commit 9bb9e635df731eea1ad7022d1f188ace9802b353 -Author: Peter Hutterer -Date: Tue Apr 13 16:07:24 2021 +1000 - - Implement a touchpad scroll distance property - - To be used for touchpads and continuous (i.e. button-based scrolling). - - libinput provides us with pixel data for finger-based and button-based - scrolling but the X server does support this - XI2.1 smooth scrolling is - merely centered around a logical scroll click (defined as "increment"), with - smooth scrolling being a fraction of that increment. For example, in the old - synaptics driver that value was in device-specific units and thus different - for every device. - - The increment is a constant value set in the ScrollClass and cannot be changed - at device runtime. So we simply initialize with a random default (15, because - that works well for wheels) and then scale our pixel delta in to that range. - - With the default value, a 15 pixel movement would result in a logical scroll - click, if the distance is set to 30 the users has to move 30 pixels to trigger - that scroll click. Pixel here being defined as the deltas that libinput - provides to us. - - From the client's perspective nothing changes, the increment is still the - same. - - Range checks are quite restrictive, this option is supposed to improve - usability, not as a workaround around other bugs. - - Signed-off-by: Peter Hutterer - -commit cc10918bdc697aac76fdd8911c5a6adbd1ab61a0 -Author: Peter Hutterer -Date: Tue Apr 27 13:44:14 2021 +1000 - - Fix a spacing issue - - yay for copy/paste proliferation - - Signed-off-by: Peter Hutterer - -commit 69888cef81b3bf2339aa9f9132e4b7b83127979c -Author: Peter Hutterer -Date: Fri Apr 16 12:18:24 2021 +1000 - - xf86-input-libinput 1.0.1 - - Signed-off-by: Peter Hutterer - -commit 6c1c53d296f42b4bdadadf1d85750c4610fc4096 -Author: Peter Hutterer -Date: Fri Apr 9 10:33:15 2021 +1000 - - Make sure the device is valid when setting the tap button map - - Fixes #34 - - Signed-off-by: Peter Hutterer - -commit 34f14fdf1222d0b4e75a022fd10a04d57800ea93 -Author: Peter Hutterer -Date: Tue Apr 6 15:50:38 2021 +1000 - - xf86-input-libinput 1.0.0 - - Signed-off-by: Peter Hutterer - -commit 92047e5d99f271a3c7253b4f1b7b7cca4a6ac834 -Author: Peter Hutterer -Date: Tue Apr 6 15:55:31 2021 +1000 - - gitlab CI: bump to use Fedora 33 - - Signed-off-by: Peter Hutterer - -commit b8d3c29f59c15f375911192f9920c96943504bf3 -Author: Peter Hutterer -Date: Tue Apr 6 15:51:23 2021 +1000 - - Remove trailing whitespaces - - Signed-off-by: Peter Hutterer - -commit 2bbc4727a12471e3699e2803404a013656066a94 -Author: Peter Hutterer -Date: Thu Mar 18 13:34:35 2021 +1000 - - Switch to the real MIT license - - Due to a copy/paste error, the COPYING file and subsequently created files - with the same content referred to the "Historical Permission Notice and - Disclaimer - sell variant", not the proper MIT license. - - Replace with the proper MIT (Expat) license and add the use SPDX license - identifiers. - - Acks below are from contributors with substantial changes, collected in MR !19 - or via private email correspondence. - - https://gitlab.freedesktop.org/xorg/driver/xf86-input-libinput/-/merge_requests/19 - - Signed-off-by: Peter Hutterer - Acked-by: Dorian Stoll - Acked-by: Jonas Ådahl - Acked-by: Benjamin Tissoires - Acked-by: Evangelos Foutras - Acked-by: Niklas Haas - Acked-by: Olivier Fourdan - Acked-by: David Rosca - Acked-by: Lyude Paul - Acked-by: Keith Packard - Acked-by: Alan Coopersmith - Acked-by: Michel Dänzer - Acked-by: Tim Writer - Acked-by: Friedrich Schöller - Acked-by: Mikhail Konev - Acked-by: Martin Pieuchot - -commit 39be9449911a7d59386721944e1c4c45f620b95e -Author: Dorian Stoll -Date: Tue Nov 3 15:41:42 2020 +0100 - - Lift canceled touch inputs - - If a touch input gets turned into a palm (by setting ABS_MT_TOOL_TYPE to - MT_TOOL_PALM), libinput will emit a cancel event instead of the normal - up event. The xorg wrapper needs to be able to handle a canceled touch - and lift it, otherwise these inputs will never get lifted and will stick - around forever. - - Signed-off-by: Dorian Stoll - -commit bd2aaa246dae9ed1896d48ee4a5594c41107d123 -Author: Povilas Kanapickas -Date: Mon Oct 19 21:09:49 2020 +0300 - - Remove extraneous semicolon - -commit 99773d7bdae7eb67064a35d1eea898f1a1966f70 -Author: Povilas Kanapickas -Date: Mon Sep 7 05:46:16 2020 +0300 - - Remove unused btnmap variables - -commit 3afb6244e3510377eb24c7ce1cca014b2979b359 -Author: Peter Hutterer -Date: Tue May 19 16:34:18 2020 +1000 - - Bump the server requirement to 1.19 to get rid of a bunch of ifdefs - - Signed-off-by: Peter Hutterer - -commit f279108ffd07616299cf9fb922de14bd1249658d -Author: Peter Hutterer -Date: Tue May 19 16:30:11 2020 +1000 - - Bump the libinput requirement to 1.11 - - Released June 2018, that should be recent enough. - - Signed-off-by: Peter Hutterer - -commit 583ed5acdc17a4dc7848c891d7cdbd35ff07b781 -Author: Peter Hutterer -Date: Tue May 19 15:37:30 2020 +1000 - - xf86-input-libinput 0.30.0 - - Signed-off-by: Peter Hutterer - -commit e8e5d1a6b579c6bd5e6c9e76a53f13ca77fa0d5f -Author: Peter Hutterer -Date: Tue May 19 15:57:52 2020 +1000 - - gitlab CI: update to latest CI templates - - Signed-off-by: Peter Hutterer - -commit 639b21d78a80566477163993366400e506f6e7b7 -Author: Peter Hutterer -Date: Tue May 19 15:47:00 2020 +1000 - - gitlab CI: bump to Fedora 32 - - Signed-off-by: Peter Hutterer - -commit e52daf203bb690e33b27514cb8fc76b263e6622a -Author: Peter Hutterer -Date: Fri Oct 11 10:24:30 2019 +1000 - - Implement support for scroll button locks - - Add a boolean option/property to enable/disable the scroll button lock. Where - enabled, the button can be clicked and released as opposed to having to be - held down. - - Signed-off-by: Peter Hutterer - -commit 400bf493d1840e72dc3bad624707b4934fe5de33 -Author: Peter Hutterer -Date: Mon Aug 12 12:35:51 2019 +1000 - - xf86-input-libinput 0.29.0 - - Signed-off-by: Peter Hutterer - -commit 27a88897bedb8dca41be311a162243ec7f4a952d -Author: Peter Hutterer -Date: Mon Aug 12 10:57:11 2019 +1000 - - Add basic Gitlab CI for testing the build - - This merely tests against the devel package in Fedora, not against the xserver - from git. Should be enough, the driver here doesn't change enough to need the - git builds. - - Signed-off-by: Peter Hutterer - -commit d5867e5db6300ba2fa08054f16af661bd0ae4200 -Author: Peter Hutterer -Date: Mon Aug 12 10:35:15 2019 +1000 - - Fix compiler warning about unhandled switch events - - This bumps the required libinput version to 1.7 - which has been out for over - two years now. That's conservative enough. - - Signed-off-by: Peter Hutterer - -commit 1ef2ed874e700a6be9091c01df5b432a3e4d8b2e -Author: Peter Hutterer -Date: Tue Jul 30 11:23:46 2019 +1000 - - Check for the tool type too when creating subdevices - - Fixed #25 - - Signed-off-by: Peter Hutterer - -commit 3c9052d8865200818a3e98ea9077df54829e724c -Author: Peter Hutterer -Date: Tue Jul 30 11:10:55 2019 +1000 - - Fix wrong enum type - - Signed-off-by: Peter Hutterer - -commit 39b0bb4585106a56a51236d8e9843b2da8d745a5 -Author: Peter Hutterer -Date: Tue Jul 30 11:46:50 2019 +1000 - - Revert "Upgrade the default scroll distance to 120" - - This was part of the high-resolution wheel work that was factored out ahead of - time. Problem is: this breaks scroll button emulation in the server as we - use the distance to determine when we click buttons 4-7. - - Before: movement of 15 normalized pixel units on a touchpad - one click. Now: - 120 of those units. So that's a bit less than ideal. - - The change to 120 can be done, but needs the corresponding handling in the - axis distance calculations. - - Fixes #24 - - This reverts commit 055481187d44b10ba220398a1ca46f4854fd76ee. - -commit 8923d18d25303354f250b4f165fa66b327b8ac7e -Author: David Rosca -Date: Mon Feb 25 18:26:08 2019 +0100 - - Also use type to match tablet tool with device - - On devices with tools having both serial and id 0, - it would fail to create separate subdevices. - - Thinkpad X220T (Wacom ISDv4 E6) now correctly registers - Pen and Eraser xinput devices. - -commit 055481187d44b10ba220398a1ca46f4854fd76ee -Author: Peter Hutterer -Date: Wed Jan 23 09:01:24 2019 +1000 - - Upgrade the default scroll distance to 120 - - This is just a number, to be used as divider and shouldn't have any effect in - correctly written clients. With the high-res scrolling coming up however, we - have a few devices where the dist cannot be expressed as an integer fraction - of 15, so let's up it to 120 because we know all hardware wheels have to be an - integer fraction of that that, thanks to Microsoft's API requirements. - - Signed-off-by: Peter Hutterer - -commit 5a925eaa84b31c5857969342802018cb5803475a -Author: Peter Hutterer -Date: Mon Feb 4 13:14:11 2019 +1000 - - xf86-input-libinput 0.28.2 - - Signed-off-by: Peter Hutterer - -commit e7eafa199e9e60c15014a9d72d14efcbbf8e44ca -Author: Peter Hutterer -Date: Mon Jan 21 15:21:45 2019 +1000 - - Handle scroll wheel events with a discrete of 0 - - The driver currently assumes that any wheel event has a non-zero discrete - value of 1. This is incorrect, it just hasn't triggered yet with any device. - - With the hi-res scroll patches in place in the kernel and libinput, we may get - wheel events with a discrete value of 0. We assume that if this ever happens, - the device has some sensible click angle set so all we need to do is ignore - the discrete 0 events and wait for the first discrete event to come. - - Also add an explanatory comment too to make it clear the calculation is only - done once. - - Fixes #19 - - Signed-off-by: Peter Hutterer - -commit d13ab268bdf6eb589022c58ddc87c1211b49ac4c -Author: Peter Hutterer -Date: Mon Jan 21 13:19:11 2019 +1000 - - Return the wheel scroll value instead of just the fraction - - This is prep work for the hi-res work but right now, no real functional - changes. It does however fix a bug where we used the vertial scroll dist for - the horizontal wheel as well. - - Signed-off-by: Peter Hutterer - -commit 347c78387eb3fbadcd582f0ea51bb083962a728f -Author: Peter Hutterer -Date: Mon Jan 21 13:05:23 2019 +1000 - - Split the scroll axis details up for easier extension - - If we need more per-axis fields, it's easier to add this way. - - Signed-off-by: Peter Hutterer - -commit b63f7994dc4359900dbb2a29612e0112b6ae5b79 -Author: Peter Hutterer -Date: Mon Jan 7 16:26:47 2019 +1000 - - conf: add an example snippet for how to assign options - - Users still like to copy the whole file, potentially messing things up. - Let's put a warning into the file directly that this is less than ideal. - - Signed-off-by: Peter Hutterer - -commit 04f42d6e0f99d771cbbab25c896f287fd6697f37 -Author: Alan Coopersmith -Date: Sun Nov 25 12:47:32 2018 -0800 - - Update configure.ac bug URL for gitlab migration - - Signed-off-by: Alan Coopersmith - -commit 5d341d1d6c389b286279f87d7a3bdb0f5bd275f1 -Author: Alan Coopersmith -Date: Sun Nov 18 11:48:07 2018 -0800 - - Update README for gitlab migration - - Signed-off-by: Alan Coopersmith - -commit 4985de5ef3e81d32d694c3d4a480a6311b6f1416 -Author: Peter Hutterer -Date: Mon Oct 15 15:29:37 2018 +1000 - - Remove two dead assignments - - Value stored but never read. - - Signed-off-by: Peter Hutterer - -commit e26fc3c66c04eb3d3164e6a9e7c983154fb00856 -Author: Peter Hutterer -Date: Mon Oct 15 09:36:36 2018 +1000 - - xf86-input-libinput 0.28.1 - - Signed-off-by: Peter Hutterer - -commit a759610292a53067fc811e70703bffff8dc0cb16 -Author: Peter Hutterer -Date: Thu Oct 4 11:45:46 2018 +1000 - - Use the seat slot, not the device slot for touch events - - The device slot is per-device, so if we have more than one device we may get a - touch down event for a slot already in use. - - Fixes https://gitlab.freedesktop.org/libinput/libinput/issues/153 - - Signed-off-by: Peter Hutterer - -commit 21ff2ca7d1a771f6dcecb5b73dc1031f77c9dd69 -Author: Peter Hutterer -Date: Thu Jul 19 15:58:06 2018 +1000 - - Remove unused assignment - - dev is our list iterator below, this is a dead assignment - - Signed-off-by: Peter Hutterer - -commit c67f191d5bc1a4a130f89743a3ce35ee06c90f85 -Author: Peter Hutterer -Date: Wed Jul 11 11:06:59 2018 +1000 - - xf86-input-libinput 0.28.0 - - Signed-off-by: Peter Hutterer - -commit 1978a2555b338e5177523046e6338f58a4253951 -Author: Peter Hutterer -Date: Wed Jul 11 10:59:20 2018 +1000 - - Minor whitespace fix - - Signed-off-by: Peter Hutterer - -commit 0909a1a76546284f27fb1b17a6f545a04537cc36 -Author: Peter Hutterer -Date: Tue Jul 10 11:17:50 2018 +1000 - - draglock: fix memory overwrite during draglock parsing - - Passing in the size of the array but using it as "number of elements" inside - the function. Rename a bunch of arguments to avoid this. - - https://bugs.freedesktop.org/show_bug.cgi?id=107166 - - Signed-off-by: Peter Hutterer - -commit 20bb8d6b9f4375557472dad67b5f8dcf31be27d3 -Author: Peter Hutterer -Date: Wed May 23 08:14:23 2018 +1000 - - Revert "Implement the custom acceleration curve options" - - Custom pointer acceleration curves were reverted in libinput, so no point - having this code here. - - This reverts commit d84e0035d12a9655c09a6e8c619b1144be42c90c. - - Signed-off-by: Peter Hutterer - -commit 1e88664d958a000ac610ae9000459c461ba45bd8 -Author: Peter Hutterer -Date: Wed May 2 13:59:00 2018 +1000 - - Use the libinput touch count to init the right number of touches - - Initial version by Johannes Pointner - Signed-off-by: Peter Hutterer - -commit d84e0035d12a9655c09a6e8c619b1144be42c90c -Author: Peter Hutterer -Date: Tue Apr 17 13:51:53 2018 +1000 - - Implement the custom acceleration curve options - - One new property, and the existing accel profile gets extended to keep one - extra value. The new property libinput Accel Curve Points is a list of pairs - of points to be added to the acceleration curve. - - libinput only supports adding points to the curve so we simply declare the - behavior as undefined when the curve is set multiple times. Also helps to - identify those that bother to read the man page before playing with random - driver values. - - Signed-off-by: Peter Hutterer - -commit 6c75acfcdf6539713c3b62bc2227a4b215d05fdb -Author: Peter Hutterer -Date: Fri Apr 20 13:33:45 2018 +1000 - - Use xf86SetStrOption to check for string options - - This one shows up in the log and marks it as used. - - Signed-off-by: Peter Hutterer - -commit eaf847be16de1399aa271b94e4421a3794447462 -Author: Peter Hutterer -Date: Tue Apr 17 15:10:42 2018 +1000 - - man: whitespace fixes in man page - - Signed-off-by: Peter Hutterer - -commit d319092d557ec0280602879b19ef1b0a825e1e75 -Author: Peter Hutterer -Date: Tue Apr 17 13:52:11 2018 +1000 - - man: fix formatting issue caused by invalid tag - - Signed-off-by: Peter Hutterer - -commit 18cc042e6822f5f24d06291ead07ea70723f9434 -Author: Peter Hutterer -Date: Tue Apr 10 09:19:52 2018 +1000 - - xf86-input-libinput 0.27.1 - - Signed-off-by: Peter Hutterer - -commit 0db82219bb2ad10dcdf3ea8fe8e226858190c83b -Author: Evangelos Foutras -Date: Thu Mar 22 01:47:07 2018 +0200 - - Fix "left handed" property not set on all pointers - - Remove conditional that prevents the LIBINPUT_PROP_LEFT_HANDED{,DEFAULT} - properties from being set on all pointer devices (only the first got it). - This appears to be a debugging left-over accidentally merged in - 6d3bd4544a6a2f194fa. - - https://bugs.freedesktop.org/show_bug.cgi?id=105667 - - Signed-off-by: Peter Hutterer - -commit f93bc148d4e6702d50ce320f6d519753c0af7c42 -Author: Peter Hutterer -Date: Tue Mar 20 11:23:57 2018 +1000 - - xf86-input-libinput 0.27.0 - - Signed-off-by: Peter Hutterer - -commit 0d4b50fd6e200cb8b720ee0b917b882d2d03542b -Author: Peter Hutterer -Date: Mon Mar 19 10:00:59 2018 +1000 - - man: note that we don't do /dev/input/by-id or /dev/input/by-path - - For logind-setups we need to match the path libinput wants to open with the - Option Device path that the device has so we know when to return the - server-fd. This doesn't work for by-id or by-path because libinput resolves - those (through udev) to the actual eventX node so our paths look different - when they are the same device. - - This could be fixed but since this is easy enough to work around with a - InputClass section and rather a niche case, it's not really worth the effort. - - https://bugs.freedesktop.org/show_bug.cgi?id=105562 - - Signed-off-by: Peter Hutterer - Reviewed-by: Adam Jackson - -commit 9d9f59fd4c5a57e4663b19c3cace6f78202c4689 -Author: Peter Hutterer -Date: Fri Feb 2 13:54:32 2018 +1000 - - Apply the capabilities checks on subdevices when applying the config - - Properties are initialized on the correct devices only but on resume we'd just - blindly apply the config from our device. Depending on the resume order, this - would mean we'd apply a previously set config with a default config. - - Example: - * pointer device with keyboard subdevice - * pointer device exports natural scrolling, keyboard device does not and - remains at default (off) - * client enables natural scrolling on the pointer device - * VT switch away, VT switch back - * pointer device gets enabled first, enables natural scrolling on the - libinput device - * keyboard device gets enabled second, resets to the default value - - Reported-by: Yuxuan Shui - Signed-off-by: Peter Hutterer - Tested-by: Yuxuan Shui - -commit 73534814909b8b6f4fce8f44b412b2903397bdb0 -Author: Peter Hutterer -Date: Fri Feb 2 13:24:43 2018 +1000 - - Split LibinputDeviceApplyConfig into helper functions - - No functional changes - -commit 6d3bd4544a6a2f194fa2ca7e08dca9cc44211e99 -Author: Peter Hutterer -Date: Fri Feb 2 13:27:11 2018 +1000 - - Move the subdevice capabilities check into the properties - - 87f9fe3a6fafe60134c6's intention was to not create properties that a subdevice - doesn't have configuration options for (i.e. if you have a pointer+keyboard - device, don't expose tapping configuration on the keyboard subdevice). - - The result was messy, the checker function had a confusing triple-negation and - some properties weren't checked - e.g. left-handed was allowed for touch/tablet - but not for pointer, dwt was allowed for any device. - - Fix this by moving the check into the property init function directly and - inverting the helper function to be easier to read. - - Signed-off-by: Peter Hutterer - commit 2be6487de417473aac85ebd800392cdd8604c4a6 Author: Peter Hutterer Date: Fri Sep 15 11:26:54 2017 +1000 @@ -861,9 +60,6 @@ Signed-off-by: Peter Hutterer -Notes (test-jelly): - SUCCESS: jelly: make check Mon May 15 11:42:39 AEST 2017 - commit 8772a593b45740f4429218648c9e3a305b3fe896 Author: Martin Kepplinger Date: Thu May 4 08:49:34 2017 +0200 @@ -928,7 +124,7 @@ Compiled with -O0: Breakpoint 1, test_nonzero_x_linear () at test-bezier.c:157 - 157 assert(bezier[x] > bezier[x-1]); + 157 assert(bezier[x] > bezier[x-1]); (gdb) p bezier $6 = {0 , 1, 2, 4, 5, 7, 9, 10, 12, 14, 15, 17, 19, 21, 22, --- xserver-xorg-input-libinput-1.2.1.orig/autogen.sh +++ xserver-xorg-input-libinput-1.2.1/autogen.sh @@ -0,0 +1,17 @@ +#! /bin/sh + +srcdir=`dirname "$0"` +test -z "$srcdir" && srcdir=. + +ORIGDIR=`pwd` +cd "$srcdir" + +autoreconf -v --install || exit 1 +cd "$ORIGDIR" || exit $? + +git config --local --get format.subjectPrefix >/dev/null 2>&1 || + git config --local format.subjectPrefix "PATCH xf86-input-libinput" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir"/configure "$@" +fi --- xserver-xorg-input-libinput-1.2.1.orig/debian/README.source +++ xserver-xorg-input-libinput-1.2.1/debian/README.source @@ -0,0 +1,49 @@ +------------------------------------------------------ +Quick Guide To Patching This Package For The Impatient +------------------------------------------------------ + +1. Make sure you have quilt installed +2. Unpack the package as usual with "dpkg-source -x" +3. Run the "patch" target in debian/rules +4. Create a new patch with "quilt new" (see quilt(1)) +5. Edit all the files you want to include in the patch with "quilt edit" + (see quilt(1)). +6. Write the patch with "quilt refresh" (see quilt(1)) +7. Run the "clean" target in debian/rules + +Alternatively, instead of using quilt directly, you can drop the patch in to +debian/patches and add the name of the patch to debian/patches/series. + +------------------------------------ +Guide To The X Strike Force Packages +------------------------------------ + +The X Strike Force team maintains X packages in git repositories on +git.debian.org in the pkg-xorg subdirectory. Most upstream packages +are actually maintained in git repositories as well, so they often +just need to be pulled into git.debian.org in a "upstream-*" branch. +Otherwise, the upstream sources are manually installed in the Debian +git repository. + +The .orig.tar.gz upstream source file could be generated using this +"upstream-*" branch in the Debian git repository but it is actually +copied from upstream tarballs directly. + +Due to X.org being highly modular, packaging all X.org applications +as their own independent packages would have created too many Debian +packages. For this reason, some X.org applications have been grouped +into larger packages: xutils, xutils-dev, x11-apps, x11-session-utils, +x11-utils, x11-xfs-utils, x11-xkb-utils, x11-xserver-utils. +Most packages, including the X.org server itself and all libraries +and drivers are, however maintained independently. + +The Debian packaging is added by creating the "debian-*" git branch +which contains the aforementioned "upstream-*" branch plus the debian/ +repository files. +When a patch has to be applied to the Debian package, two solutions +are involved: +* If the patch is available in one of the upstream branches, it + may be git'cherry-picked into the Debian repository. In this + case, it appears directly in the .diff.gz. +* Otherwise, the patch is added to debian/patches/ which is managed + with quilt as documented in /usr/share/doc/quilt/README.source. --- xserver-xorg-input-libinput-1.2.1.orig/debian/changelog +++ xserver-xorg-input-libinput-1.2.1/debian/changelog @@ -0,0 +1,187 @@ +xserver-xorg-input-libinput (1.2.1-1) unstable; urgency=medium + + * New upstream release. + * control, rules: Bump debhelper-compat to 13. + * control: Bump policy to 4.6.0. + * Move xorg-libinput.pc to /usr/share/pkgconfig. + * Mark xserver-xorg-input-libinput-dev Multi-Arch: foreign. (Closes: + #939634) + + -- Timo Aaltonen Fri, 11 Feb 2022 21:43:27 +0200 + +xserver-xorg-input-libinput (1.2.0-1) unstable; urgency=medium + + * New upstream release. + * control: Bump x11proto-dev build-depends. + + -- Timo Aaltonen Wed, 27 Oct 2021 12:55:00 +0300 + +xserver-xorg-input-libinput (1.1.0-1) unstable; urgency=medium + + * New upstream release. + * control: Migrate to x11proto-dev. + + -- Timo Aaltonen Wed, 25 Aug 2021 14:19:05 +0300 + +xserver-xorg-input-libinput (0.30.0-1) unstable; urgency=medium + + * New upstream release. + * rules: Use dh_missing. + * control: Migrate to debhelper-compat, bump to 12. + * control: Bump policy to 4.5.0. + + -- Timo Aaltonen Mon, 17 Aug 2020 13:45:44 +0300 + +xserver-xorg-input-libinput (0.29.0-1) unstable; urgency=medium + + * New upstream release. + + -- Timo Aaltonen Tue, 13 Aug 2019 14:13:23 +0300 + +xserver-xorg-input-libinput (0.28.2-2) unstable; urgency=medium + + * Ship configuration snippet in the udeb as well. + + -- Cyril Brulebois Sun, 31 Mar 2019 01:56:52 +0000 + +xserver-xorg-input-libinput (0.28.2-1) unstable; urgency=medium + + * New upstream release. + * control: Bump policy to 4.3.0, no changes. + * control: Update vcs urls. + + -- Timo Aaltonen Mon, 04 Feb 2019 10:48:58 +0200 + +xserver-xorg-input-libinput (0.28.1-1) unstable; urgency=medium + + * New upstream release. + + -- Timo Aaltonen Tue, 16 Oct 2018 07:48:27 +0300 + +xserver-xorg-input-libinput (0.28.0-1) unstable; urgency=medium + + * New upstream release. (LP: #1786478) + + -- Timo Aaltonen Fri, 17 Aug 2018 15:04:00 +0300 + +xserver-xorg-input-libinput (0.27.1-1) unstable; urgency=medium + + * New upstream release. + + -- Timo Aaltonen Wed, 11 Apr 2018 10:50:09 +0300 + +xserver-xorg-input-libinput (0.27.0-1) unstable; urgency=medium + + * New upstream release. + + -- Timo Aaltonen Tue, 20 Mar 2018 13:33:52 +0200 + +xserver-xorg-input-libinput (0.26.0-1) unstable; urgency=medium + + * New upstream release. + + -- Timo Aaltonen Sat, 23 Sep 2017 14:47:01 +0300 + +xserver-xorg-input-libinput (0.23.0-2) unstable; urgency=medium + + [ Andreas Boll ] + * Cherry-pick commit f47f78e (Ignore LED updates for disabled devices) + from upstream master branch (Closes: #829386). + * Switch URLs to https. + * Move URL from description to Homepage field. + * Bump Standards-Version to 3.9.8. + + -- Timo Aaltonen Thu, 12 Jan 2017 13:48:06 +0200 + +xserver-xorg-input-libinput (0.23.0-1) unstable; urgency=medium + + * New upstream release. + * Bump debhelper compat to 10. + + Let debhelper run autoreconf for us. + * No need to pass --disable-silent-rules to configure, debhelper does + that these days. + * No need for --destdir=debian/tmp as we have multiple binary packages. + + -- Emilio Pozuelo Monfort Mon, 12 Dec 2016 19:15:41 +0100 + +xserver-xorg-input-libinput (0.22.0-1) unstable; urgency=medium + + * New upstream release. + * control: Bump build-dep on libinput-dev. + + -- Timo Aaltonen Fri, 18 Nov 2016 16:03:02 +0200 + +xserver-xorg-input-libinput (0.20.0-1) unstable; urgency=medium + + * New upstream release. + * control, rules: Drop -dbg package. + + -- Timo Aaltonen Fri, 30 Sep 2016 15:05:19 +0300 + +xserver-xorg-input-libinput (0.19.1-1) unstable; urgency=medium + + * Team upload. + * Use https URL in debian/watch. + * New upstream release. + + -- Julien Cristau Sat, 24 Sep 2016 15:58:15 +0200 + +xserver-xorg-input-libinput (0.19.0-1) unstable; urgency=medium + + [ Andreas Boll ] + * control: Fix Vcs-Git field. + + [ Timo Aaltonen ] + * New upstream release. + + -- Timo Aaltonen Tue, 10 May 2016 11:37:55 +0300 + +xserver-xorg-input-libinput (0.18.0-1) unstable; urgency=medium + + * New upstream release. + * control: Update the description to mention that this driver can + replace -evdev and -synaptics. + * control: Bump libinput-dev build-dependency. + * control: Bump Standards-Version to 3.9.7 (no changes). + + -- Timo Aaltonen Thu, 07 Apr 2016 10:20:31 +0300 + +xserver-xorg-input-libinput (0.17.0-1) unstable; urgency=medium + + * New upstream release. + * control: Update Vcs fields to use https. + + -- Timo Aaltonen Sat, 27 Feb 2016 10:03:43 +0200 + +xserver-xorg-input-libinput (0.16.0-1) unstable; urgency=medium + + * New upstream release. + + -- Timo Aaltonen Thu, 14 Jan 2016 14:59:15 +0200 + +xserver-xorg-input-libinput (0.15.0-1) unstable; urgency=medium + + * New upstream release. + * control: Bump libinput-dev build-dep. + * install: Fix conf snippet source path. + + -- Timo Aaltonen Wed, 28 Oct 2015 18:30:03 +0200 + +xserver-xorg-input-libinput (0.14.0-1) unstable; urgency=medium + + * New upstream release. + + -- Timo Aaltonen Wed, 23 Sep 2015 13:12:50 +0300 + +xserver-xorg-input-libinput (0.13.0-1) unstable; urgency=medium + + * New upstream release. + * control: Bump libinput build-dep (Closes: #794032). + + -- Timo Aaltonen Fri, 07 Aug 2015 09:12:38 +0300 + +xserver-xorg-input-libinput (0.11.0-1) unstable; urgency=medium + + * Initial release. (Closes: #784114) + + -- Timo Aaltonen Mon, 06 Jul 2015 16:27:42 +0300 --- xserver-xorg-input-libinput-1.2.1.orig/debian/control +++ xserver-xorg-input-libinput-1.2.1/debian/control @@ -0,0 +1,62 @@ +Source: xserver-xorg-input-libinput +Section: x11 +Priority: optional +Maintainer: Debian X Strike Force +Uploaders: Timo Aaltonen , +Build-Depends: + debhelper-compat (= 13), + libinput-dev (>= 1.4.901), + libudev-dev, + pkg-config, + quilt, + x11proto-dev (>= 2021.5), + xserver-xorg-dev (>= 2:1.15.99), + xutils-dev, +Standards-Version: 4.6.0 +Homepage: https://www.x.org +Vcs-Git: https://salsa.debian.org/xorg-team/driver/xserver-xorg-input-libinput.git +Vcs-Browser: https://salsa.debian.org/xorg-team/driver/xserver-xorg-input-libinput + +Package: xserver-xorg-input-libinput +Architecture: linux-any +Depends: + ${shlibs:Depends}, + ${misc:Depends}, + ${xinpdriver:Depends}, +Provides: + ${xinpdriver:Provides} +Description: X.Org X server -- libinput input driver + This package provides the driver for input devices using libinput library. + It can handle keyboards, mice and touchpads, and essentially replaces the + separate -evdev and -synaptics drivers. + . + This package is built from the X.org xf86-input-libinput driver module. + +Package: xserver-xorg-input-libinput-dev +Section: libdevel +Architecture: all +Multi-Arch: foreign +Depends: + ${shlibs:Depends}, + ${misc:Depends} +Description: X.Org X server -- libinput input driver (development headers) + This package provides the development headers for the libinput input driver + found in xserver-xorg-input-libinput. Non-developers likely have little use + for this package. + . + This package is built from the X.org xf86-input-libinput driver module. + + +Package: xserver-xorg-input-libinput-udeb +XC-Package-Type: udeb +Section: debian-installer +Architecture: linux-any +Depends: + ${shlibs:Depends}, + ${misc:Depends}, + ${xinpdriver:Depends}, + udev-udeb, +Provides: + ${xinpdriver:Provides} +Description: X.Org X server -- libinput input driver + This is a udeb, or a microdeb, for the debian-installer. --- xserver-xorg-input-libinput-1.2.1.orig/debian/copyright +++ xserver-xorg-input-libinput-1.2.1/debian/copyright @@ -0,0 +1,52 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-name: xf86-input-libinput +Source: https://xorg.freedesktop.org/releases/individual/driver/ + +Files: * +Copyright: 2013-2014 Red Hat, Inc. +License: MIT + +Files: configure.ac +Copyright: 2005 Adam Jackson +License: xorg + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + on the rights to use, copy, modify, merge, publish, distribute, sub + license, and/or sell copies of the Software, and to permit persons to whom + the Software is furnished to do so, subject to the following conditions: + . + The above copyright notice and this permission notice (including the next + paragraph) shall be included in all copies or substantial portions of the + Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL + ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Files: debian/* +Copyright: 2014 Timo Aaltonen +License: MIT + +License: MIT + Permission to use, copy, modify, distribute, and sell this software + and its documentation for any purpose is hereby granted without + fee, provided that the above copyright notice appear in all copies + and that both that copyright notice and this permission notice + appear in supporting documentation, and that the name of the authors + not be used in advertising or publicity pertaining to distribution of the + software without specific, written prior permission. The authors make no + representations about the suitability of this software for any + purpose. It is provided "as is" without express or implied + warranty. + . + THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN + NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR + CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS + OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --- xserver-xorg-input-libinput-1.2.1.orig/debian/patches/series +++ xserver-xorg-input-libinput-1.2.1/debian/patches/series @@ -0,0 +1 @@ +# placeholder --- xserver-xorg-input-libinput-1.2.1.orig/debian/rules +++ xserver-xorg-input-libinput-1.2.1/debian/rules @@ -0,0 +1,18 @@ +#!/usr/bin/make -f + +override_dh_auto_configure: + dh_auto_configure -- \ + --libdir=\$${exec_prefix}/lib + +# Kill *.la files, and forget no-one: +override_dh_install: + find debian/tmp -name '*.la' -delete + mv debian/tmp/usr/lib/pkgconfig debian/tmp/usr/share/pkgconfig + dh_install + +# That's a plugin, use appropriate warning level: +override_dh_shlibdeps: + dh_shlibdeps -- --warnings=6 + +%: + dh $@ --with quilt,xsf --builddirectory=build/ --- xserver-xorg-input-libinput-1.2.1.orig/debian/upstream/signing-key.asc +++ xserver-xorg-input-libinput-1.2.1/debian/upstream/signing-key.asc @@ -0,0 +1,24 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v1 + +mQGiBD8b0wYRBACph9kRJmP+4+JGsCgFlFoy4vFO0DCG+jmkQN0n1wdInt/N/UtA +sZToO72AUmfmYizA+IEbzBrx0UnUo3w3BDmHxUWf/akZiPUz9AA/YFY4xC3MY2OK +VN2Jz6YSce4zJ5jd2ZRobHm4HuIf/8yqSCcsv7FNfrLaTNIFRs5gYYsqZwCgwmkp +RSLRc8WAnHrTWNQDaEFM2rUEAKTjrTjMN8+KGd0BxNX7HiTSqQP++nXNwAYs1oWB +Yt82YHj9SvRCqCzD1pzJQivYnlNoWDza1VeMnfdAvkdia8z4lYbO/RunXZJvra3Z +VDm+izq+uwUAyvFuEYnNz09VSqwXKT6+XW0Xtz2vHq52r6DS6mK8cGJHZ5OhrRjq +UEYxA/9STh+QfA98xtNoRcf52E/46r7IpCj440oRVc9lMfxQZrLGQNqp7sPdIhGQ +CCo2NUII5hkhdAG71kpbfSXU4Sh32p1cU1KYCAkDFfb49bKuAs+Pff8v6FGZxTdd +AinPZr4BbsYJatk818aTCnu0+s7L8jL5GPfeyuyEMKwzVBx2mLQpUGV0ZXIgSHV0 +dGVyZXIgKFdoby1UKSA8b2ZmaWNlQHdoby10Lm5ldD6IWQQTEQIAGQUCPxvTBgQL +BwMCAxUCAwMWAgECHgECF4AACgkQ4jt+cLRn8L/0RACfWo3KTMUg+uPRqA6RXxk0 +4CWjXaMAoJeIxOpZLB3RBltPnSi7PyVQIkHFuQENBD8b0wgQBACTnqOYOWYVR8O1 +D73J6nbdAeZCbXrUkyXIuyqBOdKmX/0QJmSs7Wfsa+hPfDhj6ai0Gs2C8Qg/0Pzk +86b4p9DLkf0M6RaYjUtCJBpS59xrsV6nz6xZzQa4RRdf1YJmw2tia1MMXzxbwQU2 +bKpYEm8NsGaBURMGd02EvsMN2wI2uwADBQP/e9MjVr/85XDzAlUBN8HwYW5szTyP +8ZVcQOqOmNebkTWGLvkPrBdXmxpzrWjxPolO1WcWQjUL0bN/rbdqefT65iVHJHJZ +/cpTtgGlCPhL5JTA50ltd0I13CABYWLFmswonXES/6tcglf4rr3Nri2sOrY5HggP +ipEzOo5vdKOow/qIRgQYEQIABgUCPxvTCAAKCRDiO35wtGfwv68jAKCDvL2gkrg1 +4NfV7rNc057K1nL2GgCeKApWRgGVzaOkAp0P5tQulaDD6zM= +=7uBX +-----END PGP PUBLIC KEY BLOCK----- --- xserver-xorg-input-libinput-1.2.1.orig/debian/watch +++ xserver-xorg-input-libinput-1.2.1/debian/watch @@ -0,0 +1,4 @@ +#git=git://anongit.freedesktop.org/xorg/driver/xf86-input-libinput +version=3 +opts=pgpsigurlmangle=s/$/.sig/ \ +https://xorg.freedesktop.org/releases/individual/driver/ xf86-input-libinput-(.*)\.tar\.gz --- xserver-xorg-input-libinput-1.2.1.orig/debian/xserver-xorg-input-libinput-dev.install +++ xserver-xorg-input-libinput-1.2.1/debian/xserver-xorg-input-libinput-dev.install @@ -0,0 +1,2 @@ +usr/include/xorg/libinput-properties.h +usr/share/pkgconfig/* --- xserver-xorg-input-libinput-1.2.1.orig/debian/xserver-xorg-input-libinput-udeb.install +++ xserver-xorg-input-libinput-1.2.1/debian/xserver-xorg-input-libinput-udeb.install @@ -0,0 +1,2 @@ +usr/lib/xorg/modules/input/*.so +usr/share/X11/xorg.conf.d --- xserver-xorg-input-libinput-1.2.1.orig/debian/xserver-xorg-input-libinput.install +++ xserver-xorg-input-libinput-1.2.1/debian/xserver-xorg-input-libinput.install @@ -0,0 +1,3 @@ +usr/lib/xorg/modules/input/*.so +usr/share/man +usr/share/X11/xorg.conf.d --- xserver-xorg-input-libinput-1.2.1.orig/debian/xserver-xorg-input-libinput.links +++ xserver-xorg-input-libinput-1.2.1/debian/xserver-xorg-input-libinput.links @@ -0,0 +1 @@ +usr/share/bug/xserver-xorg-core/script usr/share/bug/xserver-xorg-input-libinput/script