commit piper for openSUSE:Factory

2020-06-23 Thread root
Hello community,

here is the log from the commit of package piper for openSUSE:Factory checked 
in at 2020-06-23 21:05:58

Comparing /work/SRC/openSUSE:Factory/piper (Old)
 and  /work/SRC/openSUSE:Factory/.piper.new.2956 (New)


Package is "piper"

Tue Jun 23 21:05:58 2020 rev:9 rq:816455 version:0.5.1

Changes:

--- /work/SRC/openSUSE:Factory/piper/piper.changes  2020-06-07 
21:38:01.433394097 +0200
+++ /work/SRC/openSUSE:Factory/.piper.new.2956/piper.changes2020-06-23 
21:06:22.910188695 +0200
@@ -1,0 +2,7 @@
+Mon Jun 22 20:59:19 UTC 2020 - Matthias Bach 
+
+- Update to version 0.5.1:
+  * Add missing man page
+  * Use SPDX 3 license identifiers in the code
+
+---

Old:

  piper-0.5.tar.xz

New:

  piper-0.5.1.tar.xz



Other differences:
--
++ piper.spec ++
--- /var/tmp/diff_new_pack.ojOT19/_old  2020-06-23 21:06:24.338193308 +0200
+++ /var/tmp/diff_new_pack.ojOT19/_new  2020-06-23 21:06:24.342193321 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   piper
-Version:0.5
+Version:0.5.1
 Release:0
 Summary:Configuration UI for gaming mice
 License:GPL-2.0-only
@@ -73,5 +73,6 @@
 %{_datadir}/metainfo/org.freedesktop.Piper.appdata.xml
 %{_datadir}/piper
 %{python3_sitelib}/*
+%doc %_mandir/man1/piper.1.gz
 
 %changelog

++ _service ++
--- /var/tmp/diff_new_pack.ojOT19/_old  2020-06-23 21:06:24.370193411 +0200
+++ /var/tmp/diff_new_pack.ojOT19/_new  2020-06-23 21:06:24.370193411 +0200
@@ -2,7 +2,7 @@
   
 https://github.com/libratbag/piper.git
 git
-0.5
+0.5.1
 @PARENT_TAG@
 enable
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.ojOT19/_old  2020-06-23 21:06:24.386193463 +0200
+++ /var/tmp/diff_new_pack.ojOT19/_new  2020-06-23 21:06:24.386193463 +0200
@@ -1,4 +1,4 @@
 
 
 https://github.com/libratbag/piper.git
-  4fab9ccdccbac296e866f9af1dd46a8979f192d1
\ No newline at end of file
+  61ac340e3e1add6811228422e991e160006ac0c9
\ No newline at end of file

++ piper-0.5.tar.xz -> piper-0.5.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/piper-0.5/.circleci/config.yml 
new/piper-0.5.1/.circleci/config.yml
--- old/piper-0.5/.circleci/config.yml  2020-05-25 11:23:36.0 +0200
+++ new/piper-0.5.1/.circleci/config.yml2020-06-22 10:07:53.0 
+0200
@@ -3,7 +3,7 @@
 piper_references:
   build_dependencies: _dependencies
 FEDORA_RPMS: meson gettext python3 pygobject3-devel python3-lxml 
libratbag-ratbagd python3-cairo python3-evdev python3-flake8 
gtk-update-icon-cache
-UBUNTU_DEBS: meson pkg-config gettext python3 python-gi-dev python3-lxml 
python3-evdev gir1.2-rsvg-2.0 python3-gi-cairo python3-flake8 ratbagd 
gtk-update-icon-cache
+UBUNTU_DEBS: meson pkg-config gettext python3 python-gi-dev python3-lxml 
python3-evdev gir1.2-rsvg-2.0 python3-gi-cairo flake8 ratbagd 
gtk-update-icon-cache
 ARCH_PKGS: meson libratbag  python-cairo python-evdev python-gobject 
python-lxml gtk-update-icon-cache
 
   default_settings: _settings
@@ -116,9 +116,7 @@
 - run:
 name: Install prerequisites
 command: |
-  apt-get update
-  apt-get install -y software-properties-common
-  add-apt-repository universe
+  export DEBIAN_FRONTEND=noninteractive
   apt-get update
   apt-get install -y tree git ${UBUNTU_DEBS}
 - checkout
@@ -140,15 +138,15 @@
 <<: *arch_settings
 docker:
   - image: archlinux
-  ubuntu_19_10:
+  ubuntu_20_04:
 <<: *ubuntu_settings
 docker:
-  - image: ubuntu:19.10
+  - image: ubuntu:20.04
 
 workflows:
   version: 2
   compile_and_test:
 jobs:
-  - ubuntu_19_10
+  - ubuntu_20_04
   - fedora_31
   - arch
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/piper-0.5/data/meson.build 
new/piper-0.5.1/data/meson.build
--- old/piper-0.5/data/meson.build  2020-05-25 11:23:36.0 +0200
+++ new/piper-0.5.1/data/meson.build2020-06-22 10:07:53.0 +0200
@@ -3,11 +3,23 @@
 desktopdir = join_paths(datadir, 'applications')
 icondir = join_paths(datadir, 'icons', 'hicolor', 'scalable', 'apps')
 metainfodir = join_paths(datadir, 'metainfo')
+man1dir = join_paths(mandir, 'man1')
 
 conf = configuration_data()
 conf.set('version', meson.project_version())
 conf.set('version_date', version_date)
 
+manpage = configure_file(
+ input: files('piper.1.in'),
+ output: 'piper.1',
+ configuration: conf,
+)
+
+install_man(
+ manpage,
+ install_dir: man1dir,
+)
+
 about_dialog = configure_file(input: 

commit piper for openSUSE:Factory

2020-06-07 Thread root
Hello community,

here is the log from the commit of package piper for openSUSE:Factory checked 
in at 2020-06-07 21:37:27

Comparing /work/SRC/openSUSE:Factory/piper (Old)
 and  /work/SRC/openSUSE:Factory/.piper.new.3606 (New)


Package is "piper"

Sun Jun  7 21:37:27 2020 rev:8 rq:812104 version:0.5

Changes:

--- /work/SRC/openSUSE:Factory/piper/piper.changes  2020-05-16 
22:27:34.829426581 +0200
+++ /work/SRC/openSUSE:Factory/.piper.new.3606/piper.changes2020-06-07 
21:38:01.433394097 +0200
@@ -1,0 +2,21 @@
+Sat Jun 06 18:37:24 UTC 2020 - ma...@marix.org
+
+- Update to version 0.5:
+  * New and Improved devices
++ Logitech MX Anywhere 2
++ Logitech G9x
++ Logitech G403 Hero
++ Logitech M720 Triathlon
++ Logitech G815
++ Logitech MX518
++ Logitech MX Master 3
+  * Updated translations
++ Croattian
++ Brazilian Protuguese
++ French
++ Swedish
++ Dutch
++ Spanish
++ German
+
+---

Old:

  piper-0.4.tar.xz

New:

  piper-0.5.tar.xz



Other differences:
--
++ piper.spec ++
--- /var/tmp/diff_new_pack.gwU3Ri/_old  2020-06-07 21:38:02.029395986 +0200
+++ /var/tmp/diff_new_pack.gwU3Ri/_new  2020-06-07 21:38:02.033395999 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   piper
-Version:0.4
+Version:0.5
 Release:0
 Summary:Configuration UI for gaming mice
 License:GPL-2.0-only

++ _service ++
--- /var/tmp/diff_new_pack.gwU3Ri/_old  2020-06-07 21:38:02.061396088 +0200
+++ /var/tmp/diff_new_pack.gwU3Ri/_new  2020-06-07 21:38:02.061396088 +0200
@@ -2,7 +2,7 @@
   
 https://github.com/libratbag/piper.git
 git
-0.4
+0.5
 @PARENT_TAG@
 enable
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.gwU3Ri/_old  2020-06-07 21:38:02.077396138 +0200
+++ /var/tmp/diff_new_pack.gwU3Ri/_new  2020-06-07 21:38:02.081396151 +0200
@@ -1,4 +1,4 @@
 
 
 https://github.com/libratbag/piper.git
-  0ab5c63ed404f619dcd6c380d8881d3f9eb3d406
\ No newline at end of file
+  4fab9ccdccbac296e866f9af1dd46a8979f192d1
\ No newline at end of file

++ piper-0.4.tar.xz -> piper-0.5.tar.xz ++
 4917 lines of diff (skipped)




commit piper for openSUSE:Factory

2020-05-16 Thread root
Hello community,

here is the log from the commit of package piper for openSUSE:Factory checked 
in at 2020-05-16 22:27:33

Comparing /work/SRC/openSUSE:Factory/piper (Old)
 and  /work/SRC/openSUSE:Factory/.piper.new.2738 (New)


Package is "piper"

Sat May 16 22:27:33 2020 rev:7 rq:805910 version:0.4

Changes:

--- /work/SRC/openSUSE:Factory/piper/piper.changes  2020-02-15 
22:25:53.939325254 +0100
+++ /work/SRC/openSUSE:Factory/.piper.new.2738/piper.changes2020-05-16 
22:27:34.829426581 +0200
@@ -1,0 +2,5 @@
+Wed May 13 10:15:58 UTC 2020 - Bjørn Lie 
+
+- Drop unneeded post(un) Requires update-desktop-files.
+
+---



Other differences:
--
++ piper.spec ++
--- /var/tmp/diff_new_pack.0zgNsO/_old  2020-05-16 22:27:35.457427870 +0200
+++ /var/tmp/diff_new_pack.0zgNsO/_new  2020-05-16 22:27:35.461427878 +0200
@@ -42,8 +42,6 @@
 Requires:   python3-gobject-Gdk
 Requires:   python3-lxml
 Requires:   ratbagd >= 0.10
-Requires(post): update-desktop-files
-Requires(postun): update-desktop-files
 
 %description
 Piper is a GTK+ application to configure gaming mice. It is a graphical 
frontent




commit piper for openSUSE:Factory

2020-02-15 Thread root
Hello community,

here is the log from the commit of package piper for openSUSE:Factory checked 
in at 2020-02-15 22:25:38

Comparing /work/SRC/openSUSE:Factory/piper (Old)
 and  /work/SRC/openSUSE:Factory/.piper.new.26092 (New)


Package is "piper"

Sat Feb 15 22:25:38 2020 rev:6 rq:774552 version:0.4

Changes:

--- /work/SRC/openSUSE:Factory/piper/piper.changes  2019-08-13 
13:14:47.653512225 +0200
+++ /work/SRC/openSUSE:Factory/.piper.new.26092/piper.changes   2020-02-15 
22:25:53.939325254 +0100
@@ -1,0 +2,16 @@
+Sat Feb 15 10:16:18 UTC 2020 - ma...@marix.org
+
+- Update to version 0.4:
+  * New and updated translations
+* Taiwanese Mandarin
+* Bulgarain
+* Italian
+* Polish
+* German
+* Croatian
+* Swedish
+* Brazilian Portuguese
+  * More gracefully handle permission when connecting to the daemon
+[boo#1150413]
+
+---

Old:

  piper-0.3.tar.xz

New:

  piper-0.4.tar.xz



Other differences:
--
++ piper.spec ++
--- /var/tmp/diff_new_pack.EVjIkd/_old  2020-02-15 22:25:54.655325641 +0100
+++ /var/tmp/diff_new_pack.EVjIkd/_new  2020-02-15 22:25:54.659325643 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package piper
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 # Copyright (c) 2019 Matthias Bach .
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,12 +18,12 @@
 
 
 Name:   piper
-Version:0.3
+Version:0.4
 Release:0
 Summary:Configuration UI for gaming mice
 License:GPL-2.0-only
 Group:  Hardware/Other
-Url:https://github.com/libratbag/piper
+URL:https://github.com/libratbag/piper
 Source: %name-%version.tar.xz
 Patch1: shebang-env.patch
 BuildArch:  noarch
@@ -31,10 +31,13 @@
 BuildRequires:  fdupes
 BuildRequires:  meson
 BuildRequires:  python-rpm-macros
+BuildRequires:  python3-cairo
+BuildRequires:  python3-evdev
 BuildRequires:  python3-gobject-devel
 BuildRequires:  python3-lxml
 BuildRequires:  update-desktop-files
 Requires:   python3-cairo
+Requires:   python3-evdev
 Requires:   python3-gobject
 Requires:   python3-gobject-Gdk
 Requires:   python3-lxml

++ _service ++
--- /var/tmp/diff_new_pack.EVjIkd/_old  2020-02-15 22:25:54.687325658 +0100
+++ /var/tmp/diff_new_pack.EVjIkd/_new  2020-02-15 22:25:54.691325661 +0100
@@ -2,7 +2,7 @@
   
 https://github.com/libratbag/piper.git
 git
-0.3
+0.4
 @PARENT_TAG@
 enable
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.EVjIkd/_old  2020-02-15 22:25:54.707325669 +0100
+++ /var/tmp/diff_new_pack.EVjIkd/_new  2020-02-15 22:25:54.707325669 +0100
@@ -1,4 +1,4 @@
 
 
 https://github.com/libratbag/piper.git
-  ca4a1e9477f8407ed577e1f0f9fe3ebde303580c
\ No newline at end of file
+  0ab5c63ed404f619dcd6c380d8881d3f9eb3d406
\ No newline at end of file

++ piper-0.3.tar.xz -> piper-0.4.tar.xz ++
 8783 lines of diff (skipped)




commit piper for openSUSE:Factory

2019-08-13 Thread root
Hello community,

here is the log from the commit of package piper for openSUSE:Factory checked 
in at 2019-08-13 13:14:46

Comparing /work/SRC/openSUSE:Factory/piper (Old)
 and  /work/SRC/openSUSE:Factory/.piper.new.9556 (New)


Package is "piper"

Tue Aug 13 13:14:46 2019 rev:5 rq:720732 version:0.3

Changes:

--- /work/SRC/openSUSE:Factory/piper/piper.changes  2019-04-24 
13:57:40.395977753 +0200
+++ /work/SRC/openSUSE:Factory/.piper.new.9556/piper.changes2019-08-13 
13:14:47.653512225 +0200
@@ -1,0 +2,10 @@
+Fri Aug 02 20:35:49 UTC 2019 - ma...@marix.org
+
+- Update to version 0.3:
+  * Switched back to "normal" version numbering
+  * Check the APIVersion field in ratbagd to ensure it is
+compatible.
+- Drop fix-resource-generation-script-shebang.patch as it has been
+  applied upstream.
+
+---

Old:

  fix-resource-generation-script-shebang.patch
  piper-0.2.904.tar.xz

New:

  piper-0.3.tar.xz



Other differences:
--
++ piper.spec ++
--- /var/tmp/diff_new_pack.s2RFAv/_old  2019-08-13 13:14:48.257512085 +0200
+++ /var/tmp/diff_new_pack.s2RFAv/_new  2019-08-13 13:14:48.257512085 +0200
@@ -13,12 +13,12 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   piper
-Version:0.2.904
+Version:0.3
 Release:0
 Summary:Configuration UI for gaming mice
 License:GPL-2.0-only
@@ -26,7 +26,6 @@
 Url:https://github.com/libratbag/piper
 Source: %name-%version.tar.xz
 Patch1: shebang-env.patch
-Patch2: fix-resource-generation-script-shebang.patch
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  fdupes
@@ -39,7 +38,7 @@
 Requires:   python3-gobject
 Requires:   python3-gobject-Gdk
 Requires:   python3-lxml
-Requires:   ratbagd >= 0.9.905
+Requires:   ratbagd >= 0.10
 Requires(post): update-desktop-files
 Requires(postun): update-desktop-files
 
@@ -50,7 +49,7 @@
 
 %prep
 %setup -q
-%patch -P 1 -P 2 -p1
+%patch -P 1 -p1
 
 %build
 %meson

++ _service ++
--- /var/tmp/diff_new_pack.s2RFAv/_old  2019-08-13 13:14:48.277512080 +0200
+++ /var/tmp/diff_new_pack.s2RFAv/_new  2019-08-13 13:14:48.277512080 +0200
@@ -2,7 +2,7 @@
   
 https://github.com/libratbag/piper.git
 git
-0.2.904
+0.3
 @PARENT_TAG@
 enable
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.s2RFAv/_old  2019-08-13 13:14:48.289512077 +0200
+++ /var/tmp/diff_new_pack.s2RFAv/_new  2019-08-13 13:14:48.293512076 +0200
@@ -1,4 +1,4 @@
 
 
 https://github.com/libratbag/piper.git
-  cbbf2c8ae5d1afebe914c1a3181f1f5613a8360f
\ No newline at end of file
+  ca4a1e9477f8407ed577e1f0f9fe3ebde303580c
\ No newline at end of file

++ piper-0.2.904.tar.xz -> piper-0.3.tar.xz ++
 1787 lines of diff (skipped)




commit piper for openSUSE:Factory

2019-04-24 Thread root
Hello community,

here is the log from the commit of package piper for openSUSE:Factory checked 
in at 2019-04-24 13:57:40

Comparing /work/SRC/openSUSE:Factory/piper (Old)
 and  /work/SRC/openSUSE:Factory/.piper.new.5536 (New)


Package is "piper"

Wed Apr 24 13:57:40 2019 rev:4 rq:697286 version:0.2.904

Changes:

--- /work/SRC/openSUSE:Factory/piper/piper.changes  2019-04-03 
10:50:44.781921043 +0200
+++ /work/SRC/openSUSE:Factory/.piper.new.5536/piper.changes2019-04-24 
13:57:40.395977753 +0200
@@ -1,0 +2,5 @@
+Tue Apr 23 19:19:11 UTC 2019 - Matthias Bach 
+
+- Add missing dependency to python3-cairo. (boo#1132961)
+
+---



Other differences:
--
++ piper.spec ++
--- /var/tmp/diff_new_pack.CyMkbw/_old  2019-04-24 13:57:40.895977439 +0200
+++ /var/tmp/diff_new_pack.CyMkbw/_new  2019-04-24 13:57:40.895977439 +0200
@@ -35,6 +35,7 @@
 BuildRequires:  python3-gobject-devel
 BuildRequires:  python3-lxml
 BuildRequires:  update-desktop-files
+Requires:   python3-cairo
 Requires:   python3-gobject
 Requires:   python3-gobject-Gdk
 Requires:   python3-lxml




commit piper for openSUSE:Factory

2019-04-03 Thread root
Hello community,

here is the log from the commit of package piper for openSUSE:Factory checked 
in at 2019-04-03 10:50:39

Comparing /work/SRC/openSUSE:Factory/piper (Old)
 and  /work/SRC/openSUSE:Factory/.piper.new.25356 (New)


Package is "piper"

Wed Apr  3 10:50:39 2019 rev:3 rq:690075 version:0.2.904

Changes:

--- /work/SRC/openSUSE:Factory/piper/piper.changes  2019-02-01 
11:46:47.156469882 +0100
+++ /work/SRC/openSUSE:Factory/.piper.new.25356/piper.changes   2019-04-03 
10:50:44.781921043 +0200
@@ -1,0 +2,12 @@
+Sat Mar 30 09:11:19 UTC 2019 - Matthias Bach 
+
+- Update to version 0.2.904:
+  * Adjusted to breaking DBus API changes of libratbag 0.9.905.
+  * Removed "Add Profile" button as the functionality was not
+implemented.
+  * SVG handling is now done wholly within Piper instead of relying
+on libratbag providing the SVGs.
+- Added patch fix-resource-generation-script-shebang.patch which
+  backports a fix for one of the build scripts.
+
+---

Old:

  piper-0.2.903.tar.xz

New:

  fix-resource-generation-script-shebang.patch
  piper-0.2.904.tar.xz



Other differences:
--
++ piper.spec ++
--- /var/tmp/diff_new_pack.TnmP67/_old  2019-04-03 10:50:45.357921197 +0200
+++ /var/tmp/diff_new_pack.TnmP67/_new  2019-04-03 10:50:45.357921197 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   piper
-Version:0.2.903
+Version:0.2.904
 Release:0
 Summary:Configuration UI for gaming mice
 License:GPL-2.0-only
@@ -26,17 +26,19 @@
 Url:https://github.com/libratbag/piper
 Source: %name-%version.tar.xz
 Patch1: shebang-env.patch
+Patch2: fix-resource-generation-script-shebang.patch
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  fdupes
 BuildRequires:  meson
 BuildRequires:  python-rpm-macros
 BuildRequires:  python3-gobject-devel
+BuildRequires:  python3-lxml
 BuildRequires:  update-desktop-files
 Requires:   python3-gobject
 Requires:   python3-gobject-Gdk
 Requires:   python3-lxml
-Requires:   ratbagd >= 0.9.904
+Requires:   ratbagd >= 0.9.905
 Requires(post): update-desktop-files
 Requires(postun): update-desktop-files
 
@@ -47,7 +49,7 @@
 
 %prep
 %setup -q
-%patch -P 1 -p1
+%patch -P 1 -P 2 -p1
 
 %build
 %meson

++ _service ++
--- /var/tmp/diff_new_pack.TnmP67/_old  2019-04-03 10:50:45.405921209 +0200
+++ /var/tmp/diff_new_pack.TnmP67/_new  2019-04-03 10:50:45.405921209 +0200
@@ -2,7 +2,7 @@
   
 https://github.com/libratbag/piper.git
 git
-0.2.903
+0.2.904
 @PARENT_TAG@
 enable
   

++ fix-resource-generation-script-shebang.patch ++
From: Matthias Bach 
Date: 2019-03-30 11:30:00 +0200
Subject: Fix the Shebang of the resource generation script
Upstream: merged

diff --git a/data/generate-piper-gresource.xml.py 
b/data/generate-piper-gresource.xml.py
index 19bc43d..af12cac 100644
--- a/data/generate-piper-gresource.xml.py
+++ b/data/generate-piper-gresource.xml.py
@@ -1,4 +1,4 @@
-#!/bin/python3
+#!/usr/bin/env python3
 
 import sys
 
++ piper-0.2.903.tar.xz -> piper-0.2.904.tar.xz ++
 12698 lines of diff (skipped)




commit piper for openSUSE:Factory

2019-02-01 Thread root
Hello community,

here is the log from the commit of package piper for openSUSE:Factory checked 
in at 2019-02-01 11:46:44

Comparing /work/SRC/openSUSE:Factory/piper (Old)
 and  /work/SRC/openSUSE:Factory/.piper.new.28833 (New)


Package is "piper"

Fri Feb  1 11:46:44 2019 rev:2 rq:670156 version:0.2.903

Changes:

--- /work/SRC/openSUSE:Factory/piper/piper.changes  2018-10-25 
09:10:53.714341756 +0200
+++ /work/SRC/openSUSE:Factory/.piper.new.28833/piper.changes   2019-02-01 
11:46:47.156469882 +0100
@@ -1,0 +2,10 @@
+Wed Jan 30 09:16:04 UTC 2019 - ma...@marix.org
+
+- Update to version 0.2.903:
+  * Updated Polish and German translations.
+  * Adjust to incompatible changes in ratbagd 0.9.904.
+  * Improved handling of error cases.
+  * Improved compatibility with HiDPI screens.
+  * Provide localized desktop files
+
+---

Old:

  piper-0.2.902.tar.xz

New:

  piper-0.2.903.tar.xz



Other differences:
--
++ piper.spec ++
--- /var/tmp/diff_new_pack.mLmDAh/_old  2019-02-01 11:46:47.672469352 +0100
+++ /var/tmp/diff_new_pack.mLmDAh/_new  2019-02-01 11:46:47.672469352 +0100
@@ -1,8 +1,8 @@
 #
 # spec file for package piper
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
-# Copyright (c) 2018 Matthias Bach .
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 Matthias Bach .
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,10 +18,10 @@
 
 
 Name:   piper
-Version:0.2.902
+Version:0.2.903
 Release:0
 Summary:Configuration UI for gaming mice
-License:GPL-2.0
+License:GPL-2.0-only
 Group:  Hardware/Other
 Url:https://github.com/libratbag/piper
 Source: %name-%version.tar.xz
@@ -33,10 +33,10 @@
 BuildRequires:  python-rpm-macros
 BuildRequires:  python3-gobject-devel
 BuildRequires:  update-desktop-files
-Requires:   ratbagd >= 0.9.903
 Requires:   python3-gobject
 Requires:   python3-gobject-Gdk
 Requires:   python3-lxml
+Requires:   ratbagd >= 0.9.904
 Requires(post): update-desktop-files
 Requires(postun): update-desktop-files
 

++ _service ++
--- /var/tmp/diff_new_pack.mLmDAh/_old  2019-02-01 11:46:47.692469331 +0100
+++ /var/tmp/diff_new_pack.mLmDAh/_new  2019-02-01 11:46:47.696469327 +0100
@@ -2,7 +2,7 @@
   
 https://github.com/libratbag/piper.git
 git
-0.2.902
+0.2.903
 @PARENT_TAG@
 enable
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.mLmDAh/_old  2019-02-01 11:46:47.708469315 +0100
+++ /var/tmp/diff_new_pack.mLmDAh/_new  2019-02-01 11:46:47.708469315 +0100
@@ -1,4 +1,4 @@
 
 
 https://github.com/libratbag/piper.git
-  674df8f2d5a020b13efc484a51caf405ddfc359d
\ No newline at end of file
+  cbbf2c8ae5d1afebe914c1a3181f1f5613a8360f
\ No newline at end of file

++ piper-0.2.902.tar.xz -> piper-0.2.903.tar.xz ++
 2702 lines of diff (skipped)