From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cppcheck/
Date: Mon, 29 Aug 2022 19:06:22 +0000 (UTC) [thread overview]
Message-ID: <1661799939.677d08070a26e93f96194e15cf368232120b3182.sam@gentoo> (raw)
commit: 677d08070a26e93f96194e15cf368232120b3182
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 29 19:04:23 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 29 19:05:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=677d0807
dev-util/cppcheck: add 2.9
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-util/cppcheck/Manifest | 1 +
dev-util/cppcheck/cppcheck-2.9.ebuild | 120 ++++++++++++++++++++++++++++++++++
2 files changed, 121 insertions(+)
diff --git a/dev-util/cppcheck/Manifest b/dev-util/cppcheck/Manifest
index 5e11ee2b33d7..2f2dc68d633e 100644
--- a/dev-util/cppcheck/Manifest
+++ b/dev-util/cppcheck/Manifest
@@ -1,3 +1,4 @@
DIST cppcheck-2.6.3.tar.gz 3880340 BLAKE2B ef83538a0aa867dd0c0bd6165b41921335256ed0372a4990ad85151ab5e87a79bde7958be43887f07a4bbf372b9992339b75ddeae7ed8ea767b83c028dfc56db SHA512 e59b4b4659c2b4fa2c16dcb548f7ee3027555dddc289ef8b54fe186af0396b6f7caa23d91bf1142ece62908b56fe9f5ba013191817322815681994093310fb37
DIST cppcheck-2.8.1.tar.gz 3921391 BLAKE2B d61c4a8a3e88441f0a65090eddacaa34bda91ba50ce92e79c122525524368ade49d24f13f343a5a856a3014e904495e87db2d774146e871af1738d55f1a52728 SHA512 ff5a9955498101a2d061a431d0f8ed42267627b3cd029302871ee781a0e4039aa531dd47c2d44d1f3952b5e5bd3b65c9b32a10a9b1922ef466f440f8c4417e28
DIST cppcheck-2.8.2.tar.gz 3921806 BLAKE2B b48a3f4163fec491d8a7f9eb4957a140cd33b852d1778974c383ca5148aa252cee412b4616cbf49b622ee5b4ccddcb1aa60b217284f2c01c020df606a1e4fe5b SHA512 595645cede2d1b801127747cf19c66ebc73a97c4c3f5c9af1fbf865a995f9b7ab4027a16d73cf2aa638e51569be275a26b92909d548ddb40e185978a247fb5cd
+DIST cppcheck-2.9.tar.gz 3916529 BLAKE2B 5d75328e1fcd389376630502ad7427d3473392a9467e8731e6cd7c2c6349efccc05eddd7eca4cb361930661d2383a8d316e33bd3609b9333a710153d199e326d SHA512 69204a7ceac087470201482894e6422b99d0849f08641e80b2e341c9d164a1d2095e3a08a1fba2e9fa681783d07fe7277b30ea0cc0bf582431b5d13ab2f58c1f
diff --git a/dev-util/cppcheck/cppcheck-2.9.ebuild b/dev-util/cppcheck/cppcheck-2.9.ebuild
new file mode 100644
index 000000000000..0ab87ba97840
--- /dev/null
+++ b/dev-util/cppcheck/cppcheck-2.9.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Python is used both for htmlreport (USE flag) but also for various
+# helper scripts in /usr/share/cppcheck.
+DISTUTILS_OPTIONAL=1
+DISTUTILS_USE_PEP517=setuptools
+DISTUTILS_SINGLE_IMPL=1
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1 cmake
+
+DESCRIPTION="Static analyzer of C/C++ code"
+HOMEPAGE="https://github.com/danmar/cppcheck"
+SRC_URI="https://github.com/danmar/cppcheck/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~sparc ~x86"
+IUSE="htmlreport pcre qt5 test"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ ${PYTHON_DEPS}
+ dev-libs/tinyxml2:=
+ htmlreport? (
+ $(python_gen_cond_dep '
+ dev-python/pygments[${PYTHON_USEDEP}]
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ ')
+ )
+ pcre? ( dev-libs/libpcre )
+ qt5? (
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qthelp:5
+ dev-qt/qtprintsupport:5
+ dev-qt/qtwidgets:5
+ )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ app-text/docbook-xsl-stylesheets
+ dev-libs/libxslt
+ virtual/pkgconfig
+ htmlreport? ( ${DISTUTILS_DEPS} )
+ qt5? ( dev-qt/linguist-tools:5 )
+ test? (
+ htmlreport? (
+ $(python_gen_cond_dep 'dev-python/unittest-or-fail[${PYTHON_USEDEP}]')
+ )
+ )
+"
+
+src_prepare() {
+ cmake_src_prepare
+
+ distutils-r1_src_prepare
+}
+
+python_prepare_all() {
+ distutils-r1_python_prepare_all
+
+ rm htmlreport/test_htmlreport.py || die
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DHAVE_RULES="$(usex pcre)"
+ -DBUILD_GUI="$(usex qt5)"
+ -DFILESDIR="${EPREFIX}/usr/share/${PN}/"
+ -DENABLE_OSS_FUZZ=OFF
+ -DUSE_BUNDLED_TINYXML2=OFF
+ -DBUILD_TESTS="$(usex test)"
+ )
+
+ cmake_src_configure
+}
+
+src_compile() {
+ cmake_src_compile
+
+ if use htmlreport ; then
+ pushd htmlreport || die
+ distutils-r1_src_compile
+ popd || die
+ fi
+}
+
+python_install() {
+ if use htmlreport ; then
+ pushd htmlreport || die
+ distutils-r1_python_install
+ popd || die
+ fi
+}
+
+python_install_all() {
+ distutils-r1_python_install_all
+
+ python_fix_shebang "${ED}"/usr/share/cppcheck/*
+}
+
+src_install() {
+ cmake_src_install
+
+ insinto /usr/share/${PN}/cfg
+ doins cfg/*.cfg
+
+ if use qt5 ; then
+ dobin "${WORKDIR}/${P}_build/bin/${PN}-gui"
+ dodoc gui/{projectfile.txt,gui.${PN}}
+ fi
+
+ distutils-r1_src_install
+
+ dodoc -r tools/triage
+}
next reply other threads:[~2022-08-29 19:06 UTC|newest]
Thread overview: 106+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-29 19:06 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-08 7:04 [gentoo-commits] repo/gentoo:master commit in: dev-util/cppcheck/ Arthur Zamarin
2025-03-01 7:54 Joonas Niilola
2025-03-01 7:54 Joonas Niilola
2024-12-31 9:08 Andreas Sturmlechner
2024-12-31 9:08 Andreas Sturmlechner
2024-09-11 18:35 Arthur Zamarin
2024-09-10 10:25 Arthur Zamarin
2024-09-09 20:44 Arthur Zamarin
2024-09-09 20:44 Arthur Zamarin
2024-07-15 4:35 Sam James
2024-07-15 4:35 Sam James
2024-05-28 20:49 Sam James
2024-05-28 12:04 Michał Górny
2024-05-28 11:52 Michał Górny
2023-12-23 17:38 Sam James
2023-09-19 9:06 Sam James
2023-06-01 3:39 Sam James
2023-05-27 6:34 Arthur Zamarin
2023-05-27 6:34 Arthur Zamarin
2023-05-06 11:47 Arthur Zamarin
2023-05-03 6:33 Arthur Zamarin
2023-05-01 9:53 Sam James
2023-04-13 15:19 Matthias Maier
2023-03-07 0:18 Yixun Lan
2022-11-23 7:53 WANG Xuerui
2022-08-06 2:55 Sam James
2022-07-13 4:32 Sam James
2022-07-10 23:50 Sam James
2022-07-09 9:55 Sam James
2022-02-15 16:19 Sam James
2022-02-14 10:35 Jakov Smolić
2022-01-03 12:37 Sam James
2022-01-02 5:52 Sam James
2022-01-02 3:05 Sam James
2021-11-23 22:19 Sam James
2021-11-23 22:07 Sam James
2021-11-23 21:07 Sam James
2021-11-23 21:07 Sam James
2021-11-23 20:57 Sam James
2021-11-22 15:52 David Seifert
2021-10-15 6:00 Agostino Sarubbo
2021-10-14 16:38 Sam James
2021-10-14 13:40 Agostino Sarubbo
2021-10-14 7:33 Sam James
2021-08-03 23:37 Sam James
2021-06-03 8:23 Sam James
2021-05-31 7:58 Sam James
2021-05-31 7:58 Sam James
2021-04-29 1:30 Sam James
2020-12-13 18:23 Matthias Maier
2020-12-13 18:23 Matthias Maier
2020-12-05 14:58 Guilherme Amadio
2020-12-05 14:58 Guilherme Amadio
2020-12-04 5:37 Matthias Maier
2020-06-20 18:59 Sergei Trofimovich
2020-03-29 17:56 Mart Raudsepp
2020-02-13 19:52 Sergei Trofimovich
2020-02-11 19:50 Agostino Sarubbo
2020-02-11 19:43 Agostino Sarubbo
2020-02-11 12:16 Michał Górny
2019-07-31 21:11 Aaron Bauman
2019-06-12 7:25 Sergei Trofimovich
2019-05-24 16:20 Matthias Maier
2019-05-24 16:20 Matthias Maier
2019-03-24 16:52 Matthias Maier
2019-03-24 16:52 Matthias Maier
2019-02-04 5:11 Jeroen Roovers
2019-01-18 9:27 Jeroen Roovers
2019-01-18 9:27 Jeroen Roovers
2019-01-16 15:36 Mikle Kolyada
2019-01-03 14:58 Sergei Trofimovich
2019-01-03 9:27 Sergei Trofimovich
2019-01-02 19:01 Thomas Deutschmann
2018-12-21 15:33 Jeroen Roovers
2018-12-12 15:19 Jeroen Roovers
2018-12-12 15:11 Jeroen Roovers
2018-09-18 23:04 Matt Turner
2018-08-11 9:06 Andreas Sturmlechner
2018-08-11 9:06 Andreas Sturmlechner
2018-08-11 9:06 Andreas Sturmlechner
2018-06-26 18:46 Pacho Ramos
2018-01-19 20:05 Michael Weber
2017-12-27 11:08 Sergei Trofimovich
2017-12-25 3:16 Michael Palimaka
2017-12-23 20:24 Sergei Trofimovich
2017-12-18 16:51 Jason Zaman
2017-11-23 21:44 Andreas Sturmlechner
2017-11-22 22:01 Andreas Sturmlechner
2017-11-22 22:01 Andreas Sturmlechner
2017-11-22 22:01 Andreas Sturmlechner
2017-11-22 22:01 Andreas Sturmlechner
2017-10-12 9:11 Sergei Trofimovich
2017-10-12 9:11 Sergei Trofimovich
2017-07-30 9:38 Michał Górny
2017-05-16 20:34 Michael Weber
2017-04-17 8:02 Agostino Sarubbo
2017-04-05 12:55 Agostino Sarubbo
2017-04-03 21:50 Michael Weber
2017-01-12 8:19 Michael Weber
2017-01-12 8:19 Michael Weber
2016-08-04 12:23 Michael Weber
2016-06-13 19:39 Michael Weber
2016-05-07 21:55 Michael Weber
2016-03-14 22:12 Agostino Sarubbo
2015-09-15 15:16 Michael Weber
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1661799939.677d08070a26e93f96194e15cf368232120b3182.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox