Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rebootmgr for openSUSE:Factory checked in at 2025-07-23 16:32:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rebootmgr (Old) and /work/SRC/openSUSE:Factory/.rebootmgr.new.8875 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rebootmgr" Wed Jul 23 16:32:46 2025 rev:35 rq:1295047 version:3.3+git20250722.adf0149 Changes: -------- --- /work/SRC/openSUSE:Factory/rebootmgr/rebootmgr.changes 2025-05-13 20:12:53.697535899 +0200 +++ /work/SRC/openSUSE:Factory/.rebootmgr.new.8875/rebootmgr.changes 2025-07-23 16:33:42.604355402 +0200 @@ -1,0 +2,6 @@ +Tue Jul 22 09:56:03 UTC 2025 - Thorsten Kukuk <ku...@suse.com> + +- Update to version 3.3+git20250722.adf0149: + * rebootmgrctl: don't exit with negativ error codes + +------------------------------------------------------------------- Old: ---- rebootmgr-3.3+git20250512.b6e4e84.tar.xz New: ---- rebootmgr-3.3+git20250722.adf0149.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rebootmgr.spec ++++++ --- /var/tmp/diff_new_pack.16U67y/_old 2025-07-23 16:33:43.280383677 +0200 +++ /var/tmp/diff_new_pack.16U67y/_new 2025-07-23 16:33:43.284383844 +0200 @@ -17,7 +17,7 @@ Name: rebootmgr -Version: 3.3+git20250512.b6e4e84 +Version: 3.3+git20250722.adf0149 Release: 0 Summary: Automatic controlled reboot during a maintenance window License: GPL-2.0-only AND LGPL-2.1-or-later ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.16U67y/_old 2025-07-23 16:33:43.324385518 +0200 +++ /var/tmp/diff_new_pack.16U67y/_new 2025-07-23 16:33:43.328385685 +0200 @@ -1,7 +1,7 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/SUSE/rebootmgr.git</param> - <param name="changesrevision">b6e4e8410d17c8e220f0dd586a283d38a6cff007</param></service> + <param name="changesrevision">adf0149fa94565346eab1c7a530f83ba6d757458</param></service> </servicedata> (No newline at EOF) ++++++ rebootmgr-3.3+git20250512.b6e4e84.tar.xz -> rebootmgr-3.3+git20250722.adf0149.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rebootmgr-3.3+git20250512.b6e4e84/src/rebootmgrctl.c new/rebootmgr-3.3+git20250722.adf0149/src/rebootmgrctl.c --- old/rebootmgr-3.3+git20250512.b6e4e84/src/rebootmgrctl.c 2025-05-12 13:14:58.000000000 +0200 +++ new/rebootmgr-3.3+git20250722.adf0149/src/rebootmgrctl.c 2025-07-22 11:52:41.000000000 +0200 @@ -954,5 +954,9 @@ else usage(1); + /* make retval positive, some functions return negative errno numbers */ + if (retval < 0) + retval = -retval; + return retval; }