Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libratbag for openSUSE:Factory checked in at 2022-11-10 14:23:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libratbag (Old) and /work/SRC/openSUSE:Factory/.libratbag.new.1597 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libratbag" Thu Nov 10 14:23:02 2022 rev:14 rq:1034951 version:0.17 Changes: -------- --- /work/SRC/openSUSE:Factory/libratbag/libratbag.changes 2021-10-15 23:05:11.186149771 +0200 +++ /work/SRC/openSUSE:Factory/.libratbag.new.1597/libratbag.changes 2022-11-10 14:23:38.866812655 +0100 @@ -1,0 +2,40 @@ +Wed Nov 09 19:24:01 UTC 2022 - ma...@marix.org - 0.17 + +- Update to version 0.17: + * Completely new driver for ASUS devices. + * Sinowealth driver now supports changing report rate, button + assignments and macros. + * New compatible devices: + + ASUS ROG Chakram + + ASUS ROG GX860 Buzzard Mouse + + ASUS ROG Gladius II + + ASUS ROG Gladius II Origin + + ASUS ROG Gladius II Origin PNK LTD + + ASUS ROG Keris Wireless + + ASUS ROG Pugio + + ASUS ROG Strix Carry + + ASUS ROG Strix Impact + + ASUS ROG Strix Impact II Wireless + + DreamMachines DM5 Blink + + G-Wolves Hati HT-M Wired + + Genesys Xenon 770 + + Glorious Model O (with older firmware) + + Logitech G502 X + + Logitech G502 X Wireless + + Logitech G635 + + Logitech G733 + + Logitech MX Anywhere 3B + + Machenike M620 + + Marvo Scorpion G961 + + More SteelSeries Rival variations + + Roccat Kone EMP + + SteelSeries Rival 100/105 + * Report rate changing now works on older SteelSeries mice. + * Fix multiple configurable devices being shown for one + connected SteelSeries mouse. + * Fix setting onboard profile mode in HID++2.0 driver. + * Fix active resolution slot reading and writing in Sinowealth driver. + * Fix report rates which are not multiples of 100 not applying. +- Require Meson >= 0.50.0 for build + +------------------------------------------------------------------- Old: ---- libratbag-0.16.tar.xz New: ---- libratbag-0.17.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libratbag.spec ++++++ --- /var/tmp/diff_new_pack.qWHJtr/_old 2022-11-10 14:23:39.446815939 +0100 +++ /var/tmp/diff_new_pack.qWHJtr/_new 2022-11-10 14:23:39.450815961 +0100 @@ -1,7 +1,7 @@ # # spec file for package libratbag # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # Copyright (c) 2019 Matthias Bach <ma...@marix.org>. # # All modifications and additions to the file contributed by third parties @@ -18,7 +18,7 @@ Name: libratbag -Version: 0.16 +Version: 0.17 Release: 0 Summary: Configuration library for gaming mice License: MIT @@ -32,7 +32,7 @@ BuildRequires: gcc-c++ BuildRequires: json-glib-devel BuildRequires: libunistring-devel -BuildRequires: meson +BuildRequires: meson >= 0.50.0 BuildRequires: pkgconfig BuildRequires: python3-evdev BuildRequires: python3-gobject ++++++ _service ++++++ --- /var/tmp/diff_new_pack.qWHJtr/_old 2022-11-10 14:23:39.482816142 +0100 +++ /var/tmp/diff_new_pack.qWHJtr/_new 2022-11-10 14:23:39.486816165 +0100 @@ -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.16</param> + <param name="revision">v0.17</param> <param name="versionformat">@PARENT_TAG@</param> <param name="changesgenerate">enable</param> <param name="versionrewrite-pattern">v(.*)</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.qWHJtr/_old 2022-11-10 14:23:39.506816278 +0100 +++ /var/tmp/diff_new_pack.qWHJtr/_new 2022-11-10 14:23:39.510816300 +0100 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/libratbag/libratbag.git</param> - <param name="changesrevision">952bd9dc07f0dc20a7457afdac96030c4c7468cc</param></service></servicedata> + <param name="changesrevision">925b2a2a0a6b5a5f37fe851b38b1b06490f9e6cc</param></service></servicedata> (No newline at EOF) ++++++ libratbag-0.16.tar.xz -> libratbag-0.17.tar.xz ++++++ ++++ 9354 lines of diff (skipped) ++++++ shebang-env.diff ++++++ --- /var/tmp/diff_new_pack.qWHJtr/_old 2022-11-10 14:23:39.658817138 +0100 +++ /var/tmp/diff_new_pack.qWHJtr/_new 2022-11-10 14:23:39.662817161 +0100 @@ -7,30 +7,30 @@ to ensure we don't run into issues if a virtualenv or the like should be active when invoking the script. -diff --git a/data/devices/data-parse-test.py b/data/devices/data-parse-test.py +diff --git a/test/data-parse-test.py b/test/data-parse-test.py index bdd4fe9..31ca244 100755 ---- a/data/devices/data-parse-test.py -+++ b/data/devices/data-parse-test.py +--- a/test/data-parse-test.py ++++ b/test/data-parse-test.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/python3 # # Copyright ?? 2017 Red Hat, Inc. # -diff --git a/data/devices/duplicate-check.py b/data/devices/duplicate-check.py +diff --git a/test/duplicate-check.py b/test/duplicate-check.py index 332f125..1841696 100755 ---- a/data/devices/duplicate-check.py -+++ b/data/devices/duplicate-check.py +--- a/test/duplicate-check.py ++++ b/test/duplicate-check.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/python3 # # Copyright ?? 2018 Red Hat, Inc. # -diff --git a/data/devices/receiver-check.py b/data/devices/receiver-check.py +diff --git a/test/receiver-check.py b/test/receiver-check.py index 024f3e6..68d9d99 100755 ---- a/data/devices/receiver-check.py -+++ b/data/devices/receiver-check.py +--- a/test/receiver-check.py ++++ b/test/receiver-check.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/python3