aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--system/fzf/fzf.SlackBuild29
-rw-r--r--system/fzf/fzf.info30
2 files changed, 30 insertions, 29 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
diff --git a/system/fzf/fzf.info b/system/fzf/fzf.info
index 953f9594f0..87c9a7ede6 100644
--- a/system/fzf/fzf.info
+++ b/system/fzf/fzf.info
@@ -1,32 +1,32 @@
PRGNAM="fzf"
-VERSION="0.57.0"
+VERSION="0.58.0"
HOMEPAGE="https://github.com/junegunn/fzf"
-DOWNLOAD="https://github.com/junegunn/fzf/archive/v0.57.0/fzf-0.57.0.tar.gz \
+DOWNLOAD="https://github.com/junegunn/fzf/archive/v0.58.0/fzf-0.58.0.tar.gz \
https://github.com/charlievieth/fastwalk/archive/v1.0.9/fastwalk-1.0.9.tar.gz \
- https://github.com/gdamore/encoding/archive/v1.0.0/encoding-1.0.0.tar.gz \
- https://github.com/gdamore/tcell/archive/v2.7.4/tcell-2.7.4.tar.gz \
+ https://github.com/gdamore/encoding/archive/v1.0.1/encoding-1.0.0.tar.gz \
+ https://github.com/gdamore/tcell/archive/v2.8.1/tcell-2.8.1.tar.gz \
https://github.com/lucasb-eyer/go-colorful/archive/v1.2.0/go-colorful-1.2.0.tar.gz \
https://github.com/mattn/go-isatty/archive/v0.0.20/go-isatty-0.0.20.tar.gz \
- https://github.com/mattn/go-runewidth/archive/v0.0.15/go-runewidth-0.0.15.tar.gz \
+ https://github.com/mattn/go-runewidth/archive/v0.0.16/go-runewidth-0.0.16.tar.gz \
https://github.com/junegunn/go-shellwords/archive/a62c48c52e972b3ab9f6874bb5313e55e9673638/go-shellwords-a62c48c52e972b3ab9f6874bb5313e55e9673638.tar.gz \
https://github.com/rivo/uniseg/archive/v0.4.7/uniseg-0.4.7.tar.gz \
https://github.com/golang/sync/archive/v0.5.0/sync-0.5.0.tar.gz \
- https://github.com/golang/sys/archive/v0.28.0/sys-0.28.0.tar.gz \
- https://github.com/golang/term/archive/v0.27.0/term-0.27.0.tar.gz \
- https://github.com/golang/text/archive/v0.14.0/text-0.14.0.tar.gz"
-MD5SUM="a90a9212ec21aeab508d9618c83bd9f8 \
+ https://github.com/golang/sys/archive/v0.29.0/sys-0.29.0.tar.gz \
+ https://github.com/golang/term/archive/v0.28.0/term-0.28.0.tar.gz \
+ https://github.com/golang/text/archive/v0.21.0/text-0.21.0.tar.gz"
+MD5SUM="d397b733177f9a10c23173d87a09d23c \
8f514ef922c26af11b88c494b375ffe2 \
- fbadc383bc1ace79fa769fe2de36b87b \
- a03c6d4612a12e949e05ea7d67624142 \
+ 7230f9efe74e07a07b8dfbfaafbf9d0a \
+ 4b20bfdfefa6f767ed77b3f0f4154ef6 \
191fe5cfcb58e480ff4045c82a06091a \
0e9df2fea5b77d464d518a6c60ce8ba2 \
- 3da9ee6fafe706e99bd88ac86023f6a5 \
+ 347363901ee230dd7964a1c82b3ad6b8 \
9c3450a21473613eb84de837d7160a2a \
3751c82dd342cd5823703910b9da173d \
a8371f5f0569f41210ca8a3f30e445c6 \
- 764919411c39ea391289fa44e2e186aa \
- 66ad96d8300379a70d2e22cf1beaadbc \
- 9f64144d4b1647ce4597abf657028a8d"
+ b1240d4a436cf3beaa74f391972015c0 \
+ b3bbda64078928ecbf3a9ecd8af0ee76 \
+ 7f25427c3fd93a26c1c4a4fc7da10239"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="google-go-lang"