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