cppcheck-py 2.9__py3-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. cppcheck/__init__.py +55 -0
  2. cppcheck/cppcheck-2.9.tar.gz +0 -0
  3. cppcheck/data/addons/__init__.py +0 -0
  4. cppcheck/data/addons/cppcheck.py +39 -0
  5. cppcheck/data/addons/cppcheckdata.py +1529 -0
  6. cppcheck/data/addons/findcasts.py +33 -0
  7. cppcheck/data/addons/misc.py +163 -0
  8. cppcheck/data/addons/misra.py +4728 -0
  9. cppcheck/data/addons/misra_9.py +513 -0
  10. cppcheck/data/addons/naming.py +91 -0
  11. cppcheck/data/addons/namingng.py +253 -0
  12. cppcheck/data/addons/runaddon.py +12 -0
  13. cppcheck/data/addons/threadsafety.py +39 -0
  14. cppcheck/data/addons/y2038.py +252 -0
  15. cppcheck/data/cfg/avr.cfg +431 -0
  16. cppcheck/data/cfg/bento4.cfg +142 -0
  17. cppcheck/data/cfg/boost.cfg +1268 -0
  18. cppcheck/data/cfg/bsd.cfg +546 -0
  19. cppcheck/data/cfg/cairo.cfg +88 -0
  20. cppcheck/data/cfg/cppcheck-lib.cfg +72 -0
  21. cppcheck/data/cfg/cppunit.cfg +48 -0
  22. cppcheck/data/cfg/daca.cfg +31 -0
  23. cppcheck/data/cfg/dpdk.cfg +11 -0
  24. cppcheck/data/cfg/embedded_sql.cfg +4 -0
  25. cppcheck/data/cfg/emscripten.cfg +7 -0
  26. cppcheck/data/cfg/ginac.cfg +12848 -0
  27. cppcheck/data/cfg/gnu.cfg +1626 -0
  28. cppcheck/data/cfg/googletest.cfg +60 -0
  29. cppcheck/data/cfg/gtk.cfg +20584 -0
  30. cppcheck/data/cfg/icu.cfg +6 -0
  31. cppcheck/data/cfg/kde.cfg +51 -0
  32. cppcheck/data/cfg/libcerror.cfg +128 -0
  33. cppcheck/data/cfg/libcurl.cfg +487 -0
  34. cppcheck/data/cfg/libsigc++.cfg +36 -0
  35. cppcheck/data/cfg/lua.cfg +316 -0
  36. cppcheck/data/cfg/mfc.cfg +256 -0
  37. cppcheck/data/cfg/microsoft_atl.cfg +40 -0
  38. cppcheck/data/cfg/microsoft_sal.cfg +491 -0
  39. cppcheck/data/cfg/microsoft_unittest.cfg +20 -0
  40. cppcheck/data/cfg/motif.cfg +318 -0
  41. cppcheck/data/cfg/nspr.cfg +38 -0
  42. cppcheck/data/cfg/ntl.cfg +6907 -0
  43. cppcheck/data/cfg/opencv2.cfg +132 -0
  44. cppcheck/data/cfg/opengl.cfg +580 -0
  45. cppcheck/data/cfg/openmp.cfg +157 -0
  46. cppcheck/data/cfg/openssl.cfg +174 -0
  47. cppcheck/data/cfg/pcre.cfg +165 -0
  48. cppcheck/data/cfg/posix.cfg +6252 -0
  49. cppcheck/data/cfg/python.cfg +674 -0
  50. cppcheck/data/cfg/qt.cfg +5255 -0
  51. cppcheck/data/cfg/ruby.cfg +142 -0
  52. cppcheck/data/cfg/sdl.cfg +354 -0
  53. cppcheck/data/cfg/sfml.cfg +301 -0
  54. cppcheck/data/cfg/sqlite3.cfg +1527 -0
  55. cppcheck/data/cfg/std.cfg +8716 -0
  56. cppcheck/data/cfg/tinyxml2.cfg +56 -0
  57. cppcheck/data/cfg/vcl.cfg +4 -0
  58. cppcheck/data/cfg/windows.cfg +17941 -0
  59. cppcheck/data/cfg/wxsqlite3.cfg +1955 -0
  60. cppcheck/data/cfg/wxsvg.cfg +16905 -0
  61. cppcheck/data/cfg/wxwidgets.cfg +16464 -0
  62. cppcheck/data/cfg/zlib.cfg +1450 -0
  63. cppcheck/data/cppcheck-htmlreport +986 -0
  64. cppcheck/data/cppcheck.exe +0 -0
  65. cppcheck/data/platforms/aix_ppc64.xml +17 -0
  66. cppcheck/data/platforms/arm32-wchar_t2.xml +17 -0
  67. cppcheck/data/platforms/arm32-wchar_t4.xml +17 -0
  68. cppcheck/data/platforms/arm64-wchar_t2.xml +17 -0
  69. cppcheck/data/platforms/arm64-wchar_t4.xml +17 -0
  70. cppcheck/data/platforms/avr8.xml +18 -0
  71. cppcheck/data/platforms/cray_sv1.xml +17 -0
  72. cppcheck/data/platforms/elbrus-e1cp.xml +18 -0
  73. cppcheck/data/platforms/mips32.xml +18 -0
  74. cppcheck/data/platforms/msp430_eabi_large_datamodel.xml +17 -0
  75. cppcheck/data/platforms/pic16.xml +18 -0
  76. cppcheck/data/platforms/pic8-enhanced.xml +18 -0
  77. cppcheck/data/platforms/pic8.xml +18 -0
  78. cppcheck/data/platforms/unix32-unsigned.xml +17 -0
  79. cppcheck/data/platforms/unix64-unsigned.xml +17 -0
  80. cppcheck_py-2.9.dist-info/METADATA +76 -0
  81. cppcheck_py-2.9.dist-info/RECORD +84 -0
  82. cppcheck_py-2.9.dist-info/WHEEL +5 -0
  83. cppcheck_py-2.9.dist-info/entry_points.txt +4 -0
  84. cppcheck_py-2.9.dist-info/licenses/LICENSE.md +191 -0
Binary file
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0"?>
2
+ <platform>
3
+ <char_bit>8</char_bit>
4
+ <default-sign>unsigned</default-sign>
5
+ <sizeof>
6
+ <short>2</short>
7
+ <int>4</int>
8
+ <long>8</long>
9
+ <long-long>8</long-long>
10
+ <float>4</float>
11
+ <double>8</double>
12
+ <long-double>8</long-double>
13
+ <pointer>8</pointer>
14
+ <size_t>8</size_t>
15
+ <wchar_t>2</wchar_t>
16
+ </sizeof>
17
+ </platform>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0"?>
2
+ <platform>
3
+ <char_bit>8</char_bit>
4
+ <default-sign>unsigned</default-sign>
5
+ <sizeof>
6
+ <short>2</short>
7
+ <int>4</int>
8
+ <long>4</long>
9
+ <long-long>8</long-long>
10
+ <float>4</float>
11
+ <double>8</double>
12
+ <long-double>8</long-double>
13
+ <pointer>4</pointer>
14
+ <size_t>4</size_t>
15
+ <wchar_t>2</wchar_t>
16
+ </sizeof>
17
+ </platform>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0"?>
2
+ <platform>
3
+ <char_bit>8</char_bit>
4
+ <default-sign>unsigned</default-sign>
5
+ <sizeof>
6
+ <short>2</short>
7
+ <int>4</int>
8
+ <long>4</long>
9
+ <long-long>8</long-long>
10
+ <float>4</float>
11
+ <double>8</double>
12
+ <long-double>8</long-double>
13
+ <pointer>4</pointer>
14
+ <size_t>4</size_t>
15
+ <wchar_t>4</wchar_t>
16
+ </sizeof>
17
+ </platform>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0"?>
2
+ <platform>
3
+ <char_bit>8</char_bit>
4
+ <default-sign>unsigned</default-sign>
5
+ <sizeof>
6
+ <short>2</short>
7
+ <int>4</int>
8
+ <long>4</long>
9
+ <long-long>8</long-long>
10
+ <float>4</float>
11
+ <double>8</double>
12
+ <long-double>8</long-double>
13
+ <pointer>8</pointer>
14
+ <size_t>4</size_t>
15
+ <wchar_t>2</wchar_t>
16
+ </sizeof>
17
+ </platform>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0"?>
2
+ <platform>
3
+ <char_bit>8</char_bit>
4
+ <default-sign>unsigned</default-sign>
5
+ <sizeof>
6
+ <short>2</short>
7
+ <int>4</int>
8
+ <long>4</long>
9
+ <long-long>8</long-long>
10
+ <float>4</float>
11
+ <double>8</double>
12
+ <long-double>8</long-double>
13
+ <pointer>8</pointer>
14
+ <size_t>4</size_t>
15
+ <wchar_t>4</wchar_t>
16
+ </sizeof>
17
+ </platform>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0"?>
2
+ <platform>
3
+ <char_bit>8</char_bit>
4
+ <default-sign>unsigned</default-sign>
5
+ <sizeof>
6
+ <bool>1</bool>
7
+ <short>2</short>
8
+ <int>2</int>
9
+ <long>4</long>
10
+ <long-long>8</long-long>
11
+ <float>4</float>
12
+ <double>4</double>
13
+ <long-double>4</long-double>
14
+ <pointer>2</pointer>
15
+ <size_t>2</size_t>
16
+ <wchar_t>2</wchar_t>
17
+ </sizeof>
18
+ </platform>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0"?>
2
+ <platform>
3
+ <char_bit>8</char_bit>
4
+ <default-sign>unsigned</default-sign>
5
+ <sizeof>
6
+ <short>2</short>
7
+ <int>8</int>
8
+ <long>8</long>
9
+ <long-long>8</long-long>
10
+ <float>8</float>
11
+ <double>8</double>
12
+ <long-double>16</long-double>
13
+ <pointer>8</pointer>
14
+ <size_t>8</size_t>
15
+ <wchar_t>8</wchar_t>
16
+ </sizeof>
17
+ </platform>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0"?>
2
+ <platform>
3
+ <char_bit>8</char_bit>
4
+ <default-sign>unsigned</default-sign>
5
+ <sizeof>
6
+ <bool>1</bool>
7
+ <short>2</short>
8
+ <int>4</int>
9
+ <long>8</long>
10
+ <long-long>8</long-long>
11
+ <float>4</float>
12
+ <double>8</double>
13
+ <long-double>16</long-double>
14
+ <pointer>8</pointer>
15
+ <size_t>8</size_t>
16
+ <wchar_t>4</wchar_t>
17
+ </sizeof>
18
+ </platform>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0"?>
2
+ <platform>
3
+ <char_bit>8</char_bit>
4
+ <default-sign>signed</default-sign>
5
+ <sizeof>
6
+ <bool>1</bool>
7
+ <short>2</short>
8
+ <int>4</int>
9
+ <long>4</long>
10
+ <long-long>8</long-long>
11
+ <float>4</float>
12
+ <double>8</double>
13
+ <long-double>8</long-double>
14
+ <pointer>4</pointer>
15
+ <size_t>4</size_t>
16
+ <wchar_t>4</wchar_t>
17
+ </sizeof>
18
+ </platform>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0"?>
2
+ <platform>
3
+ <char_bit>8</char_bit>
4
+ <default-sign>signed</default-sign>
5
+ <sizeof>
6
+ <short>2</short>
7
+ <int>2</int>
8
+ <long>4</long>
9
+ <long-long>8</long-long>
10
+ <float>4</float>
11
+ <double>8</double>
12
+ <long-double>8</long-double>
13
+ <pointer>4</pointer>
14
+ <size_t>4</size_t>
15
+ <wchar_t>2</wchar_t>
16
+ </sizeof>
17
+ </platform>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0"?>
2
+ <platform>
3
+ <char_bit>8</char_bit>
4
+ <default-sign>unsigned</default-sign>
5
+ <sizeof>
6
+ <bool>1</bool>
7
+ <short>2</short>
8
+ <int>2</int>
9
+ <long>4</long>
10
+ <long-long>8</long-long>
11
+ <float>4</float>
12
+ <double>4</double>
13
+ <long-double>8</long-double>
14
+ <pointer>2</pointer>
15
+ <size_t>2</size_t>
16
+ <wchar_t>2</wchar_t>
17
+ </sizeof>
18
+ </platform>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0"?>
2
+ <platform>
3
+ <char_bit>8</char_bit>
4
+ <default-sign>unsigned</default-sign>
5
+ <sizeof>
6
+ <bool>1</bool>
7
+ <short>2</short>
8
+ <int>2</int>
9
+ <long>4</long>
10
+ <long-long>8</long-long>
11
+ <float>4</float>
12
+ <double>4</double>
13
+ <long-double>4</long-double>
14
+ <pointer>2</pointer>
15
+ <size_t>2</size_t>
16
+ <wchar_t>2</wchar_t>
17
+ </sizeof>
18
+ </platform>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0"?>
2
+ <platform>
3
+ <char_bit>8</char_bit>
4
+ <default-sign>unsigned</default-sign>
5
+ <sizeof>
6
+ <bool>1</bool>
7
+ <short>2</short>
8
+ <int>2</int>
9
+ <long>4</long>
10
+ <long-long>4</long-long>
11
+ <float>4</float>
12
+ <double>4</double>
13
+ <long-double>4</long-double>
14
+ <pointer>2</pointer>
15
+ <size_t>2</size_t>
16
+ <wchar_t>2</wchar_t>
17
+ </sizeof>
18
+ </platform>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0"?>
2
+ <platform>
3
+ <char_bit>8</char_bit>
4
+ <default-sign>unsigned</default-sign>
5
+ <sizeof>
6
+ <short>2</short>
7
+ <int>4</int>
8
+ <long>4</long>
9
+ <long-long>8</long-long>
10
+ <float>4</float>
11
+ <double>8</double>
12
+ <long-double>12</long-double>
13
+ <pointer>4</pointer>
14
+ <size_t>4</size_t>
15
+ <wchar_t>2</wchar_t>
16
+ </sizeof>
17
+ </platform>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0"?>
2
+ <platform>
3
+ <char_bit>8</char_bit>
4
+ <default-sign>unsigned</default-sign>
5
+ <sizeof>
6
+ <short>2</short>
7
+ <int>4</int>
8
+ <long>8</long>
9
+ <long-long>8</long-long>
10
+ <float>4</float>
11
+ <double>8</double>
12
+ <long-double>16</long-double>
13
+ <pointer>8</pointer>
14
+ <size_t>8</size_t>
15
+ <wchar_t>4</wchar_t>
16
+ </sizeof>
17
+ </platform>
@@ -0,0 +1,76 @@
1
+ Metadata-Version: 2.2
2
+ Name: cppcheck-py
3
+ Version: 2.9
4
+ Summary: Static analysis of C/C++ code
5
+ License: Apache 2.0
6
+ Classifier: Programming Language :: C
7
+ Classifier: Programming Language :: C++
8
+ Classifier: Operating System :: OS Independent
9
+ Classifier: License :: OSI Approved :: Apache Software License
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Topic :: Software Development :: Quality Assurance
12
+ Project-URL: Homepage, https://cppcheck.sourceforge.io/
13
+ Project-URL: Documentation, https://cppcheck.sourceforge.io/manual.pdf
14
+ Project-URL: Download, https://github.com/cppcheck-opensource/cppcheck/releases
15
+ Project-URL: Source, https://github.com/cconverse711/cppcheck-wheel
16
+ Requires-Python: >=3.9
17
+ Requires-Dist: pygments
18
+ Description-Content-Type: text/markdown
19
+
20
+ # Cppcheck Python distribution
21
+
22
+ [![PyPI Release](https://img.shields.io/pypi/v/cppcheck-py.svg)](https://pypi.org/project/cppcheck-py)
23
+
24
+ This project packages the `cppcheck` utility as a Python package. It allows you to install `cppcheck` directly from PyPI:
25
+
26
+ ```
27
+ python -m pip install cppcheck-py
28
+ ```
29
+
30
+ The tools provided are:
31
+
32
+ cppcheck: performs static analysis of C/C++ source code
33
+ cppcheck-htmlreport: generates an html report of a XML file produced by cppcheck
34
+
35
+ This projects intends to release a new PyPI package for each major and minor release of `cppcheck`.
36
+
37
+ ## Use with pipx
38
+
39
+ You can use `pipx` to run cppcheck, as well. For example, `pipx run cppcheck <args>` will run cppcheck without any previous install required on any machine with pipx (including all default GitHub Actions / Azure runners, avoiding requiring a pre-install step or even `actions/setup-python`).
40
+
41
+ ## Building new releases
42
+
43
+ The [cppcheck-wheel repository](https://github.com/cconverse711/cppcheck-wheel) provides the logic to build and publish binary wheels of the `cppcheck` utility.
44
+
45
+ In order to add a new release, the following steps are necessary:
46
+
47
+ * Edit the [version file](https://github.com/cconverse711/clang-format-wheel/blob/main/cppcheck_version.txt)
48
+ * In the form `cppcheck_version.wheel_version`, e.g. `2.21.0.1`
49
+ * Tag the commit with this version to trigger the [GitHub Actions release workflow](https://github.com/cconverse711/cppcheck-wheel/actions/workflows/release.yml)
50
+ * e.g. `git tag v2.21.0.1 && git push origin v2.21.0.1`
51
+
52
+ Alternatively, the workflow can be triggered manually:
53
+
54
+ On manual triggers, the following input variables are available:
55
+ * `cppcheck_version`: Override the Cppcheck version (default: `""`)
56
+ * `wheel_version`: Override the wheel packaging version (default `"0"`)
57
+ * `skip_emulation`: Set which emulation builds to skip, e.g. `"qemu"` (default: `""`)
58
+ * `deploy_to_testpypi`: Whether to deploy to TestPyPI instead of PyPI (default: `false`)
59
+
60
+ The repository with the precommit hook is automatically updated using a scheduled Github Actions workflow.
61
+
62
+ ## Acknowledgements
63
+
64
+ This repository extends the great work of several other projects:
65
+
66
+ * `cppcheck` itself is [provided by the Cppcheck project](https://github.com/cppcheck-opensource/cppcheck) under the GPL-3.0 License.
67
+ * The repository is inspired by [clang-format-wheel](https://github.com/ssciwr/clang-format-wheel) and [clang-tidy-wheel](https://github.com/ssciwr/clang-tidy-wheel) which are in turn based on [scikit-build-core](https://github.com/scikit-build/scikit-build-core) which greatly reduces the amount of low level code necessary to package `cppcheck`.
68
+ * The `scikit-build` packaging examples of [CMake](https://github.com/scikit-build/cmake-python-distributions) and [Ninja](https://github.com/scikit-build/ninja-python-distributions) were very helpful in packaging `cppcheck`.
69
+ * The CI build process is controlled by [cibuildwheel](https://github.com/pypa/cibuildwheel) which makes building wheels across a number of platforms a pleasant experience (!)
70
+
71
+ We are grateful for the generous provisioning with CI resources that GitHub currently offers to Open Source projects.
72
+
73
+ ## Troubleshooting
74
+
75
+ To see which cppcheck binary the package is using
76
+ you can set `CPPCHECK_WHEEL_VERBOSE` to `1` in your environment.
@@ -0,0 +1,84 @@
1
+ cppcheck/__init__.py,sha256=kRxsic_gP8ki_sWM3FmrZJVkDKdWM73qiT2kiWaepAw,1429
2
+ cppcheck/cppcheck-2.9.tar.gz,sha256=Vq7otb35Nqt63Jq0OQO6IFLwiGlcgPBHaCAkoe0O8_M,3916529
3
+ cppcheck/data/addons/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ cppcheck/data/addons/cppcheck.py,sha256=7kDJKgvURgI7k1K3yoREA09Q-TZurxOwu_DkmpWWE90,1048
5
+ cppcheck/data/addons/cppcheckdata.py,sha256=6kzaML20bLvJLv6lUzYSgs7ufMDXauKMJRtVXrKsJmU,51372
6
+ cppcheck/data/addons/findcasts.py,sha256=1xI-Vjv7Zk2WIiyOdVktJghkyhkW1DEDiiH-NTavf54,850
7
+ cppcheck/data/addons/misc.py,sha256=BuWkEuUmr14ryYmIEDhLLujWppvPv5MOas31nVRfFyQ,6070
8
+ cppcheck/data/addons/misra.py,sha256=qyMcJv8WbTcYw4qRsJx3Fsax40YeQgUFnt1AZ_aMRgA,190792
9
+ cppcheck/data/addons/misra_9.py,sha256=whPgr3-7s1oi17SrodPcNcCj8WKAwhI_fHsCYOoJrrs,19653
10
+ cppcheck/data/addons/naming.py,sha256=ZsYoHywy81IPHDyJXumEdTsASfpk2eMFQkpUejg3xUQ,3528
11
+ cppcheck/data/addons/namingng.py,sha256=bJdPU3Pg8La6aJBza5ynbESQyWe3clJfj3Uwpq8ar0M,11628
12
+ cppcheck/data/addons/runaddon.py,sha256=AUpaJr643qFyrD7IMpdCcqZIimm57Tu7cKCbpdvOMJ8,326
13
+ cppcheck/data/addons/threadsafety.py,sha256=HuJ7m4DpDFBGyzTAaakd5bNCnIc9uYmLjX7q03lk0io,1258
14
+ cppcheck/data/addons/y2038.py,sha256=k2BZxwJ5WX1uStFOe77q35xkm-D5FxzBckM7EFi9XwY,7142
15
+ cppcheck/data/cfg/avr.cfg,sha256=RXJue20XTkxzIqh7PVlyx4YXsdjv4DESkVbJIqqdqG0,12718
16
+ cppcheck/data/cfg/bento4.cfg,sha256=w2ZJfXSaKG4tI52qTAfrMj689a1sWRRERFTSUok4alM,8529
17
+ cppcheck/data/cfg/boost.cfg,sha256=iafrm23RXOfnOGSESCU6M96LApsyg7aYH3YBhd2WNfU,47337
18
+ cppcheck/data/cfg/bsd.cfg,sha256=qe_u4ae8u3Zl3MmrUMWRAZ6JsM-CCT8jYLbH3AI2wE4,14742
19
+ cppcheck/data/cfg/cairo.cfg,sha256=_ijRYST83vdwp0pxODm8uVHHr69K_ZcNS48p-wCpKEI,3336
20
+ cppcheck/data/cfg/cppcheck-lib.cfg,sha256=UU1W1XYw--53ZykiQvqwzyHYIsW20Lj1UgapkTWY_CE,2066
21
+ cppcheck/data/cfg/cppunit.cfg,sha256=l8PeyANuHXk6QSaK-a8mgGSrSEgZQI5LvSrAHI7A08s,2690
22
+ cppcheck/data/cfg/daca.cfg,sha256=Md2PGqJF8maucln1c6GBlvS2bUbgPe3LjOIPcqm4IkU,908
23
+ cppcheck/data/cfg/dpdk.cfg,sha256=aPIZCjXrAwWQW06k2rlclS3dhmunSb7EAWE1gBUVYzw,219
24
+ cppcheck/data/cfg/embedded_sql.cfg,sha256=16Dv3ymkQLpcI7uXOYcsvTXXYPcFSgblJyYJSYTKBgo,109
25
+ cppcheck/data/cfg/emscripten.cfg,sha256=eP0uWEjGWSMEyP5-ZbxFBHiJOk_gBmQ0QVdEVW19jdE,230
26
+ cppcheck/data/cfg/ginac.cfg,sha256=LjlaXj-PoWiLF5kJ6lqa4QB7bLMHP5o69SQ5J-j6OFs,402394
27
+ cppcheck/data/cfg/gnu.cfg,sha256=jJ9_uJdPc5Vby15Y3lWhF0PSWHCz3fkIdUCxWf9RX3M,46720
28
+ cppcheck/data/cfg/googletest.cfg,sha256=MeIAfeKg6Iaiz4hjjCbenM2_GYk3BkLiKFZVTmPiSDA,7337
29
+ cppcheck/data/cfg/gtk.cfg,sha256=B53bdw_1VLpPz9mDD2Uu0UgUsyY1IVb-hFbvIa3S85c,595944
30
+ cppcheck/data/cfg/icu.cfg,sha256=xr6sWz6lHO47WlUlgv8h6V7-fjW6QQh5TCJQkq1EJBw,247
31
+ cppcheck/data/cfg/kde.cfg,sha256=6gzX4jWqDiwU8Mk1AGJusikQrpRfqjMKgpbjODbtjNo,3306
32
+ cppcheck/data/cfg/libcerror.cfg,sha256=-EOYER-1qt_4cSA8yzWmV4x9BNMJ6EMadE6uJVFImbc,3657
33
+ cppcheck/data/cfg/libcurl.cfg,sha256=MVJkmHXRauzcunaLfFBA2jRDGh42EXbnEhqzrrGXJrg,14564
34
+ cppcheck/data/cfg/libsigc++.cfg,sha256=VkniZ9R7_0wilpGtjslgNYpAFSQTt0hKHGuG9dufIT0,2553
35
+ cppcheck/data/cfg/lua.cfg,sha256=3-1mc3XOg1wJiQYjkwtGsns3sB9zZVR6mbrQJ59Gpz8,9461
36
+ cppcheck/data/cfg/mfc.cfg,sha256=TV-1smdppvDTY4MqGTrcjOL_Ppbh1Ve4-owzDtj08Pg,12411
37
+ cppcheck/data/cfg/microsoft_atl.cfg,sha256=75vXjguqlTmt63tzEG89pRT9rTs1fj99pblby38eIJ0,2414
38
+ cppcheck/data/cfg/microsoft_sal.cfg,sha256=xIosWDoLUV3KgPpbkRxEaHXUyvxXymfVyGY1zQtGyPY,26927
39
+ cppcheck/data/cfg/microsoft_unittest.cfg,sha256=5G-AITuxvmSty4L4YCpmTVkRKTAn6zDBP8_7ilEB-D0,1340
40
+ cppcheck/data/cfg/motif.cfg,sha256=OYGNfm4kafsBb-gVNvAAcPkzlSH49PnAJaN9TZxqkdk,7553
41
+ cppcheck/data/cfg/nspr.cfg,sha256=8ee28_9K9uql5MoIPFjh-73w2qILIN2l380FPM5ywa8,1892
42
+ cppcheck/data/cfg/ntl.cfg,sha256=TRZ3mKBKlpOjnW_Z9vzjqdhdWxgepWuhkVqtgV9ua7U,196090
43
+ cppcheck/data/cfg/opencv2.cfg,sha256=a0FpzMPm7q5KyokujH3nNgdGGizAdoERDbr5YkF9YcE,5281
44
+ cppcheck/data/cfg/opengl.cfg,sha256=I2wpmyDP1gCCVxl4yuzKgBKJm5jTpvTG-UNYjR4S9WI,22067
45
+ cppcheck/data/cfg/openmp.cfg,sha256=jrgKYkYNvHvZBy_4i3L5u6BtpTyvPebArxw9WuGP51A,4853
46
+ cppcheck/data/cfg/openssl.cfg,sha256=FSIf8iY7Ztmlm_jPMBKeSuE0gBZKPCnuRxpaS5uu2ic,4881
47
+ cppcheck/data/cfg/pcre.cfg,sha256=RsaDj_0AMEoHu6T3Xd93RDqTg9ZaEIU2G0Ca1odphZ8,8490
48
+ cppcheck/data/cfg/posix.cfg,sha256=mx4HUbGarDtWvrXjR7f1ztmiAuHGboabswIjxM8NRiY,177797
49
+ cppcheck/data/cfg/python.cfg,sha256=eG3kozcdlhzMLYtzVaoshhfbzriWFQ06__gFM8sl408,20084
50
+ cppcheck/data/cfg/qt.cfg,sha256=aSRQfN76c3w7744fg24H2gtBtVgfpfY0s0LfNgOFvv0,178559
51
+ cppcheck/data/cfg/ruby.cfg,sha256=N-rfUusn3eZTs9Xmjrc1vY2Sh0gdCoAlCGr3prSc6JU,4233
52
+ cppcheck/data/cfg/sdl.cfg,sha256=pr-MoGo87iQvqWUHz0sfvq8qCBMSSnsQ1-uOE4k_TdM,10585
53
+ cppcheck/data/cfg/sfml.cfg,sha256=Jy_meYNTDacLW_gKAfmu8J-XdnZriun1wtW4Fzu0ac4,9228
54
+ cppcheck/data/cfg/sqlite3.cfg,sha256=KhIsoeGbyTkrGjV63ElyYGmAnSbpUC1Gsltkdjax6x8,58922
55
+ cppcheck/data/cfg/std.cfg,sha256=L7STmdrS7uDiKSBIclLylIiTrUOlPLTtGnLg2tDDWkE,266693
56
+ cppcheck/data/cfg/tinyxml2.cfg,sha256=hGtfqg4CIREVtktEL-2wUcArb27sRRwuXPLagzUrNlk,2291
57
+ cppcheck/data/cfg/vcl.cfg,sha256=O4IO0IUxeNDxVdNMusWCkcA74u_GzCjuYq8-QlE3c-4,94
58
+ cppcheck/data/cfg/windows.cfg,sha256=REBrYJV1zTL8qF1IXtoMie-fcGOqlnogXd9mSl9mAV0,841960
59
+ cppcheck/data/cfg/wxsqlite3.cfg,sha256=FGSVx9pvLAangumAmWoBmADil0-xOMu73ozejH0dcJU,65719
60
+ cppcheck/data/cfg/wxsvg.cfg,sha256=qiLWEi7tiXhimj2AqKH7JbQj8j1MjkyCWwJmCdswwNY,594782
61
+ cppcheck/data/cfg/wxwidgets.cfg,sha256=JMDolfjLWKeqcYRE8Oboj-9wCdOYegpHvESKwZlE8PI,717418
62
+ cppcheck/data/cfg/zlib.cfg,sha256=fLFka-eoEFjQw7_qm2H07nCraf-p1TuBSosUWYGCD3g,38503
63
+ cppcheck/data/cppcheck-htmlreport,sha256=tL76J7lms17TisfJJ4Lot4AN6QzoKK3jXGGdtaT_oKw,35219
64
+ cppcheck/data/cppcheck.exe,sha256=kD_Yn3tflT_kDypOnfcpTMA98alhhwZniMM-aPWPGrM,3898880
65
+ cppcheck/data/platforms/aix_ppc64.xml,sha256=13Qs3zQONFfbvy68rbZIH1W2e1jmRqxELERtl7dWgWE,369
66
+ cppcheck/data/platforms/arm32-wchar_t2.xml,sha256=x3RRSzsFyfjKKNyQVuK1TO1BJeF7UfMeQhLW_6fKzAo,369
67
+ cppcheck/data/platforms/arm32-wchar_t4.xml,sha256=_4oApWst7Wgr95wSIu8YPh0xXWleLpj1PTORGJ3421Y,369
68
+ cppcheck/data/platforms/arm64-wchar_t2.xml,sha256=geQOl1SPC5i3iKgR1Q_vunDEprDLpyK5tHCJ9QFMg3c,369
69
+ cppcheck/data/platforms/arm64-wchar_t4.xml,sha256=PY4ySBBhGDhn1MrFrvkN7qvGBc5kxgxzSkTil7CTAAI,369
70
+ cppcheck/data/platforms/avr8.xml,sha256=llg5fwjDnpRopVGvpx5k3zIVGpmzUgg9oIOKhmhsHUg,388
71
+ cppcheck/data/platforms/cray_sv1.xml,sha256=it48kvguFHX8v9P38fCFHRoDbSG8bkehvdlakw386Ic,370
72
+ cppcheck/data/platforms/elbrus-e1cp.xml,sha256=3RHEe1R0cAthikziH14ZksVM9q1eQI3Ab-SYyXBPDsQ,389
73
+ cppcheck/data/platforms/mips32.xml,sha256=jm5Gnj6E-FZdM6h7jqdh0x0u5yev6lXhsMcIXxNi2-U,386
74
+ cppcheck/data/platforms/msp430_eabi_large_datamodel.xml,sha256=GnGGrW7-vkBiVy3DZIC8t8sWRap2w7h1jny3y7lXz_U,367
75
+ cppcheck/data/platforms/pic16.xml,sha256=ntdy13IaAQU-ZkBquRQ_h5333Atpel2Q3J18SIYiQK8,388
76
+ cppcheck/data/platforms/pic8-enhanced.xml,sha256=llg5fwjDnpRopVGvpx5k3zIVGpmzUgg9oIOKhmhsHUg,388
77
+ cppcheck/data/platforms/pic8.xml,sha256=QLLIuxUK-RtzA0F-n56CQOgm-8kJaouLLTyWEPS0_7U,388
78
+ cppcheck/data/platforms/unix32-unsigned.xml,sha256=AEBVnrEFaJlsow_DTNA9w0YTN7LT2iPIp1nZAUtllsI,370
79
+ cppcheck/data/platforms/unix64-unsigned.xml,sha256=m32sIwQ5mBYMt4DO5JF9gOtwSS_g68Foa_zv8wL_coI,370
80
+ cppcheck_py-2.9.dist-info/METADATA,sha256=UA96oBjnD57JYwTx3xV6GLgsAKhr-sJZTvMUbiHU8R4,4070
81
+ cppcheck_py-2.9.dist-info/WHEEL,sha256=k8ugwGhXAI0--PEoWE0F6sXc-nX2zbZqyTgxRg_imsk,102
82
+ cppcheck_py-2.9.dist-info/entry_points.txt,sha256=UPSizlYBpWFdSR0ipWfe9B8XTsjxvELCMH_zZHNwgwI,99
83
+ cppcheck_py-2.9.dist-info/licenses/LICENSE.md,sha256=3B9dLUPFUx3-Csr06VDqXb4-YeGFDPDpg72n78ENZpM,10464
84
+ cppcheck_py-2.9.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: scikit-build-core 1.0.3
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-win_amd64
5
+
@@ -0,0 +1,4 @@
1
+ [console_scripts]
2
+ cppcheck = cppcheck:cppcheck
3
+ cppcheck-htmlreport = cppcheck:cppcheck_htmlreport
4
+
@@ -0,0 +1,191 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction, and
10
+ distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright
13
+ owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all other entities
16
+ that control, are controlled by, or are under common control with that entity.
17
+ For the purposes of this definition, "control" means (i) the power, direct or
18
+ indirect, to cause the direction or management of such entity, whether by
19
+ contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
20
+ outstanding shares, or (iii) beneficial ownership of such entity.
21
+
22
+ "You" (or "Your") shall mean an individual or Legal Entity exercising
23
+ permissions granted by this License.
24
+
25
+ "Source" form shall mean the preferred form for making modifications, including
26
+ but not limited to software source code, documentation source, and configuration
27
+ files.
28
+
29
+ "Object" form shall mean any form resulting from mechanical transformation or
30
+ translation of a Source form, including but not limited to compiled object code,
31
+ generated documentation, and conversions to other media types.
32
+
33
+ "Work" shall mean the work of authorship, whether in Source or Object form, made
34
+ available under the License, as indicated by a copyright notice that is included
35
+ in or attached to the work (an example is provided in the Appendix below).
36
+
37
+ "Derivative Works" shall mean any work, whether in Source or Object form, that
38
+ is based on (or derived from) the Work and for which the editorial revisions,
39
+ annotations, elaborations, or other modifications represent, as a whole, an
40
+ original work of authorship. For the purposes of this License, Derivative Works
41
+ shall not include works that remain separable from, or merely link (or bind by
42
+ name) to the interfaces of, the Work and Derivative Works thereof.
43
+
44
+ "Contribution" shall mean any work of authorship, including the original version
45
+ of the Work and any modifications or additions to that Work or Derivative Works
46
+ thereof, that is intentionally submitted to Licensor for inclusion in the Work
47
+ by the copyright owner or by an individual or Legal Entity authorized to submit
48
+ on behalf of the copyright owner. For the purposes of this definition,
49
+ "submitted" means any form of electronic, verbal, or written communication sent
50
+ to the Licensor or its representatives, including but not limited to
51
+ communication on electronic mailing lists, source code control systems, and
52
+ issue tracking systems that are managed by, or on behalf of, the Licensor for
53
+ the purpose of discussing and improving the Work, but excluding communication
54
+ that is conspicuously marked or otherwise designated in writing by the copyright
55
+ owner as "Not a Contribution."
56
+
57
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf
58
+ of whom a Contribution has been received by Licensor and subsequently
59
+ incorporated within the Work.
60
+
61
+ 2. Grant of Copyright License.
62
+
63
+ Subject to the terms and conditions of this License, each Contributor hereby
64
+ grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
65
+ irrevocable copyright license to reproduce, prepare Derivative Works of,
66
+ publicly display, publicly perform, sublicense, and distribute the Work and such
67
+ Derivative Works in Source or Object form.
68
+
69
+ 3. Grant of Patent License.
70
+
71
+ Subject to the terms and conditions of this License, each Contributor hereby
72
+ grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
73
+ irrevocable (except as stated in this section) patent license to make, have
74
+ made, use, offer to sell, sell, import, and otherwise transfer the Work, where
75
+ such license applies only to those patent claims licensable by such Contributor
76
+ that are necessarily infringed by their Contribution(s) alone or by combination
77
+ of their Contribution(s) with the Work to which such Contribution(s) was
78
+ submitted. If You institute patent litigation against any entity (including a
79
+ cross-claim or counterclaim in a lawsuit) alleging that the Work or a
80
+ Contribution incorporated within the Work constitutes direct or contributory
81
+ patent infringement, then any patent licenses granted to You under this License
82
+ for that Work shall terminate as of the date such litigation is filed.
83
+
84
+ 4. Redistribution.
85
+
86
+ You may reproduce and distribute copies of the Work or Derivative Works thereof
87
+ in any medium, with or without modifications, and in Source or Object form,
88
+ provided that You meet the following conditions:
89
+
90
+ You must give any other recipients of the Work or Derivative Works a copy of
91
+ this License; and
92
+ You must cause any modified files to carry prominent notices stating that You
93
+ changed the files; and
94
+ You must retain, in the Source form of any Derivative Works that You distribute,
95
+ all copyright, patent, trademark, and attribution notices from the Source form
96
+ of the Work, excluding those notices that do not pertain to any part of the
97
+ Derivative Works; and
98
+ If the Work includes a "NOTICE" text file as part of its distribution, then any
99
+ Derivative Works that You distribute must include a readable copy of the
100
+ attribution notices contained within such NOTICE file, excluding those notices
101
+ that do not pertain to any part of the Derivative Works, in at least one of the
102
+ following places: within a NOTICE text file distributed as part of the
103
+ Derivative Works; within the Source form or documentation, if provided along
104
+ with the Derivative Works; or, within a display generated by the Derivative
105
+ Works, if and wherever such third-party notices normally appear. The contents of
106
+ the NOTICE file are for informational purposes only and do not modify the
107
+ License. You may add Your own attribution notices within Derivative Works that
108
+ You distribute, alongside or as an addendum to the NOTICE text from the Work,
109
+ provided that such additional attribution notices cannot be construed as
110
+ modifying the License.
111
+ You may add Your own copyright statement to Your modifications and may provide
112
+ additional or different license terms and conditions for use, reproduction, or
113
+ distribution of Your modifications, or for any such Derivative Works as a whole,
114
+ provided Your use, reproduction, and distribution of the Work otherwise complies
115
+ with the conditions stated in this License.
116
+
117
+ 5. Submission of Contributions.
118
+
119
+ Unless You explicitly state otherwise, any Contribution intentionally submitted
120
+ for inclusion in the Work by You to the Licensor shall be under the terms and
121
+ conditions of this License, without any additional terms or conditions.
122
+ Notwithstanding the above, nothing herein shall supersede or modify the terms of
123
+ any separate license agreement you may have executed with Licensor regarding
124
+ such Contributions.
125
+
126
+ 6. Trademarks.
127
+
128
+ This License does not grant permission to use the trade names, trademarks,
129
+ service marks, or product names of the Licensor, except as required for
130
+ reasonable and customary use in describing the origin of the Work and
131
+ reproducing the content of the NOTICE file.
132
+
133
+ 7. Disclaimer of Warranty.
134
+
135
+ Unless required by applicable law or agreed to in writing, Licensor provides the
136
+ Work (and each Contributor provides its Contributions) on an "AS IS" BASIS,
137
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
138
+ including, without limitation, any warranties or conditions of TITLE,
139
+ NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
140
+ solely responsible for determining the appropriateness of using or
141
+ redistributing the Work and assume any risks associated with Your exercise of
142
+ permissions under this License.
143
+
144
+ 8. Limitation of Liability.
145
+
146
+ In no event and under no legal theory, whether in tort (including negligence),
147
+ contract, or otherwise, unless required by applicable law (such as deliberate
148
+ and grossly negligent acts) or agreed to in writing, shall any Contributor be
149
+ liable to You for damages, including any direct, indirect, special, incidental,
150
+ or consequential damages of any character arising as a result of this License or
151
+ out of the use or inability to use the Work (including but not limited to
152
+ damages for loss of goodwill, work stoppage, computer failure or malfunction, or
153
+ any and all other commercial damages or losses), even if such Contributor has
154
+ been advised of the possibility of such damages.
155
+
156
+ 9. Accepting Warranty or Additional Liability.
157
+
158
+ While redistributing the Work or Derivative Works thereof, You may choose to
159
+ offer, and charge a fee for, acceptance of support, warranty, indemnity, or
160
+ other liability obligations and/or rights consistent with this License. However,
161
+ in accepting such obligations, You may act only on Your own behalf and on Your
162
+ sole responsibility, not on behalf of any other Contributor, and only if You
163
+ agree to indemnify, defend, and hold each Contributor harmless for any liability
164
+ incurred by, or claims asserted against, such Contributor by reason of your
165
+ accepting any such warranty or additional liability.
166
+
167
+ END OF TERMS AND CONDITIONS
168
+
169
+ APPENDIX: How to apply the Apache License to your work
170
+
171
+ To apply the Apache License to your work, attach the following boilerplate
172
+ notice, with the fields enclosed by brackets "[]" replaced with your own
173
+ identifying information. (Don't include the brackets!) The text should be
174
+ enclosed in the appropriate comment syntax for the file format. We also
175
+ recommend that a file or class name and description of purpose be included on
176
+ the same "printed page" as the copyright notice for easier identification within
177
+ third-party archives.
178
+
179
+ Copyright [yyyy] [name of copyright owner]
180
+
181
+ Licensed under the Apache License, Version 2.0 (the "License");
182
+ you may not use this file except in compliance with the License.
183
+ You may obtain a copy of the License at
184
+
185
+ http://www.apache.org/licenses/LICENSE-2.0
186
+
187
+ Unless required by applicable law or agreed to in writing, software
188
+ distributed under the License is distributed on an "AS IS" BASIS,
189
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
190
+ See the License for the specific language governing permissions and
191
+ limitations under the License.