- Update to new upstream release 1.21~rc1
OBS-URL: https://build.opensuse.org/package/show/Archiving/lziprecover?expand=0&rev=15
This commit is contained in:
parent
3d3d79006d
commit
43d0f25f26
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ffd79a038c9910c139a9339c1d9689320c927733c0a4998173a16daf7aabf63a
|
|
||||||
size 102574
|
|
Binary file not shown.
3
lziprecover-1.21-rc1.tar.gz
Normal file
3
lziprecover-1.21-rc1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:142cd920f8f504ca89def81958679dc36a420e4c8d9c2c14d8b738a009556f46
|
||||||
|
size 113062
|
@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Dec 14 11:46:20 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to new upstream release 1.21~rc1
|
||||||
|
* The options '--dump', '--remove' and '--strip' have been
|
||||||
|
added, mainly as support for the tarlz archive format.
|
||||||
|
* Detection of forbidden combinations of characters in trailing
|
||||||
|
data has been improved.
|
||||||
|
* '--split' can now detect trailing data and gaps between
|
||||||
|
members, and save each gap in its own file. Trailing data (if
|
||||||
|
any) are saved alone in the last file. (Gaps may contain
|
||||||
|
garbage or may be members with corrupt headers or trailers).
|
||||||
|
* '--ignore-errors' now makes '--list' show gaps between
|
||||||
|
members, ignoring format errors.
|
||||||
|
* '--ignore-errors' now makes '--range-decompress' ignore a
|
||||||
|
truncated last member.
|
||||||
|
* '--ignore-errors' now makes '--dump', '--remove' and
|
||||||
|
'--strip' ignore format errors.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 5 19:37:23 UTC 2018 - jengelh@inai.de
|
Mon Mar 5 19:37:23 UTC 2018 - jengelh@inai.de
|
||||||
|
|
||||||
|
@ -13,20 +13,20 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: lziprecover
|
Name: lziprecover
|
||||||
Version: 1.20
|
Version: 1.21~rc1
|
||||||
Release: 0
|
Release: 0
|
||||||
|
%define xversion 1.21-rc1
|
||||||
Summary: Utility to repair broken lzip files
|
Summary: Utility to repair broken lzip files
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
Group: Productivity/Archiving/Compression
|
Group: Productivity/Archiving/Compression
|
||||||
Url: http://www.nongnu.org/lzip/lunzip.html
|
URL: http://www.nongnu.org/lzip/lunzip.html
|
||||||
|
Source: http://download.savannah.gnu.org/releases/lzip/lziprecover/%name-%xversion.tar.gz
|
||||||
Source: http://download.savannah.gnu.org/releases/lzip/lziprecover/%name-%version.tar.gz
|
#Source2: http://download.savannah.gnu.org/releases/lzip/lziprecover/%name-%version.tar.gz.sig
|
||||||
Source2: http://download.savannah.gnu.org/releases/lzip/lziprecover/%name-%version.tar.gz.sig
|
|
||||||
Source3: %name.keyring
|
Source3: %name.keyring
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
@ -53,34 +53,39 @@ Lziprecover can print correct total file sizes and ratios even for
|
|||||||
multi-member files.
|
multi-member files.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%autosetup -n %name-%xversion
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# not autoconf
|
# not autoconf
|
||||||
install -d build
|
mkdir build
|
||||||
pushd build
|
pushd build/
|
||||||
../configure --srcdir=.. --prefix="%{_prefix}" --bindir="%{_bindir}" \
|
../configure --prefix="%_prefix" --bindir="%_bindir" --datadir="%_datadir" \
|
||||||
--datarootdir="%{_datadir}" --infodir="%{_infodir}" \
|
--infodir="%_infodir" --mandir="%_mandir" --sysconfdir="%_sysconfdir" \
|
||||||
--mandir="%{_mandir}" CC="%__cc" CFLAGS="%{optflags}"
|
CC="%__cc" CFLAGS="%optflags"
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
popd
|
popd
|
||||||
|
|
||||||
%install
|
%install
|
||||||
pushd build
|
pushd build/
|
||||||
make install DESTDIR="%buildroot"
|
%make_install
|
||||||
|
popd
|
||||||
|
|
||||||
|
%check
|
||||||
|
pushd build/
|
||||||
|
make check
|
||||||
popd
|
popd
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%install_info --info-dir="%{_infodir}" "%{_infodir}/%{name}".info*
|
%install_info --info-dir="%_infodir" "%_infodir/%name".info*
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
%install_info_delete --info-dir="%{_infodir}" "%{_infodir}/%{name}".info*
|
%install_info_delete --info-dir="%_infodir" "%_infodir/%name".info*
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc AUTHORS COPYING ChangeLog NEWS README
|
%doc AUTHORS COPYING ChangeLog NEWS README
|
||||||
%{_bindir}/lziprecover
|
%_bindir/lziprecover
|
||||||
%doc %{_mandir}/man1/lziprecover.1*
|
%_mandir/man1/lziprecover.1*
|
||||||
%doc %{_infodir}/lziprecover.info*
|
%_infodir/lziprecover.info*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user