Gentoo Archives: gentoo-commits

From: "Sergei Trofimovich (slyfox)" <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/include-what-you-use: include-what-you-use-3.5.ebuild ChangeLog
Date: Sun, 30 Nov 2014 18:03:43
Message-Id: 20141130180340.576A7B3BC@oystercatcher.gentoo.org
1 slyfox 14/11/30 18:03:40
2
3 Modified: ChangeLog
4 Added: include-what-you-use-3.5.ebuild
5 Log:
6 Version bump (bug #531218 by August Hörandl).
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
9
10 Revision Changes Path
11 1.4 dev-util/include-what-you-use/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/include-what-you-use/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/include-what-you-use/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/include-what-you-use/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/include-what-you-use/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 5 Feb 2014 21:01:40 -0000 1.3
24 +++ ChangeLog 30 Nov 2014 18:03:40 -0000 1.4
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-util/include-what-you-use
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/include-what-you-use/ChangeLog,v 1.3 2014/02/05 21:01:40 slyfox Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/include-what-you-use/ChangeLog,v 1.4 2014/11/30 18:03:40 slyfox Exp $
30 +
31 +*include-what-you-use-3.5 (30 Nov 2014)
32 +
33 + 30 Nov 2014; Sergei Trofimovich <slyfox@g.o>
34 + +include-what-you-use-3.5.ebuild:
35 + Version bump (bug #531218 by August Hörandl).
36
37 *include-what-you-use-3.4 (05 Feb 2014)
38
39
40
41
42 1.1 dev-util/include-what-you-use/include-what-you-use-3.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/include-what-you-use/include-what-you-use-3.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/include-what-you-use/include-what-you-use-3.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: include-what-you-use-3.5.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-util/include-what-you-use/include-what-you-use-3.5.ebuild,v 1.1 2014/11/30 18:03:40 slyfox Exp $
52
53 EAPI=5
54 inherit eutils cmake-utils flag-o-matic
55
56 DESCRIPTION="find unused include directives in C/C++ programs"
57 HOMEPAGE="https://code.google.com/p/include-what-you-use/"
58 SRC_URI="http://include-what-you-use.com/downloads/include-what-you-use-3.5.src.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63
64 RDEPEND="=sys-devel/llvm-3.5*
65 =sys-devel/clang-3.5*"
66 DEPEND="${RDEPEND}"
67
68 S=${WORKDIR}/${PN}
69
70 src_prepare() {
71 epatch_user
72 }
73
74 src_configure() {
75 append-ldflags -L$(llvm-config --libdir)
76
77 local mycmakeargs=(
78 -DLLVM_PATH=$(llvm-config --libdir)
79 )
80 cmake-utils_src_configure
81 }