commit:     9901adf4175d16a04b14976e0ead43e0de732565
Author:     Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Thu Jan  8 23:13:45 2026 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 10 00:24:26 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9901adf4

dev-util/bear: drop 3.1.5

Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Part-of: https://github.com/gentoo/gentoo/pull/45306
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/bear/Manifest          |   1 -
 dev-util/bear/bear-3.1.5.ebuild | 113 ----------------------------------------
 2 files changed, 114 deletions(-)

diff --git a/dev-util/bear/Manifest b/dev-util/bear/Manifest
index 49b726acce6b..a5a34fa1be6b 100644
--- a/dev-util/bear/Manifest
+++ b/dev-util/bear/Manifest
@@ -1,2 +1 @@
-DIST bear-3.1.5.tar.gz 152228 BLAKE2B 
64d03d1ca5b1473e4d0b2106969285a2391471a0027cf387c72fe70769293fa361196cb1d37ebb528d27b5741b792472fad09688761ab7f73dc0ea7db96d8be1
 SHA512 
acf233f7bb8215694734b6c947c965323c0a5ea0c2a6bbb210a37e38fdf545326ca8de3a7b31ce81469756afd1c02233775ddc5936fd04132f216def6e3ce1de
 DIST bear-3.1.6.tar.gz 170892 BLAKE2B 
dc54bf28ad329e39b609b4993a1b6a78b4ea6562fa57b1615f4b7885c0aab70a124c485c435f3cb341be2915ee7f0b80ab9362c3504899d436271208e25cf239
 SHA512 
5852ca8d93459a9e1a6d2e030cc3963c213bf1638241825ec5df4eea7e3460faca9436ca2e36b8e5da40222306a0ecc8ed80d1f5e518ddd97dc5e200d42a75bb

diff --git a/dev-util/bear/bear-3.1.5.ebuild b/dev-util/bear/bear-3.1.5.ebuild
deleted file mode 100644
index ed91401baefe..000000000000
--- a/dev-util/bear/bear-3.1.5.ebuild
+++ /dev/null
@@ -1,113 +0,0 @@
-# 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"
-       "${FILESDIR}/${PN}-3.1.4-reduce-grpc-verbosity.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 "${LIT_SKIP_TESTS[*]}"))" )
-
-       export LIT_OPTS="${mylitopts[*]}"
-
-       BUILD_DIR="${BUILD_DIR}/subprojects/Build/BearTest" cmake_src_test
-}

Reply via email to