./archivers/zutils, Utilities for any combination of compressed and non-compressed files

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 1.10, Package name: zutils-1.10, Maintainer: pkgsrc-users

Zutils is a collection of utilities able to deal with any combination
of compressed and non-compressed files transparently. If any given
file, including standard input, is compressed, its decompressed
content is used. Compressed files are decompressed on the fly; no
temporary files are created. These utilities are not wrapper scripts
but safer and more efficient C++ programs. In particular the
"--recursive" option is very efficient in those utilities supporting it.

The provided utilities are:
Zcat - Decompresses and copies files to standard output.
Zcmp - Decompresses and compares two files byte by byte.
Zdiff - Decompresses and compares two files line by line.
Zgrep - Decompresses and searches files for a regular expression.
Ztest - Tests integrity of compressed files.


Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 53.789 KB

Version history: (Expand)


CVS history: (Expand)


   2021-10-26 11:57:20 by Nia Alarie | Files touched by this commit (140)
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and SHA512
hashes.
   2021-10-07 15:06:15 by Nia Alarie | Files touched by this commit (140)
Log message:
archivers: Remove SHA1 distfiles hashes
   2021-02-12 08:27:48 by Nia Alarie | Files touched by this commit (2) | Package updated
Log message:
zutils: Update to 1.10

Changes in version 1.10:

A portability issue with Solaris 10 has been fixed.

It has been documented in the manual that 'zgrep -L' fails with GNU grep
versions 3.2 to 3.4 inclusive because of a wrong change reverted in GNU grep
3.5.

'make check' now tests empty input files with all tools except zupdate.
   2020-02-29 17:19:50 by Makoto Fujiwara | Files touched by this commit (2) | Package updated
Log message:
(archivers/zutils) Updated 1.6 to 1.8

Changes in version 1.8:

A buffer overflow has been fixed in zcat which happened sometimes when
the '-v, --show-nonprinting' option was used (or indirectly enabled).
A canary byte has been added to the output buffer to prevent the buffer
overflow from happening again.

The option '-R, --dereference-recursive', which recursively follows
symbolic links, has been added to zcat, zgrep, ztest and zupdate.

The option '-r, --recursive' now skips symlinks that are encountered
recursively.

If no files are given to zcat, zgrep, ztest and zupdate, a recursive
search will now examine the current working directory.

Recursive directory loops are now detected.

zcat and zgrep now ignore directories given in the command line if
'--recursive' is not specified, instead of reporting an error.

Extra trailing slashes are now removed from directories given in the
command line before recursing into them.

zcat and zgrep now show the right error when they can't open an input
file instead of showing "No such file or directory".

Killed decompressors are now waited for, preventing failure caused by
too many open pipes.

Test and document that if a file fails to decompress, zcat, zgrep and
ztest continue processing the rest of the files.

Test and document that if an error happens while recompressing a file,
zupdate exits immediately without recompressing the rest of the files.

The configure script now accepts appending options to CXXFLAGS using the
syntax 'CXXFLAGS+=OPTIONS'.
   2020-01-19 00:36:14 by Roland Illig | Files touched by this commit (3046)
Log message:
all: migrate several HOMEPAGEs to https

pkglint --only "https instead of http" -r -F

With manual adjustments afterwards since pkglint 19.4.4 fixed a few
indentations in unrelated lines.

This mainly affects projects hosted at SourceForce, as well as
freedesktop.org, CTAN and GNU.
   2019-11-02 23:54:29 by Roland Illig | Files touched by this commit (27)
Log message:
archivers: align variable assignments

pkglint -Wall -F --only aligned --only indent -r

No manual corrections.
   2018-07-04 15:40:45 by Jonathan Perkin | Files touched by this commit (423)
Log message:
*: Move SUBST_STAGE from post-patch to pre-configure

Performing substitutions during post-patch breaks tools such as mkpatches,
making it very difficult to regenerate correct patches after making changes,
and often leading to substituted string replacements being committed.
   2017-04-09 13:39:19 by Makoto Fujiwara | Files touched by this commit (2)
Log message:
Updated archivers/zutils to 1.6
-------------------------------
2017-04-05  Antonio Diaz Diaz  <antonio@gnu.org>

        * Version 1.6 released.
        * zcmp.cc: Accept 'B' suffix in '--ignore-initial=1kB:1234B'.
        * zutils.cc (feed_data): Show input filename in error messages.