Hello community,

here is the log from the commit of package yast2-apparmor for 
openSUSE:Leap:15.2 checked in at 2020-02-21 23:49:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/yast2-apparmor (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.yast2-apparmor.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-apparmor"

Fri Feb 21 23:49:44 2020 rev:44 rq:777507 version:4.2.4

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/yast2-apparmor/yast2-apparmor.changes  
2020-02-04 17:54:37.204756536 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.yast2-apparmor.new.26092/yast2-apparmor.changes   
    2020-02-21 23:49:52.164628209 +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.Ya3IGs/_old  2020-02-21 23:49:52.480628837 +0100
+++ /var/tmp/diff_new_pack.Ya3IGs/_new  2020-02-21 23:49:52.484628844 +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


Reply via email to