summaryrefslogtreecommitdiff
path: root/lang/nawk/DESCR
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2005-05-18 05:22:43 +0000
committerjlam <jlam@pkgsrc.org>2005-05-18 05:22:43 +0000
commit570a1d96f1f3e0b56d6d513bee8e89c2f9ed3dc0 (patch)
tree2af19e72a637e5e131c800e63fb7f889ea173d44 /lang/nawk/DESCR
parentafce691e433eb0c6cde13013f2f05b830a578a51 (diff)
downloadpkgsrc-570a1d96f1f3e0b56d6d513bee8e89c2f9ed3dc0.tar.gz
Update lang/nawk to 20050425. Pkgsrc changes include:
Grab distfile from ${MASTER_SITE_LOCAL} where it's in a ${PKGNAME}-specific directory since the distfile has no version number. Use the .shar instead of .tar.gz distfile to remove the need for dependencies to build this package. Changes from nawk-20040207 include: Apr 24, 2005: modified lib.c so that values of $0 et al are preserved in the END block, apparently as required by posix. thanks to havard eidnes for the report and code. Jan 14, 2005: fixed infinite loop in parsing, originally found by brian tsang. thanks to arnold robbins for a suggestion that started me rethinking it. Dec 31, 2004: prevent overflow of -f array in main, head off potential error in call of SYNTAX(), test malloc return in lib.c, all with thanks to todd miller. Dec 22, 2004: cranked up size of NCHARS; coverity thinks it can be overrun with smaller size, and i think that's right. added some assertions to b.c to catch places where it might overrun. the RE code is still fragile. Dec 5, 2004: fixed a couple of overflow problems with ridiculous field numbers: e.g., print $(2^32-1). thanks to ruslan ermilov, giorgos keramidas and david o'brien at freebsd.org for patches. this really should be re-done from scratch. Nov 21, 2004: fixed another 25-year-old RE bug, in split. it's another failure to (re-)initialize. thanks to steve fisher for spotting this and providing a good test case.
Diffstat (limited to 'lang/nawk/DESCR')
-rw-r--r--lang/nawk/DESCR9
1 files changed, 4 insertions, 5 deletions
diff --git a/lang/nawk/DESCR b/lang/nawk/DESCR
index db80762a0b2..2cc1af9f6d2 100644
--- a/lang/nawk/DESCR
+++ b/lang/nawk/DESCR
@@ -1,6 +1,5 @@
The one, true implementation of the AWK pattern-directed scanning and
-processing language, by one of the language's creators, Brian
-Kernighan. This is the version of awk described in "The AWK
-Programming Language", by Al Aho, Brian Kernighan, and Peter
-Weinberger (Addison-Wesley, 1988, ISBN 0-201-07981-X).
-It is also known as new awk, or nawk.
+processing language, by one of the language's creators, Brian Kernighan.
+This is the version of awk described in "The AWK Programming Language",
+by Al Aho, Brian Kernighan, and Peter Weinberger (Addison-Wesley,
+1988, ISBN 0-201-07981-X). It is also known as new awk, or nawk.