diff options
Diffstat (limited to 'system/fzf/fzf.SlackBuild')
-rw-r--r-- | system/fzf/fzf.SlackBuild | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/system/fzf/fzf.SlackBuild b/system/fzf/fzf.SlackBuild index aa9e5291a9..556b75711a 100644 --- a/system/fzf/fzf.SlackBuild +++ b/system/fzf/fzf.SlackBuild @@ -3,7 +3,7 @@ # Slackware build script for fzf # Copyright 2016-2022 Andrew Clemons, Wellington New Zealand -# Copyright 2022-2024 Andrew Clemons, Tokyo Japan +# Copyright 2022-2025 Andrew Clemons, Tokyo Japan # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=fzf -VERSION=${VERSION:-0.57.0} +VERSION=${VERSION:-0.58.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -62,11 +62,11 @@ sed -i '/^BUILD_FLAGS/s/$/ -mod=vendor/' Makefile mkdir -p vendor/github.com -for DEPENDENCY in gdamore/encoding/1.0.0 \ - gdamore/tcell/2.7.4 \ +for DEPENDENCY in gdamore/encoding/1.0.1 \ + gdamore/tcell/2.8.1 \ lucasb-eyer/go-colorful/1.2.0 \ mattn/go-isatty/0.0.20 \ - mattn/go-runewidth/0.0.15 \ + mattn/go-runewidth/0.0.16 \ junegunn/go-shellwords/a62c48c52e972b3ab9f6874bb5313e55e9673638 \ rivo/uniseg/0.4.7 \ charlievieth/fastwalk/1.0.9 ; do @@ -82,9 +82,9 @@ done mkdir -p vendor/golang.org/x for DEPENDENCY in sync/0.5.0 \ - sys/0.28.0 \ - term/0.27.0 \ - text/0.14.0 ; do + sys/0.29.0 \ + term/0.28.0 \ + text/0.21.0 ; do DEPENDENCY_NAME="$(echo "$DEPENDENCY" | cut -d/ -f1)" DEPENDENCY_REV="$(echo "$DEPENDENCY" | cut -d/ -f2)" @@ -98,10 +98,10 @@ cat << EOF > vendor/modules.txt github.com/charlievieth/fastwalk github.com/charlievieth/fastwalk/internal/dirent github.com/charlievieth/fastwalk/internal/fmtdirent -# github.com/gdamore/encoding v1.0.0 +# github.com/gdamore/encoding v1.0.1 ## explicit; go 1.9 github.com/gdamore/encoding -# github.com/gdamore/tcell/v2 v2.7.4 +# github.com/gdamore/tcell/v2 v2.8.1 ## explicit; go 1.12 github.com/gdamore/tcell/v2 github.com/gdamore/tcell/v2/terminfo @@ -139,6 +139,7 @@ github.com/gdamore/tcell/v2/terminfo/w/wy60 github.com/gdamore/tcell/v2/terminfo/w/wy99_ansi github.com/gdamore/tcell/v2/terminfo/x/xfce github.com/gdamore/tcell/v2/terminfo/x/xterm +github.com/gdamore/tcell/v2/terminfo/x/xterm_ghostty github.com/gdamore/tcell/v2/terminfo/x/xterm_kitty # github.com/junegunn/go-shellwords v0.0.0-20240813092932-a62c48c52e97 ## explicit; go 1.13 @@ -149,21 +150,21 @@ github.com/lucasb-eyer/go-colorful # github.com/mattn/go-isatty v0.0.20 ## explicit; go 1.15 github.com/mattn/go-isatty -# github.com/mattn/go-runewidth v0.0.15 +# github.com/mattn/go-runewidth v0.0.16 ## explicit; go 1.9 github.com/mattn/go-runewidth # github.com/rivo/uniseg v0.4.7 ## explicit; go 1.18 github.com/rivo/uniseg -# golang.org/x/sys v0.28.0 +# golang.org/x/sys v0.29.0 ## explicit; go 1.18 golang.org/x/sys/plan9 golang.org/x/sys/unix golang.org/x/sys/windows -# golang.org/x/term v0.27.0 +# golang.org/x/term v0.28.0 ## explicit; go 1.18 golang.org/x/term -# golang.org/x/text v0.14.0 +# golang.org/x/text v0.21.0 ## explicit; go 1.18 golang.org/x/text/encoding golang.org/x/text/encoding/internal/identifier |