pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/shells/yash
Module Name: pkgsrc
Committed By: vins
Date: Fri May 23 19:18:52 UTC 2025
Modified Files:
pkgsrc/shells/yash: Makefile PLIST distinfo
Log Message:
shells/yash: update to 2.59
# changes
* trap: Implement POSIX.1-2024 requirements by @magicant in #115
* read: Avoid crash in interactive shell by @magicant in #116
* history: Work around glibc's fsetpos bug by @magicant in #117
* add completion for make variant commands by @unrealapex in #110
* Update Git completion by @magicant in #120
* wait: Don't return when the target process is suspended by @magicant in #121
* Support POSIX.1-2024 read built-in behavior (except byte-wise field splitting) by @magicant in #123
* Change false, pwd, and true to substitutive built-ins by @c0d3-br3ak9r in #124
* Reject empty operand in cd built-in by @c0d3-br3ak9r in #126
* Ignore remaining commands after a foreground job stops by @magicant in #143
* Treat a job as suspended when any child process suspends by @magicant in #144
* Noglob when splitting $CDPATH at colons in cd and pushd completion by @magicant in #147
* add completion for fnf by @unrealapex in #140
* add completion for 'cmus' and 'cmus-remote' by @unrealapex in #141
* add completion for 'catgirl' by @unrealapex in #142
* Ignore SIGTSTP in process redirection subshells by @magicant in #148
* Add macOS workaround for test of suspended job by @magicant in #150
* Job control without a control terminal by @magicant in #149
* Discard remaining commands on shell errors if interactive by @magicant in #151
* Filter '.' and '..' from wglob results by @eilefsen in #152
* Report job number and PID for async commands in interactive shell by @magicant in #155
* Propagate signal exit status to parent process by @magicant in #156
* printf: Reject redundant character in numeric operand by @magicant in #157
* Reject multiple pathname expansion results in redirection operands by @magicant in #158
* Set interactive automatically even with positional parameters by @magicant in #160
* test: Reject -a, -o, and parentheses in POSIXly-correct mode by @magicant in #161
* Fix default exit status of exit built-in in trap action by @magicant in #162
* Keep empty tilde expansion from empty field removal by @magicant in #164
* Remove redundant trailing slash in tilde expansion by @magicant in #166
* Reject {n} redirection prefix by @magicant in #167
* Document hashondef and nolog options for POSIX.1-2024 by @magicant in #168
* Treatment of variables that should not be made readonly by @magicant in #169
* Reject making LINENO, OLDPWD, OPTARG, OPTIND, and PWD readonly by @magicant in #170
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/shells/yash/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/shells/yash/PLIST
cvs rdiff -u -r1.7 -r1.8 pkgsrc/shells/yash/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/shells/yash/Makefile
diff -u pkgsrc/shells/yash/Makefile:1.12 pkgsrc/shells/yash/Makefile:1.13
--- pkgsrc/shells/yash/Makefile:1.12 Thu Feb 13 13:45:20 2025
+++ pkgsrc/shells/yash/Makefile Fri May 23 19:18:52 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2025/02/13 13:45:20 vins Exp $
+# $NetBSD: Makefile,v 1.13 2025/05/23 19:18:52 vins Exp $
-DISTNAME= yash-2.58.1
+DISTNAME= yash-2.59
CATEGORIES= shells
MASTER_SITES= ${MASTER_SITE_GITHUB:=magicant/}
GITHUB_RELEASE= ${PKGVERSION_NOREV}
Index: pkgsrc/shells/yash/PLIST
diff -u pkgsrc/shells/yash/PLIST:1.4 pkgsrc/shells/yash/PLIST:1.5
--- pkgsrc/shells/yash/PLIST:1.4 Thu Feb 13 13:45:20 2025
+++ pkgsrc/shells/yash/PLIST Fri May 23 19:18:52 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2025/02/13 13:45:20 vins Exp $
+@comment $NetBSD: PLIST,v 1.5 2025/05/23 19:18:52 vins Exp $
bin/yash
man/ja/man1/yash.1
man/man1/yash.1
@@ -18,16 +18,20 @@ share/yash/completion/basename
share/yash/completion/bash
share/yash/completion/bg
share/yash/completion/bindkey
+share/yash/completion/bmake
share/yash/completion/break
share/yash/completion/bsdtar
share/yash/completion/carthage
share/yash/completion/cat
+share/yash/completion/catgirl
share/yash/completion/cd
share/yash/completion/chgrp
share/yash/completion/chmod
share/yash/completion/chown
share/yash/completion/chsh
share/yash/completion/cmp
+share/yash/completion/cmus
+share/yash/completion/cmus-remote
share/yash/completion/comm
share/yash/completion/command
share/yash/completion/complete
@@ -63,6 +67,7 @@ share/yash/completion/fg
share/yash/completion/fgrep
share/yash/completion/file
share/yash/completion/find
+share/yash/completion/fnf
share/yash/completion/fold
share/yash/completion/fzy
share/yash/completion/gawk
@@ -94,6 +99,7 @@ share/yash/completion/git-init
share/yash/completion/git-log
share/yash/completion/git-ls-remote
share/yash/completion/git-merge
+share/yash/completion/git-mv
share/yash/completion/git-name-rev
share/yash/completion/git-notes
share/yash/completion/git-pull
@@ -121,6 +127,7 @@ share/yash/completion/git-worktree
share/yash/completion/gitg
share/yash/completion/gitk
share/yash/completion/gitx
+share/yash/completion/gmake
share/yash/completion/gnutar
share/yash/completion/grep
share/yash/completion/gtar
Index: pkgsrc/shells/yash/distinfo
diff -u pkgsrc/shells/yash/distinfo:1.7 pkgsrc/shells/yash/distinfo:1.8
--- pkgsrc/shells/yash/distinfo:1.7 Thu Feb 13 13:45:20 2025
+++ pkgsrc/shells/yash/distinfo Fri May 23 19:18:52 2025
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.7 2025/02/13 13:45:20 vins Exp $
+$NetBSD: distinfo,v 1.8 2025/05/23 19:18:52 vins Exp $
-BLAKE2s (yash-2.58.1.tar.xz) = 2543f072109509cf3c64cac6b76b9e8a64caae72e7518aa979aab25ad4d6a83f
-SHA512 (yash-2.58.1.tar.xz) = 01e87d579db4ad15ff475cdb7a5360e1b1b6d0e39301e191910943f99adb6686e2462645114c68b59e3de53c5d4486748a9d070a47e3d148e6e3f84b000f1318
-Size (yash-2.58.1.tar.xz) = 784816 bytes
+BLAKE2s (yash-2.59.tar.xz) = cc366c1a37282c73f577eacace0b3faceae333c4b9c158bba3cd8fdb40ccc797
+SHA512 (yash-2.59.tar.xz) = eafcd8b9ced1238714076833f8023d158e28a8a5bc4cc9f381b030d7f67b2113c3ae291641a53daceecba053b0f89a6b478b83536b3e93880054aa2856f989e0
+Size (yash-2.59.tar.xz) = 806348 bytes
SHA1 (patch-Makefile.in) = f9529b43db6f3775a5676b0f96f5cd5c4d60234e
Home |
Main Index |
Thread Index |
Old Index