Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package cppcheck for openSUSE:Factory 
checked in at 2021-12-18 21:52:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cppcheck (Old)
 and      /work/SRC/openSUSE:Factory/.cppcheck.new.2520 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "cppcheck"

Sat Dec 18 21:52:48 2021 rev:21 rq:941431 version:2.6.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/cppcheck/cppcheck.changes        2021-12-12 
00:57:59.918600408 +0100
+++ /work/SRC/openSUSE:Factory/.cppcheck.new.2520/cppcheck.changes      
2021-12-18 21:52:50.313968742 +0100
@@ -1,0 +2,6 @@
+Sat Dec 18 08:34:22 UTC 2021 - Dirk M??ller <dmuel...@suse.com>
+
+- update to 2.6.3:
+  * Fix execution of executable addons from GUI 
+
+-------------------------------------------------------------------

Old:
----
  cppcheck-2.6.2.tar.gz

New:
----
  cppcheck-2.6.3.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ cppcheck.spec ++++++
--- /var/tmp/diff_new_pack.T65TkN/_old  2021-12-18 21:52:50.777969075 +0100
+++ /var/tmp/diff_new_pack.T65TkN/_new  2021-12-18 21:52:50.781969078 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           cppcheck
-Version:        2.6.2
+Version:        2.6.3
 Release:        0
 Summary:        A tool for static C/C++ code analysis
 License:        GPL-3.0-or-later

++++++ cppcheck-2.6.2.tar.gz -> cppcheck-2.6.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cppcheck-2.6.2/cmake/versions.cmake 
new/cppcheck-2.6.3/cmake/versions.cmake
--- old/cppcheck-2.6.2/cmake/versions.cmake     2021-11-21 14:44:09.000000000 
+0100
+++ new/cppcheck-2.6.3/cmake/versions.cmake     2021-12-15 19:25:42.000000000 
+0100
@@ -1,5 +1,5 @@
 # Version for libraries CPP
-SET(VERSION "2.6.2")
+SET(VERSION "2.6.3")
 STRING(REGEX MATCHALL "[0-9]" VERSION_PARTS "${VERSION}")
 LIST(GET VERSION_PARTS 0 VERSION_MAJOR)
 LIST(GET VERSION_PARTS 1 VERSION_MINOR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cppcheck-2.6.2/gui/mainwindow.cpp 
new/cppcheck-2.6.3/gui/mainwindow.cpp
--- old/cppcheck-2.6.2/gui/mainwindow.cpp       2021-11-21 14:44:09.000000000 
+0100
+++ new/cppcheck-2.6.3/gui/mainwindow.cpp       2021-12-15 19:25:42.000000000 
+0100
@@ -854,6 +854,9 @@
 
     Settings result;
 
+    const QString applicationFilePath = 
QCoreApplication::applicationFilePath();
+    result.exename = applicationFilePath.toStdString();
+
     const bool std = tryLoadLibrary(&result.library, "std.cfg");
     bool posix = true;
     if (result.posix())
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cppcheck-2.6.2/lib/cppcheck.cpp 
new/cppcheck-2.6.3/lib/cppcheck.cpp
--- old/cppcheck-2.6.2/lib/cppcheck.cpp 2021-11-21 14:44:09.000000000 +0100
+++ new/cppcheck-2.6.3/lib/cppcheck.cpp 2021-12-15 19:25:42.000000000 +0100
@@ -131,7 +131,7 @@
             if (obj.count("executable")) {
                 if (!obj["executable"].is<std::string>())
                     return "Loading " + fileName + " failed. executable must 
be a string.";
-                executable = getFullPath(obj["executable"].get<std::string>(), 
exename);
+                executable = getFullPath(obj["executable"].get<std::string>(), 
fileName);
                 return "";
             }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cppcheck-2.6.2/lib/version.h 
new/cppcheck-2.6.3/lib/version.h
--- old/cppcheck-2.6.2/lib/version.h    2021-11-21 14:44:09.000000000 +0100
+++ new/cppcheck-2.6.3/lib/version.h    2021-12-15 19:25:42.000000000 +0100
@@ -8,7 +8,7 @@
 #define STRINGIFY(x) STRING(x)
 #define STRING(VER) #VER
 #if CPPCHECK_MINOR == CPPCHECK_DEVMINOR
-#define CPPCHECK_VERSION_STRING STRINGIFY(CPPCHECK_MAJOR) "." 
STRINGIFY(CPPCHECK_DEVMINOR) ".2"
+#define CPPCHECK_VERSION_STRING STRINGIFY(CPPCHECK_MAJOR) "." 
STRINGIFY(CPPCHECK_DEVMINOR) ".3"
 #define CPPCHECK_VERSION CPPCHECK_MAJOR,CPPCHECK_MINOR,1,0
 #else
 #define CPPCHECK_VERSION_STRING STRINGIFY(CPPCHECK_MAJOR) "." 
STRINGIFY(CPPCHECK_DEVMINOR) " dev"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cppcheck-2.6.2/win_installer/productInfo.wxi 
new/cppcheck-2.6.3/win_installer/productInfo.wxi
--- old/cppcheck-2.6.2/win_installer/productInfo.wxi    2021-11-21 
14:44:09.000000000 +0100
+++ new/cppcheck-2.6.3/win_installer/productInfo.wxi    2021-12-15 
19:25:42.000000000 +0100
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="utf-8"?>
 <Include>
-  <?define ProductName = "Cppcheck $(var.Platform) 2.6.2" ?>
+  <?define ProductName = "Cppcheck $(var.Platform) 2.6.3" ?>
   <?define ProductNameShort = "Cppcheck" ?>
-  <?define ProductVersion = "2.6.2" ?>
+  <?define ProductVersion = "2.6.3" ?>
 
   <?define ProductManufacturer = "The Cppcheck team" ?>
   <?define ProductDescription = "Cppcheck is a tool for static analysis of 
C/C++ code" ?>

Reply via email to