Files
gentoo/dev-util/bear/bear-4.1.5.ebuild
Alexey Sokolov 554b56ee10 dev-util/bear: add 4.1.5
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
Part-of: https://codeberg.org/gentoo/gentoo/pulls/1311
Signed-off-by: Sam James <sam@gentoo.org>
2026-07-14 05:40:18 +01:00

188 lines
3.6 KiB
Bash

# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# Autogenerated by pycargoebuild 0.15.2
EAPI=8
RUST_MIN_VER="1.91.0"
CRATES="
ahash@0.8.12
aho-corasick@1.1.4
annotate-snippets@0.12.16
anstyle@1.0.14
anyhow@1.0.103
arraydeque@0.5.1
assert_cmd@2.2.2
assert_fs@1.1.4
autocfg@1.5.1
base64@0.22.1
bit-set@0.8.0
bit-vec@0.8.0
bitflags@2.13.0
bstr@1.12.3
bumpalo@3.20.3
cc@1.2.65
cfg-if@1.0.4
clap@4.6.1
clap_builder@4.6.0
clap_complete@4.6.7
clap_derive@4.6.1
clap_lex@1.1.0
console@0.16.4
crossbeam-channel@0.5.15
crossbeam-deque@0.8.6
crossbeam-epoch@0.9.18
crossbeam-utils@0.8.21
ctor@1.0.7
difflib@0.4.0
downcast@0.11.0
encode_unicode@1.0.0
encoding_rs@0.8.35
encoding_rs_io@0.1.7
env_filter@2.0.0
env_logger@0.11.11
errno@0.3.14
fastrand@2.4.1
find-msvc-tools@0.1.9
float-cmp@0.10.0
fnv@1.0.7
fragile@2.1.0
futures-core@0.3.32
getrandom@0.3.4
getrandom@0.4.3
globset@0.4.18
globwalk@0.9.1
granit-parser@0.0.6
heck@0.5.0
ignore@0.4.27
insta@1.48.0
itoa@1.0.18
js-sys@0.3.103
libc@0.2.186
link-section@0.18.3
linktime-proc-macro@0.2.0
linux-raw-sys@0.12.1
log@0.4.33
memchr@2.8.2
mockall@0.15.0
mockall_derive@0.15.0
nohash-hasher@0.2.0
normalize-line-endings@0.3.0
num-traits@0.2.19
once_cell@1.21.4
ppv-lite86@0.2.21
predicates-core@1.0.10
predicates-tree@1.0.13
predicates@3.1.4
proc-macro2@1.0.106
proptest@1.11.0
quick-error@1.2.3
quote@1.0.46
r-efi@5.3.0
r-efi@6.0.0
rand@0.9.4
rand_chacha@0.9.0
rand_core@0.9.5
rand_xorshift@0.4.0
regex-automata@0.4.14
regex-lite@0.1.9
regex-syntax@0.8.11
regex@1.12.4
rustix@1.1.4
rustversion@1.0.22
rusty-fork@0.3.1
same-file@1.0.6
serde-saphyr@0.0.28
serde@1.0.228
serde_core@1.0.228
serde_derive@1.0.228
serde_json@1.0.150
shell-words@1.1.1
shlex@2.0.1
signal-hook-registry@1.4.8
signal-hook@0.4.4
similar@2.7.0
smallvec@1.15.2
strsim@0.11.1
syn@2.0.118
tempfile@3.27.0
termtree@0.5.1
thiserror-impl@2.0.18
thiserror@2.0.18
unarray@0.1.4
unicode-ident@1.0.24
unicode-width@0.2.2
version_check@0.9.5
wait-timeout@0.2.1
walkdir@2.5.0
wasip2@1.0.4+wasi-0.2.12
wasm-bindgen-macro-support@0.2.126
wasm-bindgen-macro@0.2.126
wasm-bindgen-shared@0.2.126
wasm-bindgen@0.2.126
which@8.0.4
winapi-util@0.1.11
windows-link@0.2.1
windows-sys@0.61.2
wit-bindgen@0.57.1
zerocopy-derive@0.8.52
zerocopy@0.8.52
zmij@1.0.21
"
inherit cargo prefix toolchain-funcs
DESCRIPTION="A tool that 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
${CARGO_CRATE_URIS}
"
S="${WORKDIR}/${P^}"
LICENSE="GPL-3+"
# Dependent crate licenses
LICENSE+=" Apache-2.0 BSD MIT Unicode-3.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
RESTRICT="test" # https://bugs.gentoo.org/973619
BDEPEND="llvm-core/lld"
QA_FLAGS_IGNORED="
usr/libexec/bear/.*/libexec.so
usr/libexec/bear/bin/bear-driver
usr/libexec/bear/bin/bear-wrapper
"
src_compile() {
gencompletions() {
cargo_src_compile -p bear-completions
# cargo_target_dir has different value in cross, but install
# script expects generated completions to be in the same target dir
"$(cargo_target_dir)"/generate-completions \
"${T}"/completions || die
}
tc-env_build gencompletions
cargo_src_compile
}
src_install() {
mv "${T}/completions" "$(cargo_target_dir)/completions" || die
SRCDIR="$(cargo_target_dir)" \
DESTDIR="${D}" \
PREFIX="${EPREFIX}/usr" \
scripts/install.sh
rm -r "${ED}"/usr/share/doc || die
local DOCS=( *.md )
default
# use /bin/sh from prefix
hprefixify "${ED}"/usr/bin/bear
}