* Fix a regression with --line-buffered introduced in ripgrep 15.0.0 OBS-URL: https://build.opensuse.org/package/show/utilities/ripgrep?expand=0&rev=41
115 lines
3.5 KiB
RPMSpec
115 lines
3.5 KiB
RPMSpec
#
|
|
# spec file for package ripgrep
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC and contributors
|
|
# Copyright (c) 2025 Andreas Stieger <Andreas.Stieger@gmx.de>
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%global rustflags '-Clink-arg=-Wl,-z,relro,-z,now'
|
|
Name: ripgrep
|
|
Version: 15.1.0
|
|
Release: 0
|
|
Summary: A search tool that combines ag with grep
|
|
License: MIT AND Unlicense
|
|
Group: Productivity/Text/Utilities
|
|
URL: https://github.com/BurntSushi/ripgrep
|
|
Source0: %{name}-%{version}.tar.zst
|
|
Source1: vendor.tar.zst
|
|
Source999: README.suse-maint.md
|
|
BuildRequires: cargo-packaging
|
|
BuildRequires: pkgconf
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(libpcre2-posix)
|
|
|
|
%description
|
|
ripgrep is a line oriented search tool that combines the usability of
|
|
The Silver Searcher (similar to ack) with the raw speed of GNU grep.
|
|
ripgrep works by recursively searching your current directory
|
|
for a regex pattern.
|
|
|
|
%package bash-completion
|
|
Summary: Bash Completion for %{name}
|
|
Group: System/Shells
|
|
Requires: %{name} = %{version}
|
|
Requires: bash-completion
|
|
Supplements: (%{name} and bash)
|
|
BuildArch: noarch
|
|
|
|
%description bash-completion
|
|
The official bash completion script for ripgrep, generated during the build.
|
|
|
|
%package zsh-completion
|
|
Summary: ZSH Completion for %{name}
|
|
Group: System/Shells
|
|
Requires: %{name} = %{version}
|
|
Supplements: (%{name} and zsh)
|
|
BuildArch: noarch
|
|
|
|
%description zsh-completion
|
|
The official zsh completion script for ripgrep, generated during the build.
|
|
|
|
%package fish-completion
|
|
Summary: Fish Completion for %{name}
|
|
Group: System/Shells
|
|
Requires: %{name} = %{version}
|
|
Supplements: (%{name} and fish)
|
|
BuildArch: noarch
|
|
|
|
%description fish-completion
|
|
The official fish completion script for ripgrep, generated during the build.
|
|
|
|
%prep
|
|
%autosetup -p1 -a1
|
|
|
|
%build
|
|
%{cargo_build} --features 'pcre2'
|
|
|
|
%install
|
|
install -D -d -m 0755 %{buildroot}%{_bindir}
|
|
install -m 0755 %{_builddir}/%{name}-%{version}/target/release/rg %{buildroot}%{_bindir}/rg
|
|
|
|
# remove residue crate file
|
|
rm -f %{buildroot}%{_prefix}/.crates*
|
|
|
|
TARGETBIN=target/release/rg
|
|
$TARGETBIN --generate man > rg.1
|
|
$TARGETBIN --generate complete-bash > rg.bash
|
|
$TARGETBIN --generate complete-fish > rg.fish
|
|
$TARGETBIN --generate complete-zsh > rg.zsh
|
|
install -Dm 644 rg.1 %{buildroot}%{_mandir}/man1/rg.1
|
|
install -Dm 644 rg.bash %{buildroot}%{_datadir}/bash-completion/completions/rg
|
|
install -Dm 644 rg.fish %{buildroot}%{_datadir}/fish/vendor_completions.d/rg.fish
|
|
install -Dm 644 rg.zsh %{buildroot}%{_datadir}/zsh/site-functions/_rg
|
|
|
|
%files
|
|
%license LICENSE-MIT UNLICENSE
|
|
%doc CHANGELOG.md README.md
|
|
%{_mandir}/man1/rg.1%{?ext_man}
|
|
%{_bindir}/rg
|
|
|
|
%files bash-completion
|
|
%license LICENSE-MIT UNLICENSE
|
|
%{_datadir}/bash-completion
|
|
|
|
%files fish-completion
|
|
%license LICENSE-MIT UNLICENSE
|
|
%{_datadir}/fish
|
|
|
|
%files zsh-completion
|
|
%license LICENSE-MIT UNLICENSE
|
|
%{_datadir}/zsh
|
|
|
|
%changelog
|