diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-11-20 20:04:04 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-11-20 21:39:46 +0100 |
commit | a1f0fb50d3fd83a087798f324c198b765aaafef1 (patch) | |
tree | b6c6feff1e208bdbaff0ac4f4c4d427a5d8493cf /dev-util | |
parent | dev-util/clazy: 1.7-r1 amd64 stable (diff) | |
download | gentoo-a1f0fb50d3fd83a087798f324c198b765aaafef1.tar.gz gentoo-a1f0fb50d3fd83a087798f324c198b765aaafef1.tar.bz2 gentoo-a1f0fb50d3fd83a087798f324c198b765aaafef1.zip |
dev-util/clazy: Drop 1.7 (r0)
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/clazy/clazy-1.7.ebuild | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/dev-util/clazy/clazy-1.7.ebuild b/dev-util/clazy/clazy-1.7.ebuild deleted file mode 100644 index a364a426b700..000000000000 --- a/dev-util/clazy/clazy-1.7.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="Compiler plugin which allows clang to understand Qt semantics" -HOMEPAGE="https://apps.kde.org/en/clazy" -SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz" - -LICENSE="LGPL-2+" -SLOT="0" -KEYWORDS="amd64" -IUSE="" - -RDEPEND=" - >=sys-devel/clang-5.0:= - >=sys-devel/llvm-5.0:= -" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}/${P}-gnuinstalldirs.patch" ) - -src_prepare() { - cmake_src_prepare - - sed -e '/install(FILES README.md COPYING-LGPL2.txt checks.json DESTINATION/d' \ - -i CMakeLists.txt || die -} - -src_configure() { - # this package requires both llvm and clang of the same version. - # clang pulls in the equivalent llvm version, but not vice versa. - # so, we must find llvm based on the installed clang version. - # bug #681568 - local clang_version=$(best_version "sys-devel/clang") - export LLVM_ROOT="/usr/lib/llvm/$(ver_cut 1 ${clang_version##sys-devel/clang-})" - cmake_src_configure -} |