Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package servicetray for openSUSE:Factory checked in at 2026-01-23 17:32:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/servicetray (Old) and /work/SRC/openSUSE:Factory/.servicetray.new.1928 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "servicetray" Fri Jan 23 17:32:03 2026 rev:2 rq:1328719 version:0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/servicetray/servicetray.changes 2025-12-04 11:27:36.064347984 +0100 +++ /work/SRC/openSUSE:Factory/.servicetray.new.1928/servicetray.changes 2026-01-23 17:32:26.972418864 +0100 @@ -1,0 +2,10 @@ +Thu Jan 22 15:16:27 UTC 2026 - Dominik Heidler <[email protected]> + +- Version 0.2: Gracefully handle config with no services declared + +------------------------------------------------------------------- +Thu Jan 22 15:02:40 UTC 2026 - Dominik Heidler <[email protected]> + +- Add missing dependency python3-toml + +------------------------------------------------------------------- Old: ---- servicetray-0.1.tar.gz New: ---- servicetray-0.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ servicetray.spec ++++++ --- /var/tmp/diff_new_pack.IrKLT7/_old 2026-01-23 17:32:27.908457532 +0100 +++ /var/tmp/diff_new_pack.IrKLT7/_new 2026-01-23 17:32:27.912457698 +0100 @@ -19,7 +19,7 @@ %define use_python python3 %define pythons %{use_python} Name: servicetray -Version: 0.1 +Version: 0.2 Release: 0 Summary: Tool to start and stop systemd services as a normal user via a tray applet License: GPL-3.0-or-later @@ -30,6 +30,7 @@ BuildRequires: sudo Requires: python3 Requires: python3-pyside6 +Requires: python3-toml Requires: sudo Requires: systemd BuildArch: noarch ++++++ servicetray-0.1.tar.gz -> servicetray-0.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/servicetray/servicetray_systemctl.py new/servicetray/servicetray_systemctl.py --- old/servicetray/servicetray_systemctl.py 2025-12-02 18:05:11.000000000 +0100 +++ new/servicetray/servicetray_systemctl.py 2026-01-22 16:14:10.000000000 +0100 @@ -8,7 +8,7 @@ # only allow operating on configured services of type system services = [] -for service in config['services']: +for service in config.get('services', []): if service.get('type', 'system') == 'system': services.append(service['name'])
