- Update to new upstream release 1.11~rc2
OBS-URL: https://build.opensuse.org/package/show/Archiving/lzlib?expand=0&rev=18
This commit is contained in:
parent
0e4eab4d81
commit
2c9f5c09cc
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1d6ab7800a5b43e56fd20607fd2cfda9e550350dc95f5beb6a4ce14f85b41043
|
|
||||||
size 103328
|
|
Binary file not shown.
3
lzlib-1.11-rc2.tar.gz
Normal file
3
lzlib-1.11-rc2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:11848d7b8589e625f8813986ca6437a382799c55be6479d2bb6969a8aa38c0de
|
||||||
|
size 105695
|
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Dec 14 11:42:47 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to new upstream release 1.11~rc2:
|
||||||
|
* In case of decompression error caused by corrupt or truncated data,
|
||||||
|
LZ_decompress_read now does not signal the error immediately
|
||||||
|
to the application, but waits until all decoded bytes have
|
||||||
|
been read. This allows tools like tarlz to recover as much
|
||||||
|
data as possible from damaged members.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 18 21:41:57 UTC 2018 - avindra@opensuse.org
|
Sun Feb 18 21:41:57 UTC 2018 - avindra@opensuse.org
|
||||||
|
|
||||||
|
44
lzlib.spec
44
lzlib.spec
@ -1,4 +1,3 @@
|
|||||||
# vim: set ts=4 sw=4 et:
|
|
||||||
#
|
#
|
||||||
# spec file for package lzlib
|
# spec file for package lzlib
|
||||||
#
|
#
|
||||||
@ -14,20 +13,21 @@
|
|||||||
# 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/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define lname liblz1
|
|
||||||
Name: lzlib
|
Name: lzlib
|
||||||
Version: 1.10
|
Version: 1.11~rc2
|
||||||
Release: 0
|
Release: 0
|
||||||
|
%define lname liblz1
|
||||||
|
%define xversion 1.11-rc2
|
||||||
Summary: LZMA Compression and Decompression Library
|
Summary: LZMA Compression and Decompression Library
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Url: https://www.nongnu.org/lzip/lzlib.html
|
URL: https://www.nongnu.org/lzip/lzlib.html
|
||||||
Source: https://download.savannah.gnu.org/releases/lzip/lzlib/%name-%version.tar.gz
|
Source: https://download.savannah.gnu.org/releases/lzip/lzlib/%name-%xversion.tar.gz
|
||||||
Source2: https://download.savannah.gnu.org/releases/lzip/lzlib/%name-%version.tar.gz.sig
|
#Source2: https://download.savannah.gnu.org/releases/lzip/lzlib/%name-%version.tar.gz.sig
|
||||||
Source3: %name.keyring
|
Source3: %name.keyring
|
||||||
PreReq: %install_info_prereq
|
PreReq: %install_info_prereq
|
||||||
|
|
||||||
@ -64,25 +64,25 @@ This subpackage contains libraries and header files for developing
|
|||||||
applications that want to make use of libcerror.
|
applications that want to make use of libcerror.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%autosetup -n %name-%xversion
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# not autoconf!
|
# not autoconf!
|
||||||
# don't use the configure macro here, as it will cause the configure script to
|
# don't use the configure macro here, as it will cause the configure script to
|
||||||
# skip parameters as soon as it encounters one that it doesn't understand
|
# skip parameters as soon as it encounters one that it doesn't understand
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="%{_prefix}" \
|
--prefix="%_prefix" \
|
||||||
--bindir="%{_bindir}" \
|
--bindir="%_bindir" \
|
||||||
--datadir="%{_datadir}" \
|
--datadir="%_datadir" \
|
||||||
--includedir="%{_includedir}" \
|
--includedir="%_includedir" \
|
||||||
--infodir="%{_infodir}" \
|
--infodir="%_infodir" \
|
||||||
--libdir="%{_libdir}" \
|
--libdir="%_libdir" \
|
||||||
--mandir="%{_mandir}" \
|
--mandir="%_mandir" \
|
||||||
--sysconfdir="%{_sysconfdir}" \
|
--sysconfdir="%_sysconfdir" \
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
CXX="g++" \
|
CXX="g++" \
|
||||||
CPPFLAGS="%{optflags}" \
|
CPPFLAGS="%optflags" \
|
||||||
CXXFLAGS="%{optflags}"
|
CXXFLAGS="%optflags"
|
||||||
|
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
@ -105,11 +105,11 @@ make %{?_smp_mflags} check
|
|||||||
|
|
||||||
%files -n %lname
|
%files -n %lname
|
||||||
%doc AUTHORS ChangeLog COPYING NEWS README
|
%doc AUTHORS ChangeLog COPYING NEWS README
|
||||||
%{_libdir}/liblz.so.*
|
%_libdir/liblz.so.*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_includedir}/lzlib.h
|
%_includedir/lzlib.h
|
||||||
%{_libdir}/liblz.so
|
%_libdir/liblz.so
|
||||||
%{_infodir}/lzlib.info%{ext_info}
|
%_infodir/lzlib.info%ext_info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user