summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
authorahoka <ahoka@pkgsrc.org>2009-04-13 19:48:34 +0000
committerahoka <ahoka@pkgsrc.org>2009-04-13 19:48:34 +0000
commit13684d66b6f171afb9403cca4b5a0fc329bb533f (patch)
tree72a12b7425cd7fcae43231a955ef2e189cde4431 /shells
parent37c647c96a9fde7441d8d7aa8a6fd21e390bc551 (diff)
downloadpkgsrc-13684d66b6f171afb9403cca4b5a0fc329bb533f.tar.gz
mksh R37c provides these follow-up fixes:
.[tg] Improve præprocessor detection/work in Build.sh .[tg] Decouple MKSH_CONSERVATIVE_FDS from MKSH_SMALL .[tg] Enable MKSH_CONSERVATIVE_FDS by default on Minix 3 .[tg] Work around the (in-)famous ACK "const" bug .[tg] Optimise structure alignment and padding; Closes: #522778 .[tg] Retain LOCPATH (for glibc locale) in check.pl .[tg] Document, simplify and clean up the code better .[tg] Use mirbsd.org eMail addresses consistently mksh R37b comes with the following fixes on top: .[tg] Clean up build system and dot.mkshrc some more .[tg] Add getrusage(2) implementation using times(3) if none found .[tg] Add jobless mode (for Minix 3, Plan 9, .) .[tg] Detect the Amsterdam Compiler Kit in the build system .[tg] If no RLIM_INFINITY don.t try to do ulimit .[tg] Work around gcc4 strict warnings vs. broken system headers .[tg] Work around systems with mmap(2) but no munmap(2) .[tg] Fix (disallow) bind key macro recursion (instead of beeping and going into an endless loop), allow multi-line bind key macros (mostly from Alexander Hall), remove dead code (the beeping) and optimise .[tg] Add (commented out, undesired, standards compliance breaking) compatibility code to MidnightBSD 0.1 /bin/sh for ctriv .[tg] Clarify the mksh(1) manual page even more .[tg] Port to Minix 3 + GCC mksh R37 has major standards compliance improvements: .[tg] Rename -o utf8-hack to -o utf8-mode .[tg] Fix spacing mode error (pasto) in the mdoc(7) format manpage .[tg] Implement $((#.)) unsigned arithmetic calculation, needed for arc4random_uniform(3)-in-korn-shell implementation .[tg] Really preserve LD_LIBRARY_PATH in check.pl .[tg] New Build.sh option .-combine. for building mksh(1) at once with .-fwhole-program --combine. (gcc4, llvm-gcc4) if available .[tg] Always set COLUMNS and LINES trying as hard as we can, using TIOCGWINSZ even if used without FTALKING, and with the sane 80x24 default if the ioctl(2) fails .[tg] Handle _POSIX_VDISABLE being undefined (e.g. Linux/klibc) .[tg] <sys/file.h> is only required for flock(2) .[tg] Fix multi-column output routine for the corner case if the screen is less wide than one output column; 10x Gábor Gergely .[tg] Fix ${foo/@(%)/\\x} in UTF-8 mode (utf_widthadj for control characters U+0080.U+009F is slightly broken; this fix shifts the brokenness into the command line editing mode only) .[tg] Introduce mksh_ari_t and mksh_uari_t internal types to limit arithmetics to 32 bit on all systems; currently depending on the already-used standard int32_t and uint32_t types. Future expansion to 64 bit possible. Document that shell integer variables use this type. .[tg] The variables PGRP, PPID, RANDOM and USER_ID are now unsigned .[tg] Fix two off-by-ones breaking PS1 ending with a newline; bug reported by Matthias Diener .[tg] Just pass through C1 control characters for now .[tg] Code and internal interfaces cleanup .[tg] Regression test fixes for Cygwin env(1) being unsorted .[tg] Replace the memory allocator by something equally simple and homegrown but optimised for use with mksh and free checking .[tg] Import a couple of minor fixes (e.g. spelling) from oksh .[tg] Fix problems with "set -e" for real; from oksh, Closes: #518359 .[tg] In "set -o posix" mode, have limited echo(1) to improve standards compliance; the exact feature set is open for discussion, e.g. with pkgsrc® people; for now, only -n as first arg .[tg] Make test builtin operator precedence consistent; from oksh .[tg] Revamp and fold and enhance the regression tests .[tg] Document somewhat surprising behaviour in mksh(1) better; here: [ x -eq y ]; for gps23 from #ksh .[tg] Reduce memory consumption by allocator simplification .[tg] Fix bugs spotted by DEC ucode cc (ULTRIX) and gcc 1.42 (BSD/OS) .[laffer1] Make mksh the default /bin/sh in MidnightBSD
Diffstat (limited to 'shells')
-rw-r--r--shells/mksh/DESCR15
-rw-r--r--shells/mksh/Makefile4
-rw-r--r--shells/mksh/distinfo8
3 files changed, 16 insertions, 11 deletions
diff --git a/shells/mksh/DESCR b/shells/mksh/DESCR
index 643fd8376f9..9c258607152 100644
--- a/shells/mksh/DESCR
+++ b/shells/mksh/DESCR
@@ -1,5 +1,10 @@
-mksh is the MirBSD enhanced version of the Public Domain Korn shell
-(pdksh), a Bourne-compatible shell which is largely similar to the
-original AT&T Korn shell. It includes bug fixes and feature improvements
-in order to produce a modern, robust shell good for interactive and
-especially script use.
+mksh is the MirBSD enhanced version of the Public Domain Korn shell (pdksh),
+a Bourne-compatible shell which is largely si. milar to the original AT&T
+Korn shell; mksh is the only pdksh derivate currently being actively developed.
+It includes bug fixes and feature improvements, in order to produce a modern,
+robust shell good for interactive and especially script use.
+
+The code has throughoutly been cleaned up and simplified, bugs fixed, standards
+compliance added, and several enhancements (for extended compatibility to other
+modern shells, as well as a couple of its own) have been placed. mksh has UTF-8
+support (e.g. in the emacs editing mode).
diff --git a/shells/mksh/Makefile b/shells/mksh/Makefile
index 55023c2b67b..58ba95e0813 100644
--- a/shells/mksh/Makefile
+++ b/shells/mksh/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.9 2008/10/25 18:58:13 ahoka Exp $
+# $NetBSD: Makefile,v 1.10 2009/04/13 19:48:34 ahoka Exp $
-DISTNAME= mksh-R36
+DISTNAME= mksh-R37c
PKGNAME= ${DISTNAME:S/-R/-/}
CATEGORIES= shells
MASTER_SITES= http://www.mirbsd.org/MirOS/dist/mir/mksh/ \
diff --git a/shells/mksh/distinfo b/shells/mksh/distinfo
index d3d0a102c55..943365890b7 100644
--- a/shells/mksh/distinfo
+++ b/shells/mksh/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.9 2008/10/25 18:58:14 ahoka Exp $
+$NetBSD: distinfo,v 1.10 2009/04/13 19:48:34 ahoka Exp $
-SHA1 (mksh-R36.cpio.gz) = b34eb3b00ff628202fca3f1e7a9841e0a7c8a27b
-RMD160 (mksh-R36.cpio.gz) = 052a2d445909bd91f43274e7d1af4e0d4d3ec59d
-Size (mksh-R36.cpio.gz) = 264858 bytes
+SHA1 (mksh-R37c.cpio.gz) = 7c231b7add0317a427aa0829e9d13f28333d1549
+RMD160 (mksh-R37c.cpio.gz) = 3403ae2195a1f369df2ee64fbb3ec2a4c62d2212
+Size (mksh-R37c.cpio.gz) = 268074 bytes