summaryrefslogtreecommitdiff
path: root/dev-util/bear/bear-2.4.3.ebuild
blob: 83600bfdb38fd204bde51d193c61e8842946042a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

PYTHON_COMPAT=( python3_{7,8} )

inherit cmake python-single-r1

DESCRIPTION="Build EAR generates a compilation database for clang tooling"
HOMEPAGE="https://github.com/rizsotto/Bear"
SRC_URI="https://github.com/rizsotto/Bear/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~ppc64"
IUSE="test"

REQUIRED_USE="${PYTHON_REQUIRED_USE}"

DEPEND="test? (
	app-shells/bash
	$(python_gen_cond_dep '
		dev-python/lit[${PYTHON_USEDEP}]
	')
)"

RDEPEND="${PYTHON_DEPS}"

RESTRICT="!test? ( test )"

S="${WORKDIR}/${P^}"

src_compile() {
	cmake_src_compile
	# need to fix it now, before tests are run
	python_fix_shebang "${BUILD_DIR}"/bear/bear
	python_fix_shebang test/functional/tools/cdb_diff.py
}

src_test() {
	if has sandbox ${FEATURES}; then
		ewarn "\'FEATURES=sandbox\' detected"
		ewarn "Bear overrides LD_PRELOAD and conflicts with gentoo sandbox"
		ewarn "Skipping tests"
	elif
		has usersandbox ${FEATURES}; then
		ewarn "\'FEATURES=usersandbox\' detected"
		ewarn "Skipping tests"
	elif
		has_version -b 'sys-devel/gcc-config[-native-symlinks]'; then
		ewarn "\'sys-devel/gcc-config[-native-symlinks]\' detected, tests call /usr/bin/cc directly (hardcoded)"
		ewarn "and will fail without generic cc symlink"
		ewarn "Skipping tests"
	else
		einfo "removing unwanted/unsupported/xfail tests"
		rm -v test/functional/cases/{end-to-end/scons.ft,intercept/cuda/successful_build.fts,run_pep8.ft} || die
		einfo "test may use optional tools if found: qmake gfortran"
		cmake_build check
	fi
}