Compare commits
No commits in common. "06f22c538cf1cc9d1461746c867974874e51e922" and "c8" have entirely different histories.
06f22c538c
...
c8
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
/xf86-input-libinput-*.tar.bz2
|
||||
SOURCES/xf86-input-libinput-0.29.0.tar.bz2
|
||||
|
@ -1 +1 @@
|
||||
e0336d7376379ea3ce60730804e498cdb05f3f5c xf86-input-libinput-1.0.1.tar.bz2
|
||||
efa9dbe08ee827949aff0bd752f8270237247c56 SOURCES/xf86-input-libinput-0.29.0.tar.bz2
|
||||
|
@ -1,4 +1,4 @@
|
||||
From badaa13b7193344a3dd1a81b03baa4bc540faa92 Mon Sep 17 00:00:00 2001
|
||||
From 41d20d35c1587f3de35acf47f926c97a30680978 Mon Sep 17 00:00:00 2001
|
||||
From: Peter Hutterer <peter.hutterer@who-t.net>
|
||||
Date: Thu, 18 May 2017 14:45:18 +1000
|
||||
Subject: [PATCH xf86-input-libinput] Add a DPIScaleFactor option as temporary
|
||||
@ -11,10 +11,10 @@ https://bugzilla.redhat.com/show_bug.cgi?id=1413306
|
||||
2 files changed, 47 insertions(+)
|
||||
|
||||
diff --git a/man/libinput.man b/man/libinput.man
|
||||
index c9fec4e..888891c 100644
|
||||
index ec0f439..bdbdb37 100644
|
||||
--- a/man/libinput.man
|
||||
+++ b/man/libinput.man
|
||||
@@ -401,6 +401,27 @@ This driver does not work with \fBOption \*qDevice\*q\fR set to an event
|
||||
@@ -386,6 +386,27 @@ This driver does not work with \fBOption \*qDevice\*q\fR set to an event
|
||||
node in \fI/dev/input/by-id\fR and \fI/dev/input/by-path\fR. This can be
|
||||
usually be worked by using \fBSection \*qInputClass\*q\fR with an
|
||||
appropriate \fBMatch*\fR statement in the __xconfigfile__(__filemansuffix__).
|
||||
@ -43,10 +43,10 @@ index c9fec4e..888891c 100644
|
||||
.SH AUTHORS
|
||||
Peter Hutterer
|
||||
diff --git a/src/xf86libinput.c b/src/xf86libinput.c
|
||||
index 92817a5..dd600e6 100644
|
||||
index 83ab75d..c1a1ce2 100644
|
||||
--- a/src/xf86libinput.c
|
||||
+++ b/src/xf86libinput.c
|
||||
@@ -182,6 +182,8 @@ struct xf86libinput {
|
||||
@@ -194,6 +194,8 @@ struct xf86libinput {
|
||||
struct scale_factor {
|
||||
double x, y;
|
||||
} area_scale_factor;
|
||||
@ -55,7 +55,7 @@ index 92817a5..dd600e6 100644
|
||||
};
|
||||
|
||||
enum event_handling {
|
||||
@@ -1448,6 +1450,11 @@ xf86libinput_handle_motion(InputInfoPtr pInfo, struct libinput_event_pointer *ev
|
||||
@@ -1463,6 +1465,11 @@ xf86libinput_handle_motion(InputInfoPtr pInfo, struct libinput_event_pointer *ev
|
||||
x = libinput_event_pointer_get_dx(event);
|
||||
y = libinput_event_pointer_get_dy(event);
|
||||
|
||||
@ -66,8 +66,8 @@ index 92817a5..dd600e6 100644
|
||||
+
|
||||
valuator_mask_zero(mask);
|
||||
|
||||
{
|
||||
@@ -3448,6 +3455,25 @@ xf86libinput_pre_init(InputDriverPtr drv,
|
||||
#if HAVE_VMASK_UNACCEL
|
||||
@@ -3421,6 +3428,25 @@ xf86libinput_pre_init(InputDriverPtr drv,
|
||||
|
||||
xf86libinput_parse_options(pInfo, driver_data, device);
|
||||
|
||||
@ -94,5 +94,5 @@ index 92817a5..dd600e6 100644
|
||||
* this device, create a separate device instead */
|
||||
if (!is_subdevice &&
|
||||
--
|
||||
2.31.1
|
||||
2.14.3
|
||||
|
@ -7,15 +7,15 @@
|
||||
|
||||
Summary: Xorg X11 libinput input driver
|
||||
Name: xorg-x11-drv-libinput
|
||||
Version: 1.0.1
|
||||
Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist}
|
||||
Version: 0.29.0
|
||||
Release: 1%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist}
|
||||
URL: http://www.x.org
|
||||
License: MIT
|
||||
|
||||
%if 0%{?gitdate}
|
||||
Source0: %{tarball}-%{gitdate}.tar.xz
|
||||
%else
|
||||
Source0: https://www.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2
|
||||
Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2
|
||||
%endif
|
||||
Source1: 71-libinput-overrides-wacom.conf
|
||||
|
||||
@ -23,7 +23,6 @@ Source1: 71-libinput-overrides-wacom.conf
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1413306
|
||||
Patch01: 0001-Add-a-DPIScaleFactor-option-as-temporary-solution-to.patch
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: autoconf automake libtool
|
||||
BuildRequires: xorg-x11-server-devel >= 1.14.0
|
||||
BuildRequires: libudev-devel libevdev-devel libinput-devel >= 0.6.0-3
|
||||
@ -42,7 +41,8 @@ A generic input driver for the X.Org X11 X server based on libinput,
|
||||
supporting all devices.
|
||||
|
||||
%prep
|
||||
%autosetup -p 1 -n %{tarball}-%{?gitdate:%{gitdate}}%{!?gitdate:%{version}}
|
||||
%setup -q -n %{tarball}-%{?gitdate:%{gitdate}}%{!?gitdate:%{version}}
|
||||
%patch01 -p1
|
||||
|
||||
%build
|
||||
autoreconf --force -v --install || exit 1
|
||||
@ -78,58 +78,18 @@ Xorg X11 libinput input driver development files.
|
||||
%{_includedir}/xorg/libinput-properties.h
|
||||
|
||||
%changelog
|
||||
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.0.1-3
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
* Tue Oct 29 2019 Peter Hutterer <peter.hutterer@redhat.com> 0.29.0-1
|
||||
- xf86-input-libinput 0.29.0 (#1728820)
|
||||
|
||||
* Thu Apr 29 2021 Peter Hutterer <peter.hutterer@redhat.com> 1.0.1-2
|
||||
- xf86-input-libinput 1.0.1 (#1951879)
|
||||
- Fix the upstream source URL
|
||||
- Use autosetup instead of manual patch handling
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.30.0-6
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Thu Jan 28 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.30.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Thu Nov 5 10:09:04 AEST 2020 Peter Hutterer <peter.hutterer@redhat.com> - 0.30.0-4
|
||||
- Add BuildRequires for make
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.30.0-3
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.30.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue May 19 2020 Peter Hutterer <peter.hutterer@redhat.com> 0.30.0-1
|
||||
- xf86-input-libinput 0.30.0
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.29.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Mon Aug 12 2019 Peter Hutterer <peter.hutterer@redhat.com> 0.29.0-1
|
||||
- xf86-input-libinput 0.29.0
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.28.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Mon Feb 04 2019 Peter Hutterer <peter.hutterer@redhat.com> 0.28.2-1
|
||||
- xf86-input-libinput 0.28.2
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.28.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Mon Oct 15 2018 Peter Hutterer <peter.hutterer@redhat.com> 0.28.1-1
|
||||
- xf86-input-libinput 0.28.1
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.28.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
* Mon Oct 15 2018 Peter Hutterer <peter.hutterer@redhat.com> 0.28.0-2
|
||||
- Fix wrong slot to touch ID mapping (#1639059)
|
||||
|
||||
* Wed Jul 11 2018 Peter Hutterer <peter.hutterer@redhat.com> 0.28.0-1
|
||||
- xf86-input-libinput 0.28.0
|
||||
|
||||
* Mon May 14 2018 Adam Jackson <ajax@redhat.com> - 0.27.1-2.1
|
||||
- Rebuild for xserver 1.20
|
||||
|
||||
* Thu Apr 12 2018 Peter Hutterer <peter.hutterer@redhat.com> 0.27.1-2
|
||||
- Build on s390x (#1565062)
|
||||
|
@ -1,6 +0,0 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-9
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
@ -1,22 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Usage: ./make-git-snapshot.sh [COMMIT]
|
||||
#
|
||||
# to make a snapshot of the given tag/branch. Defaults to HEAD.
|
||||
# Point env var REF to a local mesa repo to reduce clone time.
|
||||
|
||||
DIRNAME=xf86-input-libinput-$( date +%Y%m%d )
|
||||
|
||||
echo REF ${REF:+--reference $REF}
|
||||
echo DIRNAME $DIRNAME
|
||||
echo HEAD ${1:-HEAD}
|
||||
|
||||
rm -rf $DIRNAME
|
||||
|
||||
git clone ${REF:+--reference $REF} \
|
||||
git://git.freedesktop.org/git/xorg/driver/xf86-input-libinput $DIRNAME
|
||||
|
||||
GIT_DIR=$DIRNAME/.git git archive --format=tar --prefix=$DIRNAME/ ${1:-HEAD} \
|
||||
| xz > $DIRNAME.tar.xz
|
||||
|
||||
# rm -rf $DIRNAME
|
Loading…
Reference in New Issue
Block a user