Accepting request 333516 from home:jengelh:branches:devel:libraries:c_c++
- Trim descriptions to fit target audience. Update RPM group classification. OBS-URL: https://build.opensuse.org/request/show/333516 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/zlib?expand=0&rev=31
This commit is contained in:
parent
b842c514a4
commit
8fe85a2bcf
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 24 20:21:46 UTC 2015 - jengelh@inai.de
|
||||||
|
|
||||||
|
- Trim descriptions to fit target audience. Update RPM group
|
||||||
|
classification.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 13 11:58:44 UTC 2015 - tchvatal@suse.com
|
Mon Jul 13 11:58:44 UTC 2015 - tchvatal@suse.com
|
||||||
|
|
||||||
|
59
zlib.spec
59
zlib.spec
@ -20,9 +20,9 @@
|
|||||||
Name: zlib
|
Name: zlib
|
||||||
Version: 1.2.8
|
Version: 1.2.8
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Data Compression Library
|
Summary: Library implementing the DEFLATE compression algorithm
|
||||||
License: Zlib
|
License: Zlib
|
||||||
Group: System/Libraries
|
Group: Development/Libraries/C and C++
|
||||||
Url: http://www.zlib.net/
|
Url: http://www.zlib.net/
|
||||||
Source0: http://zlib.net/zlib-%{version}.tar.gz
|
Source0: http://zlib.net/zlib-%{version}.tar.gz
|
||||||
Source1: LICENSE
|
Source1: LICENSE
|
||||||
@ -39,50 +39,59 @@ BuildRequires: pkgconfig
|
|||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
zlib is designed to be a free, general-purpose, legally unencumbered -- that
|
zlib is a general-purpose lossless data-compression library,
|
||||||
is, not covered by any patents -- lossless data-compression library for use on
|
implementing an API for the DEFLATE algorithm, the latter of
|
||||||
virtually any computer hardware and operating system. the zlib data format is
|
which is being used by, for example, gzip and the ZIP archive
|
||||||
itself portable across platforms. unlike the lzw compression method used in
|
format.
|
||||||
unix compress(1) and in the gif image format, the compression method currently
|
|
||||||
used in zlib essentially never expands the data. (lzw can double or triple the
|
|
||||||
file size in extreme cases.) zlib's memory footprint is also independent of the
|
|
||||||
input data and can be reduced, if necessary, at some cost in compression.
|
|
||||||
|
|
||||||
%package -n libz1
|
%package -n libz1
|
||||||
Summary: Include Files and Libraries mandatory for Development
|
Summary: Library implementing the DEFLATE compression algorithm
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Provides: %{name} = %{version}-%{release}
|
Provides: %{name} = %{version}-%{release}
|
||||||
Obsoletes: %{name} < %{version}-%{release}
|
Obsoletes: %{name} < %{version}-%{release}
|
||||||
|
|
||||||
%description -n libz1
|
%description -n libz1
|
||||||
zlib is designed to be a free, general-purpose, legally unencumbered -- that
|
zlib is a general-purpose lossless data-compression library,
|
||||||
is, not covered by any patents -- lossless data-compression library for use on
|
implementing an API for the DEFLATE algorithm, the latter of
|
||||||
virtually any computer hardware and operating system. the zlib data format is
|
which is being used by, for example, gzip and the ZIP archive
|
||||||
itself portable across platforms. unlike the lzw compression method used in
|
format.
|
||||||
unix compress(1) and in the gif image format, the compression method currently
|
|
||||||
used in zlib essentially never expands the data. (lzw can double or triple the
|
|
||||||
file size in extreme cases.) zlib's memory footprint is also independent of the
|
|
||||||
input data and can be reduced, if necessary, at some cost in compression.
|
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Include Files and Libraries mandatory for Development
|
Summary: Development files for zlib, a data compression library
|
||||||
Group: Development/Languages/C and C++
|
Group: Development/Languages/C and C++
|
||||||
Requires: glibc-devel
|
Requires: glibc-devel
|
||||||
Requires: libz1 = %{version}
|
Requires: libz1 = %{version}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
This package contains all necessary include files and libraries needed
|
zlib is a general-purpose lossless data-compression library,
|
||||||
to develop applications that require the provided includes and
|
implementing an API for the DEFLATE algorithm, the latter of
|
||||||
libraries.
|
which is being used by, for example, gzip and the ZIP archive
|
||||||
|
format.
|
||||||
|
|
||||||
|
This subpackage holds the development headers for the library.
|
||||||
|
|
||||||
|
The zlib data format is itself portable across platforms. Unlike the
|
||||||
|
LZW compression method used in unix compress(1) and in the GIF image
|
||||||
|
format, the compression method currently used in zlib essentially
|
||||||
|
never expands the data. (LZW can double or triple the file size in
|
||||||
|
extreme cases.) zlib's memory footprint is also independent of the
|
||||||
|
input data and can be reduced, if necessary, at some cost in
|
||||||
|
compression.
|
||||||
|
|
||||||
%package devel-static
|
%package devel-static
|
||||||
Summary: Static lib for libz1 library
|
Summary: Static library for zlib
|
||||||
Group: Development/Languages/C and C++
|
Group: Development/Languages/C and C++
|
||||||
Requires: %{name}-devel = %{version}
|
Requires: %{name}-devel = %{version}
|
||||||
Provides: %{name}-devel:%{_libdir}/libz.a
|
Provides: %{name}-devel:%{_libdir}/libz.a
|
||||||
|
|
||||||
%description devel-static
|
%description devel-static
|
||||||
Static library for libz1 package, that is complementing the devel package
|
zlib is a general-purpose lossless data-compression library,
|
||||||
|
implementing an API for the DEFLATE algorithm, the latter of
|
||||||
|
which is being used by, for example, gzip and the ZIP archive
|
||||||
|
format.
|
||||||
|
|
||||||
|
This subpackage contains the static version of the library
|
||||||
|
used for development.
|
||||||
|
|
||||||
%package -n libminizip1
|
%package -n libminizip1
|
||||||
Summary: Library for manipulation with .zip archives
|
Summary: Library for manipulation with .zip archives
|
||||||
|
Loading…
Reference in New Issue
Block a user