pkgsrc-Changes archive

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

CVS commit: pkgsrc/shells/fish



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sun Jan  7 16:08:52 UTC 2024

Modified Files:
        pkgsrc/shells/fish: Makefile PLIST distinfo
        pkgsrc/shells/fish/patches: patch-cmake_ConfigureChecks.cmake

Log Message:
fish: update to 3.7.0.

fish 3.7.0 (released January 1, 2024)
=====================================

This release of fish includes a number of improvements over fish 3.6.4, detailed below. Although work continues on the porting of fish internals to the Rust programming language, that work is not 
included in this release. fish 3.7.0 and any future releases in the 3.7 series remain C++ programs.

Notable improvements and fixes
------------------------------
- Improvements to the history pager, including:

  - The history pager will now also attempt subsequence matches (:issue:`9476`), so you can find a command line like ``git log 3.6.1..Integration_3.7.0`` by searching for ``gitInt``.
  - Opening the history pager will now fill the search field with a search string if you're already in a search (:issue:`10005`). This makes it nicer to search something with :kbd:`↑` and then later 
decide to switch to the full pager.
  - Closing the history pager with enter will now copy the search text to the commandline if there was no match, so you can continue editing the command you tried to find right away (:issue:`9934`).

- Performance improvements for command completions and globbing, where supported by the operating system, especially on slow filesystems such as NFS (:issue:`9891`, :issue:`9931`, :issue:`10032`, 
:issue:`10052`).
- fish can now be configured to wait a specified amount of time for a multi-key sequence to be completed,  instead of waiting indefinitely. For example, this makes binding ``kj`` to switching modes 
in vi mode possible.
  The timeout can be set via the new :envvar:`fish_sequence_key_delay_ms` variable (:issue:`7401`), and may be set by default in future versions.

Deprecations and removed features
---------------------------------
- ``LS_COLORS`` is no longer set automatically by the ``ls`` function (:issue:`10080`). Users
  that set ``.dircolors`` should manually import it using other means. Typically this would be ``set -gx LS_COLORS (dircolors -c .dircolors | string split ' ')[3]``

Scripting improvements
----------------------
- Running ``exit`` with a negative number no longer crashes fish (:issue:`9659`).
- ``fish --command`` will now return a non-zero status if parsing failed (:issue:`9888`).
- The ``jobs`` builtin will now escape the commands it prints (:issue:`9808`).
- ``string repeat`` no longer overflows if the count is a multiple of the chunk size (:issue:`9900`).
- The ``builtin`` builtin will now properly error out with invalid arguments instead of doing nothing and returning true (:issue:`9942`).
- ``command time`` in a pipeline is allowed again, as is ``command and`` and ``command or`` (:issue:`9985`).
- ``exec`` will now also apply variable overrides, so ``FOO=bar exec`` will now set ``$FOO`` correctly (:issue:`9995`).
- ``umask`` will now handle empty symbolic modes correctly, like ``umask u=,g=rwx,o=`` (:issue:`10177`).
- Improved error messages for errors occurring in command substitutions (:issue:`10054`).

Interactive improvements
------------------------
- ``read`` no longer enables bracketed paste so it doesn't stay enabled in combined commandlines like ``mysql -p(read --silent)`` (:issue:`8285`).
- Vi mode now uses :envvar:`fish_cursor_external` to set the cursor shape for external commands (:issue:`4656`).
- Opening the history search in vi mode switches to insert mode correctly (:issue:`10141`).
- Vi mode cursor shaping is now enabled in iTerm2 (:issue:`9698`).
- Working directory reporting is enabled for iTerm2 (:issue:`9955`).
- Completing commands as root includes commands not owned by root, fixing a regression introduced in fish 3.2.0 (:issue:`9699`).
- Selection uses ``fish_color_selection`` for the foreground and background colors, as intended, rather than just the background (:issue:`9717`).
- The completion pager will no longer sometimes skip the last entry when moving through a long list (:issue:`9833`).
- The interactive ``history delete`` interface now allows specifying index ranges like "1..5" (:issue:`9736`), and ``history delete --exact`` now properly saves the history (:issue:`10066`).
- Command completion will now call the stock ``manpath`` on macOS, instead of a potential Homebrew version. This prevents awkward error messages (:issue:`9817`).
- A new bind function ``history-pager-delete``, bound to :kbd:`Shift` + :kbd:`Delete` by default, will delete the currently-selected history pager item from history (:issue:`9454`).
- ``fish_key_reader`` will now use printable characters as-is, so pressing "ö" no longer leads to it telling you to bind ``\u00F6`` (:issue:`9986`).
- ``open`` can be used to launch terminal programs again, as an ``xdg-open`` bug has been fixed and a workaround has been removed  (:issue:`10045`).
- The ``repaint-mode`` binding will now only move the cursor if there is repainting to be done. This fixes :kbd:`Alt` combination bindings in vi mode (:issue:`7910`).
- A new ``clear-screen`` bind function is used for :kbd:`Ctrl` + :kbd:`l` by default. This clears the screen and repaints the existing prompt at first,
  so it eliminates visible flicker unless the terminal is very slow (:issue:`10044`).
- The ``alias`` convenience function has better support for commands with unusual characters, like ``+`` (:issue:`8720`).
- A longstanding issue where items in the pager would sometimes display without proper formatting has been fixed (:issue:`9617`).
- The :kbd:`Alt` + :kbd:`l` binding, which lists the directory of the token under the cursor, correctly expands tilde (``~``) to the home directory (:issue:`9954`).
- Various fish utilities that use an external pager will now try a selection of common pagers if the :envvar:`PAGER` environment variable is not set, or write the output to the screen without a pager 
if there is not one available (:issue:`10074`).
- Command-specific tab completions may now offer results whose first character is a period. For example, it is now possible to tab-complete ``git add`` for files with leading periods. The default 
file completions hide these files, unless the token itself has a leading period (:issue:`3707`).

Improved prompts
^^^^^^^^^^^^^^^^
- The default theme now only uses named colors, so it will track the terminal's palette (:issue:`9913`).
- The Dracula theme has now been synced with upstream (:issue:`9807`); use ``fish_config`` to re-apply it to pick up the changes.
- ``fish_vcs_prompt`` now also supports fossil (:issue:`9497`).
- Prompts which display the working directory using the ``prompt_pwd`` function correctly display directories beginning with dashes (:issue:`10169`).

Completions
^^^^^^^^^^^
- Added completions for:

  - ``age`` and ``age-keygen`` (:issue:`9813`)
  - ``airmon-ng`` (:issue:`10116`)
  - ``ar`` (:issue:`9720`)
  - ``blender`` (:issue:`9905`)
  - ``bws`` (:issue:`10165`)
  - ``calendar`` (:issue:`10138`)
  - ``checkinstall`` (:issue:`10106`)
  - ``crc`` (:issue:`10034`)
  - ``doctl``
  - ``gimp`` (:issue:`9904`)
  - ``gojq`` (:issue:`9740`)
  - ``horcrux`` (:issue:`9922`)
  - ``ibmcloud`` (:issue:`10004`)
  - ``iwctl`` (:issue:`6884`)
  - ``java_home`` (:issue:`9998`)
  - ``krita`` (:issue:`9903`)
  - ``oc`` (:issue:`10034`)
  - ``qjs`` (:issue:`9723`)
  - ``qjsc`` (:issue:`9731`)
  - ``rename`` (:issue:`10136`)
  - ``rpm-ostool`` (:issue:`9669`)
  - ``smerge`` (:issue:`10135`)
  - ``userdel`` (:issue:`10056`)
  - ``watchexec`` (:issue:`10027`)
  - ``wpctl`` (:issue:`10043`)
  - ``xxd`` (:issue:`10137`)
  - ``zabbix`` (:issue:`9647`)

- The ``zfs`` completions no longer print errors about setting a read-only variable (:issue:`9705`).
- The ``kitty`` completions have been removed in favor of keeping them upstream (:issue:`9750`).
- ``git`` completions now support aliases that reference other aliases (:issue:`9992`).
- The ``gw`` and ``gradlew`` completions are loaded properly (:issue:`10127`).
- Improvements to many other completions.
- Improvements to the manual page completion generator (:issue:`9787`, :issue:`9814`, :issue:`9961`).

Other improvements
------------------
- Improvements and corrections to the documentation.
- The Web-based configuration now uses a more readable style when printed, such as for a keybinding reference (:issue:`9828`).
- Updates to the German translations (:issue:`9824`).
- The colors of the Nord theme better match their official style (:issue:`10168`).

For distributors
----------------
- The licensing information for some of the derived code distributed with fish was incomplete. Though the license information was present in the source distribution, it was not present in the 
documentation. This has been corrected (:issue:`10162`).
- The CMake configure step will now also look for libterminfo as an alternative name for libtinfo, as used in NetBSD curses (:issue:`9794`).


To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 pkgsrc/shells/fish/Makefile
cvs rdiff -u -r1.18 -r1.19 pkgsrc/shells/fish/PLIST
cvs rdiff -u -r1.35 -r1.36 pkgsrc/shells/fish/distinfo
cvs rdiff -u -r1.4 -r1.5 \
    pkgsrc/shells/fish/patches/patch-cmake_ConfigureChecks.cmake

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

Modified files:

Index: pkgsrc/shells/fish/Makefile
diff -u pkgsrc/shells/fish/Makefile:1.49 pkgsrc/shells/fish/Makefile:1.50
--- pkgsrc/shells/fish/Makefile:1.49    Sat Jan  6 04:22:15 2024
+++ pkgsrc/shells/fish/Makefile Sun Jan  7 16:08:52 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.49 2024/01/06 04:22:15 maya Exp $
+# $NetBSD: Makefile,v 1.50 2024/01/07 16:08:52 wiz Exp $
 
-DISTNAME=              fish-3.6.4
+DISTNAME=              fish-3.7.0
 CATEGORIES=            shells
 MASTER_SITES=          ${MASTER_SITE_GITHUB:=fish-shell/}
 GITHUB_PROJECT=                fish-shell
@@ -28,8 +28,6 @@ CPPFLAGS+=            -DHAVE_BACKTRACE_SYMBOLS
 CXXFLAGS.NetBSD+=      -fpermissive
 LDFLAGS+=              -lexecinfo
 .endif
-# Needed for cur_term
-LDFLAGS.NetBSD+=       -lterminfo
 
 # Upstream intentionally omits open.1 on Darwin, but adds realpath.1
 PLIST_VARS+=   open realpath

Index: pkgsrc/shells/fish/PLIST
diff -u pkgsrc/shells/fish/PLIST:1.18 pkgsrc/shells/fish/PLIST:1.19
--- pkgsrc/shells/fish/PLIST:1.18       Wed Mar 29 09:39:02 2023
+++ pkgsrc/shells/fish/PLIST    Sun Jan  7 16:08:52 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.18 2023/03/29 09:39:02 wiz Exp $
+@comment $NetBSD: PLIST,v 1.19 2024/01/07 16:08:52 wiz Exp $
 bin/fish
 bin/fish_indent
 bin/fish_key_reader
@@ -63,6 +63,7 @@ share/doc/fish/cmds/fish_clipboard_copy.
 share/doc/fish/cmds/fish_clipboard_paste.html
 share/doc/fish/cmds/fish_command_not_found.html
 share/doc/fish/cmds/fish_config.html
+share/doc/fish/cmds/fish_default_key_bindings.html
 share/doc/fish/cmds/fish_delta.html
 share/doc/fish/cmds/fish_git_prompt.html
 share/doc/fish/cmds/fish_greeting.html
@@ -79,6 +80,7 @@ share/doc/fish/cmds/fish_svn_prompt.html
 share/doc/fish/cmds/fish_title.html
 share/doc/fish/cmds/fish_update_completions.html
 share/doc/fish/cmds/fish_vcs_prompt.html
+share/doc/fish/cmds/fish_vi_key_bindings.html
 share/doc/fish/cmds/for.html
 share/doc/fish/cmds/funced.html
 share/doc/fish/cmds/funcsave.html
@@ -153,6 +155,7 @@ share/doc/fish/interactive.html
 share/doc/fish/language.html
 share/doc/fish/license.html
 share/doc/fish/objects.inv
+share/doc/fish/prompt.html
 share/doc/fish/relnotes.html
 share/doc/fish/search.html
 share/doc/fish/searchindex.js
@@ -180,6 +183,9 @@ share/fish/completions/acpi.fish
 share/fish/completions/adb.fish
 share/fish/completions/adduser.fish
 share/fish/completions/adiff.fish
+share/fish/completions/age-keygen.fish
+share/fish/completions/age.fish
+share/fish/completions/airmon-ng.fish
 share/fish/completions/alias.fish
 share/fish/completions/als.fish
 share/fish/completions/alsactl.fish
@@ -223,6 +229,7 @@ share/fish/completions/apt-zip-inst.fish
 share/fish/completions/apt-zip-list.fish
 share/fish/completions/apt.fish
 share/fish/completions/aptitude.fish
+share/fish/completions/ar.fish
 share/fish/completions/arc.fish
 share/fish/completions/archlinux-java.fish
 share/fish/completions/arepack.fish
@@ -260,6 +267,7 @@ share/fish/completions/bg.fish
 share/fish/completions/bind.fish
 share/fish/completions/bison.fish
 share/fish/completions/black.fish
+share/fish/completions/blender.fish
 share/fish/completions/block.fish
 share/fish/completions/bluetoothctl.fish
 share/fish/completions/bootctl.fish
@@ -275,6 +283,7 @@ share/fish/completions/builtin.fish
 share/fish/completions/bundle.fish
 share/fish/completions/bunzip2.fish
 share/fish/completions/busctl.fish
+share/fish/completions/bws.fish
 share/fish/completions/bzcat.fish
 share/fish/completions/bzip2.fish
 share/fish/completions/bzip2recover.fish
@@ -283,6 +292,7 @@ share/fish/completions/cabal-dev.fish
 share/fish/completions/cabal.fish
 share/fish/completions/caddy.fish
 share/fish/completions/caffeinate.fish
+share/fish/completions/calendar.fish
 share/fish/completions/camcontrol.fish
 share/fish/completions/cancel.fish
 share/fish/completions/canto.fish
@@ -293,6 +303,7 @@ share/fish/completions/cd.fish
 share/fish/completions/cdh.fish
 share/fish/completions/cdrecord.fish
 share/fish/completions/cf.fish
+share/fish/completions/checkinstall.fish
 share/fish/completions/chgrp.fish
 share/fish/completions/chmod.fish
 share/fish/completions/choice.fish
@@ -337,6 +348,7 @@ share/fish/completions/cowsay.fish
 share/fish/completions/cowthink.fish
 share/fish/completions/cp.fish
 share/fish/completions/cpupower.fish
+share/fish/completions/crc.fish
 share/fish/completions/create_ap.fish
 share/fish/completions/createdb.fish
 share/fish/completions/cryptsetup.fish
@@ -381,6 +393,7 @@ share/fish/completions/dmesg.fish
 share/fish/completions/dnf.fish
 share/fish/completions/doas.fish
 share/fish/completions/docker.fish
+share/fish/completions/doctl.fish
 share/fish/completions/dolphin.fish
 share/fish/completions/dotnet.fish
 share/fish/completions/downgrade.fish
@@ -477,6 +490,7 @@ share/fish/completions/gdbus.fish
 share/fish/completions/gem.fish
 share/fish/completions/gendarme.fish
 share/fish/completions/gh.fish
+share/fish/completions/gimp.fish
 share/fish/completions/gio.fish
 share/fish/completions/git-sizer.fish
 share/fish/completions/git.fish
@@ -486,6 +500,7 @@ share/fish/completions/go.fish
 share/fish/completions/godoc.fish
 share/fish/completions/gofmt.fish
 share/fish/completions/goimports.fish
+share/fish/completions/gojq.fish
 share/fish/completions/golint.fish
 share/fish/completions/gorename.fish
 share/fish/completions/gpasswd.fish
@@ -496,6 +511,7 @@ share/fish/completions/gphoto2.fish
 share/fish/completions/gping.fish
 share/fish/completions/gprof.fish
 share/fish/completions/gradle.fish
+share/fish/completions/gradlew.fish
 share/fish/completions/grep.fish
 share/fish/completions/gresource.fish
 share/fish/completions/groupadd.fish
@@ -509,6 +525,7 @@ share/fish/completions/gunzip.fish
 share/fish/completions/gv.fish
 share/fish/completions/gvim.fish
 share/fish/completions/gvimdiff.fish
+share/fish/completions/gw.fish
 share/fish/completions/gzip.fish
 share/fish/completions/hashcat.fish
 share/fish/completions/head.fish
@@ -522,11 +539,13 @@ share/fish/completions/history.fish
 share/fish/completions/hjson.fish
 share/fish/completions/hledger.fish
 share/fish/completions/homectl.fish
+share/fish/completions/horcrux.fish
 share/fish/completions/hostnamectl.fish
 share/fish/completions/htop.fish
 share/fish/completions/hugo.fish
 share/fish/completions/hwinfo.fish
 share/fish/completions/i3-msg.fish
+share/fish/completions/ibmcloud.fish
 share/fish/completions/icdiff.fish
 share/fish/completions/iconv.fish
 share/fish/completions/id.fish
@@ -549,7 +568,9 @@ share/fish/completions/irb.fish
 share/fish/completions/isatty.fish
 share/fish/completions/istioctl.fish
 share/fish/completions/iw.fish
+share/fish/completions/iwctl.fish
 share/fish/completions/j.fish
+share/fish/completions/java_home.fish
 share/fish/completions/jbake.fish
 share/fish/completions/jest.fish
 share/fish/completions/jhipster.fish
@@ -569,11 +590,11 @@ share/fish/completions/kill.fish
 share/fish/completions/killall.fish
 share/fish/completions/kind.fish
 share/fish/completions/kitchen.fish
-share/fish/completions/kitty.fish
 share/fish/completions/kldload.fish
 share/fish/completions/kldunload.fish
 share/fish/completions/kmutil.fish
 share/fish/completions/konsole.fish
+share/fish/completions/krita.fish
 share/fish/completions/ksh.fish
 share/fish/completions/kubectl.fish
 share/fish/completions/latex.fish
@@ -626,6 +647,7 @@ share/fish/completions/mariner.fish
 share/fish/completions/math.fish
 share/fish/completions/matlab.fish
 share/fish/completions/mc.fish
+share/fish/completions/md-to-clip.fish
 share/fish/completions/md5sum.fish
 share/fish/completions/mdadm.fish
 share/fish/completions/mdbook.fish
@@ -705,6 +727,7 @@ share/fish/completions/nvme.fish
 share/fish/completions/nvram.fish
 share/fish/completions/objdump.fish
 share/fish/completions/obnam.fish
+share/fish/completions/oc.fish
 share/fish/completions/octave.fish
 share/fish/completions/oggenc.fish
 share/fish/completions/oksh.fish
@@ -804,6 +827,8 @@ share/fish/completions/python2.fish
 share/fish/completions/python3.fish
 share/fish/completions/pzstd.fish
 share/fish/completions/qdbus.fish
+share/fish/completions/qjs.fish
+share/fish/completions/qjsc.fish
 share/fish/completions/qmk.fish
 share/fish/completions/qshell.fish
 share/fish/completions/qubes-gpg-client.fish
@@ -826,6 +851,7 @@ share/fish/completions/reflector.fish
 share/fish/completions/reg.fish
 share/fish/completions/reject.fish
 share/fish/completions/rejmerge.fish
+share/fish/completions/rename.fish
 share/fish/completions/renice.fish
 share/fish/completions/resolvectl.fish
 share/fish/completions/return.fish
@@ -836,6 +862,7 @@ share/fish/completions/rmdir.fish
 share/fish/completions/rmmod.fish
 share/fish/completions/root.fish
 share/fish/completions/roswell.fish
+share/fish/completions/rpm-ostree.fish
 share/fish/completions/rpm.fish
 share/fish/completions/rst2html.fish
 share/fish/completions/rst2html4.fish
@@ -886,6 +913,7 @@ share/fish/completions/sha384sum.fish
 share/fish/completions/sha512sum.fish
 share/fish/completions/shortcuts.fish
 share/fish/completions/signify.fish
+share/fish/completions/smerge.fish
 share/fish/completions/snap.fish
 share/fish/completions/sops.fish
 share/fish/completions/sort.fish
@@ -981,6 +1009,7 @@ share/fish/completions/update-eix.fish
 share/fish/completions/usbip.fish
 share/fish/completions/useradd.fish
 share/fish/completions/userdbctl.fish
+share/fish/completions/userdel.fish
 share/fish/completions/usermod.fish
 share/fish/completions/vagrant.fish
 share/fish/completions/valgrind.fish
@@ -997,6 +1026,7 @@ share/fish/completions/w.fish
 share/fish/completions/wait.fish
 share/fish/completions/wajig.fish
 share/fish/completions/watch.fish
+share/fish/completions/watchexec.fish
 share/fish/completions/wc.fish
 share/fish/completions/wesnoth.fish
 share/fish/completions/wg-quick.fish
@@ -1015,6 +1045,7 @@ share/fish/completions/winemaker.fish
 share/fish/completions/wireshark.fish
 share/fish/completions/wish.fish
 share/fish/completions/wpa_cli.fish
+share/fish/completions/wpctl.fish
 share/fish/completions/wslpath.fish
 share/fish/completions/wvdial.fish
 share/fish/completions/xargs.fish
@@ -1053,6 +1084,7 @@ share/fish/completions/xsp.fish
 share/fish/completions/xsv.fish
 share/fish/completions/xterm.fish
 share/fish/completions/xviewer.fish
+share/fish/completions/xxd.fish
 share/fish/completions/xxh128sum.fish
 share/fish/completions/xxh32sum.fish
 share/fish/completions/xxh64sum.fish
@@ -1065,6 +1097,14 @@ share/fish/completions/yash.fish
 share/fish/completions/yast2.fish
 share/fish/completions/ykman.fish
 share/fish/completions/yum.fish
+share/fish/completions/zabbix_agent2.fish
+share/fish/completions/zabbix_agentd.fish
+share/fish/completions/zabbix_get.fish
+share/fish/completions/zabbix_js.fish
+share/fish/completions/zabbix_proxy.fish
+share/fish/completions/zabbix_sender.fish
+share/fish/completions/zabbix_server.fish
+share/fish/completions/zabbix_web_service.fish
 share/fish/completions/zcat.fish
 share/fish/completions/zef.fish
 share/fish/completions/zfs.fish
@@ -1083,6 +1123,7 @@ share/fish/completions/zypper.fish
 share/fish/config.fish
 share/fish/functions/N_.fish
 share/fish/functions/__fish_any_arg_in.fish
+share/fish/functions/__fish_anypager.fish
 share/fish/functions/__fish_anypython.fish
 share/fish/functions/__fish_append.fish
 share/fish/functions/__fish_apropos.fish
@@ -1251,6 +1292,7 @@ share/fish/functions/fish_config.fish
 share/fish/functions/fish_default_key_bindings.fish
 share/fish/functions/fish_default_mode_prompt.fish
 share/fish/functions/fish_delta.fish
+share/fish/functions/fish_fossil_prompt.fish
 share/fish/functions/fish_git_prompt.fish
 share/fish/functions/fish_greeting.fish
 share/fish/functions/fish_hg_prompt.fish
@@ -1336,6 +1378,7 @@ share/fish/man/man1/fish-faq.1
 share/fish/man/man1/fish-for-bash-users.1
 share/fish/man/man1/fish-interactive.1
 share/fish/man/man1/fish-language.1
+share/fish/man/man1/fish-prompt-tutorial.1
 share/fish/man/man1/fish-releasenotes.1
 share/fish/man/man1/fish-tutorial.1
 share/fish/man/man1/fish.1
@@ -1345,6 +1388,7 @@ share/fish/man/man1/fish_clipboard_copy.
 share/fish/man/man1/fish_clipboard_paste.1
 share/fish/man/man1/fish_command_not_found.1
 share/fish/man/man1/fish_config.1
+share/fish/man/man1/fish_default_key_bindings.1
 share/fish/man/man1/fish_delta.1
 share/fish/man/man1/fish_git_prompt.1
 share/fish/man/man1/fish_greeting.1
@@ -1361,6 +1405,7 @@ share/fish/man/man1/fish_svn_prompt.1
 share/fish/man/man1/fish_title.1
 share/fish/man/man1/fish_update_completions.1
 share/fish/man/man1/fish_vcs_prompt.1
+share/fish/man/man1/fish_vi_key_bindings.1
 share/fish/man/man1/for.1
 share/fish/man/man1/funced.1
 share/fish/man/man1/funcsave.1
@@ -1429,6 +1474,7 @@ share/fish/tools/deroff.py
 share/fish/tools/web_config/delete.png
 share/fish/tools/web_config/favicon.png
 share/fish/tools/web_config/fishconfig.css
+share/fish/tools/web_config/fishconfig_print.css
 share/fish/tools/web_config/index.html
 share/fish/tools/web_config/js/angular-route.js
 share/fish/tools/web_config/js/angular-sanitize.js

Index: pkgsrc/shells/fish/distinfo
diff -u pkgsrc/shells/fish/distinfo:1.35 pkgsrc/shells/fish/distinfo:1.36
--- pkgsrc/shells/fish/distinfo:1.35    Mon Dec 11 09:37:12 2023
+++ pkgsrc/shells/fish/distinfo Sun Jan  7 16:08:52 2024
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.35 2023/12/11 09:37:12 wiz Exp $
+$NetBSD: distinfo,v 1.36 2024/01/07 16:08:52 wiz Exp $
 
-BLAKE2s (fish-3.6.4.tar.xz) = e13937c6596e14c7ce28cfb793ed18151340008f8e3f339e76f847ab9ff2f5fa
-SHA512 (fish-3.6.4.tar.xz) = 0ab777d8ee87c9039a5d2abb71f175025a05c5aa0a0813d87f875e9975038a395cceebeedb5a8909d43ba06825ec1d15500fcdc9d784c424ce1dc86272703780
-Size (fish-3.6.4.tar.xz) = 2911364 bytes
+BLAKE2s (fish-3.7.0.tar.xz) = 36aa0f5ad3299521b33292082135dba29603c55e250ddc2dfc189a7b2b283780
+SHA512 (fish-3.7.0.tar.xz) = bc5121ddd2a9918befac197b215721f20b69984897ec57558bef8e3a36a849935f6d1ec1c74c2d92e565f23e417039d7130122549c8b1d8c55dd8dbfb51a2d34
+Size (fish-3.7.0.tar.xz) = 2961912 bytes
 SHA1 (patch-build__tools_git__version__gen.sh) = d66abecc900fa411f6da9c5fbb9f70f533025a49
-SHA1 (patch-cmake_ConfigureChecks.cmake) = e1a80dcd64dde555483b0253d4463f570ca16cc6
+SHA1 (patch-cmake_ConfigureChecks.cmake) = e8194cd5b927e6f5c42afb8ca953756d223b8d1c
 SHA1 (patch-cmake_Install.cmake) = 1defcb125ab0082649f1b6e592df96a9c5d49c0a

Index: pkgsrc/shells/fish/patches/patch-cmake_ConfigureChecks.cmake
diff -u pkgsrc/shells/fish/patches/patch-cmake_ConfigureChecks.cmake:1.4 pkgsrc/shells/fish/patches/patch-cmake_ConfigureChecks.cmake:1.5
--- pkgsrc/shells/fish/patches/patch-cmake_ConfigureChecks.cmake:1.4    Tue May 16 17:04:56 2023
+++ pkgsrc/shells/fish/patches/patch-cmake_ConfigureChecks.cmake        Sun Jan  7 16:08:52 2024
@@ -1,13 +1,13 @@
-$NetBSD: patch-cmake_ConfigureChecks.cmake,v 1.4 2023/05/16 17:04:56 wiz Exp $
+$NetBSD: patch-cmake_ConfigureChecks.cmake,v 1.5 2024/01/07 16:08:52 wiz Exp $
 
 On some systems, libterminfo has a longer name.
 https://github.com/fish-shell/fish-shell/pull/9794
 
---- cmake/ConfigureChecks.cmake.orig   2023-03-25 06:50:41.000000000 +0000
+--- cmake/ConfigureChecks.cmake.orig   2024-01-01 15:15:17.000000000 +0000
 +++ cmake/ConfigureChecks.cmake
-@@ -80,6 +80,11 @@ find_library(CURSES_TINFO tinfo)
- if (CURSES_TINFO)
-     set(CURSES_LIBRARY ${CURSES_LIBRARY} ${CURSES_TINFO})
+@@ -86,6 +86,11 @@ else()
+         set(CURSES_LIBRARY ${CURSES_LIBRARY} ${CURSES_TINFO})
+     endif()
  endif()
 +# on some systems, libterminfo has a longer name
 +find_library(CURSES_TINFO terminfo)



Home | Main Index | Thread Index | Old Index