1ecfc74c0f
- Update to 5.2.5: * liblzma: - Fixed several C99/C11 conformance bugs. Now the code is clean under gcc/clang -fsanitize=undefined. Some of these changes might have a negative effect on performance with old GCC versions or compilers other than GCC and Clang. The configure option --enable-unsafe-type-punning can be used to (mostly) restore the old behavior but it shouldn't normally be used. - Improved API documentation of lzma_properties_decode(). - Added a very minor encoder speed optimization. * xz: - Fixed a crash in "xz -dcfv not_an_xz_file". All four options were required to trigger it. The crash occurred in the progress indicator code when xz was in passthru mode where xz works like "cat". - Fixed an integer overflow with 32-bit off_t. It could happen when decompressing a file that has a long run of zero bytes which xz would try to write as a sparse file. Since the build system enables large file support by default, off_t is normally 64-bit even on 32-bit systems. - Fixes for --flush-timeout: * Fix semi-busy-waiting. * Avoid unneeded flushes when no new input has arrived since the previous flush was completed. - Added a special case for 32-bit xz: If --memlimit-compress is used to specify a limit that exceeds 4020 MiB, the limit will be set to 4020 MiB. The values "0" and "max" aren't affected by this and neither is decompression. This hack can be helpful when a 32-bit xz has access to 4 GiB address space but the specified memlimit exceeds 4 GiB. This can happen e.g. with some scripts. - Capsicum sandbox is now enabled by default where available (FreeBSD >= 10). The sandbox debug messages (xz -vv) were removed since they seemed to be more annoying than useful. OBS-URL: https://build.opensuse.org/request/show/786367 OBS-URL: https://build.opensuse.org/package/show/Base:System/xz?expand=0&rev=105
203 lines
5.8 KiB
RPMSpec
203 lines
5.8 KiB
RPMSpec
#
|
||
# spec file for package xz
|
||
#
|
||
# Copyright (c) 2020 SUSE LLC
|
||
#
|
||
# All modifications and additions to the file contributed by third parties
|
||
# remain the property of their copyright owners, unless otherwise agreed
|
||
# upon. The license for this file, and modifications and additions to the
|
||
# file, is the same license as for the pristine package itself (unless the
|
||
# license for the pristine package is not an Open Source License, in which
|
||
# case the license is the MIT License). An "Open Source License" is a
|
||
# license that conforms to the Open Source Definition (Version 1.9)
|
||
# published by the Open Source Initiative.
|
||
|
||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||
#
|
||
|
||
|
||
# avoid bootstrapping problem
|
||
%define _binary_payload w9.bzdio
|
||
Name: xz
|
||
Version: 5.2.5
|
||
Release: 0
|
||
Summary: A Program for Compressing Files with the Lempel–Ziv–Markov algorithm
|
||
License: LGPL-2.1-or-later AND GPL-2.0-or-later AND SUSE-Public-Domain
|
||
Group: Productivity/Archiving/Compression
|
||
URL: http://tukaani.org/xz/
|
||
Source0: http://tukaani.org/xz/%{name}-%{version}.tar.gz
|
||
Source1: http://tukaani.org/xz/%{name}-%{version}.tar.gz.sig
|
||
Source2: baselibs.conf
|
||
# from http://tukaani.org/misc/lasse_collin_pubkey.txt#/xz.keyring
|
||
Source3: xz.keyring
|
||
Source4: xznew
|
||
Source5: xznew.1
|
||
BuildRequires: pkgconfig
|
||
Provides: lzma = %{version}
|
||
Obsoletes: lzma < %{version}
|
||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||
|
||
%description
|
||
The xz command is a program for compressing files.
|
||
* Average compression ratio of LZMA is about 30%% better than that of
|
||
gzip, and 15%% better than that of bzip2.
|
||
* Decompression speed is only little slower than that of gzip, being
|
||
two to five times faster than bzip2.
|
||
* In fast mode, compresses faster than bzip2 with a comparable
|
||
compression ratio.
|
||
* Achieving the best compression ratios takes four to even twelve
|
||
times longer than with bzip2. However, this does not affect
|
||
decompressing speed.
|
||
* Very similar command line interface to what gzip and bzip2 have.
|
||
|
||
%lang_package
|
||
|
||
%package -n liblzma5
|
||
Summary: Lempel–Ziv–Markov chain algorithm compression library
|
||
License: SUSE-Public-Domain
|
||
Group: System/Libraries
|
||
|
||
%description -n liblzma5
|
||
Library for encoding/decoding LZMA files.
|
||
|
||
%package devel
|
||
Summary: Development package for the LZMA library
|
||
License: SUSE-Public-Domain
|
||
Group: Development/Libraries/C and C++
|
||
Requires: liblzma5 = %{version}
|
||
Provides: lzma-devel = %{version}
|
||
Obsoletes: lzma-devel < %{version}
|
||
Provides: lzma-alpha-devel = %{version}
|
||
Obsoletes: lzma-alpha-devel < %{version}
|
||
|
||
%description devel
|
||
This package contains the header files and libraries needed for
|
||
compiling programs using the LZMA library.
|
||
|
||
%package static-devel
|
||
Summary: Static version of LZMA library
|
||
License: SUSE-Public-Domain
|
||
Group: Development/Libraries/C and C++
|
||
Requires: lzma-devel = %{version}
|
||
|
||
%description static-devel
|
||
Static library for the LZMA library
|
||
|
||
%prep
|
||
%setup -q
|
||
|
||
%build
|
||
%global _lto_cflags %{_lto_cflags} -ffat-lto-objects
|
||
export CFLAGS="%{optflags} -D_REENTRANT -pipe -fPIE"
|
||
export LDFLAGS="-Wl,-z,relro,-z,now -pie"
|
||
%configure \
|
||
--with-pic \
|
||
--docdir=%{_docdir}/%{name}
|
||
%if 0%{?do_profiling}
|
||
make %{?_smp_mflags} CFLAGS="${CFLAGS} %{cflags_profile_generate}"
|
||
make check %{?_smp_mflags}
|
||
make clean
|
||
make %{?_smp_mflags} CFLAGS="${CFLAGS} %{cflags_profile_feedback}"
|
||
%else
|
||
make %{?_smp_mflags}
|
||
%endif
|
||
|
||
%check
|
||
make %{?_smp_mflags} check
|
||
|
||
%install
|
||
%if 0%{?make_install:1}
|
||
%make_install
|
||
%else
|
||
# Retain this line, with trailing #, to work around an overly eager spec-cleaner
|
||
make DESTDIR=%{buildroot} install %{?_smp_mflags} #
|
||
%endif
|
||
find %{buildroot} -type f -name "*.la" -delete -print
|
||
%find_lang %{name}
|
||
install -Dpm 0755 %{SOURCE4} %{buildroot}%{_bindir}/xznew
|
||
install -Dpm 0644 %{SOURCE5} %{buildroot}%{_mandir}/man1/xznew.1
|
||
rm -vf %{buildroot}%{_docdir}/%{name}/{COPYING,COPYING.GPLv2}
|
||
|
||
%post -n liblzma5 -p /sbin/ldconfig
|
||
%postun -n liblzma5 -p /sbin/ldconfig
|
||
|
||
%if 0%{?lang_package:1}
|
||
%files lang -f %{name}.lang
|
||
%defattr(-, root, root)
|
||
%{_mandir}/de/man1/*.1%{ext_man}
|
||
%endif
|
||
|
||
%files
|
||
%defattr(-, root, root)
|
||
%license COPYING COPYING.GPLv2
|
||
%{_docdir}/%{name}
|
||
%{_bindir}/lzcat
|
||
%{_bindir}/lzcmp
|
||
%{_bindir}/lzdiff
|
||
%{_bindir}/lzegrep
|
||
%{_bindir}/lzfgrep
|
||
%{_bindir}/lzgrep
|
||
%{_bindir}/lzless
|
||
%{_bindir}/lzma
|
||
%{_bindir}/lzmadec
|
||
%{_bindir}/lzmainfo
|
||
%{_bindir}/lzmore
|
||
%{_bindir}/unlzma
|
||
%{_bindir}/unxz
|
||
%{_bindir}/xz
|
||
%{_bindir}/xzcat
|
||
%{_bindir}/xzcmp
|
||
%{_bindir}/xzdec
|
||
%{_bindir}/xzdiff
|
||
%{_bindir}/xzegrep
|
||
%{_bindir}/xzfgrep
|
||
%{_bindir}/xzgrep
|
||
%{_bindir}/xzless
|
||
%{_bindir}/xzmore
|
||
%{_bindir}/xznew
|
||
%{_mandir}/man1/lzcat.1%{ext_man}
|
||
%{_mandir}/man1/lzcmp.1%{ext_man}
|
||
%{_mandir}/man1/lzdiff.1%{ext_man}
|
||
%{_mandir}/man1/lzegrep.1%{ext_man}
|
||
%{_mandir}/man1/lzfgrep.1%{ext_man}
|
||
%{_mandir}/man1/lzgrep.1%{ext_man}
|
||
%{_mandir}/man1/lzless.1%{ext_man}
|
||
%{_mandir}/man1/lzma.1%{ext_man}
|
||
%{_mandir}/man1/lzmadec.1%{ext_man}
|
||
%{_mandir}/man1/lzmainfo.1%{ext_man}
|
||
%{_mandir}/man1/lzmore.1%{ext_man}
|
||
%{_mandir}/man1/unlzma.1%{ext_man}
|
||
%{_mandir}/man1/unxz.1%{ext_man}
|
||
%{_mandir}/man1/xz.1%{ext_man}
|
||
%{_mandir}/man1/xzcat.1%{ext_man}
|
||
%{_mandir}/man1/xzcmp.1%{ext_man}
|
||
%{_mandir}/man1/xzdec.1%{ext_man}
|
||
%{_mandir}/man1/xzdiff.1%{ext_man}
|
||
%{_mandir}/man1/xzegrep.1%{ext_man}
|
||
%{_mandir}/man1/xzfgrep.1%{ext_man}
|
||
%{_mandir}/man1/xzgrep.1%{ext_man}
|
||
%{_mandir}/man1/xzless.1%{ext_man}
|
||
%{_mandir}/man1/xzmore.1%{ext_man}
|
||
%{_mandir}/man1/xznew.1%{ext_man}
|
||
%if 0%{!?lang_package:1}
|
||
%{_datadir}/locale/*/LC_MESSAGES/xz.mo
|
||
%endif
|
||
|
||
%files -n liblzma5
|
||
%defattr(-, root, root)
|
||
%{_libdir}/liblzma.so.5*
|
||
|
||
%files devel
|
||
%defattr(-, root, root)
|
||
%{_includedir}/lzma.h
|
||
%dir %{_includedir}/lzma/
|
||
%{_includedir}/lzma/*
|
||
%{_libdir}/liblzma.so
|
||
%{_libdir}/pkgconfig/liblzma.pc
|
||
|
||
%files static-devel
|
||
%defattr(-, root, root)
|
||
%{_libdir}/liblzma.a
|
||
|
||
%changelog
|