Hello community, here is the log from the commit of package sca-server-report for openSUSE:Factory checked in at 2018-01-23 13:53:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sca-server-report (Old) and /work/SRC/openSUSE:Factory/.sca-server-report.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sca-server-report" Tue Jan 23 13:53:21 2018 rev:3 rq:568430 version:1.0 Changes: -------- --- /work/SRC/openSUSE:Factory/sca-server-report/sca-server-report.changes 2018-01-22 16:20:29.208410094 +0100 +++ /work/SRC/openSUSE:Factory/.sca-server-report.new/sca-server-report.changes 2018-01-23 13:53:22.276543801 +0100 @@ -1,0 +2,5 @@ +Mon Jan 22 21:58:14 UTC 2018 - [email protected] + +- Fixed pattern runtime error divide by zero (bsc#1077110) + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sca-server-report-1.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-server-report-1.0/bin/scatool.py new/sca-server-report-1.0/bin/scatool.py --- old/sca-server-report-1.0/bin/scatool.py 2018-01-02 17:48:35.599549837 +0100 +++ new/sca-server-report-1.0/bin/scatool.py 2018-01-22 22:57:43.670668302 +0100 @@ -1,9 +1,9 @@ ############################################################################## # scatool.py - Supportconfig Analysis (SCA) Tool -# Copyright (c) 2014-2017 SUSE LLC +# Copyright (c) 2014-2018 SUSE LLC # # Description: Runs and analyzes local or remote supportconfigs -# Modified: 2017 Dec 19 +# Modified: 2018 Jan 22 ############################################################################## # @@ -24,7 +24,7 @@ # Jason Record ([email protected]) # ############################################################################## -SVER = '1.0.8-20.dev3' +SVER = '1.0.8-21' ########################################################################################## # Python Imports @@ -1112,6 +1112,8 @@ patternCount = 0 patternStats['Total'] = len(validPatterns) patternInterval = int(patternStats['Total'] / progressBarWidth) + if( patternInterval < progressBarWidth ): + patternInterval = 1 print "Total Patterns to Apply: " + str(patternStats['Total']) if verboseMode: @@ -1142,8 +1144,8 @@ progressCount += 1 sys.stdout.write("=") sys.stdout.flush() - except Exception: - patternErrorList.append(patternFile + " -- Pattern runtime error") + except Exception as e: + patternErrorList.append(patternFile + " -- Pattern runtime error: " + str(e)) if verboseMode: print " ERROR: " + str(patternCount) + " of " + str(patternStats['Total']) + ": " + patternErrorList[-1] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-server-report-1.0/spec/sca-server-report.changes new/sca-server-report-1.0/spec/sca-server-report.changes --- old/sca-server-report-1.0/spec/sca-server-report.changes 2018-01-05 20:03:41.307345703 +0100 +++ new/sca-server-report-1.0/spec/sca-server-report.changes 2018-01-22 22:58:46.696881310 +0100 @@ -1,4 +1,9 @@ ------------------------------------------------------------------- +Mon Jan 22 21:58:14 UTC 2018 - [email protected] + +- Fixed pattern runtime error divide by zero (bsc#1077110) + +------------------------------------------------------------------- Fri Jan 5 19:03:08 UTC 2018 - [email protected] - Added SLE15 detection (bsc#1073573)
