Tweak changelog format for new upstream versions
[xz/debian.git] / debian / control
blobcd35c0d5ea936fb7be49d7f92797a3febabf0f3a
1 Source: xz-utils
2 Section: utils
3 Priority: required
4 Maintainer: Jonathan Nieder <jrnieder@gmail.com>
5 Uploaders: Mohammed Adnène Trojette <adn+deb@diwi.org>
6 Build-Depends: debhelper (>= 7.4.10), perl,
7  autoconf (>= 2.64~), automake, libtool (>= 2.2),
8  gettext, autopoint | gettext (<< 0.18-1), autopoint | cvs
9 Build-Depends-Indep: doxygen
10 Build-Conflicts: automake1.4
11 Standards-Version: 3.9.0
12 Vcs-Browser: http://git.debian.org/?p=collab-maint/xz.git
13 Vcs-Git: git://git.debian.org/collab-maint/xz.git
14 Homepage: http://tukaani.org/xz/
16 Package: liblzma2
17 Section: libs
18 Architecture: any
19 Depends: ${shlibs:Depends}, ${misc:Depends}
20 Description: XZ-format compression library
21  XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
22  compression format, which provides memory-hungry but powerful
23  compression (often better than bzip2) and fast, easy decompression.
24  .
25  The native format of liblzma is XZ; it also supports raw (headerless)
26  streams and the older LZMA format used by lzma. (For 7-Zip's related
27  format, use the p7zip package instead.)
29 Package: xz-utils
30 Architecture: any
31 Depends: ${shlibs:Depends}, ${misc:Depends}
32 Suggests: xz-lzma
33 Breaks: xz-lzma (<< 4.999.9beta+20091004-1)
34 Replaces: xz-lzma (<< 4.999.9beta+20091004-1)
35 Description: XZ-format compression utilities
36  XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
37  compression format, which provides memory-hungry but powerful
38  compression (often better than bzip2) and fast, easy decompression.
39  .
40  This package provides the command line tools for working with XZ
41  compression, including xz, unxz, xzcat, xzgrep, and so on. They can
42  also handle the older LZMA format, and if invoked via appropriate
43  symlinks will emulate the behavior of the commands in the lzma
44  package.
45  .
46  The XZ format is similar to the older LZMA format but includes some
47  improvements for general use:
48  .
49   * 'file' magic for detecting XZ files;
50   * crc64 data integrity check;
51   * limited random-access reading support;
52   * improved support for multithreading (not used in xz-utils);
53   * support for flushing the encoder.
55 Package: xz-lzma
56 Architecture: all
57 Priority: extra
58 Depends: xz-utils, ${misc:Depends}
59 Conflicts: lzma
60 Breaks: lzip (<< 1.8~rc2)
61 Replaces: lzip (<< 1.8~rc2)
62 Provides: lzma
63 Description: XZ-format compression utilities - compatibility commands
64  XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
65  compression format, which provides memory-hungry but powerful
66  compression (often better than bzip2) and fast, easy decompression.
67  .
68  This package provides symbolic links allowing xz-utils to provide the
69  same interface for manipulating LZMA files as the lzma package. The
70  xz-utils package can handle LZMA files on its own; this package is
71  only necessary when using scripts or other programs that require the
72  older command names.
74 Package: xzdec
75 Priority: extra
76 Architecture: any
77 Depends: ${shlibs:Depends}, ${misc:Depends}
78 Suggests: xz-utils
79 Breaks: xz-lzma (<< 4.999.9beta+20091004-1)
80 Replaces: xz-lzma (<< 4.999.9beta+20091004-1)
81 Description: XZ-format compression utilities - tiny decompressors
82  XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
83  compression format, which provides memory-hungry but powerful
84  compression (often better than bzip2) and fast, easy decompression.
85  .
86  This package provides the xzdec and lzmadec utilities, which write
87  the decompressed version of a compressed file to standard output. The
88  binaries are very small, so they can be easily stored on small media
89  with some compressed files, and they are linked statically against
90  liblzma so they can be used on machines without a compatible version
91  of liblzma installed. However, they have:
92  .
93    * no compression support;
94    * no support for writing to a file other than standard output;
95    * no translated messages;
96    * been optimized for size rather than speed.
97  .
98  For a full-featured xzcat command without these limitations, use
99  the xz-utils package instead.
101 Package: liblzma-dev
102 Section: libdevel
103 Priority: optional
104 Architecture: any
105 Depends: liblzma2 (= ${binary:Version}), ${misc:Depends}
106 Suggests: liblzma-doc
107 Description: XZ-format compression library - development files
108  XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
109  compression format, which provides memory-hungry but powerful
110  compression (often better than bzip2) and fast, easy decompression.
112  The native format of liblzma is XZ; it also supports raw (headerless)
113  streams and the older LZMA format used by lzma. (For 7-Zip's related
114  format, use the p7zip package instead.) This package provides the
115  development library needed to build programs using liblzma.
117 Package: liblzma-doc
118 Section: doc
119 Priority: optional
120 Architecture: all
121 Depends: ${misc:Depends}
122 Suggests: liblzma-dev
123 Description: XZ-format compression library - API documentation
124  This package contains a reference manual for the liblzma data
125  compression library, in Doxygen-generated HTML files. The purpose
126  of each struct, macro, and function in the public interface is
127  explained.