Hello community, here is the log from the commit of package libratbag for openSUSE:Factory checked in at 2018-10-17 08:43:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libratbag (Old) and /work/SRC/openSUSE:Factory/.libratbag.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libratbag" Wed Oct 17 08:43:23 2018 rev:2 rq:642494 version:0.9.903 Changes: -------- --- /work/SRC/openSUSE:Factory/libratbag/libratbag.changes 2018-08-08 14:52:51.593486722 +0200 +++ /work/SRC/openSUSE:Factory/.libratbag.new/libratbag.changes 2018-10-17 08:44:13.745712070 +0200 @@ -1,0 +2,10 @@ +Tue Oct 16 21:09:51 UTC 2018 - [email protected] + +- Update to version 0.9.903: + * Adds GetSvgFd() function on D-BUS required by Piper + * Add a --version commandline argument ratbagd + * Added support for the Steelseries Sensei Raw + * Added support for the Logitech G600 + * Added support for the Logitech G302 + +------------------------------------------------------------------- Old: ---- libratbag-0.9.902.tar.xz New: ---- libratbag-0.9.903.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libratbag.spec ++++++ --- /var/tmp/diff_new_pack.OpiiIX/_old 2018-10-17 08:44:14.317711588 +0200 +++ /var/tmp/diff_new_pack.OpiiIX/_new 2018-10-17 08:44:14.321711585 +0200 @@ -18,7 +18,7 @@ Name: libratbag -Version: 0.9.902 +Version: 0.9.903 Release: 0 Summary: Configuration library for gaming mice License: MIT ++++++ _service ++++++ --- /var/tmp/diff_new_pack.OpiiIX/_old 2018-10-17 08:44:14.349711561 +0200 +++ /var/tmp/diff_new_pack.OpiiIX/_new 2018-10-17 08:44:14.353711558 +0200 @@ -2,7 +2,7 @@ <service name="obs_scm" mode="disabled"> <param name="url">https://github.com/libratbag/libratbag.git</param> <param name="scm">git</param> - <param name="revision">v0.9.902</param> + <param name="revision">v0.9.903</param> <param name="versionformat">@PARENT_TAG@</param> <param name="changesgenerate">enable</param> <param name="versionrewrite-pattern">v(.*)</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.OpiiIX/_old 2018-10-17 08:44:14.365711548 +0200 +++ /var/tmp/diff_new_pack.OpiiIX/_new 2018-10-17 08:44:14.369711544 +0200 @@ -1,4 +1,4 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/libratbag/libratbag.git</param> - <param name="changesrevision">1e62916e755fd0dc73b7a14e87c9f530cb7ac886</param></service></servicedata> \ No newline at end of file + <param name="changesrevision">3d345570eb56c14d9c732d0b7c0b2a14c064c40d</param></service></servicedata> \ No newline at end of file ++++++ install-daemon-into-sbindir.patch ++++++ --- /var/tmp/diff_new_pack.OpiiIX/_old 2018-10-17 08:44:14.377711538 +0200 +++ /var/tmp/diff_new_pack.OpiiIX/_new 2018-10-17 08:44:14.377711538 +0200 @@ -6,11 +6,22 @@ Ratbagd requires to be run by root. It should thus live in the system binary directory. +diff --git a/dbus/org.freedesktop.ratbag1.service.in b/dbus/org.freedesktop.ratbag1.service.in +index aaa3b56..6569ead 100644 +--- a/dbus/org.freedesktop.ratbag1.service.in ++++ b/dbus/org.freedesktop.ratbag1.service.in +@@ -1,5 +1,5 @@ + [D-BUS Service] + Name=org.freedesktop.ratbag1 +-Exec=@bindir@/ratbagd ++Exec=@sbindir@/ratbagd + User=root + SystemdService=ratbagd.service diff --git a/meson.build b/meson.build -index 23872b5..ec4081c 100644 +index d0234cd..1ff3529 100644 --- a/meson.build +++ b/meson.build -@@ -408,6 +408,7 @@ executable('ratbagd', +@@ -416,6 +416,7 @@ executable('ratbagd', dependencies : deps_ratbagd, include_directories : include_directories('src'), install : true, @@ -18,7 +29,7 @@ ) install_man('ratbagd/ratbagd.8') -@@ -419,6 +420,7 @@ executable('ratbagd.devel', +@@ -427,6 +428,7 @@ executable('ratbagd.devel', dependencies : deps_ratbagd, include_directories : include_directories('src'), install : false, @@ -26,7 +37,7 @@ c_args : ['-DRATBAG_DBUS_INTERFACE="ratbag_devel1_@0@"'.format(ratbagd_sha), '-DDISABLE_COREDUMP=1'], ) -@@ -452,12 +454,12 @@ if unitdir == '' +@@ -462,13 +464,13 @@ if enable_systemd endif endif @@ -35,14 +46,15 @@ +config_sbindir = configuration_data() +config_sbindir.set('sbindir', join_paths(get_option('prefix'), get_option('sbindir'))) - configure_file(input : 'ratbagd/ratbagd.service.in', - output : 'ratbagd.service', -- configuration : config_bindir, -+ configuration : config_sbindir, - install_dir : unitdir) + if enable_systemd + configure_file(input : 'ratbagd/ratbagd.service.in', + output : 'ratbagd.service', +- configuration : config_bindir, ++ configuration : config_sbindir, + install_dir : unitdir) + endif - dbusdir = get_option('dbus-root-dir') -@@ -467,7 +469,7 @@ endif +@@ -479,7 +481,7 @@ endif configure_file(input : 'dbus/org.freedesktop.ratbag1.service.in', output : 'org.freedesktop.ratbag1.service', ++++++ libratbag-0.9.902.tar.xz -> libratbag-0.9.903.tar.xz ++++++ ++++ 5869 lines of diff (skipped)
