Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/byfl/
Date: Mon, 09 Sep 2019 19:02:46
Message-Id: 1568055744.9148c62ef4b6c037794867e5cd7194f061cc7f02.mgorny@gentoo
1 commit: 9148c62ef4b6c037794867e5cd7194f061cc7f02
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 2 15:02:01 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 9 19:02:24 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9148c62e
7
8 sys-devel/byfl: Remove 1.6 (for LLVM 5)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-devel/byfl/Manifest | 1 -
13 sys-devel/byfl/byfl-1.6.ebuild | 48 ------------------------------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/sys-devel/byfl/Manifest b/sys-devel/byfl/Manifest
17 index cbcbf504d25..b3401c02eb9 100644
18 --- a/sys-devel/byfl/Manifest
19 +++ b/sys-devel/byfl/Manifest
20 @@ -1,2 +1 @@
21 -DIST byfl-1.6-llvm-5.0.1.tar.gz 556083 BLAKE2B fbbd158d0a60674db22a74b30e8410817d7cf6202f34e2ae5906cbed3188661de301cb9b9c6488840b6f0f4e3fcdc121a237decce5ffbb1db9827c6be40f1fe7 SHA512 b63db13d686a7b3c0bf69eae62b3a344c4e9e11c4a5c5da2188091e6037c0e9e5f7fb89c37f1256596c9aaefa8fbcd537ab41f48b27f7f2d1ce4a018a788e36d
22 DIST byfl-1.6-llvm-6.0.0.tar.gz 556081 BLAKE2B 34e233d29aebc340a0dadfa2ca74b35fe8a8c90e8b7d79ebde0da877a2462144d3a82a5c63633786e177c52e04444cd623dd91db870b654f322ee1becbb1e336 SHA512 3b69eb98247cc4e3398788dfbf450624a918c4de731e1ec1b709a5e6aa0dd29988088827468f0bbf4397563b18aca51350cc947ddcbd2e513b51e1fce17ccc01
23
24 diff --git a/sys-devel/byfl/byfl-1.6.ebuild b/sys-devel/byfl/byfl-1.6.ebuild
25 deleted file mode 100644
26 index 4d749435eab..00000000000
27 --- a/sys-devel/byfl/byfl-1.6.ebuild
28 +++ /dev/null
29 @@ -1,48 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit flag-o-matic llvm
36 -
37 -if [ "${PV}" = "9999" ]; then
38 - LLVM_VERSION="6.0.0"
39 - LLVM_SLOT=6
40 - EGIT_REPO_URI="https://github.com/lanl/Byfl.git"
41 - inherit autotools git-r3
42 - KEYWORDS=""
43 -else
44 - LLVM_VERSION="5.0.1"
45 - LLVM_SLOT=5
46 - MY_P="${P}-llvm-${LLVM_VERSION}"
47 - SRC_URI="https://github.com/lanl/Byfl/releases/download/v${MY_P#${PN}-}/${MY_P}.tar.gz"
48 - KEYWORDS="~amd64 ~amd64-linux"
49 -fi
50 -
51 -DESCRIPTION="Compiler-based Application Analysis"
52 -HOMEPAGE="https://github.com/lanl/Byfl"
53 -
54 -SLOT="0"
55 -LICENSE="BSD"
56 -IUSE="hdf5 static-libs sqlite"
57 -
58 -RDEPEND="
59 - >=sys-devel/clang-${LLVM_VERSION}:${LLVM_SLOT}
60 - >=sys-devel/llvm-${LLVM_VERSION}:${LLVM_SLOT}
61 - sys-devel/binutils:*
62 - dev-lang/perl:=
63 - dev-perl/Switch
64 - hdf5? ( sci-libs/hdf5[cxx] )
65 - sqlite? ( dev-db/sqlite:3 )"
66 -DEPEND="${RDEPEND}"
67 -
68 -src_prepare() {
69 - default
70 - [[ ${PV} = 9999 ]] && eautoreconf
71 -}
72 -
73 -src_configure() {
74 - append-cxxflags -std=c++11
75 - use sqlite || export ac_cv_lib_sqlite3_sqlite3_errstr=no
76 - econf H5CXX=$(usex hdf5 h5c++ no)
77 -}