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:           Thu May  4 06:22:02 UTC 2023

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

Log Message:
fzf: update to 0.40.0

0.40.0
------
- Added `zero` event that is triggered when there's no match
- New actions
    - Added `track` action which makes fzf track the current item when the
      search result is updated. If the user manually moves the cursor, or the
      item is not in the updated search result, tracking is automatically
      disabled. Tracking is useful when you want to see the surrounding items
      by deleting the query string.
    - Added `change-header(...)`
    - Added `transform-header(...)`
    - Added `toggle-track` action
- Fixed `--track` behavior when used with `--tac`
    - However, using `--track` with `--tac` is not recommended. The resulting
      behavior can be very confusing.
- Bug fixes and improvements

0.39.0
------
- Added `one` event that is triggered when there's only one match
- Added `--track` option that makes fzf track the current selection when the
  result list is updated. This can be useful when browsing logs using fzf with
  sorting disabled.
- If you use `--listen` option without a port number fzf will automatically
  allocate an available port and export it as `$FZF_PORT` environment
  variable.
- A carriage return and a line feed character will be rendered as dim ␍ and
  ␊ respectively.
- fzf will stop rendering a non-displayable characters as a space. This will
  likely cause less glitches in the preview window.
- Bug fixes and improvements

0.38.0
------
- New actions
    - `become(...)` - Replace the current fzf process with the specified
      command using `execve(2)` system call.
      See https://github.com/junegunn/fzf#turning-into-a-different-process for
      more information.
        - This action is not supported on Windows
    - `show-preview`
    - `hide-preview`
- Bug fixes
    - `--preview-window 0,hidden` should not execute the preview command until
      `toggle-preview` action is triggered

0.37.0
------
- Added a way to customize the separator of inline info
- New event
    - `focus` - Triggered when the focus changes due to a vertical cursor
      movement or a search result update
- New actions
    - `change-border-label`
    - `change-preview-label`
    - `transform-border-label`
    - `transform-preview-label`
- Bug fixes and improvements

0.36.0
------
- Added `--listen=HTTP_PORT` option to start HTTP server. It allows external
  processes to send actions to perform via POST method.
- Added draggable scrollbar to the main search window and the preview window
- New event
    - Added `load` event that is triggered when the input stream is complete
      and the initial processing of the list is complete.
- New actions
    - Added `pos(...)` action to move the cursor to the numeric position
        - `first` and `last` are equivalent to `pos(1)` and `pos(-1)` respectively
    - Added `reload-sync(...)` action which replaces the current list only after
      the reload process is complete. This is useful when the command takes
      a while to produce the initial output and you don't want fzf to run against
      an empty list while the command is running.
    - Added `next-selected` and `prev-selected` actions to move between selected
      items
    - Added `change-query(...)` action that simply changes the query string to the
      given static string. This can be useful when used with `--listen`.
    - Added `transform-prompt(...)` action for transforming the prompt string
      using an external command
    - Added `transform-query(...)` action for transforming the query string using
      an external command
    - `put` action can optionally take an argument string
- Added color name `preview-label` for `--preview-label` (defaults to `label`
  for `--border-label`)
- Better support for (Windows) terminals where each box-drawing character
  takes 2 columns. Set `RUNEWIDTH_EASTASIAN` environment variable to `0` or `1`.
    - On Vim, the variable will be automatically set if `&ambiwidth` is `double`
- Behavior changes
    - fzf will always execute the preview command if the command template
      contains `{q}` even when it's empty. If you prefer the old behavior,
      you'll have to check if `{q}` is empty in your command.
    - `double-click` will behave the same as `enter` unless otherwise specified,
      so you don't have to repeat the same action twice in `--bind` in most cases.
    - If the color for `separator` is not specified, it will default to the
      color for `border`. Same holds true for `scrollbar`. This is to reduce
      the number of configuration items required to achieve a consistent color
      scheme.
    - If `follow` flag is specified in `--preview-window` option, fzf will
      automatically scroll to the bottom of the streaming preview output. But
      when the user manually scrolls the window, the following stops. With
      this version, fzf will resume following if the user scrolls the window
      to the bottom.
    - Default border style on Windows is changed to `sharp` because some
      Windows terminals are not capable of displaying `rounded` border
      characters correctly.
- Minor bug fixes and improvements

0.35.1
------
- Fixed a bug where fzf with `--tiebreak=chunk` crashes on inverse match query
- Fixed a bug where clicking above fzf would paste escape sequences

0.35.0
------
- Added `start` event that is triggered only once when fzf finder starts.
  Since fzf consumes the input stream asynchronously, the input list is not
  available unless you use `--sync`.
  ```sh
  seq 100 | fzf --multi --sync --bind 'start:last+select-all+preview(echo welcome)'
  ```
- Added `--border-label` and `--border-label-pos` for putting label on the border
- Also added `--preview-label` and `--preview-label-pos` for the border of the
  preview window
- Info panel (match counter) will be followed by a horizontal separator by
  default
    - Use `--no-separator` or `--separator=''` to hide the separator
    - You can specify an arbitrary string that is repeated to form the
      horizontal separator. e.g. `--separator=╸`
    - The color of the separator can be customized via `--color=separator:...`
    - ANSI color codes are also supported
- Added `--border=bold` and `--border=double` along with
  `--preview-window=border-bold` and `--preview-window=border-double`

0.34.0
------
- Added support for adaptive `--height`. If the `--height` value is prefixed
  with `~`, fzf will automatically determine the height in the range according
  to the input size.
    - There are a few limitations
        - Not compatible with percent top/bottom margin/padding
        - fzf will not start until it can determine the right height for the input
- Fixed tcell renderer used to render full-screen fzf on Windows
- `--no-clear` is deprecated. Use `reload` action instead.

0.33.0
------
- Added `--scheme=[default|path|history]` option to choose scoring scheme
    - (Experimental)
    - We updated the scoring algorithm in 0.32.0, however we have learned that
      this new scheme (`default`) is not always giving the optimal result
    - `path`: Additional bonus point is only given to the characters after
      path separator. You might want to choose this scheme if you have many
      files with spaces in their paths.
    - `history`: No additional bonus points are given so that we give more
      weight to the chronological ordering. This is equivalent to the scoring
      scheme before 0.32.0. This also sets `--tiebreak=index`.
- ANSI color sequences with colon delimiters are now supported.
- Support `border-{up,down}` as the synonyms for `border-{top,bottom}` in
  `--preview-window`
- Added support for ANSI `strikethrough`

0.32.1
------
- Fixed incorrect ordering of `--tiebreak=chunk`
- fzf-tmux will show fzf border instead of tmux popup border (requires tmux 3.3)

0.32.0
------
- Updated the scoring algorithm
    - Different bonus points to different categories of word boundaries
      (listed higher to lower bonus point)
        - Word after whitespace characters or beginning of the string
        - Word after common delimiter characters (`/,:;|`)
        - Word after other non-word characters
- Added a new tiebreak `chunk`
    - Favors the line with shorter matched chunk. A chunk is a set of
      consecutive non-whitespace characters.
    - Unlike the default `length`, this scheme works well with tabular input
    - If the input does not contain any spaces, `chunk` is equivalent to
      `length`. But we're not going to set it as the default because it is
      computationally more expensive.
- Bug fixes and improvements

0.31.0
------
- Added support for an alternative preview window layout that is activated
  when the size of the preview window is smaller than a certain threshold.
- fzf now uses SGR mouse mode to properly support mouse on larger terminals
- You can now use characters that do not satisfy `unicode.IsGraphic` constraint
  for `--marker`, `--pointer`, and `--ellipsis`. Allows Nerd Fonts and stuff.
  Use at your own risk.
- Bug fixes and improvements
- Shell extension
    - `kill` completion now requires trigger sequence (`**`) for consistency

0.30.0
------
- Fixed cursor flickering over the screen by hiding it during rendering
- Added `--ellipsis` option. You can take advantage of it to make fzf
  effectively search non-visible parts of the item.
- Added `rebind` action for restoring bindings after `unbind`
- Bug fixes and improvements


To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 pkgsrc/sysutils/fzf/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/sysutils/fzf/distinfo
cvs rdiff -u -r1.2 -r1.3 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.65 pkgsrc/sysutils/fzf/Makefile:1.66
--- pkgsrc/sysutils/fzf/Makefile:1.65   Wed Apr  5 20:47:56 2023
+++ pkgsrc/sysutils/fzf/Makefile        Thu May  4 06:22:02 2023
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.65 2023/04/05 20:47:56 bsiegert Exp $
+# $NetBSD: Makefile,v 1.66 2023/05/04 06:22:02 iquiw Exp $
 
-DISTNAME=      fzf-0.29.0
-PKGREVISION=   14
+DISTNAME=      fzf-0.40.0
 CATEGORIES=    sysutils
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=junegunn/}
 

Index: pkgsrc/sysutils/fzf/distinfo
diff -u pkgsrc/sysutils/fzf/distinfo:1.13 pkgsrc/sysutils/fzf/distinfo:1.14
--- pkgsrc/sysutils/fzf/distinfo:1.13   Sat Apr  2 13:43:21 2022
+++ pkgsrc/sysutils/fzf/distinfo        Thu May  4 06:22:02 2023
@@ -1,44 +1,38 @@
-$NetBSD: distinfo,v 1.13 2022/04/02 13:43:21 mef Exp $
+$NetBSD: distinfo,v 1.14 2023/05/04 06:22:02 iquiw Exp $
 
-BLAKE2s (fzf-0.29.0.tar.gz) = 30d5133088635a84b6898f11c7b2fc0f540e2d19dc9ada98a1c67d1bb6b0b3b0
-SHA512 (fzf-0.29.0.tar.gz) = 65744b6ea9c7a475de2e5dfa609c00df70db07804311b938a94373aa6447b587fee417edcf3bf7d66524f25cb405a9cc5be96d26111690e2f7a373dc10423010
-Size (fzf-0.29.0.tar.gz) = 208296 bytes
+BLAKE2s (fzf-0.40.0.tar.gz) = 466e0b0bea81aef07d588a729f500fbc8e46213e13c59baef263d4dc20d78e58
+SHA512 (fzf-0.40.0.tar.gz) = 03a9aae215b06cd2d0c318e7fb13c6e39012091e9773f00cba702323c5fe3b2b0161f48fe552188689be307e2d308c47afed53e1046a7a767bcd49c98c1dbf60
+Size (fzf-0.40.0.tar.gz) = 236930 bytes
 BLAKE2s (github.com_gdamore_encoding_@v_v1.0.0.mod) = d98306119aa62bd2bb2dc3fd0a93976e35a5396dd7d50fb0fc3eb0c157fb88c2
 SHA512 (github.com_gdamore_encoding_@v_v1.0.0.mod) = fb153c4e481c073133f0c933c67eba8a1f160ab146921f2c77125b6ff5c348cea57e3a5701a557c8db2212d32e3cba1c09b9509210660c17b66c2a45ba97cb75
 Size (github.com_gdamore_encoding_@v_v1.0.0.mod) = 77 bytes
 BLAKE2s (github.com_gdamore_encoding_@v_v1.0.0.zip) = 0862bc4e46e9470af0fc008ce4a3370108c00d3382156ae7486f5720a878c937
 SHA512 (github.com_gdamore_encoding_@v_v1.0.0.zip) = 127767c725e376b43fe4e2003ddc12fe89693d6d7e52b01e6d47d73fd04496decc0fd60b64c7a65303428e00a52ece1848610ea35231789a814187ef8503bee3
 Size (github.com_gdamore_encoding_@v_v1.0.0.zip) = 19867 bytes
-BLAKE2s (github.com_gdamore_tcell_@v_v1.4.0.mod) = 1b1ef30a9cbd12a8010c2d36d98b3c96857670742d87275a50fb6032d651e68b
-SHA512 (github.com_gdamore_tcell_@v_v1.4.0.mod) = 412dee57c525bd5a3c0ce9c482e7933814758e36ebb226a16392e648f57e280485f86e30f17be2339eed427b52e4b0b601401503d0bd324c7fa874e2fcba2b60
-Size (github.com_gdamore_tcell_@v_v1.4.0.mod) = 250 bytes
-BLAKE2s (github.com_gdamore_tcell_@v_v1.4.0.zip) = 964c2b9b257ba15b8eb349f95f28893e4f6897dea0e1989941cdf6ba814d6571
-SHA512 (github.com_gdamore_tcell_@v_v1.4.0.zip) = 5fdd7b7b3b2826de6142d2dc0e6b19372636c4442c8878925f8c2af8bdfd2eef3c0cdbe331d0889345eb1e5a1d8c04ac80b3e46be7203d2475df86e04819af80
-Size (github.com_gdamore_tcell_@v_v1.4.0.zip) = 226363 bytes
-BLAKE2s (github.com_lucasb-eyer_go-colorful_@v_v1.0.3.mod) = d659ba07c1540d9564017c785739d2bf124b20eaaf3ffd78fbb38efe21ec5321
-SHA512 (github.com_lucasb-eyer_go-colorful_@v_v1.0.3.mod) = 270b19446ac9a396f5ce7a000873928a44edb1457f86d294971dae08be37cd64ddb8edc0293e100ee60d56c504851aa69ab11db0b4cfd46649c5f79459e40011
-Size (github.com_lucasb-eyer_go-colorful_@v_v1.0.3.mod) = 51 bytes
+BLAKE2s (github.com_gdamore_tcell_v2_@v_v2.5.4.mod) = 18bd1ea5aa1e8594e292ede7383c54039b2479b4c89cce506aa37a64e12df305
+SHA512 (github.com_gdamore_tcell_v2_@v_v2.5.4.mod) = 23d5300e1105723dfcef0329815735c4002cec1368128ae5fdd5578eb1b263dd789c5584574b9cab2f3ec617709fc7990e12a59a8d808e5aadfdf8fa351307bf
+Size (github.com_gdamore_tcell_v2_@v_v2.5.4.mod) = 308 bytes
+BLAKE2s (github.com_gdamore_tcell_v2_@v_v2.5.4.zip) = 4f03a679cb8300d3d59a8af6e2647c9dffe11012dd97885c896022bc2c575a19
+SHA512 (github.com_gdamore_tcell_v2_@v_v2.5.4.zip) = 58093be8bffe81ebe9bfa47aee9115f0f4f605210ae29f779425d5ff9b760187675e3568a9947d3e1c9474c15242e6a6072f8a231a83675d5fc3a26c8302b197
+Size (github.com_gdamore_tcell_v2_@v_v2.5.4.zip) = 244108 bytes
 BLAKE2s (github.com_lucasb-eyer_go-colorful_@v_v1.2.0.mod) = d659ba07c1540d9564017c785739d2bf124b20eaaf3ffd78fbb38efe21ec5321
 SHA512 (github.com_lucasb-eyer_go-colorful_@v_v1.2.0.mod) = 270b19446ac9a396f5ce7a000873928a44edb1457f86d294971dae08be37cd64ddb8edc0293e100ee60d56c504851aa69ab11db0b4cfd46649c5f79459e40011
 Size (github.com_lucasb-eyer_go-colorful_@v_v1.2.0.mod) = 51 bytes
 BLAKE2s (github.com_lucasb-eyer_go-colorful_@v_v1.2.0.zip) = 0f232c68cb4dd7dc05417a7ba38cab8dc8baa14e554cc49b2868ee9ecfdf9eed
 SHA512 (github.com_lucasb-eyer_go-colorful_@v_v1.2.0.zip) = 89b52255dd45791100b58a693036c772d27b26011754caa15df2badc4a93038b70060c7358aa12e01494e2f24e94533cd4ea7f7cb78686e61540383d1680ba2f
 Size (github.com_lucasb-eyer_go-colorful_@v_v1.2.0.zip) = 958042 bytes
-BLAKE2s (github.com_mattn_go-isatty_@v_v0.0.14.mod) = 927c4e44c809a70af5d278922fe3bc89f7fb0a7f8642c31c6b91d9b9c463f5b0
-SHA512 (github.com_mattn_go-isatty_@v_v0.0.14.mod) = 23b01eb4023ff5018437ff98b55ada053eba49feab2777eed36d033f426c5456b143f3defbc3131dad1251205f3ffb3553e3c10bd98de80f0a462e8450d6d56c
-Size (github.com_mattn_go-isatty_@v_v0.0.14.mod) = 104 bytes
-BLAKE2s (github.com_mattn_go-isatty_@v_v0.0.14.zip) = 8c839f738b2a9ba146e7277081821411cf1868fc565e71ed60c792428c95599d
-SHA512 (github.com_mattn_go-isatty_@v_v0.0.14.zip) = c6401cf5af80ea2495cb63800ff39fb9490f212f3aae0ac1d86b3d37ce6734eb35aea00b35bd26532feab77ef80322e765925f302d77f664dd57163f67a8374e
-Size (github.com_mattn_go-isatty_@v_v0.0.14.zip) = 8919 bytes
-BLAKE2s (github.com_mattn_go-runewidth_@v_v0.0.13.mod) = 8df0af400904d313f84666016bb58fa961611b14296a6ee0b534ea7942608632
-SHA512 (github.com_mattn_go-runewidth_@v_v0.0.13.mod) = b96cca212a7024f0039ddd3a744fe818ab2e028b8ac2fd4472ce76ee9b496de3abb0960718c1106a98cf7e6df652dcf2884fe5ed95979bd9016399ea4abd324d
-Size (github.com_mattn_go-runewidth_@v_v0.0.13.mod) = 84 bytes
-BLAKE2s (github.com_mattn_go-runewidth_@v_v0.0.13.zip) = 6867b08f5d64664bffa40c5f0ca0c5e54e14f76fd3148430ce360f8a595df11f
-SHA512 (github.com_mattn_go-runewidth_@v_v0.0.13.zip) = e86a3b69601be1a0a15d7bfd5d93fce8d8c06b52c55c941a9ed62b44f05d3062e436d817661af14bb42838efc45875a63eb6042b196e1684db36e0fe6ed42a7f
-Size (github.com_mattn_go-runewidth_@v_v0.0.13.zip) = 20978 bytes
-BLAKE2s (github.com_mattn_go-runewidth_@v_v0.0.7.mod) = 425a4ee1bcc04aff2655e119549702481c6bf569079a38ae6a073d031de347eb
-SHA512 (github.com_mattn_go-runewidth_@v_v0.0.7.mod) = 0cfd4101dd8ed90f80b7f4ce2928cd322b93855764abae65d66c5ff9888a7c8aec6ee6581c7f05d1c80db5c78003ee2afc8537fda8a3855e2349bfb8267aba61
-Size (github.com_mattn_go-runewidth_@v_v0.0.7.mod) = 45 bytes
+BLAKE2s (github.com_mattn_go-isatty_@v_v0.0.17.mod) = 9ab0e18450ce1411fd7541669c1b29e58ebdb56bf51d7257adbef3a06f80c73f
+SHA512 (github.com_mattn_go-isatty_@v_v0.0.17.mod) = fa6d9703ba17668a67a2c80fba6ce5d7a682c1ee225591f31b32141a68f47c3ae98a93a59b0a6b5f9b40770b56933fe96da87754b28200df8640187acf203715
+Size (github.com_mattn_go-isatty_@v_v0.0.17.mod) = 104 bytes
+BLAKE2s (github.com_mattn_go-isatty_@v_v0.0.17.zip) = f1b8a76d5b6e1434d868835c2c46afec18fc5db2cae9c2b3a6edc88ac034770c
+SHA512 (github.com_mattn_go-isatty_@v_v0.0.17.zip) = efdef08d523a70fde5c01c95d0ea50070425c0f6dd2302a5d0e2aa674ac54e24cdc1c6e0643fee91034570bbb7d9d77b6e196d9f07f640f861a02ca614dd39b3
+Size (github.com_mattn_go-isatty_@v_v0.0.17.zip) = 8935 bytes
+BLAKE2s (github.com_mattn_go-runewidth_@v_v0.0.14.mod) = 8df0af400904d313f84666016bb58fa961611b14296a6ee0b534ea7942608632
+SHA512 (github.com_mattn_go-runewidth_@v_v0.0.14.mod) = b96cca212a7024f0039ddd3a744fe818ab2e028b8ac2fd4472ce76ee9b496de3abb0960718c1106a98cf7e6df652dcf2884fe5ed95979bd9016399ea4abd324d
+Size (github.com_mattn_go-runewidth_@v_v0.0.14.mod) = 84 bytes
+BLAKE2s (github.com_mattn_go-runewidth_@v_v0.0.14.zip) = 3056984ecc71fdb17141246766a8399aba41e3a6e9a2e5f95c80e3671085b81d
+SHA512 (github.com_mattn_go-runewidth_@v_v0.0.14.zip) = 9998ab38bd10a2498c810634d5d45e92baedf1eca5956c9f3640b09e26d13f48fde9c04dd3ab169a3be6ca826553ca2a1db13fc3932dfa5c33aada169b2fac55
+Size (github.com_mattn_go-runewidth_@v_v0.0.14.zip) = 21752 bytes
 BLAKE2s (github.com_mattn_go-shellwords_@v_v1.0.12.mod) = f30e6044a95a1d7c205a42356ff66be576f3764237dcc5f5a444e1322b0b6bd4
 SHA512 (github.com_mattn_go-shellwords_@v_v1.0.12.mod) = c1a6d910b914ceef7ffea53c61f2225ebffeba2fc87c290aebdb739bf520494e35fef046eb9ced4fc9a3767523efefcce41ef5026fe11bad97c005b8e55d96f8
 Size (github.com_mattn_go-shellwords_@v_v1.0.12.mod) = 47 bytes
@@ -48,54 +42,108 @@ Size (github.com_mattn_go-shellwords_@v_
 BLAKE2s (github.com_rivo_uniseg_@v_v0.2.0.mod) = 9cf2a838a41e79c2133f00b4192de1d8204ef6dc7be601908ad9b2fb0c84c8df
 SHA512 (github.com_rivo_uniseg_@v_v0.2.0.mod) = d6089badd618722b8d3584965f1a10290097f259024a444744f625fe5b439fef62c7e14f060fb8593197d003ecd6c29f0cb85700de0bdfbf2511ca66729db3bc
 Size (github.com_rivo_uniseg_@v_v0.2.0.mod) = 39 bytes
-BLAKE2s (github.com_rivo_uniseg_@v_v0.2.0.zip) = 979391f242312d88d58ff807872dc8d92a768eed36c77247c56a95cddfc3f7cd
-SHA512 (github.com_rivo_uniseg_@v_v0.2.0.zip) = 88f37961ebe3a1701265a2f5cb606e97fe4ddd09e36ff13ca8c026e98640af5d35cb930e4d12b6690a97e5d934705102554c6d2912ebbb5ee08976c698cce2db
-Size (github.com_rivo_uniseg_@v_v0.2.0.zip) = 45731 bytes
-BLAKE2s (github.com_saracen_walker_@v_v0.1.2.mod) = c9c45b7199c8fe7bd29b688e081208ad54454abb4cff18dca4786b55184d7541
-SHA512 (github.com_saracen_walker_@v_v0.1.2.mod) = 21f6fea86dafb4b32ef61014700a7563e6c273fa8c23c6ce0a8776408511a8b4ab2d3391e21628054be2a94062f72aa7e9cc2f133b7ba1b2b10a758dce783d43
-Size (github.com_saracen_walker_@v_v0.1.2.mod) = 104 bytes
-BLAKE2s (github.com_saracen_walker_@v_v0.1.2.zip) = 00763defbd590ab2a5d2ab9ff2d52334637bb52840902220aa4767596d418a66
-SHA512 (github.com_saracen_walker_@v_v0.1.2.zip) = 805094a1745b2c20d9c6265e84f92ee9fa05a46fd93408d10e62c855985a7f2838ff9fffed61e705875eb0c49530fe9b21c7586ccba01a4b53c8f4dffba3b228
-Size (github.com_saracen_walker_@v_v0.1.2.zip) = 17973 bytes
-BLAKE2s (golang.org_x_sync_@v_v0.0.0-20200317015054-43a5402ce75a.mod) = 0524d428f3fcb8a923eb2717aacc5f3b26a68c2b9ac636b9505d1820d6b32ede
-SHA512 (golang.org_x_sync_@v_v0.0.0-20200317015054-43a5402ce75a.mod) = a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0
-Size (golang.org_x_sync_@v_v0.0.0-20200317015054-43a5402ce75a.mod) = 25 bytes
-BLAKE2s (golang.org_x_sync_@v_v0.0.0-20210220032951-036812b2e83c.mod) = 0524d428f3fcb8a923eb2717aacc5f3b26a68c2b9ac636b9505d1820d6b32ede
-SHA512 (golang.org_x_sync_@v_v0.0.0-20210220032951-036812b2e83c.mod) = a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0
-Size (golang.org_x_sync_@v_v0.0.0-20210220032951-036812b2e83c.mod) = 25 bytes
-BLAKE2s (golang.org_x_sync_@v_v0.0.0-20210220032951-036812b2e83c.zip) = a0dbb81c68bf5b27eb629e90bd5f496d2dd5c5f5cf90ad310b562e289a4befd6
-SHA512 (golang.org_x_sync_@v_v0.0.0-20210220032951-036812b2e83c.zip) = 48b983589bd682ff9275c47733ec73637ebb5e58e1bca0c7744101229237d5cb34170efab63db0061aec857052cce9ef03c3497702b90a86287e6be88e1b33aa
-Size (golang.org_x_sync_@v_v0.0.0-20210220032951-036812b2e83c.zip) = 28693 bytes
-BLAKE2s (golang.org_x_sys_@v_v0.0.0-20190626150813-e07cf5db2756.mod) = 6b2b0a0ac9d77adff84f1aab70cc38a4dcf14418c326fcb2dde80f104fb41e9f
-SHA512 (golang.org_x_sys_@v_v0.0.0-20190626150813-e07cf5db2756.mod) = 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab
-Size (golang.org_x_sys_@v_v0.0.0-20190626150813-e07cf5db2756.mod) = 33 bytes
+BLAKE2s (github.com_rivo_uniseg_@v_v0.4.4.mod) = b28862d76cf101776adbbbe430fe54e3e3d580592a189a4d172bde6e0e12b844
+SHA512 (github.com_rivo_uniseg_@v_v0.4.4.mod) = 24aed27104c6b3c7afa3d97e9be08efcd771fbfaebadfabef86161d626d46471fba92f61513931e34811755af29f5a4d32ceb77aea598060cf8c1ee513d7438c
+Size (github.com_rivo_uniseg_@v_v0.4.4.mod) = 39 bytes
+BLAKE2s (github.com_rivo_uniseg_@v_v0.4.4.zip) = 1b908ce7d3d676f946ffaa0639aed3c367c29326f55b90208421fecf7d5ae202
+SHA512 (github.com_rivo_uniseg_@v_v0.4.4.zip) = ae6f6d726761ad35d4374474bdec6a87278cf82e77af848dadcc693b6bbbcc5cbccc9389464bd9d25408103631cd142f747464ad03fdd7f8649005cdb4d92cad
+Size (github.com_rivo_uniseg_@v_v0.4.4.zip) = 476937 bytes
+BLAKE2s (github.com_saracen_walker_@v_v0.1.3.mod) = a34eeece8445c50aea4dc8dbcc8b8f011bab161a700148975621b555e2659ed0
+SHA512 (github.com_saracen_walker_@v_v0.1.3.mod) = a9636c92108b6f4f9650feb9f1ee528777bb04741f1cc4e1ae92cddaa225d7219fa15d2eef3524c07eb74e6a8af8613e3291813cda9b2e9d84b6e96ee8e07571
+Size (github.com_saracen_walker_@v_v0.1.3.mod) = 104 bytes
+BLAKE2s (github.com_saracen_walker_@v_v0.1.3.zip) = bcf05804987b0869c841ba93bc3289988d86c6466f3c8e69e81834d9ac85be56
+SHA512 (github.com_saracen_walker_@v_v0.1.3.zip) = 3f19a797e0d55b3aca8b03e6b9ae6b4c4a80e9898482362e97449bfa4498be2116c19fc18916810671839295e4cdbf98a75ffd3877822b63c4232b3e225b7e9f
+Size (github.com_saracen_walker_@v_v0.1.3.zip) = 17973 bytes
+BLAKE2s (github.com_yuin_goldmark_@v_v1.4.13.mod) = 762aa9f29a199f8d7a6c4f5616131596e48b3912b330db87a68f7682fa401a51
+SHA512 (github.com_yuin_goldmark_@v_v1.4.13.mod) = a35fb2caa24d91450561cb1ad835c140f93eda650acd82dc1edbc2a64f507b856c19958af651bfbbe2731cdb50148044260bc5d30960b57769bdaba19142fab3
+Size (github.com_yuin_goldmark_@v_v1.4.13.mod) = 41 bytes
+BLAKE2s (golang.org_x_crypto_@v_v0.0.0-20190308221718-c2843e01d9a2.mod) = d95def65a866d710e01f1b0c2753b866d5c1df6af7d5289b1c784394b1d82e04
+SHA512 (golang.org_x_crypto_@v_v0.0.0-20190308221718-c2843e01d9a2.mod) = 
2df49895053b36fed7ea905aa73f86568fbafd79ff0a7976679d8c77cf15025129435d9dbfd89367b611b1aadbea4f4bd1835eb4efa9ea702466e443638d379e
+Size (golang.org_x_crypto_@v_v0.0.0-20190308221718-c2843e01d9a2.mod) = 88 bytes
+BLAKE2s (golang.org_x_crypto_@v_v0.0.0-20210921155107-089bfa567519.mod) = 824ffc805f5055d5008f6935f3b8f85d7550f8e0f91552186724b20823d87add
+SHA512 (golang.org_x_crypto_@v_v0.0.0-20210921155107-089bfa567519.mod) = 
32f94123c2845965432016800e6f051341f6d5d0af3678e367ac6c55022c68e86e929cc545a576d466f2533c235c29fb72542de75eae7419dfb5640cd80df3ef
+Size (golang.org_x_crypto_@v_v0.0.0-20210921155107-089bfa567519.mod) = 247 bytes
+BLAKE2s (golang.org_x_mod_@v_v0.6.0-dev.0.20220419223038-86c51ed26bb4.mod) = 3f0d0909d9e47064d3d0fe193f1a93eeeeac26d33ee67fd3c9bc8f17ae1e81f8
+SHA512 (golang.org_x_mod_@v_v0.6.0-dev.0.20220419223038-86c51ed26bb4.mod) = 
480578e689b3d5f5026af3ab52e55b47098525512daf532f4656d50ea5d9043d1b3e69556a5e7d93c7ea6cfca956f733271f3b1f4f65da1a7dac9ea07f5d9fec
+Size (golang.org_x_mod_@v_v0.6.0-dev.0.20220419223038-86c51ed26bb4.mod) = 157 bytes
+BLAKE2s (golang.org_x_net_@v_v0.0.0-20190620200207-3b0461eec859.mod) = 1c3e72485ccef1dd03ab07484627ee59f4ef62e97bd3ba94ca5d98718b7b81a6
+SHA512 (golang.org_x_net_@v_v0.0.0-20190620200207-3b0461eec859.mod) = 2794c616072f01ca3324107aad2ed97e05f6e6c1e9811a1749073376a89c9ce57a910cfdc8dd6bdc2583d133bb53605c7a68917eaa221ec5c1c8319e5dfbb236
+Size (golang.org_x_net_@v_v0.0.0-20190620200207-3b0461eec859.mod) = 181 bytes
+BLAKE2s (golang.org_x_net_@v_v0.0.0-20210226172049-e18ecbb05110.mod) = a2c15b99f803c8fec2304237e4f8b2e0588019bb634ed05eeac951521b68d811
+SHA512 (golang.org_x_net_@v_v0.0.0-20210226172049-e18ecbb05110.mod) = f8ad754f922057fe78b5497cc77089a5eedc774800b2728a3ccd74cc82d83ba1ff00cc2d28110d5535623b733af7e34616f2fe127e68a936b9551395487ec146
+Size (golang.org_x_net_@v_v0.0.0-20210226172049-e18ecbb05110.mod) = 179 bytes
+BLAKE2s (golang.org_x_net_@v_v0.0.0-20220722155237-a158d28d115b.mod) = 9307f6ffcb6aa8035f4f716b6e797f1f06b4366f74e098b7247968b4cc5cddbf
+SHA512 (golang.org_x_net_@v_v0.0.0-20220722155237-a158d28d115b.mod) = 1c5c40d56518378bffb74da777d6d203c197259097807258b8f657e9474a4091c97eb487515d567c458992301e21d2f9d7ad7c50299132b540ca0f9173caf611
+Size (golang.org_x_net_@v_v0.0.0-20220722155237-a158d28d115b.mod) = 179 bytes
+BLAKE2s (golang.org_x_sync_@v_v0.0.0-20190423024810-112230192c58.mod) = 0524d428f3fcb8a923eb2717aacc5f3b26a68c2b9ac636b9505d1820d6b32ede
+SHA512 (golang.org_x_sync_@v_v0.0.0-20190423024810-112230192c58.mod) = a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0
+Size (golang.org_x_sync_@v_v0.0.0-20190423024810-112230192c58.mod) = 25 bytes
+BLAKE2s (golang.org_x_sync_@v_v0.0.0-20220722155255-886fb9371eb4.mod) = 0524d428f3fcb8a923eb2717aacc5f3b26a68c2b9ac636b9505d1820d6b32ede
+SHA512 (golang.org_x_sync_@v_v0.0.0-20220722155255-886fb9371eb4.mod) = a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0
+Size (golang.org_x_sync_@v_v0.0.0-20220722155255-886fb9371eb4.mod) = 25 bytes
+BLAKE2s (golang.org_x_sync_@v_v0.0.0-20220722155255-886fb9371eb4.zip) = 33737f00641b2e759349d601780a7f0a51b1e9471dd317c988a9a088fbd6c024
+SHA512 (golang.org_x_sync_@v_v0.0.0-20220722155255-886fb9371eb4.zip) = fd5f4edaa65edd8074840dfbf82c294cbcdad8bc85a50a7727380afef2947f62d3a5d174c6cb358b07d7b932376627f5d75aaa16d31550907207659ff58b7488
+Size (golang.org_x_sync_@v_v0.0.0-20220722155255-886fb9371eb4.zip) = 28988 bytes
+BLAKE2s (golang.org_x_sys_@v_v0.0.0-20190215142949-d0b11bdaac8a.mod) = aa44bc87b37c614a717cf692f23966b8babf30a09e6039a89eb6cc5b2943af87
+SHA512 (golang.org_x_sys_@v_v0.0.0-20190215142949-d0b11bdaac8a.mod) = ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c
+Size (golang.org_x_sys_@v_v0.0.0-20190215142949-d0b11bdaac8a.mod) = 24 bytes
 BLAKE2s (golang.org_x_sys_@v_v0.0.0-20201119102817-f84b799fce68.mod) = 6b2b0a0ac9d77adff84f1aab70cc38a4dcf14418c326fcb2dde80f104fb41e9f
 SHA512 (golang.org_x_sys_@v_v0.0.0-20201119102817-f84b799fce68.mod) = 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab
 Size (golang.org_x_sys_@v_v0.0.0-20201119102817-f84b799fce68.mod) = 33 bytes
-BLAKE2s (golang.org_x_sys_@v_v0.0.0-20210630005230-0f9fa26af87c.mod) = 66613eb38a59b8a7f75e1aaeb294a1c4ea290d4e9ae699137566025e50ed741c
-SHA512 (golang.org_x_sys_@v_v0.0.0-20210630005230-0f9fa26af87c.mod) = 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655
-Size (golang.org_x_sys_@v_v0.0.0-20210630005230-0f9fa26af87c.mod) = 33 bytes
-BLAKE2s (golang.org_x_sys_@v_v0.0.0-20210630005230-0f9fa26af87c.zip) = 17efc732b511e875060930a376cebdce1b6a3b9a27a142b448ccf1f38f7a7567
-SHA512 (golang.org_x_sys_@v_v0.0.0-20210630005230-0f9fa26af87c.zip) = 6a36b9dd8ab6582abf0721e3fdfd19c2cbf9caf02a2f8aeff8952175553e35ab9f9972c2e524ad947e51e24f5eaee23984fc1670d512c04e50b2d71890c5d392
-Size (golang.org_x_sys_@v_v0.0.0-20210630005230-0f9fa26af87c.zip) = 1646674 bytes
-BLAKE2s (golang.org_x_term_@v_v0.0.0-20210317153231-de623e64d2a6.mod) = ea6d2006c1c11da8c2174212a63865a04dec1775f98210c17f3a0cb8d4a1a80f
-SHA512 (golang.org_x_term_@v_v0.0.0-20210317153231-de623e64d2a6.mod) = a3401e3d20dc1aaaebbf3c296a783668003f2182ed77ec830431f97339e07eda1859fe8c3c7fdfb0125b3ed331d23208519df520f86e20c1a05c822b3d766b08
-Size (golang.org_x_term_@v_v0.0.0-20210317153231-de623e64d2a6.mod) = 95 bytes
-BLAKE2s (golang.org_x_term_@v_v0.0.0-20210317153231-de623e64d2a6.zip) = b9ec9ae57b2f98c91a92faf4ea8b6d60cf30d9c50c483e1f51b045ff338df646
-SHA512 (golang.org_x_term_@v_v0.0.0-20210317153231-de623e64d2a6.zip) = 390acf2a26428b88b213f16d28860c00f2255ee49a1d516e044c5ce51cbcb01545d10dd5868dba88c7aee5381ec07c68fb62a9e391eacf1a26ea4c318356175d
-Size (golang.org_x_term_@v_v0.0.0-20210317153231-de623e64d2a6.zip) = 23415 bytes
+BLAKE2s (golang.org_x_sys_@v_v0.0.0-20210615035016-665e8c7367d1.mod) = 66613eb38a59b8a7f75e1aaeb294a1c4ea290d4e9ae699137566025e50ed741c
+SHA512 (golang.org_x_sys_@v_v0.0.0-20210615035016-665e8c7367d1.mod) = 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655
+Size (golang.org_x_sys_@v_v0.0.0-20210615035016-665e8c7367d1.mod) = 33 bytes
+BLAKE2s (golang.org_x_sys_@v_v0.0.0-20220520151302-bc2c85ada10a.mod) = 66613eb38a59b8a7f75e1aaeb294a1c4ea290d4e9ae699137566025e50ed741c
+SHA512 (golang.org_x_sys_@v_v0.0.0-20220520151302-bc2c85ada10a.mod) = 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655
+Size (golang.org_x_sys_@v_v0.0.0-20220520151302-bc2c85ada10a.mod) = 33 bytes
+BLAKE2s (golang.org_x_sys_@v_v0.0.0-20220722155257-8c9f86f7a55f.mod) = 66613eb38a59b8a7f75e1aaeb294a1c4ea290d4e9ae699137566025e50ed741c
+SHA512 (golang.org_x_sys_@v_v0.0.0-20220722155257-8c9f86f7a55f.mod) = 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655
+Size (golang.org_x_sys_@v_v0.0.0-20220722155257-8c9f86f7a55f.mod) = 33 bytes
+BLAKE2s (golang.org_x_sys_@v_v0.0.0-20220811171246-fbc7d0a398ab.mod) = 66613eb38a59b8a7f75e1aaeb294a1c4ea290d4e9ae699137566025e50ed741c
+SHA512 (golang.org_x_sys_@v_v0.0.0-20220811171246-fbc7d0a398ab.mod) = 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655
+Size (golang.org_x_sys_@v_v0.0.0-20220811171246-fbc7d0a398ab.mod) = 33 bytes
+BLAKE2s (golang.org_x_sys_@v_v0.7.0.mod) = 66613eb38a59b8a7f75e1aaeb294a1c4ea290d4e9ae699137566025e50ed741c
+SHA512 (golang.org_x_sys_@v_v0.7.0.mod) = 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655
+Size (golang.org_x_sys_@v_v0.7.0.mod) = 33 bytes
+BLAKE2s (golang.org_x_sys_@v_v0.7.0.zip) = 1697d4f1b613fdae994f351316cbc31fe66b9909a91bac9ff48247ef7d856ae3
+SHA512 (golang.org_x_sys_@v_v0.7.0.zip) = 9f155fa62645250051dedfb5101ee15450913b3d4ff4125342acba44d5f363262d687234385bb5b2104c48c140cff74481760de84dc6ba0be2596ed75cf564a0
+Size (golang.org_x_sys_@v_v0.7.0.zip) = 1893247 bytes
+BLAKE2s (golang.org_x_term_@v_v0.0.0-20201126162022-7de9c90e9dd1.mod) = ea6d2006c1c11da8c2174212a63865a04dec1775f98210c17f3a0cb8d4a1a80f
+SHA512 (golang.org_x_term_@v_v0.0.0-20201126162022-7de9c90e9dd1.mod) = a3401e3d20dc1aaaebbf3c296a783668003f2182ed77ec830431f97339e07eda1859fe8c3c7fdfb0125b3ed331d23208519df520f86e20c1a05c822b3d766b08
+Size (golang.org_x_term_@v_v0.0.0-20201126162022-7de9c90e9dd1.mod) = 95 bytes
+BLAKE2s (golang.org_x_term_@v_v0.0.0-20210927222741-03fcf44c2211.mod) = 0f390b4bf64eaa8a44136d9227dcd19975bee0ef0132e2d36548cfe38a79720b
+SHA512 (golang.org_x_term_@v_v0.0.0-20210927222741-03fcf44c2211.mod) = 81f571821c669188c4482da38b6921ac4c2c1747f8a803a6846531127cfde25dd04819d971f08f601c2d2cee2e636644c1648eff55dd24d89dfb3777e90fe9a0
+Size (golang.org_x_term_@v_v0.0.0-20210927222741-03fcf44c2211.mod) = 95 bytes
+BLAKE2s (golang.org_x_term_@v_v0.7.0.mod) = 0db374b76905d67194808a3248b2461852918eb9202af7b4a003036920f5781a
+SHA512 (golang.org_x_term_@v_v0.7.0.mod) = 2432ea5b063e703681298aba7d280594d3176af95d9b8dd0c6f4af97c74c699c074aedda9f9241f25c46bdf1255003605163983949ba535569b5f7070867ac57
+Size (golang.org_x_term_@v_v0.7.0.mod) = 67 bytes
+BLAKE2s (golang.org_x_term_@v_v0.7.0.zip) = 1b55999ce7f8566611714843291921a8188b0e629864f553ca5eaf0384d98050
+SHA512 (golang.org_x_term_@v_v0.7.0.zip) = 69127552e8927dd538c48d00101cfd9981343ea78431141cef574f8e701dd413b7ea7d62fb0c81ef7606418a93a76a0ebfe916fc3a131da9d7d1f4e897344bda
+Size (golang.org_x_term_@v_v0.7.0.zip) = 19924 bytes
 BLAKE2s (golang.org_x_text_@v_v0.3.0.mod) = 080036087ec663fb318320442bf68fad98da28e3ea33a1e5a3acf697a0527460
 SHA512 (golang.org_x_text_@v_v0.3.0.mod) = ca081ef7cccd7bbedc6843fbe0c452352661a07e1298cd02ff338ed79d807c6401d613a3cf20011189d2f98a794ffa410547b3e352eb58a6f0a84822285d391d
 Size (golang.org_x_text_@v_v0.3.0.mod) = 25 bytes
-BLAKE2s (golang.org_x_text_@v_v0.3.6.mod) = 70f5179544ccad4f13f0825e55a41b11a7dd38266aada468eb391ab115a3458e
-SHA512 (golang.org_x_text_@v_v0.3.6.mod) = f3f68808ccf5223453f765f59db1ef551b2130069eb83518878961c2d4a2044f9049f8d49df6e67699fcd2645cf90b84d35626590b2cfbca302fcf0eac76dc8b
-Size (golang.org_x_text_@v_v0.3.6.mod) = 97 bytes
-BLAKE2s (golang.org_x_text_@v_v0.3.6.zip) = 69be66dc29ab6f4991a241f3c3fb8636bdfe4e41e4da4879f54ed0203f6599e1
-SHA512 (golang.org_x_text_@v_v0.3.6.zip) = 494d58f2bc02819ec24d8e55f668a06694568e63bc4b41064a7e44aefcb2778c74983fc9126b50277845da8e6739e83fc1334aed989981e8e53b869878803d17
-Size (golang.org_x_text_@v_v0.3.6.zip) = 8610726 bytes
+BLAKE2s (golang.org_x_text_@v_v0.3.3.mod) = 70f5179544ccad4f13f0825e55a41b11a7dd38266aada468eb391ab115a3458e
+SHA512 (golang.org_x_text_@v_v0.3.3.mod) = f3f68808ccf5223453f765f59db1ef551b2130069eb83518878961c2d4a2044f9049f8d49df6e67699fcd2645cf90b84d35626590b2cfbca302fcf0eac76dc8b
+Size (golang.org_x_text_@v_v0.3.3.mod) = 97 bytes
+BLAKE2s (golang.org_x_text_@v_v0.3.7.mod) = 267ea3094e99e155a492ecd37e9d71c4ea1243519f281f6783ab66fa47524e68
+SHA512 (golang.org_x_text_@v_v0.3.7.mod) = e77211a503c35d8b6c392fc1b44daed580659b997673cd312ae8e579d1d715d7a53f8f0f0dd2d4dedbc6c5ca5ab7e3d52269a6536a42824cce267c89eb29cbbd
+Size (golang.org_x_text_@v_v0.3.7.mod) = 97 bytes
+BLAKE2s (golang.org_x_text_@v_v0.5.0.mod) = fe5eb66d25e871119ece4a071dc3907f9628069539e47210379439c1295cdf87
+SHA512 (golang.org_x_text_@v_v0.5.0.mod) = 3c990818dec261358f7de189c4603e4c27637ae73f676d5a6e644534a43b6cf8c87907c96dd23fd6aa17682cd18f2f0a6579eea5eb3b4b388ac9737e5c5f6b76
+Size (golang.org_x_text_@v_v0.5.0.mod) = 258 bytes
+BLAKE2s (golang.org_x_text_@v_v0.5.0.zip) = 2f55b16da4a2d34be69512943b8e645d3df113dfc83a2d9213ad3b75be7c0a96
+SHA512 (golang.org_x_text_@v_v0.5.0.zip) = bfc265d7b89def15b19102a27d547f92a2c21b5bf2debefd11365cd0f6ed7ccd2cb42a8efc46803aaebfa2c5b91652d447e875567cf6b1df629c60d2e94813a7
+Size (golang.org_x_text_@v_v0.5.0.zip) = 8614807 bytes
 BLAKE2s (golang.org_x_tools_@v_v0.0.0-20180917221912-90fa682c2a6e.mod) = d276ed1711a2da66e71b05357b06093eb7c33e7f00c194ff6386deb7b0676fca
 SHA512 (golang.org_x_tools_@v_v0.0.0-20180917221912-90fa682c2a6e.mod) = 
3c166b18c0ce47a47e95da9eeede63879a92b0205bd4589d554f7bae89699be0efa83e1f5bba8e50f47714ea23e759b07f4543fe06301995d39373da2db16fc0
 Size (golang.org_x_tools_@v_v0.0.0-20180917221912-90fa682c2a6e.mod) = 26 bytes
-BLAKE2s (golang.org_x_tools_@v_v0.0.0-20180917221912-90fa682c2a6e.zip) = 8bd5eab563e49e1c35cf9713eb0527ea1418429048da9fdd22b331dbd6bade4b
-SHA512 (golang.org_x_tools_@v_v0.0.0-20180917221912-90fa682c2a6e.zip) = 
4312878e308561593166cefcae3119e6c4ef9460edbb0a799cac0bd2f992528ffb26fb6d25f05f2ba5e39c47b4ce65f174258db36ef966c6bf5dad2e01d2578a
-Size (golang.org_x_tools_@v_v0.0.0-20180917221912-90fa682c2a6e.zip) = 2687668 bytes
+BLAKE2s (golang.org_x_tools_@v_v0.0.0-20191119224855-298f0cb1881e.mod) = a212a1fb08f1d60f83d616e697ed00d123468c02db07b98b1fc05a6546c377b8
+SHA512 (golang.org_x_tools_@v_v0.0.0-20191119224855-298f0cb1881e.mod) = 
6a0316ac3b01aba3f186b5db540a368ab780a821252f7f0975f9e44afea9170c4b3e7027dc5f79a54ebc6af290cbb59b876d3b53bbf26fd05fc3a80a06fae109
+Size (golang.org_x_tools_@v_v0.0.0-20191119224855-298f0cb1881e.mod) = 212 bytes
+BLAKE2s (golang.org_x_tools_@v_v0.1.12.mod) = 8e5929e44e175f60b164d7e7f0860a78ceac838254748829336eedd7b0d8f345
+SHA512 (golang.org_x_tools_@v_v0.1.12.mod) = a7bf52a08d8b97fadb3f98c0eba83e8269789437ad1c29007c24137b68c72c26845c466b86b0355b8d85ce427507199f214f502dc3ab31c6f27646dae3237a81
+Size (golang.org_x_tools_@v_v0.1.12.mod) = 327 bytes
+BLAKE2s (golang.org_x_xerrors_@v_v0.0.0-20190717185122-a985d3407aa7.mod) = b9082cd5be0cf4d922cd04363acc12692e595a5560e43763d016b9dafa566584
+SHA512 (golang.org_x_xerrors_@v_v0.0.0-20190717185122-a985d3407aa7.mod) = 
659d18a7a3a1be45ff6dc9e7475276b82ee7f11c47d39b0c237d7f872836a1dbdfff0902f21d6cd8093663997865da92e3e5a4acf1ad6129f972dc5e667b4f05
+Size (golang.org_x_xerrors_@v_v0.0.0-20190717185122-a985d3407aa7.mod) = 37 bytes

Index: pkgsrc/sysutils/fzf/go-modules.mk
diff -u pkgsrc/sysutils/fzf/go-modules.mk:1.2 pkgsrc/sysutils/fzf/go-modules.mk:1.3
--- pkgsrc/sysutils/fzf/go-modules.mk:1.2       Mon Nov  1 18:38:38 2021
+++ pkgsrc/sysutils/fzf/go-modules.mk   Thu May  4 06:22:02 2023
@@ -1,34 +1,50 @@
-# $NetBSD: go-modules.mk,v 1.2 2021/11/01 18:38:38 wiz Exp $
+# $NetBSD: go-modules.mk,v 1.3 2023/05/04 06:22:02 iquiw Exp $
 
 GO_MODULE_FILES+=      github.com/gdamore/encoding/@v/v1.0.0.mod
 GO_MODULE_FILES+=      github.com/gdamore/encoding/@v/v1.0.0.zip
-GO_MODULE_FILES+=      github.com/gdamore/tcell/@v/v1.4.0.mod
-GO_MODULE_FILES+=      github.com/gdamore/tcell/@v/v1.4.0.zip
-GO_MODULE_FILES+=      github.com/lucasb-eyer/go-colorful/@v/v1.0.3.mod
+GO_MODULE_FILES+=      github.com/gdamore/tcell/v2/@v/v2.5.4.mod
+GO_MODULE_FILES+=      github.com/gdamore/tcell/v2/@v/v2.5.4.zip
 GO_MODULE_FILES+=      github.com/lucasb-eyer/go-colorful/@v/v1.2.0.mod
 GO_MODULE_FILES+=      github.com/lucasb-eyer/go-colorful/@v/v1.2.0.zip
-GO_MODULE_FILES+=      github.com/mattn/go-isatty/@v/v0.0.14.mod
-GO_MODULE_FILES+=      github.com/mattn/go-isatty/@v/v0.0.14.zip
-GO_MODULE_FILES+=      github.com/mattn/go-runewidth/@v/v0.0.13.mod
-GO_MODULE_FILES+=      github.com/mattn/go-runewidth/@v/v0.0.13.zip
-GO_MODULE_FILES+=      github.com/mattn/go-runewidth/@v/v0.0.7.mod
+GO_MODULE_FILES+=      github.com/mattn/go-isatty/@v/v0.0.17.mod
+GO_MODULE_FILES+=      github.com/mattn/go-isatty/@v/v0.0.17.zip
+GO_MODULE_FILES+=      github.com/mattn/go-runewidth/@v/v0.0.14.mod
+GO_MODULE_FILES+=      github.com/mattn/go-runewidth/@v/v0.0.14.zip
 GO_MODULE_FILES+=      github.com/mattn/go-shellwords/@v/v1.0.12.mod
 GO_MODULE_FILES+=      github.com/mattn/go-shellwords/@v/v1.0.12.zip
 GO_MODULE_FILES+=      github.com/rivo/uniseg/@v/v0.2.0.mod
-GO_MODULE_FILES+=      github.com/rivo/uniseg/@v/v0.2.0.zip
-GO_MODULE_FILES+=      github.com/saracen/walker/@v/v0.1.2.mod
-GO_MODULE_FILES+=      github.com/saracen/walker/@v/v0.1.2.zip
-GO_MODULE_FILES+=      golang.org/x/sync/@v/v0.0.0-20200317015054-43a5402ce75a.mod
-GO_MODULE_FILES+=      golang.org/x/sync/@v/v0.0.0-20210220032951-036812b2e83c.mod
-GO_MODULE_FILES+=      golang.org/x/sync/@v/v0.0.0-20210220032951-036812b2e83c.zip
-GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20190626150813-e07cf5db2756.mod
+GO_MODULE_FILES+=      github.com/rivo/uniseg/@v/v0.4.4.mod
+GO_MODULE_FILES+=      github.com/rivo/uniseg/@v/v0.4.4.zip
+GO_MODULE_FILES+=      github.com/saracen/walker/@v/v0.1.3.mod
+GO_MODULE_FILES+=      github.com/saracen/walker/@v/v0.1.3.zip
+GO_MODULE_FILES+=      github.com/yuin/goldmark/@v/v1.4.13.mod
+GO_MODULE_FILES+=      golang.org/x/crypto/@v/v0.0.0-20190308221718-c2843e01d9a2.mod
+GO_MODULE_FILES+=      golang.org/x/crypto/@v/v0.0.0-20210921155107-089bfa567519.mod
+GO_MODULE_FILES+=      golang.org/x/mod/@v/v0.6.0-dev.0.20220419223038-86c51ed26bb4.mod
+GO_MODULE_FILES+=      golang.org/x/net/@v/v0.0.0-20190620200207-3b0461eec859.mod
+GO_MODULE_FILES+=      golang.org/x/net/@v/v0.0.0-20210226172049-e18ecbb05110.mod
+GO_MODULE_FILES+=      golang.org/x/net/@v/v0.0.0-20220722155237-a158d28d115b.mod
+GO_MODULE_FILES+=      golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.mod
+GO_MODULE_FILES+=      golang.org/x/sync/@v/v0.0.0-20220722155255-886fb9371eb4.mod
+GO_MODULE_FILES+=      golang.org/x/sync/@v/v0.0.0-20220722155255-886fb9371eb4.zip
+GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20190215142949-d0b11bdaac8a.mod
 GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20201119102817-f84b799fce68.mod
-GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20210630005230-0f9fa26af87c.mod
-GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20210630005230-0f9fa26af87c.zip
-GO_MODULE_FILES+=      golang.org/x/term/@v/v0.0.0-20210317153231-de623e64d2a6.mod
-GO_MODULE_FILES+=      golang.org/x/term/@v/v0.0.0-20210317153231-de623e64d2a6.zip
+GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20210615035016-665e8c7367d1.mod
+GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20220520151302-bc2c85ada10a.mod
+GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20220722155257-8c9f86f7a55f.mod
+GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20220811171246-fbc7d0a398ab.mod
+GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.7.0.mod
+GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.7.0.zip
+GO_MODULE_FILES+=      golang.org/x/term/@v/v0.0.0-20201126162022-7de9c90e9dd1.mod
+GO_MODULE_FILES+=      golang.org/x/term/@v/v0.0.0-20210927222741-03fcf44c2211.mod
+GO_MODULE_FILES+=      golang.org/x/term/@v/v0.7.0.mod
+GO_MODULE_FILES+=      golang.org/x/term/@v/v0.7.0.zip
 GO_MODULE_FILES+=      golang.org/x/text/@v/v0.3.0.mod
-GO_MODULE_FILES+=      golang.org/x/text/@v/v0.3.6.mod
-GO_MODULE_FILES+=      golang.org/x/text/@v/v0.3.6.zip
+GO_MODULE_FILES+=      golang.org/x/text/@v/v0.3.3.mod
+GO_MODULE_FILES+=      golang.org/x/text/@v/v0.3.7.mod
+GO_MODULE_FILES+=      golang.org/x/text/@v/v0.5.0.mod
+GO_MODULE_FILES+=      golang.org/x/text/@v/v0.5.0.zip
 GO_MODULE_FILES+=      golang.org/x/tools/@v/v0.0.0-20180917221912-90fa682c2a6e.mod
-GO_MODULE_FILES+=      golang.org/x/tools/@v/v0.0.0-20180917221912-90fa682c2a6e.zip
+GO_MODULE_FILES+=      golang.org/x/tools/@v/v0.0.0-20191119224855-298f0cb1881e.mod
+GO_MODULE_FILES+=      golang.org/x/tools/@v/v0.1.12.mod
+GO_MODULE_FILES+=      golang.org/x/xerrors/@v/v0.0.0-20190717185122-a985d3407aa7.mod



Home | Main Index | Thread Index | Old Index