Hello community, here is the log from the commit of package yast2-apparmor for openSUSE:Factory checked in at 2020-03-01 21:26:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-apparmor (Old) and /work/SRC/openSUSE:Factory/.yast2-apparmor.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-apparmor" Sun Mar 1 21:26:40 2020 rev:78 rq:774942 version:4.2.4 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-apparmor/yast2-apparmor.changes 2020-01-24 14:10:43.474400556 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-apparmor.new.26092/yast2-apparmor.changes 2020-03-01 21:26:49.988412549 +0100 @@ -1,0 +2,6 @@ +Mon Feb 17 16:01:12 UTC 2020 - Stefan Hundhammer <[email protected]> + +- Fixed user-visible messages (bsc#1084015) +- 4.2.4 + +------------------------------------------------------------------- Old: ---- yast2-apparmor-4.2.3.tar.bz2 New: ---- yast2-apparmor-4.2.4.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-apparmor.spec ++++++ --- /var/tmp/diff_new_pack.H1bFL7/_old 2020-03-01 21:26:51.064414735 +0100 +++ /var/tmp/diff_new_pack.H1bFL7/_new 2020-03-01 21:26:51.072414751 +0100 @@ -17,7 +17,7 @@ Name: yast2-apparmor -Version: 4.2.3 +Version: 4.2.4 Release: 0 Summary: YaST2 - Plugins for AppArmor Profile Management License: GPL-2.0-only ++++++ yast2-apparmor-4.2.3.tar.bz2 -> yast2-apparmor-4.2.4.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-apparmor-4.2.3/package/yast2-apparmor.changes new/yast2-apparmor-4.2.4/package/yast2-apparmor.changes --- old/yast2-apparmor-4.2.3/package/yast2-apparmor.changes 2020-01-23 14:15:02.000000000 +0100 +++ new/yast2-apparmor-4.2.4/package/yast2-apparmor.changes 2020-02-17 17:22:13.000000000 +0100 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Mon Feb 17 16:01:12 UTC 2020 - Stefan Hundhammer <[email protected]> + +- Fixed user-visible messages (bsc#1084015) +- 4.2.4 + +------------------------------------------------------------------- Thu Jan 23 12:41:07 UTC 2020 - Steffen Winterfeldt <[email protected]> - don't use /bin/systemctl compat symlink (bsc#1160890) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-apparmor-4.2.3/package/yast2-apparmor.spec new/yast2-apparmor-4.2.4/package/yast2-apparmor.spec --- old/yast2-apparmor-4.2.3/package/yast2-apparmor.spec 2020-01-23 14:15:02.000000000 +0100 +++ new/yast2-apparmor-4.2.4/package/yast2-apparmor.spec 2020-02-17 17:22:13.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-apparmor -Version: 4.2.3 +Version: 4.2.4 Release: 0 Summary: YaST2 - Plugins for AppArmor Profile Management Url: https://github.com/yast/yast-apparmor diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-apparmor-4.2.3/src/include/apparmor/profile_dialogs.rb new/yast2-apparmor-4.2.4/src/include/apparmor/profile_dialogs.rb --- old/yast2-apparmor-4.2.3/src/include/apparmor/profile_dialogs.rb 2020-01-23 14:15:02.000000000 +0100 +++ new/yast2-apparmor-4.2.4/src/include/apparmor/profile_dialogs.rb 2020-02-17 17:22:13.000000000 +0100 @@ -1477,19 +1477,11 @@ next end # TODO ELSE POPUP NO ENTRY SELECTED ERROR elsif id == :delete - if Popup.YesNoHeadline( - _("Delete profile confirmation"), - Ops.add( - Ops.add( - _("Are you sure you want to delete the profile "), - profilename - ), - _( - " ?\nAfter this operation the AppArmor module will reload the profile set." - ) - ) - ) - Builtins.y2milestone(Ops.add("Deleted ", profilename)) + # Translators: %1 is the name of the profile. + popup_msg = Builtins.sformat(_("Are you sure you want to delete the profile\n\"%1\"?"), profilename ) + popup_msg += "\n" + _("After this operation the AppArmor module will reload the profile set.") + if Popup.YesNoHeadline(_("Delete profile confirmation"), popup_msg) + Builtins.y2milestone("Deleted %1", profilename) result = SCR.Write(path(".apparmor_profiles.delete"), profilename) result2 = SCR.Execute(path(".target.bash"), "/sbin/apparmor_parser -r /etc/apparmor.d") end @@ -1498,7 +1490,8 @@ end if id == :abort || id == :cancel break - # This module break common work-flow that changes are commited at the end, so react same for break and also for next + # This module breaks the common YaST workflow rule that changes are + # commited at the end, so react the same way for back and also for next elsif id == :back || id == :next break else
