-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
23 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
install -Dm644 complete/_rg \ | ||
"$PKGDIR"/usr/share/zsh/site-functions/_rg | ||
install -Dm644 target/release/build/ripgrep-*/out/rg.bash \ | ||
"$PKGDIR"/usr/share/bash-completion/completions/rg | ||
install -Dm644 target/release/build/ripgrep-*/out/rg.fish \ | ||
"$PKGDIR"/usr/share/fish/completions/rg.fish | ||
abinfo "Installing completions ..." | ||
mkdir -pv "$PKGDIR"/usr/share/zsh/site-functions \ | ||
"$PKGDIR"/usr/share/bash-completion/completions \ | ||
"$PKGDIR"/usr/share/fish/completions | ||
"$PKGDIR"/usr/bin/rg --generate complete-zsh > "$PKGDIR"/usr/share/zsh/site-functions/_rg | ||
"$PKGDIR"/usr/bin/rg --generate complete-bash > "$PKGDIR"/usr/share/bash-completion/completions/rg | ||
"$PKGDIR"/usr/bin/rg --generate complete-fish > "$PKGDIR"/usr/share/fish/completions/rg.fish | ||
|
||
install -Dm644 "target/release/build/ripgrep-"*/out/rg.1 \ | ||
"$PKGDIR"/usr/share/man/man1/rg.1 | ||
install -Dm644 "README.md" \ | ||
"$PKGDIR"/usr/share/doc/ripgrep/README.md | ||
abinfo "Installing manpages ..." | ||
mkdir -pv "$PKGDIR"/usr/share/man/man1 | ||
"$PKGDIR"/usr/bin/rg --generate man > "$PKGDIR"/usr/share/man/man1/rg.1 |
10 changes: 10 additions & 0 deletions
10
app-utils/ripgrep/autobuild/patches/0001-allow-lower-rustc-version-compile.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- a/Cargo.toml 2023-11-29 02:30:11.062071693 +0000 | ||
+++ b/Cargo.toml 2023-11-29 02:30:47.494164136 +0000 | ||
@@ -24,7 +24,6 @@ | ||
build = "build.rs" | ||
autotests = false | ||
edition = "2021" | ||
-rust-version = "1.72" | ||
|
||
[[bin]] | ||
bench = false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
VER=13.0.0 | ||
REL=10 | ||
SRCS="tbl::https://github.com/BurntSushi/ripgrep/archive/$VER.tar.gz" | ||
CHKSUMS="sha256::0fb17aaf285b3eee8ddab17b833af1e190d73de317ff9648751ab0660d763ed2" | ||
VER=14.0.3 | ||
SRCS="git::commit=tags/$VER::https://github.com/BurntSushi/ripgrep" | ||
CHKSUMS="SKIP" | ||
CHKUPDATE="anitya::id=15461" |