SHA256
1
0
forked from pool/lzlib

Accepting request 864600 from home:dirkmueller:branches:Archiving

- Update to 1.12:
  * see included NEWS
  * The value of the version test macro 'LZ_API_VERSION' is now defined as
  1000 * major + minor. For version 1.12 it is 1012.
  * The new function 'LZ_api_version', which returns the LZ_API_VERSION of the
  library object code being used, has been added to lzlib.
  * Decompression speed has been slightly increased.
  * The new option '--check-lib', which compares the version of lzlib used to
  compile minilzip with the version actually being used, has been added to
  minilzip.
  * Minilzip now reports an error if a file name is empty (minilzip -t "").
  * Option '-o, --output' now behaves like '-c, --stdout', but sending the
  output unconditionally to a file instead of to standard output. See the new
  description of '-o' in the manual. This change is not backwards compatible.
  Therefore commands like:
    minilzip -o foo.lz - bar < foo
  must now be split into:
    minilzip -o foo.lz - < foo
    minilzip bar
  or rewritten as:
    minilzip - bar < foo > foo.lz
  * When using '-c' or '-o', minilzip now checks whether the output is a
  terminal only once.
  * The words 'decompressed' and 'compressed' have been replaced with the
  shorter 'out' and 'in' in the verbose output of minilzip when decompressing
  or testing.
  * It has been documented in the manual that 'LZ_(de)compress_close' and
  'LZ_(de)compress_errno' can be called with a null argument.
  * Bugfixes, documentation updates

OBS-URL: https://build.opensuse.org/request/show/864600
OBS-URL: https://build.opensuse.org/package/show/Archiving/lzlib?expand=0&rev=24
This commit is contained in:
Jan Engelhardt 2021-01-21 12:49:07 +00:00 committed by Git OBS Bridge
parent 36e9e5dd8a
commit c309c8d96f
4 changed files with 53 additions and 11 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6c5c5f8759d1ab7c4c3c53788ea2d9daad04aeddcf338226893f8ff134914d36
size 105873

3
lzlib-1.12.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8e5d84242eb52cf1dcc98e58bd9ba8ef1aefa501431abdd0273a22bf4ce337b1
size 128996

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Wed Jan 20 09:19:16 UTC 2021 - Dirk Müller <dmueller@suse.com>
- Update to 1.12:
* see included NEWS
* The value of the version test macro 'LZ_API_VERSION' is now defined as
1000 * major + minor. For version 1.12 it is 1012.
* The new function 'LZ_api_version', which returns the LZ_API_VERSION of the
library object code being used, has been added to lzlib.
* Decompression speed has been slightly increased.
* The new option '--check-lib', which compares the version of lzlib used to
compile minilzip with the version actually being used, has been added to
minilzip.
* Minilzip now reports an error if a file name is empty (minilzip -t "").
* Option '-o, --output' now behaves like '-c, --stdout', but sending the
output unconditionally to a file instead of to standard output. See the new
description of '-o' in the manual. This change is not backwards compatible.
Therefore commands like:
minilzip -o foo.lz - bar < foo
must now be split into:
minilzip -o foo.lz - < foo
minilzip bar
or rewritten as:
minilzip - bar < foo > foo.lz
* When using '-c' or '-o', minilzip now checks whether the output is a
terminal only once.
* The words 'decompressed' and 'compressed' have been replaced with the
shorter 'out' and 'in' in the verbose output of minilzip when decompressing
or testing.
* It has been documented in the manual that 'LZ_(de)compress_close' and
'LZ_(de)compress_errno' can be called with a null argument.
* Bugfixes, documentation updates
-------------------------------------------------------------------
Wed Feb 6 09:25:28 UTC 2019 - Jan Engelhardt <jengelh@inai.de>

View File

@ -1,7 +1,7 @@
#
# spec file for package lzlib
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2012 Pascal Bleser <pascal.bleser@opensuse.org>
#
# All modifications and additions to the file contributed by third parties
@ -17,16 +17,15 @@
#
Name: lzlib
Version: 1.11
Release: 0
%define lname liblz1
%define xversion 1.11
Name: lzlib
Version: 1.12
Release: 0
Summary: LZMA Compression and Decompression Library
License: BSD-2-Clause AND GPL-2.0-or-later
Group: Development/Libraries/C and C++
URL: https://www.nongnu.org/lzip/lzlib.html
Source: https://download.savannah.gnu.org/releases/lzip/lzlib/%name-%xversion.tar.gz
Source: https://download.savannah.gnu.org/releases/lzip/lzlib/%name-%version.tar.gz
#Source2: https://download.savannah.gnu.org/releases/lzip/lzlib/%name-%version.tar.gz.sig
Source3: %name.keyring
PreReq: %install_info_prereq
@ -64,7 +63,7 @@ This subpackage contains libraries and header files for developing
applications that want to make use of libcerror.
%prep
%autosetup -n %name-%xversion
%autosetup -n %name-%version
%build
# not autoconf!
@ -101,7 +100,8 @@ popd
%install_info_delete --info-dir="%_infodir" "%_infodir/%name.info%ext_info"
%files -n %lname
%doc AUTHORS ChangeLog COPYING NEWS README
%license COPYING
%doc AUTHORS ChangeLog NEWS README
%_libdir/liblz.so.*
%files devel