Accepting request 1060258 from home:AndreasStieger:branches:Archiving
zutils 1.12 OBS-URL: https://build.opensuse.org/request/show/1060258 OBS-URL: https://build.opensuse.org/package/show/Archiving/zutils?expand=0&rev=22
This commit is contained in:
parent
aed30dc87d
commit
edf831abe1
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:50e8e24b0a280ccab037004b9000b070d17a6e0cd86972927d1b2a5505421389
|
|
||||||
size 57098
|
|
Binary file not shown.
3
zutils-1.12.tar.lz
Normal file
3
zutils-1.12.tar.lz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:78ae5478b01c71c5194427c5c341765da831e42e80410ec980f403aa37ac88ee
|
||||||
|
size 62965
|
BIN
zutils-1.12.tar.lz.sig
Normal file
BIN
zutils-1.12.tar.lz.sig
Normal file
Binary file not shown.
@ -7,10 +7,10 @@ Use zutils- prefix with executables also present in the gzip
|
|||||||
package.
|
package.
|
||||||
|
|
||||||
---
|
---
|
||||||
Index: zutils-1.10/Makefile.in
|
Index: zutils-1.12/Makefile.in
|
||||||
===================================================================
|
===================================================================
|
||||||
--- zutils-1.10.orig/Makefile.in
|
--- zutils-1.12.orig/Makefile.in
|
||||||
+++ zutils-1.10/Makefile.in
|
+++ zutils-1.12/Makefile.in
|
||||||
@@ -126,12 +126,12 @@ install-strip-compress : install-bin-str
|
@@ -126,12 +126,12 @@ install-strip-compress : install-bin-str
|
||||||
|
|
||||||
install-bin : all
|
install-bin : all
|
||||||
@ -29,7 +29,7 @@ Index: zutils-1.10/Makefile.in
|
|||||||
+ $(INSTALL_PROGRAM) ./zgrep "$(DESTDIR)$(bindir)/zutils-zgrep"
|
+ $(INSTALL_PROGRAM) ./zgrep "$(DESTDIR)$(bindir)/zutils-zgrep"
|
||||||
$(INSTALL_PROGRAM) ./ztest "$(DESTDIR)$(bindir)/ztest"
|
$(INSTALL_PROGRAM) ./ztest "$(DESTDIR)$(bindir)/ztest"
|
||||||
$(INSTALL_PROGRAM) ./zupdate "$(DESTDIR)$(bindir)/zupdate"
|
$(INSTALL_PROGRAM) ./zupdate "$(DESTDIR)$(bindir)/zupdate"
|
||||||
if [ ! -e "$(DESTDIR)$(sysconfdir)/$(pkgname)rc" ] ; then \
|
if [ ! -e "$(DESTDIR)$(sysconfdir)/$(pkgname).conf" ] ; then \
|
||||||
@@ -161,18 +161,18 @@ install-man :
|
@@ -161,18 +161,18 @@ install-man :
|
||||||
-rm -f "$(DESTDIR)$(mandir)/man1/zgrep.1"*
|
-rm -f "$(DESTDIR)$(mandir)/man1/zgrep.1"*
|
||||||
-rm -f "$(DESTDIR)$(mandir)/man1/ztest.1"*
|
-rm -f "$(DESTDIR)$(mandir)/man1/ztest.1"*
|
||||||
|
@ -1,3 +1,49 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Jan 22 11:39:46 UTC 2023 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
|
- update to 1.12:
|
||||||
|
* 'zutilsrc' has been renamed to 'zutils.conf', and is loog for in
|
||||||
|
$XDG_CONFIG_HOME/zutils.conf instead of $HOME/.zutilsrc.
|
||||||
|
(XDG_CONFIG_HOME defaults to $HOME/.config).
|
||||||
|
* In zcat, zcmp, zdiff, and zgrep, the option '-O, --force-format'
|
||||||
|
now can force also "uncompressed" format.
|
||||||
|
* zcmp now accepts the option '-H, --hexadecimal' to print byte
|
||||||
|
values in hexadecimal instead of octal.
|
||||||
|
* zcmp: option '-s' changed to '--script'
|
||||||
|
* zcmp: '-q' has been assigned to options '--quiet' and '--silent'
|
||||||
|
* zcmp: '-q' now only suppresses diagnostic messages written to
|
||||||
|
stderr
|
||||||
|
* zcmp: '-s' now only suppresses messages about file differences
|
||||||
|
written to stdout or stderr.
|
||||||
|
* zcmp: Option '-l, --list' is now different from option '-v,
|
||||||
|
--verbose', whichnow undoes the effect of '--quiet'.
|
||||||
|
* zcmp now prints byte and line in EOF message like GNU cmp:
|
||||||
|
"zcmp: EOF on FILE after byte B, in line L".
|
||||||
|
* zgrep now also accepts the following options:
|
||||||
|
'-G, --basic-regexp',
|
||||||
|
'--label=<label>',
|
||||||
|
'--line-buffered',
|
||||||
|
'-P, --perl-regexp',
|
||||||
|
'--silent',
|
||||||
|
'-T, --initial-tab',
|
||||||
|
'-U, --binary', and
|
||||||
|
'-Z, --null'.
|
||||||
|
* ztest now exits with status 2 if an uncompressed file has a
|
||||||
|
compressed file name extension, or if a compressed file has a
|
||||||
|
wrong compressed extension.
|
||||||
|
* zudate now accepts option '-d, --destdir' to write recompressed
|
||||||
|
files to another directory.
|
||||||
|
* zupdate now accepts option '-e, --expand-extensions', which
|
||||||
|
makes it expand combined file name extensions; tgz --> tar.lz.
|
||||||
|
* zupdate now also accepts option '-i, --ignore-errors', which
|
||||||
|
makes it ignore non-fatal errors
|
||||||
|
* All utilities now support compress'd (.Z) files through gzip.
|
||||||
|
* At verbosity level 1 (2 for zdiff and zgrep) or higher, '-V,
|
||||||
|
--version' now prints the versions of the compressors used
|
||||||
|
(limited by option '-M, --format').
|
||||||
|
* Diagnostics caused by invalid arguments to command line options
|
||||||
|
now show the argument and the name of the option.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 14 12:49:57 UTC 2022 - Ferdinand Thiessen <rpm@fthiessen.de>
|
Thu Apr 14 12:49:57 UTC 2022 - Ferdinand Thiessen <rpm@fthiessen.de>
|
||||||
|
|
||||||
|
32
zutils.spec
32
zutils.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package zutils
|
# spec file for package zutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: zutils
|
Name: zutils
|
||||||
Version: 1.11
|
Version: 1.12
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Collection of utilities for dealing with compressed files
|
Summary: Collection of utilities for dealing with compressed files
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
@ -30,8 +30,6 @@ Source2: %{name}.keyring
|
|||||||
Patch1: zutils-1.7-noconflict.patch
|
Patch1: zutils-1.7-noconflict.patch
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: lzip
|
BuildRequires: lzip
|
||||||
Requires(post): %{install_info_prereq}
|
|
||||||
Requires(preun):%{install_info_prereq}
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Zutils is a collection of utilities able to deal with any combination
|
Zutils is a collection of utilities able to deal with any combination
|
||||||
@ -56,30 +54,12 @@ in those utilities supporting it.
|
|||||||
%check
|
%check
|
||||||
%make_build check
|
%make_build check
|
||||||
|
|
||||||
%post
|
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
||||||
|
|
||||||
%preun
|
|
||||||
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc ChangeLog README
|
%doc ChangeLog README
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%config %{_sysconfdir}/zutilsrc
|
%{_sysconfdir}/zutils.conf
|
||||||
%{_bindir}/zutils-zcat
|
%{_bindir}/*
|
||||||
%{_bindir}/zutils-zcmp
|
%{_infodir}/*.info%{?ext_info}
|
||||||
%{_bindir}/zutils-zdiff
|
%{_mandir}/man1/*.1%{?ext_man}
|
||||||
%{_bindir}/zutils-zegrep
|
|
||||||
%{_bindir}/zutils-zfgrep
|
|
||||||
%{_bindir}/zutils-zgrep
|
|
||||||
%{_bindir}/ztest
|
|
||||||
%{_bindir}/zupdate
|
|
||||||
%{_infodir}/zutils.info%{?ext_info}
|
|
||||||
%{_mandir}/man1/zutils-zcat.1%{?ext_man}
|
|
||||||
%{_mandir}/man1/zutils-zcmp.1%{?ext_man}
|
|
||||||
%{_mandir}/man1/zutils-zdiff.1%{?ext_man}
|
|
||||||
%{_mandir}/man1/zutils-zgrep.1%{?ext_man}
|
|
||||||
%{_mandir}/man1/ztest.1%{?ext_man}
|
|
||||||
%{_mandir}/man1/zupdate.1%{?ext_man}
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user