debian/control: Vcs-Git: https://repo.or.cz/r/xz/debian
[xz/debian.git] / debian / changelog
blob659e2ace64279763883d8a8bf219175bb0ba5e0e
1 xz-utils (5.2.4-0.1) unstable; urgency=low
3   * New upstream release.  Closes: #851615.
4   * Drop patches; all were applied or otherwise fixed upstream.
5   * debian/control: Use a stable repo.or.cz URL for packaging repo.
6     Closes: #826382.  Thanks to Rolf Leggewie.
7   * No longer Build-Depends: freebsd-glue on kfreebsd.
8   * liblzma:
9     - Remove compatibility tricks that permit sharing a process with
10       liblzma.so.2.  This means liblzma.a no longer depends on libdl
11       at run time.
12       Closes: #919950.  Thanks to Josh Triplett.
13     - Breaks: liblzma2 versions without symbol versioning.
14   * xz-utils:
15     - Lower priority of xz-utils to standard.  Closes: #685203.
16     - README.Debian: Remove notes about differences from upstream.
18  -- Jonathan Nieder <jrnieder@gmail.com>  Sun, 27 Jan 2019 15:02:13 -0800
20 xz-utils (5.2.2-1.3) unstable; urgency=medium
22   * Non-maintainer upload.
23   * Force a constant /bin/sh for installed scripts. This helps the build
24     be reproducible; /bin/sh on Debian is always POSIX. (Closes: #806331)
26  -- Ximin Luo <infinity0@debian.org>  Wed, 28 Jun 2017 18:39:19 +0200
28 xz-utils (5.2.2-1.2) unstable; urgency=medium
30   * Non-maintainer upload.
31   * link against libfreebsd-glue on kfreebsd-* (Closes: #840063)
33  -- Sebastian Andrzej Siewior <sebastian@breakpoint.cc>  Sat, 08 Oct 2016 15:11:19 +0200
35 xz-utils (5.2.2-1.1) unstable; urgency=medium
37   * Non-maintainer upload.
38   * switch to git-dpm for packaging (closes: #540405)
39   * New Upstream (closes: #731634)
40    - no more "xzless error in line 49" (closes: #693537)
41    - xzgrep -h works (closes: #780268)
42   * update symbol file
43   * enable threads for the "normal build"
45  -- Sebastian Andrzej Siewior <sebastian@breakpoint.cc>  Mon, 26 Sep 2016 20:45:45 +0200
47 xz-utils (5.1.1alpha+20120614-2.1) unstable; urgency=medium
49   [ Helmut Grohne ]
50   * Non-maintainer upload.
52   [ Colin Watson ]
53   * Remove build-dependency on perl; we use no non-trivial Perl modules so
54     the Essential perl-base is perfectly adequate, and an unadorned
55     build-dependency on perl is problematic for cross-building.
56     Closes: #697328.
58  -- Helmut Grohne <helmut@subdivi.de>  Thu, 18 Jun 2015 20:27:23 +0200
60 xz-utils (5.1.1alpha+20120614-2) unstable; urgency=low
62   * Apply fixes from 5.1.2alpha.  Closes: #685220.
63     - liblzma: report a LZMA_DATA_ERROR when range encoded data starts
64       with a nonzero byte.  This is a sanity check to catch malformed
65       files that no known encoders produce.
66     - xz -v -v --list: Support for decompressing blocks with
67       zero-length uncompressed data was added in xz 5.0.2, not 5.0.3.
68     - xz.1: "xz --robot -v -v --list" gained a "minimum xz version to
69       decompress" field.
70   * xz-utils/README.Debian: Document differences from upstream.
71     Closes: #685217.
73  -- Jonathan Nieder <jrnieder@gmail.com>  Mon, 10 Sep 2012 14:35:33 -0700
75 xz-utils (5.1.1alpha+20120614-1) unstable; urgency=low
77   * New snapshot, taken from upstream commit f1675f76.
78     - liblzma: BCJ filters would return a spurious LZMA_BUF_ERROR
79       result in certain circumstances.  As a result, the xz tool
80       could produce inappropriate "Compressed data is corrupt" or
81       "Unexpected end of input" failures (reported in XZ Embedded as
82       Fedora bug 735408).
83     - "xz -v -v --list" prints the minimal XZ Utils version needed
84       to decompress a stream.
85     - "xz --robot -v --list" formats filenames more plainly.
86     - xzgrep does not fail unconditionally when the decompressor
87       dies with SIGPIPE due to unconsumed output any more.  This
88       makes the exit status from commands such as "xzgrep -q" and
89       "xzgrep -l" more predictable and convenient for scripts.
90     - examples/xz_pipe_decomp.c did not check correctly for
91       truncated input.
92     - There is a new set of sample programs.  The old ones have
93       been renamed to examples_old but are still maintained.
94   * liblzma:
95     - If dlopen() indicates that liblzma.so.2 is loaded, check fewer
96       reserved fields in the stream argument to the lzma_code()
97       function.  This prevents out-of-bounds reads when liblzma5
98       functions are called by code built against liblzma2 (see
99       <http://sourceware.org/PR12977>).
100     - Remove the lzma_code@Base compatibility symbol.
101       Closes: #649522.  Thanks to Eduard Bloch.
102     - Install run-time library to /lib so it can be used before /usr
103       is mounted.  Closes: #672120.
104     - Configure with --disable-threads for now to avoid needlessly
105       linking to libpthread and librt.
106   * liblzma-dev:
107     - Install an appropriate library for static linking instead of
108       the decompression-only version used to build xzdec.
109       Closes: #673001.  Thanks to Anton Tolchanov.
110     - Use the liblzma2-compatible version of lzma_code() in the
111       static library.
112     - Multi-Arch: same.  Thanks to Riku Voipio.
113     - Install new examples and revised old examples to
114       /usr/share/doc/liblzma-dev.
115   * xz-utils:
116     - Use update-alternatives to provide lzma, unlzma, lzcat, and
117       the rest of the lz* scripts without conflicting with the lzma
118       package.
119     - Conflicts: lzma versions before before 9.22-1, when it started
120       providing lzma, unlzma, and lzcat through the alternatives
121       system.
122     - Conflicts: and Replaces: xz-lzma.
123     - README.Debian: Update instructions on configuring the package
124       to provide lzma compatibility commands.
125   * Remove xz-lzma package.
126   * Use dpkg-buildflags to retrieve compiler flags, including
127     hardening options.  Build-Depends: dpkg-dev (>= 1.16.1).
128     Closes: #653739.
129   * debian/rules:
130     - build-arch: Simplify by using a double-colon rule instead of a
131       dependency on a dummy noop target.
132     - build-indep: Assume doxygen is available, instead of trying to
133       get by by assuming the caller meant to invoke build-arch when
134       it is missing.  Build-Depends: dpkg-dev (>= 1.16.2).
135     - Rearrange for clarity.
136   * debian/symbols: Bump the minimal version for lzma_code(),
137     lzma_raw_buffer_decode(), and lzma_raw_buffer_encode().
138   * Use machine-readable copyright-format 1.0.
139   * Update copyright file.
140   * Standards-Version: 3.9.3 (checked).
141   * debian/changelog.upstream.sh: Use ‘git rev-list | git diff-tree’
142     instead of ‘git log’ to avoid depending on the build system’s
143     configuration.
145  -- Jonathan Nieder <jrnieder@gmail.com>  Sat, 16 Jun 2012 15:03:17 -0500
147 xz-utils (5.1.1alpha+20110809-3) unstable; urgency=low
149   * liblzma: Match upstream ABI.
150     - Remove the lzma_chunk_size() function.
151     - A few ABI tweaks to reserved space in structures.
152     - Enable ELF symbol versioning.
153     - Bump soname to 5.
154     - Continue to leave out threading support, since the relevant
155       interfaces in liblzma are not yet stable.
156   * xz-utils/README.Debian: Remove note on ABI differences.
157   * Remove liblzma/README.Debian.
158   * liblzma: Introduce a lzma_code@Base compatibility symbol to ensure
159     programs linked against unversioned symbols from liblzma2 can
160     share a process image with liblzma5 without breaking.
161   * debian/symbols: XZ_5.0 symbols come from liblzma5.  Build-Depends:
162     dpkg-dev (>= 1.15.6); thanks to Jakub Wilk for a reminder.
163   * debian/symbols: The lzma_code@Base symbol is not guaranteed to
164     continue to exist in the future, so tell dpkg-shlibdeps to produce
165     an error if some package manages to use it.
167  -- Jonathan Nieder <jrnieder@gmail.com>  Thu, 20 Oct 2011 21:31:31 -0500
169 xz-utils (5.1.1alpha+20110809-2) unstable; urgency=low
171   * debian/rules build-arch: Do not trigger an infinite "make"
172     recursion loop when DEB_BUILD_OPTIONS=nocheck.  Closes: #638071.
173     Thanks to Thorsten Glaser.
175  -- Jonathan Nieder <jrnieder@gmail.com>  Tue, 16 Aug 2011 18:11:47 -0500
177 xz-utils (5.1.1alpha+20110809-1) unstable; urgency=low
179   * New snapshot, taken from upstream commit 5c5b225.
180     - liblzma:
181       - lzma_stream_encoder() leaked memory.
182       - The LZMA2 decoder rejected streams that decompress to a
183         zero-length string.
184       - lzma_easy_buffer_encode() and lzma_stream_buffer_encode()
185         used to write such streams when asked to compress a 0-length
186         buffer.
187       - lzma_index_init() would segfault on allocation failure.
188       - liblzma: Various functions check their arguments (especially
189         choice of integrity check) better, making it harder to create
190         a corrupt .xz file instead of receiving an error.
191     - xz and scripts:
192       - "xz -v -v --list" would read and try to free() uninitialized
193         memory, continuing past the end of an on-stack array, when
194         asked to describe certain corrupted XZ files.
195       - xz -S.suf now refuses to compress a file whose name already
196         ends with the suffix “.suf”.
197       - xz --force can be used to compress setuid, setgid, sticky,
198         and multiply linked files.
199       - xz uses posix_fadvise() to speed up sequential input.
200       - xz --block-size forces a full flush periodically during
201         compression, for better random-access reading support and to
202         make simple parallelism possible in the future.
203       - unxz: The new --single-stream option discards trailing
204         garbage after the end of the first stream.
205       - xzdiff can read gzip- and bzip2-compressed files.
206       - xzdiff and xzgrep can read lzop-compressed files.
207       - xzegrep and xzfgrep perform extended regex and fixed-string
208         matches, respectively.  (The previous behavior was to always
209         use basic regexes.)
210       - xzgrep -l (= --files-with-match) works.
211       - The Czech “xz --help” output uses a more correct term for
212         files with holes.  Thanks to Petr Hubený.  Closes: #605762.
213       - xz: New Polish and French translations.
214     - The Doxygen-generated documentation uses short, relative paths
215       to name source files.  Closes: #572273.
216   * Update copyright file.
217   * Remove example programs from debian/examples.  They are included
218     in the upstream source package now.
219   * Move liblzma to an architecture-specific directory, so the
220     native library and foreign-architecture versions can be installed
221     simultaneously.
222     - liblzma2: Pre-Depends: multiarch-support.
223     - Use debhelper compatibility level 9.  This requires passing
224       the dh sequence name before other options when invoking dh in
225       debian/rules.  Build-Depends: debhelper (>= 8.1.3).
226     - liblzma2, liblzma-dev: Install files under /usr/lib/<triplet>
227       instead of /usr/lib.
228     - Thanks to Steve Langasek for explaining the process on the
229       Debian wiki.
230   * Standards-Version: 3.9.2 (checked).
231   * debian/control: liblzma2 is Multi-Arch: same, while xz-utils
232     and xzdec are Multi-Arch: foreign.  Closes: #637883.  Thanks to
233     Riku Voipio.
234   * debian/symbols: Bump the minimal version for LZMA2 encoder
235     functions that reject more bad arguments and skip empty blocks.
236   * debian/rules: ./configure --disable-symbol-versions for now.
237   * debian/rules: Provide build-arch and build-indep targets that
238     only build the code and the API documentation, respectively.
239     Thanks to Roger Leigh for suggesting it through lintian.
240     Build-Depends: debhelper (>= 8.9.0).
241   * debian/rules: Treat DEB_BUILD_OPTIONS=nocheck as a request not to
242     run build-time tests.  Thanks to Thorsten Glaser for a reminder.
243     Closes: #627209.
245  -- Jonathan Nieder <jrnieder@gmail.com>  Tue, 16 Aug 2011 00:40:31 -0500
247 xz-utils (5.0.0-2) unstable; urgency=low
249   * Upload to unstable.
250   * liblzma2, liblzma-dev, xz-lzma: Install release notes.
251   * debian/symbols: Bump the minimal versions for lzma_index_encoder,
252     lzma_index_decoder to the version in which they gained LZMA_FINISH
253     support.
254   * xz-utils/README.Debian: Document differences from upstream ABI.
255   * debian/changelog.upstream.sh: Avoid empty changelog entries when
256     multiple Debian revisions match an upstream tag.
258  -- Jonathan Nieder <jrnieder@gmail.com>  Thu, 11 Nov 2010 13:45:20 -0600
260 xz-utils (5.0.0-1) experimental; urgency=low
262   * Upload to experimental.
263   * New stable upstream release.  Closes: #592298.
264     - xz avoids SA_RESTART.  This should not have a visible effect
265       because xz already blocked signals during operations that
266       would be difficult to resume after interruption.
267     - liblzma: The coders returned by lzma_index_encoder() and
268       lzma_index_decoder() support an LZMA_FINISH action, with
269       identical semantics to LZMA_RUN.
270     - The printable (PDF and PS) versions of the manual are easier
271       to read.
272     - Many documentation and build system cleanups.
273   * liblzma: Back out upstream ABI tweaks.
274   * liblzma/README.Debian: Document ABI differences from upstream.
275   * Copy sample code not included in the release tarball from
276     the development upstream repository to debian/examples.
277   * debian/rules clean: Remove some files not included in the
278     release tarball.
279   * copyright: List new INSTALL.generic license.
280   * debian/rules clean: Take new build-aux scripts into account.
281   * debian/rules:  Adapt for upstream build system changes.
282     Closes: #540443.
283   * xz-utils, xzdec: Install release notes.
285  -- Jonathan Nieder <jrnieder@gmail.com>  Mon, 25 Oct 2010 05:45:18 -0500
287 xz-utils (4.999.9beta+20100927-1) experimental; urgency=low
289   * New snapshot, taken from upstream commit cec0ddc.
290     - liblzma: The meaning of --extreme has been tweaked to address
291       cases in which it made the compression ratio worse.  Some files
292       might benefit slightly less from --extreme.
293     - xz: Table columns are not misaligned any more in messages with
294       multi-byte characters (e.g., file sizes with LANG=fi_FI.UTF-8).
295     - xz: New German and Italian translations.
296     - Various documentation, message, and translation updates.
297   * Update copyright file.
298   * debian/rules get-orig-source: Update upstream Git URL.
299   * xz-utils/README.Debian: Advertise XZ_DEFAULTS.
301  -- Jonathan Nieder <jrnieder@gmail.com>  Mon, 27 Sep 2010 16:22:22 -0500
303 xz-utils (4.999.9beta+20100903-1) experimental; urgency=low
305   * New snapshot, taken from upstream commit 373ee26.
306     - liblzma: The settings for compression levels 0 through 5
307       (used by xz -0/.../-5) have been tweaked.  This affects the
308       speed, compression ratio, and memory usage at compression and
309       decompression time.
310     - Does not search so hard for a match when a low "nice match
311       length" setting is specified without a depth.
312     - xz: The -1/.../-9 preset options override any previously
313       specified filters, rather than vice versa.  To mix presets
314       with filter options, use the --lzma2=preset=n option.
315     - xz: Warns about --memlimit-compress settings that result in
316       compression settings changing even if no explicit -1/.../-9,
317       --lzma1, or --lzma2 option was used.
318     - "xz -v -v --compress" now prints an estimate of the memory
319       required to decompress a file.
320   * debian/copyright: Update upstream Git URL.
321   * debian/changelog.upstream.sh: Permit terser changelog lines.
322   * Standards-Version: 3.9.1 (checked).
324  -- Jonathan Nieder <jrnieder@gmail.com>  Fri, 03 Sep 2010 17:05:20 -0500
326 xz-utils (4.999.9beta+20100810-1) unstable; urgency=low
328   * New upstream snapshot, taken from upstream commit d5653ba8a.
329     - xz: The memory usage limiter is now disabled by default.
330     - xz: Support for an XZ_DEFAULTS environment variable was added.
331       It contains user-specific default settings, such as memory usage
332       limits, and can be overridden by the command line and XZ_OPT.
333     - xz: The new --memlimit-compress and --memlimit-decompress
334       options allow the memory usage limit to be set separately for
335       compression and decompression.  A new --memlimit alias has been
336       added for the existing --memory option.
337     - xz: The --info-memory option (with or without --robot) now prints
338       how much RAM is installed in addition to the compression and
339       decompression memory limits.
340   * liblzma-doc: Simplify package description.
341   * debian/control: Build-Depends: autopoint | gettext (<< 0.18-1),
342     autopoint | cvs instead of autopoint, to help with backporting.
343     Thanks to Thorsten Glaser for a report.
345  -- Jonathan Nieder <jrnieder@gmail.com>  Tue, 10 Aug 2010 20:27:14 -0500
347 xz-utils (4.999.9beta+20100713-1) unstable; urgency=low
349   [ Thorsten Glaser ]
350   * Explicitly depend on autoconf (>= 2.64~) due to AC_PREREQ,
351     discovered during backporting.
353   [ Jonathan Nieder ]
354   * Upload to unstable.
355   * New upstream snapshot, taken from upstream commit a540198f.
356     - xz: The new --no-adjust option can be used to error out if there
357       is insufficient memory for the chosen compression level.
358   * liblzma-dev: Install examples to /usr/share/doc/liblzma-dev.
359   * Update copyright file.
361   * Drop unpack-time conflicts in favor of configuration-time
362     conflicts (Replaces + Breaks):
363      - xz-utils: against old xz-lzma (for lzmainfo).
364      - xzdec: against old xz-lzma (for lzmadec).
365      - xz-lzma: against lzip 1.7 (for lzdiff and lzgrep).
366   * Standards-Version: 3.9.0.
368   * debian/autogen.sh: Don’t regenerate upstream changelog when it is
369     not out of date.
370   * debian/rules get-orig-source: Use gzip --no-name --rsyncable.
372  -- Jonathan Nieder <jrnieder@gmail.com>  Thu, 15 Jul 2010 01:53:37 -0500
374 xz-utils (4.999.9beta+20100602-1) experimental; urgency=low
376   * New upstream snapshot, taken from upstream commit d8b41eed.
377     - The output from "xz -v --list" and "xz -v -v --list" has been
378       improved.
379       "xz -v -v --list" can be used to obtain an estimate for the memory
380       required to decompress a file.
381     - The xz manual page has some new material, including examples.
382       Closes: #578465.
383     - liblzma: The lzma_block_compressed_size() function no longer
384       returns LZMA_DATA_ERROR for valid Blocks.
385   * debian/symbols: Bump minimal version for lzma_block_compressed_size.
386   * Correct the 4.999.9beta+20100307-1 changelog entry to describe
387     which public functions were affected.
389   * Add new xz-lzma package to allow xz to provide lzma and related
390     commands.  Conflicts: and Provides: lzma.
391   * xz-utils: Suggests: xz-lzma.
392   * xz-utils/README.Debian: Take xz-lzma into account.
394  -- Jonathan Nieder <jrnieder@gmail.com>  Fri, 04 Jun 2010 15:53:58 -0500
396 xz-utils (4.999.9beta+20100527-1) unstable; urgency=low
398   * New upstream snapshot, taken from upstream commit a334348dc.
399     - Show both elapsed time and estimated remaining time in xz -v.
400       Thanks to Trent W. Buck for the idea.  Closes: #574583.
401     - liblzma: Remove the Subblock filter from the public API
402       (the ABI is unchanged).
403   * liblzma-dev.NEWS: Update.
404   * xz-utils: Update Czech translation.
405   * Change priority of xz-utils and liblzma2 to required and
406     xzdec to extra.
408  -- Jonathan Nieder <jrnieder@gmail.com>  Thu, 27 May 2010 16:27:04 -0500
410 xz-utils (4.999.9beta+20100307-1) unstable; urgency=low
412   * New upstream snapshot, taken from upstream commit f4b2b526.
413     - liblzma: The stream initialization functions were not correctly
414       initializing the internal allow_buffer_error flag.  As a result,
415       ever since 4.999.9beta-1 in rare circumstances when decompressing
416       LZMA files, the xz tool would produce spurious "Unexpected end
417       of input" failures (Gentoo bug 305591).
418     - The default memory usage limit on low-memory systems has been
419       increased.
420   * debian/copyright: Clarify.
422  -- Jonathan Nieder <jrnieder@gmail.com>  Tue, 09 Mar 2010 10:22:24 -0600
424 xz-utils (4.999.9beta+20100212-4) unstable; urgency=low
426   * debian/control: Build-Depends: autopoint instead of cvs.
427     Closes: #572481.
428   * debian/copyright: Clean up and include more details.
429   * debian/rules get-orig-source: Unindent comment lines.
430   * xz-utils: include Czech translation.
432  -- Jonathan Nieder <jrnieder@gmail.com>  Thu, 04 Mar 2010 10:17:15 -0600
434 xz-utils (4.999.9beta+20100212-3) unstable; urgency=low
436   * liblzma-dev: Remove unneeded .la file.
437   * xz-utils: Dynamically link the xz binary.
438   * Do not waste time installing and running doxygen on buildds that
439     are not going to build arch-all packages.
440     Build-Depends-Indep: doxygen.  Closes: #540444.
442  -- Jonathan Nieder <jrnieder@gmail.com>  Tue, 23 Feb 2010 18:23:29 -0600
444 xz-utils (4.999.9beta+20100212-2) unstable; urgency=low
446   * Split off xzdec and lzmadec commands into new xzdec package.
447     Thanks to Guillem Jover for the idea.  Closes: #571060.
448   * xz-utils.NEWS: advertise this change.
450  -- Jonathan Nieder <jrnieder@gmail.com>  Tue, 23 Feb 2010 08:09:39 -0600
452 xz-utils (4.999.9beta+20100212-1) unstable; urgency=low
454   * New upstream snapshot, taken from upstream commit eb7d51a3f.
455      - xz --force compresses symlinks without complaint now.
456      - liblzma: the optimized CRC32 implementation for x86 no longer
457        misdetects the Hurd as Mac OS X.
458   * debian/rules: ./configure --enable-assembler on the Hurd.
459   * xz-utils: Simplify NEWS.Debian.gz.
460   * liblzma-dev: Add a NEWS file to keep track of future API changes.
462   * Drop unnecessary build-time conflict with autoconf2.13.
463   * Add a blank line to the end of all NEWS files.
464     (Works around: #247356)
465   * debian/README.source: Leave out “-I -i” options.  Ignoring version
466     control cruft is the default behavior with dpkg source format 3.0.
467   * debian/changelog.upstream.sh: Pass ‘git log’ an explicit --format
468     option to avoid problems if format.pretty is set in gitconfig.
470   * Correct the 4.999.9beta+20100117-1 changelog entry.  It said:
471      + The user-specified memory usage limit was not being honored in
472        some cases.
473     No such bug was observed, so describe the change instead.
475  -- Jonathan Nieder <jrnieder@gmail.com>  Tue, 16 Feb 2010 00:30:24 -0600
477 xz-utils (4.999.9beta+20100131-1) unstable; urgency=low
479   * New upstream snapshot, taken from upstream commit f9dd797a.
480      + xz: the --list option to display information about a compressed
481        file (e.g., its uncompressed size) is now functional.  The output
482        of the xz --robot --list command still may change in future
483        versions.
484   * xz-utils: NEWS.Debian.gz: Clarify how interleaved output can
485     go wrong.
486   * debian/rules: Simplify:
487      - remove support for comma as a delimiter for $(DEB_BUILD_OPTIONS).
488      - rely on dh --parallel instead of tricky logic of our own to
489        handle parallel builds.  Build-Depends: debhelper (>= 7.4.10).
490   * Correct some typos in the 4.999.9beta+20100117-1 changelog entry.
491   * Standards-Version: 3.8.4 (checked).
492   * Update copyright file.
494  -- Jonathan Nieder <jrnieder@gmail.com>  Sun, 31 Jan 2010 17:32:02 -0600
496 xz-utils (4.999.9beta+20100117-1) unstable; urgency=low
498   * New upstream snapshot, taken from upstream commit 07a11dad.
499      + Fix some logic errors in the internal memory usage configuration
500        API.
501      + xz will no longer compress or decompress special files in place,
502        even with --force.
503        --force still enables compression of the target of a symlink.
504      + xz will no longer read compressed data from a terminal or write
505        it to a terminal, even with --force.
506      + liblzma: many Index handling API improvements:
507         - An lzma_index includes more useful metadata that is not
508           actually from the Index.  This is particularly helpful for
509           describing multiple-stream files.
510            * lzma_index_cat() does not take a stream padding argument
511              any more; use lzma_index_stream_padding() instead.
512            * lzma_index_memusage() takes two arguments now.
513              The new lzma_index_memused() convenience function
514              calculates the total memory usage of an lzma_index.
515            * lzma_index_count() has been replaced with
516              lzma_index_block_count() and lzma_index_stream_count().
517            * The new lzma_index_stream_flags() allows storing Stream
518              Flags (e.g., checksum types) with the Index information.
519            * The new lzma_index_checks() function indicates the list of
520              checksum types in use.
521            * lzma_index_equal() has been removed.  Its semantics were
522              unclear, and something approximately equivalent can be
523              implemented by iterating over Blocks in application code.
524         - An lzma_index no longer represents a position within an Index.
525           The new lzma_index_iter type can be used for that purpose.
526            * Certain functions generate an iterator on demand now rather
527              than clobbering their lzma_index arguments.  Using a single
528              lzma_index for multiple concurrent invocations is safe now:
529               lzma_index_buffer_encode(), lzma_index_encoder()
530            * Functions that used to specify a Record by modifying an
531              lzma_index argument have been renamed and taught to write
532              an lzma_index_iter instead:
533               lzma_index_locate() -> lzma_index_iter_locate()
534               lzma_index_rewind() -> lzma_index_iter_rewind()
535               lzma_index_read() -> lzma_index_iter_next()
536            * The lzma_index_record type used by lzma_index_read() for
537              complex seeks is no more.  lzma_index_iter_next() instead
538              takes a parameter of the new lzma_index_iter_mode type.
539            * New function: lzma_index_iter_init()
540            * lzma_index_init() cannot reuse memory from an existing
541              lzma_index any more.  The signature changed accordingly.
542      + xz: support for decompressing to a sparse file
543         - Try to write a sparse file if the decompressed stream contains
544           long runs of null bytes.
545         - The new --no-sparse option disables this behavior.
546      + xz: add Czech translation.
547      + liblzma-dev: lzma_filters_copy() and lzma_filters_update() are
548        declared not to throw exceptions.
549   * liblzma: bump soname.
550   * xz-utils: Add NEWS.Debian describing the sparse file support.
551   * debian/rules: Stop explicitly disabling assembler optimizations on
552     the Hurd.  The configure script will check if a platform is
553     supported.
555   * debian/rules: Update clean target to handle comments and wildcards
556     in .gitignore.
557   * Build-Depends: perl.
559   * debian/rules: Speed up build by using autoreconf --symlink.
560   * Remove debian/dirs lists.
561   * Update copyright file and fix a small typo.
563  -- Jonathan Nieder <jrnieder@gmail.com>  Mon, 18 Jan 2010 04:19:50 -0600
565 xz-utils (4.999.9beta+20091116-1) unstable; urgency=low
567   * New upstream snapshot, taken from upstream commit d315ca4.
568      + liblzma: add some new functions:
569         - lzma_filters_copy() to copy a filter chain;
570         - lzma_filters_update() to change compression options mid-stream;
571         - lzma_physmem() to retrieve the total quantity of installed RAM.
572      + Fix a design error in liblzma API.
573         - Stop requiring caller to maintain filter chain during
574           compression.  The library used to read it for new compression
575           options.  Callers that need to change options mid-stream should
576           use lzma_filters_update() instead.
577         - Remove 'persistent' member from struct lzma_options_lzma.
578      + xz: add --robot --info-memory options, for front-ends to use to
579        read the memory usage limit.
580   * liblzma: bump soname; add README.Debian explaining why soname
581     differs from upstream.
582   * Use source format 3.0 (quilt).
583   * Update and clarify copyright file.
585  -- Jonathan Nieder <jrnieder@gmail.com>  Mon, 16 Nov 2009 16:33:35 -0600
587 xz-utils (4.999.9beta+20091016-1) unstable; urgency=low
589   * New upstream snapshot, taken from upstream commit 78e92c1.
590   * Drop xzmore.1 patch, applied upstream.
591   * debian/rules: Disable assembler optimizations on hurd. (Closes: #553331)
592   * debian/control: Clarify binary package descriptions.  Thanks to
593     Justin B Rye and Ben Finney for the text.
594   * debian/rules get-orig-source: Use commit date (instead of last patch
595     date) to name snapshots.
597  -- Jonathan Nieder <jrnieder@gmail.com>  Sun, 01 Nov 2009 00:22:04 -0500
599 xz-utils (4.999.9beta+20091004-1) unstable; urgency=low
601   * Upload to unstable. (Closes: #543562)
602   * New upstream snapshot, taken from upstream commit ebfb2c5.
603   * Patch xzmore.1 to use dashes instead of minus signs.
604   * debian/control: Conflicts: xz-lzma. (Closes: #550249)
605   * liblzma-doc: Register Doxygen-generated docs with doc-base.
606   * debian/changelog.upstream.sh: Declare local variables.
607   * debian/changelog.upstream.sh: Cope with multiple Debian revisions per
608     upstream version.
609   * debian/rules: Use ":=" where appropriate.
610   * Add watch file.
612  -- Jonathan Nieder <jrnieder@gmail.com>  Fri, 16 Oct 2009 13:58:54 -0500
614 xz-utils (4.999.9beta+20091002-1) experimental; urgency=low
616   * New upstream snapshot, taken from upstream commit 29fd321.
617   * debian/control: Build-Depends: cvs (for autopoint).
619  -- Jonathan Nieder <jrnieder@gmail.com>  Sun, 04 Oct 2009 00:21:08 -0500
621 xz-utils (4.999.9beta-1) experimental; urgency=low
623   [ Jonathan Nieder ]
624   * New upstream release.
625      - Fix a data corruption in the compression code. (Closes: #544872)
626      - xzdiff: Fix comparing two compressed files. (Closes: #540543)
627      - Most of XZ Utils is now in the public domain. (Closes: #541391)
628      - Add doc/history.txt to the distributed tarball. (Closes: #541540)
629   * Update and clarify copyright file.
630   * Drop lzma compatibility commands for now. (Closes: #542060, #540232)
631     Add instructions to README.Debian for installing them locally.
632   * debian/control: Add information about the packaging Git repository.
633   * debian/control: Clarify package descriptions.
634   * debian/README.source: Clarify build instructions.
635   * Add debian/.gitignore listing build products.
636   * Build xz-utils with static liblzma.
637      - debian/rules: Use configure --enable-dynamic=mixed.
638   * Optimize xzdec for size, following suggestion in PACKAGERS.
639      - debian/rules: Build xzdec separately so it can be optimized for size.
640      - debian/control: Build-Depends: debhelper (>= 7.3.0).
641   * Generate upstream changelog instead of shipping placeholder.
642      - debian/README.source: Add instructions for regenerating upstream
643        changelog file.
644      - debian/changelog.upstream.sh: New script.
645      - debian/rules: Install generated changelog file.
646   * liblzma-doc: Drop documentation already shipped in
647     /usr/share/doc/xz-utils.
648   * liblzma-dev, liblzma-doc: Add short README.Debian with pointers to
649     development documentation.
650   * Drop debian/xzdec.1, since upstream ships a better man page.
651   * Run autotools at build time.
652      + debian/control:
653         - Build-Depends: autoconf, automake, libtool, gettext
654         - Build-Conflicts: autoconf2.13, automake1.4
655      + debian/rules:
656         - configure: autoreconf -fi
657         - clean: remove autotools-generated files to avoid .diff.gz
658           changes when built twice in a row.
659   * debian/rules: Add get-orig-source target.
660   * Prepare for upload to experimental.
662   [ Cristian Greco ]
663   * debian/copyright: refer to versioned GPL-3 file.
664   * debian/control: remove duplicate field ‘section’ in package xz-utils.
666  -- Jonathan Nieder <jrnieder@gmail.com>  Wed, 30 Sep 2009 01:44:04 -0500
668 xz-utils (4.999.8beta-1) experimental; urgency=low
670   [ Jonathan Nieder ]
671   * Initial package for Debian. (Closes: #518803)
672      + debian/rules:
673         - add minimal rules file (using Debhelper 7), a control file
674           describing the binary packages, and an appropriate compat file.
675         - use configure --enable-dynamic; use up-to-date config.guess and
676           config.sub files.
677         - do not run automake and so on on autobuilders. Instead, we can
678           run them ourselves when we build the source package.
679      + debian/README.source:
680         - add informations about the packaging GIT repository.
681   * Add liblzma-doc package with Doxygen-generated API docs.
683   [ Mohammed Adnène Trojette ]
684   * Prepare for upload to experimental.
686  -- Mohammed Adnène Trojette <adn+deb@diwi.org>  Sat, 27 Jun 2009 17:26:56 +0200