Up to [cvs.NetBSD.org] / pkgsrc / textproc / zet
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.4 / (download) - annotate - [selected], Tue Mar 29 10:43:37 2022 UTC (4 months, 2 weeks ago) by pin
Branch: MAIN
CVS Tags: pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
HEAD
Changes since 1.3: +4 -3
lines
Diff to previous 1.3 (colored)
textproc/zet: dead upstream
Revision 1.3 / (download) - annotate - [select for diffs], Thu Aug 5 08:58:31 2021 UTC (12 months, 1 week ago) by pin
Branch: MAIN
CVS Tags: pkgsrc-2022Q1-base,
pkgsrc-2022Q1,
pkgsrc-2021Q4-base,
pkgsrc-2021Q4,
pkgsrc-2021Q3-base,
pkgsrc-2021Q3
Changes since 1.2: +1 -3
lines
Diff to previous 1.2 (colored) to selected 1.4 (colored)
textproc/zet: simplify Makefile
Revision 1.2 / (download) - annotate - [select for diffs], Mon Jul 5 08:45:08 2021 UTC (13 months, 2 weeks ago) by pin
Branch: MAIN
Changes since 1.1: +2 -3
lines
Diff to previous 1.1 (colored) to selected 1.4 (colored)
textproc/zet: update to 0.2.0 -Add support for UTF-16 files, and make sure lines that differ only in their terminator (\n vs \r\n) are considered equal. -Zet looks for Byte Order Marks in UTF-8, UTF-16LE and UTF-16BE files, translating UTF-16LE and UTF-16BE to UTF-8. It outputs a (UTF-8) Byte Order Mark if and only if it finds one in its first file argument. -Zet strips off the line terminator (\n or \r\n) from each input line. On output, it uses the line terminator found in the first line of its first file argument (or \n if the first file consists of a single line with no terminator).
Revision 1.1 / (download) - annotate - [select for diffs], Tue Jun 15 07:27:30 2021 UTC (14 months ago) by pin
Branch: MAIN
CVS Tags: pkgsrc-2021Q2-base,
pkgsrc-2021Q2
Diff to selected 1.4 (colored)
textproc/zet: import package This is a command-line utility for doing set operations on files considered as sets of lines. For instance, `zet union x y z` outputs the lines that occur in any of `x`, `y`, or `z`. Two notes: -Each output line occurs only once, because we're treating the files as sets and the lines as their elements. -We do take the file structure into account in one respect: the lines are output in the same order as they are encountered. So `zet union x` prints out the lines of `x`, in order, with duplicates removed.