Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/clazy/
Date: Sun, 10 May 2020 11:31:37
Message-Id: 1589110278.4e30ceffa16a5a5282f10dce17cc7892363f6df5.asturm@gentoo
1 commit: 4e30ceffa16a5a5282f10dce17cc7892363f6df5
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 10 10:47:00 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun May 10 11:31:18 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e30ceff
7
8 dev-util/clazy: Drop 1.5-r1
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-util/clazy/Manifest | 1 -
14 dev-util/clazy/clazy-1.5-r1.ebuild | 49 --------------------------------------
15 2 files changed, 50 deletions(-)
16
17 diff --git a/dev-util/clazy/Manifest b/dev-util/clazy/Manifest
18 index 3a2f8b7277a..85c2cfdf47b 100644
19 --- a/dev-util/clazy/Manifest
20 +++ b/dev-util/clazy/Manifest
21 @@ -1,2 +1 @@
22 -DIST clazy-1.5.tar.xz 352344 BLAKE2B 0f7200900f1a8bcad3020cf98522e3ac9ba01dddc9b2200f08a8a86102e4389af7a4a86e1832ee4c0e750267948a908627032385a01af94d8d0ae5f438114b9e SHA512 863cb9609d02a2260b61bc6cb3e6d8a84975d3b4e4f1c94a82e8c600d95a28483c323f47ac39c39ecef24d0f51871b358055868c63a49b136cf8ee3060df5a52
23 DIST clazy-1.6.tar.xz 364292 BLAKE2B 01da58e34d5a7cb1e812d10264cebe15e90369589535e07f2c9f4520971f2e95b2c70494e99e34f7077957ec1bf01352fa6a72a64f0572e8a5db422267ab727a SHA512 dc7cb9590bbc40a2ac51abe305b6520ebc1ff7128ff21b4f6111d18f14eb8c2ab66d907636a18c7508143b708e70ba69f9d6fad88ffce12dec981a9bdd0edcc0
24
25 diff --git a/dev-util/clazy/clazy-1.5-r1.ebuild b/dev-util/clazy/clazy-1.5-r1.ebuild
26 deleted file mode 100644
27 index cc5cf804601..00000000000
28 --- a/dev-util/clazy/clazy-1.5-r1.ebuild
29 +++ /dev/null
30 @@ -1,49 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit cmake
37 -
38 -DESCRIPTION="Compiler plugin which allows clang to understand Qt semantics"
39 -HOMEPAGE="https://cgit.kde.org/clazy.git/tree/README.md"
40 -SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
41 -
42 -LICENSE="LGPL-2+"
43 -SLOT="0"
44 -KEYWORDS="amd64"
45 -IUSE=""
46 -
47 -RDEPEND="
48 - <sys-devel/clang-10:=
49 - >=sys-devel/llvm-3.8:=
50 -"
51 -DEPEND="${RDEPEND}"
52 -
53 -DOCS=( README.md )
54 -
55 -src_prepare() {
56 - cmake_src_prepare
57 -
58 - sed -e '/install(FILES README.md COPYING-LGPL2.txt checks.json DESTINATION/d' \
59 - -i CMakeLists.txt || die
60 -
61 - sed -e 's|${MAN_INSTALL_DIR}|share/man/man1|' \
62 - -i docs/man/CMakeLists.txt || die
63 -}
64 -
65 -src_configure() {
66 - # this package requires both llvm and clang of the same version.
67 - # clang pulls in the equivalent llvm version, but not vice versa.
68 - # so, we must find llvm based on the installed clang version.
69 - # bug #681568
70 - local clang_version=$(best_version "<sys-devel/clang-10")
71 - export LLVM_ROOT="/usr/lib/llvm/$(ver_cut 1 ${clang_version##sys-devel/clang-})"
72 - cmake_src_configure
73 -}
74 -
75 -src_install() {
76 - cmake_src_install
77 - mv "${D}"/usr/share/doc/clazy/* "${D}"/usr/share/doc/${PF} || die
78 - rmdir "${D}"/usr/share/doc/clazy || die
79 -}