Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package sca-patterns-sle11 for openSUSE:Factory checked in at 2021-06-04 00:33:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sca-patterns-sle11 (Old) and /work/SRC/openSUSE:Factory/.sca-patterns-sle11.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sca-patterns-sle11" Fri Jun 4 00:33:27 2021 rev:13 rq:897018 version:1.3.3 Changes: -------- --- /work/SRC/openSUSE:Factory/sca-patterns-sle11/sca-patterns-sle11.changes 2021-06-01 10:38:19.732901625 +0200 +++ /work/SRC/openSUSE:Factory/.sca-patterns-sle11.new.1898/sca-patterns-sle11.changes 2021-06-04 00:33:36.440893113 +0200 @@ -1,0 +2,7 @@ +Wed Jun 2 22:53:27 UTC 2021 - Jason Record <[email protected]> + +- Changes in version 1.3.3 + - New security announcement patterns (5) + + May 2021 (5) for SUSE-SU-2021:14729-1 SUSE-SU-2021:14724-1 SUSE-SU-2021:14738-1 SUSE-SU-2021:14728-1 SUSE-SU-2021:14714-1 + +------------------------------------------------------------------- Old: ---- sca-patterns-sle11-1.3.2.tar.gz New: ---- sca-patterns-sle11-1.3.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sca-patterns-sle11.spec ++++++ --- /var/tmp/diff_new_pack.09Gc58/_old 2021-06-04 00:33:36.888893459 +0200 +++ /var/tmp/diff_new_pack.09Gc58/_new 2021-06-04 00:33:36.892893463 +0200 @@ -25,7 +25,7 @@ %define category SLE Name: sca-patterns-sle11 -Version: 1.3.2 +Version: 1.3.3 Release: 0 Summary: Supportconfig Analysis Patterns for SLE11 License: GPL-2.0-only ++++++ sca-patterns-sle11-1.3.2.tar.gz -> sca-patterns-sle11-1.3.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.2/patterns/SLE/sle11sp4/bind_SUSE-SU-2021_14714-1_11.4.ltss.py new/sca-patterns-sle11-1.3.3/patterns/SLE/sle11sp4/bind_SUSE-SU-2021_14714-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.2/patterns/SLE/sle11sp4/bind_SUSE-SU-2021_14714-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.3/patterns/SLE/sle11sp4/bind_SUSE-SU-2021_14714-1_11.4.ltss.py 2021-06-01 18:48:18.620212162 +0200 @@ -0,0 +1,67 @@ +#!/usr/bin/python +# +# Title: Important Security Announcement for bind SUSE-SU-2021:14714-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Jun 01 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "bind" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2021-May/008726.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'bind' +MAIN = '' +SEVERITY = 'Important' +TAG = 'SUSE-SU-2021:14714-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'bind': '9.9.6P1-0.51.26.1', + 'bind-chrootenv': '9.9.6P1-0.51.26.1', + 'bind-doc': '9.9.6P1-0.51.26.1', + 'bind-libs': '9.9.6P1-0.51.26.1', + 'bind-libs-32bit': '9.9.6P1-0.51.26.1', + 'bind-utils': '9.9.6P1-0.51.26.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.2/patterns/SLE/sle11sp4/djvulibre_SUSE-SU-2021_14728-1_11.4.ltss.py new/sca-patterns-sle11-1.3.3/patterns/SLE/sle11sp4/djvulibre_SUSE-SU-2021_14728-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.2/patterns/SLE/sle11sp4/djvulibre_SUSE-SU-2021_14728-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.3/patterns/SLE/sle11sp4/djvulibre_SUSE-SU-2021_14728-1_11.4.ltss.py 2021-06-01 18:49:29.346391893 +0200 @@ -0,0 +1,62 @@ +#!/usr/bin/python +# +# Title: Important Security Announcement for djvulibre SUSE-SU-2021:14728-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Jun 01 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "djvulibre" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2021-May/008785.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'djvulibre' +MAIN = '' +SEVERITY = 'Important' +TAG = 'SUSE-SU-2021:14728-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'libdjvulibre21': '3.5.21-3.9.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.2/patterns/SLE/sle11sp4/djvulibre_SUSE-SU-2021_14738-1_11.4.ltss.py new/sca-patterns-sle11-1.3.3/patterns/SLE/sle11sp4/djvulibre_SUSE-SU-2021_14738-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.2/patterns/SLE/sle11sp4/djvulibre_SUSE-SU-2021_14738-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.3/patterns/SLE/sle11sp4/djvulibre_SUSE-SU-2021_14738-1_11.4.ltss.py 2021-06-01 18:50:35.936671273 +0200 @@ -0,0 +1,62 @@ +#!/usr/bin/python +# +# Title: Important Security Announcement for djvulibre SUSE-SU-2021:14738-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Jun 01 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "djvulibre" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2021-May/008890.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'djvulibre' +MAIN = '' +SEVERITY = 'Important' +TAG = 'SUSE-SU-2021:14738-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'libdjvulibre21': '3.5.21-3.12.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.2/patterns/SLE/sle11sp4/kernel_SUSE-SU-2021_14724-1_11.4.ltss.py new/sca-patterns-sle11-1.3.3/patterns/SLE/sle11sp4/kernel_SUSE-SU-2021_14724-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.2/patterns/SLE/sle11sp4/kernel_SUSE-SU-2021_14724-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.3/patterns/SLE/sle11sp4/kernel_SUSE-SU-2021_14724-1_11.4.ltss.py 2021-06-01 18:48:48.179452158 +0200 @@ -0,0 +1,85 @@ +#!/usr/bin/python +# +# Title: Important Security Announcement for Kernel SUSE-SU-2021:14724-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Jun 01 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "Kernel" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2021-May/008759.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'Kernel' +MAIN = '' +SEVERITY = 'Important' +TAG = 'SUSE-SU-2021:14724-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'kernel-bigmem': '3.0.101-108.126.1', + 'kernel-bigmem-base': '3.0.101-108.126.1', + 'kernel-bigmem-devel': '3.0.101-108.126.1', + 'kernel-default': '3.0.101-108.126.1', + 'kernel-default-base': '3.0.101-108.126.1', + 'kernel-default-devel': '3.0.101-108.126.1', + 'kernel-default-man': '3.0.101-108.126.1', + 'kernel-ec2': '3.0.101-108.126.1', + 'kernel-ec2-base': '3.0.101-108.126.1', + 'kernel-ec2-devel': '3.0.101-108.126.1', + 'kernel-pae': '3.0.101-108.126.1', + 'kernel-pae-base': '3.0.101-108.126.1', + 'kernel-pae-devel': '3.0.101-108.126.1', + 'kernel-ppc64': '3.0.101-108.126.1', + 'kernel-ppc64-base': '3.0.101-108.126.1', + 'kernel-ppc64-devel': '3.0.101-108.126.1', + 'kernel-source': '3.0.101-108.126.1', + 'kernel-syms': '3.0.101-108.126.1', + 'kernel-trace': '3.0.101-108.126.1', + 'kernel-trace-base': '3.0.101-108.126.1', + 'kernel-trace-devel': '3.0.101-108.126.1', + 'kernel-xen': '3.0.101-108.126.1', + 'kernel-xen-base': '3.0.101-108.126.1', + 'kernel-xen-devel': '3.0.101-108.126.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.2/patterns/SLE/sle11sp4/libxml2_SUSE-SU-2021_14729-1_11.4.ltss.py new/sca-patterns-sle11-1.3.3/patterns/SLE/sle11sp4/libxml2_SUSE-SU-2021_14729-1_11.4.ltss.py --- old/sca-patterns-sle11-1.3.2/patterns/SLE/sle11sp4/libxml2_SUSE-SU-2021_14729-1_11.4.ltss.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sca-patterns-sle11-1.3.3/patterns/SLE/sle11sp4/libxml2_SUSE-SU-2021_14729-1_11.4.ltss.py 2021-06-01 18:49:46.089960088 +0200 @@ -0,0 +1,65 @@ +#!/usr/bin/python +# +# Title: Important Security Announcement for libxml2 SUSE-SU-2021:14729-1 +# Description: Security fixes for SUSE Linux Enterprise 11 SP4 LTSS +# Source: Security Announcement Parser v1.6.1 +# Modified: 2021 Jun 01 +# +############################################################################## +# Copyright (C) 2021 SUSE LLC +############################################################################## +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# Authors/Contributors: +# Jason Record <[email protected]> +# +############################################################################## + +import os +import Core +import SUSE + +META_CLASS = "Security" +META_CATEGORY = "SLE" +META_COMPONENT = "libxml2" +PATTERN_ID = os.path.basename(__file__) +PRIMARY_LINK = "META_LINK_Security" +OVERALL = Core.TEMP +OVERALL_INFO = "NOT SET" +OTHER_LINKS = "META_LINK_Security=https://lists.suse.com/pipermail/sle-security-updates/2021-May/008797.html" +Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, OVERALL, OVERALL_INFO, OTHER_LINKS) + +LTSS = True +NAME = 'libxml2' +MAIN = '' +SEVERITY = 'Important' +TAG = 'SUSE-SU-2021:14729-1' +PACKAGES = {} +SERVER = SUSE.getHostInfo() + +if ( SERVER['DistroVersion'] == 11): + if ( SERVER['DistroPatchLevel'] == 4 ): + PACKAGES = { + 'libxml2': '2.7.6-0.77.36.1', + 'libxml2-32bit': '2.7.6-0.77.36.1', + 'libxml2-doc': '2.7.6-0.77.36.1', + 'libxml2-python': '2.7.6-0.77.36.1', + } + SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS, SEVERITY, TAG, PACKAGES) + else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the service pack scope") +else: + Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security Announcement: Outside the distribution scope") +Core.printPatternResults() +
