pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/sysutils/fzf



Module Name:    pkgsrc
Committed By:   iquiw
Date:           Mon May  5 01:33:56 UTC 2025

Modified Files:
        pkgsrc/sysutils/fzf: Makefile distinfo go-modules.mk

Log Message:
fzf: update to 0.62.0

0.62.0

* Relaxed the --color option syntax to allow whitespace-separated
  entries (in addition to commas), making multi-line definitions easier to
  write and read

    # seoul256-light
    fzf --style full --color='
      fg:#616161 fg+:#616161
      bg:#ffffff bg+:#e9e9e9 alt-bg:#f1f1f1
      hl:#719872 hl+:#719899
      pointer:#e12672 marker:#e17899
      header:#719872
      spinner:#719899 info:#727100
      prompt:#0099bd query:#616161
      border:#e1e1e1
    '

* Added alt-bg color to create striped lines to visually separate rows

    fzf --color bg:237,alt-bg:238,current-bg:236 --highlight-line

    declare -f | perl -0777 -pe 's/^}\n/}\0/gm' |
      bat --plain --language bash --color always |
      fzf --read0 --ansi --reverse --multi \
          --color bg:237,alt-bg:238,current-bg:236 --highlight-line

* [fish] Improvements in CTRL-R binding
  * You can trigger CTRL-R in the middle of a command to insert the
    selected item
  * You can delete history items with SHIFT-DEL
* Bug fixes and improvements
  * Fixed unnecessary 100ms delay after reload
  * Fixed selected-bg not applied to colored items

0.61.3

* Reverted #4351 as it caused tmux run-shell 'fzf --tmux' to fail
* More environment variables for child processes

0.61.2

* Fixed panic when using header border without pointer/marker
* Fixed --tmux option when already inside a tmux popup
* Bug fixes and improvements in CTRL-T binding of fish
* Added --no-tty-default option to make fzf search for the current TTY
  device instead of defaulting to /dev/tty

0.61.1

* Disable: bracketed-paste mode on exit. This fixes issue where pasting
  breaks after running fzf on old bash versions that don't support the mode.


To generate a diff of this commit:
cvs rdiff -u -r1.108 -r1.109 pkgsrc/sysutils/fzf/Makefile
cvs rdiff -u -r1.38 -r1.39 pkgsrc/sysutils/fzf/distinfo
cvs rdiff -u -r1.25 -r1.26 pkgsrc/sysutils/fzf/go-modules.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/sysutils/fzf/Makefile
diff -u pkgsrc/sysutils/fzf/Makefile:1.108 pkgsrc/sysutils/fzf/Makefile:1.109
--- pkgsrc/sysutils/fzf/Makefile:1.108  Sun Apr  6 04:58:30 2025
+++ pkgsrc/sysutils/fzf/Makefile        Mon May  5 01:33:56 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.108 2025/04/06 04:58:30 iquiw Exp $
+# $NetBSD: Makefile,v 1.109 2025/05/05 01:33:56 iquiw Exp $
 
-DISTNAME=      fzf-0.61.0
+DISTNAME=      fzf-0.62.0
 CATEGORIES=    sysutils
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=junegunn/}
 GITHUB_TAG=     v${PKGVERSION_NOREV}

Index: pkgsrc/sysutils/fzf/distinfo
diff -u pkgsrc/sysutils/fzf/distinfo:1.38 pkgsrc/sysutils/fzf/distinfo:1.39
--- pkgsrc/sysutils/fzf/distinfo:1.38   Sun Apr  6 04:58:30 2025
+++ pkgsrc/sysutils/fzf/distinfo        Mon May  5 01:33:56 2025
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.38 2025/04/06 04:58:30 iquiw Exp $
+$NetBSD: distinfo,v 1.39 2025/05/05 01:33:56 iquiw Exp $
 
-BLAKE2s (fzf-0.61.0.tar.gz) = 0305e7726e2f08bcfc71d9c83a8e607d93c1b46d52dcfd5aaa9bc81afd48092f
-SHA512 (fzf-0.61.0.tar.gz) = 83c9fee7f4bdffee04847ac6ed079f58506b0f740388deed9f3082ca67e5db672d03c1a17dfec25489c8390f36d9545b589c522585b3d5bb7cc9288a91f546c6
-Size (fzf-0.61.0.tar.gz) = 330880 bytes
+BLAKE2s (fzf-0.62.0.tar.gz) = 2276e216791f0828d40bafb4becdb27ee0a2ab9912287468b1e8f56d0582dbc9
+SHA512 (fzf-0.62.0.tar.gz) = e0246a9caac7bc99e6b7596f79bd6c091b55da3843a0ca22cfa7984c0eba2e42430037f4c0f58b99f29a82c91ca36aa8bfd8315e6814b076adb21fe6d40e0a3f
+Size (fzf-0.62.0.tar.gz) = 333078 bytes
 BLAKE2s (github.com_charlievieth_fastwalk_@v_v1.0.10.mod) = c40097d4f4ad93e100ae36b295bd103784b6f696d22d9bf7278a742f99be5199
 SHA512 (github.com_charlievieth_fastwalk_@v_v1.0.10.mod) = 2088d7467b0b19cc8e8f7ac6d22793fc3c4ae696e81d1b21c563e84ce787afdc8817d43ef0a4568ea6b0a3aed5ad4fc45ea25a874be733fbaf26bbe902e869ae
 Size (github.com_charlievieth_fastwalk_@v_v1.0.10.mod) = 92 bytes

Index: pkgsrc/sysutils/fzf/go-modules.mk
diff -u pkgsrc/sysutils/fzf/go-modules.mk:1.25 pkgsrc/sysutils/fzf/go-modules.mk:1.26
--- pkgsrc/sysutils/fzf/go-modules.mk:1.25      Sun Apr  6 04:58:30 2025
+++ pkgsrc/sysutils/fzf/go-modules.mk   Mon May  5 01:33:56 2025
@@ -1,4 +1,4 @@
-# $NetBSD: go-modules.mk,v 1.25 2025/04/06 04:58:30 iquiw Exp $
+# $NetBSD: go-modules.mk,v 1.26 2025/05/05 01:33:56 iquiw Exp $
 
 GO_MODULE_FILES+=      github.com/charlievieth/fastwalk/@v/v1.0.10.mod
 GO_MODULE_FILES+=      github.com/charlievieth/fastwalk/@v/v1.0.10.zip



Home | Main Index | Thread Index | Old Index