mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
dev-util/cppcheck: drop 2.6.3, 2.8.1, 2.8.1-r1, 2.8.2
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
@@ -1,4 +1 @@
|
||||
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
|
||||
|
||||
@@ -1,107 +0,0 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..10} )
|
||||
DISTUTILS_USE_SETUPTOOLS=manual
|
||||
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 +z3"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
dev-libs/tinyxml2:=
|
||||
htmlreport? (
|
||||
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
|
||||
dev-qt/qtprintsupport:5
|
||||
)
|
||||
z3? ( sci-mathematics/z3:= )
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
app-text/docbook-xsl-stylesheets
|
||||
dev-libs/libxslt
|
||||
virtual/pkgconfig
|
||||
qt5? ( dev-qt/linguist-tools:5 )
|
||||
test? (
|
||||
htmlreport? ( dev-python/unittest-or-fail[${PYTHON_USEDEP}] )
|
||||
)
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DHAVE_RULES="$(usex pcre)"
|
||||
-DBUILD_GUI="$(usex qt5)"
|
||||
-DUSE_Z3="$(usex z3)"
|
||||
-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
|
||||
}
|
||||
|
||||
src_test() {
|
||||
cmake_src_test
|
||||
|
||||
# TODO: Needs some hackery to find the right binary
|
||||
#if use htmlreport ; then
|
||||
# distutils-r1_src_test
|
||||
#fi
|
||||
}
|
||||
|
||||
python_test() {
|
||||
pushd htmlreport || die
|
||||
eunittest
|
||||
popd || die
|
||||
}
|
||||
|
||||
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
|
||||
|
||||
if use htmlreport ; then
|
||||
pushd htmlreport || die
|
||||
distutils-r1_src_install
|
||||
popd || die
|
||||
fi
|
||||
|
||||
dodoc -r tools/triage
|
||||
}
|
||||
@@ -1,119 +0,0 @@
|
||||
# Copyright 1999-2023 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_{9..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
|
||||
dev-qt/qtprintsupport: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}]' python3_10)
|
||||
)
|
||||
)
|
||||
"
|
||||
|
||||
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
|
||||
}
|
||||
@@ -1,105 +0,0 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_SETUPTOOLS=manual
|
||||
PYTHON_COMPAT=( python3_{9..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"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
dev-libs/tinyxml2:=
|
||||
htmlreport? (
|
||||
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
|
||||
dev-qt/qtprintsupport:5
|
||||
)
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
app-text/docbook-xsl-stylesheets
|
||||
dev-libs/libxslt
|
||||
virtual/pkgconfig
|
||||
qt5? ( dev-qt/linguist-tools:5 )
|
||||
test? (
|
||||
htmlreport? ( dev-python/unittest-or-fail[${PYTHON_USEDEP}] )
|
||||
)
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
}
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
src_test() {
|
||||
cmake_src_test
|
||||
|
||||
# TODO: Needs some hackery to find the right binary
|
||||
#if use htmlreport ; then
|
||||
# distutils-r1_src_test
|
||||
#fi
|
||||
}
|
||||
|
||||
python_test() {
|
||||
pushd htmlreport || die
|
||||
eunittest
|
||||
popd || die
|
||||
}
|
||||
|
||||
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
|
||||
|
||||
if use htmlreport ; then
|
||||
pushd htmlreport || die
|
||||
distutils-r1_src_install
|
||||
popd || die
|
||||
fi
|
||||
|
||||
dodoc -r tools/triage
|
||||
}
|
||||
@@ -1,119 +0,0 @@
|
||||
# Copyright 1999-2023 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_{9..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
|
||||
dev-qt/qtprintsupport: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}]' python3_10)
|
||||
)
|
||||
)
|
||||
"
|
||||
|
||||
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
|
||||
}
|
||||
@@ -7,9 +7,6 @@
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="htmlreport">install cppcheck-htmlreport</flag>
|
||||
<flag name="z3">
|
||||
Enable support for <pkg>sci-mathematics/z3</pkg> backend
|
||||
</flag>
|
||||
</use>
|
||||
<upstream>
|
||||
<remote-id type="github">danmar/cppcheck</remote-id>
|
||||
|
||||
Reference in New Issue
Block a user