SHA256
1
0
forked from pool/libei

- Update to release 0.3

OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/libei?expand=0&rev=7
This commit is contained in:
Jan Engelhardt 2022-06-07 07:09:53 +00:00 committed by Git OBS Bridge
parent 8e0fe0bc42
commit a0cc5b92b8
6 changed files with 33 additions and 15 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:439be13fb1dbe8e811934e901088d6d7bc65b5118f4109c4d06d6025f19c0f14
size 127872

3
libei-0.3.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9cbef915778cd5ded07ecd86924d0553785f894c7e21d6a4d08b632e240194f1
size 150125

View File

@ -1,3 +1,20 @@
-------------------------------------------------------------------
Tue Jun 7 06:44:15 UTC 2022 - Jan Engelhardt <jengelh@inai.de>
- Update to release 0.3
* libei now supports the concept of sender/receiver contexts. A
libei context in sender mode can send events to the
(EIS-created) devices, a libei context in receiver mode can
receive events from the (EIS-created) devices. This allows
for libei to be used as a transport layer for captured input
events.
* A libei context can bind/unbind to seat capabilities
individually at any time
* Frame events now carry a timestamp
* A helper tool ei-debug-events is now available, this tool can
be used in e.g. portal implementation to show the events
being sent.
-------------------------------------------------------------------
Wed Mar 2 08:00:57 UTC 2022 - Jan Engelhardt <jengelh@inai.de>

View File

@ -17,13 +17,13 @@
Name: libei
%define lname libei-suse1
Version: 0.2
%define lname libei-suse2
Version: 0.3
Release: 0
Summary: Library for emulated input in Wayland
License: MIT
Group: Development/Libraries/C and C++
URL: https://gitlab.freedesktop.org/whot/libei/
URL: https://gitlab.freedesktop.org/libinput/libei/
Source: https://gitlab.freedesktop.org/libinput/libei/-/archive/%version/%name-%version.tar.gz
Patch1: system-munit.diff
@ -80,9 +80,10 @@ libei is a library for Emulated Input, targeting the Wayland stack.
%postun -n %lname -p /sbin/ldconfig
%files -n %lname
%_libdir/lib*.so.suse1
%_libdir/lib*.so.suse2
%files devel
%_bindir/ei-debug-*
%_includedir/%name/
%_libdir/pkgconfig/*.pc
%_libdir/*.so

View File

@ -7,15 +7,15 @@ Do not fail the build if munit available (only) via /usr.
meson.build | 2 --
1 file changed, 2 deletions(-)
Index: libei-0.2/meson.build
Index: libei-0.3/meson.build
===================================================================
--- libei-0.2.orig/meson.build
+++ libei-0.2/meson.build
@@ -228,8 +228,6 @@ endif
--- libei-0.3.orig/meson.build
+++ libei-0.3/meson.build
@@ -236,8 +236,6 @@ endif
# tests
if get_option('tests')
- subproject('munit')
- subproject('munit', default_options: 'werror=false')
-
munit = dependency('munit', fallback: ['munit', 'munit_dep'])

View File

@ -17,7 +17,7 @@ Index: libei-0.2/meson.build
gnu_symbol_visibility: 'hidden',
- install: true
+ install: true,
+ soversion: 'suse1'
+ soversion: 'suse2'
)
install_headers('src/libei.h')
@ -27,7 +27,7 @@ Index: libei-0.2/meson.build
gnu_symbol_visibility: 'hidden',
- install: true
+ install: true,
+ soversion: 'suse1'
+ soversion: 'suse2'
)
install_headers('src/libeis.h')
@ -35,7 +35,7 @@ Index: libei-0.2/meson.build
gnu_symbol_visibility: 'hidden',
install: true,
include_directories: 'src',
+ soversion: 'suse1'
+ soversion: 'suse2'
)
install_headers('src/libreis.h')