Date: Sat, 16 Sep 2023 14:43:01 GMT From: Cy Schubert <cy@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: b51504dc11fb - main - shells/ksh: Update to 1.0.7 Message-ID: <202309161443.38GEh1Hp048237@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by cy: URL: https://cgit.FreeBSD.org/ports/commit/?id=b51504dc11fbbb28a7a0609dfaec2e9fa9ec339c commit b51504dc11fbbb28a7a0609dfaec2e9fa9ec339c Author: Cy Schubert <cy@FreeBSD.org> AuthorDate: 2023-09-16 14:37:46 +0000 Commit: Cy Schubert <cy@FreeBSD.org> CommitDate: 2023-09-16 14:41:56 +0000 shells/ksh: Update to 1.0.7 From the announcement email: Full changelog at: https://github.com/ksh93/ksh/compare/v1.0.6...v1.0.7 Main changes between 1.0.6 and 1.0.7: - Fixed a hang in command substitutions (introduced in 93u+m/1.0.0) that was triggered when redirecting standard output within a command substitution, in combination with other factors. E.g., the following no longer hangs: { v=$(redirect 2>&1 1>&9); } 9>&1 - Fixed a crash on trying to append an indexed array value to an unset name reference, e.g.: nameref unsetref; unsetref+=(foo bar). This now produces a "removing nameref attribute" warning before performing the assignment. - Fixed: assignments like name=(...) to arrays did not preserve the array and variable types; similarly, assigning an empty set () to a compound indexed array caused the -C attribute to be lost. - Fixed incorrect rejection of the tab key while reading input using the 'read' built-in command. - Fixed a bug in printf %T: when using dates and times in the past, time zones for the present were incorrectly used, ignoring historical changes. --- shells/ksh/Makefile | 2 +- shells/ksh/distinfo | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/shells/ksh/Makefile b/shells/ksh/Makefile index e9ff221e1156..33b218972d05 100644 --- a/shells/ksh/Makefile +++ b/shells/ksh/Makefile @@ -10,7 +10,7 @@ DISTVERSIONPREFIX= v PORTNAME= ksh -PORTVERSION= 1.0.6 +PORTVERSION= 1.0.7 CATEGORIES= shells MAINTAINER= cy@FreeBSD.org diff --git a/shells/ksh/distinfo b/shells/ksh/distinfo index 4e63fe48f998..a2b2b8b9c50c 100644 --- a/shells/ksh/distinfo +++ b/shells/ksh/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1686681922 -SHA256 (ksh93-ksh-v1.0.6_GH0.tar.gz) = bcb230cb3cbe045e0c08ed8d379fb4e1b434784bb0aab0e990c51a03e63d6721 -SIZE (ksh93-ksh-v1.0.6_GH0.tar.gz) = 2111386 +TIMESTAMP = 1694873185 +SHA256 (ksh93-ksh-v1.0.7_GH0.tar.gz) = a5ea1e493f0343c644e12ff03bc464d682b8e61ec034b8e20e95965f62f0b870 +SIZE (ksh93-ksh-v1.0.7_GH0.tar.gz) = 2113583
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202309161443.38GEh1Hp048237>