Received: by mail.netbsd.org (Postfix, from userid 605) id BA2E784DC2; Sun, 4 Sep 2022 14:35:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EFB3384D5F for ; Sun, 4 Sep 2022 14:35:34 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id wAgGPydp-jwW for ; Sun, 4 Sep 2022 14:35:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5B29484CD9 for ; Sun, 4 Sep 2022 14:35:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5439DFA8D; Sun, 4 Sep 2022 14:35:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1662302134250770" MIME-Version: 1.0 Date: Sun, 4 Sep 2022 14:35:34 +0000 From: "pin" Subject: CVS commit: pkgsrc/shells/ksh93 To: pkgsrc-changes@NetBSD.org Reply-To: pin@netbsd.org X-Mailer: log_accum Message-Id: <20220904143534.5439DFA8D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1662302134250770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pin Date: Sun Sep 4 14:35:34 UTC 2022 Modified Files: pkgsrc/shells/ksh93: Makefile distinfo Log Message: shells/ksh93: update to ksh93-1.0.3. Submmited by Paolo Vincenzo Olivo through private e-mail. This a stability update incorporating crucial bug fixes. Changes since version 1.0.1: # Release 1.0.3 This point release mainly fixes the following: - A bug in history expansion (set -H) where any use of the history comment character caused processing to be aborted as if it were an invalid history expansion. Affected e.g. 'echo ${#v}'. - A bug in command line options processing that caused short-form option equivalents on some built-in commands to be ignored after one use, e.g., the new read -a equivalent of read -A. - Ksh freezing or using excessive memory if HISTSIZE is assigned a pathologically large value. - A bug that caused ksh in the vi editor mode to crash or produce invalid completions if ESC = was used at the beginning of a line. # Release 1.0.2 This release fixes the interactive shell crashing when one of the predefined aliases (currently 'history' and 'r') is redefined, whether from a profile/kshrc script or manually. This crash occurred in two scenarios: 1. when redefining and then unsetting a predefined alias; 2. when redefining a predefined alias and then executing a shell script that does not begin with a #! path. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/shells/ksh93/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/shells/ksh93/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1662302134250770 Content-Disposition: inline Content-Length: 1560 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/shells/ksh93/Makefile diff -u pkgsrc/shells/ksh93/Makefile:1.4 pkgsrc/shells/ksh93/Makefile:1.5 --- pkgsrc/shells/ksh93/Makefile:1.4 Tue Aug 9 06:37:32 2022 +++ pkgsrc/shells/ksh93/Makefile Sun Sep 4 14:35:34 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2022/08/09 06:37:32 pin Exp $ +# $NetBSD: Makefile,v 1.5 2022/09/04 14:35:34 pin Exp $ -DISTNAME= ksh93-1.0.1 +DISTNAME= ksh93-1.0.3 CATEGORIES= shells MASTER_SITES= ${MASTER_SITE_GITHUB:=ksh93/} GITHUB_PROJECT= ksh Index: pkgsrc/shells/ksh93/distinfo diff -u pkgsrc/shells/ksh93/distinfo:1.3 pkgsrc/shells/ksh93/distinfo:1.4 --- pkgsrc/shells/ksh93/distinfo:1.3 Tue Aug 9 06:37:32 2022 +++ pkgsrc/shells/ksh93/distinfo Sun Sep 4 14:35:34 2022 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2022/08/09 06:37:32 pin Exp $ +$NetBSD: distinfo,v 1.4 2022/09/04 14:35:34 pin Exp $ -BLAKE2s (ksh93-1.0.1.tar.gz) = a585bb90714433bf1d6cc862e54c482f9e4abc5464a3fc6437e898a58d89a0c6 -SHA512 (ksh93-1.0.1.tar.gz) = c12c5b7d0a429b121e28707fbf21848a25a7b211761b53fc1d3cc68bba81f856cbf216b8bfe91216496e07f9484bc015b41e6ae6cf17cc424f5c64b873928b2c -Size (ksh93-1.0.1.tar.gz) = 2107148 bytes +BLAKE2s (ksh93-1.0.3.tar.gz) = 0a74d52ac2d32164038d377018290ca653ca1e3f0a0d58481adbcf433566618e +SHA512 (ksh93-1.0.3.tar.gz) = 9d6e664bc6c8d102ba09e692d057b9546b07ba3ecb060449df6648e7c99f8dfd670401e6fcf34f6f3de13338a3c31c09596344931ccfdf4cd4e49eabdf005c23 +Size (ksh93-1.0.3.tar.gz) = 2110771 bytes SHA1 (patch-src_lib_libast_features_syscall) = b40006e5076d8b96719d4021fbadbdfcc709aad2 --_----------=_1662302134250770--