Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package yast2-ntp-client for
openSUSE:Factory checked in at 2026-08-26 19:51:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-ntp-client (Old)
and /work/SRC/openSUSE:Factory/.yast2-ntp-client.new.1258 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-ntp-client"
Wed Aug 26 19:51:15 2026 rev:136 rq:1373553 version:5.0.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-ntp-client/yast2-ntp-client.changes
2026-03-27 06:53:31.631920258 +0100
+++
/work/SRC/openSUSE:Factory/.yast2-ntp-client.new.1258/yast2-ntp-client.changes
2026-08-26 19:51:46.954628886 +0200
@@ -1,0 +2,8 @@
+Fri Aug 21 16:34:07 UTC 2026 - Michal Filka <[email protected]>
+
+- bsc#1274746
+ - fix loading 'server' entries when there is only one of them
+ - fixed removing of ntp source
+- 5.0.2
+
+-------------------------------------------------------------------
Old:
----
yast2-ntp-client-5.0.1.tar.bz2
New:
----
yast2-ntp-client-5.0.2.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-ntp-client.spec ++++++
--- /var/tmp/diff_new_pack.4XLnyz/_old 2026-08-26 19:51:48.086668867 +0200
+++ /var/tmp/diff_new_pack.4XLnyz/_new 2026-08-26 19:51:48.093669114 +0200
@@ -17,7 +17,7 @@
Name: yast2-ntp-client
-Version: 5.0.1
+Version: 5.0.2
Release: 0
Summary: YaST2 - NTP Client Configuration
License: GPL-2.0-or-later
++++++ yast2-ntp-client-5.0.1.tar.bz2 -> yast2-ntp-client-5.0.2.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-ntp-client-5.0.1/package/yast2-ntp-client.changes
new/yast2-ntp-client-5.0.2/package/yast2-ntp-client.changes
--- old/yast2-ntp-client-5.0.1/package/yast2-ntp-client.changes 2026-03-25
18:35:00.000000000 +0100
+++ new/yast2-ntp-client-5.0.2/package/yast2-ntp-client.changes 2026-08-25
11:21:34.000000000 +0200
@@ -1,4 +1,12 @@
-------------------------------------------------------------------
+Fri Aug 21 16:34:07 UTC 2026 - Michal Filka <[email protected]>
+
+- bsc#1274746
+ - fix loading 'server' entries when there is only one of them
+ - fixed removing of ntp source
+- 5.0.2
+
+-------------------------------------------------------------------
Tue Mar 10 09:00:28 UTC 2026 - Michal Filka <[email protected]>
- jsc#PED-14507
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-ntp-client-5.0.1/package/yast2-ntp-client.spec
new/yast2-ntp-client-5.0.2/package/yast2-ntp-client.spec
--- old/yast2-ntp-client-5.0.1/package/yast2-ntp-client.spec 2026-03-25
18:35:00.000000000 +0100
+++ new/yast2-ntp-client-5.0.2/package/yast2-ntp-client.spec 2026-08-25
11:21:34.000000000 +0200
@@ -17,7 +17,7 @@
Name: yast2-ntp-client
-Version: 5.0.1
+Version: 5.0.2
Release: 0
Summary: YaST2 - NTP Client Configuration
License: GPL-2.0-or-later
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-ntp-client-5.0.1/src/clients/ntp-client_proposal.rb
new/yast2-ntp-client-5.0.2/src/clients/ntp-client_proposal.rb
--- old/yast2-ntp-client-5.0.1/src/clients/ntp-client_proposal.rb
2026-03-25 18:35:00.000000000 +0100
+++ new/yast2-ntp-client-5.0.2/src/clients/ntp-client_proposal.rb
2026-08-25 11:21:34.000000000 +0200
@@ -499,9 +499,13 @@
@sources_table.sources = @sources_table.sources.merge(ntp_source)
when @source_remove_button.widget_id
ntp_source_address = @sources_table.value
- ntp_source_type = @source_type_combo.value
+ ntp_source = @sources_table.items.find { |n| n.first ==
ntp_source_address }
- NtpClient.ntp_conf.send("delete_#{ntp_source_type}".downcase,
ntp_source_address)
+ if ntp_source
+ ntp_source_type = ntp_source[1].downcase
+
+ NtpClient.ntp_conf.send("delete_#{ntp_source_type}".downcase,
ntp_source_address)
+ end
@sources_table.remove_item(ntp_source_address)
when :ntp_configure
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-ntp-client-5.0.1/src/lib/cfa/chrony_conf.rb
new/yast2-ntp-client-5.0.2/src/lib/cfa/chrony_conf.rb
--- old/yast2-ntp-client-5.0.1/src/lib/cfa/chrony_conf.rb 2026-03-25
18:35:00.000000000 +0100
+++ new/yast2-ntp-client-5.0.2/src/lib/cfa/chrony_conf.rb 2026-08-25
11:21:34.000000000 +0200
@@ -115,6 +115,7 @@
private
COLLECTION_KEYS = [
+ "server",
"pool",
"refclock"
].freeze