merge from Archiving/xz
OBS-URL: https://build.opensuse.org/package/show/Base:System/xz?expand=0&rev=57
This commit is contained in:
parent
9de9351b28
commit
9daea59c7a
@ -1,4 +0,0 @@
|
|||||||
liblzma5
|
|
||||||
xz-devel
|
|
||||||
requires -xz-<targettype>
|
|
||||||
requires "liblzma5-<targettype> = <version>"
|
|
113
project.diff
Normal file
113
project.diff
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
--- xz.changes.orig
|
||||||
|
+++ xz.changes
|
||||||
|
@@ -1,4 +1,11 @@
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
+Sun Nov 24 16:25:53 UTC 2013 - andreas.stieger@gmx.de
|
||||||
|
+
|
||||||
|
+- verify source signature
|
||||||
|
+- add optional -static library package, intended to publish pixz for
|
||||||
|
+ CentOS / RHEL, default off
|
||||||
|
+
|
||||||
|
+-------------------------------------------------------------------
|
||||||
|
Tue Jul 16 13:52:16 UTC 2013 - idonmez@suse.com
|
||||||
|
|
||||||
|
- Update to version 5.0.5
|
||||||
|
@@ -55,6 +62,11 @@ Fri Jul 6 10:18:06 UTC 2012 - sweet_f_a
|
||||||
|
- correct license "LGPL-2.1+ and GPL-2.0+" (bnc#770195)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
+Mon May 7 08:30:57 UTC 2012 - werner@suse.de
|
||||||
|
+
|
||||||
|
+- Enforce usage of reentrant versions of libc functions
|
||||||
|
+
|
||||||
|
+-------------------------------------------------------------------
|
||||||
|
Sun Feb 12 23:37:44 UTC 2012 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
|
- Put libraries back in %{_libdir}, /usr merge project.
|
||||||
|
--- xz.spec.orig
|
||||||
|
+++ xz.spec
|
||||||
|
@@ -16,15 +16,25 @@
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
+%if 0%{?centos_version} || 0%{?rhel_version}
|
||||||
|
+%if 0%{?centos_version} <= 600 || 0%{?rhel_version <= 600}
|
||||||
|
+%bcond_without static_libs
|
||||||
|
+%endif
|
||||||
|
+%else
|
||||||
|
+%bcond_with static_libs
|
||||||
|
+%endif
|
||||||
|
+
|
||||||
|
Name: xz
|
||||||
|
Summary: A Program for Compressing Files
|
||||||
|
License: LGPL-2.1+ and GPL-2.0+
|
||||||
|
Group: Productivity/Archiving/Compression
|
||||||
|
Version: 5.0.5
|
||||||
|
Release: 0
|
||||||
|
-Url: http://tukaani.org/lzma/
|
||||||
|
-Source: http://tukaani.org/xz/%{name}-%{version}.tar.xz
|
||||||
|
+Url: http://tukaani.org/xz/
|
||||||
|
+Source: http://tukaani.org/xz/%{name}-%{version}.tar.bz2
|
||||||
|
Source2: baselibs.conf
|
||||||
|
+Source3: http://tukaani.org/xz/%{name}-%{version}.tar.bz2.sig
|
||||||
|
+Source4: http://tukaani.org/misc/lasse_collin_pubkey.txt#/xz.keyring
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
BuildRequires: pkgconfig
|
||||||
|
Provides: lzma = %version
|
||||||
|
@@ -83,22 +93,43 @@ Obsoletes: lzma-alpha-devel < %vers
|
||||||
|
This package contains the header files and libraries needed for
|
||||||
|
compiling programs using the LZMA library.
|
||||||
|
|
||||||
|
+%if %{with static_libs}
|
||||||
|
+%package static
|
||||||
|
+Summary: Static version of LZMA library
|
||||||
|
+Group: Development/Libraries/C and C++
|
||||||
|
+Requires: lzma-devel = %version
|
||||||
|
+
|
||||||
|
+%description static
|
||||||
|
+Static library for the LZMA library
|
||||||
|
+%endif
|
||||||
|
+
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
+%global optflags %{optflags} -D_REENTRANT -pipe
|
||||||
|
%if %{do_profiling}
|
||||||
|
profiledir=$(mktemp -d)
|
||||||
|
trap "rm -rf $profiledir" EXIT
|
||||||
|
export CFLAGS="%optflags %{cflags_profile_generate}=$profiledir"
|
||||||
|
%endif
|
||||||
|
-%configure --disable-static --with-pic --docdir=%_docdir/%name
|
||||||
|
+%configure \
|
||||||
|
+%if ! %{with static_libs}
|
||||||
|
+ --disable-static \
|
||||||
|
+%endif
|
||||||
|
+ --with-pic \
|
||||||
|
+ --docdir=%_docdir/%name
|
||||||
|
make %{?_smp_mflags}
|
||||||
|
%if %{do_profiling}
|
||||||
|
time make check
|
||||||
|
make clean
|
||||||
|
export CFLAGS="%optflags %{cflags_profile_feedback}=$profiledir"
|
||||||
|
-%configure --disable-static --with-pic --docdir=%_docdir/%name
|
||||||
|
+%configure \
|
||||||
|
+%if ! %{with static_libs}
|
||||||
|
+ --disable-static \
|
||||||
|
+%endif
|
||||||
|
+ --with-pic \
|
||||||
|
+ --docdir=%_docdir/%name
|
||||||
|
make %{?_smp_mflags}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
@@ -139,4 +170,10 @@ make install DESTDIR=$RPM_BUILD_ROOT
|
||||||
|
%{_libdir}/lib*.so
|
||||||
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
|
||||||
|
+%if %{with static_libs}
|
||||||
|
+%files static
|
||||||
|
+%defattr(-, root, root)
|
||||||
|
+%{_libdir}/*.a
|
||||||
|
+%endif
|
||||||
|
+
|
||||||
|
%changelog
|
3
xz-5.0.5.tar.bz2
Normal file
3
xz-5.0.5.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:166c48d2842519bc4f96333bff9e265f8cdda44d38e40594ef3f9bbb52890490
|
||||||
|
size 1060649
|
BIN
xz-5.0.5.tar.bz2.sig
Normal file
BIN
xz-5.0.5.tar.bz2.sig
Normal file
Binary file not shown.
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:5dcffe6a3726d23d1711a65288de2e215b4960da5092248ce63c99d50093b93a
|
|
||||||
size 1305685
|
|
Binary file not shown.
367
xz.changes
367
xz.changes
@ -1,367 +0,0 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 16 08:53:16 UTC 2013 - mvyskocil@suse.com
|
|
||||||
|
|
||||||
- Use gzipped archive to prevent a build cycle on older targets
|
|
||||||
* http://lists.opensuse.org/opensuse-buildservice/2013-10/msg00079.html
|
|
||||||
- Add a signature and keyring file for source verification
|
|
||||||
* not enable in spec due bootstrapping issues
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Jul 16 13:52:16 UTC 2013 - idonmez@suse.com
|
|
||||||
|
|
||||||
- Update to version 5.0.5
|
|
||||||
* lzmadec and liblzma's lzma_alone_decoder(): Support decompressing
|
|
||||||
.lzma files that have less common settings in the headers
|
|
||||||
(dictionary size other than 2^n or 2^n + 2^(n-1), or uncompressed
|
|
||||||
size greater than 256 GiB).
|
|
||||||
* xz:
|
|
||||||
- Fixes and improvements to error handling.
|
|
||||||
- Various fixes to the man page.
|
|
||||||
* xzless: Fixed to work with "less" versions 448 and later
|
|
||||||
* xzgrep: Made -h an alias for --no-filename.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Jan 29 17:28:51 UTC 2013 - guillaume@opensuse.org
|
|
||||||
|
|
||||||
- Disable profiling for aarch64 arch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Nov 27 11:10:13 UTC 2012 - sweet_f_a@gmx.de
|
|
||||||
|
|
||||||
- Update to version 5.0.4
|
|
||||||
* liblzma:
|
|
||||||
- Fix lzma_index_init(). It could crash if memory allocation
|
|
||||||
failed.
|
|
||||||
- Fix the possibility of an incorrect LZMA_BUF_ERROR when a BCJ
|
|
||||||
filter is used and the application only provides exactly as
|
|
||||||
much output space as is the uncompressed size of the file.
|
|
||||||
- Fix a bug in doc/examples_old/xz_pipe_decompress.c. It didn't
|
|
||||||
check if the last call to lzma_code() really returned
|
|
||||||
LZMA_STREAM_END, which made the program think that truncated
|
|
||||||
files are valid.
|
|
||||||
- New example programs in doc/examples (old programs are now in
|
|
||||||
doc/examples_old). These have more comments and more detailed
|
|
||||||
error handling.
|
|
||||||
* Fix "xz -lvv foo.xz". It could crash on some corrupted files.
|
|
||||||
* Fix output of "xz --robot -lv" and "xz --robot -lvv" which
|
|
||||||
incorrectly printed the filename also in the "foo (x/x)" format.
|
|
||||||
* Fix exit status of "xzdiff foo.xz bar.xz".
|
|
||||||
* Fix exit status of "xzgrep foo binary_file".
|
|
||||||
* Fix portability to EBCDIC systems.
|
|
||||||
* Fix a configure issue on AIX with the XL C compiler. See INSTALL
|
|
||||||
for details.
|
|
||||||
* Update French, German, Italian, and Polish translations
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Jul 29 17:52:57 UTC 2012 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Disable profiling on SPARC due to compiler bug [gcc #54121]
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Fri Jul 6 10:18:06 UTC 2012 - sweet_f_a@gmx.de
|
|
||||||
|
|
||||||
- correct license "LGPL-2.1+ and GPL-2.0+" (bnc#770195)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Feb 12 23:37:44 UTC 2012 - crrodriguez@opensuse.org
|
|
||||||
|
|
||||||
- Put libraries back in %{_libdir}, /usr merge project.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Oct 9 15:25:02 UTC 2011 - sweet_f_a@gmx.de
|
|
||||||
|
|
||||||
- rewrite last broken arm portability changes
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Fri Sep 30 20:31:59 UTC 2011 - crrodriguez@opensuse.org
|
|
||||||
|
|
||||||
- Fix build in armv5el doesnt like profiling
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Sep 27 13:05:34 UTC 2011 - sweet_f_a@gmx.de
|
|
||||||
|
|
||||||
- minor fixes of last portability changes:
|
|
||||||
* decouple do_profiling and lang_package again
|
|
||||||
* don't define do_factory, just use lang_package instead
|
|
||||||
* simplify files section
|
|
||||||
* do_profiling for some more systems
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Mon Sep 26 15:59:51 UTC 2011 - coolo@suse.com
|
|
||||||
|
|
||||||
- build on SLE_10
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sat Sep 17 15:19:50 UTC 2011 - coolo@suse.com
|
|
||||||
|
|
||||||
- remove _service, too fragile
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Fri Sep 16 16:37:32 UTC 2011 - jengelh@medozas.de
|
|
||||||
|
|
||||||
- Add xz-devel to baselibs
|
|
||||||
- Remove redundant sections
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Jun 14 18:04:53 CEST 2011 - dmueller@suse.de
|
|
||||||
|
|
||||||
- add recommends xz-lang
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Jun 8 19:25:51 UTC 2011 - coolo@novell.com
|
|
||||||
|
|
||||||
- Update to version 5.0.3
|
|
||||||
* liblzma fixes:
|
|
||||||
|
|
||||||
- A memory leak was fixed.
|
|
||||||
|
|
||||||
- lzma_stream_buffer_encode() no longer creates an empty .xz
|
|
||||||
Block if encoding an empty buffer. Such an empty Block with
|
|
||||||
LZMA2 data would trigger a bug in 5.0.1 and older (see the
|
|
||||||
first bullet point in 5.0.2 notes). When releasing 5.0.2,
|
|
||||||
I thought that no encoder creates this kind of files but
|
|
||||||
I was wrong.
|
|
||||||
|
|
||||||
- Validate function arguments better in a few functions. Most
|
|
||||||
importantly, specifying an unsupported integrity check to
|
|
||||||
lzma_stream_buffer_encode() no longer creates a corrupt .xz
|
|
||||||
file. Probably no application tries to do that, so this
|
|
||||||
shouldn't be a big problem in practice.
|
|
||||||
|
|
||||||
- Document that lzma_block_buffer_encode(),
|
|
||||||
lzma_easy_buffer_encode(), lzma_stream_encoder(), and
|
|
||||||
lzma_stream_buffer_encode() may return LZMA_UNSUPPORTED_CHECK.
|
|
||||||
|
|
||||||
- The return values of the _memusage() functions are now
|
|
||||||
documented better.
|
|
||||||
|
|
||||||
* Fix command name detection in xzgrep. xzegrep and xzfgrep now
|
|
||||||
correctly use egrep and fgrep instead of grep.
|
|
||||||
|
|
||||||
* French translation was added.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Thu Apr 7 20:43:05 UTC 2011 - crrodriguez@opensuse.org
|
|
||||||
|
|
||||||
- Update to version 5.0.2
|
|
||||||
* LZMA2 decompressor now correctly accepts LZMA2 streams with no
|
|
||||||
uncompressed data. Previously it considered them corrupt. The
|
|
||||||
bug can affect applications that use raw LZMA2 streams. It is
|
|
||||||
very unlikely to affect .xz files because no compressor creates
|
|
||||||
.xz files with empty LZMA2 streams. (Empty .xz files are a
|
|
||||||
different thing than empty LZMA2 streams.)
|
|
||||||
|
|
||||||
* "xz --suffix=.foo filename.foo" now refuses to compress the
|
|
||||||
file due to it already having the suffix .foo. It was already
|
|
||||||
documented on the man page, but the code lacked the test.
|
|
||||||
|
|
||||||
* "xzgrep -l foo bar.xz" works now.
|
|
||||||
|
|
||||||
* Polish translation was added.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Fri Mar 4 17:54:21 UTC 2011 - crrodriguez@opensuse.org
|
|
||||||
|
|
||||||
- Update to version 5.0.1
|
|
||||||
* Fix --force on setuid/setgid/sticky and multi-hardlink files.
|
|
||||||
* Add alloc_size and malloc attributes to a few functions.
|
|
||||||
* Fix gzip and bzip2 support in xzdiff
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Dec 7 18:47:04 UTC 2010 - cristian.rodriguez@opensuse.org
|
|
||||||
|
|
||||||
- Use compiler profile information, makes xz marginally faster
|
|
||||||
(around 1-2 secs)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sat Oct 30 20:17:49 UTC 2010 - jengelh@medozas.de
|
|
||||||
|
|
||||||
- Use %_smp_mflags
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Thu Oct 28 09:18:47 UTC 2010 - coolo@novell.com
|
|
||||||
|
|
||||||
- adapt baselibs.conf
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 27 00:28:26 UTC 2010 - cristian.rodriguez@opensuse.org
|
|
||||||
|
|
||||||
- Update to 5.0.0 final
|
|
||||||
* The major soname has been bumped to 5.0.0. liblzma API and ABI
|
|
||||||
are now stable.
|
|
||||||
* The memory usage limit is now disabled by default
|
|
||||||
* Added support for XZ_DEFAULTS environment variable
|
|
||||||
* The compression settings associated with the preset levels
|
|
||||||
have been changed,they are now less likely to make compression worse.
|
|
||||||
* Support for "xz --list" was added
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sat Apr 24 11:38:25 UTC 2010 - coolo@novell.com
|
|
||||||
|
|
||||||
- buildrequire pkg-config to fix provides
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sat Dec 12 18:40:53 CET 2009 - jengelh@medozas.de
|
|
||||||
|
|
||||||
- add baselibs.conf as a source
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Fri Sep 4 11:53:41 CEST 2009 - coolo@novell.com
|
|
||||||
|
|
||||||
- update to 4.999.9beta
|
|
||||||
* only some polishment above the git snapshot I took
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Aug 23 14:50:09 CEST 2009 - coolo@novell.com
|
|
||||||
|
|
||||||
- borrow %check section from fedora spec
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Thu Aug 20 15:51:47 CEST 2009 - coolo@novell.com
|
|
||||||
|
|
||||||
- update to latest git (5.0 still not released)
|
|
||||||
* a xz man page (bnc#505969)
|
|
||||||
* fix data corruption in LZ/LZMA2 encoder.
|
|
||||||
* major documentation update
|
|
||||||
* install lzdiff, lzgrep, and lzmore as symlinks
|
|
||||||
* make the default memory usage limit 40 % of RAM for both
|
|
||||||
compressing and decompressing.
|
|
||||||
* fixed a crash in liblzma
|
|
||||||
See git://ctrl.tukaani.org/xz.git for more
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Jun 7 19:39:45 CEST 2009 - crrodriguez@suse.de
|
|
||||||
|
|
||||||
- remove static libraries, see bnc#509945 for details
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Feb 22 18:37:26 CET 2009 - ro@suse.de
|
|
||||||
|
|
||||||
- added baselibs.conf (for rpm-32bit)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 16 10:59:51 CET 2009 - coolo@suse.de
|
|
||||||
|
|
||||||
- use bzip payload, so users are able to install new rpm on old systems
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Feb 11 12:44:41 CET 2009 - coolo@suse.de
|
|
||||||
|
|
||||||
- fix devel symlink
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Fri Feb 6 13:50:53 CET 2009 - schwab@suse.de
|
|
||||||
|
|
||||||
- Update to xz-4.999.8beta.
|
|
||||||
See git://ctrl.tukaani.org/lzma-utils.git.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Jan 7 10:26:30 CET 2009 - schwab@suse.de
|
|
||||||
|
|
||||||
- Update to xz-4.999.7beta.
|
|
||||||
See git://ctrl.tukaani.org/lzma-utils.git.
|
|
||||||
- Rename to xz.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Jul 30 13:53:18 CEST 2008 - schwab@suse.de
|
|
||||||
|
|
||||||
- Update to lzma-4.32.7.
|
|
||||||
* If "lzma -t" is run on a corrupt file or interrupted by a signal,
|
|
||||||
don't unlink /dev/null.
|
|
||||||
|
|
||||||
* Partial fix to race conditions where a signal could make lzma to
|
|
||||||
unlink both the source and destination files. Now it cannot lose
|
|
||||||
data anymore, but with bad luck an incomplete file may be left
|
|
||||||
on the disk.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed May 14 22:04:25 CEST 2008 - schwab@suse.de
|
|
||||||
|
|
||||||
- Update to lzma-4.32.6.
|
|
||||||
* Always use 32-bit integer to hold probability variables. Earlier,
|
|
||||||
these were 64-bit on 64-bit architectures, which hurt cache
|
|
||||||
efficiency in the CPU, and thus performance of LZMA. 32-bit
|
|
||||||
architectures are not affected by this change.
|
|
||||||
* Fix a theoretical data corruption bug in the LZMA encoder. It is
|
|
||||||
about overflowing a 32-bit integer, whose typical value stays below
|
|
||||||
five. I don't know if it is actually possible to construct to a file
|
|
||||||
that could make it overflow. Even if it were possible, it would "only"
|
|
||||||
make the output file corrupt so that it is 4 GiB too small; there
|
|
||||||
are no other security risks. Now the integer is 64-bit to be sure
|
|
||||||
it won't overflow.
|
|
||||||
* Add support for copying timestamps on operating systems that support
|
|
||||||
setting timestamps only by filename, not by file descriptor.
|
|
||||||
* Several portability fixes were made.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Fri May 9 11:51:42 CEST 2008 - schwab@suse.de
|
|
||||||
|
|
||||||
- Revert last changes.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue May 6 22:36:09 CEST 2008 - bk@suse.de
|
|
||||||
|
|
||||||
- ci removed #neededforbuild while mbuild converts to BuildRequires
|
|
||||||
- bzip2 source to save space (not lzma, so it can be built in <11.0)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue May 6 14:24:02 CEST 2008 - bk@suse.de
|
|
||||||
|
|
||||||
- run the package-provided self-test by adding a call to 'make check'
|
|
||||||
- use %configure instead of equivalent configure call with options
|
|
||||||
- improved to allow building in SLES and non-SUSE repositories, eg:
|
|
||||||
- replace obsolete nostatic patch with check for static objects
|
|
||||||
- use more generic wildcards in the file list for manual pages
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 4 19:20:31 CET 2008 - schwab@suse.de
|
|
||||||
|
|
||||||
- Fix installation.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 4 13:32:06 CET 2008 - schwab@suse.de
|
|
||||||
|
|
||||||
- Update to lzma-4.32.5.
|
|
||||||
* The percentage shown when --verbose is used, works again. Also some
|
|
||||||
typos were fixed from the messages printed by --verbose.
|
|
||||||
* Several small portability fixes were made.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Fri Jan 4 07:12:26 CET 2008 - crrodriguez@suse.de
|
|
||||||
|
|
||||||
- Version 4.32.4
|
|
||||||
* Ignore command line switch --format=alone. This way current scripts
|
|
||||||
can be written so that they will produce LZMA_Alone format files
|
|
||||||
even with the new command line tool once it is finishes along with
|
|
||||||
liblzma.
|
|
||||||
* The command line tool now tells if the user tries to decode files
|
|
||||||
in the new .lzma format. The message recommends upgrading to newer
|
|
||||||
LZMA Utils.
|
|
||||||
* Added some internal consistency checks to liblzmadec, so that it
|
|
||||||
doesn't crash if given lzmadec_stream whose initialization failed.
|
|
||||||
Some applications using zlib and libbzip2 don't check if
|
|
||||||
initialization was successful, and expect that error gets caught
|
|
||||||
safely later.
|
|
||||||
- disable static libraries
|
|
||||||
- remove liblzmadec.la that has empty dependency_libs
|
|
||||||
- do not link utils statically
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Mon Dec 3 14:12:12 CET 2007 - dmueller@suse.de
|
|
||||||
|
|
||||||
- update to 4.32.3:
|
|
||||||
* rare file content loss bugs fixed (did not check for error upon close())
|
|
||||||
* permissions copying fixed
|
|
||||||
- testsuited switched partially to GPLv3
|
|
||||||
- fix library package name
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Thu Oct 11 14:52:41 CEST 2007 - schwab@suse.de
|
|
||||||
|
|
||||||
- Fix missing include.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 10 14:56:31 CEST 2007 - schwab@suse.de
|
|
||||||
|
|
||||||
- Initial version 4.32.0beta5.
|
|
||||||
|
|
@ -1,9 +1,5 @@
|
|||||||
pub 4096R/69184620 2010-10-24
|
|
||||||
uid Lasse Collin <lasse.collin@tukaani.org>
|
|
||||||
sub 4096R/58ADF744 2010-10-24
|
|
||||||
|
|
||||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
Version: GnuPG v2.0.22 (GNU/Linux)
|
Version: GnuPG v2.0.16 (GNU/Linux)
|
||||||
|
|
||||||
mQINBEzEOZIBEACxg/IuXERlDB48JBWmF4NxNUuuup1IhJAJyFGFSKh3OGAO2Ard
|
mQINBEzEOZIBEACxg/IuXERlDB48JBWmF4NxNUuuup1IhJAJyFGFSKh3OGAO2Ard
|
||||||
sNuRLjANsFXA7m7P5eTFcG+BoHHuAVYmKnI3PPZtHVLnUt4pGItPczQZ2BE1WpcI
|
sNuRLjANsFXA7m7P5eTFcG+BoHHuAVYmKnI3PPZtHVLnUt4pGItPczQZ2BE1WpcI
|
||||||
|
146
xz.spec
146
xz.spec
@ -1,146 +0,0 @@
|
|||||||
#
|
|
||||||
# spec file for package xz
|
|
||||||
#
|
|
||||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
||||||
#
|
|
||||||
# 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 http://bugs.opensuse.org/
|
|
||||||
#
|
|
||||||
|
|
||||||
|
|
||||||
Name: xz
|
|
||||||
Summary: A Program for Compressing Files
|
|
||||||
License: LGPL-2.1+ and GPL-2.0+
|
|
||||||
Group: Productivity/Archiving/Compression
|
|
||||||
Version: 5.0.5
|
|
||||||
Release: 0
|
|
||||||
Url: http://tukaani.org/lzma/
|
|
||||||
Source0: http://tukaani.org/xz/%{name}-%{version}.tar.gz
|
|
||||||
Source1: http://tukaani.org/xz/%{name}-%{version}.tar.gz.sig
|
|
||||||
Source2: baselibs.conf
|
|
||||||
Source3: xz.keyring
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildRequires: pkgconfig
|
|
||||||
Provides: lzma = %version
|
|
||||||
Obsoletes: lzma < %version
|
|
||||||
|
|
||||||
%if 0%{?suse_version} < 1130
|
|
||||||
%define do_profiling 0
|
|
||||||
%endif
|
|
||||||
%ifarch aarch64 %{arm} %sparc
|
|
||||||
%define do_profiling 0
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?lang_package:1} > 0
|
|
||||||
Recommends: %name-lang
|
|
||||||
%endif
|
|
||||||
# avoid bootstrapping problem
|
|
||||||
%define _binary_payload w9.bzdio
|
|
||||||
|
|
||||||
%description
|
|
||||||
The xz command is a very powerful 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 doesn't affect
|
|
||||||
decompressing speed.
|
|
||||||
|
|
||||||
* Very similar command line interface to what gzip and bzip2 have.
|
|
||||||
|
|
||||||
%{?lang_package}
|
|
||||||
|
|
||||||
%package -n liblzma5
|
|
||||||
Summary: LZMA library
|
|
||||||
Group: System/Libraries
|
|
||||||
|
|
||||||
%description -n liblzma5
|
|
||||||
Library for encoding/decoding LZMA files.
|
|
||||||
|
|
||||||
%package devel
|
|
||||||
Summary: Development package for the LZMA library
|
|
||||||
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.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%setup -q
|
|
||||||
|
|
||||||
%build
|
|
||||||
%if %{do_profiling}
|
|
||||||
profiledir=$(mktemp -d)
|
|
||||||
trap "rm -rf $profiledir" EXIT
|
|
||||||
export CFLAGS="%optflags %{cflags_profile_generate}=$profiledir"
|
|
||||||
%endif
|
|
||||||
%configure --disable-static --with-pic --docdir=%_docdir/%name
|
|
||||||
make %{?_smp_mflags}
|
|
||||||
%if %{do_profiling}
|
|
||||||
time make check
|
|
||||||
make clean
|
|
||||||
export CFLAGS="%optflags %{cflags_profile_feedback}=$profiledir"
|
|
||||||
%configure --disable-static --with-pic --docdir=%_docdir/%name
|
|
||||||
make %{?_smp_mflags}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%check
|
|
||||||
time make check
|
|
||||||
|
|
||||||
%install
|
|
||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
|
||||||
%{__rm} -v %{buildroot}%{_libdir}/liblzma.la
|
|
||||||
%find_lang %{name}
|
|
||||||
|
|
||||||
%post -n liblzma5 -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%postun -n liblzma5 -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%if 0%{?lang_package:1} > 0
|
|
||||||
|
|
||||||
%files lang -f %{name}.lang
|
|
||||||
%defattr(-, root, root)
|
|
||||||
|
|
||||||
%files
|
|
||||||
%else
|
|
||||||
|
|
||||||
%files -f %{name}.lang
|
|
||||||
%defattr(-, root, root)
|
|
||||||
%endif
|
|
||||||
%defattr(-, root, root)
|
|
||||||
%_docdir/%name
|
|
||||||
%{_bindir}/*
|
|
||||||
%{_mandir}/man?/*
|
|
||||||
|
|
||||||
%files -n liblzma5
|
|
||||||
%defattr(-, root, root)
|
|
||||||
%{_libdir}/lib*.so.5*
|
|
||||||
|
|
||||||
%files devel
|
|
||||||
%defattr(-, root, root)
|
|
||||||
%{_includedir}/*.h
|
|
||||||
%{_includedir}/lzma
|
|
||||||
%{_libdir}/lib*.so
|
|
||||||
%{_libdir}/pkgconfig/*.pc
|
|
||||||
|
|
||||||
%changelog
|
|
Loading…
Reference in New Issue
Block a user