- 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
|
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)
|
# 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: plzip
|
Name: plzip
|
||||||
Version: 1.7
|
Version: 1.8~rc1
|
||||||
Release: 0
|
Release: 0
|
||||||
|
%define xversion 1.8-rc1
|
||||||
Summary: Parallel LZMA Data Compressor
|
Summary: Parallel LZMA Data Compressor
|
||||||
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/plzip.html
|
URL: http://www.nongnu.org/lzip/plzip.html
|
||||||
|
Source: http://download.savannah.gnu.org/releases/lzip/plzip/%name-%xversion.tar.gz
|
||||||
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
|
||||||
Source2: http://download.savannah.gnu.org/releases/lzip/plzip/%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: c++_compiler
|
||||||
BuildRequires: lzlib-devel
|
BuildRequires: lzlib-devel
|
||||||
Requires(post): %install_info_prereq
|
Requires(post): %install_info_prereq
|
||||||
Requires(preun): %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.
|
distribution and data archiving.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%autosetup -n %name-%xversion
|
||||||
|
|
||||||
%build
|
%build
|
||||||
mkdir build
|
mkdir build
|
||||||
pushd build
|
pushd build/
|
||||||
# not autoconf
|
# not autoconf
|
||||||
../configure --prefix="%{_prefix}" --bindir="%{_bindir}" \
|
../configure --prefix="%_prefix" --bindir="%_bindir" --datadir="%_datadir" \
|
||||||
--datadir="%{_datadir}" --includedir="%{_includedir}" \
|
--includedir="%_includedir" --infodir="%_infodir" --libdir="%_libdir" \
|
||||||
--infodir="%{_infodir}" --libdir="%{_libdir}" --mandir="%{_mandir}" \
|
--mandir="%_mandir" --sysconfdir="%_sysconfdir" --enable-shared \
|
||||||
--sysconfdir="%{_sysconfdir}" --enable-shared \
|
CC="%__cc" CFLAGS="%optflags" CXX="%__cxx" CXXFLAGS="%optflags"
|
||||||
CXX="%__cxx" CPPFLAGS="%{optflags}" CXXFLAGS="%{optflags}"
|
|
||||||
make %{?_smp_flags}
|
make %{?_smp_flags}
|
||||||
popd
|
popd
|
||||||
|
|
||||||
%install
|
%install
|
||||||
pushd build
|
pushd build/
|
||||||
%make_install LDCONFIG=echo
|
%make_install LDCONFIG=true
|
||||||
popd
|
popd
|
||||||
|
|
||||||
%check
|
%check
|
||||||
pushd build
|
pushd build/
|
||||||
make check
|
make %{?_smp_mflags} check
|
||||||
popd
|
popd
|
||||||
|
|
||||||
%post
|
%post
|
||||||
@ -80,8 +79,8 @@ popd
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc AUTHORS ChangeLog COPYING NEWS README
|
%doc AUTHORS ChangeLog COPYING NEWS README
|
||||||
%{_bindir}/plzip
|
%_bindir/plzip
|
||||||
%doc %{_infodir}/plzip.info%{ext_info}
|
%_infodir/plzip.info*
|
||||||
%doc %{_mandir}/man1/plzip.1%{ext_man}
|
%_mandir/man1/plzip.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user