Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/include-what-you-use/
Date: Wed, 25 Apr 2018 19:06:56
Message-Id: 1524683207.b36c9fccf0d17204c30aa1fae581c0e60d782c87.slyfox@gentoo
1 commit: b36c9fccf0d17204c30aa1fae581c0e60d782c87
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 25 19:06:03 2018 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 25 19:06:47 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b36c9fcc
7
8 dev-util/include-what-you-use: bump up to 6.0
9
10 Package-Manager: Portage-2.3.28, Repoman-2.3.9
11
12 dev-util/include-what-you-use/Manifest | 1 +
13 .../include-what-you-use-6.0.ebuild | 58 ++++++++++++++++++++++
14 2 files changed, 59 insertions(+)
15
16 diff --git a/dev-util/include-what-you-use/Manifest b/dev-util/include-what-you-use/Manifest
17 index 57b3c2e2b19..44c429cc6c9 100644
18 --- a/dev-util/include-what-you-use/Manifest
19 +++ b/dev-util/include-what-you-use/Manifest
20 @@ -1,2 +1,3 @@
21 DIST include-what-you-use-4.0.src.tar.gz 437340 BLAKE2B 744f7893169a637636107e23cae356db7f12aa01fefd39626600b3fa3dbd77688503e7332a2dbc673339145692625fd8fa3f10e0d405a77e2d5586e6bfeb0378 SHA512 c96b78ec8f8289bfd7830acaf533aea0077bb36311d3b8bb7f31464c1b3a5b3f353b24e81ffc581811b4083d3b5959e4e947e3a3d16cb7c77de00b05b9972a90
22 DIST include-what-you-use-5.0.src.tar.gz 439081 BLAKE2B 85246aa5333a073bb195b873d7bfe084a56c343cece92322706717ce699bcd75b737203858277202791ec0eb91f560b06a371e902cb175cdb2858562a4830e74 SHA512 9d4a9717a3a3f6752f8bdd1392b6d7a5e8b8dc277ef46a50f24185a089360380e1da92a61fd150598843f5c24cff03e74bc674e57579960d977acde755e34c52
23 +DIST include-what-you-use-6.0.src.tar.gz 440406 BLAKE2B 485a61dd4f72c158ad9c798c8121d7af9134d79b94c9c30c14674a62007e9fc05acc7e2341cc3282288611beb9138768bf11cd2d73efed372adab83e90b268db SHA512 2bf2593dba252d870074125f976a237e901e969323969f2c8fb030e8376bb230f1d5c2baecc8cd8fad7099e83589c7666c44cd178d2094f6e883cace1e53ad90
24
25 diff --git a/dev-util/include-what-you-use/include-what-you-use-6.0.ebuild b/dev-util/include-what-you-use/include-what-you-use-6.0.ebuild
26 new file mode 100644
27 index 00000000000..7cfe58259cc
28 --- /dev/null
29 +++ b/dev-util/include-what-you-use/include-what-you-use-6.0.ebuild
30 @@ -0,0 +1,58 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
37 +
38 +inherit cmake-utils flag-o-matic llvm python-single-r1
39 +
40 +DESCRIPTION="Find unused include directives in C/C++ programs"
41 +HOMEPAGE="https://include-what-you-use.org/"
42 +SRC_URI="https://github.com/${PN}/${PN}/archive/clang_${PV}.tar.gz -> ${P}.src.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +LLVM_MAX_SLOT=6
49 +
50 +RDEPEND="sys-devel/llvm:${LLVM_MAX_SLOT}
51 + sys-devel/clang:${LLVM_MAX_SLOT}
52 + ${PYTHON_DEPS}
53 +"
54 +DEPEND="${RDEPEND}"
55 +
56 +REQUIRED_USE=${PYTHON_REQUIRED_USE}
57 +
58 +S=${WORKDIR}/${PN}-clang_${PV}
59 +
60 +pkg_setup() {
61 + llvm_pkg_setup
62 + python-single-r1_pkg_setup
63 +}
64 +
65 +src_prepare() {
66 + cmake-utils_src_prepare
67 + python_fix_shebang .
68 +}
69 +
70 +src_configure() {
71 + local mycmakeargs=(
72 + -DIWYU_LLVM_INCLUDE_PATH=$(llvm-config --includedir)
73 + -DIWYU_LLVM_LIB_PATH=$(llvm-config --libdir)
74 +
75 + # Note [llvm install path]
76 + # Unfortunately all binaries using clang driver
77 + # have to reside at the same path depth as
78 + # 'clang' binary itself. See bug #625972
79 + # Thus as a hack we install it to the same directory
80 + # as llvm/clang itself.
81 + -DCMAKE_INSTALL_PREFIX="$(get_llvm_prefix "${LLVM_MAX_SLOT}")"
82 + )
83 + cmake-utils_src_configure
84 +}
85 +
86 +src_test() {
87 + "${EPYTHON}" run_iwyu_tests.py
88 +}