Gentoo Archives: gentoo-commits

From: "Christoph Junghans (ottxor)" <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/byfl: byfl-1.1.ebuild ChangeLog
Date: Tue, 03 Feb 2015 20:57:36
Message-Id: 20150203205733.961AA10FD5@oystercatcher.gentoo.org
1 ottxor 15/02/03 20:57:33
2
3 Modified: ChangeLog
4 Added: byfl-1.1.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key C2000586)
9
10 Revision Changes Path
11 1.8 sys-devel/byfl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/byfl/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/byfl/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/byfl/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-devel/byfl/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 5 Dec 2014 16:26:47 -0000 1.7
24 +++ ChangeLog 3 Feb 2015 20:57:33 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-devel/byfl
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/byfl/ChangeLog,v 1.7 2014/12/05 16:26:47 ottxor Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/byfl/ChangeLog,v 1.8 2015/02/03 20:57:33 ottxor Exp $
31 +
32 +*byfl-1.1 (03 Feb 2015)
33 +
34 + 03 Feb 2015; Christoph Junghans <ottxor@g.o> +byfl-1.1.ebuild:
35 + version bump
36
37 05 Dec 2014; Christoph Junghans <ottxor@g.o> byfl-1.0.ebuild,
38 byfl-9999.ebuild:
39
40
41
42 1.1 sys-devel/byfl/byfl-1.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/byfl/byfl-1.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/byfl/byfl-1.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: byfl-1.1.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-devel/byfl/byfl-1.1.ebuild,v 1.1 2015/02/03 20:57:33 ottxor Exp $
52
53 EAPI=5
54
55 inherit autotools-utils flag-o-matic
56
57 if [ "${PV}" = "9999" ]; then
58 EGIT_REPO_URI="git://github.com/losalamos/${PN^b}.git http://github.com/losalamos/${PN}.git"
59 inherit git-2
60 KEYWORDS=""
61 AUTOTOOLS_AUTORECONF=1
62 LLVM_VERSION="9999"
63 else
64 LLVM_VERSION="3.5.1"
65 MY_P="${P}-llvm-${LLVM_VERSION}"
66 SRC_URI="https://github.com/losalamos/Byfl/releases/download/v${MY_P#${PN}-}/${MY_P}.tar.gz"
67 KEYWORDS="~amd64 ~amd64-linux"
68 fi
69
70 DESCRIPTION="Compiler-based Application Analysis"
71 HOMEPAGE="https://github.com/losalamos/Byfl"
72
73 SLOT="0"
74 LICENSE="BSD"
75 IUSE=""
76
77 RDEPEND="~sys-devel/dragonegg-${LLVM_VERSION}
78 ~sys-devel/clang-${LLVM_VERSION}
79 ~sys-devel/llvm-${LLVM_VERSION}"
80 DEPEND="${RDEPEND}"
81
82 src_configure() {
83 append-cxxflags -std=c++11
84 autotools-utils_src_configure
85 }