pkgsrc-WIP-cvs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: wip/runawk
Module name: wip
Committed by: cheusov
Date: Sun Mar 28 11:41:50 UTC 2010
Modified Files:
wip/runawk: Makefile PLIST distinfo
Log Message:
Uopdate to 0.21.0
fixed: compilation failure on recent Linux-es (warn_unused_result
attribute of system(3) function in recent glibc).
fixed: compilation failures on FreeBSD ("assignment discards
qualifiers from pointer target type" warning which is critical with
-Werror).
fixed: compilation failure with Intel C Compiler
Now one can pass arguments to awk program specified with
-e option after --, that is like the following
runawk -e '<awk program>' -- <extra options for your program>
New simple modules:
- trim.awk: this modules provides a set of simple functions for
trimming spaces from the string.
- backslash_in.awk treats backslash symbol at the end of input line
as "this line will continue on the next line".
$ cat ~/tmp/9.txt
Some text here \
and here too. \
This is still the first line.
This is the second.
And this is third one that\
continues on the next line \
and the next line too.
Ok, we finally have four lines of text.
$ runawk -f backslash_in.awk -e '{print}' ~/tmp/9.txt
Some text here and here too. This is still the first line.
This is the second.
And this is third one that continues on the next line and the next
line too.
Ok, we finally have four lines of text.
$
- trim_in.awk trims spaces from input lines.
- CR_in.awk removes CR symbols from input lines.
To generate a diff of this commit:
cvs -z3 rdiff -u -r1.15 -r1.16 wip/runawk/PLIST
cvs -z3 rdiff -u -r1.18 -r1.19 wip/runawk/distinfo
cvs -z3 rdiff -u -r1.43 -r1.44 wip/runawk/Makefile
To view a diff of this commit:
http://pkgsrc-wip.cvs.sourceforge.net/pkgsrc-wip/wip/runawk/PLIST?r1=1.15&r2=1.16
http://pkgsrc-wip.cvs.sourceforge.net/pkgsrc-wip/wip/runawk/distinfo?r1=1.18&r2=1.19
http://pkgsrc-wip.cvs.sourceforge.net/pkgsrc-wip/wip/runawk/Makefile?r1=1.43&r2=1.44
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
pkgsrc-wip-cvs mailing list
pkgsrc-wip-cvs%lists.sourceforge.net@localhost
https://lists.sourceforge.net/lists/listinfo/pkgsrc-wip-cvs
Home |
Main Index |
Thread Index |
Old Index