Subject: CVS commit: pkgsrc/shells/zsh
From: Wen Heping
Date: 2018-09-09 02:46:52
Message id: 20180909004652.6E515FBF8@cvs.NetBSD.org

Log Message:
Update to 5.6

Upstream changes:
Changes from 5.5.1-test-2 to 5.6
--------------------------------

CVE-2018-0502: Data from the second line of a #! script file might be passed to
execve().  For example, in the following situation -
.
    printf '#!foo\nbar' > baz
    ./baz
.
the shell might take "bar" rather than "foo" for the argv[0] \ 
to be passed to
execve().  [ Reported by Anthony Sottile and Buck Evan. ]

CVE-2018-13259: A shebang line longer than 64 characters would be truncated.
For example, in the following situation:
.
    ( printf '#!'; repeat 64 printf 'x'; printf 'y' ) > foo
    ./foo
.
the shell might execute x...x (64 repetitions) rather than x...xy (64 x's,
one y).  [ Reported by Daniel Shahaf. ]

Changes from 5.5.1 to 5.5.1-test-2
----------------------------------

Non-stop IEEE 754 arithmetic support - Inf and NaN are now returned
from floating point operations where errors were printed before.
Inf and NaN are also recognised in arithmetic expressions.

In shell patterns, [[:blank:]] now honours the locale instead of
matching exclusively on space and tab, like for the other POSIX
character classes or for extended regular expressions.

Nanosecond precision on file times is supported in the module
zsh/stat.

Files:
RevisionActionfile
1.85modifypkgsrc/shells/zsh/Makefile
1.39modifypkgsrc/shells/zsh/PLIST
1.63modifypkgsrc/shells/zsh/distinfo
1.6modifypkgsrc/shells/zsh/patches/patch-configure.ac