mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
community/fzf: upgrade to 0.47.0
This commit is contained in:
parent
c6d64b50e5
commit
6b04b373b4
@ -2,7 +2,7 @@
|
||||
# Contributor: Kevin Daudt <kdaudt@alpinelinux.org>
|
||||
# Maintainer: Kevin Daudt <kdaudt@alpinelinux.org>
|
||||
pkgname=fzf
|
||||
pkgver=0.46.1
|
||||
pkgver=0.47.0
|
||||
pkgrel=0
|
||||
pkgdesc="A command-line fuzzy finder"
|
||||
url="https://github.com/junegunn/fzf"
|
||||
@ -128,8 +128,8 @@ nvim() {
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
c2e07be08bc2d93981acfd9857f395e0c803046754d8d61e888fa4dc4d0f6f3d62eb19b518273cce23ae2eeffe68f2ecc692cb09cdcdfc30df9443419e3fc4cb fzf-0.46.1.tar.gz
|
||||
7c79f75197161054fb1469d89095d97e0e9d0ed7258df1dc6e3b817e1e8b7dea203503c6b5e9d7199bce7b0abe755d4c2dbe0863a0f7a9ffe601aca78f140996 find-buzybox-compat.patch
|
||||
e7abf7c5bd8f62958531643592435aac17dfe93a3e0b54ed70947ff70ada09f3e4dc251607eb6c269fa07bab34a03264bedfb42aaa97b065a3b65af6907c80a4 fzf-0.47.0.tar.gz
|
||||
1a8c93afac50b673b8bbc8eb4f9750b979ea9f31ff75b236707857380eb1084affd55401486027ed0f9ec5e585041653e5155f82c4c5ef59339cd51412cc1500 find-buzybox-compat.patch
|
||||
a13ba25c08fe5b54231508be8d2f0a9f4d342630e6c31f2524cc6b8b99cead5b80daa2e2e37a581198f9ce79df2b00fdf81acf84fe1ad8043ee96e4db0870ee6 fzf.plugin.sh
|
||||
4ea4a5511704ef6fe57e7d3187739ba501ddb80d249738310d773edd9e2d08c26d27ec0c8976320e979aa8688984fe591b63a63b3c8589d5b80190e7d85d1c8b fzf.plugin.zsh
|
||||
"
|
||||
|
||||
@ -25,7 +25,7 @@ index 69f7697..4b67f78 100644
|
||||
-o -type d -print \
|
||||
-o -type l -print 2> /dev/null | sed 's@^\./@@'"
|
||||
diff --git a/shell/key-bindings.zsh b/shell/key-bindings.zsh
|
||||
index b64f791..ef1afe0 100644
|
||||
index 7d0a14d..ec02a8d 100644
|
||||
--- a/shell/key-bindings.zsh
|
||||
+++ b/shell/key-bindings.zsh
|
||||
@@ -41,7 +41,7 @@ fi
|
||||
@ -37,16 +37,3 @@ index b64f791..ef1afe0 100644
|
||||
-o -type f -print \
|
||||
-o -type d -print \
|
||||
-o -type l -print 2> /dev/null | cut -b3-"}"
|
||||
diff --git a/src/constants.go b/src/constants.go
|
||||
index 76211dc..7e869be 100644
|
||||
--- a/src/constants.go
|
||||
+++ b/src/constants.go
|
||||
@@ -58,7 +58,7 @@ var defaultCommand string
|
||||
|
||||
func init() {
|
||||
if !util.IsWindows() {
|
||||
- defaultCommand = `set -o pipefail; command find -L . -mindepth 1 \( -path '*/.*' -o -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \) -prune -o -type f -print -o -type l -print 2> /dev/null | cut -b3-`
|
||||
+ defaultCommand = `set -o pipefail; command find -L . -mindepth 1 \( -path '*/.*' \) -prune -o -type f -print -o -type l -print 2> /dev/null | cut -b3-`
|
||||
} else if os.Getenv("TERM") == "cygwin" {
|
||||
defaultCommand = `sh -c "command find -L . -mindepth 1 -path '*/.*' -prune -o -type f -print -o -type l -print 2> /dev/null | cut -b3-"`
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user