pkgsrc-Changes archive

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

CVS commit: pkgsrc/shells/elvish



Module Name:    pkgsrc
Committed By:   pin
Date:           Mon May 23 09:55:27 UTC 2022

Modified Files:
        pkgsrc/shells/elvish: Makefile distinfo go-modules.mk

Log Message:
shells/elvish: update to 0.18.0

v0.18.0
-All features deprecated in 0.17.0 have been removed.
-Within double quotes, \x followed by two hexadecimal digits and \ followed by
 three octal digits now encode an individual byte, rather than a codepoint.
-Using a lone try without except or finally is now forbidden; this does not do
 anything useful and is almost certainly an incorrect attempt to suppress an
 exception.

Deprecated features will be removed in 0.19.0.
The following deprecated features trigger a warning whenever the code is parsed
or compiled, even if it is not executed:
 -The legacy temporary assignment syntax (e.g. a=foo echo $a) is deprecated.
  Use the new tmp command instead (e.g. tmp a = foo; echo $a).
 -The clause to catch exceptions in the try special command is now spelt with
  catch; the old keyword except is deprecated.

Notable bugfixes
-The output longer than terminal width is now shown fully on Windows Terminal.
-Changing directories in the navigation mode now correctly runs hooks and
 updates $E:PWD.

Notable new features
-Elvish now ships a builtin language server that can be started with
 elvish -lsp.
-A new flag: module for parsing command-line flags.
-A new tmp special command for doing temporary assignments.
-A new defer command to schedule a function to be run when the current closure
 finishes execution.
-A new call command to call a command, using a list for and a map for options.
-A new $unix:rlimits variable allows manipulation of resource limits.

v0.17.0
Breaking changes
-Attempting to assign to a read-only variable (e.g. set nil = x) is now a
 compile-time error rather than an exception.

Deprecated features - Deprecated features will be removed in 0.18.0.
The following deprecated features trigger a warning whenever the code is parsed
or compiled, even if it is not executed:
 -The dir-history command is deprecated. Use store:dirs instead.
 -The legacy assignment form is deprecated. Depending on whether the left-hand
  variable already exists or not, use var or set instead. Use the upgrader to
  migrate scripts.
 -The lambda syntax that declares arguments and options within [] before { has
  been deprecated. The new syntax now declares arguments and options within a
  pair of |, after {. Use the upgrader to migrate scripts. See (#664).
 -Use of the special namespace local: is deprecated.
 -If you are using local: to reference variables (e.g. echo $local:x),
  local: is never necessary in the first place since Elvish always resolves
  local variables first, so just remove it.
 -If you are using local: when assigning variables (e.g. local:x = foo),
  local: makes sure that a new variable is created; use the var special
  command instead.
 -Use of the special namespace up: is deprecated.
 -If you are using up: to access a non-shadowed variable in an outer scope,
  up: is not necessary; just remove it.
 -If you are using up: to access a shadowed variable in an outer scope, rename
  the variables to have different names.
 -Use of a leading empty namespace in a variable name (e.g. $:x) is deprecated.
  Since $:x is always equivalent to $x anyway, just remove the : prefix.

Notable new features
New features in the language:
-A new special command pragma. The only supported pragma now is unknown
 command; using pragma unknown command = disallow turns off the default
 behavior of treating unknown commands as external commands.
-A new special command coalesce.
New features in the interactive editor:
-Editor modes now form a stack, instead of being mutually exclusive.
 For example, it is now possible to start a minibuf mode within a completion
 mode, and vice versa.
New features in the standard library:
-The store: module now exposes all functionalities of Elvish’s persistent store.
-New compare command to compare numbers, strings, and lists (#1347), in a
 consistent way as the order builtin.
-The range command now supports counting down.

Performance improvements:
-The overhead of executing pipelines consisting of a single form (i.e. a simple
 command with no pipes) has been reduced. A code chunk containing just nop
 command now executes 4 times as fast as before. Thanks to kolbycrouch for
 suggesting this optimization!

For changes between 0.16.1 and 0.17.0 check https://elv.sh/blog/


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/shells/elvish/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/shells/elvish/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/shells/elvish/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/shells/elvish/Makefile
diff -u pkgsrc/shells/elvish/Makefile:1.12 pkgsrc/shells/elvish/Makefile:1.13
--- pkgsrc/shells/elvish/Makefile:1.12  Wed May 11 19:26:23 2022
+++ pkgsrc/shells/elvish/Makefile       Mon May 23 09:55:27 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2022/05/11 19:26:23 bsiegert Exp $
+# $NetBSD: Makefile,v 1.13 2022/05/23 09:55:27 pin Exp $
 
-DISTNAME=      elvish-0.16.1
-PKGREVISION=   8
+DISTNAME=      elvish-0.18.0
 CATEGORIES=    shells
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=elves/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}
@@ -16,10 +15,11 @@ PKG_SHELL=          bin/elvish
 GO_BUILD_PATTERN=      ./...
 
 # needed for the tests
-USE_TOOLS+=            perl
+USE_TOOLS+=            perl gmake
 
 do-install:
-       ${INSTALL_PROGRAM} ${WRKDIR}/.gopath/bin/elvish ${DESTDIR}${PREFIX}/bin
+       ${INSTALL_PROGRAM} ${WRKDIR}/.gopath/bin/elvish \
+               ${DESTDIR}${PREFIX}/bin
 
 .include "go-modules.mk"
 

Index: pkgsrc/shells/elvish/distinfo
diff -u pkgsrc/shells/elvish/distinfo:1.4 pkgsrc/shells/elvish/distinfo:1.5
--- pkgsrc/shells/elvish/distinfo:1.4   Tue Oct 26 11:18:37 2021
+++ pkgsrc/shells/elvish/distinfo       Mon May 23 09:55:27 2022
@@ -1,35 +1,65 @@
-$NetBSD: distinfo,v 1.4 2021/10/26 11:18:37 nia Exp $
+$NetBSD: distinfo,v 1.5 2022/05/23 09:55:27 pin Exp $
 
-BLAKE2s (elvish-0.16.1.tar.gz) = 98c326bc2478e3dd879d61b7e080d020c5b317454ca41432411f4aa862f90e8c
-SHA512 (elvish-0.16.1.tar.gz) = a8173bea79547d6c261eda9f22eebcbd1c33977cadd998a6ecf270bb8df70550330ed4305390c4310916e6e4762d0596cc8eab616b3bc17711bba1852c4516d1
-Size (elvish-0.16.1.tar.gz) = 664779 bytes
-BLAKE2s (github.com_creack_pty_@v_v1.1.11.mod) = df42a1d34a4df624a6fbab600483cf5afb215874880e2e9e23f5fb03d719eb16
-SHA512 (github.com_creack_pty_@v_v1.1.11.mod) = 9cf1687520933d3d6bbec9d7c51472998d3bdbe1b3d2a7478fca80f9e7944f9040a2b8ec7d49f1458bd46a5121bae4810d314725add41efd413319a5006b944a
-Size (github.com_creack_pty_@v_v1.1.11.mod) = 39 bytes
-BLAKE2s (github.com_creack_pty_@v_v1.1.11.zip) = 74ab83efb35aff8fab76762d9783a933583b74b4d7496f21e417e63acc277ef5
-SHA512 (github.com_creack_pty_@v_v1.1.11.zip) = d7c39c78c074d060973433f5f4c1405260fa9f49ba9ff020630bb17404412337b536275aac71ae30c0e3783b95585c46cc492f722572b941fa1476898a6f7e8c
-Size (github.com_creack_pty_@v_v1.1.11.zip) = 19702 bytes
-BLAKE2s (github.com_mattn_go-isatty_@v_v0.0.12.mod) = bfe9466b5bbed9a985efbf5ea4cdd6a6da9e51c7d1e8f7e354a7c7338a3145c0
-SHA512 (github.com_mattn_go-isatty_@v_v0.0.12.mod) = 7bd9f6a38aa9a16c3569142164389d1c4046170f66b5e9044f7aaa3192e9d2e2ccec486e3bc7fbac868c9693b6d333068c1a34ccd9e79dec1746a86348951503
-Size (github.com_mattn_go-isatty_@v_v0.0.12.mod) = 104 bytes
-BLAKE2s (github.com_mattn_go-isatty_@v_v0.0.12.zip) = bcec7d2b9d86a66e4f2d5d2f5b16354d4effdf94490a0c1a6d2313d5b18ac64a
-SHA512 (github.com_mattn_go-isatty_@v_v0.0.12.zip) = 79ba14a04838c509500e6098553e8aadcd7105445387160a8aa1a6d7b0e70f0e807c99036c31faf51920544da2156195174c8530e317a72728719cb0a9a66098
-Size (github.com_mattn_go-isatty_@v_v0.0.12.zip) = 8902 bytes
-BLAKE2s (go.etcd.io_bbolt_@v_v1.3.5.mod) = d075a8576dbaa0e933c06bed188ca694e2febd39b000c9551fc5015ae07234ee
-SHA512 (go.etcd.io_bbolt_@v_v1.3.5.mod) = d3cfb7a75e321d2a6fc145b727dea76002189ae2caa8dd3162e5e6903a1acbe5bd55be81d7f112c71b47e61351534ff991be30993632be9c9d7443111600fe39
-Size (go.etcd.io_bbolt_@v_v1.3.5.mod) = 94 bytes
-BLAKE2s (go.etcd.io_bbolt_@v_v1.3.5.zip) = cd1e84e3e1abd9081b903347431d2fee9fde478085316127feddb77a70296080
-SHA512 (go.etcd.io_bbolt_@v_v1.3.5.zip) = 0b6a8a073673708adc8fc0d01c96fb0ec4276db63a17f45ff02b4243235de9634952747aff63382ed767157c6dcbcaebd5399ace63a14e52cc826bd5c9749f82
-Size (go.etcd.io_bbolt_@v_v1.3.5.zip) = 115621 bytes
-BLAKE2s (golang.org_x_sys_@v_v0.0.0-20200116001909-b77594299b42.mod) = 6b2b0a0ac9d77adff84f1aab70cc38a4dcf14418c326fcb2dde80f104fb41e9f
-SHA512 (golang.org_x_sys_@v_v0.0.0-20200116001909-b77594299b42.mod) = 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab
-Size (golang.org_x_sys_@v_v0.0.0-20200116001909-b77594299b42.mod) = 33 bytes
-BLAKE2s (golang.org_x_sys_@v_v0.0.0-20200202164722-d101bd2416d5.mod) = 6b2b0a0ac9d77adff84f1aab70cc38a4dcf14418c326fcb2dde80f104fb41e9f
-SHA512 (golang.org_x_sys_@v_v0.0.0-20200202164722-d101bd2416d5.mod) = 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab
-Size (golang.org_x_sys_@v_v0.0.0-20200202164722-d101bd2416d5.mod) = 33 bytes
-BLAKE2s (golang.org_x_sys_@v_v0.0.0-20200824131525-c12d262b63d8.mod) = 6b2b0a0ac9d77adff84f1aab70cc38a4dcf14418c326fcb2dde80f104fb41e9f
-SHA512 (golang.org_x_sys_@v_v0.0.0-20200824131525-c12d262b63d8.mod) = 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab
-Size (golang.org_x_sys_@v_v0.0.0-20200824131525-c12d262b63d8.mod) = 33 bytes
-BLAKE2s (golang.org_x_sys_@v_v0.0.0-20200824131525-c12d262b63d8.zip) = 0d704643bed785da0596c421da46982d962152a3076439b343d88782bc542082
-SHA512 (golang.org_x_sys_@v_v0.0.0-20200824131525-c12d262b63d8.zip) = f6a53b877801048a082c1f1ec069fac8958f24d290c22b12045d0be5ae44464f9dc9ca7ac3b6a692a14654aec681fa168ef62c0ddf8f3a525e929a05031c717e
-Size (golang.org_x_sys_@v_v0.0.0-20200824131525-c12d262b63d8.zip) = 1487245 bytes
+BLAKE2s (elvish-0.18.0.tar.gz) = 262b9d0bbb283d41f80fc87ff4754477581cb58191d36c2bab36175b6a90dbf9
+SHA512 (elvish-0.18.0.tar.gz) = fcd7babd4017dfe0ea09e87dea0d4f80d6fc818ac107cfe6329d2170033652f9c3e688962daedfd7d46adcb56f171f14ff1aade6b1cfcd0a88ebaf8bc3117ec3
+Size (elvish-0.18.0.tar.gz) = 699565 bytes
+BLAKE2s (github.com_creack_pty_@v_v1.1.15.mod) = 19b33a84ea62506eb4da7226657fea56d1c17f128a045f166d91db907c32c93e
+SHA512 (github.com_creack_pty_@v_v1.1.15.mod) = b825d82c81fd02f7dc8be5be8d4f0e3b9bf39a75e453857ab3f4d8d17129d2214f6b4dddd18cd613cb4d29dbd5adc59f43c1f65d218e7f3b67f0a8e33e62f5a6
+Size (github.com_creack_pty_@v_v1.1.15.mod) = 38 bytes
+BLAKE2s (github.com_creack_pty_@v_v1.1.15.zip) = 20b0fae83a75ef0dea99c763675e9b2b41a1befc78dbb66b4dd384ba64ab3ef9
+SHA512 (github.com_creack_pty_@v_v1.1.15.zip) = 31cca431eb7947fcf3c6e903b7914defa5ccf4109bb7730bdd27b4afaf7d492d32532276c69be7c0c44cca37354dc92e812d09053e434cd9e45ab83f8f69f9b9
+Size (github.com_creack_pty_@v_v1.1.15.zip) = 23943 bytes
+BLAKE2s (github.com_google_go-cmp_@v_v0.5.7.mod) = a52896592ad76206ba05a7353d4d216425c1bbd705757dd4b5f62f5cac0b85a2
+SHA512 (github.com_google_go-cmp_@v_v0.5.7.mod) = 731d289da30616cc638958da98fbaed6eba9cd7b325c845bafa8f8a316c5fbfdf2eada196a0e25a50512c18d2a6aaa771d63cec0d42a25e9c8a2c7bc3d3f1cb3
+Size (github.com_google_go-cmp_@v_v0.5.7.mod) = 106 bytes
+BLAKE2s (github.com_google_go-cmp_@v_v0.5.7.zip) = 95bb1d0e88b5ff354e12ba0755feb1498fba986181fc469be0b4598ea5ea54d4
+SHA512 (github.com_google_go-cmp_@v_v0.5.7.zip) = 60e409c8210c4accc315004a674a397c4aa1d0fa150627756047ca3e87cbed4dd78509e76a490f7cd6989760ac0ad71fe8c712dfbf9009070a110290c2cb3126
+Size (github.com_google_go-cmp_@v_v0.5.7.zip) = 132348 bytes
+BLAKE2s (github.com_gorilla_websocket_@v_v1.4.1.mod) = dbf53703a57aa05392a4753b21d683ec3798f5a11d06fc84a30426f87315008d
+SHA512 (github.com_gorilla_websocket_@v_v1.4.1.mod) = 81ef224435efb5cbd429dd4339e8410234855f4a268302a61d34e76c388e89ea22c97ae90d71a6ef910ca00d3178e40d3587eaf484112966050fbd1f1f4843ab
+Size (github.com_gorilla_websocket_@v_v1.4.1.mod) = 45 bytes
+BLAKE2s (github.com_gorilla_websocket_@v_v1.4.1.zip) = cce0915c2c2b43ca21d667c0ead6eb7da6b8dbc87f2ef177b04e3bcfe378e824
+SHA512 (github.com_gorilla_websocket_@v_v1.4.1.zip) = 8de80f729d0538295606f5900e9f70a3f77c4b6ea7782c9bfa8520ec89c75b6a7ae08b42b6ad0dcc261f9e9a298bb58645fc97c4e5c2b51cbd6cbab62401a2ae
+Size (github.com_gorilla_websocket_@v_v1.4.1.zip) = 79215 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_sourcegraph_go-lsp_@v_v0.0.0-20200429204803-219e11d77f5d.mod) = 56c97384103a3c2e4b657afad20e60793e33fa0e0b0eaf1d69ce7b0273e5fb92
+SHA512 (github.com_sourcegraph_go-lsp_@v_v0.0.0-20200429204803-219e11d77f5d.mod) = 
fbdd2c9031fffbe3b14c6ac9a270640c10d4e2a999c18d761d4a4519da7ebf0a69c89d47dfce0b81b7f10e5eaf86ff04c7f81897433b62cab28f82ed0ad9dbbb
+Size (github.com_sourcegraph_go-lsp_@v_v0.0.0-20200429204803-219e11d77f5d.mod) = 46 bytes
+BLAKE2s (github.com_sourcegraph_go-lsp_@v_v0.0.0-20200429204803-219e11d77f5d.zip) = b38107d461fd6d0fb4adc873f7b59ab0f8d91a5d581851cdd6b80e8d321009e8
+SHA512 (github.com_sourcegraph_go-lsp_@v_v0.0.0-20200429204803-219e11d77f5d.zip) = 
e33767d3a807a3da0f811edff6cd55b74618c8ea347ffb1bf0247d1ca3cff49a9f9155eed806856e7d7067b99a4af5e4daff5e6493d8b5da6677ffcbc6617e55
+Size (github.com_sourcegraph_go-lsp_@v_v0.0.0-20200429204803-219e11d77f5d.zip) = 22448 bytes
+BLAKE2s (github.com_sourcegraph_jsonrpc2_@v_v0.1.0.mod) = e2f00f0b8ce6d8ae8c39f756e79119459d80211829de06aa4395527bba361798
+SHA512 (github.com_sourcegraph_jsonrpc2_@v_v0.1.0.mod) = bd57233e889c63b5105cbf68a5aff6ea98f227002242e3862098ce51c543b05edc66b63ac0efbeef2f8a5c4ea15febf8015029dd8afdf23254ddb77b00229463
+Size (github.com_sourcegraph_jsonrpc2_@v_v0.1.0.mod) = 93 bytes
+BLAKE2s (github.com_sourcegraph_jsonrpc2_@v_v0.1.0.zip) = af6b6b32c69071f3a35f409685f4e2b9a3c400b86aa7f9117c44f1a0972e55cf
+SHA512 (github.com_sourcegraph_jsonrpc2_@v_v0.1.0.zip) = ec998f5cc656e05025899a8472f0c56b22b0325c0cae38fb1918b51732275210ef81921d4531c87f56bcdfa620b850a19d44b14c9d7ebc1bf6cbbe64f075da48
+Size (github.com_sourcegraph_jsonrpc2_@v_v0.1.0.zip) = 20125 bytes
+BLAKE2s (go.etcd.io_bbolt_@v_v1.3.6.mod) = 7ebaf38ae32e71d582a23bfc6e689108516d06b5800a35925180db21f8edc681
+SHA512 (go.etcd.io_bbolt_@v_v1.3.6.mod) = d8a4fceaca0875493f0788147e464f36a1a1b9806376318fe88f8b0091ea3ae4bd5ec141ccc7c8bb86d88f34f25a36d2061dbc24d0346a9d68c1fbe45173fdde
+Size (go.etcd.io_bbolt_@v_v1.3.6.mod) = 94 bytes
+BLAKE2s (go.etcd.io_bbolt_@v_v1.3.6.zip) = 93f42c8fe4bd2b935b8001ec1d0c39a15225eac38fb638e7ddb737fac780bce3
+SHA512 (go.etcd.io_bbolt_@v_v1.3.6.zip) = 2e71f7b8606ae949fb9f3287b76dcbc02c5273a44568bdb9b750c381dc1284ed9c4887fdcec652f572eb0e7066e4592a3bb9aa17117b039dfb65355033a0d54e
+Size (go.etcd.io_bbolt_@v_v1.3.6.zip) = 118439 bytes
+BLAKE2s (golang.org_x_sys_@v_v0.0.0-20200923182605-d9f96fdee20d.mod) = 6b2b0a0ac9d77adff84f1aab70cc38a4dcf14418c326fcb2dde80f104fb41e9f
+SHA512 (golang.org_x_sys_@v_v0.0.0-20200923182605-d9f96fdee20d.mod) = 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab
+Size (golang.org_x_sys_@v_v0.0.0-20200923182605-d9f96fdee20d.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-20220227234510-4e6760a101f9.mod) = 66613eb38a59b8a7f75e1aaeb294a1c4ea290d4e9ae699137566025e50ed741c
+SHA512 (golang.org_x_sys_@v_v0.0.0-20220227234510-4e6760a101f9.mod) = 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655
+Size (golang.org_x_sys_@v_v0.0.0-20220227234510-4e6760a101f9.mod) = 33 bytes
+BLAKE2s (golang.org_x_sys_@v_v0.0.0-20220227234510-4e6760a101f9.zip) = be0a69a3829e4e4c8aaa041d024e029a8ec9ae49baaf04875359bc0f2bef5b9a
+SHA512 (golang.org_x_sys_@v_v0.0.0-20220227234510-4e6760a101f9.zip) = c1738df7e8a3ca6c5a9608afbe2b41f54a8ed0f7a804dca95391b4b48d5a5b4e57b4b2f55a105fd6078d4e289baf9b0bf0b9c909555558666b8409410ed889e5
+Size (golang.org_x_sys_@v_v0.0.0-20220227234510-4e6760a101f9.zip) = 1706457 bytes
+BLAKE2s (golang.org_x_xerrors_@v_v0.0.0-20191204190536-9bdfabe68543.mod) = b9082cd5be0cf4d922cd04363acc12692e595a5560e43763d016b9dafa566584
+SHA512 (golang.org_x_xerrors_@v_v0.0.0-20191204190536-9bdfabe68543.mod) = 
659d18a7a3a1be45ff6dc9e7475276b82ee7f11c47d39b0c237d7f872836a1dbdfff0902f21d6cd8093663997865da92e3e5a4acf1ad6129f972dc5e667b4f05
+Size (golang.org_x_xerrors_@v_v0.0.0-20191204190536-9bdfabe68543.mod) = 37 bytes
+BLAKE2s (golang.org_x_xerrors_@v_v0.0.0-20191204190536-9bdfabe68543.zip) = 25da7d14b438716f25c63e7d333e680f6fac6a9c28fb3aef706e0d3ea9a670be
+SHA512 (golang.org_x_xerrors_@v_v0.0.0-20191204190536-9bdfabe68543.zip) = 
c72b8b73f89624889a2874c1b2445cb82f0e545fccf6a7761a278f3f659eb19f5f1c8585641b8f89f2bcfc3817ad2c0e267751cfeeab949e287e43af5df57e28
+Size (golang.org_x_xerrors_@v_v0.0.0-20191204190536-9bdfabe68543.zip) = 22282 bytes

Index: pkgsrc/shells/elvish/go-modules.mk
diff -u pkgsrc/shells/elvish/go-modules.mk:1.2 pkgsrc/shells/elvish/go-modules.mk:1.3
--- pkgsrc/shells/elvish/go-modules.mk:1.2      Mon Aug 23 13:15:06 2021
+++ pkgsrc/shells/elvish/go-modules.mk  Mon May 23 09:55:27 2022
@@ -1,12 +1,22 @@
-# $NetBSD: go-modules.mk,v 1.2 2021/08/23 13:15:06 bsiegert Exp $
+# $NetBSD: go-modules.mk,v 1.3 2022/05/23 09:55:27 pin Exp $
 
-GO_MODULE_FILES+=      github.com/creack/pty/@v/v1.1.11.mod
-GO_MODULE_FILES+=      github.com/creack/pty/@v/v1.1.11.zip
-GO_MODULE_FILES+=      github.com/mattn/go-isatty/@v/v0.0.12.mod
-GO_MODULE_FILES+=      github.com/mattn/go-isatty/@v/v0.0.12.zip
-GO_MODULE_FILES+=      go.etcd.io/bbolt/@v/v1.3.5.mod
-GO_MODULE_FILES+=      go.etcd.io/bbolt/@v/v1.3.5.zip
-GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20200116001909-b77594299b42.mod
-GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20200202164722-d101bd2416d5.mod
-GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20200824131525-c12d262b63d8.mod
-GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20200824131525-c12d262b63d8.zip
+GO_MODULE_FILES+=      github.com/creack/pty/@v/v1.1.15.mod
+GO_MODULE_FILES+=      github.com/creack/pty/@v/v1.1.15.zip
+GO_MODULE_FILES+=      github.com/google/go-cmp/@v/v0.5.7.mod
+GO_MODULE_FILES+=      github.com/google/go-cmp/@v/v0.5.7.zip
+GO_MODULE_FILES+=      github.com/gorilla/websocket/@v/v1.4.1.mod
+GO_MODULE_FILES+=      github.com/gorilla/websocket/@v/v1.4.1.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/sourcegraph/go-lsp/@v/v0.0.0-20200429204803-219e11d77f5d.mod
+GO_MODULE_FILES+=      github.com/sourcegraph/go-lsp/@v/v0.0.0-20200429204803-219e11d77f5d.zip
+GO_MODULE_FILES+=      github.com/sourcegraph/jsonrpc2/@v/v0.1.0.mod
+GO_MODULE_FILES+=      github.com/sourcegraph/jsonrpc2/@v/v0.1.0.zip
+GO_MODULE_FILES+=      go.etcd.io/bbolt/@v/v1.3.6.mod
+GO_MODULE_FILES+=      go.etcd.io/bbolt/@v/v1.3.6.zip
+GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20200923182605-d9f96fdee20d.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-20220227234510-4e6760a101f9.mod
+GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20220227234510-4e6760a101f9.zip
+GO_MODULE_FILES+=      golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.mod
+GO_MODULE_FILES+=      golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.zip



Home | Main Index | Thread Index | Old Index