Compare commits
No commits in common. "factory" and "devel" have entirely different histories.
3
cppcheck-2.14.2.tar.gz
Normal file
3
cppcheck-2.14.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9c3acea5f489336bd83a8ea33917a9a04a80c56d874bf270287e7de27acf2d00
|
||||||
|
size 3723248
|
3
cppcheck-2.15.0.tar.gz
Normal file
3
cppcheck-2.15.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:98bcc40ac8062635b492fb096d7815376a176ae26749d6c708083f4637f7c0bb
|
||||||
|
size 3820560
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:4792f9487aef94546606fabe45edeb9a78f4557b07ef887accc1d804287a2e9c
|
|
||||||
size 3872580
|
|
@ -1,74 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Tue Apr 1 21:02:32 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
|
|
||||||
|
|
||||||
- build without rules support on Tumbleweed to remove pcre
|
|
||||||
dependency
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Feb 26 09:39:24 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
|
||||||
|
|
||||||
- update to 2.17.1:
|
|
||||||
* New checks:
|
|
||||||
- staticFunction: detect functions that should have internal
|
|
||||||
linkage since they are not used outside of their translation
|
|
||||||
unit (C code only).
|
|
||||||
- Check null pointer return from memory/resource allocation
|
|
||||||
functions (nullPointerOutOfMemory,
|
|
||||||
nullPointerArithmeticOutOfMemory, nullPointerOutOfResources,
|
|
||||||
ctunullpointerOutOfMemory,
|
|
||||||
ctunullpointerOutOfResources).
|
|
||||||
* Changed interface:
|
|
||||||
- Added `reduced` check level. It can be activated with
|
|
||||||
`--check-level=reduced`. You get faster analysis
|
|
||||||
but some fewer results. The motivation is to be able to make
|
|
||||||
analysis time "acceptable" for direct usage.
|
|
||||||
- Added `--report-type` option. Enables printing of guidelines
|
|
||||||
and classifications for several coding
|
|
||||||
standards in place of the regular error identifiers and
|
|
||||||
severities.
|
|
||||||
* Other:
|
|
||||||
- Removed deperecated support for builds via qmake.
|
|
||||||
- Using a handwritten rule texts file for MISRA C addon
|
|
||||||
violates license and copyright terms. See the
|
|
||||||
manual for instructions how to download a official rule
|
|
||||||
texts file from MISRA.
|
|
||||||
- switch to qt6
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Fri Dec 20 20:45:05 UTC 2024 - Christoph G <foss@grueninger.de>
|
|
||||||
|
|
||||||
- update to 2.16.2
|
|
||||||
* Fix syntax error for function pointer array with @
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 1 21:03:58 UTC 2024 - Christoph G <foss@grueninger.de>
|
|
||||||
|
|
||||||
- update to 2.16.1
|
|
||||||
* SymbolDatabase: does not select l-value method properly
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Oct 29 21:32:46 UTC 2024 - Christoph G <foss@grueninger.de>
|
|
||||||
|
|
||||||
- update to 2.16.0
|
|
||||||
Improved checking:
|
|
||||||
* constVariable; checking multidimensional arrays
|
|
||||||
* constVariablePointer; nested array access
|
|
||||||
* deallocuse
|
|
||||||
Changed interface:
|
|
||||||
* SARIF output. Use --output-format=sarif to activate this.
|
|
||||||
* Add option --output-format=. Allowed formats are sarif and
|
|
||||||
xml.
|
|
||||||
Deprecations:
|
|
||||||
* The previously deprecated support for Python 2.7 has been
|
|
||||||
removed. Please use Python 3 instead.
|
|
||||||
* The maximum value for --max-ctu-depth is currently capped
|
|
||||||
at 10. This limitation will be removed in a future release.
|
|
||||||
Other:
|
|
||||||
* "missingInclude" is no longer implicitly enabled with
|
|
||||||
"information" - you need to enable it explicitly now.
|
|
||||||
* Fixed checkers report when --addon=misra.py or
|
|
||||||
--addon=misra.json is used.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Sep 1 06:13:20 UTC 2024 - Christoph G <foss@grueninger.de>
|
Sun Sep 1 06:13:20 UTC 2024 - Christoph G <foss@grueninger.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cppcheck
|
# spec file for package cppcheck
|
||||||
#
|
#
|
||||||
# Copyright (c) 2025 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,13 +16,8 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%if 0%{?suse_version} > 1600
|
|
||||||
%bcond_with rules
|
|
||||||
%else
|
|
||||||
%bcond_without rules
|
|
||||||
%endif
|
|
||||||
Name: cppcheck
|
Name: cppcheck
|
||||||
Version: 2.17.1
|
Version: 2.15.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A tool for static C/C++ code analysis
|
Summary: A tool for static C/C++ code analysis
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
@ -32,21 +27,19 @@ BuildRequires: cmake
|
|||||||
BuildRequires: docbook-xsl-stylesheets
|
BuildRequires: docbook-xsl-stylesheets
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: libqt5-linguist-devel
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: python3-base
|
BuildRequires: python3-base
|
||||||
BuildRequires: qt6-linguist-devel
|
|
||||||
BuildRequires: xsltproc
|
BuildRequires: xsltproc
|
||||||
BuildRequires: z3-devel
|
BuildRequires: z3-devel
|
||||||
BuildRequires: pkgconfig(Qt6Core)
|
BuildRequires: pkgconfig(Qt5Core)
|
||||||
BuildRequires: pkgconfig(Qt6Gui)
|
BuildRequires: pkgconfig(Qt5Gui)
|
||||||
BuildRequires: pkgconfig(Qt6Help)
|
BuildRequires: pkgconfig(Qt5Help)
|
||||||
BuildRequires: pkgconfig(Qt6Network)
|
BuildRequires: pkgconfig(Qt5Network)
|
||||||
BuildRequires: pkgconfig(Qt6PrintSupport)
|
BuildRequires: pkgconfig(Qt5PrintSupport)
|
||||||
BuildRequires: pkgconfig(Qt6Test)
|
BuildRequires: pkgconfig(Qt5Test)
|
||||||
BuildRequires: pkgconfig(Qt6Widgets)
|
BuildRequires: pkgconfig(Qt5Widgets)
|
||||||
%if %{with rules}
|
|
||||||
BuildRequires: pkgconfig(libpcre)
|
BuildRequires: pkgconfig(libpcre)
|
||||||
%endif
|
|
||||||
ExcludeArch: %ix86 %arm
|
ExcludeArch: %ix86 %arm
|
||||||
Requires: python3-Pygments
|
Requires: python3-Pygments
|
||||||
|
|
||||||
@ -89,12 +82,7 @@ doesn't see.
|
|||||||
-DFILESDIR="%{_datadir}/%{name}" \
|
-DFILESDIR="%{_datadir}/%{name}" \
|
||||||
-DBUILD_GUI=ON \
|
-DBUILD_GUI=ON \
|
||||||
-DBUILD_TESTS=ON \
|
-DBUILD_TESTS=ON \
|
||||||
%if %{with rules}
|
-DHAVE_RULES=yes \
|
||||||
-DHAVE_RULES=ON \
|
|
||||||
%else
|
|
||||||
-DHAVE_RULES=OFF \
|
|
||||||
%endif
|
|
||||||
-DUSE_QT6=yes \
|
|
||||||
-DUSE_Z3=yes
|
-DUSE_Z3=yes
|
||||||
%cmake_build
|
%cmake_build
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user