cppcheck 2.13.0-1 source package in Ubuntu

Changelog

cppcheck (2.13.0-1) unstable; urgency=medium

  * New upstream version.
  * Remove patch disable-some-tests-about-char-signedness  (fixed upstream).
  * Build cppcheck-gui against Qt6 instead of Qt5 as per cppcheck build
    system deprecation message:
    * Replace Build-Depends libqt5charts5-dev, qt5-qmake, qtbase5-dev,
      qtbase5-dev-tools, and qttools5-dev by qt6-base-dev,
      qt6-base-dev-tools, qt6-charts-dev, and qt6-tools-dev
    * Re-enable QCharts support again on all platforms (ia64 and sparc64
      seem to keep up again, powerpc is completely gone).

 -- Joachim Reichel <email address hidden>  Thu, 28 Dec 2023 09:17:07 +0100

Upload details

Uploaded by:
Joachim Reichel
Uploaded to:
Sid
Original maintainer:
Joachim Reichel
Architectures:
any
Section:
devel
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
cppcheck_2.13.0-1.dsc 2.1 KiB b9b7e8aa4278f2eed7938bee2dd203f8209549fc50729463d3a9829d429ef78c
cppcheck_2.13.0.orig.tar.gz 3.5 MiB 8229afe1dddc3ed893248b8a723b428dc221ea014fbc76e6289840857c03d450
cppcheck_2.13.0-1.debian.tar.xz 11.8 KiB 33718c9fa5449832ffc0ffb0874be380d987edbf62f2a39318d672dd4d253c14

Available diffs

No changes file available.

Binary packages built by this source

cppcheck: tool for static C/C++ code analysis (CLI)

 Cppcheck is a command-line tool that tries to detect bugs that your
 C/C++ compiler doesn't see. It is versatile, and can check non-standard
 code including various compiler extensions, inline assembly code, etc.
 Its internal preprocessor can handle includes, macros, and several
 preprocessor commands. While Cppcheck is highly configurable,
 you can start using it just by giving it a path to the source code.
 .
 It includes checks for:
  * pointers to out-of-scope auto variables;
  * assignment of auto variables to an effective parameter of a function;
  * out-of-bounds errors in arrays and STL;
  * missing class constructors;
  * variables not initialized by a constructor;
  * use of memset, memcpy, etcetera on a class;
  * non-virtual destructors for base classes;
  * operator= not returning a constant reference to itself;
  * use of deprecated functions (mktemp, gets, scanf);
  * exceptions thrown in destructors;
  * memory leaks in class or function variables;
  * C-style pointer cast in C++ code;
  * redundant if;
  * misuse of the strtol or sprintf functions;
  * unsigned division or division by zero;
  * unused functions and struct members;
  * passing parameters by value;
  * misuse of signed char variables;
  * unusual pointer arithmetic (such as "abc" + 'd');
  * dereferenced null pointers;
  * incomplete statements;
  * misuse of iterators when iterating through a container;
  * dereferencing of erased iterators;
  * use of invalidated vector iterators/pointers;
 .
 This package contains the command-line interface for cppcheck.

cppcheck-dbgsym: debug symbols for cppcheck
cppcheck-gui: tool for static C/C++ code analysis (GUI)

 Cppcheck is a command-line tool that tries to detect bugs that your
 C/C++ compiler doesn't see. It is versatile, and can check non-standard
 code including various compiler extensions, inline assembly code, etc.
 Its internal preprocessor can handle includes, macros, and several
 preprocessor commands. While Cppcheck is highly configurable,
 you can start using it just by giving it a path to the source code.
 .
 It includes checks for:
  * pointers to out-of-scope auto variables;
  * assignment of auto variables to an effective parameter of a function;
  * out-of-bounds errors in arrays and STL;
  * missing class constructors;
  * variables not initialized by a constructor;
  * use of memset, memcpy, etcetera on a class;
  * non-virtual destructors for base classes;
  * operator= not returning a constant reference to itself;
  * use of deprecated functions (mktemp, gets, scanf);
  * exceptions thrown in destructors;
  * memory leaks in class or function variables;
  * C-style pointer cast in C++ code;
  * redundant if;
  * misuse of the strtol or sprintf functions;
  * unsigned division or division by zero;
  * unused functions and struct members;
  * passing parameters by value;
  * misuse of signed char variables;
  * unusual pointer arithmetic (such as "abc" + 'd');
  * dereferenced null pointers;
  * incomplete statements;
  * misuse of iterators when iterating through a container;
  * dereferencing of erased iterators;
  * use of invalidated vector iterators/pointers
 .
 This package contains the graphical user interface for cppcheck.

cppcheck-gui-dbgsym: debug symbols for cppcheck-gui