- Update to new upstream release 1.8~rc1
OBS-URL: https://build.opensuse.org/package/show/Archiving/plzip?expand=0&rev=25
This commit is contained in:
parent
78ee3ae313
commit
e2602a54e4
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:95e22cdd98eb2f41bf4fb169530a5945aad2fec20c2e2284d597e77972baf2b7
|
||||
size 69062
|
Binary file not shown.
3
plzip-1.8-rc1.tar.gz
Normal file
3
plzip-1.8-rc1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:061fdab7adc1fac57cfbdfe3f3cb776c9c83a11e760f332c4cccf727bb3bd9f3
|
||||
size 71704
|
@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 14 11:59:01 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to new upstream release 1.8~rc1
|
||||
* The new options '--in-slots' and '--out-slots', setting the
|
||||
number of input and output packets buffered during streamed
|
||||
decompression, have been added. Increasing the number of
|
||||
packets may increase decompression speed, but requires more
|
||||
memory.
|
||||
* The default number of input packets buffered per worker
|
||||
thread when decompressing from non-seekable input has been
|
||||
increased from 2 to 4.
|
||||
* The default number of output packets buffered per worker
|
||||
thread when decompressing to non-seekable output has been
|
||||
increased from 32 to 64.
|
||||
* Detection of forbidden combinations of characters in trailing
|
||||
data has been improved.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 5 19:39:23 UTC 2018 - jengelh@inai.de
|
||||
|
||||
|
41
plzip.spec
41
plzip.spec
@ -13,23 +13,23 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# 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: plzip
|
||||
Version: 1.7
|
||||
Version: 1.8~rc1
|
||||
Release: 0
|
||||
%define xversion 1.8-rc1
|
||||
Summary: Parallel LZMA Data Compressor
|
||||
License: GPL-2.0-or-later
|
||||
Group: Productivity/Archiving/Compression
|
||||
Url: http://www.nongnu.org/lzip/plzip.html
|
||||
|
||||
Source: http://download.savannah.gnu.org/releases/lzip/plzip/%name-%version.tar.gz
|
||||
Source2: http://download.savannah.gnu.org/releases/lzip/plzip/%name-%version.tar.gz.sig
|
||||
URL: http://www.nongnu.org/lzip/plzip.html
|
||||
Source: http://download.savannah.gnu.org/releases/lzip/plzip/%name-%xversion.tar.gz
|
||||
#Source2: http://download.savannah.gnu.org/releases/lzip/plzip/%name-%version.tar.gz.sig
|
||||
Source3: %name.keyring
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: c++_compiler
|
||||
BuildRequires: lzlib-devel
|
||||
Requires(post): %install_info_prereq
|
||||
Requires(preun): %install_info_prereq
|
||||
@ -47,28 +47,27 @@ compresses better than bzip2, which makes it well suited for software
|
||||
distribution and data archiving.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%autosetup -n %name-%xversion
|
||||
|
||||
%build
|
||||
mkdir build
|
||||
pushd build
|
||||
pushd build/
|
||||
# not autoconf
|
||||
../configure --prefix="%{_prefix}" --bindir="%{_bindir}" \
|
||||
--datadir="%{_datadir}" --includedir="%{_includedir}" \
|
||||
--infodir="%{_infodir}" --libdir="%{_libdir}" --mandir="%{_mandir}" \
|
||||
--sysconfdir="%{_sysconfdir}" --enable-shared \
|
||||
CXX="%__cxx" CPPFLAGS="%{optflags}" CXXFLAGS="%{optflags}"
|
||||
../configure --prefix="%_prefix" --bindir="%_bindir" --datadir="%_datadir" \
|
||||
--includedir="%_includedir" --infodir="%_infodir" --libdir="%_libdir" \
|
||||
--mandir="%_mandir" --sysconfdir="%_sysconfdir" --enable-shared \
|
||||
CC="%__cc" CFLAGS="%optflags" CXX="%__cxx" CXXFLAGS="%optflags"
|
||||
make %{?_smp_flags}
|
||||
popd
|
||||
|
||||
%install
|
||||
pushd build
|
||||
%make_install LDCONFIG=echo
|
||||
pushd build/
|
||||
%make_install LDCONFIG=true
|
||||
popd
|
||||
|
||||
%check
|
||||
pushd build
|
||||
make check
|
||||
pushd build/
|
||||
make %{?_smp_mflags} check
|
||||
popd
|
||||
|
||||
%post
|
||||
@ -80,8 +79,8 @@ popd
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS ChangeLog COPYING NEWS README
|
||||
%{_bindir}/plzip
|
||||
%doc %{_infodir}/plzip.info%{ext_info}
|
||||
%doc %{_mandir}/man1/plzip.1%{ext_man}
|
||||
%_bindir/plzip
|
||||
%_infodir/plzip.info*
|
||||
%_mandir/man1/plzip.1*
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user