Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package setroubleshoot-plugins for
openSUSE:Factory checked in at 2026-08-09 21:31:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/setroubleshoot-plugins (Old)
and /work/SRC/openSUSE:Factory/.setroubleshoot-plugins.new.16738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "setroubleshoot-plugins"
Sun Aug 9 21:31:56 2026 rev:6 rq:1369991 version:3.3.15
Changes:
--------
---
/work/SRC/openSUSE:Factory/setroubleshoot-plugins/setroubleshoot-plugins.changes
2025-04-20 20:09:46.009645680 +0200
+++
/work/SRC/openSUSE:Factory/.setroubleshoot-plugins.new.16738/setroubleshoot-plugins.changes
2026-08-09 21:32:43.348831699 +0200
@@ -1,0 +2,6 @@
+Mon Jul 27 08:36:12 UTC 2026 - Zdenek Kubala <[email protected]>
+
+- remove residual dependency on python-six by remove-python-six.patch
+ (fixes boo#1261289)
+
+-------------------------------------------------------------------
New:
----
remove-python-six.patch
----------(New B)----------
New:
- remove residual dependency on python-six by remove-python-six.patch
(fixes boo#1261289)
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ setroubleshoot-plugins.spec ++++++
--- /var/tmp/diff_new_pack.i3l61L/_old 2026-08-09 21:32:43.972853044 +0200
+++ /var/tmp/diff_new_pack.i3l61L/_new 2026-08-09 21:32:43.976853180 +0200
@@ -1,7 +1,7 @@
#
# spec file for package setroubleshoot-plugins
#
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -26,6 +26,7 @@
# download url has different package name, add "plugins-" before last
occurence of name macro
#source
https://gitlab.com/setroubleshoot/plugins/-/archive/setroubleshoot-plugins-3.3.15/plugins-setroubleshoot-plugins-3.3.15.tar.gz
Source: setroubleshoot-plugins-3.3.15.tar.gz
+Patch0: remove-python-six.patch
BuildRequires: fdupes
BuildRequires: gettext
BuildRequires: intltool
++++++ remove-python-six.patch ++++++
index be2c404..248649f 100644
--- a/src/catchall_boolean.py
+++ b/src/catchall_boolean.py
@@ -21,7 +21,6 @@
import gettext
import os
-import six
translation=gettext.translation('setroubleshoot-plugins', fallback=True)
_=translation.gettext
@@ -58,8 +57,8 @@ class plugin(Plugin):
def get_if_text(self, avc, args):
txt=sepolicy.boolean_desc(args[0])
- if not isinstance(txt, six.text_type):
- txt=six.text_type(txt, encoding="utf8")
+ if not isinstance(txt, str):
+ txt=txt.decode("utf8")
return _("If you want to %s") % (txt[0].lower() + txt[1:])
def get_do_text(self, avc, args):