Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libei for openSUSE:Factory checked in at 2022-03-02 18:20:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libei (Old) and /work/SRC/openSUSE:Factory/.libei.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libei" Wed Mar 2 18:20:36 2022 rev:3 rq:958403 version:0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/libei/libei.changes 2020-08-29 20:34:34.489268923 +0200 +++ /work/SRC/openSUSE:Factory/.libei.new.1958/libei.changes 2022-03-02 18:20:54.444655533 +0100 @@ -1,0 +2,6 @@ +Wed Mar 2 08:00:57 UTC 2022 - Jan Engelhardt <jeng...@inai.de> + +- Update to release 0.2 + * Development snapshot, no curated changelog available. + +------------------------------------------------------------------- Old: ---- _service libei-0+git134.tar.xz New: ---- libei-0.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libei.spec ++++++ --- /var/tmp/diff_new_pack.j5h2xh/_old 2022-03-02 18:20:54.932655550 +0100 +++ /var/tmp/diff_new_pack.j5h2xh/_new 2022-03-02 18:20:54.936655550 +0100 @@ -1,7 +1,7 @@ # # spec file for package libei # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,38 +17,49 @@ Name: libei -%define lname libei-suse0 -Version: 0+git134 +%define lname libei-suse1 +Version: 0.2 Release: 0 Summary: Library for emulated input in Wayland License: MIT Group: Development/Libraries/C and C++ URL: https://gitlab.freedesktop.org/whot/libei/ -Source: %name-%version.tar.xz +Source: https://gitlab.freedesktop.org/libinput/libei/-/archive/%version/%name-%version.tar.gz Patch1: system-munit.diff Patch2: ver.diff BuildRequires: meson BuildRequires: ninja BuildRequires: protobuf-c +BuildRequires: pkgconfig(libevdev) BuildRequires: pkgconfig(libprotobuf-c) +BuildRequires: pkgconfig(libsystemd) BuildRequires: pkgconfig(munit) BuildRequires: pkgconfig(protobuf-lite) +BuildRequires: pkgconfig(xkbcommon) %description -libei is a library for Emulated Input, targeting the Wayland stack. -It provides separation, distinction and control, which, for -comparison, are not available with XTEST (X11's emulated input). +libei is a library to send Emulated Input (EI) to a matching Emulated +Input Server (EIS) which can receive those events with libeis. + +It targets Wayland and provides separation, distinction and control, +which, for comparison, are not available with XTEST (X11's emulated +input). %package -n %lname -Summary: OpenGL and OpenGL ES shader front end implementation +Summary: Library for emulated input in Wayland Group: System/Libraries %description -n %lname -libei is a library for Emulated Input, targeting the Wayland stack. +libei is a library to send Emulated Input (EI) to a matching Emulated +Input Server (EIS) which can receive those events with libeis. + +It targets Wayland and provides separation, distinction and control, +which, for comparison, are not available with XTEST (X11's emulated +input). %package devel -Summary: OpenGL and OpenGL ES shader front end and validator +Summary: Header files for libei, a library for emulated input under Wayland Group: Development/Libraries/C and C++ Requires: %lname = %version @@ -69,7 +80,7 @@ %postun -n %lname -p /sbin/ldconfig %files -n %lname -%_libdir/lib*.so.suse0 +%_libdir/lib*.so.suse1 %files devel %_includedir/%name/ ++++++ system-munit.diff ++++++ --- /var/tmp/diff_new_pack.j5h2xh/_old 2022-03-02 18:20:54.984655552 +0100 +++ /var/tmp/diff_new_pack.j5h2xh/_new 2022-03-02 18:20:54.988655552 +0100 @@ -3,16 +3,21 @@ Do not fail the build if munit available (only) via /usr. -diff --git a/meson.build b/meson.build -index 11cc511..427fb43 100644 ---- a/meson.build -+++ b/meson.build -@@ -114,7 +114,6 @@ executable('ei-socket-client', - dependencies: [dep_libei]) +--- + meson.build | 2 -- + 1 file changed, 2 deletions(-) + +Index: libei-0.2/meson.build +=================================================================== +--- libei-0.2.orig/meson.build ++++ libei-0.2/meson.build +@@ -228,8 +228,6 @@ endif # tests --subproject('munit') - - munit = dependency('munit', fallback: ['munit', 'munit_dep']) + if get_option('tests') +- subproject('munit') +- + munit = dependency('munit', fallback: ['munit', 'munit_dep']) + lib_unittest = static_library('unittest', ++++++ ver.diff ++++++ --- /var/tmp/diff_new_pack.j5h2xh/_old 2022-03-02 18:20:55.000655552 +0100 +++ /var/tmp/diff_new_pack.j5h2xh/_new 2022-03-02 18:20:55.004655553 +0100 @@ -3,35 +3,39 @@ unversioned libraries suck. -diff --git a/meson.build b/meson.build -index 11cc511..41d140f 100644 ---- a/meson.build -+++ b/meson.build -@@ -45,7 +45,8 @@ src_libei = [ - lib_libei = shared_library('ei', +--- + meson.build | 7 +++++-- + 1 file changed, 5 insertions(+), 2 deletions(-) + +Index: libei-0.2/meson.build +=================================================================== +--- libei-0.2.orig/meson.build ++++ libei-0.2/meson.build +@@ -110,7 +110,8 @@ lib_libei = shared_library('ei', src_libei, - dependencies: [dep_libutil, dep_protobuf], + dependencies: deps_libei, + gnu_symbol_visibility: 'hidden', - install: true + install: true, -+ soversion: 'suse0' ++ soversion: 'suse1' ) install_headers('src/libei.h') -@@ -69,7 +70,8 @@ lib_libeis = shared_library('eis', - 'src/libeis-fd.c', - proto_headers, +@@ -149,7 +150,8 @@ lib_libeis = shared_library('eis', + src_libeis, dependencies: [dep_libutil, dep_protobuf], + gnu_symbol_visibility: 'hidden', - install: true + install: true, -+ soversion: 'suse0' ++ soversion: 'suse1' ) install_headers('src/libeis.h') -@@ -91,6 +93,7 @@ lib_libreis = shared_library('reis', - dependencies: [dep_libutil, dep_protobuf], +@@ -172,6 +174,7 @@ lib_libreis = shared_library('reis', + gnu_symbol_visibility: 'hidden', install: true, include_directories: 'src', -+ soversion: 'suse0' ++ soversion: 'suse1' ) install_headers('src/libreis.h')