From ef188ada4d7af85d45a874a1a3da2547312280f4 Mon Sep 17 00:00:00 2001 From: Stephen Arnold Date: Sun, 5 May 2019 11:31:30 -0700 Subject: dev-util/cccc: rev-bump for eapi migration and QA cleanup * use EAPI 6, filter lto flags, clean up QA issues Bug: https://bugs.gentoo.org/651446 Package-Manager: Portage-2.3.64, Repoman-2.3.12 Signed-off-by: Steve Arnold --- dev-util/cccc/cccc-3.1.5-r1.ebuild | 70 ++++++++++++++++++++++++++++++++++++++ dev-util/cccc/cccc-3.1.5.ebuild | 70 -------------------------------------- 2 files changed, 70 insertions(+), 70 deletions(-) create mode 100644 dev-util/cccc/cccc-3.1.5-r1.ebuild delete mode 100644 dev-util/cccc/cccc-3.1.5.ebuild (limited to 'dev-util') diff --git a/dev-util/cccc/cccc-3.1.5-r1.ebuild b/dev-util/cccc/cccc-3.1.5-r1.ebuild new file mode 100644 index 000000000000..a26523720d4b --- /dev/null +++ b/dev-util/cccc/cccc-3.1.5-r1.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils toolchain-funcs flag-o-matic + +DESCRIPTION="Source metrics (line counts, complexity, etc) for Java and C++" +HOMEPAGE="http://sarnold.github.io/cccc/" +if [[ ${PV} = 9999* ]]; then + EGIT_REPO_URI="https://github.com/sarnold/cccc.git" + EGIT_BRANCH="master" + inherit git-r3 +else + SRC_URI="https://github.com/sarnold/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +fi + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="apidoc debug doc mfc" + +RDEPEND="" +DEPEND="${RDEPEND} + apidoc? ( app-doc/doxygen[dot] ) + " + +src_prepare() { + is-flagq -flto* && filter-flags -flto* -fuse-linker-plugin + use mfc && eapply "${FILESDIR}"/${PN}-c_dialect.patch + default + +} + +src_compile() { + tc-export CC CXX LD AS AR NM RANLIB STRIP OBJCOPY + if use debug ; then + DEBUG="true" emake CCC=$(tc-getCXX) CC=$(tc-getCC) cccc + else + emake CCC=$(tc-getCXX) CC=$(tc-getCC) cccc + fi + + use apidoc && emake CCC=$(tc-getCXX) metrics docs +} + +src_test() { + emake CCC=$(tc-getCXX) test +} + +src_install() { + dobin cccc/cccc + + dodoc README.md + + if use mfc ; then + insinto /usr/share/doc/${PF} + doins "${FILESDIR}"/cccc-MFC-dialect.opt + fi + + if use doc ; then + insinto /usr/share/doc/${PF}/html + doins cccc/*.html || die "html docs failed" + if use apidoc ; then + insinto /usr/share/doc/${PF}/html/api + doins -r doxygen/html/* || die "dox failed" + insinto /usr/share/doc/${PF}/html/metrics + doins ccccout/* || die "metrics failed" + fi + fi +} diff --git a/dev-util/cccc/cccc-3.1.5.ebuild b/dev-util/cccc/cccc-3.1.5.ebuild deleted file mode 100644 index 07042e9343cb..000000000000 --- a/dev-util/cccc/cccc-3.1.5.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils toolchain-funcs flag-o-matic - -DESCRIPTION="Source metrics (line counts, complexity, etc) for Java and C++" -HOMEPAGE="http://sarnold.github.io/cccc/" -if [[ ${PV} = 9999* ]]; then - EGIT_REPO_URI="https://github.com/sarnold/cccc.git" - EGIT_BRANCH="master" - inherit git-r3 -else - SRC_URI="https://github.com/sarnold/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -fi - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="apidoc debug doc mfc" - -RDEPEND="" -DEPEND="${RDEPEND} - apidoc? ( app-doc/doxygen[dot] ) - " - -MAKEOPTS="-j1" - -src_prepare() { - use mfc && epatch "${FILESDIR}"/${PN}-c_dialect.patch -} - -src_compile() { - if use debug ; then - export STRIP_MASK="*/bin/*" - DEBUG="true" emake CCC=$(tc-getCXX) CC=$(tc-getCC) cccc - else - emake CCC=$(tc-getCXX) CC=$(tc-getCC) cccc - fi - - use apidoc && emake CCC=$(tc-getCXX) metrics docs -} - -src_test() { - emake CCC=$(tc-getCXX) test -} - -src_install() { - dobin cccc/cccc - - dodoc README.md - - if use mfc ; then - dodoc "${FILESDIR}"/cccc-MFC-dialect.opt - docompress -x "/usr/share/doc/${PF}/cccc-MFC-dialect.opt" - fi - - if use doc ; then - dodoc CHANGELOG.md HISTORY.md - dohtml cccc/*.html || die "html docs failed" - if use apidoc ; then - docinto api - dohtml -A svg -r doxygen/html || die "dox failed" - docompress -x "/usr/share/doc/${PF}/api" - docinto metrics - dohtml ccccout/* || die "metrics failed" - fi - fi -} -- cgit v1.2.3-65-gdbad