diff options
author | uebayasi <uebayasi> | 2003-05-28 01:22:43 +0000 |
---|---|---|
committer | uebayasi <uebayasi> | 2003-05-28 01:22:43 +0000 |
commit | bb710bd16310666d923d9966147e8937d8641370 (patch) | |
tree | 187292ff1ffa0b244cf4856a050aef9e37ee1145 /shells | |
parent | 8a1f1032161ebf66a43adee16672ec6ae25d660c (diff) | |
download | pkgsrc-bb710bd16310666d923d9966147e8937d8641370.tar.gz |
Update to 2003-04-22.
Tested on 1.6R (i386).
Changes:
03-03-18 --- Release ksh93o ---
03-03-18 A -N unary operator was added to test and [[...]] which returns
true if the file exists and the file has been modified since it
was last read.
03-03-18 The TIMEFORMAT variable was added to control the format for
the time compound command. The formatting description is
described in the man page.
03-03-06 A -N n option was added to read which causes exactly n bytes
to be read unlike -n n which causes at most n bytes to be read.
03-03-03 Three new shell variables were added. The variable .sh.file
stores the full pathname of the file that the current command
was found in. The variable .sh.fun names the current function
that is running. The variable .sh.subshell contains the depth
of the current subshell or command substitution.
03-03-03 When the DEBUG trap is executed, the current command line after
expansions is placed in the variable .sh.command. The trap
is also now triggered before each iteration of a for, select,
and case command and before each assignment and redirection.
03-02-28 Function definitions are no longer stored in the history file so
that set -o nolog no longer has any meaning.
03-02-28 All function definitions can be displayed with typeset -f not
just those stored in the history file. In addition, typeset +f
displays the function name followed by a comment containg the
line number and the path name for the file that defined this function.
03-02-28 A bug in which the value of $LINENO was not correct when executing
command contained inside mult-line command substitutions has been
fixed.
03-02-19 Since some existing ksh88 scripts use the undocumented and
unintended ability to insert a : in front of the % and # parameter
expansion operators, ksh93 was modified to accept :% as equivalent
to % and :# as equivalent to # with ${name op word}.
03-02-14 A bug which could cause a core dump when reading from standard
error when standard error was a pty has been fixed.
03-02-14 The shell arithmetic was modified to use long double on systems
that provide this data type.
03-02-09 A bug in which a function located in the first directory in FPATH
would not be found when the last component of PATH was . and the
current directory was one of the directories in PATH has been fixed.
03-02-07 The trap and kill builtin commands now accept a leading SIG prefix
on the signal names as documented.
03-02-05 A bug in the expansion of ${var/$pattern}, when pattern contained
\[ has been fixed.
03-02-05 A bug in which .sh.match[n], n>0, was not being set for substring
matches with % and %% has been fixed.
03-01-15 A bug in which getopts did not work for numerical arguments specified
as n#var in the getopts string has been fixed.
03-01-09 A bug in which using ${.sh.match} multiple times could lead to
a memory exception has been fixed.
03-01-06 A bug in the expansion of ${var/pattern/$string} in the case that
$string contains \digit has been fixed.
03-01-02 A -P option was added for systems such as Solaris 8 that support
profile shell.
03-01-02 For backward compatibility with ksh88, arithmetic expansion
with ((...)) and let has been modified so that if x is a zero-filled
variable, $x will not be treated as an octal constant.
Diffstat (limited to 'shells')
-rw-r--r-- | shells/ast-ksh/Makefile | 4 | ||||
-rw-r--r-- | shells/ast-ksh/distinfo | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/shells/ast-ksh/Makefile b/shells/ast-ksh/Makefile index 9d3adf31116..b80bb91b432 100644 --- a/shells/ast-ksh/Makefile +++ b/shells/ast-ksh/Makefile @@ -1,5 +1,5 @@ # $OpenBSD: Makefile,v 1.5 2001/11/21 01:17:43 naddy Exp $ -# $NetBSD: Makefile,v 1.8 2003/03/29 12:42:25 jmmv Exp $ +# $NetBSD: Makefile,v 1.9 2003/05/28 01:22:43 uebayasi Exp $ DISTNAME= ast-ksh-${ASTKSH_VERSION} PKGNAME= ast-ksh-${ASTKSH_VERSION:S/-//g} @@ -21,7 +21,7 @@ NO_SRC_ON_FTP= ${RESTRICTED} # needs pdksh ONLY_FOR_PLATFORM= NetBSD-* -ASTKSH_VERSION= 2002-12-21 +ASTKSH_VERSION= 2003-04-22 USE_BUILDLINK2= YES USE_PKGINSTALL= YES diff --git a/shells/ast-ksh/distinfo b/shells/ast-ksh/distinfo index ce5847e9f80..9c65d387ff7 100644 --- a/shells/ast-ksh/distinfo +++ b/shells/ast-ksh/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2003/01/08 07:04:13 uebayasi Exp $ +$NetBSD: distinfo,v 1.3 2003/05/28 01:22:43 uebayasi Exp $ -SHA1 (INIT.2002-12-21.tgz) = 73ad483a1039f15decb4dce283fe214d9e958634 -Size (INIT.2002-12-21.tgz) = 241535 bytes -SHA1 (ast-ksh.2002-12-21.tgz) = 15af14fae1a5eb8af86f0b9685938b33c6f432e4 -Size (ast-ksh.2002-12-21.tgz) = 1387312 bytes +SHA1 (INIT.2003-04-22.tgz) = 40e114c6981b8111231c2a86268c3f624023c08c +Size (INIT.2003-04-22.tgz) = 255836 bytes +SHA1 (ast-ksh.2003-04-22.tgz) = 77843ba88edb3cf9850e9ebf84932d752adcc5e8 +Size (ast-ksh.2003-04-22.tgz) = 1429397 bytes |