mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
108 lines
2.2 KiB
Bash
108 lines
2.2 KiB
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
RUST_MIN_VER="1.85.0"
|
|
CRATES="
|
|
aho-corasick@1.1.4
|
|
anyhow@1.0.103
|
|
arbitrary@1.4.2
|
|
bstr@1.13.0
|
|
cc@1.2.67
|
|
cfg-if@1.0.4
|
|
crossbeam-channel@0.5.16
|
|
crossbeam-deque@0.8.7
|
|
crossbeam-epoch@0.9.20
|
|
crossbeam-utils@0.8.22
|
|
derive_arbitrary@1.4.2
|
|
encoding_rs@0.8.35
|
|
encoding_rs_io@0.1.7
|
|
find-msvc-tools@0.1.9
|
|
getrandom@0.4.3
|
|
glob@0.3.3
|
|
itoa@1.0.18
|
|
jobserver@0.1.35
|
|
lexopt@0.3.2
|
|
libc@0.2.186
|
|
log@0.4.33
|
|
memchr@2.8.3
|
|
memmap2@0.9.11
|
|
pcre2-sys@0.2.10
|
|
pcre2@0.2.11
|
|
pkg-config@0.3.33
|
|
proc-macro2@1.0.106
|
|
quote@1.0.46
|
|
r-efi@6.0.0
|
|
regex-automata@0.4.15
|
|
regex-syntax@0.8.11
|
|
regex@1.13.0
|
|
same-file@1.0.6
|
|
serde@1.0.228
|
|
serde_core@1.0.228
|
|
serde_derive@1.0.228
|
|
serde_json@1.0.150
|
|
shlex@2.0.1
|
|
syn@2.0.119
|
|
termcolor@1.4.1
|
|
textwrap@0.16.2
|
|
tikv-jemalloc-sys@0.7.1+5.3.1-0-g81034ce1f1373e37dc865038e1bc8eeecf559ce8
|
|
tikv-jemallocator@0.7.0
|
|
unicode-ident@1.0.24
|
|
walkdir@2.5.0
|
|
winapi-util@0.1.11
|
|
windows-link@0.2.1
|
|
windows-sys@0.61.2
|
|
zmij@1.0.23
|
|
"
|
|
|
|
inherit cargo shell-completion
|
|
|
|
DESCRIPTION="Search tool that combines the usability of ag with the raw speed of grep"
|
|
HOMEPAGE="https://github.com/BurntSushi/ripgrep"
|
|
SRC_URI="
|
|
https://github.com/BurntSushi/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
|
|
${CARGO_CRATE_URIS}
|
|
"
|
|
|
|
LICENSE="Apache-2.0"
|
|
# Dependent crate licenses
|
|
LICENSE+=" BSD MIT Unicode-3.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm64 ~loong ppc64 ~riscv x86"
|
|
IUSE="+pcre"
|
|
|
|
RDEPEND="pcre? ( dev-libs/libpcre2:= )"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
QA_FLAGS_IGNORED="usr/bin/rg"
|
|
|
|
src_prepare() {
|
|
default
|
|
# unforce static linking on musl
|
|
rm .cargo/config.toml || die
|
|
}
|
|
|
|
src_configure() {
|
|
# allow building on musl with dynamic linking support
|
|
# https://github.com/BurntSushi/rust-pcre2/issues/7
|
|
use pcre && export PCRE2_SYS_STATIC=0
|
|
myfeatures=( $(usev pcre pcre2) )
|
|
cargo_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
cargo_src_install
|
|
|
|
local gen=( "$(cargo_target_dir)"/rg --generate )
|
|
newbashcomp - rg < <( "${gen[@]}" complete-bash || die )
|
|
newfishcomp - rg.fish < <( "${gen[@]}" complete-fish || die )
|
|
newzshcomp - _rg < <( "${gen[@]}" complete-zsh || die )
|
|
|
|
dodoc CHANGELOG.md FAQ.md GUIDE.md README.md
|
|
newman - rg.1 < <( "${gen[@]}" man || die )
|
|
}
|