# Copyright 2020-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python3_{10..13} ) inherit cuda cmake multiprocessing python-any-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/${PV}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/${P^}" LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86" IUSE="cuda test" RESTRICT="!test? ( test )" RDEPEND=" >=dev-libs/libfmt-9.1.0:= dev-libs/protobuf:= >=dev-libs/spdlog-1.11.0:= >=net-libs/grpc-1.49.2:= cuda? ( dev-util/nvidia-cuda-toolkit ) " DEPEND=" ${RDEPEND} >=dev-cpp/nlohmann_json-3.11.2:= test? ( >=dev-cpp/gtest-1.13 ) " BDEPEND=" virtual/pkgconfig test? ( dev-build/libtool $(python_gen_any_dep ' dev-python/lit[${PYTHON_USEDEP}] ') ) " PATCHES=( "${FILESDIR}/${PN}-3.1.4-tests.patch" ) pkg_setup() { use test && python-any-r1_pkg_setup } src_prepare() { cmake_src_prepare # Turn off testing before installation sed -i 's/TEST_BEFORE_INSTALL/TEST_EXCLUDE_FROM_MAIN/g' CMakeLists.txt || die } src_configure() { # TODO: remove this when https://bugs.gentoo.org/928346 is fixed export CMAKE_BUILD_PARALLEL_LEVEL=$(makeopts_jobs) local mycmakeargs=( -DENABLE_UNIT_TESTS="$(usex test)" -DENABLE_FUNC_TESTS="$(usex test)" ) cmake_src_configure } src_test() { if has sandbox "${FEATURES}"; then ewarn "FEATURES=sandbox detected" ewarn "Bear overrides LD_PRELOAD and conflicts with gentoo sandbox" ewarn "tests will fail" fi if has usersandbox "${FEATURES}"; then ewarn "FEATURES=usersandbox detected" ewarn "tests will fail" fi if has network-sandbox "${FEATURES}"; then ewarn "FEATURES=network-sandbox detected" ewarn "tests will fail" fi if 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" fi einfo "test may use optional tools if found: gfortran libtool nvcc valgrind" # unit tests BUILD_DIR="${BUILD_DIR}/subprojects/Build/BearSource" cmake_src_test # functional tests if use cuda; then NVCC_CCBIN="$(cuda_gccdir)" export NVCC_CCBIN else LIT_SKIP_TESTS+=( "cases/compilation/output/compile_cuda.sh" ) fi mylitopts+=(-j "$(makeopts_jobs)" ) [[ -n "${LIT_SKIP_TESTS[*]}" ]] && mylitopts+=( --filter-out "($( IFS='|'; echo "${CMAKE_SKIP_TESTS[*]}"))" ) export LIT_OPTS="${mylitopts[*]}" BUILD_DIR="${BUILD_DIR}/subprojects/Build/BearTest" cmake_src_test }