Release 1.19.0.3
[dpkg.git] / debian / changelog
blob35179be7ae99e26a52ef69ef9613a273491921c6
1 dpkg (1.19.0.3) unstable; urgency=medium
3   * Pass the correct source stanza to the dpkg-buildpackage code parsing the
4     Rules-Requires-Root field. This meant the field was being ignored.
5   * Setup and check rootcommand in dpkg-buildpackage only if it is going to
6     be needed. Reported by Niels Thykier <niels@thykier.net>.
7   * Documentation:
8     - Add a missing dot on the dpkg-buildflags(1) «lfs» feature paragraph.
9       Spotted by Helge Kreutzmann <debian@helgefjell.de>.
10   * Packaging:
11     - Comment out Rules-Requires-Root field until debhelper supports it.
13  -- Guillem Jover <guillem@debian.org>  Sat, 21 Oct 2017 16:01:15 +0200
15 dpkg (1.19.0.2) unstable; urgency=medium
17   * Fix logic in dpkg-buildpackage to decide whether to run build targets,
18     which broke tons of packages that are violating Debian policy MUSTs.
19     Thanks to James Clarke <jrtc27@debian.org>. Closes: #878899
20   * Do not try to recompute hashes for the .dsc file when signing binary-only
21     builds in dpkg-buildpackage. Reported by Ximin Luo <infinity0@debian.org>.
22   * Packaging:
23     - Add Breaks to libdpkg-perl against pkg-kde-tools (<< 0.15.28~), as
24       that package is using private modules with no API guarantees, that
25       obviously broke due to recent changes in 1.19.0. Closes: #878919
27  -- Guillem Jover <guillem@debian.org>  Wed, 18 Oct 2017 01:28:20 +0200
29 dpkg (1.19.0.1) unstable; urgency=medium
31   * Packaging:
32     - Install update-alternatives policykit-1 file.
33   * Test suite:
34     - Skip Dpkg::OpenPGP test if gpg is not present.
36  -- Guillem Jover <guillem@debian.org>  Tue, 17 Oct 2017 04:50:11 +0200
38 dpkg (1.19.0) unstable; urgency=medium
40   [ Guillem Jover ]
41   * Remove an unused variable in dpkg-shlibdeps.
42     Thanks to Niels Thykier <niels@thykier.net>.
43   * Parse start-stop-daemon usernames and groupnames starting with digits in
44     -u and -c correctly. Reported by Bodo Eggert <7eggert@online.de>.
45   * Cache the result of «dpkg-query --control-path» calls in dpkg-shlibdeps.
46     Based on a patch by Niels Thykier <niels@thykier.net>. Closes: #846405
47   * Always use the binary version for the .buildinfo filename in
48     dpkg-genbuildinfo. Reported by Raphaël Hertzog <hertzog@debian.org>.
49     Closes: #869236
50   * Fix integer overflow in deb(5) format version parser.
51     Closes: #868356
52   * Re-enable upstream tar signatures when building source format 1.0.
53   * Make dpkg-deb --build sanity check the config maintainer script file type
54     and permissions.
55   * Add support to dpkg-deb for rootless builds, by setting the owner and
56     group for the control.tar entries to root:root, and making it possible to
57     do the same for the data.tar entries via the new --root-owner-group option.
58     Based on a patch by Niels Thykier <niels@thykier.net>. Closes: #291320
59   * Make dpkg-buildpackage error out if --as-root is passed without
60     --rules-target.
61   * Add support for rootless builds in dpkg-buildpackage by honoring the
62     Rules-Requires-Root (R³) field.
63   * Add new dpkg-buildflags --query command, which is like --status but in
64     deb822 format.
65   * Remove long obsolete dselect floppy method.
66   * Remove traces of non-US support from dselect methods.
67   * Add support for a new Build-Kernel-Version field in .buildinfo files,
68     that can be emitted with a new dpkg-genbuildinfo --always-include-kernel
69     option. Closes: #873937
70   * Make dpkg-genchanges honor substvars in .changes Description field.
71     Closes: #856547
72   * Add support for source package Description and substvars. This new
73     field in the debian/control source stanza will be copied into the .dsc
74     file, and will also be used to initialize the new source:Synopsis and
75     source:Extended-Description substvars that will be available when
76     generating the DEBIAN/control and .changes files. Closes: #555743
77   * Add new “future” feature area in dpkg-buildflags:
78     - Add new «lfs» feature, to be used instead of the getconf(1) interface
79       which cannot support cross-building.
80   * Add new buildtools.mk make fragment to support build tools variable
81     setup, for both TOOL and TOOL_FOR_BUILD variables. Not included by
82     default from default.mk.
83   * Make --uniform-compression the new default dpkg-deb behavior. Add support
84     for negating the option via --no-uniform-compression.
85   * Clarify subprocess error message by shuffling words around.
86   * Print the package name on maintainter script errors. Closes: #877521
87   * Fix capitalization of Debian in dpkg-deb output messages.
88   * Add a policikit file for running update-alternatives via pkexec.
89     Propose by Boyuan Yang <073plan@gmail.com>.
90   * Perl modules:
91     - Switch from Dpkg::Util to List::Util, now that the module in the
92       new required Perl contains the needed functions.
93     - Add a new "unique_tuple_key" option to Dpkg::Index set_options() to
94       set better default "get_key_func" options, which will become the default
95       behavior in 1.20.x. Prompted by Johannes Schauer <josch@debian.org>.
96     - Mark ppc64 and powerpc as having gcc builtin PIE in Dpkg::Vendor::Debian.
97     - Make the Dpkg::Substvars warnings output deterministic.
98       Thanks to Chris Lamb <lamby@debian.org>. Closes: #870221
99     - Remove unused POSIX module imports.
100     - Use Errno module instead of the slow to import POSIX.
101     - Remove unused Dpkg::Path from Dpkg::Vendor::Ubuntu.
102     - Only load POSIX from Dpkg::Compression::FileHandle if we are going to
103       use signal definitions, reducing the load time of many other modules.
104     - Only load Dpkg::BuildOptions and Dpkg::Arch from Dpkg::Vendor-specific
105       modules if we are going to use them, reducing the load time of many
106       other modules.
107     - Only load Term::ANSIColor from Dpkg::ErrorHandling if we are going to
108       use colors, reducing the load time of many other modules.
109     - Move color setup into report_pretty in Dpkg::ErrorHandling.
110     - Move printforhelp initialization into usageerr() in Dpkg::ErrorHandling.
111     - Avoid many function arguments in Dpkg::Shlibs::SymbolFile parse().
112     - Avoid many function arguments in Dselect::Ftp do_connect().
113     - Add new Dpkg::Interface::Storable option to disable compression support,
114       so that we can load Dpkg::Compression::FileHandle only when enabled.
115     - Disable decompression support for Dpkg::Vendor origin files.
116     - Move file_lock() function into a new Dpkg::Lock module, to reduce the
117       module load chain for several Dpkg modules.
118     - Add support for new DPKG_NLS environment variable in Dpkg::Gettext,
119       that when set to 0 will disable NLS (i18n) support in the Dpkg modules,
120       and reduce the load chain.
121     - Disable compression when using the default file in
122       Dpkg::Changelog::Parse.
123     - Mark all missing CTRL_INDEX_SRC and CTRL_INDEX_PKG fields as allowed
124       in Dpkg::Control::FieldsCore.
125     - Complete field order for CTRL_PKG_DEB and CTRL_FILE_STATUS types in
126       Dpkg::Control::FieldsCore.
127     - Switch to use lowercase field names for all internal field name
128       handling in Dpkg::Control::FieldsCore, giving a significant speed up.
129     - Remove dependency on Dpkg::Checksums from Dpkg::Control::FieldsCore.
130     - Do not execute code when importing Dpkg::Control::FieldsCore.
131     - Use substr instead of a regex to match the first line characters in
132       when parsing control files in Dpkg::Control::HashCore.
133     - Merge build flag methods into a single _add_build_flags private method
134       in Dpkg::Vendor::Debian.
135     - Do not use an intermediate variable in Dpkg::Control::HashCore::Tie
136       STORE method.
137     - Expect deb822 stanza delimiters more often than OpenPGP Armor Headers
138       in Dpkg::Control::HashCore parse method.
139     - Optimize trailing space matching on Dpkg::Control::HashCore parse
140       method, by trimming it just once at the beginning of the iteration.
141     - Optimize trailing space trimming on Dpkg::Control::HashCore parse
142       method, by requiring that at least one whitespace is present.
143     - Optimize first character matching in Dpkg::Control::HashCore parse
144       method, by storing the first character in a variable.
145     - Optimize field/value parsing in Dpkg::Control::HashCore parse method,
146       by switching from a capturing regex to split() plus a checking regex.
147     - Auto-convert binary signatures to OpenPGP ASCII Armor in
148       Dpkg::Source::Package when building source packages.
149     - Switch Dpkg::Source::Package::V3 modules to use find_command() instead
150       of ad-hoc code.
151     - Call source format prerequisites Dpkg::Source::Package method if
152       present. Addresses: #877688
153     - Unify Dpkg::ErrorHandling subprocess errors with the ones from libdpkg.
154     - Do not emit a perl warning if gcc or dpkg is not found from Dpkg::Arch,
155       the code already handles the commands not being present.
156     - Do not unnecessarily require setting the host_arch in Dpkg::Deps.
157       Closes: #856396
158     - Do not normalize args past a passthrough stop word in Dpkg::Getopt.
159       Some commands pass some arguments through to another command, and
160       those must not be normalized as that might break their invocation.
161       Reported by Helmut Grohne <helmut@subdivi.de>.
162   * Documentation:
163     - Document currently accepted syntax for changelogs in deb-changelog(5).
164       Closes: #858579
165     - Mark source:Version substvar in bold in deb-substvars(5).
166     - Clarify behavior for dpkg-maintscript-helper. Closes: #857852
167     - Use <command-string> instead of <command> for -c argument value in
168       dpkg-architecture(1). Reported by Johannes Schauer <josch@debian.org>.
169     - Itemize the CTRL_* constants in the Dpkg::Index POD.
170     - Update buildinfo information in dpkg-buildpackage man page to match
171       the current implementation.
172     - Add all source files to POTFILES.in files.
173     - Move deb-version man page to section 7.
174     - Remove reference to obsolete dpkg-cross(1).
175     - Sort control field export markers by tool order in deb-src-control(5).
176     - Document Package-Type and Enhances fields in deb-control(5).
177     - Write the actual glyphs used to delimit dependency restrictions in
178       deb-src-control(5).
179     - Move Package-Type description just after the Package field in
180       deb-src-control(5).
181     - Move udeb-specific fields to the end of the list of fields in
182       deb-src-control(5), and mention these are really udeb-specific.
183     - Document that dependency fields in binary stanza can have restrictions
184       in deb-src-control(5).
185     - Clarify that the Testsuite field is comma-separarted.
186     - Fix update-alternatives man page section in alternatives/README file
187       reference. Closes: #872309
188     - Use correct name for archname validator value in dpkg(1) man page.
189       Reported by Niels Thykier <niels@thykier.net.
190     - Add new deb-src-rules(5) man page.
191     - Document that trailing commas are valid in debian/control dependency
192       fields, which get stripped when generating output files.
193       Prompted by Mattia Rizzolo <mattia@debian.org>.
194     - Clarify that sanitize options should not be used for production builds.
195     - Remove recommendation to use Pre-Depends for trigger directives from
196       deb-triggers(5). Closes: #864882
197     - Add new rootless build experimental draft specification.
198       Initial proposal by Niels Thykier <niels@thykier.net>, wording fixes
199       and spec clarifications by Guillem Jover <guillem@debian.org>.
200     - Fix several function signature documentation.
201   * Code internals:
202     - Switch perl code to use -> operator for function variables.
203     - Switch perl code from split() with /\s+/ to ' '.
204   * Build system:
205     - Require Perl 5.20.2, the version in Debian oldstable (jessie).
206     - Use new gcc-7 -Wrestrict and -Wshift-negative-value warnings if
207       available.
208     - Do not override the default DEPENDENCIES for libdpkg, extend it instead.
209     - Install perl man pages in section 3perl.
210   * Packaging:
211     - Remove preinst maintainer scripts for dselect and dpkg-dev, for an
212       ancient /usr/share/doc symlink to directory switch. Closes: #867327
213     - Remove now unused libio-string-perl Build-Depends, and versioned
214       dpkg-dev as we do not use build profiles any more.
215     - Set Rules-Requires-Root field to no.
216     - Do not set redundant source compression to xz.
217     - Bump Standards-Version to 4.1.0 (no changes needed).
218     - Switch to debhelper compatibility level 10.
219     - Split alternatives logrotate into its own configuration file to help
220       downstreams and derivatives.
221     - Remove ancient code recompressing the alternatives database backups
222       from xz to gzip in the dpkg daily cron job.
223     - Remove Replaces and Breaks for ancient transitions.
224     - Remove workaround for ancient gcc lacking stackprotectorstrong support.
225     - Remove maintainer script code to handle downgrades to pre-triggers and
226       pre-multiarch dpkg versions.
227     - Remove alternative logs when purging dpkg (!?).
228     - Add support for DPKG_ROOT in dpkg maintainer scripts.
229     - Add git and bzr to libdpkg-perl Suggests. Closes: #877688
230   * Test suite:
231     - Enable perlcritic Documentation::RequirePodSections and
232       Miscellanea::ProhibitTies.
233     - Disable perlcritic ValuesAndExpressions::ProhibitEscapedCharacter.
234     - Add a new all_perl_modules function to Test::Dpkg.
235     - Add a new module-version unit test to check that module $VERSION
236       matches the newest entry in the CHANGES section.
237     - Use Module::Metadata instead of grepping for $VERSION in pod-coverage.
238     - Avoid many function arguments in Dpkg_Changelog.t check_options().
239     - Add a new unit test for Dpkg::Control::FieldsCore.
240     - Switch from IO::String to native open() scalar support.
241     - Use UTC0 when setting TZ.
243   [ Updated programs translations ]
244   * German (Sven Joachim).
245   * Italian (Pietro Battiston). Closes: #864509
246   * Portuguese (Miguel Figueiredo). Closes: #868800
247   * Simplified Chinese (Zhou Mo, Boyuan Yang). Closes: #867133, #877929
249   [ Updated scripts translations ]
250   * German (Helge Kreutzmann).
252   [ Updated man pages translations ]
253   * Dutch (Frans Spiesschaert). Closes: #862924
254   * German (Helge Kreutzmann).
256  -- Guillem Jover <guillem@debian.org>  Tue, 17 Oct 2017 01:51:16 +0200
258 dpkg (1.18.24) unstable; urgency=medium
260   [ Guillem Jover ]
261   * Add missing symbols to the libdpkg map file.
262   * Fix dpkg-shlibdeps to preserve the Dpkg::Shlibs::find_library() order
263     when scanning symbols/shlibs files. This was causing generation of bogus
264     dependencies when multiple packages provide the same SONAME on different
265     directories. Regression introduced in dpkg 1.18.17. Closes: #860979
266   * Make dpkg-maintscript-helper print all unowned files from a directory
267     when printing the error message, to ease debugging those problems after
268     the fact. Closes: #813454, #860238
269     Based on a patch by Bastien ROUCARIÈS <roucaries.bastien@gmail.com>.
270   * Add duplicate prevention code for debian/files to dpkg-genbuildinfo, so
271     that successive runs with different versions and equivalent build types
272     do not generate multiple .buildinfo entries to be uploaded, which is
273     similar to what dpkg-gencontrol is doing for .deb files.
274   * Fix conffile takeover handling during unpack in dpkg on --root or
275     on diversions. Closes: #837051, #858004
276   * Fix digest inference for shared conffiles, causing bogus takeover
277     unpack errors. Regression introduced in dpkg 1.16.9. Closes: #861217
278   * Improve tar entry metadata parsing in dpkg:
279     - Do not parse device numbers for non block nor char tar entry objects.
280     - Make the existing octal parser more robust, by checking for the
281       expected format of leading zeros or spaces, followed by any ASCII
282       octal characters (0-7), followed by zero or more space or NULs.
283     - Add support for base-256 encoded numeric fields, to support large
284       values, for UID/GID, device number, size and even signed timestamps.
285       This is necessary not only to be able to store larger values, but to
286       cover packages that can already be generated by dpkg-deb, given that
287       it uses the system GNU tar when building. Closes: #850834
288   * Architecture support:
289     - Add support for ARM64 ILP32. Closes: #824742
290       Thanks to Wookey <wookey@wookware.org>.
291   * Perl modules:
292     - Remove obsolete hardening-wrapper support from Dpkg::Vendor::Ubuntu.
293       Thanks to Adam Conrad <adconrad@0c3.net>.
294     - Bump $Dpkg::Deps::VERSION to match the one documented in CHANGES.
295     - Ignore by default debian/files.new and debian/files for all source
296       formats in Dpkg::Source::Package, because these are generated files
297       with well known pathnames, part of the public interface, and with
298       dpkg-genbuildinfo always injecting .buildinfo entries into
299       debian/files, this meant this could disrupt previous workflows based
300       on not cleaning the source tree.
301   * Documentation:
302     - Many spelling fixes. Thanks to Josh Soref <jsoref@gmail.com>.
303     - Do not include mispellings in changelogs, as that makes detecting them
304       more difficult.
305   * Build system:
306     - Use libexec variable for auxiliary internal programs, and set it to
307       /usr/lib on Debian and derivatives.
308     - Check that the detected tar is a GNU tar.
309     - Check that the detected patch is a GNU patch, so that we get a directory
310       traversal resistant patch implementation. This fixes CVE-2017-8283 by
311       delegating those checks to patch(1), so that we trap blank-indented
312       diff hunks trying to escape from the source tree.
313   * Test suite:
314     - Add a test case for blank-indented patches which were the cause for
315       CVE-2017-8283.
316     - Handle files with non-zero sizes in c-tarextract libdpkg test code.
318   [ Updated programs translations ]
319   * Catalan (Guillem Jover).
320   * Czech (Miroslav Kure).
322   [ Updated dselect translations ]
323   * Catalan (Guillem Jover).
325   [ Updated scripts translations ]
326   * Catalan (Guillem Jover).
328   [ Updated man pages translations ]
329   * German (Helge Kreutzmann, David Rabel). Closes: #857449
330   * Spanish (Javier Fernández-Sanguino).
332  -- Guillem Jover <guillem@debian.org>  Wed, 17 May 2017 13:16:25 +0200
334 dpkg (1.18.23) unstable; urgency=medium
336   [ Guillem Jover ]
337   * Handle unmatched arch-qualified virtual packages in dpkg-genbuildinfo,
338     instead of letting perl die. Closes: #849944
339   * Declare .buildinfo format as stable with version 1.0.
340   * Do not depend on cxxabi.h to have declared __cxa_pure_virtual, use
341     the same “__cxxabiv1” namespace as specified in the C++ ABI, instead
342     of using the “abi” alias intended for use by userland.
343     Thanks to Jörg Sonnenberger <joerg@netbsd.org>.
344   * Add a comment on any C code switch case that falls through. Fixes new
345     gcc-7 warnings.
346   * Use snprintf() instead of sprintf() in libdpkg when constructing the ar
347     member header, as we might overflow depending on the input data.
348   * Portability:
349     - Do not redeclare sys_siglist in libcompat when the system does so.
350       Thanks to Thomas Klausner <wiz@NetBSD.org>.
351     - Rename err variable to ret in start-stop-daemon as the former is a
352       function on BSDs.
353     - Use 5-argument kvm_getprocs() call form on OpenBSD in start-stop-daemon.
354     - Use correct struct kinfo_proc ruid submember name on NetBSD in
355       start-stop-daemon.
356     - Define _KMEMUSER for NetBSD to get declarations for various
357       struct kinfo_proc members in start-stop-daemon.
358   * Perl modules:
359     - Do not special case EM_SPARC32PLUS for NetBSD in Dpkg::Shlibs::Objdump,
360       the code has been fixed in NetBSD as that situation could not happen.
361     - Fix read() error handling in Dpkg::Shlibs::Objdump::get_format() to
362       gracefully ignore non-ELF files again. Closes: #854536
363     - Emit an explicit warning from Dpkg::Shlibs::Objdump::Object::analyze()
364       for unknown executable formats instead of relying on objdump doing so.
365     - Do not parse bogus ELF binaries in Dpkg::Shlibs::Objdump::get_format().
366       Reported by Niels Thykier <niels@thykier.net>.
367     - Add ‘.mnt-ignore’ to the default ignore lists in Dpkg::Source::Package,
368       as we were already ignoring the ‘_MTN’ pathnames. Closes: #855450
369       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
370     - Mark kfreebsd-amd64, kfreebsd-i386, sparc and sparc64 architectures as
371       having gcc builtin PIE in Dpkg::Vendor::Debian.
372     - Switch PIE handling in Dpkg::Vendor::Debian to have no default (!) and
373       delegate the setting to gcc or an explicit request by a user. This is
374       needed to cope with the general PIE brokenness situation in Debian, and
375       the current specific brokenness of a Debian gcc patch mangling the dpkg
376       build flags. Closes: #848129, #845550
377   * Documentation:
378     - Clarify the requirements for deb-conffile(5) pathnames. Closes: #854417
379       Proposed by Dieter Adriaenssens <dieter.adriaenssens@gmail.com>.
380     - Document dpkg-source --before-build and --after-build in --help output.
381     - Document dpkg-buildpackage --ignore-builtin-builddeps in --help output.
382   * Build system:
383     - Check <sys/proc.h> by also including <sys/param.h>, on several BSD
384       systems the header is not self-contained.
385     - Handle libmd implementations built into system libc, as found on some
386       BSD systems.
387     - Do not fail on missing compression libraries or headers on automatic
388       detection mode. Regression introduced in dpkg 1.18.14.
389   * Test suite:
390     - Use the detected perl interpreter instead of a random one from PATH.
392   [ Updated programs translations ]
393   * Dutch (Frans Spiesschaert). Closes: #856325
395   [ Updated scripts translations ]
396   * German (Helge Kreutzmann).
398   [ Updated man pages translations ]
399   * Dutch (Frans Spiesschaer). Closes: #856326
401  -- Guillem Jover <guillem@debian.org>  Mon, 06 Mar 2017 05:41:11 +0100
403 dpkg (1.18.22) unstable; urgency=medium
405   [ Guillem Jover ]
406   * Turn status file parser errors on bogus field blank lines into warnings,
407     otherwise the system cannot be easily recovered from. Regression
408     introduced in dpkg 1.16.1. Reported by Jay Freeman <saurik@saurik.com>.
409   * Perl modules:
410     - Mask ARM ABI bits in the ELF processor flags in Dpkg::Shlibs::Objdump.
411       These are too unreliable to be used for exact matching. Closes: #853793
413   [ Updated programs translations ]
414   * Turkish (Mert Dirik). Closes: #853202
416   [ Updated scripts translations ]
417   * German (Helge Kreutzmann).
419   [ Updated man pages translations ]
420   * German (Helge Kreutzmann).
422  -- Guillem Jover <guillem@debian.org>  Wed, 01 Feb 2017 05:48:58 +0100
424 dpkg (1.18.21) unstable; urgency=medium
426   [ Guillem Jover ]
427   * Revert "Generate Testsuite-Restrictions fields from the test restrictions
428     in dpkg-source into .dsc files". This change is contentious and should
429     have been discussed more widely. Given that this has been live only for
430     a couple of days, the impact should be minimal, but still something to
431     take into account once and if this gets reintroduced. Closes: #852820
432   * Perl modules:
433     - Map alternative or old ELF machine types to canonical ones. We need
434       those to match on the encoded ABI, otherwise dpkg-shlibdeps will not
435       be able to find the objects.
437   [ Updated man pages translations ]
438   * German (Helge Kreutzmann).
440  -- Guillem Jover <guillem@debian.org>  Sun, 29 Jan 2017 20:29:58 +0100
442 dpkg (1.18.20) unstable; urgency=medium
444   [ Guillem Jover ]
445   * Add a new --no-sign option to dpkg-buildpackage, to make it possible to
446     disable all signing in a future-proof way.
447   * Make dpkg-buildpackage --unsigned-changes not sign .buildinfo either.
448     This breaks the expectations of users and tools, because there was no
449     way previously to request no signing at all. Closes: #852822
450   * Perl modules:
451     - Mask the machine bits for SH and MIPS in the ELF processor flags in
452       Dpkg::Shlibs::Objdump. These do not define the ABI, and make the
453       objects not match when they should, when looking for shared libraries
454       from dpkg-shlibdeps.
455     - Encode the ELF ABI as a big-endian byte stream, so that decoding for
456       output gives meaningful results.
457     - Disable the NFS-unsafe warning on Linux, as using flock() on NFS has
458       been safe for some time now. Addresses: #677865 (on Linux)
459   * Documentation:
460     - Document the Built-For-Profile field in deb-changes(5).
462   [ Updated scripts translations ]
463   * German (Helge Kreutzmann).
465   [ Updated man pages translations ]
466   * German (Helge Kreutzmann).
468  -- Guillem Jover <guillem@debian.org>  Sat, 28 Jan 2017 06:32:53 +0100
470 dpkg (1.18.19) unstable; urgency=medium
472   [ Guillem Jover ]
473   * Stop emitting Built-For-Profiles from dpkg-gencontrol. The information
474     is already provided in .buildinfo and .changes files, and including it
475     in the binary packages makes them unreproducible even when the profile
476     used would not alter its contents. Closes: #831524
477   * Do not allow empty epochs and revisions in versions. When there's at
478     least one colon or one dash, we should expect epoch and revision numbers.
479   * Always set SOURCE_DATE_EPOCH in dpkg-buildpackage and dpkg-source. Use
480     the current date if the changelog does not have one. Closes: #849081
481   * Refactor update-alternatives pathname existence check into a new function.
482   * Avoid useless repeated lstat()s in update-alternatives.
483   * Only check for debian/tests/control file once in dpkg-source.
484   * Generate Testsuite-Restrictions fields from the test restrictions in
485     dpkg-source into .dsc files. Closes: #847926
486     Based on a patch by Iain Lane <laney@debian.org>.
487   * Improve the ELF ABI mismatch detector in dpkg-shlibdeps, by parsing the
488     ELF header ourselves. While still not perfect (things like linux-i386 and
489     hurd-i386 will still match), it will filter lots of previously matching
490     objects that should have been ignored, and will work even when objdump
491     does not know about the specific object details. Closes: #849913
492   * Add initial support for DEB_BUILD_OPTIONS to dpkg-genbuildinfo. This will
493     make it possible to enable or disable specific features that should be
494     recorded in the .buildinfo file. For now only “all” and “path” are
495     supported. Closes: #848705
496   * Add again the architecture from the filename to .changes files for any
497     artifact with one. This reverts the change introduced in dpkg 1.18.11.
498   * Fold the filtering and checksumming of files to distribute in a .changes
499     file in dpkg-genchanges into the initial loop. This way we do not include
500     architectures for artifacts we are not going to distribute, and do not
501     unnecessarily recompute the checksums for artifacts like the sources.
502   * Do not compute the architecture list twice in dpkg-genchanges.
503   * Include .buildinfo files also for source-only uploads in dpkg-genchanges.
504     Closes: #846164
505   * Fix check for expected number of binary artifacts in dpkg-genchanges, to
506     only take into account the artifacts that we are distributing.
507   * Fix parsing of Pre-Depends and Depends in dpkg-genbuildinfo, so that
508     the code parses both and not just the first to appear in the stanza.
509     Based on a patch by Johannes Schauer <josch@debian.org>.
510   * Add support for signed .buildinfo files to dpkg-buildpackage. Add new
511     -ui and --unsigned-buildinfo options. Closes: #843925
512   * Portability:
513     - On GNU/Hurd try to use the new process executable name attribute from
514       libps, to properly match on start-stop-daemon --exec.
515   * Perl modules:
516     - Fix Debian architecture wildcard parsing so that matching four-tuple
517       matchings work. Missed in dpkg 1.18.11.
518       Reported by Julian Andres Klode <jak@debian.org>.
519     - Add new import tags for Dpkg::Arch.
520     - Abort on EOF in patch name prompt in Dpkg::Source::Package::V2,
521       instead of getting into an infinite loop. Closes: #851441
522     - Call anonymous subs via -> operator instead of casting with &, and fix
523       bogus POD documentation to match the code.
524     - Add new Auto-Built-Package field to Dpkg::Control::Fields.
525     - Add a new debug() reporting function, and switch code to use it.
526     - Add new Dpkg::BuildOption parse_features() method refactored from
527       Dpkg::Vendor::Debian.
528   * Documentation:
529     - Cleanup software requirements in README.
530     - Move control member file references from dpkg(1) to deb(5).
531     - Fix typos in docs and code comments.
532     - Document Auto-Built-Package field in deb-control(5).
533   * Build system:
534     - Disable disk pre-allocation by default, but let the builder re-enable
535       it via a new configure option. This has been causing major performance
536       issues on "modern" filesystems.
537   * Packaging:
538     - Add debsig-verify to dpkg Suggests. The code optionally supports this
539       specific signed .deb verification program.
540       Prompted by Stuart Prescott <stuart@debian.org>.
541   * Test suite:
542     - Generate and check all currently possible architecture wildcards.
543     - Correctly iterate over all default and passed .dsc template substvars.
545   [ Updated programs translations ]
546   * Dutch (Frans Spiesschaert). Closes: #851889
547   * German (Sven Joachim).
549   [ Updated scripts translations ]
550   * German (Helge Kreutzmann).
552   [ Updated man pages translations ]
553   * Dutch (Frans Spiesschaer). Closes: #851891
554   * German (Helge Kreutzmann).
556  -- Guillem Jover <guillem@debian.org>  Fri, 27 Jan 2017 05:43:36 +0100
558 dpkg (1.18.18) unstable; urgency=medium
560   [ Guillem Jover ]
561   * Documentation:
562     - Document DPKG_DATADIR in an ENVIRONMENT section in dpkg-architecture(1).
563     - Add a rationale for the purpose of Testsuite-Triggers in dsc(5).
564       Prompted by Mattia Rizzolo <mattia@debian.org>.
565   * Packaging:
566     - Revert the perl to perl:any dependency change in libdpkg-perl, as that
567       breaks debootstrap in stable (jessie), testing (stretch) and unstable,
568       which do not support arch-qualified dependencies. We'll have to live
569       with the Multi-Arch hinter being unhappy for now.
571   [ Updated man pages translations ]
572   * German (Helge Kreutzmann).
574  -- Guillem Jover <guillem@debian.org>  Tue, 20 Dec 2016 13:53:12 +0100
576 dpkg (1.18.17) unstable; urgency=medium
578   [ Guillem Jover ]
579   * Handle empty versions on validation in dpkg-maintscript-helper as they
580     are optional. Regression introduced in dpkg 1.18.16. Closes: #848422
581   * Validate versions too in dpkg-maintscript-helper symlink_to_dir and
582     dir_to_symlink commands.
583   * Improve logic to identify packages owning a library in dpkg-shlibdeps,
584     by handling the same library appearing more than once on the filesystem
585     Thanks to Raphaël Hertzog <hertzog@debian.org>. Closes: #843073
586   * Documentation:
587     - Clarify that dpkg-buildpackage does not run «dpkg-source --before-build»
588       when using the -T option. Closes: #649531
589     - Document that dpkg sets DPKG_ADMINDIR on maintainer script environment.
590   * Packaging:
591     - Do not let dh_perl insert a dependency for libdpkg-perl, because it
592       emits perl instead of perl:any. Instead hardcode a perl:any dependency
593       to comply with the perl policy and make the Multi-Arch hinter happy.
595   [ Updated scripts translations ]
596   * German (Helge Kreutzmann).
598   [ Updated man pages translations ]
599   * German (Helge Kreutzmann).
601  -- Guillem Jover <guillem@debian.org>  Mon, 19 Dec 2016 02:43:10 +0100
603 dpkg (1.18.16) unstable; urgency=medium
605   [ Guillem Jover ]
606   * Add support for specifying multiple targets on «dpkg-buildpackage -T»
607     which will be run successively. Closes: #671074
608   * Reject empty upstream versions in C and perl code. These are not permitted
609     by deb-version(5), but the code was letting those through.
610   * Use lzma_cputhreads() instead of sysconf(_SC_NPROCESSORS_ONLN) as the
611     former is way more portable.
612   * Automatically decrease xz encoder threads to try to not exceed available
613     memory limits. This should alleviate the insane requirements of memory
614     needed on 32-bit architectures with many cores, which results in more
615     than the userspace addressable memory, when using settings such as
616     -z9 and/or -Sextreme in dpkg-deb. Closes: #846564
617   * Add new dpkg --validate-<thing> commands to validate the syntax of
618     various <thing>s, where the current list is «pkgname», «trigname»,
619     «archname» and «version».
620   * Use the new dpkg --validate-version command in dpkg-maintscript-helper,
621     instead of abusing the --compare-versions command to perform version
622     validation. Closes: #844701
623   * Allow readlink(2) to return a size smaller than stat(2) in dpkg. Some
624     bogus filesystems do not return the actual symlink size in st_size,
625     which contradicts POSIX. But allowing the case where the returned size
626     is smaller than the one used to allocate memory is harmless, although
627     suspect. Let it through, but still print a warning so that users can
628     install stuff but are reminded they need to get a fixed filesystem in
629     place. This has affected at least ecryptfs in the past and now
630     file-based encryption support in ext4 on Android N.
631   * Add new dpkg-query virtual field source:Upstream-Version. Closes: #844348
632   * Perl modules:
633     - Whitelist DPKG_GENSYMBOLS_CHECK_LEVEL, DPKG_ROOT, DPKG_ADMINDIR and
634       DPKG_DATADIR environment variables in Dpkg::Build::Info.
635   * Documentation:
636     - State the current working directory used when running dpkg-buildpackage
637       hooks.
638     - Add a new ENVIRONMENT section to dpkg-gensymbols(1) and document
639       DPKG_GENSYMBOLS_CHECK_LEVEL there.
640     - Fix bogus description of --force-confmiss in dpkg(1). Regression
641       introduced in 1.16.4. Reported by Sven Joachim <svenjoac@gmx.de>.
642       Closes: #846395
643     - Update dpkg-parsechangelog parser options. The options specific to
644       the changelog parser program did not get updated when the parser got
645       switched to be a perl module. Missed in dpkg 1.18.8. Closes: #848189
646   * Build system:
647     - Enable compression libs also in automatic check mode in configure.
648     - Honor DPKG_DATADIR again in the installed Dpkg modules. This was an
649       explicit public interface, documented in the man page.
651   [ Updated programs translations ]
652   * Dutch (Frans Spiesschaert). Closes: #848378
653   * Simplified Chinese (Zhou Mo). Closes: #844955
655   [ Updated scripts translations ]
656   * German (Helge Kreutzmann).
657   * Swedish (Martin Bagge). Closes: #847220
659   [ Updated man pages translations ]
660   * Dutch (Frans Spiesschaert). Closes: #848379
661   * German (Helge Kreutzmann).
663  -- Guillem Jover <guillem@debian.org>  Sat, 17 Dec 2016 00:25:53 +0100
665 dpkg (1.18.15) unstable; urgency=medium
667   [ Guillem Jover ]
668   * Improve PIE flags support:
669     - Do not enable PIE when linking static programs. glibc-based systems
670       do not support this combination and produce very bogus output.
671       Proposed by Szabolcs Nagy <nsz@port70.net>. Closes: #843714
672   * On source builds add 'source' to the Architecture field in the
673     .buildinfo file in dpkg-genbuildinfo.
674   * Add new Build-Date field to .buildinfo files.
675   * Generate deterministic .buildinfo filenames in dpkg-genbuildinfo,
676     following the same pattern as used for .changes files.
677   * Bump .buildinfo Format to version 0.2.
678   * Change dpkg-buildpackage -j and -J on “auto” mode to fallback to serial
679     execution when we cannot infer the number of online processors on
680     unsupported or exotic systems. This should be a safer mode of operation.
681     Proposed by Simon McVittie <smcv@debian.org>.
682   * Only preallocate disk size in dpkg for unpacked files bigger than 16 KiB.
683     Closes: #824636
684   * Perl modules:
685     - Validate architecture arguments in Dpkg::Deps deps_parse().
686       Prompted by Johannes Schauer <josch@debian.org>.
687   * Documentation:
688     - Escape dashes in field names in dpkg-buildinfo(1).
689   * Test suite:
690     - Mark partially documented POD modules as TAP TODO.
692   [ Updated man pages translations ]
693   * German (Helge Kreutzmann).
695  -- Guillem Jover <guillem@debian.org>  Wed, 16 Nov 2016 03:28:05 +0100
697 dpkg (1.18.14) unstable; urgency=medium
699   [ Guillem Jover ]
700   * Improve PIE flags support:
701     - Rename the spec name cc1_options to self_spec.
702       Suggested by James Clarke <jrtc27@jrtc27.com>
703     - Do not set PIE options if they have been negated, and do not reset
704       them if they have been requested.
705     Closes: #843791, #843826
706   * Fix use after free error in dpkg. It was trying to print messages that
707     had already been freed as part of the database memory pool, causing in
708     some cases segfaults when reporting the error summary at the end.
709     Regression introduced in dpkg 1.18.11. Closes: #843874
710   * Change default color behavior to auto.
711   * Perl modules:
712     - Fix confusing date parse error message in Dpkg::Changelog::Entry::Debian
713       when the date contains “May”. Closes: #843829
714       Thanks to Nishanth Aravamudan <nish.aravamudan@canonical.com>.
715     - New module Dpkg::Build::Info module refactored from dpkg-genbuildinfo.
716       Requested by Johannes Schauer <josch@debian.org>.
717   * Documentation:
718     - Improve the DEB_BUILD_OPTIONS description in dpkg-buildpackage(1).
719       And mention the parallel option there.
720     - Explicitly mention in dpkg-buildpackage(1) that setting the number
721       of parallel jobs to 1, restores the serial behavior.
722       Prompted by Thorsten Glaser <t.glaser@tarent.de>.
723   * Packaging:
724     - List public Dpkg::Control::Tests module in libdpkg-perl description.
725   * Test suite:
726     - Do not fail tests on missing fakeroot, just skip them.
727   * Build system:
728     - Fix inversion logic in libmd configure check when requested explicitly.
729     - Do not consider the compressor libraries available in configure if the
730       headers are not usable.
731     - Fix DPKG_BUILD_RELEASE_DATE to require DPKG_PROG_PERL, as it uses perl.
732     - Change DPKG_BUILD_RELEASE_DATE to use perl instead of date(1) to
733       format the timestamp, as the former is more portable.
735   [ Updated man pages translations ]
736   * German (Helge Kreutzmann).
738  -- Guillem Jover <guillem@debian.org>  Fri, 11 Nov 2016 02:26:08 +0100
740 dpkg (1.18.13) unstable; urgency=medium
742   * Improve PIE flags support:
743     - Retroactively document in the changelog that PIE is enabled by default
744       on all supported architectures regardless of gcc doing so itself on a
745       subset of them.
746     - When emitting PIE flags on architectures where gcc does not inject
747       those itself, do it via a specs file too, so that maintainers can
748       use them unconditionally regardless of the object being compiled
749       or linked.
750     - When injecting -no-pie for linking via the gcc specs file also
751       inject -fno-PIE.
752     - Update the documentation.
753   * Perl modules:
754     - Do not try to load non-files in Dpkg::Dist::Files load_dir method.
755       Fixes test failures on non-Linux architectures. Closes: #843436
756   * Packaging:
757     - Add missing Breaks on old libdpkg-perl to dpkg. Closes: #843429
758       Thanks to Sven Joachim <svenjoac@gmx.de>.
759     - Ship deb-src-files(5) man page in dpkg-dev.
760   * Build system:
761     - Use deterministic dates for generated man pages. Closes: #843469
762       Thanks to Reiner Herrmann <reiner@reiner-h.de>.
764  -- Guillem Jover <guillem@debian.org>  Mon, 07 Nov 2016 03:28:42 +0100
766 dpkg (1.18.12) unstable; urgency=medium
768   * Build system:
769     - Set umask to 0022 for functional test suite.
770   * Documentation:
771     - Rename FILE FORMATS section to FILES in dpkg-source(1).
772     - Use "dpkg suite" as the manual item in man pages .TH macro.
773     - Use %VERSION% in dpkg-statoverride(1) source item in man page .TH macro.
774     - Document environment variables used by source format modules in
775       dpkg-source(1).
777  -- Guillem Jover <guillem@debian.org>  Sun, 06 Nov 2016 05:36:20 +0100
779 dpkg (1.18.11) unstable; urgency=medium
781   [ Guillem Jover ]
782   * Make dpkg-maintscript-helper conffile commands more robust. Check that
783     conffile pathname arguments are absolute paths and verify version number
784     to be valid. Thanks to David Kalnischkies <david@kalnischkies.de>.
785   * Add support to dpkg-scanpackages for scanning a single binary file.
786     Thanks to Javier Serrano Polo <javier@jasp.net>. Closes: #833964
787   * Obsolete dpkg-deb bzip2 and lzma compression methods by emitting errors.
788   * Remove obsolete dpkg-deb --old and --new options.
789   * Remove obsolete dpkg --print-installation-architecture option.
790   * Fix dpkg error messages when parsing md5sum files to include the package
791     name affected.
792   * Do not emit epochs for unambiguous versions in deb-split package header.
793     Regression introduced in dpkg 1.18.0.
794   * Make the deb-split(5) generation in dpkg-split reproducible, by using the
795     timestamp from SOURCE_DATE_EPOCH.
796   * Generate reproducible file modes for the .deb control member contents.
797     Closes: #787980
798   * Switch from non-freeing malloc to m_malloc on statdb slurping.
799   * Switch from non-freeing malloc to m_malloc for invoke hooks.
800   * Always reset the package in-core database when shutting down the package
801     database journal.
802   * Do not crash if we pass a NULL cip argument to setaction() in libdpkg.
803   * Shutdown the package database journal in dpkg --get-selections.
804   * Fix (deactivated) dpkg --command-fd to initialize and reset the files
805     database on each action.
806   * Implement source stanza substvars prefixed with S: in dpkg-gencontrol.
807     These auto-generated variables map each source stanza field into an
808     output substvar prefixed with “S:”.
809   * Make dpkg-source generate reproducible source packages when run
810     standalone, by honoring SOURCE_DATE_EPOCH.
811   * Fix several short-lived memory leaks in update-alternatives.
812     Reported by Helmut Grohne <helmut@subdivi.de>.
813   * Only set the error context message in libdpkg if it has been formatted
814     correctly.
815   * Return error in error_context_errmsg_format() only if the error message
816     gets truncated. In case we have to use the emergency buffer because the
817     previous vasprintf() call failed, we should only return an error code if
818     the vsnprintf() call on the emergency buffer truncates the output.
819   * Fix free() on uninitialized pointer in error_context_errmsg_format() in
820     libdpkg. Regression introduced in dpkg 1.18.7. Closes: #842004
821   * Move C++ support code into its own file.
822   * Add replacement new and delete array operators to C++ support code.
823   * Implement local abi::__cxa_pure_virtual. When using g++ if we provide our
824     version of this function we can avoid the dependency on either libstdc++
825     or libsup++.
826   * Include missing <new> for new and delete operator declarations.
827   * Do not log nor print duplicate dpkg removal action. We print
828     “Removing <package> (<version>)” lines and log remove action twice
829     when purging a package from frontends, because they usually first call
830     --remove and then --purge sequentially. When purging a package which is
831     already in config-files (i.e. it has been removed before), do not print
832     nor log the remove action.
833   * Remove default «.» from @INC before loading perl modules in perl code.
834     Fixes CVE-2016-1238.
835   * Give more information on --set-selections warnings. Closes: #842230
836   * Add new DEB_*_ARCH_ABI and DEB_*_ARCH_LIBC variables to dpkg-architecture
837     and architecture.mk Makefile fragment.
838   * Do substvar instantiation just once in dpkg-gencontrol.
839   * Fix dpkg-gencontrol to not update the files list file (debian/files)
840     when printing to STDOUT (via -O).
841   * Do not add architectures to .changes Architecture field for artifacts
842     that are not a .deb or .udeb in dpkg-genchanges.
843   * Add support for .buildinfo files:
844     - Add new dpkg-genbuildinfo command.
845     - Hook it into the dpkg-buildpackage machinery.
846     Based on a patch by Jérémy Bobbio <lunar@debian.org>. Closes: #138409
847   * Enable dpkg-buildpackage -Jauto by default. Closes: #842845
848   * Fix dpkg to not fail when removing non-existent backup files on read-only
849     filesystems. Closes: #838877
850   * Enable PIE on all supported architectures and handle PIE enabled by
851     default in gcc. On architectures where gcc enables them by default,
852     stop setting -fPIE and -pie, and set -fno-PIE and -no-pie when disabling
853     «pie» via gcc specs files, so that we do not emit them on situations
854     where it would be inappropriate. Closes: #835149
855     Based on a patch by Bálint Réczey <balint@balintreczey.hu>.
856   * Architecture support:
857     - Add support for AIX operating system.
858     - Add a version pseudo-field to the arch tables.
859     - Internally represent Debian architectures as quadruplets.
860   * Portability:
861     - Cast off_t variables to intmax_t when printing them with "%jd".
862     - Add missing <string.h> include in libdpkg.
863     - Cast strlen() return value to ssize_t to match write() return type.
864     - Use underscore-prefixed system preprocessor symbols instead of namespace
865       polluting ones (such as “linux”, “OPENBSD” or “hpux”).
866     - Handle _POSIX_PRIORITY_SCHEDULING being defined to -1 or 0 in
867       start-stop-daemon. This affects Mac OS X.
868     - On FreeBSD return STATUS_UNKNOWN instead of false in start-stop-daemon
869       do_procinit().
870     - Port start-stop-daemon process handling to Mac OS X.
871       Based on a patch by Mo McRoberts <mo@nevali.net>.
872     - Port start-stop-daemon process handling to AIX.
873     - Fix lookup by name on update-alternatives --config. The code was wrong
874       and not working at least on Mac OS X, making the test suite to fail.
875     - Only use gzip --rsyncable in Dpkg::Compression on Debian and hopefully
876       derivatives, by using perl's $Config{cf_by} variable to key on. The
877       Debian-specific --rsyncable option should have never been accepted for
878       use in dpkg to begin with.
879     - Use our own dpkg_ar_hdr struct instead of relying on the system
880       ar_hdr struct, as the ar format is not standardized and does vary
881       across systems, for example on AIX.
882     - Add <sys/sysmacros.h> on AIX for major() and minor().
883     - Add missing <errno.h> in libcompat.
884     - Include libcompat getopt module when we need getopt_long.
885     - Disable gettext support in libcompat getopt module. We do not carry
886       translations for this module, and it makes it pull libintl for programs
887       that might not use it otherwise.
888   * Perl modules:
889     - Obsolete Source-Version substvar in Dpkg::Substvars by emitting errors.
890     - Rework keyring hooks in Dpkg::Vendor. Deprecate the keyrings hook, and
891       add package-keyrings, archive-keyrings and archive-keyrings-historic
892       hooks. Prompted by Johannes Schauer <josch@debian.org>.
893     - Make the Dpkg::Substavars parse() method return the number of substvars
894       parsed.
895     - Add new set_field_substvars() method to Dpkg::Substvars.
896     - Fix reproducible source package support in Dpkg::Source::Archive, by
897       sorting the tar contents with --sort=name.
898     - Prefix private Dpkg::Source::Package::* functions with _.
899     - Defer filehandle closures in Dpkg::IPC::spawn() to avoid double-close.
900       Closes: #839905, #840293
901     - Always map the build type to the shortest string form in
902       Dpkg::Build::Type::get_build_options_from_type().
903     - Change Dpkg::Compression::FileHandle to inherit directly from IO::File
904       instead of FileHandle.
905     - Add new Dpkg::PROGTAR variable to store GNU tar command name.
906     - Add new Dpkg::PROGMAKE variable to store GNU make command name.
907     - Add new CTRL_FILE_BUILDINFO type to Dpkg::Control.
908     - Add new .buildinfo fields to Dpkg::Control::Fields.
909     - Add new builtin-system-build-paths Dpkg::Vendor hook.
910     - Cope gracefully with changelogs missing a timestamp trailer.
911       Based on a patch by Ian Jackson <ijackson@chiark.greenend.org.uk>.
912       Regression introduced in dpkg 1.18.8. Closes: #843248
913   * Packaging:
914     - Add liblocale-gettext-perl to libdpkg-perl Recommends.
915     - Wrap and document dependency relationships.
916     - Remove obsolete dependency relationships, since Debian oldstable.
917     - Remove update-alternatives, dpkg-divert and dpkg-statoverride
918       compatibility symlinks, again.
919     - Use perl:Depends via dh_perl instead of a hardcoded perl in Depends.
920     - Add perl:Depends to dpkg-dev Depends.
921     - Remove unused dh_strip from binary_indep target.
922     - Remove ancient upgrade code from maintainer scripts (before 1.15.x).
923     - Stop compressing the dpkg.deb package with gzip.
924     - Move dpkg to be the first binary package stanza in debian/control, as
925       debhelper assigns special meaning by considering it the main package.
926     - Set MAKEFLAGS to -jN from parallel=N in DEB_BUILD_OPTIONS.
927   * Documentation:
928     - Update custom changelog parser API support status in README.api.
929     - Fix typos in docs and man pages. Thanks to Jakub Wilk <jwilk@debian.org>
930       Closes: #834584
931     - Fix formatting in SOURCE_DATE_EPOCH description in dpkg-deb(5).
932     - Improve dpkg-deb --build arguments documentation in dpkg-deb(1).
933       Prompted by Johannes Schauer <josch@debian.org>.
934     - Document the .changes filename that dpkg-buildpackage generates in
935       dpkg-buildpackage(1). Prompted by Johannes Schauer <josch@debian.org>.
936     - Add basic maintainer script man pages: deb-postinst(5), deb-postrm(5),
937       deb-preinst(5) and deb-prerm(5).
938     - Add new deb-src-files(5) man page.
939       Prompted by Johannes Schauer <josch@debian.org>.
940     - Add man page references to other binary control files in dpkg(1).
941     - Add version when "new" substvars were introduced in deb-substvars(5).
942     - Switch deb-triggers(5) types into a proper list.
943     - Itemize --log format entries in dpkg(1).
944     - Turn the update-alternatives(1) --query example item into a sub-section.
945     - Turn the Multi-Arch values into a list in deb-control(5).
946     - Improve user-defined field export marker documentation in
947       deb-src-control(5); clarify that X can be followed by zero or more
948       (instead of one or more) letters and turn the items into a proper list.
949     - Generate the man pages at build time. This makes it possible to process
950       them and update several variable strings such as system and package
951       pathnames, the release date and the dpkg suite version. And makes it
952       possible to use UTF-8 in the source and convert to the more conservative
953       groff escape sequences on the output.
954     - Switch from groff escape sequences to UTF-8 in man pages sources.
955     - Disable hyphenation in man pages globally, because it performs very
956       poorly on many technical terms.
957     - Append the German man pages addendum at the end of the translation,
958       instead of assuming that every page has the SEE ALSO section.
959     - Explicitly mention that Dpkg::Checksums::add_from_file() is used to
960       verify digests too. Prompted by Johannes Schauer <josch@debian.org>.
961     - Document the behavior for consecutive calls to Dpkg perl module parse()
962       methods. Prompted by Johannes Schauer <josch@debian.org>.
963     - Document obsolete functions in Dpkg::Conf.
964   * Test suite:
965     - Make test main function a TEST_ENTRY macro. This avoids confusing
966       coverage programs, as the file that actually contains the main function
967       is the test itself.
968     - Rename test suite commands to be prefixed with «c-» instead of «t-».
969     - Add new dpkg-source functional tests.
970     - Add new dpkg-buildpackage functional tests.
971     - Add an initial functional test suite for dpkg-deb and dpkg-split.
972     - Skip the involved tests if IO::String is missing.
973     - Add new unit test for libdpkg error handling.
974     - Delete MAKEFLAGS environment variable when testing make invocations.
975     - Pass -q to grep command to suppress matched output in pod-coverage.t.
976     - Ignore POD coverage for partially private modules.
977   * Build system:
978     - Add support for profiling perl modules.
979     - Clean up compiler and linker automatic flag usage in configure.
980     - Fix the __progname check to avoid the optimizer discarding the symbol.
981     - Fix M4sh/Autoconf coding style. Add a new section to coding-style.txt
982       describing M4sh/Autoconf.
983     - Disable C++ exceptions for dselect.
984     - Fix typo in SE Linux library detection code, only affecting static
985       mode (not used in Debian). Regression introduced in dpkg 1.18.8.
986     - Change --with-* option logic to default to check.
987     - Disable -Wtautological-constant-out-of-range-compare (for clang).
988     - Check the availability of -W<warning> variant instead of -Wno-<warning>.
989       As at least gcc and clang do not warn on -Wno-* warning flags, only
990       when some unrelated warning needs to be emitted.
991     - Bump po4a version to 0.43 (we are using --porefs wrap option).
992     - Add support for running the test suite in parallel.
993     - Specify exec argument for TAP::Harness to gracefully handle non-perl
994       executables with older versions of the module.
995     - Require libselinux 2.0.99 for baseline API, remove static linking
996       support, use pkg-config unconditionally, and perform refinement checks
997       only if available.
998     - Check for the required minimal perl version.
999     - Use builddir instead of CURDIR in man Makefile.am.
1000     - Use cp with -R instead of -r (the former is more portable and not
1001       marked as deprecated by POSIX).
1002     - Print an actual newline instead of a literal \n in lcov output.
1003     - Do not honor DPKG_DATADIR on the installed Dpkg module.
1004     - Pass --as-needed to the linker for dselect to avoid libstdc++ dependency.
1005       Which makes of dselect the only front-end not pulling the C++ run-time.
1007   [ Updated programs translations ]
1008   * Dutch (Frans Spiesschaert). Closes: #841117
1009   * German (Sven Joachim).
1011   [ Updated scripts translations ]
1012   * German (Helge Kreutzmann).
1014   [ Updated man pages translations ]
1015   * Dutch (Frans Spiesschaert). Closes: #842187
1016   * German (Helge Kreutzmann).
1018  -- Guillem Jover <guillem@debian.org>  Sun, 06 Nov 2016 03:09:02 +0100
1020 dpkg (1.18.10) unstable; urgency=medium
1022   [ Guillem Jover ]
1023   * Fix a short-lived memory leak in dpkg archive argument parsing.
1024   * When activating file triggers on conffile purge, use the conffile name
1025     instead of the real pathname it might refer to. This fixes a segfault
1026     when using --instdir, or when the conffile has been moved around and
1027     replaced with a symlink to the target.
1028     Regression introduced in dpkg 1.18.8. Closes: #830267
1029   * Perl modules:
1030     - Disable fixdebugpath feature on unsafe characters in the path.
1031     - Generate reproducible source tarballs by using the new GNU tar
1032       --clamp-mtime option in Dpkg::Source::Archive, to make sure no file
1033       in source packages has an mtime later than the changelog entry time.
1034     - Enable fixdebugpath build flag feature by default.
1035       Thanks to Mattia Rizzolo <mattia@debian.org>. Closes: #832179
1036     - Rename various private methods and functions with an underscore prefix
1037       and unified names.
1038     - Refactor perl modules directory list into a new function in Test::Dpkg.
1039   * Test suite:
1040     - Add new POD coverage author test for public perl modules.
1041   * Documentation:
1042     - Document Testsuite-Triggers in dsc(5).
1043     - Fix deb-changes(5) description to talk about .changes instead of .dsc.
1044       Reported by HW42 <hw42@ipsumj.de>.
1045     - Use debian/control as the SYNOPSIS in deb-src-control(5).
1046     - Add new deb-conffiles(5) man page.
1047     - Add references to deb-control(5) and deb-triggers(5) in dpkg(1).
1048     - Fix typos for repeated “the” word.
1049       Prompted by Valentin Samir <valentin.samir@crans.org> in #830989.
1050     - Fix misspelled -fdebug-prefix-map flag in dpkg-buildflags(1).
1051       Reported by Mattia Rizzolo <mattia@debian.org>.
1052     - Remove mention of source format 1.0 supporting building with upstream
1053       tarball signatures from dpkg-source(1), as this was disabled in 1.18.8.
1054     - Document all public methods in Dpkg::Changelog::Entry::Debian.
1055     - Escape dashes in deb-changes(5) and dsc(5) man pages.
1056     - Fix typos in dpkg-shlibdeps(1). Closes: #832434
1057       Thanks to Carsten Leonhardt <leo@debian.org>.
1059   [ Updated programs translations ]
1060   * German (Sven Joachim).
1061   * Turkish (Mert Dirik). Closes: #832070
1063   [ Updated scripts translations ]
1064   * German (Helge Kreutzmann).
1066   [ Updated man pages translations ]
1067   * German (Helge Kreutzmann).
1069  -- Guillem Jover <guillem@debian.org>  Sun, 31 Jul 2016 12:57:02 +0200
1071 dpkg (1.18.9) unstable; urgency=medium
1073   * Require Dpkg::Control::Info in dpkg-buildpackage.
1074     Initially reported by Helmut Grohne <helmut@subdivi.de>.
1075     Regression introduced in dpkg 1.18.8. Closes: #829542
1076   * Documentation:
1077     - Fix user configuration filename in dpkg-buildpackage(1).
1078       Thanks to Sven Joachim <svenjoac@gmx.de>. Closes: #829546
1080  -- Guillem Jover <guillem@debian.org>  Mon, 04 Jul 2016 09:23:13 +0200
1082 dpkg (1.18.8) unstable; urgency=medium
1084   [ Guillem Jover ]
1085   * Do not disable PIE buildflags on */kFreeBSD anymore. Closes: #823877
1086     Thanks to Steven Chamberlain <steven@pyro.eu.org>.
1087   * Add new long options in dpkg-buildpackage for any short option that is
1088     a useful configurable candidate.
1089   * Add configuration file support to dpkg-buildpackage, as buildpackage.conf
1090     under either the dpkg system or user configuration directories.
1091     Closes: #539692, #765494
1092   * Check that debian/tests/control is a regular file before parsing it.
1093   * Generate Testsuite-Triggers field from test dependencies in dpkg-source
1094     into .dsc files. Based on a patch by Martin Pitt <martin.pitt@ubuntu.com>.
1095     Closes: #779559
1096   * Add new dpkg-source --no-overwrite-dir extraction option. Closes: #826334
1097   * Fix number of entries computation returned by sysctl() on */kFreeBSD in
1098     start-stop-daemon.
1099   * Set return buffer length for sysctl(2) calls on */kFreeBSD in
1100     start-stop-daemon.
1101   * Abstract ar archive handling behind a new struct dpkg_ar and functions.
1102   * On dpkg --force-chrootless only set changedir to instdir if defined.
1103     Thanks to Niall Walsh <niallwalsh@celtux.org>. Closes: #824542
1104   * Set primary group to 0 in dpkg when running as root.
1105     Reported by Stuart Prescott <stuart@debian.org>.
1106   * Activate file triggers for conffiles on purge, which has never happened
1107     before. Before dpkg 1.17.0, conffiles were triggered on removal, which
1108     was obviously wrong. Reported by Helmut Grohne <helmut@subdivi.de>.
1109   * Fix strtol() errno check when parsing the COLUMNS envvar in dpkg-query.
1110     Thanks to Sven Joachim <svenjoac@gmx.de>. Closes: #827265
1111   * Use new GNU tar --clamp-mtime option in dpkg-deb to make sure no file in
1112     binary packages has an mtime later than the given time. Closes: #759886
1113   * Use the same timestamp for the ar container as for tarball mtime clamping
1114     in dpkg-deb.
1115   * Set ar timestamp and tar mtime clamping to SOURCE_DATE_EPOCH if defined
1116     in dpkg-deb. Based on a patch by Jérémy Bobbio <lunar@debian.org>.
1117   * Preset build timestamp to latest changelog entry in dpkg-buildpackage,
1118     by setting SOURCE_DATE_EPOCH environment variable if it is not already
1119     defined. Based on a patch by Jérémy Bobbio <lunar@debian.org>.
1120     Closes: #759999
1121   * Do not use the debian/rules build target fallback when building both
1122     architecture independent and dependent packages in dpkg-buildpackage.
1123   * Use architecture «all» as part of the .changes filename when building
1124     architecture independent binaries and no architecture dependent binaries.
1125     Closes: #826161
1126   * Do not emit warnings from dpkg-genchanges for automatic debug symbol
1127     packages that are not found in debian/control.
1128   * Export SOURCE_DATE_EPOCH from pkg-info.mk makefile snippet.
1129     Closes: #824572
1130   * Architecture support:
1131     - Add TILE-Gx support to cputable. Closes: #823167
1132       Thanks to Helmut Grohne <helmut@subdivi.de>.
1133   * Perl modules:
1134     - Use warnings::warnif() instead of carp() for deprecated warnings.
1135     - Add new format_range() method and deprecate dpkg() and rfc822() methods
1136       in Dpkg::Changelog.
1137     - Replace changelog program parsers with perl modules.
1138     - Add a getter for the Time::Piece object in Dpkg::Changelog.
1139     - Add new Timestamp field to Dpkg::Changelog output, which ends up on
1140       dpkg-parsechangelog's output.
1141     - Validate source version in set_version_substvars()'s Dpkg::Substvars
1142       method.
1143     - Revert "Dpkg::Conf: Switch implementation to be hash based", as this
1144       change broke backwards compatibility in multiple ways. The format_argv
1145       option was set by default, the order was not preserved, which was
1146       important for dpkg.cfg files, and duplicate option names stopped being
1147       supported. Add regression tests to avoid similar changes in the future.
1148       Closes: #824938
1149     - Add support for system and user config loading in Dpkg::Conf.
1150     - Add support for autopkgtest control files, with new CTRL_TESTS control
1151       type, new recognized fields to Dpkg::Control::Fields, and new modules
1152       Dpkg::Control::Tests and Dpkg::Control::Tests::Entry. Also update
1153       Dpkg::Index to support these.
1154     - Fix Dpkg::Deps so that architecture qualifiers only imply one another
1155       if they are the same. Closes: #745366, #827628
1156     - Add support for new environment variable DEB_BUILD_PATH to be able to
1157       control the path in the fixdebugpath feature in Dpkg::Vendor::Debian.
1158     - Preserve order when prepending shared library paths in Dpkg::Shlibs.
1159       This fixes the order of paths passed via dpkg-shlibdeps -l option.
1160       Closes: #823805
1161     - Check whether dependency restrictions are implied in Dpkg::Deps::Simple.
1162       Thanks to Ben Hutchings <ben@decadent.org.uk>. Closes: #827633
1163     - Disable upstream tar signature when building format 1.0 source packages
1164       in Dpkg::Source::Package::V1, as the current stable dpkg series do not
1165       support extracting them.
1166     - Preset Last-Update field in patch header template with current time in
1167       Dpkg::Source::Package::V2. Thanks to Daniel Shahaf <danielsh@apache.org>.
1168       Closes: #828146
1169   * Packaging:
1170     - Disable libmd usage in Debian and derivatives for now.
1171   * Build system:
1172     - Stop allowing to set deprecated bzip2 compressor as dpkg-deb default.
1173     - Use libmd automatically if available.
1174     - Uniformize library build options, from --with-zlib to --with-libz,
1175       --with-bz2 to --with-libbz2 and --with-selinux to --with-libselinux.
1176   * Test suite:
1177     - Bump perlcritic ValuesAndExpressions::RequireNumberSeparators minimum
1178       to 99999.
1179     - Add new pod-spell unit test.
1180     - Refactor common unit test checks for needed things into Test::Dpkg.
1181     - Accept perl's Lancaster Consensus AUTHOR_TESTING variable.
1182     - Add new minimum perl version unit test.
1183     - Add new synopsis unit test.
1184     - Add unit tests for dependency simplification with build profiles.
1185   * Documentation:
1186     - Improve dpkg-buildpackage(1) on environment expectations.
1187     - Clarify the format of the db:Status-Abbrev virtual field in
1188       dpkg-query(1). Closes: #824515
1189     - Document the tar entry size limitation for deb(5) format.
1190     - Document interaction between PIE and libraries in dpkg-buildflags(1).
1191       Based on text by Christian Seiler <christian@iwakd.de>.
1192     - Merge ENVIRONMENT sections in dpkg-buildflags(1).
1193     - Document various long options in dpkg-source --help output.
1194     - Move dpkg-source -q option from “Build options” to “General options”
1195       section in --help output.
1196     - Clarify shared library search order in dpkg-shlibdeps(1).
1197     - Remove most remaining AUTHOR sections from man an POD, as they are
1198       strongly discouraged, for being redundant, tending to get out-of-sync,
1199       and their format being inconsistent. In addition most got already
1200       removed in the past for the man pages.
1201     - Mark perlcritic as an optional author test dependency in the README.
1202     - Fix example code in Dpkg::Compression::FileHandle SYNOPSIS.
1204   [ Updated programs translations ]
1205   * German (Sven Joachim).
1206   * Simplified Chinese (Zhou Mo). Closes: #824873
1208   [ Updated scripts translations ]
1209   * German (Helge Kreutzmann).
1211   [ Updated man pages translations ]
1212   * German (Helge Kreutzmann).
1214  -- Guillem Jover <guillem@debian.org>  Sun, 03 Jul 2016 19:01:56 +0200
1216 dpkg (1.18.7) unstable; urgency=medium
1218   [ Guillem Jover ]
1219   * Add new dpkg-source --require-strong-checksums option and change default.
1220     There is no point in erroring out on this condition when signature issues
1221     are only warnings, because we cannot guarantee we have functional keys
1222     for old signatures. Regression introduced in dpkg 1.18.5. Closes: #823428
1223   * Stop using several fixed sized buffers for program reporting, which in
1224     many cases could cause confusing truncation of long messages. Use heap
1225     allocated formatted strings instead:
1226     - In start-stop-daemon to report what to stop.
1227     - In dselect to print main and access methods menu entries.
1228     - In libdpkg command-line option parsing errors.
1229     - In libdpkg warning, notice and info reporting.
1230     - In libdpkg ohshit, ohshitv, ohshite and internerr. But in this case
1231       fallback to a fixed-size emergency buffer in case of allocation or
1232       formatting error, so that we can at least print something, even if
1233       truncated.
1234     Prompted by Manuel A. Fernandez Montecelo <mafm@debian.org>.
1235   * Colorize all fatal-error printing codepaths in libdpkg.
1236   * Architecture support:
1237     - Bump the GNU triplet cpu from i386 to i686 to match toolchain changes.
1238       Thanks to Ben Hutchings <ben@decadent.org.uk>. Closes: #823619
1239     - Clarify column descriptions in architecture table files.
1240   * Perl modules:
1241     - Relax dependency restrictions parsing to allow again sloppy spaces
1242       around versions, architectures and profile restrictions.
1243       Regression introduced in 1.18.5. Closes: #823431
1244     - Add new require_strong_checksums option to Dpkg::Source::Package.
1245     - Add new tests_dep option to Dpkg::Deps deps_parse() to allow the
1246       otherwise invalid ‘@’ character in dependencies. To be used when
1247       parsing the debian/tests/control file.
1248   * Documentation:
1249     - Shorten example symbol names in dpkg-gensymbols to avoid a mandb
1250       warning due to unwrappable lines in translations.
1252   [ Updated scripts translations ]
1253   * German (Helge Kreutzmann).
1255   [ Updated man pages translations ]
1256   * German (Helge Kreutzmann).
1258  -- Guillem Jover <guillem@debian.org>  Mon, 09 May 2016 03:19:52 +0200
1260 dpkg (1.18.6) unstable; urgency=medium
1262   [ Guillem Jover ]
1263   * Fix file queue tail assignment on file queue pop during unpack. This
1264     could mess up the file queue in some circumstances and leave behind
1265     files in the filesystem as «pathname».dpkg-new after configuration
1266     and without traces of the files in the dpkg database. Closes: #823288
1267   * Use m_strdup() instead of strdup() in dpkg recursive installation code.
1268   * Fix off-by-one array allocation in dpkg recursive installation code that
1269     can cause segfaults.
1270   * Rename sysctl() “name” variable to “mib”, to avoid a clash with the
1271     call site function argument with the same name in start-stop-daemon.
1272     This fixes a build failure on */kFreeBSD systems.
1273   * Initialize number of entries on initial process scan in start-stop-daemon
1274     on */kFreeBSD.
1275   * Packaging:
1276     - Bump Standards-Version to 3.9.8 (no changes needed).
1278   [ Updated programs translations ]
1279   * German (Sven Joachim).
1281  -- Guillem Jover <guillem@debian.org>  Tue, 03 May 2016 20:17:05 +0200
1283 dpkg (1.18.5) unstable; urgency=medium
1285   [ Guillem Jover ]
1286   * Print correct integer parse error for short-only command-line options.
1287     This affects «dpkg-deb -z». Closes: #809174
1288   * Do not abort when traversing symlinks to directories in dpkg-scanpackages
1289     and dpkg-scansources. Closes: #809219
1290   * Implement delete operator with size argument in dselect, required by the
1291     C++14 spec when the size-less delete operator is defined.
1292   * Use EACCES instead of EWOULDBLOCK for fcntl(2) F_SETLK in dselect.
1293   * Print the archive filename when dpkg cannot access it.
1294   * Check that all passed archive filenames to dpkg exist before queuing them.
1295     Closes: #809963
1296   * Use ohshit() instead of internerr() for unhandled dpkg-split exit codes.
1297     (i.e. do not abort). Closes: #812679
1298   * Detect non-regular file archive arguments earlier in dpkg.
1299   * Switch URLs in docs, code comments and packaging, from http:// or git://
1300     to https:// if the latter is available (round three). This includes the
1301     dpkg git repository, copyright format URL and examples in man pages among
1302     others.
1303   * Clarify where to find the GPL-2 license in debian/copyright.
1304   * Do not enable stack-protector on nios2 in Debian and derivatives (it is
1305     not supported by gcc yet).
1306   * Check first for build type to short-circuit boolean expressions in
1307     dpkg-genchanges.
1308   * Add source format backend-specific --help options support to dpkg-source.
1309   * Add MIPS R6 architectures to arch tables. Closes: #807340
1310     Thanks to YunQiang Su <wzssyqa@gmail.com>.
1311   * Fix memory leak when unpacking conffiles.
1312   * Use fixed string matching for pathnames in dpkg-maintscript-helper.
1313     Thanks to Carsten Hey <carsten@debian.org>.
1314   * Quote shell variables in dpkg-maintscript-helper.
1315     Thanks to Carsten Hey <carsten@debian.org>.
1316   * Anchor pathnames in sed and grep regexes in dpkg-maintscript-helper.
1317     Thanks to Carsten Hey <carsten@debian.org>.
1318   * Allow broken versions starting with a dash in dpkg-maintscript-helper.
1319     Thanks to Carsten Hey <carsten@debian.org>.
1320   * Add a new treewalk module in libdpkg, with the nice properties of avoiding
1321     duplicate stat(2) calls, not calling find(1), and sorting the output w/o
1322     stalling on the entire input being slurped and sorted.
1323     - Use it to build the .deb data member in dpkg-deb.
1324     - Use it to build the .deb control member in dpkg-deb.
1325     Closes: #719845
1326     - Use it with dpkg --recursive option.
1327   * Unify start-stop-daemon --help output with the rest of the tools.
1328   * Search for debsig-verify in PATH instead of using an absolute path.
1329   * Do not error out when failing to open the SE label db on permissive mode.
1330     Closes: #811037
1331   * Rewrite the trigger deferred file parser from flex to manual. The format
1332     is very simple, and a simple hand-written parser is smaller and avoids a
1333     build dependency.
1334   * Be more strict when parsing the COLUMNS environment variable in dpkg-query.
1335   * Make the Architecture field mandatory on package builds.
1336   * Use new Dpkg::Arch functions to validate and parse architectures when
1337     building source packages. Closes: #784808
1338   * Do safe matching of directories containing conffiles in
1339     dpkg-maintscript-helper, instead of using a variable pathname as a regex
1340     with grep, which is susceptible to metacharacters acting as part of the
1341     regex. Proposed by Carsten Hey <carsten@debian.org>.
1342   * Decouple local keyword declaration from command assignment in
1343     dpkg-maintscript-helper, which masks the command return value when
1344     using «set -e».
1345   * Make dpkg pass <new-version> to maintscript actions that cannot get it
1346     otherwise. These actions are now:
1347     - <new-postrm> failed-upgrade <old-version> <new-version>
1348     - <new-postrm> abort-install <old-version> <new-version>
1349     - <new-postrm> abort-upgrade <old-version> <new-version>
1350     - <new-preinst> install <old-version> <new-version>
1351     - <new-preinst> upgrade <old-version> <new-version>
1352     - <new-prerm> failed-upgrade <old-version> <new-version>
1353     Prompted by Andrey Utkin <andrey.krieger.utkin@gmail.com>.
1354   * Promote a print to a warning for missing control files in dpkg-deb.
1355   * Use info() instead of print in dpkg-buildpackage and dpkg-genchanges.
1356   * Add very basic color support to all dpkg namespaced programs, enabled by
1357     setting the environment variable DPKG_COLORS to “auto”, “always” or
1358     “never”, the latter being the default.
1359   * Add support for a new --build option to define build type by a
1360     comma-separated list of components (“source”, “any”, “all”, “binary” or
1361     “full”) in dpkg-genchanges and dpkg-buildpackage.
1362   * Add new -I option to dpkg-shlibdeps to ignore package build directories.
1363     Closes: #821025
1364   * Add new -O option to dpkg-genchanges.
1365   * Make dpkg export variable DPKG_ROOT in maintainer scripts. Closes: #804624
1366     Thanks to Helmut Grohne <helmut@subdivi.de>.
1367   * Add new --force-script-chrootless option to dpkg.
1368     Thanks to Helmut Grohne <helmut@subdivi.de>.
1369   * Portability:
1370     - Move DPKG_ADMINDIR environment variable name out from update-alternatives
1371       code, to make life easier for non-dpkg-based systems.
1372     - Move alternatives temporary extension out from update-alternatives code,
1373       to make life easier for non-dpkg-based systems.
1374     - Switch start-stop-daemon on */kFreeBSD to use the low-level sysctl(3)
1375       interface instead of libkvm-dev.
1376   * Perl modules:
1377     - Add new CTRL_REPO_RELEASE control block type to Dpkg::Control.
1378     - Add new CTRL_COPYRIGHT_HEADER, CTRL_COPYRIGHT_FILES and
1379       CTRL_COPYRIGHT_LICENSE control block types to Dpkg::Control.
1380     - Make patching a file multiple times fatal for the first quilt patch in
1381       Dpkg::Source. Reported by Apollon Oikonomopoulos <apoikos@debian.org>.
1382       Closes: #810720
1383     - Only warn once when a diff patches a file multiple times in
1384       Dpkg::Source::Patch, and fix the warning message to make it clear that
1385       the diff might be patching the file more than once, not just twice.
1386     - Check existence of search criteria in Dpkg::Index when checking with a
1387       regex or a string match. Closes: #780906
1388       Base on a patch by Daniel Dehennin <daniel.dehennin@baby-gnu.org>.
1389     - Add new functions to validate and parse architecture names in Dpkg::Arch.
1390     - Make the dependency parser more strict in Dpkg::Deps. Closes: #784806
1391     - Add strong digest marking support to Dpkg::Checksums.
1392     - Error out on source packages without any strong digests in
1393       Dpkg::Source::Package, used by dpkg-source --extract, which can still
1394       be disabled with --no-check.
1395     - Switch Dpkg::Conf implementation to be hash based, add two new accessors
1396       and a new option to the filter method to use the old behavior.
1397     - Do not parse entry multiple times in Dpkg::Changelog::Entry::Debian.
1398       Add new parse_header() and parse_trailer() methods, and deprecate
1399       check_header() and check_trailer() ones.
1400     - Use “GnuPG” instead of “gpg” in error messages to refer to the software
1401       in Dpkg::Source::Package.
1402     - Handle undef versions in Dpkg::Changelog from empty versions in
1403       changelog entry header lines.
1404     - Allow detached upstream orig tarball signatures when extracting
1405       version 1.0 non-native source packages.
1406     - Include upstream orig tarball signatures in source packages.
1407       See #759478.
1408     - Add fixdebugpath to reproducible feature in Dpkg::Vendor::Debian.
1409       Thanks to Daniel Kahn Gillmor <dkg@fifthhorseman.net>. Closes: #819194
1410   * Build system:
1411     - Fix building development documentation.
1412     - Remove unused UA_LIBS variable.
1413     - Split libps and libkvm detection into their own macros and variables.
1414     - Make it possible to build without system libmd.
1415     - Add a configuration summary to configure output.
1416     - Make git log invocation immune to local configuration.
1417     - Do not require passing the perl interpreter to run-script.
1418     - Quote dirname argument in run-script, to handle spaces in pathname.
1419       Reported by Carsten Hey <carsten@debian.org>.
1420     - Use a single po4a opt argument instead of the same per language.
1421   * Packaging:
1422     - Enable all hardening flags, starting with gcc-5 there is no performance
1423       loss anymore when enabling PIE on i386.
1424   * Test suite:
1425     - Add a unit test to compile perl code with warnings.
1426     - Add a unit test for the trigger deferred parser.
1427   * Documentation:
1428     - Say value instead of option in deb-control(5).
1429     - Mark debian changelog format in bold in dpkg-parsechangelog(1).
1430     - Add references to man pages describing file formats.
1431     - Document missing Install-Size, Built-For-Profiles and Build-Profiles
1432       fields in man pages.
1433     - Add new dsc(5), deb-changelog(5) and deb-changes(5) man pages.
1434     - Remove Debian specific policy references.
1435     - Remove superfluous SEE ALSO references from dpkg-source(1).
1436     - Fix --remove and --purge summary formatting in dpkg(1).
1437     - Move --audit description just after --verify in dpkg(1).
1438     - Mark Maintainer field as bold in deb-src-control(5).
1439     - Fix reference to --record-avail instead of nonexistent --avail.
1440     - Add missing quotes in man pages.
1441     - Document Source field version in deb-control(5).
1442     - Add new deb822(5) man page.
1443     - Document and improve C/C++ programs exit codes in man pages.
1444     - Clarify dpkg --path-exclude/--path-include pathname filter behavior.
1445       Closes: #811267
1446     - Clarify that packages are only automatically forgotten by dpkg if they
1447       contain no user data, such as package selections. Closes: #813179
1448     - Fix documentation for package flags in dpkg(1).
1449     - Clarify that deb-symbols(5) documents the binary format subset, and
1450       the template symbol files are described in dpkg-gensymbols(1).
1451       Closes: #795163
1452     - Update field requirements of control file formats to match dpkg reality.
1453     - Document the format of the origins filename in deb-origin(5).
1454     - Add list of flags set by bug feature area to dpkg-buildflags(1).
1455     - Switch output encoding of man pages to UTF-8.
1456     - Move SEE ALSO section to the end of Dpkg::Changelog::Debian.
1457     - Clarify that i386 does not suffer performance loss due to PIE anymore
1458       since gcc >= 5 in dpkg-buildflags(1).
1459     - Document in deb822(5) that deb-origin(5) also supports comments.
1460     - Clarify which characters constitute the deb822(5) control files syntax
1461       by using Unicode code points and their printable characters.
1462       Based on a patch by Ben Finney <ben@benfinney.id.au>.
1463     - Remove wrong mention that deb-control(5) support comments.
1464     - Make explicit that deb-control(5) documents the binary control file.
1465     - Add missing value for Standards-Version field in dsc(5).
1466       Reported by Helge Kreutzmann <debian@helgefjell.de>.
1468   [ Updated programs translations ]
1469   * Dutch (Frans Spiesschaert). Closes: #822797
1470   * German (Sven Joachim).
1471   * Japanese (Takuma Yamada). Closes: #819939
1472   * Portuguese (Miguel Figueiredo).
1473   * Simplified Chinese (Zhou Mo). Closes: #809517
1474   * Vietnamese (Trần Ngọc Quân).
1476   [ Updated dselect translations ]
1477   * Japanese (Takuma Yamada). Closes: #819940
1479   [ Updated scripts translations ]
1480   * German (Helge Kreutzmann).
1482   [ New man pages translations ]
1483   * Dutch (Frans Spiesschaert). Closes: #822798
1485   [ Updated man pages translations ]
1486   * German (Helge Kreutzmann).
1488  -- Guillem Jover <guillem@debian.org>  Mon, 02 May 2016 04:14:57 +0200
1490 dpkg (1.18.4) unstable; urgency=medium
1492   [ Guillem Jover ]
1493   * Switch dpkg-scansources and dpkg-scanpackages to use File::Find instead
1494     of find(1), as the former is more portable with more consistent behavior,
1495     and always canonicalizes the pathnames. Closes: #800649
1496   * Initialize Config-Version also for packages previously in triggers-pending
1497     state, otherwise we end up not passing the previously configured version
1498     to «postinst configure», which might consider this a first install instead
1499     of an upgrade. Closes: #801156
1500   * Fix memory leaks in «dpkg --verify» and dpkg infodb format upgrade logic.
1501   * Merge all update-alternatives action handling into a single if-else-if
1502     block, to unify the code an allow a future switch into a shared library.
1503   * Perform any necessary cleanups on normal exit from dpkg-divert --add and
1504     --remove commands.
1505   * Make dpkg-architecture warning on non-matching GNU system type compiler
1506     agnostic.
1507   * Add ‘.gitreview’ to the default dpkg-source ignore lists.
1508   * Add support for DPKG_MAINTSCRIPT_DEBUG environment variable to dpkg.
1509   * Fix dpkg-checkbuilddeps exit code to be 1 instead of a random error value
1510     on unsatisfied dependencies. Regression introduced in dpkg 1.18.3.
1511   * Fix an off-by-one write access in dpkg-deb when parsing the old format
1512     .deb control member size. Thanks to Hanno Böck <hanno@hboeck.de>.
1513     Fixes CVE-2015-0860.
1514   * Fix an off-by-one read access in dpkg-deb when parsing ar member names.
1515     Thanks to Hanno Böck <hanno@hboeck.de>.
1516   * Add experimental multithreaded xz compression support in libdpkg, which
1517     requires xz >= 5.2.0.
1518   * Fix physical file offset comparison in dpkg. Closes: #808912
1519     Thanks to Yuri Gribov <tetra2005@gmail.com>.
1520   * Fix usage of dpkg-architecture -s after other action options.
1521     Reported by Niels Thykier <niels@thykier.net>.
1522   * Add NIOS2 support to cputable. Thanks to Marek Vasut <marex@denx.de>.
1523   * On Debian and derivatives enable timeless build flag feature by default.
1524     Thanks to Paul Wise <pabs@debian.org>. Closes: #805872
1525   * Perl modules:
1526     - Add support for Build-Essential field. Closes: #806315
1527   * Test suite:
1528     - Improve perl code test coverage.
1529   * Build system:
1530     - Set PERL5LIB globally for the test suite to the local modules directory,
1531       to avoid using the system modules. Regression introduced in dpkg 1.17.8.
1532       Reported by Jérémy Bobbio <lunar@debian.org>. Closes: #801329
1533     - Use absolute buildir pathnames in PATH variable for the test suite.
1534     - Descend into scripts directory when cleaning up code coverage files.
1535     - Add new configure option --disable-devel-docs to select the kind of docs
1536       to generate, default for now is development documentation.
1537     - Try to use AM_GNU_GETTEXT_REQUIRE_VERSION to benefit from the latest
1538       installed gettext version, while guaranteeing a minimal required version.
1539   * Packaging:
1540     - Add missing Build-Depends for restriction formula support.
1541   * Documentation:
1542     - Move description for “target architecture” from the dpkg-architecture(1)
1543       ‘-A’ option to the TERMS section. Closes: #799046
1544     - Clarify that the md5sum check on «dpkg --verify» is performed on the
1545       file contents, and failures denote changed content. Closes: #760248
1546     - Document that dpkg-buildpackage -nc -S implies -d.
1547     - Clarify role of Build-Depends in deb-src-control(5).
1548       Prompted by Johannes Schauer <j.schauer@email.de>.
1549     - Document supported feature areas.
1550     - Clarify in dpkg-query(1) when binary:Package gets arch-qualified.
1551       Closes: #801958
1552     - Add a subsection separating external from internal environment variables
1553       in dpkg(1).
1555   [ Updated programs translations ]
1556   * Dutch (Frans Spiesschaert). Closes: #800513
1557   * Japanese (Kenshi Muto). Closes: #799432
1558   * Turkish (Mert Dirik). Closes: #799875
1560   [ Updated scripts translations ]
1561   * German (Helge Kreutzmann).
1563   [ Updated man pages translations ]
1564   * German (Helge Kreutzmann, Julian R). Closes: #807156
1566  -- Guillem Jover <guillem@debian.org>  Fri, 25 Dec 2015 13:20:26 +0100
1568 dpkg (1.18.3) unstable; urgency=medium
1570   [ Guillem Jover ]
1571   * Fix short-lived memory leaks in start-stop-daemon. As a side effect now
1572     a missing group after ‘:’ on --chuid is a fatal error.
1573   * Print the master and slave links in «update-alternatives --display».
1574   * Print the current best alternative in the head instead of the trail
1575     in «update-alternatives --display», with a two space indentation.
1576   * Reimplement «update-alternatives --all» as a fully built-in command
1577     instead of executing itself with --config per subtask.
1578   * Reimplement «update-alternatives --set-selections» as a fully built-in
1579     command instead of executing itself with --set or --auto per subtask.
1580   * Add kfreebsd-armhf support to ostable and triplettable. Closes: #796283
1581     Thanks to Steven Chamberlain <steven@pyro.eu.org>.
1582   * Fix «dpkg --verify» with --root.
1583   * Fix an off-by-one write access in dpkg-deb when parsing the .deb magic.
1584     Reported by Jacek Wielemborek <d33tah@gmail.com>. Closes: #798324
1585   * Split overlong perl regexes into multiline extended regexes.
1586   * Switch dselect multicd method license from GPL2 to GPL2+, with consent
1587     from all its authors.
1588   * Fix inadvertent license change for lib/dpkg/utils.c from GPL2 to GPL2+.
1589   * Fix segfault when using «dpkg --no-act» with a synthetic --admindir.
1590     Reported by David Kalnischkies <david@kalnischkies.de>.
1591   * Perl modules:
1592     - Only warn on invalid week days instead of aborting in
1593       Dpkg::Changelog::Entry::Debian. Regression introduced in dpkg 1.18.2.
1594       Reported by Jakub Wilk <jwilk@debian.org>.
1595     - Do not warn when removing an empty subdirectory on source package
1596       extraction in Dpkg::Source::Package::V2. Closes: #796671
1597     - Do not abort on parse errors from Time::Piece->strptime() for the
1598       changelog trailer date, just queue them so that the caller can decide
1599       if they should be warnings or actual errors. Closes: #795936
1600     - Validate the changelog trailer date, and catch and warn or error on
1601       bogus month names, such as unknown or unabbreviated ones.
1602   * Test suite:
1603     - Get the reference build flags from dpkg-buildflags.pl, instead of
1604       hardcoding them, which might not match depending on the architecture.
1605       Closes: #794694
1606     - Delete any environment variable starting with DEB_ in mk.t that might
1607       affect the test results.
1608   * Build system:
1609     - Add a new --with-devlibdir configure option for the C libdpkg library.
1610   * Packaging:
1611     - Remove unneeded --sourcedir options from dh_install calls.
1612     - Use the new --with-devlibdir configure option to only switch libdpkg-dev
1613       files to the multi-arch directory. Closes: #794977
1614   * Documentation:
1615     - Fix typos for --predep-package option name. Closes: #794688
1616     - Add missing dashes to package-list in deb-src-control(5).
1617     - Mark each individual required field as such, instead of using segregated
1618       sections.
1620   [ Updated programs translations ]
1621   * Catalan (Jordi Mallach).
1622   * French (Sébastien Poher). Closes: #798371
1623   * German (Sven Joachim).
1624   * Vietnamese (Trần Ngọc Quân).
1626   [ Updated dselect translations ]
1627   * French (Sébastien Poher). Closes: #798370
1629   [ Updated scripts translations ]
1630   * French (Sébastien Poher). Closes: #798369
1631   * German (Helge Kreutzmann).
1633   [ Updated man pages translations ]
1634   * German (Helge Kreutzmann).
1636  -- Guillem Jover <guillem@debian.org>  Mon, 21 Sep 2015 07:11:42 +0200
1638 dpkg (1.18.2) unstable; urgency=low
1640   [ Guillem Jover ]
1641   * Fix plural form translations for single plural languages. Closes: #790025
1642   * Add new dpkg-buildpackage -J option, which is a safe version of -j.
1643   * Fix dpkg-gencontrol to add correct binary filename to debian/files,
1644     even when overriding the Package field value with the -D option.
1645     Reported by Niels Thykier <niels@thykier.net>.
1646   * Move the implicit build-essential:native Build-Depends from
1647     dpkg-checkbuilddeps to a new vendor hook, as it is Debian-specific.
1648   * Add support for ignoring built-in build dependencies and conflicts
1649     with the new «dpkg-buildpackage --ignore-builtin-builddeps» and
1650     «dpkg-checkbuilddeps -I» options. Closes: #480638, #571671
1651   * When sys_siglist is defined in the system, try to use NSIG as we cannot
1652     compute the array size with sizeof(). If NSIG is missing fallback to 32
1653     items. Prompted by Igor Pashev <pashev.igor@gmail.com>.
1654   * Use string_to_security_class() instead of a literal SECCLASS value in
1655     the setexecfilecon() libcompat function, as <selinux/flask.h> is now
1656     deprecated.
1657   * Switch libdpkg xz compressor to use CRC64 for integrity checks, to match
1658     the default on the command-line tool, which should provide slightly better
1659     detection against damaged data, at a negligible speed difference.
1660   * Only use the SHELL environment variable for interactive shells.
1661     Closes: #788819
1662   * Move tar option --no-recursion before -T in dpkg-deb. With tar > 1.28 the
1663     --no-recursion option is now positional, and needs to be passed before
1664     the -T option, otherwise the tarball will end up with duplicated entries.
1665     Thanks to Richard Purdie <richard.purdie@linuxfoundation.org>.
1666   * Add an extra level of escaping for double $(evals) in architecture.mk
1667     and buildflags.mk, so that the variables are computed lazily again.
1668     Regression introduced in dpkg 1.16.2. Closes: #793330
1669   * Add binary packages Essential information to Package-List field in the
1670     .dsc file, as optional essential=yes entries. This allows precomputing
1671     the pseudo-essential set before starting an architecture bootstrap.
1672   * Perl modules:
1673     - Remove non-functional timezone name support from
1674       Dpkg::Changelog::Entry::Debian.
1675     - Use Time::Piece (part of the perl core distribution) instead of
1676       Date::Parse in Dpkg::Changelog::Entry::Debian. This reduces the build
1677       and run-time dependencies, and helps architecture bootstrapping.
1678     - Simplify distribution splitting in Dpkg::Changelog::Entry::Debian.
1679     - Add new function changelog_parse_plugin() in Dpkg::Changelog::Parse.
1680     - Add new function changelog_parse_debian() in Dpkg::Changelog::Parse, and
1681       use it in changelog_parse() instead of the external plugin parser when
1682       the input format is “debian”. This significantly speeds up the parsing.
1683     - Remove trailing space before handling blank line dot-separator in
1684       Dpkg::Control::HashCore. Regression introduced in dpkg 1.18.0.
1685       Reported by Jakub Wilk <jwilk@debian.org>. Closes: #789580
1686     - Allow the Maintainer field in CTRL_FILE_STATUS.
1687     - Import make_path from File::Path in Dpkg::Source::Package::V2.
1688       Regression introduced in dpkg 1.18.0. Closes: #789957
1689     - Make the BinaryFiles subpackage self-contained by explicitly importing
1690       File::Spec in Dpkg::Source::Package::V2.
1691     - Do not exclude pre-existing symlinks when unpacking the debian/ tarball
1692       in Dpkg::Source::Package::V2. Closes: #790073, #791535
1693     - Disable the thread sanitizer when the address sanitizer is enabled
1694       in Dpkg::Vendor::Debian as these are mutually incompatible, and make
1695       sanitize=+all not work at all.
1696     - Allow colons (:) in added filenames in Dpkg::Dist::Files, which can be
1697       present when the upstream version contains colons. Regression introduced
1698       in dpkg 1.18.0. Reported by Jakub Wilk <jwilk@debian.org>.
1699     - Future-proof tar invocations in Dpkg::Source::Archive for options that
1700       might become positional in the future, and by always placing function
1701       options first.
1702     - Make the dependency comparison deep by comparing not only the first
1703       dependency alternative, to get them sorted in a reproducible way.
1704       Based on a patch by Chris Lamb <lamby@debian.org>. Closes: #792491
1705     - Support spaces in symbol names in Dpkg::Shlibs::Objdump. This is
1706       required by Go shared libraries. Closes: #785344
1707       Based on a patch by Michael Hudson-Doyle <michael.hudson@canonical.com>.
1708   * Test suite:
1709     - Set SIGINT, SIGTERM and SIGPIPE to their default actions to get
1710       deterministic behavior.
1711     - Add test cases for the makefile snippets.
1712     - Delete DEB_VENDOR from the environment to get reliable results.
1713   * Packaging:
1714     - Make the libdpkg-dev package Multi-Arch:same.
1715     - Mark libio-string-perl as <!nocheck>.
1716   * Documentation:
1717     - Fix grammar in dpkg-architecture(1).
1718       Thanks to Chris Lamb <lamby@debian.org>. Closes: #787616
1719     - Use the feature area name in the dpkg-buildflags(1) subsection title.
1720     - Document DPKG_HOOK_ACTION also in dpkg(1) ENVIRONMENT section.
1721     - Clarify when some features where added in man pages.
1722     - Document --yet-to-unpack, --predep-package and all --assert-<feature>
1723       commands as supported in both «dpkg --help» and dpkg(1).
1724     - Document abitable in dpkg-architecture(1).
1725     - Clarify that an architecture wildcard is a Debian thing in
1726       dpkg-architecture(1).
1727     - Document multiarch triplet in dpkg-architecture(1) TERMS section.
1728     - Remove “my” keyword from Dpkg perl modules function prototypes.
1729     - Say FUNCTIONS instead of METHODS for Dpkg modules when appropriate.
1730     - Fix POD syntax inside verbatim paragraph in Dpkg::Changelog.
1731     - Document and mark Dpkg::Arch as a public module.
1732     - Fix Dpkg::Changelog::Parse::changelog_parse documentation.
1734   [ Updated programs translations ]
1735   * Dutch (Frans Spiesschaert). Closes: #789097
1736   * Simplified Chinese (Zhou Mo). Closes: #787986
1737   * Turkish (Mert Dirik). Closes: #788211
1738   * Vietnamese (Trần Ngọc Quân).
1740   [ Updated man pages translations ]
1741   * German (Helge Kreutzmann).
1743   [ Updated dselect translations ]
1744   * Dutch (Frans Spiesschaert). Closes: #789096
1746   [ Updated scripts translations ]
1747   * German (Helge Kreutzmann).
1749  -- Guillem Jover <guillem@debian.org>  Mon, 03 Aug 2015 15:40:21 +0200
1751 dpkg (1.18.1) unstable; urgency=low
1753   [ Guillem Jover ]
1754   * Cast c_isbits() c argument to an unsigned char when indexing the array.
1755     This fixes build failures on armel, armhf, ppc64el and s390x.
1756   * Do not allow pathnames with embedded newlines in dpkg-deb and dpkg.
1757     Closes: #720761
1758   * Fix setting the SE Linux context when a file has a statoverride.
1759     Closes: #786435
1760   * Set the SE Linux file context even when the file mode has no file type.
1761   * Make dpkg-buildpackage -j override any parallel option specified in
1762     DEB_BUILD_OPTIONS. Regression introduced in dpkg 1.14.15.
1763   * Honor Pre-Depends, Conflicts and Breaks for packages in unpacked and
1764     half states. Thanks to Ian Jackson <iwj@ubuntu.com>. Closes: #377860
1765   * Fix build failure on FreeBSD by actually using libmd if available.
1766   * Sort dpkg-scanpackages output by package name and version.
1767     Thanks to Maximilian Schwerin <maximilian.schwerin@tigris.de>.
1768   * Sort dpkg-scansources output by package name and version.
1769     Thanks to Maximilian Schwerin <maximilian.schwerin@tigris.de>.
1770   * Set the correct default compression value in dpkg-deb for control.tar.gz
1771     member. This meant using compression level 1 when using the zlib shared
1772     library to compress the control.tar member, and always failing when using
1773     the gzip command. Regression introduced in dpkg 1.17.6. Closes: #786654
1774   * Use the generated template file instead of the original one when looking
1775     for changes in dpkg-gensymbols. There's too much information not being
1776     preserved in the symbols files to be able to regenerate templates for
1777     them. Closes: #785937, #786840
1778   * Perl modules:
1779     - Add missing strict and warnings pragmas for submodules.
1780     - Use non-destructive substitutions inside map.
1781     - Use the state keyword to simplify the code.
1782     - Do not replace #PACKAGE# in template mode in Dpkg::Shlibs::SymbolFile.
1783   * Documentation:
1784     - Update current default source compressor from gzip to xz.
1785     - Remove spurious ‘=’ from parallel DEB_BUILD_OPTIONS without arguments
1786       in dpkg-buildpackage(1).
1788   [ Updated programs translations ]
1789   * German (Sven Joachim).
1790   * Simplified Chinese (Zhou Mo). Closes: #786377
1792   [ Updated man pages translations ]
1793   * German (Helge Kreutzmann).
1795   [ Updated dselect translations ]
1796   * German (Sven Joachim).
1798  -- Guillem Jover <guillem@debian.org>  Sat, 30 May 2015 03:00:21 +0200
1800 dpkg (1.18.0) unstable; urgency=low
1802   [ Guillem Jover ]
1803   * Only trim trailing “/” and “/.” from «dpkg-query --search» arguments if
1804     they are a pathname, and not a pattern or a substring match.
1805   * Switch C/C++ code to use a new set of C locale character type functions
1806     independent of the current locale.
1807   * Add support for arch-bits and arch-endian dpkg-gensymbols tags.
1808     Closes: #630342
1809   * Switch perl code from legacy File::Path functions to new ones.
1810   * Fix perl uninitialized value usage in dpkg-scansources when the Binary
1811     field is missing.
1812   * Use dpkg-query instead of dpkg for --search in dpkg-shlibdeps so that
1813     the subprocesses get the correct admindir. Closes: #775258
1814   * Rework the Installed-Size field default value computation to make it
1815     reproducible regardless of the build system filesystem, and document
1816     how the value is computed and that it is just an approximation.
1817     Closes: #650077
1818   * Use strftime() instead of «date -R» in dpkg-genchanges, as the latter
1819     is not specified by POSIX and is not widely portable.
1820   * Warn on obsolete '<' and '>' operators in dpkg --compare-versions.
1821   * Trim end of line whitespace from dpkg and dselect config file parsers.
1822     Reported by Christoph Biedl <debian.axhn@manchmal.in-ulm.de>.
1823   * Do not silently eat a standalone ‘-’ in the libdpkg command-line parser.
1824   * Fix short-lived memory leaks in dpkg-deb and libdpkg. Closes: #769515
1825   * Fix «dpkg-deb -b» filename generation when the package does not contain
1826     an Architecture field. Regression introduced in dpkg 1.16.2.
1827   * Fix «dpkg --audit» to report missing and empty architecture fields.
1828     Regression introduced in dpkg 1.16.2.
1829   * Add support to dpkg-deb for reading the archive from standard input,
1830     except for --raw-extract which does not yet support it. Closes: #616614
1831     Based on a patch by Johannes Schauer <j.schauer@email.de>.
1832   * Add ‘.mailmap’ to the default dpkg-source ignore lists.
1833   * Set the SE Linux context on «dpkg-statoverride --update». Closes: #690361
1834   * Do not fail on dpkg-query -W and -l when multiple arguments match the
1835     same package. Closes: #588505
1836   * Change dpkg-maintscript-helper to handle symlinks and pathnames ending in
1837     slash. For the former error out, for the latter strip it. Closes: #771752
1838   * Support moving a conffile not being shipped anymore. Closes: #767003
1839     Thanks to Mathias Behrle <mathiasb@m9s.biz>.
1840   * Add a new dpkg-buildflags sanitize feature area:
1841     - Add new “address”, “thread”, “leak” and “undefined” features, all
1842       disabled by default. Closes: #760741
1843   * Do not accept unknown user or group names on «dpkg-statoverride --add».
1844     Regression introduced in dpkg 1.17.11. Closes: #775124
1845   * Normalize dpkg-parsechangelog command-line parsing, so that «-ovalue»,
1846     «-o value», «--option=value» and «--option value» will all be accepted.
1847     Closes: #693951
1848   * Add dpkg --ctrl-tarfile forwarding command for dpkg-deb.
1849   * Disable dependency checks on dpkg-buildpackage -S -nc.
1850   * Make dependency checks fatal for dpkg-buildpackage -S.
1851   * Update amd64 GNU cpu regex in cputable to match amd64 too, in addition
1852     to x86_64. This is required for FreeBSD.
1853   * Use badusage() instead of ohshit() for command-line errors.
1854   * Use the original template symbols file when diffing in dpkg-gensymbols.
1855     We should not create a new template symbols file, because the output
1856     might change (different sorting order for example) relative to the
1857     original. Closes: #773718
1858   * Do not leak kvm descriptors in start-stop-daemon on GNU/kFreeBSD systems.
1859     Based on a patch by Jeff Epler <jepler@unpythonic.net>. Closes: #779467
1860   * Switch start-stop-daemon to use a monotonic clock if available. This
1861     makes the timeout checks resilient to abrupt system clock changes.
1862     Suggested by Jose M Calhariz <jose.calhariz@hds.com>. Closes: #783014
1863   * Fix perl warning in dpkg-genchanges when parsing BY-HAND file entries.
1864     Regression introduced in dpkg 1.17.7. Closes: #781074
1865   * Use the checksums files list order when building the Files field to match
1866     the other Checksum fields in dpkg-genchanges.
1867   * Skip files based on the architecture from the filename in dpkg-genchanges.
1868   * Allow binary packages not found in debian/control in dpkg-genchanges,
1869     which could allow injecting debug .debs for example.
1870   * Annotate any non-deb binary descriptions (not just udebs) with their
1871     package type in dpkg-genchanges.
1872   * Remove outdated local copy of the Debian README.mirrors.txt file from
1873     dselect ftp access method, and print a message pointing to the current
1874     URL instead. Closes: #784966
1875   * Cleanup default dpkg-shlibdeps shared library directory search list:
1876     - Do not add cross-root directories (/<triplet>/ and /usr/<triplet>/).
1877     - Remove ancient multilib /emul/ia32-linux/ paths.
1878     - Reorder directory precedence to:
1879       «dpkg-shlibdeps -l» > ENV{LD_LIBRARY_PATHS} > cross-multiarch >
1880       DEFAULT_LIBRARY_PATH > ld.so.conf > DEFAULT_MULTILIB_PATH
1881   * When upgrading, copy over the cached arch-qualified package name. This
1882     fixes wrong output when cross-grading.
1883   * Consider foreign packages ambiguous in need of an arch-qualifier.
1884   * Perl modules:
1885     - Rename and deprecate Dpkg::Gettext _g function with new g_.
1886     - Assume in Dpkg::Arch that the abitable is always present, and bump
1887       libdpkg-perl Depends on dpkg to 1.16.3, the version introducing the file.
1888     - Remove support for GCC_TARGET environment variable from Dpkg::Shlibs.
1889       This was a temporary workaround for very old gcc toolchains. See #453267.
1890     - Prefer multiarch paths to multilib ones in Dpkg::Shlibs.
1891       Thanks to Helmut Grohne <helmut@subdivi.de>. Closes: #772184
1892     - Enable sub-second timestamps in Dpkg::Source::Patch by using Time::HiRes.
1893     - Use TMPDIR instead of manually setting DIR on tempfile() call in
1894       Dpkg::Source::Package::V2.
1895     - Switch Dpkg::Checksums from using checksum programs to the more portable
1896       Digest modules. Obsolete the 'program' property, and add a 'name' one.
1897     - Add support for $DEFAULT_TEXT_DOMAIN to Dpkg::Gettext, so that the Dpkg
1898       perl modules can always produce localized messages.
1899     - Fix OpenPGP Armor Header Line parsing in Dpkg::Control::Hash. We should
1900       only accept [\r\t ] as trailing whitespace, although RFC4880 does not
1901       clarify what whitespace really maps to, we should really match the GnuPG
1902       implementation anyway, as that's what we use to verify the signatures.
1903       Reported by Jann Horn <jann@thejh.net>. Fixes CVE-2015-0840.
1904     - Pass PATCH_GET environment variable instead of -g0 to the patch command
1905       in Dpkg::Source::Patch. This allows using non-GNU patch programs, like
1906       FreeBSD's patch.
1907     - Accept an %opts argument for the Dpkg::Control::Info constructor, and
1908       accept either passing a filename option as undef, or a scalar undef.
1909       Closes: #782019
1910     - Do not print on undef filehandle in Dpkg::Control::Info output().
1911       Thanks to Roderich Schupp <roderich.schupp@gmail.com>. Closes: #781887
1912     - Always sort the Dpkg::Dist::Files files list on output, instead of
1913       preserving the insertion order, which is not reproducible with parallel
1914       builds. Reported by Jérémy Bobbio <lunar@debian.org>.
1915     - Add new filter() method to Dpkg::Substvars.
1916     - Kill the process when reaching timeout in Dpkg::IPC::wait_child().
1917   * Test suite:
1918     - Check perl code compilation, warnings and strictness.
1919     - Fix dpkg-divert unit test to work on BSD «rm -rf» that cannot traverse
1920       directories with mode 000.
1921     - Fix dpkg-divert unit test to work when there is no /dev/full.
1922     - Skip test cases when there is no c++filt available.
1923     - Add test cases for Dpkg::Conf and Dpkg::Checksums.
1924     - Handle libtool executables in progname unit test.
1925     - Do not use a timeout when testing cat I/O, speeds up test suite by 5s.
1926     - Reduce timeout test from 5 seconds to 1, to speed up test suite by 4s.
1927   * Build system:
1928     - Bump gettext version to 0.19:
1929       + Use --add-location=file in msgmerge and xgettext commands.
1930       + Use --porefs=noline for po4a command.
1931     - Wrap file references in man page PO files with po4a --porefs=wrap.
1932     - Fix support for cross-building dpkg:
1933       + Assume a working C99 snprintf on SUS >= v3.
1934       + Do not try to run the va_copy configure check, just check that the
1935         symbol is available.
1936     - Check that HAVE_DECL_SYS_SIGLIST is 0 instead of undefined, to fix a
1937       build failure on uclibc based systems. Closes: #777044
1938       Based on a patch by Alex Potapenko <opotapenko@gmail.com>.
1939     - Use single suffix rules instead of non-portable %-pattern rules.
1940     - Pass CC to the test suite, so that we can use a non-gcc compiler.
1941     - Call AM_PROG_AR to detect the correct system archiver to use.
1942     - Pass -Wall to automake in AM_INIT_AUTOMAKE, not implied by foreign.
1943   * Packaging:
1944     - Remove old trigger related Breaks and Conflicts from dpkg.
1945     - Only use stackprotectorstrong when building dpkg with gcc >= 4.9.
1946     - Switch to debhelper compatibility level 9.
1947     - Name each public-domain license with a different name.
1948     - Add missing public modules to dpkg-dev package description.
1949     - Get rid of backward compatibility pseudo-tags from bug reports.
1950     - Install doc/README.feature-removal-schedule only on affected packages
1951       and debian/usertags everywhere.
1952   * Documentation:
1953     - Document arch-qualifiers for dependency fields in deb-control(5) and
1954       deb-src-control(5). Reported by Johannes Schauer <j.schauer@email.de>.
1955       Closes: #768842
1956     - Document versioned Provides in deb-control(5).
1957     - Document the version when dpkg-deb --raw-extract got introduced.
1958     - Document dpkg --log format, add missing actions and describe the startup
1959       messages. Closes: #773398
1960     - Document when and how the dpkg-maintscript-helper package name argument
1961       is or should be arch-qualified. Closes: #776072
1962     - Fix and update Arch substvar description in deb-substvars(5).
1963     - Document that current build flag feature areas only work on Debian and
1964       derivatives in dpkg-buildflags(1).
1965     - Use “wildcard characters” instead of “wildchars” in dpkg-query(1).
1966     - Document dpkg-query --search behavior in man page. Closes: #775379
1967     - Document postinst “triggered” argument in debian/dpkg.postinst comment
1968       header.
1969     - Document Dpkg::IPC function signatures.
1970     - Document the obsolete --compare-versions '<' and '>' operators in the
1971       dpkg(1) man page. Thanks to Tomas Pospisek <tpo_hp@sourcepole.ch>.
1972       Closes: #776551
1973     - Move dpkg-divert, dpkg-statoverride and update-alternatives man pages
1974       from section 8 to 1, to match their installation path.
1975     - Capitalize dpkg-parsechangelog(1) option descriptions.
1976     - Mark dpkg-parsechangelog(1) --format values in bold.
1977     - Place short options before long ones in dpkg-mergechangelogs(1) and
1978       dselect(1) man pages.
1979     - Properly terminate a bold marking in dpkg(1).
1980     - Document in man pages the dpkg version when new features were introduced.
1981     - Document that timestamps are reset for files patched with source format
1982       “3.0 (quilt)” too.
1983     - Document in dpkg-buildpackage(1) that using dpkg-source is sometimes
1984       better than -S. Suggested by Johannes Schauer <j.schauer@email.de>.
1985     - Document dselect -? option.
1986     - Document in dpkg-buildflags(1) that DEB_VENDOR influences the execution.
1987     - Document that dpkg performs sanity checks on PATH.
1988     - Mark some words and commands as non-hyphenable in man pages.
1989     - Separate multi-line hanging tag paragraphs with .TQ in man pages.
1990     - Mark field names in bold in man pages.
1991     - Use various groff escape sequences for quoting characters.
1992     - Lowercase warning and note admonitions in start-stop-daemon(8).
1993     - Mark dselect(1) color attributes in bold.
1994     - Say output instead of display for dpkg-deb tar-file option in dpkg(1).
1995     - Say archive instead of filename for dpkg-deb option in dpkg(1).
1996     - Say control-field-name instead of control-file-field in dpkg-deb(1).
1997     - Fix option values and pathname markup in dpkg-deb(1).
1998     - Use .TQ to separate different but related options in dpkg(1).
1999     - Clarify that dpkg-buildpackage -jN forces parallel builds, regardless of
2000       the packaging or upstream build systems supporting them. Closes: #780866
2001     - Remove unneeded update-alternatives references from options descriptions.
2002     - Document that apt might expect Packages.xz too in dpkg-scanpackages(1).
2003     - Say METHODS instead of FUNCTIONS or OBJECT FOO in POD section titles.
2004     - Document dpkg version when perl module versions got bumped.
2005   * Output message fixes and improvements:
2006     - Remove trailing newline from string literal in warning calls.
2007     - Say “execute” instead of “exec” in Dpkg::Changelog::Parse error message.
2008     - Say “package” instead of “it” in dpkg-name warning message.
2009     - Uppercase field names in error messages.
2010     - Expand EOF and eof into “end of file” in error messages.
2011     - Use “<enter>” instead of “return” or “enter” in input prompts.
2012     - Say directory instead of dir in output messages.
2013     - Merge the same dpkg-scanpackages warning messages into a single line.
2014     - Clarify dpkg-genchanges changes description open error.
2015     - Add missing preposition in Dpkg::Source::Patch error message.
2016     - Improve available state sorting order strings in dselect panel.
2017     - Say “changelog-file” instead of “changelogfile” in --help output.
2018     - Say “command” instead of “action” for dselect.
2019     - Improve commands listing in «dselect --help» output, by printing them
2020       before options and listing them one on each line with a description.
2021     - Improve dselect color-spec --help output.
2022     - Move "(default)" annotations in scripts --help output after option
2023       description.
2024     - Consistently use proper quotation marks ("" or '', and not the
2025       unbalanced `' pair) all over the place.
2026     - Use syserr() instead of an ad-hoc error message in dpkg-scansources.
2027     - Say substvars instead of varlist in dpkg-shlibdeps error messages.
2028     - Fix error messages on invalid uid/git/mode command-line syntax errors
2029       in dpkg-statoverride, to not say they are from the statoverride file.
2030     - Fix error message on empty dsc file in dpkg-genchanges.
2031     - Mention “(^Z)” instead of “char” for the MSDOS end of file character.
2033   [ Raphaël Hertzog ]
2034   * Drop myself from Uploaders.
2036   [ Updated programs translations ]
2037   * Simplified Chinese (Zhou Mo). Closes: #782326
2038   * Turkish (Mert Dirik). Closes: #785096
2039   * Vietnamese (Trần Ngọc Quân).
2041   [ Updated scripts translations ]
2042   * German (Helge Kreutzmann).
2044   [ Updated man pages translations ]
2045   * German (Helge Kreutzmann).
2047  -- Guillem Jover <guillem@debian.org>  Mon, 18 May 2015 15:08:31 +0200
2049 dpkg (1.17.23) unstable; urgency=low
2051   [ Guillem Jover ]
2052   * Use a matching group instead of ${^MATCH} in s/// in dselect build script.
2053   * Skip tar extractor tests if tar is not GNU tar >= 1.27.
2054   * Reset the trigger cycle tracking on unsatisfied dependencies during
2055     trigger processing. Closes: #771730
2056   * Fix out-of-bounds buffer read accesses when parsing field and trigger
2057     names or checking package ownership of conffiles and directories.
2058     Reported by Joshua Rogers <megamansec@gmail.com>.
2059   * Add versioned Breaks on packages creating trigger cycles. Namely auctex,
2060     apt-cudf, ccache, cups, distcc, fusionforge-plugin-mediawiki, gap-core,
2061     gxine, hoogle, icecc, libjs-protoaculous, mcollective, pypy, wordpress
2062     and xfonts-traditional.
2064   [ Updated programs translations ]
2065   * Basque (Iñaki Larrañaga Murgoitio). Closes: #771893
2066   * Catalan (Guillem Jover).
2067   * Czech (Miroslav Kure).
2068   * Esperanto (Felipe Castro).
2069   * French (Sébastien Poher).
2070   * Italian (Milo Casagrande).
2071   * Portuguese (Miguel Figueiredo).
2072   * Russian (Yuri Kozlov). Closes: #771691
2073   * Simplified Chinese (Zhou Mo). Closes: #771264
2074   * Spanish (Javier Fernández-Sanguino)
2075   * Swedish (Peter Krefting).
2076   * Thai (Theppitak Karoonboonyanan). Closes: #772965
2078   [ Updated scripts translations ]
2079   * Catalan (Guillem Jover).
2080   * Polish (Łukasz Dulny).
2081   * Russian (Yuri Kozlov). Closes: #772841
2083   [ Updated man pages translations ]
2084   * French (Sébastien Poher).
2085   * Italian (Beatrice Torracca). Closes: #771673
2087   [ Updated dselect translations ]
2088   * Catalan (Guillem Jover).
2089   * Czech (Miroslav Kure).
2090   * Norwegian Bokmål (Hans Fredrik Nordhaug).
2091   * Polish (Łukasz Dulny).
2092   * Portuguese (Miguel Figueiredo).
2093   * Russian (Yuri Kozlov). Closes: #771682
2094   * Spanish (Javier Fernández-Sanguino)
2095   * Vietnamese (Trần Ngọc Quân).
2097  -- Guillem Jover <guillem@debian.org>  Tue, 23 Dec 2014 17:45:44 +0100
2099 dpkg (1.17.22) unstable; urgency=low
2101   [ Guillem Jover ]
2102   * Add version introducing --ctrl-tarfile in dpkg-deb(1) man page.
2103   * Bump minimal version for dir_to_symlink and symlink_to_dir commands
2104     to 1.17.14 in dpkg-maintscript-helper(1) man page. Closes: #769843
2105   * Reintroduce update-alternatives, dpkg-divert and dpkg-statoverride
2106     compatibility symlinks under /usr/sbin/. There are still packages
2107     using those paths, but the relevant lintian check did not list any,
2108     so this got removed prematurely.
2109   * Add Breaks on old man-db, fontconfig and readahead-fedora packages using
2110     awaiting triggers, as they produce trigger cycles. Closes: #768599
2111   * Escape package and architecture names on control file parsing warning,
2112     as those get injected into a variable that is used as a format string,
2113     and they come from the package fields, which are under user control.
2114     Regression introduced in dpkg 1.16.0. Fixes CVE-2014-8625. Closes: #768485
2115     Reported by Joshua Rogers <megamansec@gmail.com>.
2116   * Do not match partial field names in control files. Closes: #769119
2117     Regression introduced in dpkg 1.10.
2118   * Fix build on Mac OS X. Regression introduced in dpkg 1.17.11.
2119     Reported by Dominyk Tiller <dominyktiller@gmail.com>.
2120   * Normalize tar entry uid and gid from the current system only in dpkg
2121     unpack. Regression introduced in dpkg 1.17.14. Closes: #769211
2122   * Restore multiple processing instances check for packages and archives
2123     specified on the command-line. Regression introduced in dpkg 1.17.20.
2124   * Fail on trigger processing when it is required to progress. Trigger
2125     processing is sometimes required and sometimes opportunistic, and we
2126     should only fail on the former but ignore the latter. Closes: #768852
2127   * Do not ignore trigger cycles for direct dependencies, these are just
2128     normal trigger cycles, and as such should not be special cased.
2129   * Register all pending triggers for deferred processing when being called
2130     as «dpkg --configure pkgname…». This is a mostly conformant workaround
2131     for frontends like apt that do not correctly call «dpkg --configure -a»
2132     or «dpkg --triggers-only -a» after their normal runs, and leave packages
2133     in triggers-pending and triggers-awaited states. Closes: #766758
2135   [ Updated programs translations ]
2136   * Catalan (Guillem Jover).
2137   * Danish (Joe Dalton).
2138   * French (Sébastien Poher).
2139   * German (Sven Joachim).
2140   * Japanese (Kenshi Muto). Closes: #771255
2141   * Polish (Łukasz Dulny).
2142   * Simplified Chinese (Zhou Mo). Closes: #766724, #770280
2143   * Swedish (Peter Krefting).
2144   * Turkish (Mert Dirik).
2145   * Vietnamese (Trần Ngọc Quân)
2147   [ Updated scripts translations ]
2148   * French (Sébastien Poher).
2149   * German (Helge Kreutzmann).
2150   * Swedish (Peter Krefting).
2152   [ Updated man pages translations ]
2153   * French (Sébastien Poher). Closes: #767934
2154   * German (Helge Kreutzmann). Closes: #752123
2155   * Simplified Chinese (Zhou Mo). Closes: #767573
2156   * Swedish (Peter Krefting).
2158   [ Updated dselect translations ]
2159   * Danish (Joe Dalton).
2160   * Dutch (Frans Spiesschaert). Closes: #771237
2161   * French (Sébastien Poher). Closes: #767918
2162   * Japanese (Kenshi Muto). Closes: #771256
2163   * Swedish (Peter Krefting).
2165  -- Guillem Jover <guillem@debian.org>  Fri, 28 Nov 2014 02:02:34 +0100
2167 dpkg (1.17.21) unstable; urgency=low
2169   [ Guillem Jover ]
2170   * Get consistent git-style diff support, by adding (>= 2.7) to the dpkg-dev
2171     patch Depends, and a Breaks patch (<< 2.7) to libdpkg-perl.
2172   * Error out on obsolete Build-Profiles field syntax.
2173   * Document -g and -G options in dpkg-genchanges(1). Closes: #766568
2174   * Do not accept values bundled with long options in dpkg-parsechangelog.
2175     The parser was accepting things like «--count10», which is just broken.
2176     Instead allow only «--count=10» in addition to «--count 10».
2177   * Accept «-S value» in addition to «-Svalue» in dpkg-parsechangelog.
2178     Closes: #766559
2179   * Add support for new interest-await and activate-await trigger directives.
2180     And a new --await option to dpkg-trigger. This might allow possibly
2181     switching the default meaning after a transition period no shorter than
2182     two minor versions, so in 1.19.x or 1.20.x. Perhaps.
2183   * Do trigger cycle detection after dependency checks in dependtry <= 1,
2184     and before dependency cycle breaking in dependtry > 1. This makes sure
2185     to always catch trigger cycles, but still gives the opportunity to try
2186     to process triggers for packages that are not yet ready in the first
2187     dependtry, but which might be a bit later on, without wrongly detecting
2188     avoidable and bogus trigger cycles. Closes: #766557
2189   * Update features removal schedule:
2190     - The -u, --udeb dpkg-scanpackages options got removed, state that.
2191     - Remove the entry about obsolete fields, as these need to be preserved
2192       for backward compatibility, they are part of the external interface to
2193       be able to handle ancient binary packages.
2195   [ Updated programs translations ]
2196   * Catalan (Guillem Jover).
2197   * German (Sven Joachim). Closes: #766311
2198   * Simplified Chinese (Zhou Mo).
2200   [ Updated scripts translations ]
2201   * Catalan (Guillem Jover).
2203  -- Guillem Jover <guillem@debian.org>  Sat, 25 Oct 2014 02:21:43 +0200
2205 dpkg (1.17.20) unstable; urgency=low
2207   [ Guillem Jover ]
2208   * Add a requeueing insertion protection for process_queue().
2209   * Make sure to always switch to the next dependtry after we have made no
2210     progress for a while. Regression stemming from non future proof changes
2211     introduced with the initial triggers implementation in dpkg 1.14.17
2212     combined with changes in dpkg 1.17.19. Closes: #766242, #766322
2213   * Make the initial dependtry be 1 instead of 0. This gets rid of an unused
2214     dependtry step, which got accidentally introduced when the perl dpkg was
2215     rewritten in C, ages ago.
2216   * Allow detached upstream signatures for upstream orig.tar files in the
2217     .dsc file. Suggested by Daniel Kahn Gillmor <dkg@fifthhorseman.net>.
2218     Closes: #759478
2219   * Inline alternative status description into translatable string in
2220     update-alternatives. Required-by: #766311
2221   * Reword description for installed status in dpkg(1) man page.
2223   [ Updated programs translations ]
2224   * German (Sven Joachim).
2225   * Simplified Chinese (Zhou Mo).
2226   * Vietnamese (Trần Ngọc Quân).
2228  -- Guillem Jover <guillem@debian.org>  Thu, 23 Oct 2014 00:43:05 +0200
2230 dpkg (1.17.19) unstable; urgency=low
2232   [ Guillem Jover ]
2233   * Bump the Breaks on devscripts to 2.14.10 due to the new dpkg-architecture
2234     command-line parsing strictness introduced in 1.17.17. Closes: #764965
2235   * Create pidfiles even when start-stop-daemon is not asked to background
2236     the process itself. Although a bit of a dubious usage, because any error
2237     before executing the program will not be properly reported to the caller.
2238     Regression introduced in dpkg 1.17.14. Closes: #765110
2239   * Add new --remove-pidfile option to start-stop-daemon.
2240   * Mention --pid and --ppid in start-stop-daemon(8) man page DESCRIPTION.
2241   * Add invoke hooks for dpkg --add-architecture and --remove-architecture.
2242     Prompted by Helmut Grohne <helmut@subdivi.de>.
2243   * Reverse --verify-format logic to actually accept 'rpm' as valid.
2244     Closes: #765907
2245   * Fix trigger dependency checks and cycle detection.
2246     Regression introduced in dpkg 1.17.17.
2247     Closes: #765434, #765668, #765734, #765781, #765789, #765952
2248   * Rework dependency problem debug and notice output on trigger processing.
2250   [ Updated programs translations ]
2251   * Italian (Milo Casagrande): Closes: #765748
2252   * Turkish (Mert Dirik). Closes: #764942
2253   * Simplified Chinese (Zhou Mo). Closes: #765693
2255   [ Updated scripts translations ]
2256   * German (Helge Kreutzmann).
2258   [ Updated man pages translations ]
2259   * German (Helge Kreutzmann).
2261  -- Guillem Jover <guillem@debian.org>  Mon, 20 Oct 2014 15:17:49 +0200
2263 dpkg (1.17.18) unstable; urgency=low
2265   [ Guillem Jover ]
2266   * Handle empty minimum versions when initializing dependency versions,
2267     as the code is mapping the minimum version 0 to '' to avoid outputting
2268     useless versions. Regression introduced in dpkg 1.17.17. Closes: #764929
2270   [ Updated programs translations ]
2271   * Catalan (Guillem Jover).
2273   [ Updated dselect translations ]
2274   * Catalan (Guillem Jover).
2275   * German (Sven Joachim).
2277  -- Guillem Jover <guillem@debian.org>  Sun, 12 Oct 2014 15:47:44 +0200
2279 dpkg (1.17.17) unstable; urgency=low
2281   [ Guillem Jover ]
2282   * Add dpkg-vendor, Dpkg/File.pm and Dpkg/Util.pm to the list of files with
2283     translatable strings, so that they can be translated.
2284   * Fix some typos for versioned and mentioned in comments and changelogs.
2285   * Mark for translation and unify "rm cleanup" string in dpkg.
2286   * Mark for translation and improve dselect method handling error messages.
2287   * Defer trigger processing if the package does not fulfill dependencies.
2288     Closes: #671711
2289   * Do not write to the database when changing selections with --dry-run.
2290     Closes: #764673
2291   * Add missing imports from Dpkg::BuildProfiles in dpkg-genchanges.
2292     Regression introduced in dpkg 1.17.14. Closes: #764216
2293     Reported by Johannes Schauer <j.schauer@email.de>.
2294   * Initialize dependencies with the correct minimum version from a symbols
2295     file with multiple SONAMEs in dpkg-shlibdeps.
2296     Thanks to Jérémy Bobbio <lunar@debian.org>. Closes: #764721
2297   * Perl modules:
2298     - Allow multiple whitespace in Dpkg::BuildProfiles::get_build_profiles()
2299       when parsing the DEB_BUILD_PROFILES environment variable.
2300       Thanks to Johannes Schauer <j.schauer@email.de>.
2301     - New Dpkg::Getopt private module.
2302     - Document public module Dpkg.
2303     - Document public module Dpkg::Gettext.
2304     - Mark Dpkg::BuildProfiles as a public module.
2305     - Document all public module versions in a CHANGES section.
2306     - Remove EXPORTED from POD section titles.
2307     - Document private modules as such in a CHANGES section.
2308   * Set the DEB_TARGET_* dpkg-architecture variables from architecture.mk.
2309     Missed in dpkg 1.17.14.
2310   * Initialize DEB_TARGET_ARCH variable without requiring DEB_HOST_ARCH,
2311     which is not being set at all when querying for DEB_TARGET_ variables.
2312   * Normalize dpkg-architecture command-line parsing, so that «--option=value»
2313     «--option value», «-ovalue» and «-o value» will all be accepted.
2314   * Add long option names for all dpkg-architecture short options.
2315   * Add support for --host-arch, --host-type, --target-arch and --target-type
2316     long options in dpkg-buildpackage. These will get passed through to
2317     dpkg-architecture. This restores the ability to specify the target
2318     architecture when building cross-compilers. Regression introduced in
2319     dpkg 1.17.14. Reported by Helmut Grohne <helmut@subdivi.de>.
2320   * Do not modify the topic variable values in list functions in perl code.
2321   * List Dpkg::Exit and Dpkg::Interface::Storable as public modules in
2322     libdpkg-perl package description.
2324   [ Updated programs translations ]
2325   * German (Sven Joachim).
2326   * Vietnamese (Trần Ngọc Quân).
2328   [ Updated scripts translations ]
2329   * German (Helge Kreutzmann).
2331  -- Guillem Jover <guillem@debian.org>  Sun, 12 Oct 2014 04:59:09 +0200
2333 dpkg (1.17.16) unstable; urgency=low
2335   * Set the copyright holder in the po4a calls for man pages.
2336   * Switch remaining topic to named variable in Dpkg::Source::Patch:analyze(),
2337     otherwise the loop was expecting values in one variable but storing them
2338     in another. Regression introduced in dpkg 1.17.14. Closes: #764206
2339   * Set umask to 0 when creating symlinks in tar test case, to normalize
2340     results. POSIX specifies that symlinks have undefined permissions in
2341     their mode, so their setting is system dependent. Linux does not honor
2342     the umask for symlinks, other systems like Hurd or kFreeBSD do.
2343     Regression introduced in dpkg 1.17.14. Closes: #764171
2345  -- Guillem Jover <guillem@debian.org>  Mon, 06 Oct 2014 13:29:17 +0200
2347 dpkg (1.17.15) unstable; urgency=low
2349   * Do not blacklist pie and stackprotector build flags on mips/mipsel.
2350     Thanks to Aurelien Jarno <aurelien@aurel32.net>. Closes: #763672
2351   * Fix build failures due to mismatched umask in libdpkg tar test case.
2352     Set it to a known value of 0022.
2354  -- Guillem Jover <guillem@debian.org>  Mon, 06 Oct 2014 03:21:58 +0200
2356 dpkg (1.17.14) unstable; urgency=low
2358   [ Guillem Jover ]
2359   * Fix '--' to '-' on translations for single character options.
2360   * Correct the copyright holder in the gettext Makevars files.
2361   * Switch debian/copyright to machine-readable format 1.0, and extensively
2362     update the information within.
2363   * Bump Standards-Version to 3.9.6 (no changes needed).
2364   * Disable unused run-time type information for dselect.
2365   * Fix compiler flag detection with non-GCC compilers in the build system.
2366   * Fix perl warning on dpkg-source when typing Ctrl-D on patch name prompt.
2367   * Add new dpkg-deb --ctrl-tarfile command.
2368   * dpkg-architecture:
2369     - Add support for target system information via the new DEB_TARGET_ family
2370       of variables, and new -A and -T options to override defaulting to the
2371       host system.
2372     - Clarify that -a, -t, -e and -i work with the host system.
2373   * Place 'Commands:' before 'Options:' sections on --help output in
2374     dpkg-architecture and dpkg-vendor.
2375   * Always warn in dpkg-genchanges on missing Section or Priority value,
2376     either empty or '-'.
2377   * Fix order of Files field on generated .changes file in dpkg-genchanges.
2378     Regression introduced in dpkg 1.17.7.
2379   * Stop warning on unknown arbitrary fields from dpkg-deb.
2380   * Remove unnecessary handling of obsolete Package_Revision field in dselect
2381     ftp method.
2382   * Fix the build system to parse the system curses.h header instead of
2383     dselect-curses.h, to not just default on the builtin and override keys
2384     for dselect key bindings support. Regression introduced in dpkg 1.15.1.
2385   * Emit a warning when using the obsolete Dpkg::Deps check_package() function.
2386   * Add support for versioned Provides to Dpkg::Deps::KnownFacts, missed in
2387     dpkg 1.17.11.
2388   * Man pages:
2389     - Add a mention of packaging helpers support in dpkg-maintscript-helper(1).
2390       Closes: #759754
2391     - Move dpkg-buildflags(1) generic feature area details to the section top.
2392     - Fix prerm invocation arguments in update-alternatives(8).
2393       Reported by jre <jre.winesim@gmail.com>. Closes: #761025
2394   * Add new deps_iterate() function to Dpkg::Deps. Closes: #759747
2395     Based on a patch by Dima Kogan <dima@secretsauce.net>.
2396   * Add support for relative symlinks to dpkg-maintscript-helper symlink_to_dir
2397     command. Suggested by Don Armstrong <don@debian.org>.
2398   * Add a new dpkg-buildflags qa feature area:
2399     - Add a new bug feature, disabled by default, which will enable fatal
2400       warnings for code that can pose actual problems. Closes: #682659
2401     - Add a new canary feature, disabled by default, which will allow tracking
2402       build flags propagation. Closes: #628516
2403   * Pass DEB_BUILD_OPTIONS to dpkg-buildflags in buildflags.mk, required to
2404     get noopt to work at all, for example.
2405   * Add a new dpkg-buildflags reproducible feature area:
2406     - Add a new timeless feature, disabled by default, which will add
2407       «-Wdate-time» to CPPFLAGS.
2408     Thanks to Paul Wise <pabs@debian.org>. Closes: #762683
2409   * Fix error message from buffer_copy() read and write functions. This
2410     affects error messages from partial or broken .deb packages for example.
2411     Regression introduced in dpkg 1.17.10. Closes: #759498
2412   * Remove lpia architecture support.
2413   * Improvements and portability fixes to start-stop-daemon:
2414     - Abort if the system or compatibility setsid() fails.
2415     - Do not exit from the first parent before the pidfile has been created,
2416       when using --background and --make-pidfile, to avoid the race condition.
2417       Based on a patch by Nir Soffer <nirs@hyperms.com>. Closes: #686420
2418     - Make sure the pidfile is always created with a 022 umask.
2419       Reported by Will Conley <willconley3@gmail.com>. Closes: #760222
2420     - Do not abort on --stop when only --pid or --ppid options are specified.
2421       Thanks to Christos Trochalakis <yatiohi@ideopolis.gr>. Closes: #763767
2422     - On kFreeBSD systems do not unnecessarily make kvm_openfiles() open
2423       /dev/mem. This causes issues on FreeBSD jails for example.
2424       Reported by Steven Chamberlain <steven@pyro.eu.org>.
2425     - On systems using libkvm, do not fail when kvm_getprocs() cannot find
2426       any process.
2427   * Map i786 to i386 also for the multiarch pathname in dpkg-architecture.
2428   * Handle omitted binary packages due to build profiles in dpkg-genchanges.
2429     Based on a patch by Johannes Schauer <j.schauer@email.de>. Closes: #758191
2430   * Update restriction formula syntax for build profiles:
2431     - Restriction lists are now restriction formulas.
2432     - Restriction formulas are given in disjunctive normal form expression:
2433       <foo> <bar baz> <blub>
2434     - Removal of the implicit prefix/namespace mechanic.
2435     - Construct the profiles entry of the Packages-List field by converting
2436       the "<bar baz> <blub>" syntax into "bar,baz+blub".
2437     - Include a temporary compatibility mapping with the old way to write
2438       the Build-Profiles field in binary packages which can be removed once
2439       all affected source packages have moved to the new syntax.
2440     Thanks to Johannes Schauer <j.schauer@email.de>. Closes: #760158
2441   * Normalize instdir in dpkg by removing trailing «/» and «/.». This gets
2442     rid of several inconsistencies and doubled «/» in syscalls and output
2443     messages.
2444   * Never try to remove the root directory or its backups. There's no point in
2445     it, and makes life more difficult for a read-only root with a read-write
2446     overlay or a symlink farm. Requested by sepero111@gmx.com.
2447   * Remove arbitrary filename limit from dpkg-deb, which was lifted some
2448     time ago when the code switched to a dynamic string via varbuf.
2449   * Do not pipe the files to sign from dpkg-buildpackage to GnuPG. When GnuPG
2450     uses the gpg-agent it is unable to detect the correct tty configuration
2451     if stdin is a pipe instead of the current terminal. Closes: #762391
2452   * Add a new --hash option to enable generating only specific file checksums
2453     in dpkg-scanpackages. Requested by Thorsten Glaser <tg@debian.org>.
2454   * Add architecture restriction options for dpkg-architecture -L. This allows
2455     selecting specific subsets of all valid known architectures, matching by
2456     wildcard (-W), endianness (-E) or bits (-B). The restricting options can
2457     be combined, or omitted altogether. Closes: #762635
2458   * Say arch-wildcard instead of arch-alias in dpkg-architecture --help output.
2459   * Test suite:
2460     - Do not leave temporary files behind on failure or when interrupted.
2461     - Add basic unit tests for the FNV hashing function.
2462     - Add unit tests for the libdpkg tar extractor.
2463   * Add --build and --extract command aliases to dpkg-source.
2464   * Print file or package names instead of pointers in dpkg debug output,
2465     to make it more meaningful and reproducible.
2466   * Fix off-by-one error in libdpkg command argv size calculation.
2467     Based on a patch by Bálint Réczey <balint@balintreczey.hu>. Closes: #760690
2468   * Switch the libdpkg string hashing function from FNV-1 to the recommended
2469     FNV-1a variant.
2470   * Switch the dpkg files database string hashing function from what appears
2471     to be a custom hash function to the libdpkg FNV-1a implementation. As a
2472     side effect this fixes an integer overflow. Addresses: #760741
2473   * Double the dpkg files database hash table size to the closest 2^18 prime.
2474     Times have changed, and it's common to have at least these many files.
2475     This reduces the amount of collisions.
2476   * Document optional dpkg -C argument in --help output. Closes: #763000
2477   * Consider a hardlink tar entry as a regular file for mode values, i.e.
2478     assign to it S_IFREG instead of 0.
2480   [ Raphaël Hertzog ]
2481   * Explain better in deb-triggers(5) why interest/activate-noawait should be
2482     favored.
2484   [ Updated programs translations ]
2485   * Catalan (Guillem Jover): Fix mismatched format string.
2486   * Czech (Miroslav Kure).
2487   * Polish (Łukasz Dulny).
2488   * Turkish (Mert Dirik). Closes: #763825
2490   [ Updated man pages translations ]
2491   * German (Helge Kreutzmann).
2492   * Italian (Guillem Jover): Swap order of some dpkg-deb arguments.
2493     Thanks to xor <xor@paranoici.org>. Closes: #759149
2495  -- Guillem Jover <guillem@debian.org>  Mon, 06 Oct 2014 00:11:08 +0200
2497 dpkg (1.17.13) unstable; urgency=low
2499   [ Guillem Jover ]
2500   * Remove unbalanced trailing single-quote in dpkg-deb error message.
2501     Reported by Trần Ngọc Quân <vnwildman@gmail.com>.
2502   * Remove architecture blacklist from hardening build flag option
2503     stackprotectorstrong. Thanks to Romain Francoise <rfrancoise@debian.org>.
2504   * Documentation:
2505     - Merge binary:Package descriptions in dpkg-query(1).
2506     - Split --remove and --purge options in dpkg(1). This also clarifies on
2507       which package states each option can operate. Closes: #576338
2508     - Remove duplicate “of the” in dpkg-maintscript-helper(1).
2509   * Fix dpkg-maintscript-helper dir_to_symlink to handle relative symlink
2510     targets. Thanks to Helmut Grohne <helmut@subdivi.de>.
2511   * Fix dpkg-maintscript-helper symlink_to_dir to assure absolute pathnames
2512     arguments.
2513   * Fix dpkg-source not detecting modified files during --commit or -b.
2514     Regression introduced in dpkg 1.17.11. Closes: #758426
2515     Reported by Neil Williams <codehelp@debian.org>.
2516   * Only test the strerror() compatible code if sys_errlist and sys_nerr
2517     are present. This fixes a build failure on GNU/Hurd. Closes: #758199
2518   * Switch start-stop-daemon on GNU/kFreeBSD systems to use libkvm, instead
2519     of relying on linprocfs which is not the native procfs on kFreeBSD, and it
2520     is usually not mounted as FreeBSD programs do not expect it to be present.
2522   [ Updated programs translations ]
2523   * Czech (Miroslav Kure).
2524   * German (Sven Joachim).
2525   * Vietnamese (Trần Ngọc Quân).
2527   [ Updated man pages translations ]
2528   * French (Jean-Pierre Giraud, Vincent Thomas, Raphaël Hertzog).
2530   [ Updated scripts translations ]
2531   * French (Raphaël Hertzog).
2532   * German (Helge Kreutzmann).
2534  -- Guillem Jover <guillem@debian.org>  Tue, 19 Aug 2014 20:14:45 +0200
2536 dpkg (1.17.12) unstable; urgency=low
2538   [ Guillem Jover ]
2539   * Only build the compatibility selinux code if libselinux is available or
2540     the user requested it. Also fixes build failures on non-Linux systems.
2541     Closes: #757637
2542   * Documentation:
2543     - Add a short description to each virtual field in dpkg-query(1), and
2544       mention the version they got introduced in dpkg.
2545     - Fix formatting of last paragraphs inside dselect(1) --color description.
2546   * Rework dselect columns code, to make it easier to maintain and read.
2547   * Add new architecture columns to dselect package list view. The new
2548     columns, shown by default, can be turned off with the new ‘A’ key,
2549     or bound to another key via the new “archdisplay” keybinding.
2550   * Fix a descriptor leak on dselect subprocesses when --debug is used.
2551   * Use «tar --format=gnu» when creating source archives. This makes sure we
2552     get a deterministic output format, regardless of what tar defaults to.
2553     Thanks to Jan Blunck <jblunck@infradead.org>..
2554   * Use perl's length instead of defined when checking some environment
2555     variables, if we require them to have content.
2556   * Allow specifying the same build type option multiple times in
2557     dpkg-buildpackage and dpkg-genchanges. There seems to be scripts with
2558     such invocations in the wild. Closes: #757795
2560   [ Updated programs translations ]
2561   * German (Sven Joachim).
2563   [ Updated scripts translations ]
2564   * German (Helge Kreutzmann).
2566   [ Updated man pages translations ]
2567   * German (Helge Kreutzmann).
2569  -- Guillem Jover <guillem@debian.org>  Fri, 15 Aug 2014 03:30:39 +0200
2571 dpkg (1.17.11) unstable; urgency=low
2573   [ Guillem Jover ]
2574   * Switch URLs in docs and code comments from http:// to https:// if the
2575     latter is available (round two). This includes the quilt patch header
2576     templates, and examples in man pages.
2577   * Update some dpkg git URLs to the new and newer (cgit switch) scheme.
2578   * Changes to libcompat:
2579     - Make the library testable.
2580     - Do not run qsort() over the scandir() list if it is NULL.
2581     - Add a setexecfilecon() compatibility function out from dpkg code.
2582   * Use SELinux setexecfilecon() if available in dpkg instead of ad-hoc code.
2583   * Replace obsolete <sys/fcntl.h> with <fcntl.h>, which fixes compilation on
2584     Android. Thanks to Fredrik Fornwall <fredrik@fornwall.net>. Closes: #752036
2585   * Fix file triggers/Unincorp descriptor leak on subprocesses. Regression
2586     introduced with the initial triggers implementation in dpkg 1.14.17.
2587     Closes: #751021
2588   * Do not disable the stack-protector build flags on arm64 in Debian and
2589     derivatives, the toolchain supports them now.
2590     Thanks to Adam Conrad <adconrad@debian.org>. Closes: #751032
2591   * When parsing the statoverride database from dpkg-statoverride do not
2592     consider it an error and refuse to operate at all if the user or group
2593     names are not known to the system, just preserve them. Closes: #563307
2594   * Do not write to the available file when unpacking binary packages. This
2595     information is not useful as dpkg has never recorded the archive path,
2596     so it has never been truly available for re-installation anyway.
2597   * Add versioned Provides support:
2598     - Add a new dpkg --assert-versioned-provides command.
2599     - Packages can provide a specific version, “virtual (= 1.0)” which will
2600       be honored, previously it would just be accepted when parsing.
2601     - Non-versioned virtual packages will not satisfy versioned dependencies.
2602     - Versioned virtual packages will satisfy non-versioned dependencies.
2603     Based on skeletal code by Ben Collins <bcollins@debian.org>.
2604     Closes: #7330, #24934, #112131, #134582, #180316
2605   * On removal check Depends and Pre-Depends for packages in unpacked and
2606     half-configured states too.
2607   * Add support for new hardening build flag stackprotectorstrong in Debian
2608     and derivatives, enabled by default. It will fallback to stackprotector
2609     when the former is not functional or disabled by the user.
2610     Thanks to Romain Francoise <rfrancoise@debian.org>.
2611   * Change «dpkg-deb --field» code to use the libdpkg deb822 parser instead
2612     of an ad-hoc one. This makes sure any field fixup and sanity check is
2613     performed on the input, and gets reflected on the output.
2614   * Add new dpkg-query virtual fields db:Status-Want, db:Status-Status and
2615     db:Status-Eflag to allow fine-grained access to the Status values.
2616   * Automatically add the Testsuite field in dpkg-source to the .dsc file.
2617   * Spell nocheck option in dpkg-scanpackages wait_child() call correctly.
2618     Spotted by James McCoy <jamessan@debian.org> (in devscripts).
2619   * Move the explanation of functional checks from --verify-format to the
2620     --verify command in the dpkg(1) man page. Closes: #747264
2621   * Improve dpkg-buildpackage(1) man page:
2622     - Mark DEB_CHECK_COMMAND environment variable in bold.
2623     - Add final item for done hook in the actions sequence.
2624     - Mention that -nc does not apply either when -F is specified.
2625     - Mention that the --FOO-option options can be used multiple times.
2626     - Fix a typo in the BUGS section.
2627   * Mark the “and” between the filenames as regular format in dpkg-source(1).
2628   * Add --format and --ignore-bad-version to dpkg-source --help output.
2629   * Clarify error message in Dpkg::Source::Quilt when patches fail to apply,
2630     to note that the patch might be malformed (besides not accepting patches
2631     with fuzz).
2632   * Try to preallocate the disk size for extracted files on unpack. This
2633     might help in avoiding filesystem fragmentation, and possibly improve
2634     performance on some filesystems.
2635   * Print the correct removed binary filename when building a source package
2636     with dpkg-source --include-removal. Closes: #755166
2637   * Add powerpcel support to cputable. Thanks to Jae Junh <jaejunh@embian.com>.
2638   * Bump the i386 architecture GNU triplet to i586-linux-gnu to match the
2639     change in gcc. Somewhat reluctantly, as i386 wants to be its unique
2640     snowflake and use a GNU triplet not matching its baseline. This will
2641     cause problems when cross-building and using unmatched combinations of
2642     dpkg-dev and gcc. Closes: #751363
2643   * Update i386 architecture GNU cpu regex in cputable to match i786 too.
2644   * Remove unused pkglibdir variable from libdpkg.pc.in.
2645   * Perl modules:
2646     - Add new set_as_auto() method to Dpkg::Substvars.
2647     - Add support for sig and delete_sig spawn() options in Dpkg::IPC.
2648     - Add %opts to ensure_open() member in Dpkg::Compression::FileHandle.
2649     - Change find_command() to handle an empty or undef argument in Dpkg:Path.
2650   * Mark Format and Installed-Size as automatic substvars in dpkg-genchanges
2651     and dpkg-gencontrol respectively.
2652   * Warn on usage of deprecated Source-Version substvar.
2653   * Say OpenPGP instead of PGP when referring to the standard on code comments
2654     and output messages.
2655   * Add a hint to the “no dependency information found” error message in
2656     dpkg-shlibdeps, to check if the library is actually packaged.
2657     Thanks to Sylvestre Ledru <sylvestre@debian.org>. Closes: #756230
2658   * Delete the current compressor SIGPIPE disposition in Dpkg::Source::Archive,
2659     which fixes ignoring SIGPIPE from the calling process. Closes: #756526
2660   * Ignore DEB_CHECK_COMMAND in dpkg-buildpackage if the command is not found.
2661   * Emit a warning when using the deprecated -is/-ip/-isp/-ips options in
2662     dpkg-gencontrol.
2663   * Only print build type once in dpkg-genchanges, instead of once for each
2664     specified -A or -B option and then yet another time for the general build
2665     type description.
2666   * Unify build options description in --help output for dpkg-buildpackage
2667     and dpkg-genchanges.
2668   * Only allow one build type option in dpkg-genchanges and dpkg-buildpackage.
2669   * Correctly filter the host architecture on the Architecture field in the
2670     generated .changes file from dpkg-genchanges, when the debian/files
2671     contains arch-specific packages but dpkg-genchanges was called with
2672     one of the build types excluding them.
2673   * Add new -g and -G options to dpkg-genchanges and dpkg-buildpackage for
2674     source plus arch-indep/specific builds. Closes: #756975
2675   * Fix dpkg --add-architecture and --remove-architecture to check that they
2676     get exactly one argument. Closes: #757254
2678   [ Updated programs translations ]
2679   * Danish (Joe Dalton). Closes: #754127
2680   * French (Jean-Baka Domelevo Entfellner, Julien Patriarca).
2681   * Portuguese (Miguel Figueiredo). Closes: #756920
2682   * Spanish (Guillem Jover): Fix «dpkg-query -l» header. Closes: #756209
2683   * Swedish (Peter Krefting).
2685   [ Updated scripts translations ]
2686   * Swedish (Peter Krefting).
2688   [ Updated man pages translations ]
2689   * Swedish (Peter Krefting).
2691  -- Guillem Jover <guillem@debian.org>  Sat, 09 Aug 2014 17:16:27 +0200
2693 dpkg (1.17.10) unstable; urgency=medium
2695   [ Guillem Jover ]
2696   * Use libtool to build the static libraries, which makes it possible to
2697     embed libcompat inside libdpkg, as required by some external programs
2698     linking against the latter. Closes: #746122
2699   * Fix word wrapping logic in dselect. Regression introduced in dpkg 1.17.3.
2700   * Fix possible out of bounds buffer read access in the error output on
2701     bogus ar member sizes.
2702   * Fix memory leaks in buffer_copy() on error conditions.
2703   * Test suite:
2704     - Improve C code coverage.
2705     - Add template test cases for most perl modules.
2706     - Add test cases for Dpkg::Deps OR relationships.
2707     - Add minimal test case for Dpkg::Source::Quilt.
2708     - Add test cases for Dpkg::Source::Patch CVE-2014-0471 and CVE-2014-3127.
2709     - Add test case for patch disabling hunks; not security sensitive.
2710   * Fix non-security sensitive TOCTOU race in triggers database loading.
2711   * Fix non-security sensitive TOCTOU race in update-alternative alternative
2712     database loading.
2713   * Fix non-security sensitive TOCTOU race in update-alternative rename code.
2714   * Add a workaround to start-stop-daemon for bogus OpenVZ Linux kernels that
2715     prepend, instead of appending, the " (deleted)" marker in /proc/PID/exe.
2716     Closes: #731530
2717   * Move dpkg-architecture -L argument to the Commands --help output section.
2718   * Make dpkg-maintscript-helper print only once that we are moving a
2719     conffile, and not on every interim state transition. Closes: #747370
2720   * Do not use global match variables in perl code.
2721   * Man pages:
2722     - Attempt to clarify and improve wording of some strange or confused
2723       constructs. Reported by Helge Kreutzmann.
2724     - Expand Vcs-* field names into each supported field name in
2725       deb-src-control(5) to make it easier to search for them.
2726     - Change control.tar.gz reference to simply control.tar in deb(5).
2727     - Document in dpkg-deb(1) -Z option that bzip2 and lzma are deprecated.
2728     - Add notes in dpkg-gensymbols(1) about symbol backward-compatibility.
2729       Based on a patch by Bernhard R. Link <brlink@debian.org>.
2730       Closes: #746973
2731     - Document that dpkg-buildpackage(1) -j argument is optional.
2732     - Add current and deprecated media types to deb(5).
2733     - Document in dpkg(1) that --audit now does more than just searching for
2734       partially installed packages.
2735   * Add support for automatic parallel job selection in dpkg-buildpackage,
2736     matching currently active processors, when using -jauto. Closes: #748012
2737   * Perl modules:
2738     - Bump $VERSION for Dpkg::Patch, missed in 1.16.1.
2739     - Bump $VERSION for Dpkg::Deps, missed in 1.17.0.
2740     - Update and fix CHANGES POD sections for public modules.
2741     - Add missing Dpkg::Deps::Multiple profile_is_concerned() and
2742       reduce_profiles() methods, inherited by Dpkg::Deps::Union,
2743       Dpkg::Deps::AND and Dpkg::Deps::OR.
2744   * Do not mangle quilt series files with a missing newline on the last line.
2745     Closes: #584233
2746   * Quiesce tar warnings in cron job by redirecting stderr to /dev/null, as
2747     it seems --warning=none does not work correctly. Closes: #748544
2748   * Do not emit a trailing space from Dpkg::Control::Hash on a field's empty
2749     first line. Bump dpkg-dev Breaks on devscripts to 2.14.4, as previous
2750     versions expect a trailing space from dpkg-parsechangelog output.
2751     Based on a patch by Johannes Schauer <j.schauer@email.de>. Closes: #749044
2752   * Do not assume that sensible-editor is present on «dpkg-source --commit»,
2753     as that command is very Debian specific. Fallback to try VISUAL, EDITOR,
2754     or vi, if the previous commands are either unset or not found.
2755   * Use badusage() instead of ohshit() on dpkg --ignore-depends argument
2756     parsing errors.
2757   * Add per package dpkg --audit support.
2758   * Add support for DragonFlyBSD to ostable and triplettable.
2759     Thanks to Hleb Valoshka <375gnu@gmail.com>.
2760   * Add support for DragonFlyBSD to start-stop-daemon. Closes: #734452
2761     Based on a patch by Hleb Valoshka <375gnu@gmail.com>.
2762   * Correctly parse patch headers in Dpkg::Source::Patch, to avoid directory
2763     traversal attempts from hostile source packages when unpacking them.
2764     Reported by Javier Serrano Polo <javier@jasp.net> as an unspecified
2765     directory traversal; meanwhile also independently found by me both
2766     #749183 and what was supposed to be #746498, which was later on published
2767     and ended up being just a subset of the other non-reported issue.
2768     Fixes CVE-2014-3864 and CVE-2014-3865. Closes: #746498, #749183
2770   [ Updated programs translations ]
2771   * Catalan (Guillem Jover).
2772   * Italian (Milo Casagrande). Closes: #750105
2774   [ Updated scripts translations ]
2775   * German (Helge Kreutzmann).
2777   [ Updated man pages translations ]
2778   * German (Helge Kreutzmann).
2780   [ Raphaël Hertzog ]
2781   * Let dpkg-source unpack additional tarballs in a deterministic order.
2782     Thanks to Samuel Bronson for the report. Closes: #747148
2784  -- Guillem Jover <guillem@debian.org>  Thu, 05 Jun 2014 20:18:04 +0200
2786 dpkg (1.17.9) unstable; urgency=high
2788   [ Guillem Jover ]
2789   * Do not allow patch files with C-style encoded filenames. Closes: #746306
2790     Fixes CVE-2014-3127 and unconditionally fixes CVE-2014-0471.
2791     Reported by Javier Serrano Polo <javier@jasp.net>.
2792   * Switch alternative database backups from xz to gzip. Closes: #746354
2793   * Do not leak long tar names on bogus or truncated archives.
2794   * Do not leak the filepackages iterator when a directory is used by other
2795     packages.
2796   * Fix short lived memory leaks in «dpkg-split --split».
2797   * Fix memory leak in unused Keybindings screen in dselect.
2798   * Do not leak color string on «dselect --color».
2799   * Fix memory leaks when parsing alternatives.
2800   * Fix off-by-one stack buffer overrun in start-stop-daemon on GNU/Linux and
2801     GNU/kFreeBSD if the executable pathname is longer than _POSIX_PATH_MAX.
2802     Although this should not have security implications as the buffer is
2803     surrounded by two arrays (so those catch accesses even if the stack
2804     grows up or down), and we are compiling with -fstack-protector anyway.
2805   * Mark the command_get_pager() tests on a tty as TODO for now, so that
2806     we do not get failures on build daemons.
2807   * Make test suite errors abort the build again. Closes: #746331
2809   [ Updated scripts translations ]
2810   * French (Steve Petruzzello). Closes: #746350
2811   * German (Helge Kreutzmann).
2813   [ Updated man pages translations ]
2814   * German (Helge Kreutzmann).
2816  -- Guillem Jover <guillem@debian.org>  Wed, 30 Apr 2014 05:45:20 +0200
2818 dpkg (1.17.8) unstable; urgency=high
2820   [ Guillem Jover ]
2821   * Do not backup nonexistent database files from the cron.daily file.
2822     And stop emitting tar warnings. Closes: #745592, #745651
2823   * Test suite:
2824     - Improve Perl code coverage.
2825     - Improve C code coverage.
2826   * Handle space-only strings when parsing versions in libdpkg.
2827   * Document the environment requirements for the dpkg-maintscript-helper
2828     supports command in the man page. Closes: #739634
2829   * Improve wording for «dpkg --verify» and --verify-format in the man page.
2830     Closes: #733057
2831   * Switch test runner from Test::Harness to TAP::Harness.
2832   * Use the perl TAP::Harness for the C test suite instead of the automake
2833     tap-driver, to avoid requiring automake >= 1.12, currently not present
2834     in stable.
2835   * Enable failed test case reporting from the TAP::Harness, so that we get
2836     more meaningful reports on failure from the C test suite.
2837   * Correctly parse C-style diff filenames in Dpkg::Source::Patch, to avoid
2838     directory traversal attempts from hostile source packages when unpacking
2839     them. Reported by Jakub Wilk <jwilk@debian.org>. Fixes CVE-2014-0471.
2841   [ Updated programs translations ]
2842   * German (Sven Joachim).
2843   * Russian (Yuri Kozlov). Closes: #745869
2844   * Vietnamese (Trần Ngọc Quân).
2846  -- Guillem Jover <guillem@debian.org>  Mon, 28 Apr 2014 13:33:11 +0200
2848 dpkg (1.17.7) unstable; urgency=low
2850   [ Guillem Jover ]
2851   * Documentation:
2852     - Mention in deb-symbols(5), that the “main-dependency-template” is
2853       always used. Closes: #737731
2854     - Clarify in deb-control(5) «Multi-Arch: no» field omission.
2855     - Clarify in dpkg-buildpackage(1) --check-option description.
2856     - Document dpkg-query --control-path life expectancy. See: #699647
2857     - Fix indentation of “Extract options (with -x)” title in dpkg-source(1).
2858     - Improve symlink <-> directory switch information in
2859       dpkg-maintscript-helper(1). Closes: #739388
2860     - Add missing flags affected by hardening options to dpkg-buildflags(1).
2861   * Use exit instead of return to exit a subshell in dpkg-maintscript-helper.
2862     Thanks to Richard Levitte <richard@levitte.org>. Closes: #738957
2863   * Localize $_ in Perl functions with while (<$fh>) style loops.
2864   * Perl test suite cleanup:
2865     - Switch test suite runner from ExtUtils::Command::MM to Test::Harness.
2866     - Enable colors in test suite runner.
2867     - Remove sequence number prefixes from test case filenames.
2868   * Do not generate perl warnings on nonexistent fields with
2869     «dpkg-parsechangelog --show».
2870   * Fix bogus message on dependency parse errors in dpkg-checkbuilddeps.
2871     Closes: #736778
2872   * Document is_pgp_signed as a public Dpkg::Control::Hash option.
2873     Closes: #735975
2874   * Do not generate perl warnings on undef versions in
2875     Dpkg::Deps::deps_compare(). See: #737731
2876   * Clarify dpkg-genchanges error message on binary builds without any binary
2877     artifact built. Closes: #726520
2878   * Improve dpkg-source warning message when ignoring file removals,
2879     by adding a hint about the --include-removal option.
2880     Thanks to Moritz Muehlenhoff <jmm@debian.org>. Closes: #738310
2881   * Add a new dpkg-source extraction --ignore-bad-version option.
2882     Closes: #740883
2883   * Add Architecture and Build-Profiles information to Package-List field,
2884     as optional name=value1,value2 entries, with names «arch» and «profile».
2885     Use the now recognized field Build-Profiles from binary stanzas in the
2886     source control file to fill the «profile» value.
2887   * Do not interpret the .dsc filename as a regex when recomputing the
2888     md5sum for the .changes file after signing the .dsc. Closes: #742535
2889   * Cache vendor info Control::Hash objects in Dpkg::Vendor::get_vendor_info()
2890     when parsing the vendor file on each hook invocation.
2891   * If the vendor does not have a Dpkg::Vendor module, try loading a module
2892     from the parent vendors, before falling back to Dpkg::Vendor::Default.
2893     Closes: #735978
2894   * Set Ubuntu build flags for ppc64el instead of ppc64, as Ubuntu never ended
2895     up shipping a ppc64 architecture. Also honor noopt DEB_BUILD_OPTIONS flag.
2896     Thanks to Adam Conrad <adconrad@debian.org. Closes: #738691
2897   * Add OpenRISC or1k support to cputable.
2898     Thanks to Christian Svensson <christian@cmd.nu>. Closes: #736717
2899   * Add support for FCFLAGS, OBJCFLAGS and OBJCXXFLAGS build flags.
2900     Closes: #744326
2901   * Improvements and portability fixes to start-stop-daemon:
2902     - When using the Linux procfs switch to use /proc/PID/status instead of
2903       /proc/PID/stat to read the process name.
2904     - Add a generic KVM-based implementation to initialize the entire
2905       process list.
2906     - Fix FreeBSD KVM code to use current kinfo_proc layout.
2907     - Add a native FreeBSD pid_is_exec() method, which is more reliable than
2908       the KVM-based one, and means neither linprocfs nor procfs are required
2909       on such system anymore. Note that GNU/kFreeBSD is still using Linux
2910       procfs code (which ends up using linprocfs).
2911     - Fix OpenBSD KVM code to use current kinfo_proc layout.
2912     - Detect system specific headers at configure time instead of hardcoding
2913       their usage depending on system macros.
2914     - Add a new --ppid matching option to check for parent PID.
2915       Suggested by Alex Mestiashvili <mailatgoogl@gmail.com>.
2916     - On GNU/Hurd do not link unnecessarily against libshouldbeinlibc and
2917       libihash.
2918   * Set TAR preprocessor variable at build time instead of hardcoding it.
2919     This will allow non-GNU systems to easily use another value for their
2920     GNU tar, which is usually either gnutar or gtar.
2921   * Require compound literals support in the compiler at configure time.
2922   * Fix compound literals usage with compilers in C99 mode, by not assigning
2923     them to static variables.
2924   * Test suite cleanup:
2925     - Do not unnecessarily shut up stdout in t-subproc.
2926     - Test command_exec() exit code.
2927     - Test allocations with new test_alloc() instead of pass/fail macros.
2928     - Switch C test suite to use TAP.
2929   * Add support for Packages-files in dpkg --update-avail and --merge-avail
2930     from pipes, or standard input if the argument is omitted or is ‘-’.
2931     Closes: #357093, #367297
2932   * Error out on not-installed packages passed to «dpkg --verify».
2933   * Deprecate compressing .deb files with bzip2, by making dpkg-deb issue a
2934     warning, as the compressor has been superseded by xz when it comes to
2935     compression ratio, and in cases where higher compatibility or raw speed
2936     is desired gzip is still the better option. Although unpacking will be
2937     kept being supported to handle existing bzip2 compressed .deb files.
2938   * Use GNU tar's --no-unquote when using -T in dpkg-deb to avoid mangling
2939     filenames. Reported by Niels Thykier <niels@thykier.net>. Closes: #743687
2940   * Backup all databases with user data, not just the status database.
2941   * Add Conflicts to dpkg against packages using install-info that were
2942     removed after lenny or squeeze, but may have survived upgrades to wheezy.
2943     Thanks to Andreas Beckmann <anbe@debian.org>. Closes: #735159
2944   * Be verbose on «make check» errors by printing the test suite log.
2946   [ Updated programs translations ]
2947   * German (Sven Joachim).
2948   * Swedish (Peter Krefting).
2949   * Thai (Theppitak Karoonboonyanan). Closes: #745032
2950   * Vietnamese (Trần Ngọc Quân).
2952   [ Updated scripts translations ]
2953   * German (Helge Kreutzmann).
2954   * Swedish (Peter Krefting).
2956   [ Updated man pages translations ]
2957   * German (Helge Kreutzmann).
2958   * Italian (Beatrice Torracca). Closes: #742449
2959   * Swedish (Peter Krefting).
2961  -- Guillem Jover <guillem@debian.org>  Mon, 21 Apr 2014 05:03:52 +0200
2963 dpkg (1.17.6) unstable; urgency=low
2965   [ Guillem Jover ]
2966   * Move signing in dpkg-buildpackage to the end of the build.
2967   * Add new --check-command and --check-option options to dpkg-buildpackage,
2968     and DEB_CHECK_COMMAND environment variable as a default value, to
2969     specify a package checker to use before the signing process.
2970   * Detect a missing gain-root-command even if dpkg-buildpackage is running
2971     as root.
2972   * Detect a missing sign-command in dpkg-buildpackage, before starting the
2973     build, to avoid a failure at the end of the process.
2974   * Remove trailing newlines from dpkg-deb warning message.
2975   * Change dpkg-deb conffile name length warning into an error, as dpkg will
2976     reject those packages at install time anyway.
2977   * Unify and clarify dpkg-deb and dpkg conffile name length error message.
2978     Closes: #108196
2979   * Add new start-stop-daemon --pid option. Closes: #253265
2980   * Mention Multi-Arch: no value in man pages. Closes: #732648
2981   * Correctly hyphenate binary-only and source-only in dpkg-buildpackage
2982     output messages.
2983   * Use makedev(3) when extracting .deb archives rather than ad-hoc
2984     computations, to be able to support large major/minor device numbers,
2985     supported on at least Linux, NetBSD and OpenBSD based systems.
2986     Thanks to Peter Chang <dpf@google.com>.
2987   * Turn the ARM Embedded ABI symbols blacklist into a regex, to stop having
2988     to keep up with the GNU toolchain, or other toolchains emitting different
2989     symbols.
2990   * Blacklist GOMP critical section symbols. Closes: #708033
2991   * Add support for Ignore-Blacklist-Groups field in symbols files, with the
2992     two available group values aeabi and gomp. Closes: #694524
2993   * Allow updating checksums in Dpkg::Checksums without erroring out.
2994   * Add shell hooks support to dpkg-buildpackage, based on the debuild
2995     implementation in devscripts 2.13.9. Closes: #476221
2996   * Add support for Testsuite source field.
2997   * Clarify error message about missing revision in non-native source package.
2998     Closes: #719348, #733746
2999   * Set default compression options in source format specific modules instead
3000     of dpkg-source. This makes sure the correct compression level is set, even
3001     for “3.0 (native)” packages with non-default compressors. Closes: #733326
3002   * Change default source package compressor for new formats (>= 2.0) to xz.
3003   * Ignore the same packages in «dpkg-query --list» when computing the
3004     column width as when printing the entries. Closes: #734114
3005   * Do not produce .deb archives with uncompressed gzip members on
3006     «dpkg-deb -Zgzip -z0», instead create them as non-compressed members,
3007     as if -Znone had been passed, as documented. Closes: #718295
3008   * Add support for .deb archives with a control member not compressed
3009     (control.tar) or compressed with xz (control.tar.xz).
3010   * Add support for creating uniformly compressed .deb archive members,
3011     with the new dpkg-deb option --uniform-compression.
3012   * Fix file descriptor leaks in diversions and statoverride databases.
3013     Closes: #734783
3014   * Allow missing prior-version argument in dpkg-maintscript-helper
3015     dir_to_symlink and symlink_to_dir commands. Closes: #733980
3017   [ Updated programs translations ]
3018   * Swedish (Peter Krefting).
3019   * Vietnamese (Trần Ngọc Quân).
3021   [ Updated scripts translations ]
3022   * German (Helge Kreutzmann).
3023   * Swedish (Peter Krefting).
3025   [ Updated man pages translations ]
3026   * German (Helge Kreutzmann).
3027   * Swedish (Peter Krefting).
3029  -- Guillem Jover <guillem@debian.org>  Wed, 15 Jan 2014 05:29:45 +0100
3031 dpkg (1.17.5) unstable; urgency=low
3033   [ Guillem Jover ]
3034   * Switch non-tty output to be line buffered by default, and set it to fully
3035     buffered only for programs with precious and abundant output, not just
3036     progress reporting output (i.e. dpkg-query). This was causing out-of-order
3037     error and debug messages in relation to normal progress reporting, which
3038     could be very confusing. Regression introduced in dpkg 1.17.2.
3039   * Fix segfault in update-alternatives when adding or renaming slaves for
3040     an existing alternative. Regression introduced in dpkg 1.17.2.
3041     Closes: #731710
3042   * Fix dpkg-maintscript-helper symlink_to_dir and dir_to_symlink commands:
3043     - Always run postinst code regardless of prior-version, as the package
3044       might have been never configured before.
3045     - Be more strict when checking the expected state of paths.
3046     - Rename subcommand shell code to check-files-ownership.
3047     - Change dir_to_symlink switch code to use a staging empty directory,
3048       to avoid dpkg removing files from other packages, when removing the
3049       package old files during upgrade.
3050     - Bump minimal version in man page to 1.17.5.
3051     Closes: #731730
3052   * Mention gpg2 too as one of the default sign commands in dpkg-buildpackage.
3054   [ Updated programs translations ]
3055   * German (Sven Joachim).
3057   [ Updated scripts translations ]
3058   * German (Helge Kreutzmann).
3060   [ Updated man pages translations ]
3061   * German (Helge Kreutzmann).
3063  -- Guillem Jover <guillem@debian.org>  Thu, 12 Dec 2013 08:29:45 +0100
3065 dpkg (1.17.4) unstable; urgency=low
3067   * Keep the diversions and statoverride database files open during dpkg
3068     runs, to avoid eager inode number reuse by the filesystem if these files
3069     get replaced multiple times in maintainer scripts, as we rely on the
3070     inode numbers being different when checking if the databases need to
3071     be reloaded. Regression introduced in 1.17.2. Closes: #731524
3072   * Add debug output to diversions and statoverride database loading code.
3073   * Reset the statoverrides information from the in-core database when
3074     reloading it from disk, otherwise removals in maintainer scripts will
3075     not be seen during the current dpkg run.
3076   * Get rid of dpkg-split global partqueue queue variable.
3077   * Use warningv() in dpkg instead of ad-hoc printing message when
3078     overriding with --force option.
3079   * Switch URLs in docs and code comments from http:// to https:// if the
3080     latter is available.
3082  -- Guillem Jover <guillem@debian.org>  Sat, 07 Dec 2013 07:34:54 +0100
3084 dpkg (1.17.3) unstable; urgency=low
3086   [ Guillem Jover ]
3087   * Check availability of warning flags at build time. Fixes a build failure
3088     on systems with old g++ compilers not accepting -Wc++11-compat.
3089   * Move DPKG_C_C99 call just after AC_PROG_CC, so that subsequent checks
3090     can take advantage of the possibly set flags to enable C99 features.
3091   * Improve configure C99 compiler check output.
3092   * Use C++11 nullptr instead of 0 or NULL, which is way more descriptive
3093     and has a better type. Check for C++11 compiler support, and fallback
3094     nullptr to 0 if unavailable.
3096   [ Updated programs translations ]
3097   * Vietnamese (Trần Ngọc Quân). Closes: #731409
3099  -- Guillem Jover <guillem@debian.org>  Thu, 05 Dec 2013 10:19:38 +0100
3101 dpkg (1.17.2) unstable; urgency=low
3103   [ Guillem Jover ]
3104   * Make Dpkg::Arch debwildcard_to_debtriplet() more robust by matching
3105     on exact 'any' strings, instead of substrings.
3106   * Add manpages-it Replaces to dselect and dpkg-dev. Closes: #717983
3107     Reported by Andreas Beckmann <anbe@debian.org>.
3108   * Document default dpkg-deb compressor change to xz in man page.
3109     Thanks to Salvatore Bonaccorso <carnil@debian.org>. Closes: #718437
3110   * Version manpages-it in Replaces with (<< 2.80-4), now that the package
3111     does not ship the overlapping paths any more.
3112   * Automatically prepend needed spaces for continuation --force-help lines.
3113   * Be more precise on deb format errors with data member in dpkg-deb.
3114   * Do not allow deb packages with control and data members swapped.
3115   * Clarify «dpkg-deb --extract» bad usage error message on missing arguments
3116     by printing all required arguments at once. Closes: #718899
3117   * Clarify the insertion order of _ members in deb(5) man page.
3118   * Fix use after free in alternative_parse_fileset() on update-alternatives.
3119     Reported by Pedro Ribeiro <pedrib@gmail.com>.
3120   * Fix use after free in dpkg_arch_load_list() on libdpkg.
3121     Reported by Pedro Ribeiro <pedrib@gmail.com>.
3122   * Fix theoretical stack buffer overflow in w_dependency() on libdpkg, not
3123     currently applicable. Reported by Pedro Ribeiro <pedrib@gmail.com>.
3124   * Add ppc64el support to cputable. Closes: #718945
3125     Thanks to Jeff Bailey <jeffbailey@google.com>.
3126   * Use dpkg-gencontrol -c argument as a fallback lock file in case
3127     debian/control does not exist. Closes: #667008
3128   * Pass the package reference count (i.e. number of present instances) to
3129     maintainer scripts via the new variable DPKG_MAINTSCRIPT_PACKAGE_REFCOUNT.
3130     Closes: #681370
3131   * Fix field names on error messages in libdpkg, by either capitalizing them
3132     or by renaming them to match reality.
3133   * Do not capitalize error and warning messages.
3134   * When ignoring invalid remove requests in dpkg consider that progress,
3135     reset the loop detector and avoid the assert. Closes: #143307
3136   * Activate all path components for file triggers on removal.
3137     Regression introduced in 1.17.0. Closes: #725437
3138   * Activate file triggers on disappearance more accurately, only when we know
3139     we are inevitably removing things.
3140   * Fix «dpkg-query --list» output when using multibyte character strings,
3141     to avoid unaligned columns and mojibake. Closes: #257505, #718541
3142     Based on a patch by Changwoo Ryu <cwryu@debian.org>.
3143   * Use fully buffered output on non-tty stdout.
3144     Reported by Shawn Landden <shawnlandden@gmail.com>.
3145   * Recognize «start-stop-daemon -C» as documented. Closes: #719746
3146     Reported by Brian S. Julin <bri@abrij.org>.
3147   * When update-alternatives is told to change slave links, do not warn that
3148     the link group is broken, just print a notice that the alternative is
3149     being updated due to the changes.
3150   * Add a new «dpkg --verify» command to check the integrity of packages
3151     installed files. Add a --verify-format option to explicitly select the
3152     output format, currently only rpm compatible output is supported, but
3153     the default might change in the future. Closes: #187019
3154   * Improve dpkg “Preparing to replace” and “Unpacking” progress messages.
3155     Closes: #32427, #71106
3156   * Print the package version on main dpkg progress messages.
3157   * Do not store timestamps in gzip headers when using the command, to try to
3158     mimic the zlib behavior. This does not affect Debian as it's been using
3159     zlib for a very long time. Closes: #719844
3160   * Reset environment variables affecting compressor commands when not using
3161     the shared library implementations. Namely XZ_DEFAULTS, XZ_OPT, BZIP and
3162     BZIP2.
3163   * Use a simple list to track packages owning a file, instead of using a
3164     list of arrays of pointers which waste 10 pointers per non-shared file,
3165     instead of 1. This significantly reduces dpkg memory usage.
3166   * Honor new DEB_SIGN_KEYID environment variable in dpkg-buildpackage.
3167     Suggested by Harald Dunkel <harri@afaics.de>. Closes: #615813, #719418
3168   * Always check subprocess exit codes in Dpkg::Source::Package modules.
3169     Reported by Ian Jackson <ijackson@chiark.greenend.org.uk>.
3170   * Add support for pie and stack-protector options to dpkg-buildflags FFLAGS,
3171     and update the man page to mention FFLAGS are a subset of CFLAGS.
3172     Closes: #726932
3173   * Improve and unify -O option handling in dpkg-genchanges, dpkg-gensymbols
3174     and dpkg-shlibdeps, by always taking an optional filename argument and
3175     describing in the man page the default output files.
3176   * Use “hyphen” instead of “dash” when we mean the ‘-’ character in the
3177     documentation and code comments.
3178   * Do not NULL-terminate the list in the compat scandir(), as this might
3179     cause a segfault in case the function returns 0 entries.
3180   * Always return from ensure_statoverrides() if file is NULL, otherwise
3181     we might get us to read garbage from memory or segfault.
3182   * Add new symlink_to_dir command to dpkg-maintscript-helper. Closes: #720712
3183     Based on a patch by Bastien ROUCARIÈS <roucaries.bastien@gmail.com>.
3184   * Add new dir_to_symlink command to dpkg-maintscript-helper. Closes: #583585
3185   * Distinguish dpkg error reports between errors while processing packages
3186     and archives.
3187   * Fix crashes in the first call to gettext() after fork() on Mac OS X, by
3188     forcing the initialization at program start of the CoreFoundation cached
3189     values in libintl.
3190   * Set a default gettext domain for libdpkg code, so that other programs
3191     using a different domain can still get correct translations, like dselect.
3192   * Cleanup libdpkg-perl API:
3193     - Dpkg::Compression: Deprecate $default_compression_level,
3194       $default_compression and $compression_re_file_ext package variables.
3195     - Dpkg::Exit: Deprecate @handlers package variable.
3196     - Dpkg::Source::Package: Deprecate $diff_ignore_default_regexp and
3197       @tar_ignore_default_pattern package variables.
3198     - Dpkg::Changelog::Entry::Debian: Deprecate $regex_header and
3199       $regex_trailer package variables.
3200   * Add GnuPG 2.x support. Add gnupg2 and gpgv2 as alternative Recommends to
3201     gnupg and gpgv (to not pull them by default), but prefer gpgv2 over gpgv,
3202     and gpg2 over gpg at run-time if they are available.
3203   * Switch dpkg conflictor tracking from a fixed-size array to a queue,
3204     fixing several related issues, due to conflictors not being removed from
3205     the array after processing them. dpkg could fill it due to additions in
3206     previous package processing producing very confusing error messages; and
3207     a theoretical problem where a package could get appended to be removed,
3208     then reinstalled as a new version, to get removed again when revisiting
3209     the array in a subsequent package processing. Closes: #726112
3210   * Do not accept empty field names in dpkg.
3211   * Do not accept an initial hyphen in field names.
3212   * Add experimental build profiles support:
3213     - Add support for <!profile.name> build-time restrictions in dependencies.
3214     - Add support for DEB_BUILD_PROFILES environment variable.
3215     - Add new option -P to dpkg-buildpackage and dpkg-checkbuilddeps.
3216     - Add new Built-For-Profiles output field in .deb and .changes files.
3217     Based on a patch by Patrick "P. J." McDermott <pjm@nac.net>,
3218     Wookey <wookey@debian.org> and Johannes Schauer <j.schauer@email.de>.
3219     Closes: #661538
3220   * Bump Standards-Version to 3.9.5.
3221   * Document interactions of dpkg-source --extend-diff-ignore and -i in the
3222     man page. Closes: #729874
3224   [ Updated programs translations ]
3225   * German (Sven Joachim).
3226   * Vietnamese (Trần Ngọc Quân).
3228   [ Updated scripts translations ]
3229   * German (Helge Kreutzmann).
3231   [ Updated man pages translations ]
3232   * French (Christian Perrier): fix incorrectly translated sentence,
3233     thanks to Fabien Givors.
3234   * German (Helge Kreutzmann).
3236  -- Guillem Jover <guillem@debian.org>  Thu, 05 Dec 2013 04:56:31 +0100
3238 dpkg (1.17.1) unstable; urgency=low
3240   * Man pages cleanup:
3241     - Make explicit that dpkg-shlibdeps -e can be used multiple times.
3242     - Improve documentation on how to update the available database before
3243       setting package selections. Suggested by Klaus Ita <koki.eml@gmail.com>.
3244   * Add manpages-it Replaces to dpkg due to new translated man pages.
3245     Reported by Alessio Gaeta <alga777@gmail.com>. Closes: #717983
3246   * Reword libdpkg-perl description and only list public modules.
3247   * Remove space before value in dpkg-parsechangelog -S option on pkg-info.mk.
3248     Closes: #718014
3249   * Make the build system install start-stop-daemon directly under /sbin,
3250     instead of moving it around in debian/rules.
3252  -- Guillem Jover <guillem@debian.org>  Sun, 28 Jul 2013 14:44:50 +0200
3254 dpkg (1.17.0) unstable; urgency=low
3256   [ Guillem Jover ]
3257   * Switch update-alternatives back to a fatal error on out of range priority
3258     on --install.
3259   * Document dpkg-deb --debug in --help output.
3260   * Bump Standards-Version to 3.9.4 (no changes needed).
3261   * Use the new canonical dpkg git Vcs URLs.
3262   * Remove ancient version from zlibg1-dev Build-Depends.
3263   * Add compression development packages to libdpkg-dev Depends.
3264   * Man pages cleanup:
3265     - Disable justification and hyphenation in SEE ALSO sections.
3266     - Remove unneeded double quotes in .SH headings.
3267     - Do not use “header” when “format” or “field” is meant.
3268     - Move dangers of installing via dpkg-deb from BUGS to a NOTES section.
3269     - Remove BUGS sections containing obvious or misplaced information.
3270     - Move BUGS sections before EXAMPLES and SEE ALSO sections.
3271     - Place ENVIRONMENT and FILES sections contiguously.
3272     - Move EXIT STATUS section before ENVIRONMENT.
3273     - Rename CAVEATS sections to NOTES.
3274     - Fold BACKWARD COMPATIBILITY section into other sections.
3275     - Document since when DEB_*_MULTIARCH variables are supported.
3276     - Move compiler flags subsection from ENVIRONMENT to NOTES.
3277     - Unify WARNING and ERROR sections into DIAGNOSTICS.
3278     - Unify command-line options into a single OPTIONS section.
3279     - Mark programs, variables, fields and command-line options in bold.
3280     - Fold dpkg-architecture(1) DEBIAN/RULES section into EXAMPLES.
3281     - Fix dpkg-architecture(1) debian/rules usage documentation.
3282     - Move dpkg-buildflags(1) HARDENING into a new FEATURE AREAS subsection.
3283     - Improve dpkg-buildflags(1) usage documentation.
3284       Thanks to Matthijs Kooijman <matthijs@stdin.nl>. Closes: #657627
3285     - Clarify that DPKG_MAINTSCRIPT_PACKAGE is not arch-qualified.
3286     - Add triggers to the list of binary control information files.
3287       Thanks to Charles Plessy <plessy@debian.org>.
3288   * Use colon instead of dot for user:group in dpkg debug output.
3289   * Remove support for obsolete DM-Upload-Allowed from Dpkg::Vendor::Debian.
3290   * Fix update-alternatives to use the current alternative link as the first
3291     best value, to avoid flip-flops of alternatives with equal priority.
3292     Closes: #699807
3293   * Fix clang warnings due to change of alignment requirements.
3294   * Change copyright file to point to GPL-2 instead of GPL.
3295   * Do not pass -e in shell script shebangs, set it in the body.
3296   * Add new dpkg-parsechangelog --show-field option to print a field value.
3297     Closes: #284664
3298   * Add new dpkg-buildpackage --force-sign option.
3299   * By default do not sign builds for UNRELEASED uploads on dpkg-buildpackage.
3300     Closes: #635117
3301   * Also check Build-Depends-Arch for minimal versions in dpkg-shlibdeps.
3302     Closes: #681470
3303   * Document dpkg-buildflags export mode usage in man page. Closes: #691449
3304     Thanks to Jonathan Nieder <jrnieder@gmail.com>.
3305   * Rename dpkg-buildflags configure exporter to cmdline, but preserve
3306     configure as a legacy alias.
3307   * Mask fortify hardening option from dpkg-buildflags output on noopt.
3308     New glibc 2.16 and later, issue a warning on this condition.
3309     Closes: #691745
3310   * Refer to path instead of file on dpkg-statoverride.
3311   * Always print a descriptive architecture column, even for empty or missing
3312     architectures on «dpkg-query --list».
3313   * Rework SELinux code on unpack to reload the label database if it has
3314     changed, for example while upgrading the SELinux policy package.
3315   * Execute maintainer scripts in a new execution context, based on the
3316     current one and the specific maintainer script filename, and if it's
3317     not different to the current one, use "dpkg_script_t" as a fallback.
3318   * Do not unnecessarily create a dpkg update log record on remove or purge.
3319   * Always reset want status when removing or purging a package; so this
3320     now resets holds among others. Closes: #163763
3321   * Always reset want status when installing a package; so this now resets
3322     holds among others. Closes: #162541
3323   * Defer cleanup of .dpkg-new and .dpkg-tmp paths on removal to the point
3324     when we are definitely removing the main path.
3325   * Activate file triggers on removal more accurately, only when we know
3326     we are inevitably removing things.
3327   * Change dir to / before executing maintainer scripts. Closes: #686782
3328   * Add new dpkg-deb --deb-format option and base --new and --old on it,
3329     as the latter are not future-proof, and neither can be guaranteed to
3330     produce a reliable output file format.
3331   * Drop archtable. It serves no purpose, it's Debian specific, it's
3332     usually outdated, and everyone should be using dpkg-architecture anyway.
3333   * Add musl-linux support to ostable and triplettable.
3334     Requested-by Kevin Bortis <wermut@gmail.com>.
3335   * Remove update-alternatives, dpkg-divert and dpkg-statoverride
3336     compatibility symlinks under /usr/sbin/.
3337   * Remove install-info wrapper.
3338   * Only ignore older packages if the existing version is informative. This
3339     allows any program using libdpkg to parse the available file to see again
3340     packages with versions lesser than 0-0 (like 0~0-0). Closes: #676664
3341   * Fix Dpkg::Control::Hash set_options() to take a hash as argument instead
3342     of two scalars.
3343   * Add a new Dpkg::Vendor get_vendor_dir() function.
3344   * Print correct path to vendor directory on error message in dpkg-vendor.
3345   * Do not hardcode the dpkg system configuration directory in perl scripts,
3346     respect build time setting.
3347   * Deprecate Dpkg perl module lowercase and exported by default variables,
3348     replaced by new unified uppercase non-exported by default ones.
3349   * Do not set -fstack-protector in the default build flags on arm64 (it's
3350     not yet supported). Thanks to Matthias Klose <doko@ubuntu.com>.
3351     Closes: #711936
3352   * Add GCJFLAGS support to dpkg-buildflags. Closes: #708375
3353   * Clarify that dpkg --set-selections needs an up-to-date available db,
3354     by documenting it on the dpkg(1) man page, and warning whenever dpkg
3355     finds unknown packages while setting the selections. Closes: #703092
3356   * Print nicer error messages in perl scripts using Getopt::Long by trapping
3357     $SIG{__WARN__} to call usageerr() on option parse errors.
3358   * Move the exit call out from usage() in dpkg-scansources so that usageerr()
3359     gives a correct exit code. Thanks to Bernhard R. Link <brlink@debian.org>.
3360   * Print correct error message on unknown dpkg-name options before --.
3361   * Require at least one filename on dpkg-name after --.
3362   * Switch program usage errors to not print entire --help output.
3363     Closes: #681371
3364   * Document that «dpkg-parsechangelog -l-» can be used to read from stdin.
3365   * Support parsing compressed changelog files transparently. Closes: #684196
3366   * Sort files inside new diffs generated by dpkg-source lexicographically.
3367     Closes: #689193
3368   * Add support for a build_arch option in Dpkg::Deps deps_parse().
3369     Thanks to Colin Watson <cjwatson@ubuntu.com>. Closes: #697297
3370   * Move epoch-less or revision-less output logic to Dpkg::Version.
3371     Based on a patch by Bernhard R. Link <brlink@debian.org>.
3372   * Catch mismatches between version strings and format versions in
3373     dpkg-source. Ensure that a 3.0 (quilt) package has a non-native version
3374     and that a 3.0 (native) package has a native version. Closes: #700177
3375     Thanks to Bernhard R. Link <brlink@debian.org>.
3376   * Add support for mipsn32(el) and mips64(el) to arch tables.
3377     Thanks to YunQiang Su <wzssyqa@gmail.com>. Closes: #685096, #707323
3378   * Document --file and --label parser options in dpkg-parsechangelog(1).
3379   * Add a new configure --with-dpkg-deb-compressor option to allow selecting
3380     the default dpkg-deb compressor, mainly for downstreams.
3381   * Switch dpkg-deb default compressor from gzip to xz. Build dpkg.deb using
3382     gzip to make debootstrap life easier on non-Debian based systems.
3383   * Add support for gzip compression strategies to dpkg-deb. The new
3384     strategies are: filtered, huffman, rle and fixed.
3385   * Change dpkg and dpkg-deb help output to recommend apt instead of dselect
3386     as a user-friendly frontend.
3387   * Remove temporary file on error during «dpkg-divert --rename».
3388   * Fix value caching in Dpkg::Arch by not shadowing the variables.
3389   * Fix chmod() arguments order in Dpkg::Source::Quilt. Closes: #710265
3390     Thanks to Pablo Oliveira <pablo@sifflez.org>.
3391   * Add new dpkg-shlibdeps -l option to add private shared library directories.
3392     This should be used instead of abusing LD_LIBRARY_PATH to pass the paths,
3393     which might be problematic when cross-compiling. Closes: #698881
3394   * Only apply empty line and comma cleanups when doing substvar replacements
3395     on fields where those are relevant. Closes: #659814
3396   * Do not scan control files twice for PGP signature presence.
3398   [ Raphaël Hertzog ]
3399   * Fix dpkg-maintscript-helper rm_conffile and mv_conffile to do nothing
3400     when the conffile is no longer owned by the current (or named) package.
3401     Thanks to Steve Langasek for the patch. Closes: #716948
3402   * Improve dpkg-maintscript-helper behaviour in “Multi-Arch: same” packages
3403     by arch-qualifying package names read from the environment. Also add
3404     a warning about this potential problem in the manual page.
3405   * Fix usage of non-existent _() function in multiple places of the Perl
3406     code. Thanks to Lincoln Myers <lincoln@netapp.com> for the patch.
3407     Closes: #708607
3409   [ Updated programs translations ]
3410   * Fix typo in Spanish translation of update-alternatives.
3411     Thanks to Javier Fernandez-Sanguino <jfs@debian.org>. Closes: #713020
3413   [ Updated programs translations ]
3414   * Vietnamese (Trần Ngọc Quân). Closes: #715334
3416   [ Added man pages translations ]
3417   * Italian (Beatrice Torracca). Closes: #711647
3419   [ Updated man pages translations ]
3420   * Fix wrong translation of "fortify" in French dpkg-buildflags(1) man page.
3421     Thanks to Christian Perrier <bubulle@debian.org>. Closes: #712976
3422   * Fix typo in dpkg-source(1) man page French translation.
3423     Thanks to Cédric Boutillier <boutil@debian.org>. Closes: #708292
3424   * Japanese (TAKAHASHI Motonobu). Closes: #704240
3426  -- Guillem Jover <guillem@debian.org>  Fri, 26 Jul 2013 23:54:54 +0200
3428 dpkg (1.16.10) unstable; urgency=low
3430   [ Guillem Jover ]
3431   * Fix typos in 1.16.9 changelog entry. Closes: #691954
3432     Thanks to Nicolás Alvarez <nicolas.alvarez@gmail.com>.
3433   * Add missing @LIBLZMA_LIBS@ to Libs.Private in libdpkg.pc.in.
3434   * Do not use an undefined va_list variable in dpkg_put_errno().
3435   * Abort installation if we cannot set the security context for a file.
3436   * Fix OpenPGP armored signature parsing, to be resilient against doctored
3437     input, including source package control files. Closes: #695919
3438   * Make sure the OpenGPG armor contains a signature block, even on EOF.
3439   * Do not accept Armor Header Lines inside a paragraph.
3440   * Do not abort dselect when multiarch is detected, as that only makes
3441     users downgrade and hold on an older version w/ worse multiarch support.
3442   * Fix warning in Dpkg::Source::Archive with «perl -w» due to redefinition
3443     of getcwd() by removing unused POSIX modules usage. Closes: #700978
3445   [ Updated programs translations ]
3446   * Esperanto (Felipe Castro).
3447   * Spanish (Javier Fernández-Sanguino).
3448   * Vietnamese (Trần Ngọc Quân). Closes: #692100
3450   [ Updated scripts translations ]
3451   * Fix mistranslation in French translation of scripts.
3452     Thanks to Filipus Klutiero. Closes: #698530
3453   * Fix typos in French translation of scripts.
3454     Thanks to Sylvestre Ledru. Closes: #702627
3455   * Fix Russian translation (wrong order of parameters in a string).
3456     Thanks to Andrey Rahmatullin for noticing and Yuri Kozlov for fixing
3457     the translation. Closes: #698869
3459  -- Guillem Jover <guillem@debian.org>  Fri, 08 Mar 2013 04:41:26 +0100
3461 dpkg (1.16.9) unstable; urgency=low
3463   [ Raphaël Hertzog ]
3464   * Fix dpkg-source regression in "3.0 (quilt)" source packages while
3465     unapplying patches that remove all files in a directory. Closes: #683547
3466   * Fix segfault in field format parsing on empty strings, affecting
3467     «dpkg-query -W -f ''» and «dpkg-deb -W --showformat=''». LP: #1035512
3468   * Fix dpkg's French usage string which was missing the final “s“ in
3469     --print-foreign-architectures. Closes: #685863
3471   [ Guillem Jover ]
3472   * Use “statoverrides” instead of “statusoverrides” in dpkg-statoverride.
3473     Closes: #686995
3474   * Comment out dpkg(1) documentation about disabled --command-fd option.
3475     Closes: #685677
3476   * Cleanup dpkg-divert unit-test environment to avoid build failures.
3477     Closes: #687656
3478   * Fix update-alternatives test suite to behave correctly on non-Debian
3479     binary paths. Known to be affecting at least Gentoo and Mac OS X.
3480   * Do not leak subcall command arguments in update-alternatives.
3481   * Fix segfault on update-alternatives when passing --slave without any
3482     action at all. LP: #1037431
3483   * Fix memory leak in dpkg filesavespackage().
3484   * Do not print garbage (or worse) on dpkg shared conffile debug output.
3485   * Use a hash instead of a ref to a hash for keys() in Dpkg::BuildFlags
3486     get_feature_areas(). This causes compilation failures with older perl
3487     versions, which can be an issue with partial upgrades.
3488   * Fix filter subpattern debug output format string to print an actual
3489     value instead of just blanks.
3490   * Ignore trailing filter subpattern slashes on reinclusion comparison.
3491     This makes sure to reinclude directories previously excluded so that
3492     contained files marked for inclusion do not fail to unpack due to a
3493     missing directory. Closes: #688416
3494   * Do not consider obsolete conffiles as actively owned by the package.
3495     This ensures conffile entries are not mishandled nor mixed up when
3496     configuring packages owning the non-obsolete conffiles. Closes: #689836
3497     Based on a patch by Andreas Beckmann <debian@abeckmann.de>.
3498   * Properly mark in the database obsolete conffiles on package replaces.
3499   * Sync the Conffiles field values for all package instances. Because
3500     only the first package instance being configured will have a *.dpkg-new
3501     conffile available to be processed, the subsequent ones need to use the
3502     hash from the previously processed entries.
3503   * Fix logic for previously configured conffiles, so that the shared
3504     conffile checks actually work on reinstallation. Closes: #684776
3505   * Avoid info database corruption and bogus accesses on unknown format
3506     values, by always reading the format file and validating it.
3507   * Clarify that the most probable reason for multiarch database
3508     inconsistencies is due to upgrades from unofficial dpkg versions.
3509   * Only satisfy a dependency on a “Multi-Arch: foreign” if arch-unqualified.
3510   * Take architecture into account in virtual packages on remove and
3511     configure dpkg actions. Closes: #683411
3512   * Update update-alternatives --query format and examples in man page to
3513     match the implementation.
3514   * Add two missing 3rd person ‘s’ in dpkg-gensymbols(1). Closes: #689863
3515     Thanks to Paul Menzel <pm.debian@googlemail.com>.
3516   * Fix regression on old-style binNMUs for packages that specify an
3517     explicit binary version to dpkg-gencontrol, by always fixing up the
3518     source version. Closes: #690823
3520   [ Updated programs translations ]
3521   * Catalan (Guillem Jover).
3522   * Czech (Miroslav Kure).
3523   * Danish (Joe Dalton). Closes: #690808
3524   * French (Christian Perrier).
3525   * German (Sven Joachim).
3526   * Italian (Milo Casagrande).
3527   * Japanese (Kenshi Muto).
3528   * Polish (Michał Kułach). Closes: #690449
3529   * Portuguese (Miguel Figueiredo). Closes: #682582, #690431
3530   * Russian (Yuri Kozlov). Closes: #688050, #690415
3531   * Slovak (Ivan Masár). Closes: #690426
3532   * Swedish (Peter Krefting).
3533   * Thai (Theppitak Karoonboonyanan). Closes: #690678
3534   * Traditional Chinese (imacat). Closes: #687002
3536   [ Updated scripts translations ]
3537   * Polish (Michał Kułach). Closes: #683104
3538   * Spanish (Omar Campagne). Closes: #685297
3540   [ Updated dselect translations ]
3541   * Basque (Iñaki Larrañaga Murgoitio). Closes: #686421
3542   * Czech (Miroslav Kure).
3543   * Danish (Joe Dalton). Closes: #689820
3544   * Polish (Michał Kułach).
3546   [ Updated man pages translations ]
3547   * French (Thomas Vincent, Sylvestre Ledru, Christian Perrier).
3548     Closes: #682978, #683221
3549   * German (Helge Kreutzmann).
3550   * Japanese (Hideki Yamane). Closes: #685103
3551   * Polish (Michał Kułach).
3552   * Spanish (Omar Campagne, Guillem Jover). Closes: #683514
3553   * Swedish (Peter Krefting).
3555  -- Guillem Jover <guillem@debian.org>  Sat, 20 Oct 2012 05:59:50 +0200
3557 dpkg (1.16.8) unstable; urgency=low
3559   [ Updated programs translations ]
3560   * Esperanto (Felipe Castro).
3561   * French (Christian Perrier).
3562   * Polish (Michał Kułach). Closes: #680561
3563   * Russian (Yuri Kozlov). Closes: #677850, #680411
3564   * Slovak (Ivan Masár).
3565   * Spanish (Javier Fernández-Sanguino)
3567   [ Updated man pages translations ]
3568   * French (Christian Perrier).
3570   [ Updated scripts translations ]
3571   * French (Christian Perrier).
3572   * Russian (Yuri Kozlov).
3574   [ Updated dselect translations ]
3575   * Danish (Joe Dalton). Closes: #680108
3576   * Russian (Yuri Kozlov).
3577   * Traditional Chinese (Asho Yeh - 阿信).
3579  -- Guillem Jover <guillem@debian.org>  Sat, 21 Jul 2012 02:11:04 +0200
3581 dpkg (1.16.7) unstable; urgency=low
3583   [ Guillem Jover ]
3584   * Fix bogus dpkg-query --control-show badusage() strings.
3586   [ Raphaël Hertzog ]
3587   * Fix dpkg-gencontrol to correctly compute the source version
3588     in the case of "old-style" bin-nmus. Closes: #679959
3590   [ Updated dselect translations ]
3591   * Catalan (Guillem Jover).
3592   * French (Christian Perrier).
3593   * German (Sven Joachim).
3594   * Swedish (Peter Krefting).
3596   [ Updated programs translations ]
3597   * French (Christian Perrier).
3598   * German (Sven Joachim).
3599   * Italian (Milo Casagrande).
3600   * Swedish (Peter Krefting).
3602   [ Updated man pages translations ]
3603   * Swedish (Peter Krefting).
3604   * French (Christian Perrier).
3606   [ Updated scripts translations ]
3607   * Swedish (Peter Krefting).
3608   * French (Christian Perrier).
3610  -- Raphaël Hertzog <hertzog@debian.org>  Mon, 02 Jul 2012 21:16:12 +0200
3612 dpkg (1.16.6) unstable; urgency=low
3614   [ Guillem Jover ]
3615   * Do not translate SE Linux context to human readable form while unpacking,
3616     as that might cause the operation to fail if the mcstransd daemon
3617     stopped running during the transaction. Closes: #679641
3618     Thanks to Russell Coker <russell@coker.com.au>.
3619   * Add --control-list and --control-show to dpkg-query --help output.
3621   [ Raphaël Hertzog ]
3622   * Fix import of error functions in dpkg-buildflags. Regression introduced
3623     in 1.16.5.
3625   [ Updated scripts translations ]
3626   * German (Helge Kreutzmann).
3628   [ Updated man pages translations ]
3629   * German (Helge Kreutzmann).
3631  -- Guillem Jover <guillem@debian.org>  Sat, 30 Jun 2012 21:45:10 +0200
3633 dpkg (1.16.5) unstable; urgency=low
3635   [ Raphaël Hertzog ]
3636   * dpkg-source will now clean up after a failed application of a quilt
3637     patch. Closes: #652970
3638     And it will display a message explaining the most likely cause of
3639     failure (patch applying with fuzz).
3640   * When dpkg-source regenerates the automatic patch (with formats "2.0"
3641     or "3.0 (quilt)") it will keep the current patch header to avoid
3642     losing changes made by the maintainer.
3643   * Modify dpkg-source --commit to auto-whitelist modified binary files.
3644     That way the same command can be used whatever kind of upstream files
3645     has been modified.
3646   * dpkg-source now supports a new option --no-unapply-patches to force
3647     patches to be kept applied after build (used by formats "2.0" and "3.0
3648     (quilt)"). Closes: #643043
3650   [ Guillem Jover ]
3651   * Add a dpkg-buildflags --status action to describe the flag settings.
3652     Thanks to Bernhard R. Link <brlink@debian.org>. Closes: #664058
3653   * Add support for “binary-only” key-value option in changelogs, to allow
3654     marking changelog entries as part of a binary only upload, having a
3655     different version from the source package. Closes: #440094, #672723
3656   * Minimize source architecture list on «dpkg-source -b» by removing
3657     architectures already covered by architecture wildcards. Closes: #675333
3658   * Do not assume $ENV{'HOME'} is defined in Dpkg::Source::Package.
3659     Thanks to Niels Thykier <niels@thykier.net>. Closes: #677631
3660   * Document in more detail in deb(5) the supported ar archive format.
3661   * Document in deb-src-control(5) the “Private-” field prefix.
3662   * Add new start-stop-daemon --no-close option to disable closing file
3663     descriptors on --background. Closes: #627333, #646425
3664   * Switch source compression to xz.
3665   * Detect ar header fields truncation due to too long member names or too
3666     large member sizes. Closes: #678933
3667   * Add new dpkg-query --control-list and --control-show commands, which
3668     replace the now deprecated --control-path.
3669   * Print master and slave alternative link names in update-alternatives
3670     --query and always print alternative link in --config. Closes: #679010
3671   * Cleanup and clarify buffer I/O error reporting. Closes: #621763
3672   * Avoid full stop and double newline at the end of errors and warnings.
3673     Thanks to Jonathan Nieder <jnieder@gmail.com>. Closes: #624000
3674   * Change all programs to accept -? instead of -h for help output.
3675   * Add support for specific arch-qualified dependencies. Closes: #676232
3676     Thanks to Thibaut Girka <thib@sitedethib.com>.
3677   * Accept “:native” arch-qualified Build-Dependencies. Closes: #558095
3678     Thanks to Thibaut Girka <thib@sitedethib.com>.
3679   * Do not use undefined values returned form deps_parse() in dpkg-shlibdeps.
3680     Closes: #640676
3681   * Add an Architecture column to «dpkg-query -l» before the Description
3682     column. Suggested by Jonathan Nieder <jnieder@gmail.com>. Closes: #673190
3684   [ Updated programs translations ]
3685   * Swedish (Peter Krefting).
3687   [ Updated dselect translations ]
3688   * Swedish (Peter Krefting).
3690   [ Updated scripts translations ]
3691   * German (Helge Kreutzmann).
3693   [ Updated man pages translations ]
3694   * German (Helge Kreutzmann).
3695   * Swedish (Peter Krefting).
3697  -- Guillem Jover <guillem@debian.org>  Sat, 30 Jun 2012 04:28:51 +0200
3699 dpkg (1.16.4.3) unstable; urgency=low
3701   * On «update-alternatives --install» only warn for now on out of range
3702     priorities and clamp the values, as there seems to be packages using
3703     priorities > INT_MAX, which although bogus as they were previously
3704     overflowing the int used to store them, that would cause installation
3705     failures when upgrading from squeeze. This will be reverted to an
3706     error after wheezy. Closes: #676874
3708  -- Guillem Jover <guillem@debian.org>  Sun, 17 Jun 2012 10:56:15 +0200
3710 dpkg (1.16.4.2) unstable; urgency=low
3712   * Check correctly for out of range negative field width values in dpkg-query
3713     --show format strings. Regression introduced in 1.16.4. Closes: #676796
3715  -- Guillem Jover <guillem@debian.org>  Sat, 09 Jun 2012 16:16:17 +0200
3717 dpkg (1.16.4.1) unstable; urgency=low
3719   * Fix explicit file trigger activation. Regression introduced in 1.16.4.
3720     Closes: #676684
3722  -- Guillem Jover <guillem@debian.org>  Fri, 08 Jun 2012 23:17:11 +0200
3724 dpkg (1.16.4) unstable; urgency=low
3726   [ Guillem Jover ]
3727   * Deprecate compressing .deb files with lzma, by making dpkg-deb issue a
3728     warning, as the format has several deficiencies that have been addressed
3729     by upstream in xz. Although unpacking will be kept being supported to
3730     handle existing lzma compressed .deb files.
3731   * Add alternative changelog formats documentation from the policy manual
3732     to dpkg-parsechangelog(1). Closes: #584141
3733   * Add MiNT support to ostable and triplettable.
3734     Requested by Thorsten Glaser <tg@mirbsd.de>.
3735   * Add new frontend.txt file to dpkg-dev documenting some public interfaces
3736     for dpkg frontends. Closes: #670897
3737   * Clarify in dpkg(1) when --force-conf* options cause action.
3738     Suggested by Sven Joachim <svenjoac@gmx.de>. Closes: #391818
3739   * Add “gcc | c-compiler” to libdpkg-perl Suggests, due to Dpkg::Arch usage.
3740     Closes: #671198
3741   * Do not mask PIE from dpkg-buildflags on m68k, it appears to work now.
3742     Requested by Thorsten Glaser <tg@mirbsd.de>.
3743   * Remove deprecated support for PGP style signing command interface from
3744     dpkg-buildpackage.
3745   * Remove obsolete --udeb dpkg-scanpackages option.
3746   * Add arm64 support to cputable. Closes: #672408
3747     Thanks Wookey <wookey@wookware.org>.
3748   * Check parsed integers for invalid or no digit errors in start-stop-daemon
3749     and update-alternatives.
3750   * Check all parsed integers for out of range errors; i.e. that no negative
3751     values are allowed if not appropriate, and that no overflows occur.
3752     Closes: #580038
3753   * Switch start-stop-daemon(8) man page examples from /var/run to /run.
3754   * Do not obscure Dpkg::Source::Package ‘require’ errors with custom
3755     error message. Thanks to Thomas Adam <thomas.adam@smoothwall.net> and
3756     Jonathan Nieder <jrnieder@gmail.com>.
3757   * Add new Dpkg::Substvars::set_as_used() member function.
3758   * Rename Dpkg::Substvars no_warn() member function to mark_as_used(), keep
3759     the old name aliased to the new one producing a deprecation warning.
3760   * Add support for Build-Depends-Arch and Build-Conflicts-Arch fields, and
3761     a new -A option to dpkg-checkbuilddeps. Closes: #629480
3762     Thanks to Roger Leigh <rleigh@debian.org>.
3763   * Add support for “none” as a valid dpkg-deb compression strategy value.
3764     Closes: #674711
3765   * Clarify in dpkg(1) that the «dpkg -l» example only lists installed
3766     packages, and that to list available packages «dpkg-query --load-avail»
3767     has to be used instead. Closes: #673305
3768   * Clarify also in the dpkg(1) man page (already present in the dpkg.cfg(5)
3769     man page) the valid filenames for /etc/dpkg/dpkg.cfg.d/ fragment files.
3770     Closes: #674674
3771   * Fix start-stop-daemon to not follow symlinks when creating pidfiles.
3772     Thanks to Carsten Hey <carsten@debian.org>. Closes: #675918
3773   * Refactor the file locking logic into a new Dpkg::File module, and move
3774     the libfile-fcntllock-perl dependency from dpkg-dev to libdpkg-perl.
3775   * Demote the libfile-fcntllock-perl Depends to a Recommends by falling back
3776     to use flock based locking, because it being an XS module makes building
3777     a new perl package bumping the perl ABI impossible, as both packages
3778     become uninstallable. Thanks to Dominic Hargreaves <dom@earth.li>.
3779     Closes: #675947
3780   * Put an & before field_capitalize() calls in Dpkg::Control::Fields to
3781     fix a usage before declaration warning with perl 5.16. Closes: #676262
3782   * Do not warn in dpkg-divert on missing files list file for packages never
3783     installed before. Closes: #673518
3784   * Add support for liblzma to handle .xz and .lzma compressed files, and
3785     switch to it instead of using xz-utils. This removes the xz-utils
3786     Pre-Depends from dpkg. Thanks to Jonathan Nieder <jrnieder@gmail.com>.
3787   * Always activate all path components for file triggers, this fixes file
3788     trigger handling for conffiles and dpkg-trigger invocations.
3789     Closes: #675613, #676061, #676062, #676107, #676118, #676122
3790   * Do not reset Multi-Arch field in the update log when removing the package.
3791     Closes: #676496
3792   * Fix dpkg-split to honour the DPKG_ADMINDIR environment variable.
3794   [ Updated man pages translations ]
3795   * German (Helge Kreutzmann).
3796   * French (Christian Perrier). Fixes a mistranslation and some
3797     inconsistencies reported by Vincent Danjean( thanks). Closes: #673158
3799  -- Guillem Jover <guillem@debian.org>  Thu, 07 Jun 2012 23:43:19 +0200
3801 dpkg (1.16.3) unstable; urgency=low
3803   [ Guillem Jover ]
3804   * Do not look for newline beyond the read buffer on dpkg-deb extract.
3805   * Check update-alternative name and link arguments for all commands.
3806     Closes: #665050
3807   * Check all dpkg-divert filename arguments to be absolute and to not
3808     contain newlines. Closes: #21722
3809   * Print errors while reading the file list files on a new line instead
3810     of just after the progress percentage. Closes: #552517
3811   * Document in dpkg-source(1) that patches for source format “3.0 (quilt)”
3812     are expected to apply without any fuzz. Closes: #666752
3813     Based on a patch by Luca Capello <luca@pca.it>.
3814   * Remove redundant -Wformat-security from default dpkg-buildflags, which
3815     is already implied by -Werror=format-security. Closes: #664964
3816     Suggested by Peter Eisentraut <petere@debian.org>.
3817   * Document in dpkg-query(1) that commands producing multiple paragraphs
3818     will preserve the order of the packages specified on the argument list.
3819   * Change start-stop-daemon --exec on GNU/Hurd, FreeBSD, NetBSD, OpenBSD
3820     and Solaris to check for executables matching device and inode numbers
3821     instead of filenames.
3822   * Change start-stop-daemon --name on GNU/Hurd to check the process' argv[1]
3823     in addition to argv[0], to handle both binaries and interpreted scripts.
3824     Reported by Mats Erik Andersson <mats.andersson@gisladisker.se>.
3825   * Handle deb format versions as major.minor integers instead of strings or
3826     floats, the latter being susceptible to parsing errors depending on the
3827     current locale (although this was only affecting the old deb format).
3828   * Ignore the minor format version number for deb-split format, unifying
3829     the behaviour with the deb format.
3830   * Add support for an abitable containing arch attribute overrides.
3831   * Add x32 support to abitable, ostable and triplettable. Closes: #667037
3832   * Fix start-stop-daemon to work with relative --exec arguments and --chdir.
3833     Closes: #669047
3834   * Ignore request to rename a file owned by the diverting package on
3835     «dpkg-divert --add --rename». Closes: #588077
3836   * Clarify dpkg-gensymbols(1) by way of examples that architecture wildcards
3837     are supported in symbols files. Closes: #670048
3838   * Fix memory leak due to Dpkg::Control objects not being garbage-collected.
3839     Thanks to Ben Harris <bjh21@cam.ac.uk>. Closes: #669012
3840   * Compute the md5sum hash on unpack for empty files too, so that these
3841     can be checked correctly for matching content when installing multiple
3842     package instances.
3843   * Generate md5sums files automatically at unpack time if missing from the
3844     binary package. Closes: #155676, #155799
3845   * Add missing list and md5sums database file checks to «dpkg --audit».
3847   [ Helge Kreutzmann ]
3848   * Fix a typo in man/dpkg-buildflags.1.
3850   [ Updated programs translations ]
3851   * French (Christian Perrier).
3852   * German (Sven Joachim).
3853   * Swedish (Peter Krefting).
3855   [ Updated dselect translations ]
3856   * French (Christian Perrier).
3857   * German (Sven Joachim).
3858   * Swedish (Peter Krefting).
3860   [ Updated scripts translations ]
3861   * French (Christian Perrier).
3862   * Swedish (Peter Krefting).
3864   [ Updated man pages translations ]
3865   * French (Christian Perrier).
3866   * German (Helge Kreutzmann).
3867   * Swedish (Peter Krefting).
3869  -- Guillem Jover <guillem@debian.org>  Fri, 27 Apr 2012 10:10:10 +0200
3871 dpkg (1.16.2) unstable; urgency=low
3873   [ Guillem Jover ]
3874   * Move <config.h> and <compat.h> to the top of trigdeferred.l to properly
3875     use the configured features and compat code.
3876   * Honour --disable-nls when the system lacks obstack support, by updating
3877     the obstack compat module from gnulib.
3878   * Link the libdpkg unit tests with libcompat and libintl, so that systems
3879     needing them will compile correctly.
3880   * Check for the presence of the strnlen declaration and correctly provide
3881     the compat one in case the systems lacks it.
3882   * Do not assume existence of paths on the build system in the test suite.
3883   * Do not fail to link dselect on MacOS X when using --disable-nls.
3884   * Remove versioned coreutils Pre-Depends from dpkg due to the ancient
3885     md5sum transition. Reported by Bill Allombert <ballombe@debian.org>.
3886     Closes: #643746
3887   * Change dpkg-architecture to only compute the requested variables. This:
3888     - Fixes the bootstrapping problem, as the dpkg build system only needs
3889       the host architecture, for which dpkg itself is not required.
3890     - Reduces the amount of work performed, including loading and parsing
3891       unnecessary table files or calling either of gcc or dpkg programs.
3892   * Improve error message in dpkg-gencontrol and dpkg-gensymbols when
3893     debian/control does not have any package stanza. Closes: #642473
3894     Based on a patch by Kyle Willmon <kylewillmon@gmail.com>.
3895   * Add Pre-Depends on tar >= 1.23 (satisfied in stable) to dpkg due to it
3896     using the ‘--warning=no-timestamp’ option. Closes: #642802
3897   * Do not segfault on GNU/Linux when dpkg cannot retrieve the block size
3898     for the filesystem containing the info database. LP: #872734
3899   * Fix two memory leaks per tar entry in the tar extractor used on unpack.
3900   * Mark dpkg and dselect as Multi-Arch foreign.
3901     Reported by Steve Langasek <vorlon@debian.org>.
3902   * Mark dpkg-dev and libdpkg-perl as Multi-Arch foreign. Closes: #648217
3903     Thanks to Colin Watson <cjwatson@ubuntu.com>.
3904   * Add new deb-origin.5 man page. Closes: #608884
3905     Thanks to Matt Kraai <kraai@ftbfs.org>.
3906   * Return correct status on start-stop-daemon --status when using --pidfile.
3907   * Treat dpkg-deb compression level independently for each backend. This
3908     has the effect of changing the current behaviour for level 0 on all
3909     compressors except gzip.
3910   * Add new dpkg-deb -S option to specify the compression strategy. The only
3911     currently supported value is “extreme” for xz. Closes: #647915
3912   * Stop using brace expansion to install man pages by using dh_installman
3913     instead of dh_install, the former does not abort on empty glob expansion.
3914   * Do not use absolute paths for programs in perl and shell code.
3915   * Add missing ‘*’ in asprintf() and vasprintf() compat declarations.
3916   * Add support for virtual output binary:Summary and db:Status-Abbrev fields.
3917     Closes: #192619, #427945
3918   * Add support for virtual output source:Package and source:Version fields.
3919     Closes: #653575
3920   * Use a different temporary file per process on libcompat's vsnprintf()
3921     function to avoid race conditions from children after fork(3).
3922     Reported by Daniel Ruoso <daniel@ruoso.com>. Closes: #655411
3923   * Fix start-stop-daemon --exec and --name options on FreeBSD, NetBSD and
3924     OpenBSD by swapping the process matching implementations.
3925   * Fix start-stop-daemon --name option on GNU/Hurd to match the process name.
3926   * Document in more detail the implications of start-stop-daemon matching
3927     options. Closes: #367608
3928   * Improve and clarify dpkg-shlibdeps superfluous linking warning messages.
3929     Based on a patch by Peter Eisentraut <petere@debian.org>. Closes: #656496
3930   * Relax --merge-avail Packages file parser, to not fail on bogus versions.
3931   * When building only arch-indep binaries with «dpkg-buildpackage -A», name
3932     the .changes file using ‘all’ as architecture. Closes: #661638
3933   * Handle unknown architectures gracefully in dpkg-buildflags.
3934     Closes: #663004
3935   * Add missing --status-logger to dpkg --help output.
3936   * Do not print bogus errno string for invalid package names in dpkg
3937     --ignore-depends option.
3938   * Change dpkg-query to not load the available file by default for --list
3939     and --show, add a new --load-avail option to expose the old behaviour.
3940   * Only allow setting selections via «dpkg --set-selections» for known
3941     packages (i.e. those present in either the status or available files).
3942   * Always ignore older versions when parsing the available file, not only
3943     for --update-avail and --merge-avail.
3944   * Mark not-installed non-arch-qualified selections for removal.
3945   * Add new «dpkg --assert-multi-arch» command to allow checking for
3946     multi-arch support availability.
3947   * Bump Standards-Version to 3.9.3 (no changes needed).
3948   * Add architecture consistency checks to «dpkg --audit».
3949   * Add new dpkg --add-architecture and --remove-architecture commands to
3950     track supported architectures.
3952   [ Raphaël Hertzog ]
3953   * Update Dpkg::Shlibs to look into multiarch paths when cross-building
3954     too. Closes: #595144
3955   * Rewrite architecture.mk with explicit loops instead of duplicating many
3956     similar lines. Based on a patch by Thorsten Glaser <tg@mirbsd.de>.
3957   * Modify dpkg-gencontrol and dpkg-distaddfile to grab a write lock
3958     on debian/control before updating debian/files to avoid simultaneous
3959     updates. Closes: #642608
3960     Add libfile-fcntllock-perl to dpkg-dev's Depends since we use this module
3961     to handle the locking.
3962   * Update dpkg-gensymbols(1) to clarify that -e accepts shell patterns
3963     expansions and not regular expressions. And let dpkg-gensymbols output a
3964     warning when a pattern doesn't match any file. Closes: #649248
3965   * Add new option "-a <arch>" to dpkg-checkbuilddeps to check build
3966     dependencies for another architecture. This is really basic for now since
3967     it assumes all build dependencies must be satisfied on the listed
3968     architecture. Closes: #648180 Thanks to Colin Watson for the patch.
3969   * Error out if a dpkg database .list file is not a regular file. LP: #369898
3970   * Fix dpkg-mergechangelogs to not error out on invalid versions.
3971     Closes: #651993
3972   * Fix dpkg-source --commit on "3.0 (quilt)" when an explicit patch file
3973     is given with a relative filename. Closes: #652414
3974   * Further clarify in dpkg-source(1) the conditions under which it's possible
3975     to pass an explicit patch file to dpkg-source --commit.
3976   * Add new --query-features command to dpkg-buildflags. Thanks to Kees Cook
3977     for the patch. Closes: #651481
3978   * Fix description of Multi-Arch in deb-control(5). Closes: #654453
3979     Thanks to Jakub Wilk for spotting the mistake.
3980   * Drop misleading spaces in deb-symbols(5) in the format description.
3981   * Clean up dpkg-architecture(1) dropping useless information and
3982     adding a reference to /usr/share/dpkg/architecture.mk.
3983   * Update dpkg-buildpackage to use the "build-arch" (for -B) and
3984     "build-indep" (for -A) targets unless "make -qn" says that they do not
3985     exist. Closes: #229357
3986   * Improve deb-shlibs(5) to mention that the dependency field must
3987     use the same syntax as a Depends field. Closes: #658696
3988   * Update dpkg-maintscript-helper(1) to recommend usage of the version
3989     removing/renaming a conffile with a "~" suffix as "priorversion"
3990     parameter. Thanks to Sam Morris <sam@robots.org.uk> for the patch.
3991     Closes: #658854
3992   * Fix debug output of dpkg-maintscript-helper. LP: #936340
3994   [ Jonathan Nieder ]
3995   * Bump po4a version in Build-Depends to 0.41, since earlier versions do
3996     not handle --srcdir correctly. Closes: #644370
3998   [ Guillem Jover, Steve Langasek, Raphaël Hertzog ]
3999   * Add new dpkg --print-foreign-architectures command.
4000   * Add support for virtual output binary:Package field.
4001   * Implement Multi-Arch support.
4003   [ Helge Kreutzmann ]
4004   * Fix a typo in man/dpkg-deb.1.
4006   [ Updated programs translations ]
4007   * German (Sven Joachim).
4008   * Italian (Milo Casagrande). Closes: #627832, #657849
4009   * Swedish (Peter Krefting).
4010   * French (Christian Perrier)
4011   * Polish (Michał Kułach). Closes: #658126
4013   [ Updated scripts translations ]
4014   * German (Helge Kreutzmann).
4015   * Spanish (Omar Campagne). Closes: #636238
4016   * Swedish (Peter Krefting).
4018   [ Updated man pages translations ]
4019   * German (Helge Kreutzmann), including typo fix in dpkg-genchanges
4020     Closes: #646496, sub optimal translation of package states LP: #368783
4021     and an fix by Chris Leick
4022   * Japanese (TAKAHASHI Motonobu).
4023   * Spanish (Omar Campagne). Closes: #643969
4024   * Swedish (Peter Krefting).
4025   * Minor errors corrected in French (thanks to David Prévot)
4026   * Fix translation of -B and -A options of dpkg-buildpackage.
4027     Thanks to Vincent Danjean. Closes: #654626
4029   [ Updated dselect translations ]
4030   * Dutch (Jeroen Schot). Closes: #651813
4032  -- Guillem Jover <guillem@debian.org>  Mon, 19 Mar 2012 07:27:12 +0100
4034 dpkg (1.16.1.2) unstable; urgency=medium
4036   [ Raphaël Hertzog ]
4037   * Fix another typo to correctly set DEB_*_ARCH_BITS in architecture.mk.
4038   * Set urgency to medium as changes are minor, and it should migrate
4039     quickly in case 1.16.2 comes soon.
4041   [ Jonathan Nieder ]
4042   * Update dpkg-buildflags(1) to note that the processor option
4043     -D_FORTIFY_SOURCE=2 is set in CPPFLAGS now instead of CFLAGS and
4044     CXXFLAGS. Closes: #646073
4046  -- Raphaël Hertzog <hertzog@debian.org>  Fri, 25 Nov 2011 11:18:30 +0100
4048 dpkg (1.16.1.1) unstable; urgency=low
4050   [ Raphaël Hertzog ]
4051   * Fix dpkg-source to not ignore the automatic patch when checking
4052     for unrecorded changes. Closes: #643148
4053   * Let dpkg-source --commit create debian/patches when required.
4054     Closes: #643037
4055   * Fix dpkg-buildflags --dump to return 0 as exit code and not 1.
4056   * Update dpkg-buildflags(1) to not include quotes in the examples
4057     setting DEB_BUILD_MAINT_OPTIONS.
4058   * Stop outputting build flags in dpkg-buildpackage as it confuses
4059     maintainers who are overriding them in debian/rules and who
4060     are not seeing the expected value in the build log.
4061   * Fix trigger setup code to not reset the status of packages
4062     when they are in a status different from triggers-awaited,
4063     triggers-pending or installed. Closes: #644492
4064   * Fix dpkg-source to ignore changes on debian/patches/.dpkg-source-applied
4065     when building a "2.0" source package. Closes: #642656
4066   * Fix buildflags.mk to re-export the environment variables that
4067     the maintainer can use to change the build flags. Closes: #644412
4069   [ Guillem Jover ]
4070   * Change dpkg-buildflags to set preprocessor option -D_FORTIFY_SOURCE=2
4071     in CPPFLAGS, instead of CFLAGS and CXXFLAGS. Closes: #642521, #643632
4072   * Fix typo to correctly set DEB_*_ARCH_BITS instead of DEB_*_ARCH in
4073     architecture.mk. Thanks to Thorsten Glaser <tg@mirbsd.org>.
4074   * Make dpkg-buildflags disable full relro (bindnow) if relro is not enabled.
4076  -- Guillem Jover <guillem@debian.org>  Fri, 14 Oct 2011 07:08:31 +0200
4078 dpkg (1.16.1) unstable; urgency=low
4080   [ Raphaël Hertzog ]
4081   * Dpkg::Deps: Implement new "reset" method and bump module version to 1.01
4082     due to this.
4083   * Improved description of --search in dpkg-query(1). Closes: #621066
4084     Thanks to Lars Buitinck <larsmans@gmail.com> for the patch.
4085   * Let update-alternatives fsync() its administrative files before
4086     moving them in place to avoid empty files with some filesystems.
4087     LP: #344019
4088   * Tighten the regexp used by dpkg-source to ignore the .pc directory of
4089     quilt. Thanks to Mike Hommey for noticing the problem.
4090   * Change behaviour of dpkg-source's --extend-diff-ignore to also
4091     extend the current diff-ignore if it has already been set.
4092   * Fix dependency checking code to consider a dependency on a virtual
4093     package provided by a package in triggers-pending status as satisfied.
4094   * Do not fail when encountering a pre-dependency in triggers-awaited state,
4095     instead process the awaited triggers. Closes: #526774
4096   * "any" no longer hides "all" in the Architecture field of a .dsc.
4097   * Fix dpkg --remove to really remove the triggers from the various
4098     internal files in /var/lib/dpkg/info/triggers/. Closes: #525160
4099   * Avoid a perl warning in dpkg-gensymbols when no symbols file has been
4100     generated (because it would have been empty). Closes: #626684
4101   * Re-enable the Package-List field but drop the Architecture column since we
4102     have no clear use case yet. It can always be added later on.
4103     Also drop the source line since it duplicates other fields.
4104     Closes: #619131
4105   * Add the extraction part of Dpkg::Source::Package to the supported API.
4106     Useful to extract source packages without having to depend on dpkg-source
4107     (and hence dpkg-dev).
4108   * Add the Dpkg::Vendor module to the supported API. Useful for lintian
4109     when dpkg-dev is absent.
4110   * Check presence of required parameters in dpkg-vendor. Closes: #628726
4111     Thanks to Niels Thykier <niels@thykier.net> for the patch.
4112   * Avoid a Perl warning in dpkg-buildflags when HOME is not set.
4113     Closes: #635467
4114   * dpkg-source can now also use debian/source/local-patch-header (that is not
4115     included in the generated source package) instead of
4116     debian/source/patch-header. Closes: #629582
4117   * Changed dpkg-source --after-build to automatically unapply patches that it
4118     has applied during --before-build.
4119   * Fix two possible causes for the assertion failure "pigp->trigpend_head".
4120     LP: #798793, #424358 Closes: #560251
4121   * Use "special" instead of "particular" to qualify the "3.0 (custom)" format
4122     in dpkg-source(1). Closes: #631435
4123   * Add some supplementary checks to ensure debian/control has the required
4124     fields. Closes: #631439
4125   * dpkg-gensymbols(1): document syntax of comments. Closes: #630996
4126   * Allow empty lines in symbols files to better delimit multiple libraries.
4127     Thanks to Cyril Brulebois <kibi@debian.org> for the patch.
4128   * dpkg: if "prerm upgrade" fails when downgrading, do not try to run
4129     "prerm failed-upgrade" with the prerm of the oldest prerm, it can't work
4130     around a bug of a newer prerm anyway.
4131   * dpkg: support new "interest-noawait" and "activate-noawait" trigger
4132     directives.
4133   * dpkg-buildflags(1): make it clear that DEB_*_(SET|APPEND) environment
4134     variables are meant for users and should not be used by packages.
4135   * update-alternatives: do not allow reusing a slave link in another
4136     slave alternative. Closes: #631547
4137   * Improve dpkg-source's logic to identify ignored files. Closes: #632168
4138   * Fix a small typo in dpkg-source(1). Closes: #632937
4139   * Reword the description of dpkg-source --before-build and --after-build
4140     to be clearer. Closes: #608260
4141   * dpkg-buildpackage no longer exports the compiler flags. Closes: #560070
4142     Packages must directly call dpkg-buildflags to retrieve them.
4143   * dpkg-buildflags supports a prepend command to modify the build
4144     flags. Particularly useful for package maintainers who don't want
4145     their supplementary flags to take precedence over user submitted
4146     flags.
4147   * Add new --dump action to dpkg-buildflags and make it the default action.
4148     Closes: #603435
4149   * dpkg-mergechangelogs now checks the return value of the close() call.
4150     Thanks to Niels Thykier <niels@thykier.net> for the patch. Closes: #633539
4151   * Similar changes to dpkg-shlibdeps and dpkg-gencontrol, also by Niels.
4152   * Fix update-alternatives to not remove a real file when dropping a
4153     symlink for a slave that's not provided by the new current choice.
4154     Closes: #633627
4155   * Improve dpkg-source's error message complaining about the lack
4156     of the upstream tarball. Closes: #634510
4157   * Add some common makefile snippets for use in rules files in
4158     /usr/share/dpkg/: default.mk, architecture.mk, buildflags.mk, pkg-info.mk,
4159     vendor.mk Closes: #606839
4160   * Fix the dpkg-divert test-suite to also skip test that would fail if run
4161     under root. Closes: #634961
4162   * Change merge conflict separators created by dpkg-mergechangelogs to match
4163     the usual norm of being composed of 7 characters. LP: #815700
4164   * With source format 2.0 and 3.0 (quilt), dpkg-source now fails by default
4165     when upstream changes have not been recorded in a quilt patch. The new
4166     --commit operation can be used to properly record the changes before-hand.
4167     LP: #797839
4168     And it fails before installing the automatic patch in debian/patches/
4169     Closes: #615899
4170   * dpkg-buildflags now supports "--export=configure" to output compilation
4171     flags on a single line with double quotes as delimiter of the various
4172     values. It also uses DEB_<flag>_MAINT_<op> to let the maintainer
4173     extend the build flags to use. Last but not least, it can now also strip
4174     options from the returned build flags.
4175   * Fix possible segfault of dpkg in findbreakcycle(). LP: #733414
4176   * dpkg-source now properly cleans up the temporary tarball generated for
4177     native formats in case of unexpected interruption. Closes: #631494
4178   * Fix simplification logic of union dependencies. Closes: #637564
4179   * Fix dpkg's handling of a hardlink pointing to a conffile. Closes: #638291
4180   * Add example of extend-diff-ignore's usage in dpkg-source(1).
4181     Closes: #640198
4182   * dpkg-buildflags now returns hardening flags by default. Closes: #489771
4183     They can be individually enabled/disabled via DEB_BUILD_MAINT_OPTIONS,
4184     see dpkg-buildflags(1). Thanks to Kees Cook for his help.
4186   [ Guillem Jover ]
4187   * Install deb-src-control(5) man pages in dpkg-dev. Closes: #620520
4188   * Add ‘.gitmodules’ to the default dpkg-source ignore lists. Closes: #620490
4189   * Document in dpkg-query(1) man page that on --listfiles each list of
4190     files per package name is separated by a blank line. Same goes for
4191     --status and --print-avail.
4192   * Use execvp(3) unconditionally in command_exec(). Making the call always
4193     fallback to use the system shell in case of error, such as with empty
4194     maintainer scripts. Thanks to Jonathan Nieder <jrnieder@gmail.com>.
4195     Closes: #622094
4196   * Improve deb-split(5) format description by splitting debian-split
4197     member contents into a list.
4198   * Switch to debhelper compatibility level 7.
4199     - Use dh_prep instead of deprecated “dh_clean -k”.
4200   * Bump Standards-Version to 3.9.2 (no changes needed).
4201   * Generate filenames following current conventions on “dpkg-split --join”,
4202     by including the architecture in the debian-split member of a split
4203     package and using underscores to separate filename parts.
4204   * Support conffiles with spaces when diffing them. Closes: #147583
4205   * Allow installing packages with bogus versions with new
4206     --force-bad-version.
4207   * Do not fail when unpacking a diverted hardlink. Closes: #245322
4208     Based on a patch by Christopher Baines <cbaines8@gmail.com>.
4209   * Document in dpkg-deb(1) that --fsys-tarfile will always process the
4210     input archive sequentially. Closes: #616609
4211   * Remove long non-functional --new and --old dpkg-deb option handling
4212     from dpkg which were being treated as dpkg commands.
4213   * Remove reference to --nocheck dpkg-deb option from dpkg man page as
4214     the latter does not pass it to the former.
4215   * Clarify the current dpkg behaviour when running the dpkg-deb and
4216     dpkg-query back-ends, of not passing through back-end specific options
4217     when running them from dpkg. Closes: #610940
4218   * Use “unselected” as an adjective in dpkg output messages instead of
4219     “deselected”. Closes: #231089
4220   * Clarify exit status in dpkg-split and start-stop-daemon --help output.
4221   * Clarify “EXIT STATUS” section in man pages by using a table.
4222   * Add a --status command to start-stop-daemon returning LSB Init Script
4223     status action exit codes.
4224   * Add start-stop-daemon process name kernel limits for Solaris, NetBSD,
4225     OpenBSD, FreeBSD and Darwin.
4226   * On package removal, keep only directories actually containing conffiles,
4227     and not directories just matching the substring in the conffile or the
4228     directory itself. Thanks to Ondřej Surý <ondrej@debian.org>.
4229   * On purge correctly remove symlinks acting as directories, when they are
4230     not being used by any other package's files.
4231   * Do not lose track of parent directories on removal so that they can
4232     be properly cleaned up on purge if not used by any other package.
4233     Based on a patch by Ondřej Surý <ondrej@debian.org>. Closes: #454694
4234   * Add ‘.hgsigs’ to the default dpkg-source ignore lists.
4235     Based on a patch by Jakub Wilk <jwilk@debian.org>. Closes: #627462
4236   * Do not allow blank lines in field values. Closes: #308082
4237   * Do not warn on missing architecture on packages in config-files state,
4238     but then make sure the architecture field is usable. Closes: #604241
4239   * Run du with --apparent-size when generating the Installed-Size field in
4240     dpkg-gencontrol to get consistent results independent of build system.
4241     Thanks to Ludovic Brenta <ludovic@ludovic-brenta.org>. Closes: #630533
4242   * Do not fail to unpack shared directories missing on the file system
4243     from packages being replaced by other packages. Closes: #631808
4244   * Do not require programs to define thisname, provide two new functions
4245     to handle the program name (dpkg_set_progname and dpkg_get_progname).
4246     Closes: #631757
4247   * Man pages cleanup:
4248     - Rename “USAGE” dselect(1) section to “ACTIONS” and clarify they can
4249       be performed interactively or from command line.
4250     - Add missing built-in methods to dselect(1).
4251     - Add missing escaping to field dashes in deb-control(5).
4252     - Use dashes instead of underscores for variable text.
4253     - Clarify that several front-end fields are not dselect specific in
4254       dpkg-query(1).
4255     - Use [option...] instead of [options] and friends.
4256     - Use italics or bold instead of surrounding the text with <>.
4257     - Correctly format text with bold and italics.
4258     - Use minus signs and hyphens consistently in man pages.
4259     - Fix reference to /etc/dpkg/dselect.cfg.d instead of dpkg.cfg.d in
4260       dselect(1).
4261     - Add missing optional group|gid --chuid argument in start-stop-daemon(8).
4262   * Refer to Sources and Packages files as part of a repository instead of
4263     as being of exclusive use or owned by APT, which has never been the case.
4264   * Unify somewhat dpkg-maintscript-helper --help output with other commands.
4265   * Add build-indep and build-arch targets as aliases for build in
4266     debian/rules.
4267   * Use the perl interpreter found by configure to call dpkg-architecture.pl
4268     in the m4 DPKG_ARCHITECTURE macro.
4269   * Add new --verbose option to dpkg-deb and change --extract to honour it.
4270     Closes: #293280
4271   * Add new --raw-extract option to dpkg-deb combining --control and
4272     --extract. Closes: #552123
4273   * Defer hardlink renames so that there's never a point were the new
4274     file contents are accessible from the final path before they have
4275     been fsync()ed and cannot be executed causing ETXTBSY when trying
4276     to open the to be installed paths for writing.
4277     Thanks to Jonathan Nieder <jrnieder@gmail.com>. Closes: #635683
4278   * Clarify the default dpkg-deb compression-levels on the man page.
4279   * Clarify dpkg --update-avail usage error message. Closes: #628055
4280   * Change Dpkg::Compression default values depending on the compressor
4281     used, and as such dpkg-source inherits this functionality.
4282     Prompted by Timo Juhani Lindfors <timo.lindfors@iki.fi>.
4283   * Print an actual error or warning message instead of assert()ing on
4284     readlink()/stat() size discrepancies. Closes: #639229
4285   * Update alternative links only if they change. This allows for a
4286     read-only file system and a writable database. Closes: #636700
4287     Based on a patch by Salvatore Bonaccorso <carnil@debian.org>.
4288   * Fix double “error:” string in dpkg missing PATH error output.
4289     Closes: #639997
4290   * Do not warn on strange timestamps when unpacking with dpkg-deb.
4291     Closes: #640298
4292   * Reduce dpkg-trigger binary size by refactoring libdpkg modules so that
4293     it does not end up pulling triglib.
4294   * Reduce dpkg-deb binary size by refactoring libdpkg modules so that it
4295     does not end up pulling triglib.
4296   * Do not fail on --compare-version when generating parse warnings.
4297     Existing packages with invalid versions should not fail on their
4298     maintainer scripts due to that.
4299   * Use the user name (instead of the user id) when setting the supplementary
4300     groups in start-stop-daemon. Closes: #641834
4301   * Use --srcdir and --destdir po4a options, and bump Build-Depends version
4302     to 0.36.4.
4304   [ Updated programs translations ]
4305   * German (Sven Joachim). Closes: #620312
4306   * Swedish (Peter Krefting).
4307   * French (Christian Perrier).
4309   [ Updated man pages translations ]
4310   * French (Christian Perrier).
4311   * German (Helge Kreutzmann) including improvement by "Flo".
4312   * Swedish (Peter Krefting).
4314   [ Updated scripts translations ]
4315   * French (Christian Perrier, Sylvestre Ledru). Closes: #637096
4316   * German (Helge Kreutzmann).
4317   * Swedish (Peter Krefting).
4319  -- Guillem Jover <guillem@debian.org>  Fri, 23 Sep 2011 06:00:11 +0200
4321 dpkg (1.16.0.3) unstable; urgency=medium
4323   * Allow again Priority field values not known to dpkg. Regression
4324     introduced in 1.16.0.
4326  -- Guillem Jover <guillem@debian.org>  Wed, 04 May 2011 10:01:30 +0200
4328 dpkg (1.16.0.2) unstable; urgency=high
4330   * Fix dpkg-split --auto to not fail when opening the new depot file.
4331   * Fix dpkg-split to correctly set the last part split size.
4332   * Fix build failure on DEB_BUILD_OPTIONS=noopt due to a missing <locale.h>
4333     include in gettext.h needed by the gettext context functions.
4335  -- Guillem Jover <guillem@debian.org>  Sat, 16 Apr 2011 00:14:15 +0200
4337 dpkg (1.16.0.1) unstable; urgency=low
4339   [ Raphaël Hertzog ]
4340   * Fix regression affecting dpkg -R. Closes: #620636
4341   * Don't fail during unpack if the system doesn't support changing timestamps
4342     of symlinks. Closes: #620679
4344  -- Guillem Jover <guillem@debian.org>  Tue, 05 Apr 2011 07:28:20 +0200
4346 dpkg (1.16.0) unstable; urgency=low
4348   [ Guillem Jover ]
4349   * Use DPKG_MAINTSCRIPT_PACKAGE environment variable as package name on
4350     dpkg-divert when no --package or --local options have been specified.
4351   * Do not allow versions starting with non-digit when doing strict parsing,
4352     warn otherwise.
4353   * Update dpkg(1) to note that --status-fd output does not contain newlines
4354     in error messages anymore (this was fixed in 1.15.0).
4355   * Add a new --status-logger option to dpkg, similar to --status-fd but
4356     instead invoke the command ourselves and feed the status information
4357     to its standard input. Suggested by Raphaël Hertzog.
4358   * Add missing space in update-alternative --set-selections output.
4359   * Add missing options to update-alternative --help output.
4360   * Count “conffile name is duplicated” for dpkg-deb warning count summary.
4361   * Improve and clarify strings for translation. Closes: #604914
4362   * Prefix all fatal error messages with “error: ”.
4363   * Do not check presence of update-rc.d in the PATH in dpkg, as it's not
4364     a program needed for dpkg correct operation.
4365   * Fix dpkg -GEO options on multiple versions of the same packages.
4366     Closes: #31141
4367   * Propagate --admindir to programs run from maintainer scripts.
4368     Closes: #97076
4369   * Do not fail when trying to remove the root directory. This will only
4370     happen either on distributions where dpkg is a foreign package manager,
4371     or on artificial dpkg databases.
4372   * Always warn when parsing any package control data which does not have
4373     an Architecture field except for status and status log files when
4374     packages are not-installed or half-installed.
4375   * By default reject installing packages w/o an Architecture field. They
4376     now need --force-architecture, dpkg will still warn about them though.
4377   * Fix build failure when passing --disable-nls to configure.
4378   * Do not segfault on “dpkg -i --no-act”.
4379   * Add missing semicolon to the vsnprintf() compat declaration.
4380     Thanks to Robert Millan. Closes: #612203
4381   * On install for Ubuntu adjust the i386 GNU cpu name in cputable.
4382     Thanks to Colin Watson <cjwatson@ubuntu.com>. Closes: #611741
4383   * Sync the info database directory on unpack instead of the temporary
4384     control information directory, and print the correct pathname on error
4385     instead of the last file acted on that directory.
4386   * Document in dpkg-query --help output and man page that --list and --show
4387     arguments are optional.
4388   * Do not read and write the available file unnecessarily.
4389     Thanks to Michel Lespinasse <walken@zoy.org>. Closes: #397121
4390   * Fix typo in «dpkg-name --overwrite» argument parsing so that it actually
4391     works at all. Thanks to Ivan Gagis <igagis@gmail.com>. LP: #728708
4392   * Add armhf support to ostable and triplettable. Closes: #594179
4393   * Set the modification time for unpacked symlinks on supported systems.
4394   * Fix undefined value usage in dpkg-genchanges when adding files w/o a
4395     matching architecture, because they are not present in debian/control,
4396     this is most commonly the case due to dpkg-distaddfile.
4397   * Terminate immediately on dpkg-divert rename errors instead of propagating
4398     up the error codes, this improves error reporting and avoids triggering
4399     leak detectors. Closes: #620380
4400   * When moving a diverted file across filesystems in dpkg-divert, remove
4401     the source file.
4402   * Fix large file support for .deb and split .deb in dpkg-deb, dpkg-split
4403     and dpkg on 32-bit architectures.
4405   [ Raphaël Hertzog ]
4406   * Fail properly when debian/source/format is empty. Closes: #600854
4407   * Add new deb-src-control(5) manual page documenting the debian/control
4408     file contained in source packages.
4409     - it documents the X[SBC]- prefix. Closes: #476335
4410     - it documents the VCS-* fields too. Closes: #483119
4411     Thanks to Oxan van Leeuwen <oxan@oxanvanleeuwen.nl> who wrote it
4412     as part of the Google Code In program.
4413   * Enhance dpkg-shlibdeps to not fail immediately when a library is not found.
4414     Instead continue and fail after all problems have been reported. Thanks
4415     to Chris Baines <cbaines8@gmail.com> for the patch. Closes: #596841
4416   * Fix dpkg-source to not list Debian packaging files as modified
4417     upstream files in Format "1.0" when unpacking to a non-standard
4418     directory.
4419   * Apply patch from Colin Watson to let dpkg-buildflags return -O3
4420     instead of -O2 when building ppc64 packages on Ubuntu. Closes: #612472
4421   * Add new function get_control_path() to Dpkg::Path, it wraps dpkg-query
4422     --control-path.
4423   * Update dpkg-shlibdeps to be multiarch-ready:
4424     - use get_control_path() to find symbols/shlibs files
4425     - parse correctly the output of dpkg --search
4426   * Small fix to support files >2GB in .deb on 64-bit systems. Closes: #616502
4427     Thanks to Martin Dorey <mdorey@bluearc.com> for the patch.
4428   * dpkg-source now keeps the file ordering in the autogenerated patch when
4429     regenerating it. Closes: #606080
4430     Thanks to Colin Watson for the patch.
4431   * dpkg-source now uses a timestamp retrieved from the filesystem when
4432     resetting the timestamp of patched files so that a time skew when using
4433     NFS doesn't introduce any inconsistency. Closes: #613023
4434     Thanks to Jonathan Nieder <jrnieder@gmail.com> for the patch and the
4435     diagnosis.
4436   * dpkg-source will now remove quilt's .pc directory when --unapply-patches
4437     is in use. Closes: #591858
4438   * dpkg-source is now a bit less strict when parsing patches:
4439     - it accepts seeing the same file twice; Closes: #608829
4440     - it doesn't match on the English text "No newline at end of file" as it
4441       might be translated in some cases. Closes: #612465
4442   * Improve parser in Dpkg::Control::Hash to not require an empty line
4443     before the PGP signature. Closes: #617923
4444     Thanks to Roger Leigh for the initial patch.
4445   * Fix a regression in dpkg-divert where using --rename led to a failure when
4446     the rename implies crossing file systems. Thanks to Durk Strooisma for
4447     spotting it.
4448   * Use the correct mtime when installing a file with statoverrides.
4449     Regression introduced in 1.16.0. LP: #739179
4450   * Remove duplicate word in german translation of dpkg(1). Closes: #616096
4451   * Strip repeated non-significant spaces before and after newlines
4452     in Uploaders. Closes: #598922
4453   * Ignore whitespaces after options in headers of changelog entries.
4454     Closes: #605719
4455   * Fix dpkg-source's regression with empty patches (introduced while fixing
4456     #613023). Closes: #619541
4458   [ Jonathan Nieder ]
4459   * Remove support for use of synchronous sync(2), due to its pernicious
4460     side-effects and to ease maintenance.
4461   * Clarify that an up-to-date dpkg only needs to be unpacked for
4462     dpkg-maintscript-helper to work.
4464   [ Steve Langasek ]
4465   * Add new variables to dpkg-architecture, DEB_HOST_MULTIARCH and
4466     DEB_BUILD_MULTIARCH, that return the "ideal" GNU triplet for each
4467     architecture which should be used as the path component for library
4468     installation.
4470   [ Mark Hymers ]
4471   * Add support for Built-Using field. Closes: #619311
4473   [ Updated programs translations ]
4474   * German (Sven Joachim).
4475   * Portuguese (Miguel Figueiredo).
4476   * Spanish (Javier Fernandez-Sanguino).
4477   * Swedish (Peter Krefting).
4479   [ Updated man pages translations ]
4480   * German (Helge Kreutzmann).
4481   * Swedish (Peter Krefting).
4483   [ Updated scripts translations ]
4484   * German (Helge Kreutzmann).
4485   * Swedish (Peter Krefting).
4487   [ Updated dselect translations ]
4488   * Spanish (Javier Fernandez-Sanguino).
4490  -- Guillem Jover <guillem@debian.org>  Fri, 01 Apr 2011 23:56:54 +0200
4492 dpkg (1.15.8.10) unstable; urgency=low
4494   * Do not segfault on “update-alternatives --auto” when the link group only
4495     has alternatives which are dangling symlinks. Closes: #611545
4497  -- Guillem Jover <guillem@debian.org>  Sun, 30 Jan 2011 20:28:27 +0100
4499 dpkg (1.15.8.9) unstable; urgency=low
4501   [ Raphaël Hertzog ]
4502   * Drop Breaks on konqueror to avoid some lenny -> squeeze upgrade
4503     problems. It was only needed to ensure install-info is installed
4504     even for partial upgrades. Closes: #610991
4505   * Do the same for all emacs/jed packages. For jed, the breaks has been
4506     rendered useless as the maintainers dropped the install-info dependencies
4507     anyway.
4509   [ Updated programs translations ]
4510   * Remove space before "…" in several Catalan strings (Jordi Mallach).
4511   * Romanian (Stan Ioan-Eugen).
4513  -- Raphaël Hertzog <hertzog@debian.org>  Mon, 24 Jan 2011 20:24:53 +0100
4515 dpkg (1.15.8.8) unstable; urgency=low
4517   [ Guillem Jover ]
4518   * Truncate the output part file on “dpkg-split -s”. Regression introduced
4519     with the C rewrite.
4521   [ Updated man pages translations ]
4522   * Two typos fixed in French (Christian Perrier, thanks to Julien
4523     Valroff).
4525   [ Raphaël Hertzog ]
4526   * Fix multiple security issues with dpkg-source (CVE-2010-1679):
4527     - Enhance checks to catch maliciously crafted patches which could modify
4528       files outside of the unpacked source package.
4529     - Do not consider a top-level symlink like a directory when
4530       extracting a tarball.
4531     - Exclude .pc while extracting the upstream tarball in 3.0 (quilt)
4532       as patch blindly writes in that directory during unpack (and would
4533       follow any existing symlink).
4535  -- Raphaël Hertzog <hertzog@debian.org>  Thu, 06 Jan 2011 21:04:33 +0100
4537 dpkg (1.15.8.7) unstable; urgency=low
4539   [ Guillem Jover ]
4540   * Defer symlink renames so that there's never a point were a symlink
4541     is broken, this is particularly important for shared libraries.
4542     Closes: #605536
4543   * On Linux use sync_file_range() to initiate asynchronous writeback
4544     of just unpacked files. Suggested by Ted Ts'o <tytso@mit.edu>.
4545     Thanks to Jonathan Nieder <jrnieder@gmail.com>. Closes: #605009
4546   * On non-Linux use posix_fadvise(POSIX_FADV_DONTNEED) to notify the kernel
4547     dpkg does not need the unpacked files any longer, and that it can start
4548     writeback to be able to evict them from the cache at a later point.
4549   * Fix stanza delimiting on -L, -s and -p output. This was making the output
4550     for multiple packages unrealiable to parse. Closes: #606315
4552   [ Updated programs translations ]
4553   * Basque (Iñaki Larrañaga Murgoitio). Closes: #607253
4554   * Catalan (Guillem Jover).
4555   * Czech (Miroslav Kure). Closes: #605099
4556   * Esperanto (Felipe E. F. de Castro). Closes: #607437
4557   * French (Christian Perrier).
4558   * German (Sven Joachim).
4559   * Indonesian (Arief S Fitrianto). Closes: #605248
4560   * Italian (Milo Casagrande). Closes: #607306
4561   * Japanese (Kenshi Muto). Closes: #607259
4562   * Norwegian Bokmål (Hans Fredrik Nordhaug).
4563   * Portuguese (Miguel Figueiredo). Closes: #605506
4564   * Russian (Yuri Kozlov). Closes: #607292
4565   * Simplified Chinese (Aron Xu).
4566   * Slovak (Ivan Masár). Closes: #607302
4567   * Spanish (Javier Fernandez-Sanguino).
4568   * Thai (Theppitak Karoonboonyanan). Closes: #607501
4570   [ Updated man pages translations ]
4571   * French (Christian Perrier).
4572   * German (Helge Kreutzmann).
4573   * Spanish (Omar Campagne).
4575   [ Updated dselect translations ]
4576   * Spanish (Javier Fernandez-Sanguino).
4578   [ Updated scripts translations ]
4579   * German (fix by Sven Joachim).
4580   * Spanish (Javier Fernandez-Sanguino).
4582  -- Guillem Jover <guillem@debian.org>  Mon, 20 Dec 2010 02:26:26 +0100
4584 dpkg (1.15.8.6) unstable; urgency=low
4586   [ Raphaël Hertzog ]
4587   * Ensure debian/source/local-options is always excluded from the source
4588     package even if the user provides customized -i or -I options.
4589     Closes: #597023
4590   * Fix Dpkg::Version's handling of version with a debian revision but an
4591     empty version (e.g. "-0.1"). Thanks to James Vega <jamessan@debian.org>
4592     for the patch. Closes: #597651
4593   * With "3.0 (quilt)" source package, create .pc/.quilt_series with the
4594     correct series file if the source package provides vendor specific patch
4595     sets.
4597   [ Guillem Jover ]
4598   * Disable by default usage of synchronous sync(2), as it causes undesired
4599     I/O on unrelated file systems. Closes: #588339, #595927, #600075
4600   * Add new --force-unsafe-io to disable safe I/O operations on unpack.
4601     Closes: #584254
4603   [ Updated man pages translations ]
4604   * French (Christian Perrier). Including a typo fix and a typographical
4605     change reported by Vincent Danjean. Closes: #601852
4606   * Spanish (Omar Campagne). Closes: #596519
4608   [ Updated programs translations ]
4609   * Basque (Iñaki Larrañaga Murgoitio). Closes: #599923
4610   * Catalan (Jordi Mallach).
4611   * Danish (Ask Hjorth Larsen). Closes: #600240
4612   * German (Sven Joachim). Improved by Holger Wansing.
4613   * Italian (Pietro Battiston). Fix translation of "however". Closes: #602518
4614   * Portuguese (Miguel Figueiredo). Closes: #596168
4615   * Romanian (Andrei Popescu). Closes: #604769
4616   * Russian (Yuri Kozlov). Closes: #595455
4617   * Vietnamese (Clytie Siddall). Closes: #598473
4619   [ Updated scripts translations ]
4620   * Catalan (Jordi Mallach).
4621   * German (Sven Joachim).
4623   [ Updated dselect translations ]
4624   * Catalan (Jordi Mallach).
4625   * German (Sven Joachim).
4627  -- Guillem Jover <guillem@debian.org>  Thu, 25 Nov 2010 07:10:48 +0100
4629 dpkg (1.15.8.5) unstable; urgency=low
4631   [ Guillem Jover ]
4632   * Do not print a warning when parsing status or status log files on
4633     half-installed packages w/o a Description or Maintainer field, as
4634     this happens normally when the package was never installed before.
4635     Closes: #594167
4636   * Improve git format documentation in dpkg-source(1).
4637     Thanks to Joey Hess, based on a patch by Tanguy Ortolo.
4638   * Clarify effect of “dpkg --purge” on homedir files in dpkg(1).
4639     Thanks to The Fungi <fungi@yuggoth.org>. Closes: #593628
4640   * Add gettext plurals infrastructure support.
4641   * Add gettext messages for plural forms. Closes: #594218
4642   * Fix possible but improbable segfault in update-alternatives in case
4643     the master file name contains a format string specifier. Reported by
4644     Sandro Cazzaniga.
4645   * Fix realloc usage on compat scandir() implementation.
4647   [ Raphaël Hertzog ]
4648   * Fix dpkg-genchanges to not split the short description in the middle of a
4649     UTF8 character. Closes: #593442
4650   * Drop -k parameter from the tar call used by dpkg-source to extract
4651     tarballs. Upstream binary files modified by the packager were not properly
4652     installed due to this. Thanks to James Westby for the report.
4653     Closes: #594440
4654   * Make dpkg Breaks: dpkg-dev (<< 1.15.8) so that older versions of dpkg-dev
4655     that did not depend on libdpkg-perl must be upgraded together with dpkg.
4656     Closes: #596417
4658   [ Helge Kreutzmann ]
4659   * Fix encoding of German addendum. Closes: #595643
4661   [ Updated programs translations ]
4662   * Esperanto (Felipe Castro). Closes: #596173
4663   * French (Christian Perrier).
4664   * German (Sven Joachim).
4665   * Indonesian (Arief S Fitrianto). Closes: #596657
4666   * Italian (Milo Casagrande). Closes: #592953, #595615
4667   * Japanese (Kenshi Muto). Closes: #595468
4668   * Korean (Changwoo Ryu). Closes: #595556
4669   * Norwegian Bokmål (Hans Nordhaug). Closes: #595208
4670   * Simplified Chinese (Aron Xu). Closes: #594513
4671   * Slovak (Ivan Masár). Closes: #595968
4672   * Swedish (Peter Krefting).
4673   * Thai (Theppitak Karoonboonyanan). Closes: #594011
4675   [ Updated man pages translations ]
4676   * French (Christian Perrier).
4677   * German (Helge Kreutzmann).
4678   * Swedish (Peter Krefting).
4680   [ Updated scripts translations ]
4681   * French (Christian Perrier). Includes a fix to a specific
4682     message translation that was imprecise. Closes: #596333
4683   * German (Helge Kreutzmann). Improved by Holger Wansing.
4684   * Norwegian Bokmål (Hans Fredrik Nordhaug). Closes: #595299
4685   * Spanish (Omar Campagne).  Closes: #596518
4686   * Swedish (Peter Krefting).
4687   * Russian (Yuri Kozlov). Closes: #595175
4689  -- Guillem Jover <guillem@debian.org>  Tue, 14 Sep 2010 01:26:21 +0200
4691 dpkg (1.15.8.4) unstable; urgency=low
4693   [ Guillem Jover ]
4694   * Fix use after free segfault on update-alternatives --remove-all.
4695     Closes: #591653, #591654
4696   * Always print a message on warning when parsing control files.
4697   * On database parsing only warn on bogus versions previously accepted,
4698     the other instances will keep producing errors, to avoid newly
4699     introduced bogosity. Closes: #590885, #590896, #591692, #591885
4700   * Fix compilation on Solaris and Darwin:
4701     - Link update-alternatives against libintl if libc does not have i18n
4702       support.
4703     - Include <limits.h> for _POSIX_MAX_PATH in update-alternatives.
4704     Thanks to Fabian Groffen <grobian@gentoo.org>.
4706   [ Raphaël Hertzog ]
4707   * Fix make -C man install so that it actually finds the manual pages
4708     to install. Closes: #591588
4709   * When analyzing the ELF format of a binary in dpkg-shlibdeps, fallback on
4710     usual objdump when the cross objdump failed. Closes: #591522
4712   [ Sven Joachim ]
4713   * Ensure removal of leftover backup .dpkg-tmp files after unpacking
4714     failures, when the backup is still a hard link to the original file.
4715     Closes: #591993
4717  -- Guillem Jover <guillem@debian.org>  Fri, 13 Aug 2010 06:02:10 +0200
4719 dpkg (1.15.8.3) unstable; urgency=low
4721   [ Raphaël Hertzog ]
4722   * Fix dpkg-divert test suite to cope with + and other special characters for
4723     regexps in the build directory name. Thanks to Jonathan Nieder for the
4724     patch and to Phil Kern for the report. Closes: #591182
4726   [ Guillem Jover ]
4727   * Fix buffer overflow in dpkg_ar_member_put_header causing it to write the
4728     header to fd 0 (instead of ar_fd) depending on the stack layout, affecting
4729     armel. Thanks to Phil Kern for the analysis and Reinhard Tartler for the
4730     initial patch. Closes: #591312
4732  -- Guillem Jover <guillem@debian.org>  Mon, 02 Aug 2010 10:38:07 +0200
4734 dpkg (1.15.8.2) unstable; urgency=low
4736   * Bump libdpkg-perl Depends on dpkg to 1.15.8, as it will break dpkg
4737     versions before that when installing and removing libdpkg-perl,
4738     because older update-alternatives and dpkg-divert require Dpkg.pm and
4739     Dpkg/Gettext.pm which will disappear due to the Replaces. Closes: #590867
4740     Thanks to Sven Joachim <svenjoac@gmx.de> for the analysis.
4741   * Allow specifying again absolute and relative paths for dpkg-buildpackage
4742     -r option. Closes: #591010
4744  -- Guillem Jover <guillem@debian.org>  Sat, 31 Jul 2010 04:20:01 +0200
4746 dpkg (1.15.8.1) unstable; urgency=low
4748   * Fix off-by-one error in update-alternatives that lead to an infinite loop
4749     while writing the administrative file. Closes: #590854
4751  -- Raphaël Hertzog <hertzog@debian.org>  Thu, 29 Jul 2010 21:18:16 +0200
4753 dpkg (1.15.8) unstable; urgency=low
4755   [ Raphaël Hertzog ]
4756   * Add new commands --before-build and --after-build to dpkg-source
4757     and modify dpkg-buildpackage to call them automatically at the
4758     start and at the end of the process. With "3.0 (quilt)" source packages
4759     this ensures patches are applied even in case of binary-only builds.
4760     Closes: #572526
4761   * Merge non-regression test for Ubuntu's specificities concerning
4762     changelog handling. Closes: #582389
4763   * Fix some copy-paste mistakes in dpkg-architecture(1). Thanks to Ian Fleming
4764     <iflema@yahoo.com.au> for the patch and Colin Watson for forwarding out of
4765     Launchpad. Closes: #582404 LP: #564308
4766   * Clarify description of dpkg --configure in dpkg(1). Thanks to Colin Watson
4767     for the patch and to Robert Persson for the report.
4768     Closes: #582406 LP: #77287
4769   * Fix the non-regression test lib/dpkg/test/t-ar.c by not overflowing the
4770     size of ar_name. Thanks to Colin Watson for the report, analysis and patch.
4771     Closes: #582401
4772   * Modify Dpkg::Shlibs::Objdump to use the cross objdump binary when cross
4773     compiling. Thanks to Loïc Minier for the initial patch. Closes: #578365
4774   * Make dpkg-maintscript-helper more robust when required parameters are
4775     missing. Closes: #582814
4776   * Clarify that dpkg-maintscript-helper rm_conffile needs the last version of
4777     the package that did not remove the obsolete conffile if this was not
4778     implemented at the time the file became obsolete. Closes: #582893
4779   * Enhance dpkg-maintscript-helper rm_conffile and mv_conffile to work
4780     properly when <lastversion> is not given (or is empty). Closes: #582819
4781   * Small fix in dpkg-gensymbols' handling of tags. Closes: #583656
4782     Thanks to Michael Tautschnig <mt@debian.org> for the report and the fix.
4783   * update-alternatives has been rewritten in C, the only feature change
4784     should be that it uses its own logfile /var/log/alternatives.log (rotated
4785     like dpkg.log).
4786   * Implement new --unapply-patches option for dpkg-source with source formats
4787     2.0 and 3.0 (quilt) that unapplies the patches after a successful build.
4788     This option can be put in debian/source/local-options in the package VCS
4789     repository for instance.
4790   * Implement new --abort-on-upstream-changes option for dpkg-source with
4791     source formats 1.0, 2.0 and 3.0 (quilt). It aborts every time that you try
4792     to build a source package which contains (unmanaged) changes to the
4793     upstream source code. Closes: #579012
4794   * dpkg-source now captures the output of patch and prints it on error so
4795     that the user can better diagnose what went wrong. Closes: #575304
4796   * Fix Dpkg::Changelog to cope properly with an entry of version "0".
4797     Add non-regression test for this. Closes: #587382
4798   * Add --export command to dpkg-buildflags to be used in shell with eval.
4799   * Modify source format "3.0 (git)" to use git bundles. Thanks to Joey Hess
4800     for the patch.
4801     The usage of git bundle avoids distributing cruft. Closes: #477954
4802     It's no longer needed to tell which branch contains the debian packaging,
4803     it uses automatically the one that was used at build-time. Closes: #534637
4804   * Pass --no-name option to gzip to avoid encoding the timestamp in the file
4805     so that the result is more predictable. Closes: #587724
4806     Also pass --rsyncable to make source packages more rsync friendly.
4807   * Replace dpkg-source's tar ignore pattern "*~" with "*/*~" to avoid
4808     matching on the top level directory. Closes: #588265
4809   * In source formats "2.0" and "3.0 (quilt)", make sure to remove the
4810     upstream-provided debian directory before copying the debian-provided
4811     version of that directory in place. Closes: #590297
4813   [ Guillem Jover ]
4814   * Require gettext 0.18:
4815     - Remove embedded gettext files from the repository, now properly
4816       installed by autopoint for all po/ directories.
4817     - Add versioned Build-Depends.
4818   * Fix variable usage after delete in dselect.
4819   * Change default configure admindir to LOCALSTATEDIR/lib/dpkg from
4820     LOCALSTATEDIR/dpkg, so that we can use a correct --localstatedir=/var.
4821   * Add two new dpkg options --path-exclude and --path-include for filtering
4822     files on package installation. This allows embedded systems to skip
4823     /usr/share/doc, manpages, etc. Based on work from Tollef Fog Heen and
4824     Martin Pitt, thanks! Closes: #68788, #68861, #497304, #525567, #583902
4825   * Remove obsolete internal status aliases “postinst-failed” for
4826     stat_halfconfigured and “removal-failed” for stat_halfinstalled.
4827   * Check version syntax when parsing it from libdpkg based programs.
4828     Closes: #574704
4829   * Rewrite mksplit in C, and merge it into dpkg-split.
4830   * Rewrite dpkg-divert in C.
4831   * Use linux-any wildcard for libselinux1-dev Build-Depends instead of
4832     using a list of negated architectures.
4833   * Use Breaks instead of Conflicts in dpkg, dpkg-dev and libdpkg-perl binary
4834     packages.
4835   * Move Dpkg.pm and Dpkg/Gettext.pm from dpkg to libdpkg-perl.
4836   * Bump Standards-Version to 3.9.1.
4837   * Detect when another process has locked the database, and mention that
4838     problematic dpkg --audit results might be due to ongoing operations.
4839     Closes: #80252
4840   * Add new dpkg --force-confask option that forces a conffile prompt when
4841     the conffile from the new package does not differ from the previous one.
4842     Thanks to Henning Makholm <henning@makholm.net>. Closes: #102609
4843   * On dpkg-divert --rename, check if the source file exists, and disable
4844     renaming if it does not. Closes: #550252
4845     As a side effect, this avoids useless errors when the destination
4846     directory is not existent or writable. Closes: #581544
4847   * Properly compute the longest package description from all to be displayed
4848     on “dpkg-query --list”, so that it does not get incorrectly trimmed.
4849   * Consistently use earlier/later instead of smaller/bigger when describing
4850     comparison relationships. Closes: #587641
4851   * Stop exporting DPKG_LIBDIR to maintainer scripts, no need for it anymore.
4852   * Assign correct SE Linux label on non-regular files. Based on a patch by
4853     Russell Coker <russell@coker.com.au>. Closes: #587949
4854   * Add -F option to dpkg-buildpackage to be able to explicitly specify a
4855     normal full build and combine it with -nc. Closes: #547993
4856   * Add missing mentions of the Breaks field alongside the other fields
4857     sharing the same syntax in deb-control(5).
4858     Thanks to Osamu Aoki <osamu@debian.org>. Closes: #590472
4860   [ Updated programs translations ]
4861   * Catalan (Guillem Jover).
4862   * German (Sven Joachim).
4863   * Russian (Yuri Kozlov). Closes: #579149
4864   * Swedish (Peter Krefting).
4866   [ Updated man pages translations ]
4867   * German (Helge Kreutzmann).
4868   * Russian (Yuri Kozlov). Closes: #579149
4869   * Spanish (Omar Campagne).
4870   * Swedish (Peter Krefting).
4872   [ New scripts translation ]
4873   * Spanish (Omar Campagne).
4875   [ Updated scripts translations ]
4876   * French (Christian Perrier).
4877   * German (Helge Kreutzmann). Improved by Holger Wansing.
4878   * Russian (Yuri Kozlov). Closes: #579149
4879   * Swedish (Peter Krefting).
4881  -- Guillem Jover <guillem@debian.org>  Thu, 29 Jul 2010 09:37:35 +0200
4883 dpkg (1.15.7.2) unstable; urgency=low
4885   [ Raphaël Hertzog ]
4886   * Update dpkg-buildflags to respect $XDG_CONFIG_HOME and to use
4887     $XDG_CONFIG_HOME/dpkg/buildflags.conf by default.
4888   * Update deb-substvars(5) to codify how variables containing multiple
4889     lines must be managed.
4890   * Fix boolean evaluation of Dpkg::Version so that version 0 evaluates to
4891     false and dpkg-shlibdeps can strip the minimal version specification.
4892     Closes: #579724
4893     Document this behaviour in the API and add non-regression test to ensure
4894     it's kept.
4895   * Let dpkg-buildflags error out when a required parameter is missing.
4896     Closes: #579722
4897   * Add Bug-Ubuntu field in DEP-3 template provided in the automatic header
4898     of patches in 3.0 (quilt) source packages. Thanks to Benjamin Drung
4899     <bdrung@ubuntu.com> for the patch. Closes: #578002
4900   * Update deb-override(5) by removing references to usage of sections
4901     to place the packages on the mirrors and by indicating that the Debian
4902     policy offers a list of allowed values for section and priority.
4903     Closes: #575410
4904   * Update reference to triggers.txt.gz in dpkg-trigger(1) and deb-triggers(5)
4905     to match the new location. Closes: #580774
4906   * Drop mention of PKG_CONFIG_LIBDIR in dpkg-buildpackage(1), the feature has
4907     been removed in 1.15.6.
4908   * Rename /usr/lib/dpkg/maintscript-helper into
4909     /usr/bin/dpkg-maintscript-helper, it is a public interface even if working
4910     around known limitations.
4911   * Add "supports" command to dpkg-maintscript-helper to ensure the wanted
4912     command is supported before calling it.
4914   [ Guillem Jover ]
4915   * Add powerpcspe support to ostable and triplettable.
4916     Thanks to Sebastian Andrzej Siewior <sebastian@breakpoint.cc> and
4917     Kyle Moffett <Kyle.D.Moffett@boeing.com>. Closes: #568123, #575158
4918   * Fix dpkg --root by properly stripping again the root directory from the
4919     path of the maintainer script to execute. Closes: #580984
4920   * On Linux use sync() instead of an fsync() per file on deferred extraction,
4921     to workaround performance degradation on ext4. Closes: #578635
4923   [ Gerfried Fuchs ]
4924   * Fix syntax error in dpkg-name. Closes: #581315
4926  -- Guillem Jover <guillem@debian.org>  Wed, 19 May 2010 07:57:14 +0200
4928 dpkg (1.15.7.1) unstable; urgency=low
4930   * Fix dpkg-source -b (without -i) for source packages 1.0. Closes: #578693
4931     It was erroneously ignoring all changes because the ignore regex was
4932     wrong (due to the change to ignore debian/source/local-options).
4933   * Add missing call to textdomain() in dpkg-mergechangelogs to make
4934     translations work.
4936  -- Raphaël Hertzog <hertzog@debian.org>  Thu, 22 Apr 2010 08:05:20 +0200
4938 dpkg (1.15.7) unstable; urgency=low
4940   [ Raphaël Hertzog ]
4941   * Clarify the plan concerning dpkg-source, debian/source/format and
4942     the default source format in dpkg-source(1). Add a warning
4943     in dpkg-source to invite people to always create debian/source/format.
4944     We deprecate the fallback to "1.0" (it's there for backwards compatibility
4945     only) and debian/source/format is going to be mandatory at some point in
4946     the future. Closes: #553928
4947   * Add .gitattributes to list of files ignored by dpkg-source.
4948   * Document most common warnings and errors of dpkg-source in its manual
4949     page.
4950   * Let dpkg-source read options from debian/source/local-options as well but
4951     do not include that file in the generated source package.
4952   * Improve explanation of --all option in dpkg-parsechangelog(1). Thanks to
4953     Jari Aalto. Closes: #575706
4954   * Fix dpkg to not lose package metadata on filesystems where readdir()
4955     returns new files added after the opendir() call, btrfs in particular
4956     triggered the problematic behaviour. Closes: #575891
4957   * Tighten the regex used by dpkg-source to match the component name of
4958     supplementary tarballs so that underscore (_) are not allowed as it was
4959     supposed to be.
4960   * Introduce a new script called dpkg-buildflags: its purpose is to retrieve
4961     compilation flags and it should be used within debian/rules to pass
4962     the right compilation flags to the build process. dpkg-buildpackage still
4963     exports them to not break packages currently relying on them but packages
4964     should now start using dpkg-buildflags instead. Closes: #560070
4965   * For Ubuntu set default value of LDFLAGS to -Wl,-Bsymbolic-functions.
4966   * Cleanup some old Conflicts/Replaces, thanks to Helge Kreutzmann.
4967   * Modify dselect to treat all unknown package as known and marked for purge.
4968     This is a temporary work-around so that dselect doesn't try to reinstall
4969     packages of priority > standard that were removed or not installed. Thanks
4970     to Robert Luberda for the patch. Closes: #559519, #556889
4971   * dpkg now exports DPKG_MAINTSCRIPT_NAME to maintainer scripts with the
4972     type of maintainer script currently running (preinst, postinst, prerm,
4973     postrm). Closes: #546577
4974   * dpkg now exports DPKG_LIBDIR to maintainer scripts pointing to the
4975     private directory containing internal programs like the upcoming
4976     maintscript-helper.
4977   * Add $DPKG_LIBDIR/maintscript-helper program that can be used in
4978     maintainer scripts to perform common operations working around
4979     current dpkg limitations: first version supports removing obsolete
4980     conffiles and renaming conffiles. Closes: #514316
4981   * Fix "dpkg-scansources -e", it was calling a non-existing function.
4982     Closes: #578162
4983   * Add new script dpkg-mergechangelogs to do 3-way merges of Debian
4984     changelogs. Add libalgorithm-merge-perl to Recommends for the
4985     benefit of this script.
4987   [ Colin Watson ]
4988   * Modern tar files typically use NormalFile1 rather than NormalFile0 for
4989     file objects. A typo meant that the former never triggered rename
4990     deferral. Closes: #577756
4991   * Use the new list of files on rename deferral instead of old one, so that
4992     newly added files get installed.
4994   [ Guillem Jover ]
4995   * Report deferred trigger errors on status-fd. Closes: #574599
4996     Thanks to Michael Vogt <michael.vogt@ubuntu.com>.
4997   * When creating hard links to normal files on extraction use the .dpkg-new
4998     filename for source as the file is not yet in place due to the rename
4999     deferral. Thanks to Colin Watson for the initial patch.
5000   * Do not output the Package-Type field on udeb.
5001   * Fix versioned Replaces to not produce file overwrite errors on downgrades.
5002     Closes: #568566
5003   * Fix installation of replaced and replacing packages in reverse order
5004     (first the replacing then the replaced) for which the replaced package
5005     is supposed to get disappeared, to disappear the correct package and not
5006     lose track of the ownership of the replaced files.
5008   [ Updated programs translations ]
5009   * German (Sven Joachim).
5011   [ Updated dselect translations ]
5012   * German (Sven Joachim).
5014   [ Updated man pages translations ]
5015   * German (Helge Kreutzmann).
5017   [ Updated scripts translations ]
5018   * German (Helge Kreutzmann).
5020  -- Guillem Jover <guillem@debian.org>  Wed, 21 Apr 2010 04:05:55 +0200
5022 dpkg (1.15.6.1) experimental; urgency=low
5024   [ Guillem Jover ]
5025   * Fix two memory leaks introduced in 1.15.6.
5026   * Always use C99 variadic macros, as the build requires them anyway, we
5027     avoid exposing the configure variable HAVE_C99 on installed headers.
5028   * Use __attribute__ keyword depending on compiler support, we avoid
5029     exposing the configure variable HAVE_C_ATTRIBUTE on installed headers.
5030   * Do not allow a --retry schedule in start-stop-daemon where forever is
5031     the last item, as it needs something to repeat over. Closes: #570938
5032   * Show dselect dependency/conflicts resolution screen again, by switching
5033     the code to use STL's min() and max() instead of preprocessor macros, to
5034     avoid multiple evaluation of arguments. Regression introduced in 1.15.6.
5035     Based on a patch by Robert Luberda <robert@debian.org>. Closes: #574816
5036   * Defer the fsync and rename for normal files in tar extraction so that
5037     it's done in one pass afterwards, to avoid massive I/O degradation due to
5038     the serialization from each write + fsync. This restores extraction times
5039     to numbers closer to the ones before the fsync patch introduced in 1.15.6.
5041   [ Raphaël Hertzog ]
5042   * Accept source packages without "Format" field for compatibility with very
5043     old source packages. Thanks to Colin Watson for the report and the patch.
5044     Closes: #574097
5046   [ Updated programs translations ]
5047   * French (Christian Perrier).
5048   * Swedish (Peter Krefting).
5050   [ Updated scripts translations ]
5051   * Swedish (Peter Krefting).
5053  -- Guillem Jover <guillem@debian.org>  Wed, 24 Mar 2010 13:56:28 +0100
5055 dpkg (1.15.6) experimental; urgency=low
5057   [ Raphaël Hertzog ]
5058   * debian/control: Add the accent on my first name.
5059   * Perl API cleanup:
5060     - rename Dpkg::Deps dump() methods into output([$fh]), overload string
5061       representation ("$dep") to provide the result of $dep->output()
5062     - prefix public functions in Dpkg::Deps with deps_ and export them
5063       by default
5064     - rename Dpkg::Source::Compressor in Dpkg::Compression::Process
5065     - rename Dpkg::Source::CompressedFile in Dpkg::Compression::FileHandle
5066       and completely redesign its API
5067     - update Dpkg::Compression's API to use compression_* functions
5068       instead of granting direct access to variables, integrate
5069       there management of default compression
5070     - introduce Dpkg::Interface::Storable and update many modules
5071       to make use of it
5072     - update Dpkg::BuildOptions to provide an object-oriented interface
5073     - update Dpkg::Checksums to provide an object-oriented interface
5074   * Drop debian-maintainers from Suggests since it's obsolete, the
5075     corresponding keyring is in debian-keyring.
5076   * Merge support of symbol patterns in dpkg-gensymbols. Thanks to
5077     Modestas Vainius for his work (see further for more details).
5078   * Accept filename with spaces and colon in the output of objdump.
5079     Required so that dpkg-shlibdeps support such files properly.
5080     Thanks to Raphaël Geissert for the patch. Closes: #565712
5081   * When unpacking a "3.0 (quilt)" source package, tell quilt where
5082     patches are (to be) stored. Requires quilt >= 0.48-5 to work.
5083     Closes: #557619
5084   * Fix update-alternatives to not try to reinstall an unknown alternative
5085     when the link group is broken, instead switch to the best choice in
5086     automatic mode. Closes: #566406
5087   * Don't return duplicate bug numbers in Launchpad-Bugs-Fixed:.
5088     Thanks to Brian Murray <brian@ubuntu.com> for the report
5089     and the patch. Closes: #569618
5090   * Add $VERSION numbers to all perl modules. Closes: #465256
5091     1.00 and higher means that the API should be stable
5092   * While parsing diff's output, accept any sentence that contains the word
5093     differ (as specified by POSIX) to identify that binary files could not be
5094     compared. Closes: #570008
5095   * dpkg-gencontrol does no longer accept arch-specific dependencies in
5096     arch: all packages. Closes: #560071
5097   * dpkg-gencontrol no longer warns if a substitution variable provided by -V
5098     is not used (the warning is meant to catch unused substitutions coming
5099     from the file, those are package specific with debhelper). Closes: #557133
5100   * dpkg-gencontrol now indicates which package is concerned by the substvars
5101     warning that it displays. Closes: #566837
5102   * dpkg-buildpackage now supports options --source-option=<opt> and
5103     --changes-option=<opt> to forward arbitrary options to dpkg-source and
5104     dpkg-genchanges respectively. Closes: #566230
5105   * The -T option of dpkg-{source,gencontrol,genchanges} can now be used
5106     multiple times to read substitution variables from multiple files.
5107     Closes: #363323
5108   * dpkg-source now supports an option --create-empty-orig in formats
5109     "2.0" and "3.0 (quilt)" to auto-create the main original tarball when
5110     there are supplementary tarballs. This makes it easier to bundle
5111     multiple software together. Closes: #554488
5112   * dpkg-source supports long option names --diff-ignore and --tar-ignore for
5113     -i and -I. A new option --extend-diff-ignore is introduced. Those options
5114     can thus now be used in debian/source/options.
5115   * Generate manual pages for perl modules.
5116   * Introduce the libdpkg-perl package and clarify its status in README.api.
5117   * Update Standards-Version to 3.8.4 (no changes needed).
5118   * Drop unused lintian override for arch-dep-package-has-big-usr-share on
5119     dselect.
5120   * The rewritten Dpkg::Checksums deals properly with filenames with
5121     spaces. Closes: #572030
5122   * dpkg-source does no longer fallback to other source formats if the
5123     requested one is not usable. Closes: #557459
5124   * Modify dpkg-source to error out when it would apply patches containing
5125     insecure paths (with "/../") and also error out when it would apply a
5126     patch through a symlink. Those checks are required as patch will happily
5127     modify files outside of the target directory and unpacking a source package
5128     should not be able to have any side-effect outside of the target
5129     directory. Fixes CVE-2010-0396.
5130   * Also error out when the quilt series contains a path with "/../" as this
5131     can cause patch to create files outside of the source package due
5132     to the -B .pc/$path option that it gets.
5134   [ Guillem Jover ]
5135   * Handle argument parsing in dpkg-checkbuilddeps and dpkg-scanpackages
5136     in a way consistent with the rest of the tools.
5137   * Recognize --help in addition to -h in dpkg-checkbuilddeps.
5138   * Add a --version option to dpkg-checkbuilddeps.
5139   * Improve and mark more messages in writedb() to make translators lifes
5140     easier. Closes: #408525
5141   * Improve update-alternatives --display output to use two leading spaces
5142     for current link and slave information. Use single quotes for both “best”
5143     and the alternative it's pointing to. Closes: #549167
5144   * Refer to “half configured” instead of “failed config” in «dpkg-query -l»
5145     header and dselect package status printing for consistency.
5146   * Make “dpkg-statoverride --quiet” actually do something, and quiesce
5147     most of the innocuous warning messages. Closes: #403211
5148   * Make “dpkg-statoverride --update --add” fail if it cannot update the
5149     mode and owner of the file. This would fail later on when dpkg itself
5150     applies the overrides, so better to signal this earlier.
5151   * Add sparc64 to cputable. Thanks to Aurelien Jarno <aurel32@debian.org>.
5152     Closes: #560010
5153   * Do not allow diverting a file to itself, which makes the file to get
5154     removed. Closes: #312206
5155   * Make the check for duplicate fields in a stanza in libdpkg actually work,
5156     which now makes it fatal, as was intended originally. This should not
5157     cause problems for anything using dpkg-dev to build packages as those
5158     are already fatal on that case.
5159   * Add new deb-split(5) man page.
5160   * Fix misspellings of “explicitly” all over the place.
5161   * Normalize ar member names when reading (removing trailing spaces and
5162     slash), this allows deb-split packages be created with GNU ar.
5163   * Validate compression level on dpkg-deb argument parsing.
5164   * Fix error handling, clean up and refactor compression code.
5165     Thanks to Jonathan Nieder for several of the patches.
5166   * Do not print unambiguous epoch on dpkg file overwrite error.
5167   * Rename Dpkg::IPC::fork_and_exec() to Dpkg::IPC::spawn().
5168   * Change dpkg-dev to Depend on perl instead of perl5 and perl-modules.
5169   * Fix small memory leaks related to scandir() in dpkg-deb and libdpkg.
5170   * Fix dpkg-query and dpkg-trigger to actually print a version on --version.
5171   * Always spawn a new shell on conffile prompt, instead of supporting
5172     self backgrounding, remove DPKG_NO_TSTP environment variable support.
5173     Closes: #38334
5174   * Set DPKG_SHELL_REASON, DPKG_CONFFILE_OLD and DPKG_CONFFILE_NEW environment
5175     variables when spawning a shell for conffile examination. Closes: #60329
5176     Thanks to Daniel Martin <Daniel.Martin@jhu.edu> for the idea.
5177   * Add support for disabling update-alternatives at configure time using
5178     --without-update-alternatives.
5179   * Add support for disabling install-info at configure time using
5180     --without-install-info.
5181   * Update debian/copyright.
5182   * Use Debian instead of ‘Debian GNU/Linux’ when referring to the
5183     distribution.
5184   * On dpkg --no-act with --install, --unpack or --record-avail, and
5185     dpkg-deb --info or --field use mkdtemp() to create a temporary directory
5186     instead of insecure tempnam() or tmpnam() functions.
5187   * Remove --license and --licence options from tools.
5188   * Securely remove newly installed files when rolling-back a failed unpack.
5189   * Change default lzma compression level from 9 to 6.
5190     Thanks to Jonathan Nieder for the initial patch.
5191   * Add support for xz compressed data.tar member of binary packages. Add
5192     xz-utils to dpkg's Pre-Depends. Closes: #542160
5193     Thanks to Jonathan Nieder for the initial patch.
5194   * Use xz command to handle lzma compressed files in dpkg and dpkg-dev.
5195     This removes the lzma package from both dpkg and dpkg-dev dependencies.
5196   * Do not set PKG_CONFIG_LIBDIR in dpkg-buildpackage when cross-building.
5197     The proper solution to this is to let the build system choose the
5198     appropriate pkg-config binary for the build or host system in the same
5199     way pkg.m4 is handling it now. Closes: #551118
5200   * Dynamically link against all external libraries. This includes libbz2
5201     and zlib for dpkg-deb and libselinux for dpkg on GNU/Linux.
5202   * Mark the libdpkg.a API as volatile and require any possible users to set
5203     LIBDPKG_VOLATILE_API to acknowledge that fact.
5204   * Add a new libdpkg-dev package with the headers and the static library,
5205     although its API should be considered volatile.
5206   * Reorganize the doc contents that goes into each package:
5207     - README.multicd only in dselect.
5208     - README.api only in development packages, dpkg-dev and libdpkg-dev.
5209     - triggers.txt only in dpkg-dev.
5210   * Move source.lintian-overrides to debian/source/lintian-overrides.
5211   * Switch SE Linux support to explicitly set path context. This fixes the
5212     mislabeling of files under <admindir> on conffile extraction or on unpack
5213     errors, due to improper default context restoration. Closes: #498438
5214   * Use FIEMAP when available (on Linux based systems) to sort the .list
5215     files loading order. With a cold cache it improves up to a 70%.
5216     Thanks to Morten Hustveit <morten@debian.org>.
5217   * When FIEMAP is not available use posix_fadvise() to start preloading the
5218     .list files before loading them. With a cold cache it improves up to 40%.
5219     Thanks to Stefan Fritsch <sf@sfritsch.de>. Closes: #557560
5220   * Call fsync(2) after writing files on disk, to get the atomicity
5221     guarantees when doing rename(2). Based on a patch by
5222     Jean-Baptiste Lallement <jeanbaptiste.lallement@gmail.com>.
5223     Closes: #430958
5224   * Call fsync(2) on database directories after creating, renaming or
5225     unlinking files, to guarantee the new file entry is correctly listed
5226     in the directory. Base on a patch by
5227     Jean-Baptiste Lallement <jeanbaptiste.lallement@gmail.com>.
5228   * Document in the man page the effects of setting TMPDIR for dpkg and
5229     dpkg-deb, HOME for dselect and dpkg and PAGER for dpkg. Closes: #572836
5230   * Document the exit codes for dpkg-query. Closes: #571798
5231   * Document “dpkg-query -l” abbreviated state information in the man page.
5232     Based on a patch by Marc-Jano Knopp <pub_br_debian.org@marc-jano.de>.
5233     Closes: #383869
5234   * Honour LINGUAS environment variable when installing translated man pages.
5235   * Allow disabling at configure time Unicode ncurses support for dselect.
5236     Based on a patch by Yuri Vasilevski <yvasilev@gentoo.org>.
5238   [ Modestas Vainius ]
5239   * Implement symbol patterns (Closes: #563752). From now on, it is possible to
5240     match multiple symbols with a single entry in the symbol file template.
5241     While the concept is not new (wildcards also match multiple symbols),
5242     patterns cover much more ground and are a lot more flexible. Together with
5243     the framework, 3 basic pattern types are supported:
5244     - c++ - matching C++ symbols by their demangled name (as emitted by
5245       c++filt);
5246     - symver - matching by symbol version. It replaces the wildcards feature
5247       which is still supported for backwards compatibility but is reimplemented
5248       on top of the new framework;
5249     - regex - matching symbol names with perl regular expression.
5250     Basic patterns may be combined where it makes sense.
5251   * As a positive side effect of the new symbol patterns implementation,
5252     patterns are now treated like normal symbols whenever possible, e.g. a
5253     pattern is MISSING if it does not match anything. As a result,
5254     dpkg-gensymbols is now able to detect NEW/MISSING symbols when patterns are
5255     present in the symbol file (Closes: #541464). Please note, however, that
5256     there is no way to detect symbol changes in the pattern match sets.
5257   * Add source version to the dpkg-gensymbols diff label, reformat it according
5258     to the rules of dpkg-name.
5259   * Add -a<arch> option to dpkg-gensymbols.
5260   * Add -q option to dpkg-gensymbols. -c0 will never fail but still generate a
5261     diff. Use -c0 -q to keep dpkg-gensymbols completely quiet as before
5262     (Closes: #568228).
5264   [ Jonathan Nieder ]
5265   * Fix a file handle leak in “dpkg-deb --info”. Thanks to Raphael Geissert
5266     for the report and patch.
5268   [ Helge Kreutzmann ]
5269   * Add dpkg-gensymbols.1 to the translatable man page set.
5271   [ Updated programs translations ]
5272   * Catalan (Guillem Jover).
5273   * French (Christian PERRIER).
5274   * German (Sven Joachim).
5275   * Italian 'Milo Casagrande). Closes: #567531
5276   * Simplified Chinese (Aron Xua). Closes: #558794
5277   * Slovak (Ivan Masár). Closes: #559269
5278   * Swedish (Peter Krefting).
5280   [ Updated dselect translations ]
5281   * Catalan (Guillem Jover).
5282   * French (Christian Perrier).
5283   * German (Sven Joachim).
5284   * Spanish (Javier Fernández-Sanguino). Closes: #572861
5285   * Swedish (Peter Krefting).
5287   [ Updated man pages translations ]
5288   * French (Christian Perrier): correcting inconsistencies for the translation
5289     of "original" here and there. Thanks to Julien Valroff for pointing this.
5290   * German (Helge Kreutzmann).
5291   * Swedish (Peter Krefting).
5293   [ Updated scripts translations ]
5294   * Catalan (Guillem Jover).
5295   * French (Christian PERRIER).
5296   * German (Helge Kreutzmann).
5297   * Swedish (Peter Krefting).
5299  -- Guillem Jover <guillem@debian.org>  Fri, 12 Mar 2010 00:15:31 +0100
5301 dpkg (1.15.5.6) unstable; urgency=low
5303   * dpkg-source: with format "3.0 (quilt)" ensure quilt's .pc directory is
5304     created before trying to register a new patch in .pc/applied-patches.
5305     Thanks to Tommi Vainikainen <thv+debian@iki.fi> for the report and the
5306     patch. Closes: #561237
5307   * Fix dpkg-buildpackage to set "parallel=" in DEB_BUILD_OPTIONS instead of
5308     the invalid "parallel=-1" when option "-j" is given. Closes: #562038
5309   * Clarify how dpkg-source --print-format works and display messages on
5310     STDERR when the requested format is discarded. Closes: #560391
5311   * Add ${misc:Depends} in all Depends fields.
5313  -- Raphaël Hertzog <hertzog@debian.org>  Fri, 08 Jan 2010 17:57:43 +0100
5315 dpkg (1.15.5.5) unstable; urgency=low
5317   * Allow again new lines in dpkg-source and dpkg-genchanges on substvar and
5318     maintainer arguments.
5320  -- Guillem Jover <guillem@debian.org>  Tue, 22 Dec 2009 09:49:49 +0100
5322 dpkg (1.15.5.4) unstable; urgency=low
5324   * Fix Dpkg::Index::get() and remove(). Thanks to Roderich Schupp
5325     <roderich.schupp@googlemail.com> for the patch. Closes: #558595
5326   * Modify implementation of "3.0 (quilt)" source format to not be
5327     behave differently depending on whether quilt is installed or not.
5328     The option --without-quilt is thus gone and dpkg-source creates
5329     and relies on the .pc directory to know whether patches are applied
5330     or not. Closes: #557667
5331   * Add new dpkg-source option --single-debian-patch supported by the source
5332     format "3.0 (quilt)" so that it behaves more like 1.0 and its single diff
5333     that is constantly updated with all upstream changes. Useful if the
5334     workflow is VCS based and can't generate a full patch set.
5335   * dpkg-source now uses debian/source/patch-header as header of the automatic
5336     Debian patch in format "3.0 (quilt)".
5337   * Fix Debian changelog parser so that the trailer line is again checked.
5339  -- Raphaël Hertzog <hertzog@debian.org>  Mon, 07 Dec 2009 09:24:31 +0100
5341 dpkg (1.15.5.3) unstable; urgency=low
5343   [ Raphaël Hertzog ]
5344   * Avoid usage of IO::String in dpkg-scanpackages, rely on Dpkg::IPC
5345     instead to directly get a pipe file descriptor. Closes: #557013
5346   * Put "3.0 (quilt)" in the default list of formats tried by dpkg-source
5347     after "1.0" and before "3.0 (native)".
5348   * Let dpkg-source fail if several upstream orig.tar files are available
5349     (using different compression scheme) since we don't know which one
5350     to use.
5351   * Add missing "use Dpkg::Gettext" in Dpkg::Changelog::Entry::Debian.
5352     Closes: #557668
5353   * When building "3.0 (quilt)" source packages, use QUILT_PATCH_OPTS="-t -F 0
5354     -N -u -V never -g0" so that quilt is as strict as dpkg-source's internal
5355     implementation of quilt. Closes: #557664, #558233
5356   * Before accepting to build a 3.0 (quilt) source packages, ensure that
5357     debian/patches is a directory (or non-existing) and that
5358     debian/patches/series is a file (or non-existing). Closes: #557618
5359   * Dpkg::IPC::fork_and_exec() now includes the changed environment
5360     variables in the default error message displayed when the sub-process
5361     fails.
5363   [ Guillem Jover ]
5364   * Verify that the alternative used in update-alternatives --set has been
5365     registered instead of failing with an undefined value in the slave
5366     method. Closes: #554136
5367   * Strip leading spaces in the first line of a field's value in
5368     Dpkg::Control::Hash. Closes: #557547
5370  -- Guillem Jover <guillem@debian.org>  Fri, 27 Nov 2009 19:23:36 +0100
5372 dpkg (1.15.5.2) unstable; urgency=low
5374   * Change Dpkg::Version API to accept invalid versions by default and add
5375     is_valid() method. The boolean evaluation of a version object returns
5376     true if the version is valid, false otherwise.
5377   * Update dpkg-shlibdeps to always use Dpkg::Version now that it can
5378     contain the empty version string. Closes: #556786
5379   * Keep compatibility with perl 5.8 by avoiding the _ prototype.
5381  -- Raphaël Hertzog <hertzog@debian.org>  Wed, 18 Nov 2009 11:54:50 +0100
5383 dpkg (1.15.5.1) unstable; urgency=low
5385   * Fix build failures due to off_t type mismatch caused by not including
5386     <config.h> first on the unit tests. Suggested by Pierre Habouzit and
5387     Julien Cristau, thanks!
5389  -- Guillem Jover <guillem@debian.org>  Tue, 17 Nov 2009 16:42:00 +0100
5391 dpkg (1.15.5) unstable; urgency=low
5393   [ Guillem Jover ]
5394   * Remove obsolete conffiles on purge. Closes: #421367, #453005, #454628
5395   * Update list of binaries dpkg checks on the PATH.
5396     - Remove install-info, now a wrapper that will disappear soonish.
5397     - Add programs used by dpkg itself: sh, rm, find, tar and dpkg-deb.
5398   * Check and warn on duplicate conffiles in dpkg-deb. Closes: #131633
5399   * Make the upstream build system silent by default with automake 1.11 or
5400     newer, and always verbose when building the Debian packages.
5401   * Fix small leak when parsing ‘--ignore-depends’ option values.
5402   * Define compatibility WCOREDUMP only if the system does not have it.
5403   * When start-stop-daemon fails to set the io scheduling warn instead of
5404     finishing fatally. Closes: #553580
5405   * Update md5 file paths in debian/copyright.
5406     Thanks to Jonathan Nieder <jrnieder@gmail.com>.
5407   * On ‘dpkg-trigger --help’ print the default admindir instead of the one
5408     passed on the command line.
5409   * Abort on configure if the required C99 extensions are not supported.
5410   * Add C coding style document.
5411   * Make dpkg as strict as dpkg-statoverride on input when validating the
5412     parsed data from the statdb.
5413   * Rewrite dpkg-statoverride in C.
5414   * Use C99 snprintf function family semantics to avoid having to call them
5415     in a loop to grow the varbuf buffer. This should reduce memory usage and
5416     be slightly faster on varbufprintf calls.
5417   * Use the size from stat to allocate the buffers for readlink, instead of
5418     indefinitely calling readlink and growing the buffer. This should reduce
5419     memory usage when handling lots of symlinks, and be slightly faster.
5420   * Rework varbuf API to avoid increasing buffers indefinitely when adding
5421     content to them, regardless of space being already available.
5422   * Fix build macros to allow start-stop-daemon to use TIOCNOTTY.
5423   * Generate the autoconf version from git to make it easier to see when a
5424     snapshot version is being used.
5425   * Add infrastructure for doxygen, for now not installed anywhere.
5426   * Allow overriding the pkg-config path to ease cross-compilation.
5427     Suggested by Tollef Fog Heen <tfheen@err.no>.
5428   * Fix spelling errors in the Catalan translation. Closes: #553328
5429     Thanks to Robert Millan.
5430   * Update the FSF postal address in the source code license headers by
5431     replacing it with a URL to the gnu.org page.
5432   * Fix a file descriptor leak in dpkg-deb.
5433     Reported by Raphael Geissert <atomo64@gmail.com>.
5434   * Fix resource leaks on error conditions in compat scandir.
5435   * Add a new status-fd action when disappearing a package. Closes: #537338
5437   [ Raphaël Hertzog ]
5438   * Add versioned dependency on base-files (>= 5.0.0) to dpkg-dev to ensure
5439     that /etc/dpkg/origins/default exists. Closes: #545274
5440   * Update Standards-Version to 3.8.3 (no changes needed).
5441   * Major changes to the perl API:
5442     - Dpkg::Control is now Dpkg::Control::Info
5443     - Dpkg::Cdata is gone and is replaced by a new Dpkg::Control
5444     - Dpkg::Control::Fields contains authoritative information
5445       about fields allowed in various types of control information
5446       (and can be customized by each vendor). It also integrates
5447       information that was previously available through Dpkg::Deps.
5448     - Dpkg::Changelog has been split in multiple modules and largely
5449       modified to offer an interface that is now more in line with the
5450       other modules.
5451   * All dpkg-* perl programs that work with control information have been
5452     updated to use the new Dpkg::Control interface.
5453     In this process, dpkg-scanpackages has been fixed to not skip non-standard
5454     fields. Closes: #494136
5455   * Create Launchpad-Bugs-Fixed directly in the changelog parsing code thanks
5456     to a new vendor hook post-process-changelog-entry. Closes: #536066
5457   * Integrate dpkg-ftp into dselect. Add the required Replaces and Conflicts.
5458   * dpkg-scanpackages/dpkg-scansources now supports compressed override files.
5459   * dpkg-scanpackages now supports a new --medium option as needed to
5460     generate Packages.cd file for consumption by the multicd dselect access
5461     method. Closes: #402527
5462   * Integrate dpkg-multicd into dselect. Add the required Replaces and
5463     Conflicts. The dpkg-scanpackages fork is dropped. Closes: #516631
5464   * Fix bashisms in dselect multicd access method. Closes: #530070
5465   * Add support of "xz" compression method for source packages. Add dependency
5466     dpkg-dev → xz-utils to ensure xz and unxz are available.
5467   * Fix dpkg-source --include-binaries to correctly compute the path name of
5468     the discovered binary files. Closes: #554612
5469   * Remove extra quoting that should not be there while passing an exclude
5470     file to git ls-files during build of 3.0 (git) source package.
5471     Thanks to Courtney Bane for the patch. Closes: #551829
5472   * Optimize dpkg-source -b by avoiding many diff calls when not required.
5473     Thanks to Mike Hommey for the idea. Closes: #554689
5474   * Add new option --print-format to dpkg-source to be able to know by advance
5475     the source format that would be used during a build.
5476   * Modify dpkg-source -b to use default build options from
5477     debian/source/options. Thus it's now possible to have sticky options, for
5478     example for the choice of a compression method (--compression=<comp>).
5479   * dpkg-source outputs the list of upstream files modified by the diff.gz
5480     (applies only to source packages using format 1.0). Closes: #482166
5481     It also recommends usage of 3.0 (quilt) format during dpkg-source -b if it
5482     detects changes to upstream files that are stored in the .diff.gz.
5483   * Add DEP-3 compliant headers to automatic patches created by dpkg-source
5484     in 3.0 (quilt) source format. Closes: #543581
5485   * Switch dpkg to source format "3.0 (native)" with bzip2 compression.
5487   [ Updated programs translations ]
5488   * Czech (Miroslav Kure).
5489   * French (Christian Perrier).
5490   * German (Sven Joachim).
5491   * Italian (Milo Casagrande). Closes: #548615, #555806
5492   * Polish (Wiktor Wandachowicz). Closes: #548541
5493   * Swedish (Peter Krefting).
5495   [ Updated dselect translations ]
5496   * Czech (Miroslav Kure).
5497   * French (Christian Perrier).
5498   * German (Sven Joachim).
5499   * Polish (Wiktor Wandachowicz). Closes: #548541
5500   * Swedish (Peter Krefting).
5502   [ Updated man pages translations ]
5503   * French (Christian Perrier).
5504   * French translation error fixed (Christian Perrier)
5505     Thanks to Pietro Battiston for spotting it. Closes: #545446
5506   * German (Helge Kreutzmann).
5507   * Polish (Wiktor Wandachowicz). Closes: #548541
5508   * Swedish (Peter Krefting).
5510   [ Updated scripts translations ]
5511   * German (Helge Kreutzmann).
5512   * Polish (Wiktor Wandachowicz). Closes: #548541
5513   * Swedish (Peter Krefting).
5515  -- Guillem Jover <guillem@debian.org>  Tue, 17 Nov 2009 10:17:57 +0100
5517 dpkg (1.15.4.1) unstable; urgency=medium
5519   * Do not mark any package as unseen in dselect. This is a workaround
5520     until it learns how to store such information again. Closes: #545366
5522  -- Guillem Jover <guillem@debian.org>  Mon, 19 Oct 2009 15:15:17 +0200
5524 dpkg (1.15.4) unstable; urgency=low
5526   [ Guillem Jover ]
5527   * Call _g instead of g_ in dpkg-name.
5528   * Fix inverted logic when deciding to assume the architecture in dpkg-name
5529     when the package didn't have such field.
5530   * Do not take into account Revision and Package_Revision fields in dpkg-name
5531     and dpkg-scanpackages as they have been handled already by “dpkg-deb -I”.
5532   * Switch dpkg-scansources to use Dpkg::Cdata instead of duplicating the
5533     .dsc parsing code. As a side effect it now handles properly bogus files.
5534   * Do not remap obsolete fields in dpkg-scanpackages as they have been
5535     handled already by “dpkg-deb -I”.
5536   * Properly mark packages being purged for disappearance from the database.
5537     This will make the status database not be left behind with traces of old
5538     not-installed packages. Closes: #472208
5539   * On parse mark not-installed leftover packages for automatic removal from
5540     the database on next dump. This obsoletes the --forget-old-unavail option,
5541     thus making it now a no-op. Closes: #33394, #429262
5542   * Document “hold” under package selection states instead of flags in dpkg(1).
5543   * Remove trailing ‘/’ and ‘/.’ from the directory name to be used as the
5544     package name on “dpkg-deb -b”. Closes: #218018, #373602
5545   * Remove obsolete ‘hold’ and ‘hold-reinstreq’ internal status flags.
5546   * Add fakeroot to dpkg-dev Recommends. Closes: #536821
5547   * Fix an always false test when trying to decide which package to deselect
5548     to resolve a dependency problem in dselect.
5549   * Add uClibc Linux support to ostable and triplettable. Closes: #455501
5550   * Add uClinux support to ostable and triplettable.
5551     Thanks to Simon Richter <sjr@debian.org>.
5552   * When aborting due to file conflicts print the version of the conflicted
5553     package. Closes: #540019
5554   * Remove double slash in database path visible to the user in some error
5555     conditions.
5556   * Stop matching sparc64-*-* GNU triplets with sparc Debian architecture.
5557   * Add support for config.d style directories in dpkg and dselect,
5558     (/etc/dpkg/dpkg.cfg.d and /etc/dpkg/dselect.cfg.d respectively).
5559   * Define DPKG_MAINTSCRIPT_ARCH on the maintainer script environment to the
5560     architecture the package got built for.
5561   * Document DPKG_MAINTSCRIPT_PACKAGE maintainer script environment variable
5562     in dpkg man page.
5563   * Document DPKG_RUNNING_VERSION maintainer script environment variable
5564     in dpkg man page.
5565   * Change po4a usage to not create unwanted changes depending if doing out or
5566     in-tree builds.
5567   * Use po4a “--previous” support when updating the man pages.
5568     Suggested by Christian Perrier <bubulle@debian.org>.
5569   * On configuration error print file name and line number.
5570   * Allow quoting values in configuration file options.
5571   * Add new --pre-invoke and --post-invoke hooks in dpkg.
5572   * Add new --control-path command to dpkg-query.
5573   * Use ohshit on bad version syntax in --compare-versions.
5574   * Add Multi-Arch to the list of known binary package fields for dpkg-dev.
5575     Thanks to Steve Langasek <vorlon@debian.org>.
5577   [ Raphaël Hertzog ]
5578   * Replace install-info by a wrapper around GNU's install-info. The wrapper
5579     will be dropped in squeeze+1. dpkg now Breaks: old versions of
5580     info-browsers that do not depend on the new install-info package
5581     that provides the real functionality. Closes: #9771, #523980
5582     See https://wiki.debian.org/Transitions/DpkgToGnuInstallInfo for details.
5583   * Fix dpkg's preinst in case /var/lib/dpkg/alternatives contains unexpected
5584     sub-directories. Closes: #535138
5585     And also when one of the file doesn't contain correct alternatives
5586     information (improper number of lines). Closes: #537558
5587   * Upgrade Standards-Version to 3.8.2 (no changes).
5588   * Update deb-substvars(5) to list fields that do not support substvars.
5589     Closes: #535353
5590   * Fix dpkg-parsechangelog to include all entries with -v0 parameter.
5591     Closes: #537800
5592   * Fix update-alternatives to mention the correct slave link that can't
5593     be installed due to a conflicting file instead of quoting the master link.
5594   * Add support for extra override file in dpkg-scanpackages. Thanks to Robert
5595     Millan for the patch. Closes: #537559
5596   * Add support for extra override file in dpkg-scansources.
5597   * Document format of extra override file in a new manual page
5598     deb-extra-override(5).
5599   * Update sample in dpkg-gensymbols(1) to give an accurate listing of
5600     64 bit arches. Thanks to Julien Cristau for the patch. Closes: #540382
5601   * Create /etc/cron.daily/dpkg to handle the backup of
5602     /var/lib/dpkg/status in /var/backups. This is taken out of the cron
5603     package and need no conflicts/breaks as the code does nothing if
5604     the current status file is already backuped. Thanks to Leo 'costela'
5605     Antunes <costela@debian.org> for the patch. Closes: #541412
5606   * Change behaviour of dpkg --merge-avail to not update a package's
5607     information if the version provided is older than the one already listed
5608     in the available file. Thanks to Ian Jackson
5609     <ian@davenant.greenend.org.uk> for the patch. Closes: #496114
5610   * dpkg-architecture can now export DEB_{HOST,BUILD}_ARCH_{BITS,ENDIAN}
5611     (pointer size and endianness):
5612     - cputable (in dpkg) modified to contain those information
5613     - dpkg-dev depends on dpkg (>= 1.15.4) to ensure that we have an updated
5614       cputable (and so that a versioned build-dependency on dpkg-dev is enough
5615       to use this new feature)
5616     Closes: #531307
5617   * Split overly long Binary: field values over multiple lines. This is
5618     allowed since policy 3.8.3. Closes: #494714
5619   * Improve performance of dpkg-shlibdeps by caching minimal version
5620     associated to each library in Dpkg::Shlib::SymbolFile. Thanks to
5621     Jiří Paleček <jpalecek@web.de> for the patch.
5622   * Slightly improve dpkg-source(1) by giving the section name that we're
5623     referring to. Closes: #544037
5624   * Fix translation error in German manpage of dpkg-buildpackage. Thanks
5625     to Joachim Breitner <nomeata@debian.org>. Closes: #541829
5627   [ Modestas Vainius ]
5628   * Provide a meaningful label for dpkg-gensymbols diff.
5630   [ Updated programs translations ]
5631   * Asturian (Marcos Alvarez Costales). Closes: #535327
5632   * French (Christian Perrier).
5633   * German (Sven Joachim).
5634   * Italian (Milo Casagrande). Closes: #536538
5635   * Russian (Yuri Kozlov). Closes: #542254
5636   * Slovak (Ivan Masár). Closes: #537742
5637   * Swedish (Peter Krefting).
5639   [ Updated dselect translations ]
5640   * Russian (Yuri Kozlov). Closes: #542254
5641   * Slovak (Ivan Masár). Closes: #537741
5643   [ Updated man pages translations ]
5644   * French (Christian Perrier).
5645   * German (Helge Kreutzmann), proofread by Jens Seidel.
5646   * Swedish (Peter Krefting).
5648   [ Updated scripts translations ]
5649   * French completed (Christian Perrier).
5650   * German (Helge Kreutzmann).
5651   * Russian (Yuri Kozlov). Closes: #542254
5652   * Swedish (Peter Krefting).
5654  -- Guillem Jover <guillem@debian.org>  Sun, 06 Sep 2009 09:37:45 +0200
5656 dpkg (1.15.3.1) unstable; urgency=low
5658   [ Modestas Vainius ]
5659   * Fix wildcard support in symbol files. Closes: #536034
5661  -- Guillem Jover <guillem@debian.org>  Wed, 08 Jul 2009 11:26:36 +0200
5663 dpkg (1.15.3) unstable; urgency=low
5665   [ Guillem Jover ]
5666   * Unset TAR_OPTIONS when extracting .deb archives.
5667   * Use default compressor values in dpkg-source from Dpkg::Source::Compressor.
5668   * Fix dpkg-scanpackages to properly detect spurious overrides.
5669   * Rewrite dpkg-name in perl.
5670   * Do not close already closed files in some error conditions in libdpkg.
5671   * Use the correct units (KiB) in dpkg-split when referring to partsize.
5672   * Document in dpkg-statoverride(8) that mode needs to be specified in
5673     octal. Closes: #534551
5674   * Mark argument names in dpkg-statoverride.1 in italic.
5675   * Explicitly pass field argument to Dpkg::ErrorHandling::unknown().
5676   * Move unknown() from Dpkg::ErrorHandling to Dpkg::Fields.
5678   [ Raphaël Hertzog ]
5679   * Unset TAR_OPTIONS when creating/extracting tar archives for source
5680     packages. Closes: #530860
5681   * Add cleanup of all invalid (master) alternatives in preinst script.
5682     Closes: #530633, #531611, #532739, #521760
5683   * Let update-alternatives fix a manual alternative with a dangling symlink
5684     by switching it to automatic mode. Closes: #529999
5685   * Add missing paragraph separator in dpkg-buildpackage(1). Thanks to Per
5686     Andersson <avtobiff@gmail.com>. Closes: #532769
5687   * Fix English mistake (“as you request” → “as you requested”) in several
5688     places. Thanks to David Stansby for the patch. Closes: #533171
5689   * Support tags before symbols in symbols file contained in source packages.
5690     The first two tags are "optional" (use it to not fail if the symbol might
5691     disappear from the library without breaking the ABI) and "arch" to
5692     restrict the set of architectures where the symbol is supposed to exist.
5693     Thanks to Modestas Vainius <modestas@vainius.eu> for the patch.
5694     See dpkg-gensymbols(1) for more information. Closes: #521551
5695   * Do not include #MISSING lines in symbols files integrated in binary
5696     packages. Closes: #526251
5697   * Assume an implicit version of "Base" for all unversioned symbols
5698     that are merged into a SymbolFile. Closes: #533181
5699   * Add new tag "ignore-blacklist" to force-include symbols which are
5700     normally blacklisted. This can be useful for libgcc to include symbols
5701     that the toolchain allows being shared but that are often static (and
5702     hence are blacklisted for this reason). Closes: #533642
5703   * In dpkg-source, explicitly pass --keyring ~/.gnupg/trustedkeys.gpg to
5704     gpgv as it does not use it if other --keyring parameters are given.
5705     Closes: #530769
5706   * In dpkg-vendor, allow using dashes instead of spaces in vendor
5707     filenames. Closes: #532222
5708   * Skip dpkg-genchanges' warning about lower version numbers for backports
5709     (recognized by ~bpo or ~vola in their version number). Closes: #525115
5710   * Support all checksum algorithms in dpkg-scanpackages/dpkg-scansources.
5711     Closes: #533828
5712   * Fix dependency parsing code in Dpkg::Deps to not accept "foo\nbar"
5713     even if foo is valid. Closes: #534464
5714     Thanks to Andrew Sayers for spotting the problem.
5716   [ Joachim Breitner ]
5717   * Warn about unused substvars in dpkg-gencontrol. Closes: #532760
5719   [ Updated programs translations ]
5720   * Catalan (Jordi Mallach). Closes: #532109
5721   * Czech (Miroslav Kure).
5722   * German (Sven Joachim). Closes: #534831
5723   * Simplified Chinese (Deng Xiyue). Closes: #531387
5724   * Swedish (Peter Krefting).
5726   [ Updated dselect translations ]
5727   * Czech (Miroslav Kure).
5729   [ Updated man pages translations ]
5730   * German (Helge Kreutzmann).
5731   * Swedish (Peter Krefting).
5733   [ Updated scripts translations ]
5734   * German (Helge Kreutzmann).
5735   * Swedish (Peter Krefting).
5737  -- Guillem Jover <guillem@debian.org>  Sat, 27 Jun 2009 19:06:43 +0200
5739 dpkg (1.15.2) unstable; urgency=low
5741   [ Guillem Jover ]
5742   * Fix FTBFS on GNU/Hurd due to a mismatched define usage in
5743     start-stop-daemon. Closes: #530446
5744   * Remove obsolete priorities support from dselect.
5745     Thanks to Sven Joachim <svenjoac@gmx.de>.
5746   * Fix bashism (“echo -e”) in dselect disk setup method. Closes: #530071
5747   * Properly parse fdisk output in dselect disk setup method.
5748   * Fix memory leaks due to not destroying some pkg iterators.
5750   [ Updated programs translations ]
5751   * Asturian (Marcos Alvarez Costales). Closes: #529889
5752   * Basque (Piarres Beobide). Closes: #529857
5753   * French (Christian Perrier).
5754   * German (Sven Joachim).
5756   [ Updated man pages translations ]
5757   * German (Helge Kreutzmann).
5759   [ Updated dselect translations ]
5760   * French (Christian Perrier).
5762   [ Updated scripts translations ]
5763   * French (Christian Perrier).
5764   * German (Helge Kreutzmann).
5766  -- Guillem Jover <guillem@debian.org>  Tue, 26 May 2009 01:00:36 +0200
5768 dpkg (1.15.1) unstable; urgency=low
5770   [ Raphaël Hertzog ]
5771   * Fix dpkg-genchanges to not include the additional upstream tarballs
5772     when they are not desired (specific to source packages using format 3.0
5773     quilt).
5774   * Call quilt only once to apply all patches instead of once per patch
5775     when building 3.0 (quilt) source packages. Closes: #518453
5776   * Fix dpkg-shlibdeps so that it works again when analyzing binaries
5777     outside of package's directory. Closes: #518687
5778   * Modify dpkg-shlibdeps to let shlibs.local override symbols files too.
5779   * Drop support of debian/control's “Format” field used by dpkg-source while
5780     it's not too late. Instead debian/source/format should be used to indicate
5781     the desired source package format.
5782   * Update deb-triggers(5) and dpkg-trigger(1) to add a reference to
5783     /usr/share/doc/dpkg/triggers.txt.gz. Closes: #519717
5784   * Avoid perl warnings in dpkg-gencontrol and dpkg-genchanges when the
5785     Architecture field is missing in a binary package. Closes: #510282
5786   * Modify Dpkg::Version::check_version() to not die by default.
5787     Closes: #510615
5788   * dpkg-source now ignores all possible vi swap file extensions (and not
5789     only .swp). The corresponding exclude pattern for -I also got tightened to
5790     only catch filenames starting with a dot. Closes: #515540
5791   * dpkg-gencontrol displays a better error message when an ORed dependency
5792     is used in a union field like Conflicts, Replaces or Breaks.
5793     Closes: #489238
5794   * dpkg-source's signature check is now done with gpgv if possible and
5795     timeouts if not completed within 10 seconds. Closes: #490929
5796     When using gpg, use --no-default-keyring to be consistent with gpgv's
5797     behaviour to not use the user's keyring. Closes: #440841
5798   * Update dpkg-dev dependencies: Closes: #472942
5799     - Move gnupg to Recommends. It's needed to sign .dsc and .changes.
5800     - Add gpgv to Recommends. Useful to check signatures of extracted packages.
5801     - Add debian-maintainers to Suggests. Together with debian-keyring they
5802     contain all the GPG keys required to verify official Debian packages.
5803   * Drop /etc/dpkg/origins as it's taken over by base-files (see #487437).
5804   * Fix dpkg-shlibdeps to properly initialize a symbol-based dependency
5805     even when some symbols are associated with a (fake) version "0". Such a
5806     version means that the symbol has always existed in all versions of the
5807     package.
5808   * When dpkg delegates to dpkg-query or dpkg-deb to do the actual work, add
5809     the "--" marker to explicitly document the end of options so that
5810     arguments starting with a dash are not interpreted as options.
5811     Closes: #293163
5812     Thanks to Bill Allombert for the patch.
5813   * dpkg now correctly refuses empty parameters when an integer value is
5814     wanted. Closes: #386197 Based on a patch by Bill Allombert.
5815   * Fix a mistake in the french translation of dpkg's manual page.
5816     Thanks to Jonathan Gibert. Closes: #522032
5817   * Fix dpkg-source to not die when uncompressor processes are killed by
5818     SIGPIPE due to tar closing the pipe without exhausting all the data
5819     available. Closes: #523329
5820   * dpkg-gencontrol now handles properly (empty) dependencies which contain
5821     only spaces. Closes: #522787
5822   * dpkg-source now accepts additional tarballs (in format "3.0 (quilt)")
5823     with a "component" name containing dashes. Closes: #524376
5824   * Fix dpkg-source to not complain on binary files that are ignored and are
5825     not going to be included in the debian tarball of a "3.0 (quilt)" source
5826     package. Closes: #524375
5827   * Bump Standards-Version to 3.8.1 (no change required).
5828   * Do not store usernames and group names in tarballs created by dpkg-source,
5829     they are anyway ignored at unpack time. Closes: #523184
5830   * Fix update-alternatives to not remove real files installed in place of
5831     an alternative link when the corresponding alternative is fully removed.
5832     Closes: #526538
5833   * Add a new dpkg-vendor tool to query vendor information stored in
5834     /etc/dpkg/origins. It can be used in debian/rules to enable different
5835     behaviour depending on the current vendor at the time of the build.
5836     Closes: #498380
5837     Modify dpkg-buildpackage to not set the DEB_VENDOR environment variable,
5838     packages should use the dpkg-vendor program instead.
5839   * Ensure that the automatic patch created in format "3.0 (quilt)" is always
5840     well registered with quilt even when it's updated by a new call to
5841     dpkg-source. Thanks to Goswin von Brederlow for the initial patch.
5842     Closes: #525858
5843   * Do not update/create debian/patches/.dpkg-source-applied during build,
5844     it's only meant to document what patches have been applied at extraction
5845     time. Closes: #525835
5846   * Let dpkg-buildpackage add the missing execute right on debian/rules if
5847     needed. Display a warning when it happens. Closes: #499088
5848   * Allow combining -nc and -S in dpkg-buildpackage but display a warning
5849     saying that it's not advised. Closes: #304404
5850   * Let dpkg-buildpackage error out with subprocerr() when dpkg-checkbuilddeps
5851     is interrupted/killed by a signal. Closes: #498734
5852   * Fix dpkg-buildpackage/dpkg-genchanges to properly interpret option -v0.
5853     Closes: #475916
5854   * Improves how dpkg-parsechangelog handles non-existing versions
5855     in its --since, --until, --to, --from options. Approximate the intent
5856     by selecting the nearest version instead. Closes: #477638
5857   * Update dpkg-parsechangelog's documentation to make it clearer that spaces
5858     are not allowed between single characters options and their values.
5859     Closes: #494883
5860   * Don't let dpkg-scanpackages complain about missing overrides when
5861     no overrides file has been given. Closes: #468106
5862     Thanks to Piotr Engelking for the patch.
5864   [ Guillem Jover ]
5865   * Fix typo in dpkg output (for ‘unexpected’). Closes: #519082
5866     Thanks to Ivan Masár.
5867   * Sync archtable with architectures currently present in Debian sid.
5868     - Remove m68k.
5869     - Add kfreebsd-i386 and kfreebsd-amd64.
5870   * Add avr32 to cputable. Closes: #523456
5871   * Detect the curses headers to use instead of hardcoding them.
5872   * Make dpkg-source do not set arch:any in .dsc on arch-restricted packages.
5873     Thanks to Philipp Kern <pkern@debian.org>. Closes: #526617
5874   * Add '.hgtags' to the default dpkg-source -i regex and -I pattern.
5875     Closes: #525854
5876   * Use backticks instead of non-portable make $(shell) function in automake.
5877   * Do not install dselect and start-stop-daemon man pages when the programs
5878     have been disabled from configure.
5879   * Move Debian specific keyrings to the Debian vendor class and change the
5880     Ubuntu vendor class to inherit from it.
5881   * Do not set the Arch substvar in dpkg-source, avoiding generating warnings
5882     when there's no compiler present. Closes: #526132
5883   * Preserve faulting errno when printing reason in start-stop-daemon fatal
5884     function.
5885   * Only print fatal errno string in start-stop-daemon if it was non-zero.
5886   * Print the valid values for the IO scheduler class in start-stop-daemon
5887     --help output.
5888   * Print a warning when using obsolete '--print-installation-architecture'.
5889     Closes: #528171
5890   * Remove obsolete --largemem and --smallmem dpkg options.
5891   * Remove obsolete --force-auto-select dpkg option.
5892   * Remove obsolete priorities support from dpkg.
5893   * Remove obsolete 822-date program.
5894   * Do not right justify the database reading progress percent counter.
5895   * Remove deprecated status on substvars for dpkg-source dpkg-genchanges,
5896     and stop producing warnings.
5897   * Make deprecated dpkg-scanpackages --udeb option produce a warning.
5898   * Change dpkg-source --help output to state there's no default substvar
5899     file to match reality.
5900   * Warn in start-stop-daemon if the argument to --name is longer than the
5901     supported kernel process name size. Closes: #353015, #519128
5902   * Do not warn in dpkg-deb when parsing unknown fields with the “Private-”
5903     prefix. Based on a patch by Nils Rennebarth. Closes: #353040
5905   [ Frank Lichtenheld ]
5906   * Dpkg::Version: Remove unnecessary function next_elem which just
5907     replicates the standard shift behaviour.
5909   [ Colin Watson ]
5910   * Add "keyrings" vendor hook, used by dpkg-source to allow vendors to
5911     supply additional keyrings against which source package signatures will
5912     be verified. Implement this for Ubuntu. Closes: #525834
5914   [ Updated dselect translations ]
5915   * German (Sven Joachim).
5916   * Swedish (Peter Krefting).
5918   [ Updated scripts translations ]
5919   * French (Christian Perrier).
5920   * German (Helge Kreutzmann).
5921   * Swedish (Peter Krefting).
5923   [ Added programs translations ]
5924   * Asturian (Marcos Alvarez Costales). Closes: #519478, #519813, #519998
5925   * Esperanto (Felipe Castro). Closes: #523023
5927   [ Updated programs translations ]
5928   * French (Christian Perrier).
5929   * German (Sven Joachim).
5930   * Slovak (Ivan Masár). Closes: #519084
5931   * Swedish (Peter Krefting).
5932   * Russian (Yuri Kozlov). Closes: #526659
5934   [ Updated man pages translations ]
5935   * German (Helge Kreutzmann).
5936   * Swedish (Peter Krefting).
5938  -- Guillem Jover <guillem@debian.org>  Thu, 21 May 2009 06:45:45 +0200
5940 dpkg (1.15.0) experimental; urgency=low
5942   [ Guillem Jover ]
5943   * Do not suggest manually changing the alternative symlinks on
5944     update-alternative's verbose mode. Closes: #412487
5945   * Refactor subprocess signal setup.
5946   * Mark and coalesce similar strings for translation.
5947   * Add '.be' to the default dpkg-source -i regex. Closes: #481716
5948     Based on a patch by Ben Finney.
5949   * Fix link order when using libcompat.a and libintl.a by placing them after
5950     libdpkg.a. Based on a patch by Martin Koeppe. Closes: #481805
5951   * Remove duplicate program name from dpkg-trigger badusage output.
5952   * Trim trailing slash and slash dot from 'dpkg -S' arguments when those
5953     are path names, but not on patterns. Closes: #129577
5954   * Fix the support for passing more than one --status-fd option to dpkg.
5955     Until now only the last one was being used.
5956   * Replace realloc plus error checking usage with m_realloc.
5957   * Add '.hgignore' to the default dpkg-source -i regex and -I pattern.
5958     Closes: #485365
5959   * Support diverting files when origin and destination are on different file
5960     systems. Based on a patch by Juergen Kreileder. Closes: #102144, #149961
5961   * Do not silently enable --rename on dpkg-divert --remove. Closes: #160848
5962   * Do not allocate memory when lstat fails during package upgrade.
5963   * Properly lstat the correct file when using --root on package upgrade.
5964     Thanks to Egmont Koblinger. Closes: #281057
5965   * Print a longer string when a disallowed field value is found when parsing.
5966   * Use $(filter ...) instead of $(findstring ...) to extract space separated
5967     options from DEB_BUILD_OPTIONS in debian/rules.
5968   * Do not leave new conffile as .dpkg-new when it has been diverted, also
5969     properly activate the file trigger for the diverted conffile.
5970     Based on a patch by Timothy G Abbott. Closes: #58735, #476899
5971   * Improve comment on BUGS section in dpkg-deb.1 about lack of authentication
5972     and checksum support in .deb files. Closes: #492052
5973   * Use a troff special character for the copyright symbol on man pages.
5974   * Mark program names in dpkg-trigger.1 in bold.
5975   * Unmark dselect debug messages for translation.
5976   * Use a the warning function to uniformly print all warning messages.
5977   * Properly use internerr to report about programming bugs.
5978   * Do not log repeated strings when the write call wrote partial data.
5979   * Change dir to / after chroot when using --instdir.
5980     Thanks to Colin Watson <cjwatson@ubuntu.com>. Closes: #509578
5981   * Make dpkg log files user readable. Closes: #480556
5982   * Clarify in the start-stop-daemon man page that the signal sent by default
5983     is TERM not KILL. Closes: #507568
5984   * Warn in dpkg-deb man page that -x will modify the extraction directory
5985     permissions. Closes: #502496
5986   * Make start-stop-daemon behave the same way whether --chuid gets a user
5987     name or a uid. Closes: #368000
5988   * Add new option --procsched to start-stop-daemon to be able to set the
5989     process scheduling policy and priority. Closes: #175740
5990   * Add initial C unit test suite for libdpkg.
5991   * Sanitize --status-fd output by replacing newlines with spaces.
5992     Closes: #505172
5993   * Remove unneeded cpio dependency from dpkg-dev.
5994   * Add kopensolaris support to ostable and triplettable. Closes: #509312
5995   * Document in deb.5 in detail the currently supported format, ar member
5996     names, types of tar archives and data.tar members.
5997   * Print correct feature name on «dpkg --assert-*» failures.
5998   * Add progress reporting to dpkg while reading the file list database.
5999     Based on a patch by Romain Francoise.
6000   * Add new option --iosched to start-stop-daemon to be able to set the
6001     IO scheduling class and priority. Closes: #443535
6002     Thanks to Chris Coulson <chrisccoulson@googlemail.com>.
6003   * Add tar format detection support to the internal extractor.
6004   * Add support for ustar long names using the prefix field. Closes: #474092
6005   * Code refactoring and cleanup, some of the major changes include:
6006     - Use standard interfaces instead of ad-hoc ones.
6007     - Fix memory leaks.
6008     - Fix compilation warnings.
6009     - Constify string members in structures and arguments in functions.
6010     - Make local functions static.
6011     - Remove unused functions, macros and variables.
6012     - Fix and cleanup libcompat broken replacement implementations.
6013     - Reduction of module interdependencies.
6014     - Rename function and variable names to make them more clear.
6015     - Cleanup and split of header files.
6017   [ Raphaël Hertzog ]
6018   * Enhance dpkg-shlibdeps' error message when a library can't be found to
6019     include the ELF format of the desired library. Closes: #474671
6020   * dpkg-gensymbols now refuses empty values for the -v -P and -e
6021     parameters.
6022   * Update dpkg(1) to refer to conffile whenever we speak of configuration
6023     file handled by dpkg. Thus harmonize vocabulary with the policy. Thanks
6024     to Helge Kreutzmann <debian@helgefjell.de>. Closes: #381219
6025   * Improve error message stating that dpkg is unable to create a file so that
6026     it also refers to the real filename instead of the non-diverted name only.
6027     Thanks to Daniel Hahler for the patch. Closes: #457135
6028   * dpkg-gencontrol can now again read the control file from its standard
6029     input with "-c-". Closes: #465340
6030   * Add DEB_VENDOR environment variable in the build environment to be able
6031     to change behaviour dynamically depending on the vendor of the current
6032     system (or target system when the user overrides DEB_VENDOR by setting
6033     it himself). Closes: #457371
6034   * dpkg-shlibdeps give less strong warnings for symbols not found in NEEDED
6035     libraries when the shared library is a non-public directory and is likely
6036     to be a plugin. Closes: #481165
6037   * Clarify list of packages displayed by dpkg --get-selections and
6038     dpkg-query -l. Thanks to Jidanni. Closes: #487455
6039   * Document -A option in dpkg-buildpackage(1). Closes: #482834
6040   * Add some warning concerning the available file and the related commands.
6041     They are mostly obsolete for APT users. Closes: #481185
6042   * Add new option --listpackage to dpkg-divert. Thanks to Timothy G Abbott
6043     <tabbott@MIT.EDU> for the patch. Closes: #485012
6044   * Add new option --require-valid-signature to dpkg-source. Closes: #390282
6045   * In dpkg-query(1) document the origin of the various fields and warn that
6046     they are not always available. Closes: #488293
6047   * Improve error message in install-info when the file doesn't exist.
6048     Thanks to Thomas Hood <jdthood@yahoo.co.uk>. Closes: #107098
6049   * Use description of installed package as fallback in dselect.
6050     Based on a patch from Bruce Sass <bmsass@shaw.ca>. Closes: #21659
6051   * Reduce memory usage of dselect by avoiding usage of a big infopad.
6052     Thanks to Michel Lespinasse <walken@zoy.org> for the patch.
6053     Closes: #395140
6054   * Largely improve and update dpkg-buildpackage's manual page.
6055   * Clarify two points in dpkg-source(1). Closes: #490693
6056   * Support RUNPATH exactly like RPATH in dpkg-shlibdeps. Closes: #502258
6057     Thanks to Javier Serrano Polo <jasp00@terra.es>.
6058   * Set Standards-Version to 3.8.0 (no changes needed).
6059   * Drop some unneeded lintian overrides.
6060   * Fix a chmod call in dpkg-source to not fail when POSIXLY_CORRECT is set.
6061     Closes: #506028
6062   * Optimize dpkg-shlibdeps by caching parsed symbols files and
6063     objdump objects. Thanks to Modestas Vainius <modestas@vainius.eu> for the
6064     patch. Closes: #503954
6065   * Add new framework to hook vendor-specific logic (see
6066     module Dpkg::Vendor::Default).
6067   * Add Ubuntu vendor object implementing lookup of launchpad bugs in
6068     changelogs and a safety-check for Maintainer fields of forked packages
6069     (launched during source build). Closes: #426752, #499924
6070   * Improve behaviour of update-alternatives --config. Thanks to
6071     Osamu Aoki <osamu@debian.org> for the initial patch. We can know
6072     select between manual and auto in --config and --all. Closes: #392430
6073   * Fix update-alternatives to not switch to manual mode an alternative
6074     with a broken symlink (instead let the current action fix it).
6075     Also ensure that a message is displayed by default when such a switch is
6076     made. Closes: #141325, #87677
6077   * Fix update-alternatives' logic to rename files. It failed to ignore errors
6078     in some cases where it wanted to when the source file didn't exist.
6079     Closes: #99870
6080     This also makes update-alternatives less noisy when this happens since we
6081     don't call mv when we know that it's going to fail.
6082     Closes: #98822
6083   * Properly remove inappropriate slave links in update-alternatives even when
6084     we switch to manual mode with --set or --config. Closes: #388313
6085   * Modify update-alternatives to always remove the alternative group when the
6086     last alternative is removed (even in manual mode).
6087   * Ensure that update-alternative --install fix the links if the alternative
6088     installed is the one currently selected. Closes: #100135
6089   * Let update-alternatives deal with empty files in its administrative
6090     directory by ignoring them. Closes: #457863
6091   * Add new --target and --as-root options to dpkg-buildpackage to call
6092     any debian/rules target with the proper build environment.
6093     Closes: #477916
6094   * Move update-alternatives, dpkg-divert and dpkg-statoverride to /usr/bin
6095     but keep compatibility symlinks in /usr/sbin for the squeeze release
6096     until all maintainer scripts are fixed (see
6097     https://lintian.debian.org/tags/command-with-path-in-maintainer-script.html).
6098     Closes: #216606
6099   * Use dh_lintian to install lintian overrides. Build-Depends on debhelper
6100     (>= 6.0.7) for this. Update debhelper compatibility level to 6 at the same
6101     time.
6102   * Drop cleanup-info script.
6103   * Reset umask to 0022 in dpkg-gencontrol and dpkg-gensymbols to ensure that
6104     files created in the DEBIAN directory have sane permissions.
6105     Closes: #516481
6106   * Rewrite update-alternatives (so that we can understand it again) and
6107     implement new features on top of it:
6108     - the --config output is now sorted. Closes: #437060
6109     - it now logs information to /var/log/dpkg.log. Closes: #445270
6110     - it forbids reusing master alternative as slave and vice-versa.
6111       Closes: #342566
6112     - it forbids reusing alternative links managed by other alternatives
6113     - new sanity checks on --install parameters. Closes: #423176
6114     - install slave link only if the corresponding slave file is available.
6115       Closes: #143701
6116     - new option --get-selections to export the configuration of all
6117       alternatives. It's a simple way to discover the name of all available
6118       alternatives. Closes: #273406, #392429
6119     - new option --set-selections to reconfigure a set of alternatives in
6120       a single command.
6121   * Document in update-alternatives(8) how one can repair all broken
6122     alternatives with a single command. Closes: #250258, #395556
6123   * Modify dpkg-gensymbols to replace #PACKAGE# on the fly while installing
6124     symbols files so that package having libraries whose name varies between
6125     architectures do not need to hardcode the package name. Closes: #517264
6127   [ Pierre Habouzit ]
6128   * Add a --query option to update-alternatives. Closes: #336091, #441904
6130   [ Updated scripts translations ]
6131   * Polish (Wiktor Wandachowicz). Closes: #514106
6133   [ Updated man pages translations ]
6134   * Polish (Wiktor Wandachowicz). Closes: #514106
6136   [ Updated programs translations ]
6137   * Portuguese (Miguel Figueiredo).
6138   * Korean (Changwoo Ryu).
6139   * Romanian (Eddy Petri?or)
6140   * Slovak (Ivan Masár). Closes: #514490
6142  -- Guillem Jover <guillem@debian.org>  Mon, 02 Mar 2009 06:13:53 +0200
6144 dpkg (1.14.25) unstable; urgency=low
6146   [ Guillem Jover ]
6147   * Fix typo in package description (for 'provides').
6148     Thanks to Pascal De Vuyst <pascal.devuyst@gmail.com>. Closes: #510755
6149   * Do not lose conffiles while replacing them from another package on the
6150     same install run. Closes: #513857
6151     As a side effect this fixes the following symptoms:
6152     - Do not do unneeded conffile prompts when it wasn't locally changed.
6153     - Do not ensure (and thus do not output debug information) that the
6154      .dpkg-new and .dpkg-tmp directories for an existing directory do not
6155       exist. Closes: #80416
6157   [ Raphaël Hertzog ]
6158   * dpkg-deb now always produces GNU tarballs inside .deb and ignores
6159     TAR_OPTIONS. Closes: #513863
6161   [ Updated programs translations ]
6162   * Basque (Piarres Beobide). Closes: #506092, #509851
6163   * Simplified Chinese (Deng Xiyue). Closes: #506177
6164   * Traditional Chinese (Tetralet). Closes: #513312
6166   [ Updated dselect translations ]
6167   * Basque (Piarres Beobide). Closes: #509852
6168   * Norwegian Bokmål (Hans F. Nordhaug).
6169   * Portuguese (Miguel Figueiredo). Closes: #509904
6171   [ Updated scripts translations ]
6172   * Add missing space in French translation.
6173     Thanks to Cyril "Oeil de lynx" Brulebois.
6175  -- Guillem Jover <guillem@debian.org>  Tue, 03 Feb 2009 00:00:41 +0200
6177 dpkg (1.14.24) unstable; urgency=low
6179   [ Raphaël Hertzog ]
6180   * Fix parsing of objdump output (by dpkg-shlibdeps) in a special case where
6181     the symbol name is separated only with a single space. Closes: #506139
6182   * Fix dpkg-shlibdeps behaviour when Build-Depends-Package is used in the
6183     symbols file. It was merging all dependency templates into the generated
6184     dependency instead of simply modifying the minimal version. Thanks to
6185     Modestas Vainius <modestas@vainius.eu>. Closes: #507346
6186   * Fix dpkg-source to correctly extract a source package even when called
6187     from a non-writable directory when a target directory has been specified
6188     on the command line. Closes: #507217, #507219
6190   [ Guillem Jover ]
6191   * Do not allow installing packages with non-obsolete conffiles owned by
6192     other packages without a proper Replaces field. Closes: #508392
6194   [ Updated dselect translations ]
6195   * Galician (Marce Villarino). Closes: #509887
6197   [ Updated programs translations ]
6198   * Galician (Marce Villarino). Closes: #509150
6199   * Vietnamese (Clytie Siddall). Closes: #509424
6201   [ Updated scripts translations ]
6202   * Improve German translation.
6204  -- Guillem Jover <guillem@debian.org>  Mon, 29 Dec 2008 05:38:31 +0100
6206 dpkg (1.14.23) unstable; urgency=low
6208   [ Raphaël Hertzog ]
6209   * Blacklist "__gnu_local_gp" symbol for dpkg-gensymbols. Closes: #500188
6210     Thanks to Thiemo Seufer <ths@debian.org>.
6211   * Important bugfix in dpkg-gensymbols for people using includes in symbol
6212     files: the current object didn't flow back from the included file to
6213     the including file.
6214   * Fix Dpkg::Version comparison code. Closes: #504135
6216   [ Guillem Jover ]
6217   * Untangle fatal abort condition from the “too many errors” one in the
6218     archives and packages processing loop. Closes: #367226
6219   * Abort on unrecoverable fatal errors instead of continuing execution, as
6220     the recovery code assumed the execution would not be reaching it again
6221     and some times bogus update files were created either with incompletely
6222     written content or with '#padding' lines. Closes: #497041, #499070
6224   [ Updated programs translations ]
6225   * Brazilian Portuguese (Felipe Augusto van de Wiel).
6226   * Catalan (Jordi Mallach).
6227   * Czech (Miroslav Kure). Closes: #505910
6228   * French (Christian Perrier)
6229   * German (Sven Joachim).
6230   * Greek (Emmanuel Galatoulas). Closes: #498585
6231   * Japanese (Kenshi Muto).
6232   * Korean (Changwoo Ryu). Closes: #505777
6233   * Norwegian Bokmål (Hans F. Nordhaug).
6234   * Polish (Wiktor Wandachowicz).
6235   * Portuguese (Miguel Figueiredo). Closes: #505869
6236   * Russian (Yuri Kozlov). Closes: #499028, #505735
6237   * Romanian (Eddy Petri?or).
6238   * Slovak (Ivan Masár). Closes: #506024
6239   * Spanish (Javier Fernandez-Sanguino). Closes: #505836
6240   * Swedish (Peter Krefting).
6242   [ Updated scripts translations ]
6243   * Fix typo in Russian. Closes: #499736
6244   * Fix wrong translation in French. Closes: #504123
6245   * French (Christian Perrier).
6247   [ Updated man pages translations ]
6248   * German (Helge Kreutzmann).
6250  -- Guillem Jover <guillem@debian.org>  Tue, 18 Nov 2008 11:50:56 +0200
6252 dpkg (1.14.22) unstable; urgency=low
6254   [ Raphaël Hertzog ]
6255   * The last "small fix" actually broke conversion of source packages to
6256     "3.0 (quilt)" format when they have local changes and no pre-existing
6257     quilt series file. Now always provide a valid name in QUILT_SERIES.
6258     Closes: #496920
6259   * Fix permissions of the automatically generated patch in "2.0" and "3.0
6260     (quilt)" format. They were improperly set to 0600 due to tempfile()
6261     and were not reset to a sane value. Closes: #496925
6262   * Fix dpkg-gensymbols to not scan (real) directories accessed through a
6263     symlink contained in the build tree as they may well not be part of
6264     the package (with absolute symlinks). It was already skipping symlinks
6265     (since 1.14.16.6) for similar reasons.
6267   [ Updated programs translations ]
6268   * Basque (Piarres Beobide). Closes: #496753
6269   * Brazilian Portuguese (Felipe Augusto van de Wiel).
6270   * Galician (Jacobo Tarrio).
6271   * Norwegian Bokmal (Hans Fredrik Nordhaug). Closes: #497309
6272   * Swedish (Daniel Nylander and Peter Krefting).
6273   * Vietnamese (Clytie Siddall). Closes: #497893
6275   [ Updated man pages translations ]
6276   * Swedish (Peter Krefting).
6278   [ Updated scripts translations ]
6279   * Swedish (Peter Krefting).
6281  -- Raphaël Hertzog <hertzog@debian.org>  Fri, 05 Sep 2008 16:54:45 +0200
6283 dpkg (1.14.21) unstable; urgency=low
6285   [ Raphaël Hertzog ]
6286   * Small fix in "3.0 (quilt)" source format when using non-standard name
6287     of the quilt series.
6288   * Handle debian.tar.gz files like diff.gz in dpkg-buildpackage and
6289     dpkg-genchanges to detect the kind of upload.
6290   * Add "armel" to /usr/share/dpkg/archtable. Closes: #487768
6291   * Modified Dpkg::BuildOptions to recognize and use spaces as separator
6292     in DEB_BUILD_OPTIONS (in order to conform with the Debian policy
6293     ruling established in #430649). Closes: #486937
6294   * Fix dpkg-source to not use -i and -I by default with "1.0" source
6295     packages. Closes: #495138
6297   [ Guillem Jover ]
6298   * When loading the status file fix up any inconsistent package in state
6299     triggers-awaited w/o the corresponding package with pending triggers.
6300     Closes: #487637, #486843, #489068
6301   * Fix --no-act in triggers related code. Closes: #495097
6302   * Do not assert when dpkg stops processing packages due to too many
6303     errors occurred while configuring or removing packages.
6304     Thanks to Ian Jackson <ian@davenant.greenend.org.uk>. Closes: #483655
6305   * Move lzma from dpkg Suggests to Pre-Depends. Closes: #456332
6306   * Match description of -si option in dpkg-buildpackage to the one in
6307     dpkg-genchanges. Closes: #493743
6308   * Close --status-fd file descriptors on exec, so that they are not
6309     inherited by the children. Closes: #471488, #487684
6310   * State that the preferred front-end is aptitude and replace one instance
6311     of dselect usage with apt-get. Closes: #483785
6313   [ Updated man pages translations ]
6314   * French (Florent Usseil).
6315   * German (Helge Kreutzmann).
6317   [ Updated scripts translations ]
6318   * Russian (Yuri Kozlov). Closes: #490076
6319   * German (Helge Kreutzmann).
6321   [ Updated programs translations ]
6322   * Basque (Piarres Beobide). Closes: #490905
6323   * Czech (Miroslav Kure).
6324   * French (Christian Perrier).
6325   * German (Sven Joachim).
6326   * Korean (Changwoo Ryu).
6327   * Romanian (Eddy Petri?or).
6328   * Russian (Yuri Kozlov). Closes: #488689
6329   * Simplified Chinese (Deng Xiyue). Closes: #496176
6330   * Slovak (Ivan Masár). Closes: #488903, #495505
6331   * Thai (Theppitak Karoonboonyanan). Closes: #488090
6333   [ Added programs translations ]
6334   * Lithuanian (Gintautas Miliauskas). Closes: #493326
6336   [ Updated dselect translations ]
6337   * Romanian (Eddy Petri?or).
6339  -- Guillem Jover <guillem@debian.org>  Tue, 26 Aug 2008 05:32:39 +0300
6341 dpkg (1.14.20) unstable; urgency=low
6343   [ Guillem Jover ]
6344   * Change UTF-8 '©' to '(C)' in deb-version.5 (unfuzzy translations).
6345   * Document --force-breaks in 'dpkg --force-help' output.
6346   * Document triggers --debug values in dpkg.1. Thanks to Sven Joachim.
6347   * Improve package descriptions for dpkg, dpkg-dev and dselect.
6348     Thanks to Justin B Rye for the review and corrections. Closes: #484002
6349   * When dpkg-divert does renames do no check the target file if the source
6350     does not exist and the rename is thus being disabled. This also allows
6351     removing bogus diversions. Closes: #476973, #469033
6352   * Properly close triggers 'File' file, so it does not get leaked to children.
6354   [ Raphaël Hertzog ]
6355   * Add missing 'use File::Path' in Dpkg::Source::Package::V3::quilt.
6356   * Use debian/patches/debian-changes-<version> (without the trailing ".diff")
6357     as default name for the automatic patch created by the format "3.0
6358     (quilt)". This ensures a saner cohabitation with patch systems that
6359     apply all of debian/patches/*.{diff,patch}.
6360   * Improve patch parser to accept more patches that are accepted by patch
6361     itself.
6362   * Correctly skip comments in quilt series files (concerns "3.0 (quilt)" source
6363     packages). Closes: #486323
6364   * The automatically created patches (in source package formats "2.0" and
6365     "3.0 (quilt)") will now contain "/dev/null" as previous filename when the
6366     patch creates a new file (instead of putting the same name).
6367   * Set PERL_DL_NONLZY to 1 in perl scripts that are likely to be called in
6368     package's configuration scripts to work around the perl bug #479711.
6370   [ Helge Kreutzmann ]
6371   * Fix a typo in dselect.1.
6373   [ Updated programs translations ]
6374   * Basque (Piarres Beobide). Closes: #481043
6375   * Brazilian Portuguese (Felipe Augusto van de Wiel).
6376   * Catalan (Jordi Mallach). Closes: #383448
6377   * Czech (Miroslav Kure).
6378   * French (Christian Perrier).
6379   * Galician (Jacobo Tarrio). Closes: #483441
6380   * German (Sven Joachim).
6381   * Norwegian Bokmal (Hans Fredrik Nordhaug). Closes: #480626
6382   * Polish (Wiktor Wandachowicz).
6383   * Simplified Chinese (Deng Xiyue). Closes: #483143
6384   * Swedish (Peter Karlsson).
6385   * Vietnamese (Clytie Siddall). Closes: #481199
6387   [ Updated man pages translations ]
6388   * German (Helge Kreutzmann).
6389   * Polish (Wiktor Wandachowicz).
6390   * Swedish (Peter Karlsson).
6392   [ Updated scripts translations ]
6393   * French (Christian Perrier).
6394   * German (Helge Kreutzmann).
6395   * Polish (Wiktor Wandachowicz).
6396   * Russian (Yuri Kozlov).
6397   * Swedish (Peter Karlsson).
6399   [ Updated dselect translations ]
6400   * Brazilian Portuguese (Felipe Augusto van de Wiel).
6401   * Polish (Wiktor Wandachowicz).
6403  -- Raphaël Hertzog <hertzog@debian.org>  Wed, 18 Jun 2008 09:33:54 +0200
6405 dpkg (1.14.19) unstable; urgency=low
6407   [ Guillem Jover ]
6408   * Fix a double-free by setting scontext to NULL after calling freecon.
6409     Based on a patch by Russell Coker. Closes: #474339
6410   * Add missing import of internerr in Dpkg::Source::Patch.pm.
6411     Thanks to Marco d'Itri. Closes: #479205
6412   * Consider also custom Package-Type fields when printing warnings in
6413     dpkg-gencontrol. Closes: #452273
6415   [ Raphaël Hertzog ]
6416   * Add missing import of subprocerr in Dpkg::Source::Package. Thanks to Sven
6417     Joachim for the patch.
6418   * Handle symlinks better when deciding if dpkg-source has to copy the
6419     original tarball in the current extraction directory. Closes: #475668
6420   * Fix the dpkg-source error message about unrepresentable changes to
6421     source because the type of a file changed (new and old were inverted).
6422   * Fix dpkg-genchanges to detect udeb based on Package-Type control
6423     header instead of file extension analysis on uploaded files.
6424     Closes: #476113
6425   * Fix dpkg-source to grant correct permissions to tarballs of native
6426     source packages. Closes: #477784
6427   * Add Conflicts: devscripts (<< 2.10.26) to ensure that people are
6428     using versions of debsign/mergechanges that support the Checksums fields
6429     in *.dsc and *.changes.
6430   * Cleanup the various Conflicts/Replaces fields to remove references
6431     to package that have disappeared before sarge (this includes dpkg-doc-ja,
6432     dpkgname, and dpkg-static which has never officially been built).
6433     dpkg-iasearch has been kept as popcon still reports a few installations.
6434   * Collapsed multiple conflicts of dpkg with old versions of dpkg-dev
6435     in a single Conflicts: dpkg-dev (<< 1.14.16).
6436   * The "3.0 (quilt)" source package format now parses correctly series files
6437     with patch options and warn if something else than -p1 is used.
6438   * Change the way dpkg-source finds the perl object to use to unpack/build
6439     a source package to ignore the minor part of the Format: version.
6440     For example "1.0" and "1.1" would both map to Dpkg::Source::Package::V1
6441     instead of ::V1_0 and ::V1_1 before. Similarly "3.0 (quilt)" now maps to
6442     ::V3::quilt instead of ::V3_0::quilt.
6443   * Fix changelog parser to not fail when an unexpected changelog entry
6444     appears without the preceding heading line. Closes: #478925
6445   * Change the "2.0" and "3.0 (quilt)" source packages to refuse by default
6446     binary files in the debian sub-directory. They have to be whitelisted
6447     through debian/source/include-binaries. Closes: #473041
6448   * Make sure triggers are activated when a file is removed in a directory
6449     shared by multiple packages. Closes: #479850
6451   [ Helge Kreutzmann ]
6452   * Minor fixes and clarifications to man pages.
6454   [ Updated programs translations ]
6455   * Brazilian Portuguese (Felipe Augusto van de Wiel). Closes: #480579
6456   * Czech (Miroslav Kure).
6457   * French (Florent Ussel).
6458   * Galician (Jacobo Tarrio).
6459   * German (Sven Joachim).
6460   * Polish (Wiktor Wandachowicz).
6461   * Portuguese (Miguel Figueiredo).
6462   * Russian (Yuri Kozlov). Closes: #478827
6463   * Slovak (Ivan Masár). Closes: #478897
6464   * Swedish (Peter Karlsson).
6466   [ Updated man pages translations ]
6467   * German (Helge Kreutzmann).
6468   * Polish (Wiktor Wandachowicz).
6469   * Swedish (Peter Karlsson).
6471   [ Updated scripts translations ]
6472   * German (Helge Kreutzmann).
6473   * Polish (Wiktor Wandachowicz).
6474   * Russian (Yuri Kozlov). Closes: #479142
6475   * Swedish (Peter Karlsson).
6477   [ Updated dselect translations ]
6478   * Brazilian Portuguese (Felipe Augusto van de Wiel).
6479   * Czech (Miroslav Kure).
6480   * French (Christian Perrier).
6481   * German (Sven Joachim).
6482   * Russian (Yuri Kozlov). Closes: #478802
6483   * Slovak (Ivan Masár). Closes: #479007
6485  -- Guillem Jover <guillem@debian.org>  Mon, 12 May 2008 08:33:07 +0300
6487 dpkg (1.14.18) unstable; urgency=low
6489   [ Guillem Jover ]
6490   * Bump po4a version in Build-Depends to 0.33.1-1, as usage of UTF-8
6491     in original man pages was causing build failures. Closes: #473498
6492   * Add triggers documentation to dpkg-dev. Closes: #473449
6493   * Add deb-triggers.5 and dpkg-trigger.1 man pages, and document new
6494     statuses and options in dpkg.1.
6496   [ Raphaël Hertzog ]
6497   * When dpkg-source builds a source package of Format: 2.0 or 3.0 (quilt) it
6498     applies the patches before the build if
6499     debian/patches/.dpkg-source-applied doesn't exist. This file is created
6500     during extraction if patches are applied, and is auto-excluded from the
6501     debian tarball. This enables on-the-fly conversion of source packages from
6502     Format: 1.0 to Format: 3.0 (quilt) without manual intervention of the
6503     user. This feature can be disabled with the option --no-preparation.
6504   * The dpkg-source option --skip-patches disables application of patches
6505     during extraction of source packages using Format: 2.0 or Format: 3.0
6506     (quilt).
6507   * Ensure the Files field is last in *.dsc and *.changes. This is a
6508     work-around for some braindead dsc parsers (dupload and sbuild for
6509     instance, see #473518 and #470440).
6510   * Initialize dependencies for libraries having symbols files with the
6511     smallest minimal version listed in the symbols file instead of using
6512     an unversioned dependency. It's the only way to ensure the library
6513     presence if it wasn't available in all versions of the package that ever
6514     existed. Closes: #474079
6515   * Don't use the -p option of diff for Format: 1.0 source packages.
6516     dpkg-source of sarge doesn't accept data after @@. Closes: #474417
6518   [ Updated dselect translations ]
6519   * German. (Sven Joachim).
6520   * Swedish (Peter Karlsson).
6522   [ Updated programs translations ]
6523   * Portuguese (Miguel Figueiredo).
6524   * Simplified Chinese (Deng Xiyue). Closes: #473523
6525   * Swedish (Peter Karlsson).
6526   * Vietnamese (Clytie Siddall). Closes: #473726
6528   [ Updated man pages translations ]
6529   * German (Helge Kreutzmann).
6530   * Swedish (Peter Karlsson).
6532   [ Updated scripts translations ]
6533   * German (Helge Kreutzmann).
6534   * Swedish (Peter Karlsson).
6536  -- Guillem Jover <guillem@debian.org>  Tue, 08 Apr 2008 07:00:10 +0300
6538 dpkg (1.14.17) experimental; urgency=low
6540   [ Guillem Jover ]
6541   * Replace strdup plus error checking usage with a new m_strdup function.
6542     Closes: #379028
6543   * Add new keybinding in dselect to restore all selections back to
6544     whatever's currently installed. Closes: #151540
6545     Thanks to Colin Watson.
6546   * Use system timersub and fix timeval normalization in multiplication in
6547     start-stop-daemon. Thanks to Andreas Påhlsson. Closes: #462225
6548   * Cosmetic fixes to start-stop-daemon output and man page. Document that
6549     --chuid will change the group even if it has not been specified. Add
6550     EXIT STATUS and EXAMPLE sections to man page. Thanks to Justin Pryzby.
6551   * Add Raphaël Hertzog to Uploaders, and remove Brendan O'Dea and
6552     Christian Perrier with their permission.
6553   * Use functions from libcompat when those are not provided by the system.
6554     - Add strnlen to libcompat.
6555     - Link programs against libcompat which provides obstack. Closes: #142042
6556   * Change dpkg-gencontrol to not output the Homepage field on udeb.
6557   * Reintroduce 'no-debsig' back in dpkg.cfg to avoid failing to install any
6558     package when debsig-verify is installed. Closes: #311843
6559   * Fix some small memory leaks. Closes: #469520
6560     Thanks to Sean Finney.
6561   * Correct broken dselect logic for self-conflicting packages.
6562     Thanks to Ian Jackson.
6563   * Implement 'Breaks' properly in dselect. Closes: #448946
6564     Thanks to Ian Jackson.
6565   * Fix erroneous description of Breaks in dselect output.
6566     Thanks to Ian Jackson.
6567   * Allow compilation with --disable-nls on systems without libintl.h where
6568     a non glibc claims to be glibc. Closes: #465420
6569   * Fix crash when a .deb file becomes unreadable while dpkg is starting.
6570     Thanks to Ian Jackson. Closes: #255882
6571   * Few file descriptor cleanup and error handling fixes.
6572     Thanks to Ian Jackson. Closes: #443338
6573   * Move test suite invocation to a new check target in debian/rules.
6574   * Add support for nocheck DEB_BUILD_OPTIONS in debian/rules, so that the
6575     dpkg test suite can be skipped if desired.
6576   * Improve log and status-fd output by printing more status change updates
6577     and actions. Thanks to Ian Jackson.
6578   * Implement triggers support. Thanks to Ian Jackson.
6579     Closes: #17243, #68981, #215374, #217622, #248693, #308285
6581   [ Raphaël Hertzog ]
6582   * Add a warning displayed by dpkg-genchanges if the current version is
6583     smaller than the previous one. Closes: #4655
6584   * Add -d and -c options in dpkg-checkbuilddeps to override
6585     build-depends/conflicts. Closes: #114774
6586   * Include list of libraries in dpkg-gensymbols' warning about new/lost
6587     libraries.
6588   * Add -R option to dpkg-buildpackage so that one can replace the usual
6589     "debian/rules" by something else. Closes: #355654
6590   * Always list all binary packages in the Description: field of .changes
6591     files. It's nice for reviewers and mentors.debian.net was using this field
6592     on source only uploads to display short description of what the package is
6593     about.
6594   * Handle the case when the library has a different SONAME than the one used
6595     to find it. Closes: #462413
6596   * Fix Dpkg::Version and Dpkg::Fields::Object to import _g() from
6597     Dpkg::Gettext. Thanks to Adam Heath and Olivier Berger for spotting
6598     this. Closes: #465651
6599   * Change PATH during make check to look into build directories containing
6600     dpkg and the related scripts. Thanks to Mike Frysinger. Closes: #466957
6601   * Some lintian cleanup:
6602     - add overrides for some useless I: tags
6603     - drop unused overrides
6604     - updated several manual pages to fix hyphen-used-as-minus-sign
6605     - fixed manpage-has-errors-from-man in several manual pages
6606     - removed empty debian/dpkg.prerm
6607   * Removed old upgrade code from dpkg's preinst and postinst which only
6608     concerns upgrading from dpkg version older than the one in oldstable
6609     already. And thus we get rid of old the last usage of read in those
6610     scripts (fixes lintian's warning read-in-maintainer-script).
6611   * Removed sorting of dependencies in dpkg-gencontrol and dpkg-source. But
6612     kept it for all other fields (Enhances, Conflicts, Replaces, Breaks,
6613     Build-Conflicts and Build-Conflicts-Indep).
6614   * Instead changed dpkg-shlibdeps to sort the dependencies generated in
6615     ${shlibs:*} variables.
6616   * Changed the logic of simplification of dependencies: if any dependency
6617     must be discarded due to another dependency appearing further
6618     in the field, the superseding dependency will take the place of the
6619     discarded one. Added a test case for this.
6620   * dpkg-shlibdeps properly accounts usage of symbols provided by private
6621     libraries without SONAME. Closes: #469838
6622   * Add a new warning to dpkg-shlibdeps when a library NEEDED is in fact
6623     not used by any of the binaries analyzed. Closes: #472332
6624   * Add a new --warnings=<value> option to select the set of warnings to
6625     activate. By default, do not activate the warning about useless
6626     libraries at the binary level (instead the new warning above is activated
6627     by default: it's less strict and more useful).
6628   * dpkg-source has been heavily refactored to make it easier to support
6629     multiple source package formats. Several new source package formats have
6630     been added:
6631     - the format "2.0" is the original wig&pen
6632     - the format "3.0 (quilt)" is based on 2.0. It uses a tarball for the
6633       debian directory and can thus include binary files. Binaries
6634       outside of the debian directory can be also included if they
6635       are listed in debian/source/include-binaries (and option
6636       --include-binaries will generate this file automatically).
6637       Closes: #4588, #4628
6638     - thus it will also preserve timestamps on Debian-provided
6639       documentation like README.Debian. Closes: #366555
6640     - it handles an explicit series of patches and the patch can thus be
6641       named without constraints. Patches can contain arbitrary
6642       headers/comments between file chunks. Closes: #363018
6643     - it ignores changes on a number of temporary and VCS-specific files
6644       by default. Closes: #203792, #323909
6645     - the patches in debian/patches can remove files. Closes: #12564
6646     - the patches are applied at unpack time. Closes: #463048
6647     - the formats "3.0 (quilt/native)" don't include VCS directories by
6648       default. Closes: #435126
6649     - the format "3.0 (custom)" can be used to create a source package
6650       containing arbitrary files. It's useful for helper tools that can
6651       generate the files by themselves in a more efficient way
6652       (like all the *-buildpackage tools). Closes: #246918
6653     - the formats "3.0 (git/bzr)" are experimental formats based
6654       on corresponding VCS repositories. Thanks to Joey Hess and Colin Watson
6655       respectively.
6656   * dpkg-source has a new --no-check option. It disables GPG check and
6657     checksums checks. Closes: #220758
6658   * dpkg-shlibdeps is now able to look into directories containing libraries
6659     used by cross-built binaries provided that the right environment variable
6660     are set. Closes: #453267
6661   * Change default value of LDFLAGS (set by dpkg-buildpackage) to ''
6662     instead of '-Wl,-Bsymbolic-functions'. It's safer at this point of the
6663     release cycle.
6664   * dpkg-buildpackage will set PKG_CONFIG_LIBDIR (but not override an existing
6665     value) in case of cross-compilation so that pkgconfig finds .pc files
6666     in the directory specific to the target architecture. Closes: #439979
6668   [ Frank Lichtenheld ]
6669   * Add a warning in dpkg-buildpackage if the build-dependencies are not
6670     satisfied during -S. Closes: #445552
6671   * Add a missing space in the German scripts translation. Closes: #463398
6672   * Add improved deb-shlibs.5 manual page by Zack Weinberg. Closes: #466135
6673   * dpkg-buildpackage exports some build related environment variables
6674     now. Based on a patch by Matthias Klose. Closes: #465282
6675     (See dpkg-buildpackage(1) and https://wiki.ubuntu.com/DistCompilerFlags
6676      for details)
6677   * Add support for use of SHA1 and SHA256 checksums in .dsc and
6678     .changes files. Information will be available in Checksums-Sha{1,256}
6679     fields. .changes format version increased to 1.8.
6680   * Link dselect against libncursesw. Closes: #466321
6681   * Forward port a patch from the old changelog parser to the new
6682     one that got lost during the transition. '+' and '.' can now
6683     be used in distribution names yet again. Reported by dann frazier.
6684     Closes: #467470
6686   [ Updated programs translations ]
6687   * Korean (Changwoo Ryu).
6688   * Polish (Robert Luberda).
6689   * Romanian (Eddy Petrişor).
6690   * Slovak (Ivan Masár). Closes: #471342
6691   * Swedish (Peter Karlsson).
6692   * Thai (Theppitak Karoonboonyanan). Closes: #468916
6694   [ Updated man pages translations ]
6695   * German (Helge Kreutzmann).
6696   * Polish (Robert Luberda).
6697   * Swedish (Peter Karlsson).
6699   [ Updated dselect translations ]
6700   * Basque (Piarres Beobide). Closes: #462403
6702   [ Updated scripts translations ]
6703   * German (Helge Kreutzmann).
6704   * Polish (Robert Luberda).
6705   * Swedish (Peter Karlsson).
6707   [ Updated dselect translations ]
6708   * Polish (Robert Luberda).
6709   * Romanian (Eddy Petrişor).
6711  -- Guillem Jover <guillem@debian.org>  Sun, 30 Mar 2008 12:48:22 +0300
6713 dpkg (1.14.16.6) unstable; urgency=medium
6715   * Let dpkg-gensymbols skip directories which are just symlinks when scanning
6716     the package build dir.
6717   * Bump urgency to medium to compensate lost days in testing migration due to
6718     the two last uploads.
6720  -- Raphaël Hertzog <hertzog@debian.org>  Sat, 26 Jan 2008 19:20:40 +0100
6722 dpkg (1.14.16.5) unstable; urgency=low
6724   * Fix dpkg-gensymbols handling of #include so that one can include multiple
6725     times the same file and have it properly taken into account.
6726   * Add many armel-specific symbols to dpkg-gensymbols' blacklist.
6727     Closes: #462318
6729  -- Raphaël Hertzog <hertzog@debian.org>  Thu, 24 Jan 2008 14:20:10 +0100
6731 dpkg (1.14.16.4) unstable; urgency=low
6733   * Import capit in Dpkg::Cdata from Dpkg::Fields. Closes: #462172
6735  -- Guillem Jover <guillem@debian.org>  Wed, 23 Jan 2008 08:44:32 +0200
6737 dpkg (1.14.16.3) unstable; urgency=low
6739   [ Raphaël Hertzog ]
6740   * Remove the ":utf8" layer that utf8-encodes already valid utf8.
6741     Closes: #462098
6742   * Disable variable substitution in dpkg-genchanges. Closes: #462079, #462089
6744   [ Guillem Jover ]
6745   * Make start-stop-daemon set the supplementary groups if the real user or
6746     group are different than the ones we should switch to. Closes: #462075
6747   * Fix segfault in start-stop-daemon when using --group w/o --chuid (as
6748     a side effect, using --group alone works for the first time in years).
6749     Closes: #462072
6750   * Fix timeout computations for start-stop-daemon --retry option. This has
6751     not worked properly for a long time (maybe never), but came to light
6752     due to #460903's fix. Closes: #462104
6754  -- Guillem Jover <guillem@debian.org>  Tue, 22 Jan 2008 23:39:59 +0200
6756 dpkg (1.14.16.2) unstable; urgency=low
6758   * Change uid after changing gid and initializing supplementary groups in
6759     start-stop-daemon. Closes: #462018
6760   * Change temporary dpkg Breaks on dpkg-dev (= 1.14.13) and (= 1.14.14)
6761     to Conflicts, so that users from etch can upgrade to sid (or lenny
6762     once dpkg has migrated).
6764  -- Guillem Jover <guillem@debian.org>  Tue, 22 Jan 2008 13:05:22 +0200
6766 dpkg (1.14.16.1) unstable; urgency=low
6768   * Add libtimedate-perl to dpkg-dev's Depends and to Build-Depends.
6769     Reported by Aurelien Jarno. Closes: #461875
6771  -- Frank Lichtenheld <djpig@debian.org>  Mon, 21 Jan 2008 12:48:51 +0100
6773 dpkg (1.14.16) unstable; urgency=low
6775   [ Guillem Jover ]
6776   * Add build-essential as an implicit Build-Depends in dpkg-checkbuilddeps.
6777     Closes: #402901
6778   * Add build-essential to dpkg-dev Recommends.
6779   * Do not warn about unrecognized Homepage field in binary package stanzas
6780     in dpkg-genchanges and dpkg-source. Closes: #460309
6781   * Do not use the enoent helper binary, and use perl POSIX module instead.
6782   * Keep checking for the process when start-stop-daemon is called with
6783     --retry even if the daemon removed the pidfile. Closes: #460903
6784     Thanks to Justin Pryzby for the analysis.
6785   * Make --quiet silence --test in start-stop-daemon. Closes: #367998
6786   * Check current uid and gid in start-stop-daemon before calling setuid,
6787     setgid and initgroups. Closes: #222524
6788     Based on a patch by Samuel Thibault.
6789   * Remove unimplemented --test option from update-alternatives.
6790     Closes: #392432, #461247
6791   * Additionally check if errno is EEXIST after rmdir(2), as SUSv3 specifies
6792     that on non-empty directories it can either return that or ENOTEMPTY.
6793     This fixes run time problems on Solaris.
6794   * Fix start-stop-daemon --help output to state that --name is one of the
6795     possible required options to use. Closes: #354999
6796   * Demote dselect from priority important to optional. Closes: #461327
6797   * Fix portability issues on HP-UX, by not using backticks inside double
6798     quotes in m4 files. Closes: #24514
6799   * Switch Maintainer address to <debian-dpkg@lists.debian.org> from
6800     <team@dpkg.org>.
6801   * Add README.feature-removal-schedule describing the features to be removed
6802     and README.api describing the provided APIs.
6804   [ Frank Lichtenheld ]
6805   * Make the -L option of dpkg-parsechangelog actually work (it's
6806     only been eleven years...)
6807   * Import the code from my external Parse::DebianChangelog as
6808     Dpkg::Changelog and Dpkg::Changelog::Debian. Using this
6809     from parsechangelog/debian adds the following requested
6810     features:
6811      - Option to use a non-lossy format. Closes: #95579
6812      - Various options to better control how many entries
6813        should be displayed. Closes: #226932
6815   [ Raphaël Hertzog ]
6816   * Replaced all the remaining code in controllib.pl by new modules. All
6817     scripts have been adjusted to use the new modules and controllib.pl has
6818     been removed.
6819   * The code to parse debian/control is available in a perl module
6820     Dpkg::Control. Closes: #26554
6821   * Temporarily add a Breaks: dpkg-dev (= 1.14.13), dpkg-dev (= 1.14.14) on
6822     dpkg for the convenience of sid users. Closes: #459815
6823   * Update dpkg-source(1) to explain better what the directory after -b is.
6824     Closes: #323606
6825   * Also force version in ${binary:Version} if dpkg-gencontrol -v<version>
6826     is used. That way we're consistent with the definition of that variable
6827     in deb-substvars(5). Closes: #433477
6828   * Add support of Dm-Upload-Allowed field. Closes: #453400
6829   * Fix dpkg-shlibdeps' filtering of duplicated dependencies in fields of
6830     lesser priority (when -d is used).
6831   * Fix behaviour of dpkg-shlibdeps when the same binary was passed multiple
6832     times for use in different dependency fields (-d option).
6833   * Change logic of -si option of dpkg-genchanges to include the original
6834     tarball only if the current upstream version differs from the upstream
6835     version of the previous changelog entry. Replaces the heuristic based
6836     on revision number (-0, -0.1 or -1). Closes: #28701
6837   * Some code refactoring on dpkg-genchanges and bug fixes in the generation
6838     of the Description: field. As a result, source only uploads will no more
6839     have Description fields.
6840   * Add support of wildcard entries in symbols files. This makes it much
6841     simpler to write symbols files for well managed libraries but in that case
6842     dpkg-gensymbols can't check any more if symbols have disappeared.
6843     Closes: #459359
6845   [ Updated man pages translations ]
6846   * Fix typo in French. Closes: #460021
6847   * German (Helge Kreutzmann).
6849   [ Updated programs translations ]
6850   * Basque (Piarres Beobide). Closes: #459565
6851   * French (Christian Perrier).
6852   * German, Basque, Norwegian Bokmål, Swedish, Vietnamese, Simplified Chinese,
6853     Galician unfuzzied.
6854   * Russian (Yuri Kozlov). Closes: #460708
6856   [ Updated scripts translations ]
6857   * Russian (Yuri Kozlov). Closes: #460709
6858   * Swedish (Peter Karlsson).
6860  -- Guillem Jover <guillem@debian.org>  Mon, 21 Jan 2008 10:00:45 +0200
6862 dpkg (1.14.15) unstable; urgency=low
6864   [ Raphaël Hertzog ]
6865   * Make sure {dpkg-dev,dselect}.preinst are included in the source tarball.
6866     Closes: #452730
6867   * Blacklist armel-specific symbols in dpkg-gensymbols. Reported by Riku
6868     Voipio. Closes: #457964
6869   * Fix typos in various manpages. Patch from A. Costa. Closes: #458276
6870   * Make dpkg-shlibdeps choose the right symbols files when we have several
6871     debian/*/DEBIAN/symbols for a given soname. Closes: #458860
6872   * Add a -S<pkgbuilddir> option to dpkg-shlibdeps to indicate a package build
6873     tree to scan first when trying to find a needed library.
6874   * Change dpkg-gensymbols to mark symbols that disappeared with #MISSING
6875     instead of #DEPRECATED, it's clearer for people.
6876   * Fix Dpkg::Shlibs::Objdump to properly take into account R_*_COPY
6877     relocations. Closes: #454036
6878   * Explain better the order in which postinst/prerm scripts are called
6879     between a package and its dependencies. Thanks to Nicolas François and
6880     Helge Kreutzmann for their suggestions. Closes: #379641
6881   * Fix Dpkg::BuildOptions so that dpkg-buildpackage doesn't double all
6882     options in DEB_BUILD_OPTIONS when called with the -j parameter.
6883     Closes: #453656
6885   [ Guillem Jover ]
6886   * Move compression related variables to a new Dpkg::Compression module.
6887   * Remove disabled, obsolete and quite incomplete Hebrew translations.
6888   * Revert dpkg-dev versioned dependency bump on dpkg >= 1.14.13 back to
6889     >= 1.14.6, as the compression variables are now in a module in dpkg-dev.
6890   * Do not display garbage in dselect on monochrome terminals, by setting
6891     a missing ncurses character attribute. Closes: #155741, #157093
6892     Thanks to Sven Rudolph.
6893   * Do not loop endlessly in dselect with very long package descriptions.
6894     Closes: #179320, #342495
6895     Thanks to John Zaitseff.
6896   * Ignore wrapped lines in install-info when matching section titles.
6897     Closes: #214684
6898     Thanks to Andreas Metzler and Ian Zimmerman.
6899   * Do not use strdup for execvp arguments. Closes: #379027
6900   * Do not print 'failed to kill' warning in start-stop-daemon when polling
6901     the pid. Closes: #157305, #352554
6902     Thanks to Samuel Thibault.
6903   * Properly print build message in dpkg-buildpackage for lzma and bzip2
6904     compressed sources. Closes: #458519
6905   * Promote bzip2 Recommends to Depends for dpkg-dev. Closes: #458521
6906   * Add lzma to dpkg-dev Depends.
6907   * Do not automatically enable -j if DEB_BUILD_OPTIONS contains parallel=n,
6908     and allow overriding its value from the environment. Closes: #458589
6909   * Fix Dpkg::BuildOptions to parse all options in DEB_BUILD_OPTIONS, so
6910     that dpkg-buildpackage called with -j preserves unrecognized options.
6911   * Fix several signed vs unsigned value comparisons that were making some
6912     code to never be executed.
6914   [ Updated programs translations ]
6915   * French (Christian Perrier).
6916   * German (Sven Joachim). Closes: #459223
6917   * Norwegian Bokmål (Hans Fredrik Nordhaug). Closes: #457918, #458732
6918   * Simplified Chinese (Deng Xiyue). Closes: #459018
6919   * Swedish (Peter Karlsson).
6920   * Vietnamese (Clytie Siddall). Closes: #459016
6922   [ Updated scripts translations ]
6923   * French (Christian Perrier).
6924   * Swedish (Peter Karlsson).
6926   [ Updated man pages translations ]
6927   * Swedish (Peter Karlsson).
6929  -- Guillem Jover <guillem@debian.org>  Mon, 07 Jan 2008 12:12:16 +0200
6931 dpkg (1.14.14) unstable; urgency=low
6933   * Fix override disparity: set priority of dselect to important.
6934   * Add libio-string-perl to Build-Depends as it's needed by a non-regression
6935     test (fix FTBFS, thus a quick upload).
6936   * Make dpkg-dev depend on dpkg (>= 1.14.13) as the latest Dpkg.pm is needed
6937     for dpkg-source.
6939  -- Raphaël Hertzog <hertzog@debian.org>  Thu, 27 Dec 2007 11:20:38 +0100
6941 dpkg (1.14.13) unstable; urgency=low
6943   [ Frank Lichtenheld ]
6944   * Add an own manpage for Dpkg's version format. Mostly stolen
6945     from policy. Closes: #373003
6946   * Fix control file parsing for field values starting with a colon.
6947     Apparently nobody ever needed this until Vcs-Cvs came along.
6948     Closes: #453364
6949   * Copy the usr/share/doc directory to dpkg-dev and dselect (Instead
6950     of using symlinks). The space requirements are minimal and adding
6951     the needed dependencies to comply with policy would be way more
6952     inconvenient. Pointed out by Rene Engelhard. Closes: #452730
6953   * Allow more than one arch and more than one type of a package
6954     in debian/files. Parts of the patch by Goswin von Brederlow
6955     and Bastian Blank. Closes: #356299, #377400, #229143
6956   * Allow building only architecture independent packages (-A).
6957     Closes: #109794, #200454
6958   * Bump Standards-Version to 3.7.3 (no changes)
6960   [ Raphaël Hertzog ]
6961   * When dpkg-shlibdeps finds a lib in a directory which is just a symlink to
6962     another directory that is also considered, remember the other directory
6963     name as the canonical one. Closes: #453885
6964   * dpkg-shlibdeps doesn't warn any more about libm.so.6 being unused if the
6965     binary is also linked against libstdc++ since g++ always add an implicit
6966     -lm. Closes: #454616
6967   * Included files in symbols files (via #include) do no more need to repeat
6968     the header line. Closes: #455260
6969   * Tweak the sort algorithm between dependencies so that intervals
6970     are displayed as "a (>= 1), a (<< 2)" instead of the opposite.
6971     Closes: #455520
6972   * Extend format of symbols files to support arbitrary fields of
6973     meta-information. First field is Build-Depends-Package used to extract the
6974     version requirement possibly encoded in the Build-Depends field and make
6975     sure that the generated dependency is at least as strict as this one.
6976   * Fix dpkg-gensymbols to not update version info of a deprecated symbol.
6977     Closes: #457739
6978   * Fix dpkg-source's behaviour with options -sk -sK -sp -sP. Closes: #457784
6980   [ Guillem Jover ]
6981   * Ignore the man pages when building without NLS support. Closes: #457673
6982   * Fix perl warnings:
6983     - Check for undefined values when reading from the alternative db.
6984   * Properly handle symlinks for alternatives with nonexistent slave links.
6985     Closes: #76295, #246906, #433567, #451872, #220044, #392440, #441021
6986     Closes: #443241
6987     Based on a patch by Daniel Leidert <daniel.leidert@wgdd.de>.
6988   * Fail when diverting to a non existent directory. Closes: #245562
6989     Thanks to Flavio Stanchina <flavio@stanchina.net>.
6990   * Refactor update-alternatives.
6992   [ Updated programs translations ]
6993   * French (Christian Perrier, as this was trivial).
6994   * Spanish (Javier Fernández-Sanguino Peña). Closes: #456984
6995   * Swedish (Peter Karlsson).
6997   [ Updated man pages translations ]
6998   * German (Helge Kreutzmann).
6999   * Swedish (Peter Karlsson).
7001   [ Updated scripts translations ]
7002   * French (Frédéric Bothamy).
7003   * German (Helge Kreutzmann).
7004   * Japanese (Kenshi Muto). Closes: #455841
7005   * Swedish (Peter Karlsson).
7007  -- Guillem Jover <guillem@debian.org>  Thu, 27 Dec 2007 09:16:45 +0200
7009 dpkg (1.14.12) unstable; urgency=low
7011   [ Raphaël Hertzog ]
7012   * Add -I<file> option to dpkg-gensymbols to force the usage of a specific
7013     symbols file.
7014   * Dpkg::Shlibs::find_library() now returns canonicalized paths.
7015   * dpkg-shlibdeps always tries the realpath() of a lib as fallback when
7016     trying to identify the package of a lib (and not only for symlinks).
7017   * dpkg-shlibdeps doesn't fail any more if it can't find unversioned
7018     libraries on the presumption that they are just private libraries. Outputs
7019     a warning instead.
7020   * Expand the dpkg-shlibdeps manual page with explanations concerning
7021     failures.
7022   * The environment variable DPKG_GENSYMBOLS_CHECK_LEVEL can be used to force
7023     dpkg-gensymbols to use a precise level of checks. Closes: #452022
7025   [ Guillem Jover ]
7026   * Define several private functions and variables as static.
7027   * Move extern declarations to header files and stop defining them as extern.
7028   * Unify parsing of Section and Priority in dpkg-gencontrol with Homepage.
7029   * Switch dpkg-scanpackages to use the new Dpkg::ErrorHandling and
7030     Dpkg::Versions modules.
7032  -- Guillem Jover <guillem@debian.org>  Thu, 29 Nov 2007 06:14:09 +0200
7034 dpkg (1.14.11) unstable; urgency=low
7036   [ Raphaël Hertzog ]
7037   * dpkg-shlibdeps now ignores the lack of dependency information in some
7038     specific cases (instead of failing):
7039     - when the library is in the same package than the binary analyzed
7040     - when the library is not versioned and can't have a shlibs file
7041   * dpkg-shlibdeps now only displays 10 warnings about symbols not found for
7042     each binary and a count of skipped warnings. Closes: #452318
7043   * dpkg-shlibdeps: optimize "dpkg -S" lookups by caching results, patch
7044     from Aaron M. Ucko <ucko@debian.org>. Closes: #452577
7046   [ Guillem Jover ]
7047   * Fix dpkg-scanpackages to properly support an optional override file.
7048     Closes: #452621
7050  -- Guillem Jover <guillem@debian.org>  Sat, 24 Nov 2007 07:19:02 +0200
7052 dpkg (1.14.10) unstable; urgency=low
7054   [ Raphaël Hertzog ]
7055   * dpkg-shlibdeps now correctly identify private libraries (avoid many
7056     warnings with perl/python modules). Closes: #452338
7057   * Move capit() to a Dpkg::Fields module and use it in dpkg-shlibdeps.
7058     Closes: #452262
7059   * Add more debug messages to dpkg-shlibdeps to ease collecting information
7060     in case of problems.
7061   * dpkg-shlibdeps now accepts again empty dependencies in shlibs files.
7062   * dpkg-shlibdeps will try harder to identify packages providing a library
7063     by looking up dpkg -S on the realpath of any symlink to a library.
7064     Closes: #452339
7065   * dpkg-source now correctly identifies the extension of the
7066     orig.tar.{gz,bz2,lzma} file and won't unexpectedly create "Format: 2.0"
7067     .dsc files.
7069   [ Guillem Jover ]
7070   * Add support for Package-Type in dpkg-name.
7071   * Restore cross compilation support by honouring the environment host and
7072     arch variables to override the default values on the dpkg-dev scripts.
7074   [ Updated man pages translations ]
7075   * Swedish (Peter Karlsson)
7077   [ Added scripts translations ]
7078   * Swedish (Peter Karlsson)
7080  -- Guillem Jover <guillem@debian.org>  Fri, 23 Nov 2007 06:32:27 +0200
7082 dpkg (1.14.9) unstable; urgency=low
7084   [ Raphaël Hertzog ]
7085   * Fix bad behaviour of Dpkg::Path::get_pkg_root_dir() and adjust
7086     dpkg-shlibdeps accordingly. Closes: #452012
7087   * Fix Dpkg::Deps to accept empty fields. Closes: #452013
7089   [ Updated man pages translations ]
7090   * German (Helge Kreutzmann).
7092  -- Guillem Jover <guillem@debian.org>  Tue, 20 Nov 2007 07:15:41 +0200
7094 dpkg (1.14.8) unstable; urgency=low
7096   [ Raphaël Hertzog ]
7097   * Heavy rework of dpkg-shlibdeps:
7098     - Support "symbols" files to generate finer-grained dependencies.
7099       Those files can be created by the new dpkg-gensymbols command.
7100       Closes: #430367
7101     - Uses now all paths in RPATH (instead of only the first).
7102       Closes: #395942
7103     - Support parsing include directives in /etc/ld.so.conf. Closes: #431597
7104     - Libraries are also searched in the public directories of packages
7105       being built and thus debian/shlibs.local can effectively define
7106       dependencies for libraries that are being built. Closes: #80340
7107     - "symbols" files use the full SONAME as key instead of splitting it in
7108       (name, version) like in the "shlibs" format. This allows binaries to
7109       be linked with unversioned libraries and not fail. Note that
7110       unversioned libraries are still a very bad idea.  Closes: #48208
7111     - dpkg-shlibdeps now supports '-x<package>' options that can be used to
7112       exclude packages from generated dependencies (use with care though).
7113       Closes: #41907, #109954
7114     - If dpkg-shlibdeps doesn't find any dependency information for a
7115       shared library that is actively used, then it will fail. This can be
7116       disabled with the option '--ignore-missing-info'. Closes: #10807
7117   * Switch perl programs to use the new Dpkg::Deps module. This changes the
7118     behaviour of dpkg-gencontrol and dpkg-source which will rewrite and
7119     simplify dependencies and build dependencies as possible. Multiple
7120     dependencies on the same package are replaced by their intersection.
7121     Closes: #178203, #186809, #222652
7123   [ Frank Lichtenheld ]
7124   * Add $(MAKE) check to build target
7125   * Allow using other compressions than gzip on dpkg-source -b
7126     (NOTE: this will result in a Format: 2.0 source package!).
7127     Closes: #382673
7128   * Various small fixes to the manpages suggested by Helge Kreutzmann.
7129     Closes: #445858
7130   * Fix Dpkg::BuildOptions (and thereby dpkg-buildpackage) to really
7131     set DEB_BUILD_OPTIONS. Found by Daniel Shepler. Closes: #446119
7132   * Change some ' in shell code in dpkg-source.1 and dpkg-query.1 to
7133     proper \(aq. Reported by Daniel van Eeden. Closes: #447476
7135   [ Guillem Jover ]
7136   * Use shipped perl modules when calling perl programs at build time.
7137   * Switch perl programs to use the new Dpkg::ErrorHandling and Dpkg::Arch
7138     perl modules.
7139   * Add support for format strings in Dpkg::ErrorHandling functions.
7140   * Move build and host arch detection code from dpkg-architecture to
7141     Dpkg::Arch.
7142   * Add initial udeb support:
7143     - Support new fields Package-Type, Subarchitecture, Kernel-Version
7144       and Installer-Menu-Item. Closes: #383916
7145     - New '--type' option for dpkg-scanpackages.
7146   * Make dpkg-dev Conflict on dpkg-cross << 2.0.0 which was sourcing
7147     dpkg-buildpackage expecting it to be a shell script. Closes: #445852
7148   * Get rid of undefined macros from man pages. Thanks to Colin Watson
7149     for the analysis.
7151   [ Updated dselect translations ]
7152   * Czech (Miroslav Kure).
7154   [ Added programs translations ]
7155   * Thai (Theppitak Karoonboonyanan). Closes: #446501
7157   [ Updated programs translations ]
7158   * Czech (Miroslav Kure).
7159   * Galician (Jacobo Tarrio). Closes: #446624
7160   * Polish (Robert Luberda).
7161   * Russian (Yuri Kozlov). Closes: #446278
7163   [ Updated man pages translations ]
7164   * German (Helge Kreutzmann). Closes: #448354
7165   * Polish (Robert Luberda).
7166   * Swedish (Peter Karlsson).
7168   [ Added scripts translations ]
7169   * German (Helge Kreutzmann). Closes: #448353
7171   [ Updated scripts translations ]
7172   * Polish (Robert Luberda).
7173   * Swedish (Peter Karlsson).
7175  -- Guillem Jover <guillem@debian.org>  Mon, 19 Nov 2007 10:36:30 +0200
7177 dpkg (1.14.7) unstable; urgency=low
7179   [ Guillem Jover ]
7180   * Add back $dpkglib into @INC, needed by the controllib.pl require in
7181     822-date. Closes: #440962
7182   * Document in dpkg-scanpackages that apt now requires Packages.bz2 in
7183     preference to Packages.gz. Closes: #440973
7184   * Stop recognizing the obsolete Optional field when building packages.
7185   * Use fakeroot, if present, by default to gain root privileges in
7186     dpkg-buildpackage.
7187   * Fix typos in dpkg-deb.1 and start-stop-daemon.8. Closes: #441051
7188     Thanks to A. Costa.
7189   * After '<prerm> remove' fails and while doing the error unwinding, if
7190     the '<postinst> abort-remove' call succeeds, preserve the old status
7191     instead of unconditionally setting it to 'Installed'. Closes: #432893
7192     Thanks to Brian M. Carlson.
7193   * Add Vcs-Browser and Vcs-Git fields to debian/control.
7194   * Add a Homepage field to debian/control (to be changed later when
7195     there's a more formal site).
7196   * Allow comparing unsupported architectures for equality and identity.
7197     Based on a patch by Frank Lichtenheld. Closes: #427210
7198   * Document Origin and Bugs fields in deb-control.5. Closes: #173463
7199   * Do not replace substvars for build dependencies (it was not supported
7200     anyway).
7202   [ Frank Lichtenheld ]
7203   * Add _MTN to dpkg-source -i default regex. Suggested by Jari Aalto.
7204   * Convert dpkg-buildpackage to a Perl script.
7205     Fix some bugs in the new script detected in experimental:
7206     Closes: #444362
7207   * dpkg-buildpackage accepts a -j<n> option now which will set
7208     MAKEFLAGS(-j<n>) and DEB_BUILD_OPTIONS(parallel=<n>) accordingly.
7209     parallel=<n> in DEB_BUILD_OPTIONS will be passed to MAKEFLAGS as
7210     well. Based on an idea by Robert Millan. Closes: #440636
7211   * Allow dpkg-source -I without a pattern which will load a default
7212     list of pattern similar to -i without regexp. Patch by
7213     Jari Aalto. Closes: #440972
7214   * Rework documentation of dpkg-source's -i and -I options.
7215     Closes: #323911, #440956
7216   * Add --utf8-strings to gpg call in dpkg-buildpackage since
7217     that seems to be the better default. Suggested by Székelyi Szabolcs.
7218     Closes: #379418
7219   * Let dpkg-buildpackage error out early if the version number from
7220     the changelog is not a valid Debian version. Closes: #216075
7221   * Fix dpkg-source to create correct diffs for files with spaces in
7222     their name (apparently we don't have many of those ;).
7223     Based on a patch by Marcel Toele. Closes: #445380
7225   [ Updated programs translations ]
7226   * Basque (Piarres Beobide). Closes: #440859
7227   * Danish (Claus Hindsgaul). Closes: #441106
7228   * French (Frédéric Bothamy).
7229   * German (Sven Joachim). Closes: #440537
7230   * Nepali (Shiva Prasad Pokharel). Closes: #437825
7231   * Portuguese (Miguel Figueiredo). Closes: #441113
7232   * Romanian (Eddy Petrişor).
7233   * Vietnamese (Clytie Siddall). Closes: #440502
7234   * Korean (Sunjae Park). Closes: #443190
7236   [ Updated man pages translations ]
7237   * German (Helge Kreutzmann).
7238   * Swedish (Peter Karlsson).
7239   * Korean (Sunjae Park). Closes: #443191
7241   [ Updated scripts translations ]
7242   * Correct a typo in the French translation. Closes: #443276
7243   * Swedish (Peter Karlsson).
7245  -- Guillem Jover <guillem@debian.org>  Mon, 08 Oct 2007 07:31:34 +0300
7247 dpkg (1.14.6) unstable; urgency=low
7249   [ Frank Lichtenheld ]
7250   * Synchronise usage information of dpkg, dpkg-deb, and
7251     dpkg-query man pages. This fixes some small mistakes
7252     and also Closes: #321520
7254   [ Guillem Jover ]
7255   * Man pages cleanup:
7256     - Some italics and bold fixes.
7257     - Unify ellipsis, argument separator, and remove redundant program name
7258       preceding the options.
7259     - Substitute 'FILES' header with 'SEE ALSO' in dpkg-buildpackage(1),
7260       and remove leftover string from man page split. Closes: #439306
7261     - Split option descriptions so that it gets easier to distinguish.
7262     - Unify author and copyright information formatting.
7263   * Move variables automatically modified at build time for the perl scripts
7264     to a new style perl module (Dpkg) and make all programs use it.
7265   * Switch 'dpkg-gettext.pl' to a new style perl module (Dpkg::Gettext).
7266   * Implement support for Breaks field. Closes: #379140
7267     Thanks to Ian Jackson.
7268   * Run the deconfiguration of each package to be deconfigured once, instead
7269     of once per each conflicting package being removed. Closes: #378003
7270     Thanks to Ian Jackson.
7271   * Do not segfault when the result from a 'dpkg-query -l' is bigger than
7272     the total number of current packages, and do not produce repeated
7273     results with overlapping patterns on 'dpkg-query -W'. Closes: #428427
7274   * Tightening dpkg-dev versioned Depends to dpkg 1.14.6, and dpkg Conflicts
7275     against << dpkg-dev 1.14.6, where the perl modularization started.
7276   * Do not print empty lines after 'Setting up ...' output. Closes: #392317
7277   * When a slave alternative is inapplicable do not attempt to create the
7278     slave link before removing it again. Closes: #411699
7279     Thanks to Ian Jackson.
7280   * Do not consider it a file conflict if the package contains a symlink
7281     to a directory where the existing symlink on-disk points to the
7282     same place. Closes: #377682
7283     Thanks to Ian Jackson.
7284   * Fix perl warnings:
7285     - When removing a non diverted file with dpkg-divert. Closes: #438416
7286   * Implement support for Homepage field. Closes: #142324
7287   * Ignore XB- fields instead of XC- fields from control file binary package
7288     stanzas in dpkg-genchanges.
7289   * Explicitly ignore all known fields from the control file source package
7290     stanza in dpkg-genchanges, instead of leaving unknown fields unwarned.
7291   * Implement support for Vcs-Browser, Vcs-Arch, Vcs-Bzr, Vcs-Cvs, Vcs-Darcs,
7292     Vcs-Git, Vcs-Hg, Vcs-Mtn and Vcs-Svn fields in control file source
7293     package stanza.
7294   * Implement support for Tag field.
7296   [ Updated scripts translations ]
7297   * French (Frédéric Bothamy, Christian Perrier).
7298   * Swedish (Peter Karlsson).
7300   [ Updated programs translations ]
7301   * Dzongkha (Tshewang Norbu). Closes: #430931
7302   * Nepali (Shiva Prasad Pokharel). Closes: #435353
7303   * Polish (Robert Luberda).
7304   * Russian (Yuri Kozlov). Closes: #436147
7305   * Swedish (Peter Karlsson).
7307   [ Updated dselect translations ]
7308   * Russian (Yuri Kozlov). Closes: #436149
7309   * Swedish (Peter Karlsson).
7311   [ Updated man pages translations ]
7312   * German (Helge Kreutzmann).
7313   * Polish (Robert Luberda).
7314   * Swedish (Peter Karlsson).
7316  -- Guillem Jover <guillem@debian.org>  Wed, 05 Sep 2007 07:36:02 +0300
7318 dpkg (1.14.5) unstable; urgency=low
7320   [ Guillem Jover ]
7321   * Add lpia support to ostable and triplettable.
7322   * Fix dpkg-source to not emit duplicated entries for the Architecture field
7323     in the .dsc file.
7324   * Fix dpkg-scanpackages to load the override file after having filled the
7325     packages information. Closes: #428169, #428470
7326   * Add '.shelf' to the default dpkg-source -i regex. Closes: #427827
7327     Thanks to Adeodato Simó.
7328   * Support a colon separated list of paths from the ELF RPATH field in
7329     dpkg-shlibdeps. Thanks to Jiří Paleček. Closes: #427988
7330   * Man pages cleanup:
7331     - Reference deb-substvars(5) instead of dpkg-substvars(5). Closes: #429182
7332     - Mark dpkg-* commands in bold.
7333     - Unify title header.
7334     - Remove an additional space in install-info(8) and mark gzip in bold
7335       and remove redundant reference to GNU.
7336     - Fix explanation of dpkg-source '-b' option, remove a reference to
7337       checking for a missing empty string argument, and add a reference
7338       to '-sX' arguments affecting the behaviour. Closes: #428167
7339     - Remove documented dpkg-gencontrol options in dpkg-source left over
7340       from the man pages split.
7342   [ Frank Lichtenheld ]
7343   * Fix typo in German translation of start-stop-daemon(8).
7344     Noted by Joachim Breitner. Closes: #430008
7345   * Correct permission and owner/group handling when extracting
7346     tar balls to match more the user's preferences instead of
7347     ours or the ones from the originator of the tar ball. Patch
7348     by Ian Jackson. Closes: #390915, #207289
7349   * dpkg-source warns now about new empty files since those will
7350     not be represented in the diff. Closes: #383394
7352   [ Updated dselect translations ]
7353   * French (Christian Perrier).
7354   * Romanian (Eddy Petrişor).
7356   [ Updated programs translations ]
7357   * Estonian (Ivar Smolin). Closes: #427589
7358   * Portuguese (Miguel Figueiredo).
7359   * Romanian (Eddy Petrişor).
7360   * Spanish (Javier Fernandez-Sanguino). Closes: #429958
7362   [ Updated man pages translations ]
7363   * German (Helge Kreutzmann).
7365  -- Frank Lichtenheld <djpig@debian.org>  Tue, 03 Jul 2007 00:27:07 +0200
7367 dpkg (1.14.4) unstable; urgency=low
7369   [ Guillem Jover ]
7370   * Fix perl warnings:
7371     - When unpacking a source package with -sp from a different directory
7372       than the one containing the tarball. Closes: #424998
7373   * Remove an unused variable in dpkg-statoverride by renaming it to the
7374     initially intended name. Closes: #425041
7375   * Fix loose regex in dpkg-source (/\.debian.tar/ -> /\.debian\.tar/).
7376     Thanks to Kylan Robinson. Closes: #425629
7377   * Revert change on 1.14.0 from Aaron M. Ucko. Trim down duped entries only
7378     when passing them to dpkg-query instead. Closes: #425641
7379   * Recognize again architecture wildcards. Closes: #424670
7381   [ Updated programs translations ]
7382   * Basque (Piarres Beobide). Closes: #425776
7383   * French (Frédéric Bothamy).
7384   * Galician (Jacobo Tarrío).
7386  -- Guillem Jover <guillem@debian.org>  Thu, 24 May 2007 19:30:26 +0300
7388 dpkg (1.14.3) unstable; urgency=low
7390   [ Guillem Jover ]
7391   * Fix perl warnings:
7392     - In dpkg-genchanges when called with -S. Closes: #423193
7393     - In architecture comparison operations. Closes: #423452
7394     - Fill slavepaths undefined entries with an empty string to guarantee
7395       they are always defined. Closes: #423140, #423451, #423544, #423555
7396   * Include the new split man pages deb-substvars.5, deb-override.5 and
7397     deb-shlibs.5 in dpkg-dev.
7398   * Fix deb-substvars.5 section to match reality.
7399   * Refactor update-alternatives.
7400   * Fix dpkg-divert to work again w/o specifying the '--divert' and
7401     '--package' or '--local' options. Closes: #423864
7402   * Document in install-info.8 that when no '--section' option is specified,
7403     install-info will try to use the INFO-DIR-SECTION entry from the info
7404     file. Add missing commas. Thanks to Kurt B. Kaiser. Closes: #397737
7405   * Disambiguate in install-info.8 the use of 'Info directory' with
7406     'Info dir file'. Closes: #420766
7407   * Document in deb-control.5 that the control file can have '#'-style
7408     comments. Closes: #406481
7409   * Make start-stop-daemon fork twice while daemonizing.
7411   [ Updated scripts translations ]
7412   * French (Frédéric Bothamy). Closes: #423392
7414   [ Updated programs translations ]
7415   * French (Christian Perrier).
7416   * German (Sven Joachim). Closes: #423401
7418   [ Updated dselect translations ]
7419   * German (Sven Joachim). Closes: #423403
7421  -- Guillem Jover <guillem@debian.org>  Tue, 15 May 2007 16:02:59 +0300
7423 dpkg (1.14.2) unstable; urgency=low
7425   [ Guillem Jover ]
7426   * Remove bashisms in dpkg-buildpackage. Closes: #422239
7427   * Handle case in update-alternatives when there's no existing alternative
7428     to configure. Closes: #260987, #353252, #367717, #392431
7429   * Add solaris support to ostable and triplettable. Closes: #361866
7430   * Properly create the generic name symlink in update-alternatives for new
7431     alternatives. Closes: #422979
7432   * Include translations again, which disappeared due to a dirty source tree
7433     and a bogus Makefile.am for the man pages. Closes: #423029, #423085
7435  -- Guillem Jover <guillem@debian.org>  Wed, 09 May 2007 22:22:45 +0300
7437 dpkg (1.14.1) unstable; urgency=low
7439   [ Guillem Jover ]
7440   * Fix partial upgrades by tightening dpkg-dev versioned Depends to
7441     dpkg 1.14.0, and dpkg Conflicts against << dpkg-dev 1.14.0, where
7442     the triplettable support first appeared. Closes: #422848
7444  -- Guillem Jover <guillem@debian.org>  Tue, 08 May 2007 18:23:49 +0300
7446 dpkg (1.14.0) unstable; urgency=low
7448   [ Guillem Jover ]
7449   * Make the copyright information in dpkg-deb.1 and dpkg-split.1 match the
7450     one in the source. Thanks to Nicolas François. Closes: #379320
7451   * Allow dpkg-buildpackage to properly override '-b' when passed after '-B'.
7452     Thanks to Julian Gilbey. Closes: #397479
7453   * Move retrieval of uid and gid information from controllib.pl into a
7454     function, so that scripts not needing it do not execute that code.
7455     Based on a patch by Riku Voipio. Closes: #396884
7456   * Do not bail out in dpkg when building without start-stop-daemon support,
7457     by checking if the macro value is true instead of it being defined.
7458     Thanks to Mark Rosenstand.
7459   * Make all perl scripts use strict and warnings, to ease catching errors.
7460   * Refactor update-alternatives code, with the side effect that now commands
7461     on non existing link group files will return an error code (except
7462     for --remove, now). Closes: #273407
7463   * Add a missing newline to a warning message in dpkg. Closes: #390914
7464     Thanks to Ian Jackson.
7465   * Fix typo in variable name in dpkg-source which was causing it to not
7466     create directories when extracting the diff. Closes: #374645
7467   * Fix up and down keystrokes in the dselect help message. Closes: #383438
7468     Thanks to Sven Joachim.
7469   * Convert 822-date to be a simple wrapper around 'date -R'. 822-date is
7470     now deprecated and should not be used anymore. It might be removed
7471     sometime in the future. Closes: #31634, #367712, #314462
7472     Thanks to Frank Lichtenheld.
7473   * Add '.gitignore' to the default dpkg-source -i regex. Closes: #409566
7474     Thanks to Julien Cristau.
7475   * Add '.hg' to the default dpkg-source -i regex. Closes: #414794
7476   * Use l10n-friendlier strings to describe dependencies. Closes: #390916
7477     Thanks to Ian Jackson.
7478   * Change priority for dpkg-dev from standard to optional to match the
7479     override.
7480   * Do not use a build-stamp in debian/rules.
7481   * Fix confusing bottom status lines in dselect, unifying them by removing
7482     the method or package name and capitalizing. Closes: #9085
7483   * Check proper error value returned by BZ2_bzerror. Closes: #410605
7484   * Exit with an error instead of an assert if a file name is too long when
7485     building a .deb package. Closes: #393069
7486   * Exit with an error instead of an assert if the number of conflictors is
7487     exceeded. Remove bogus comments. Closes: #377855
7488   * Fix regular expression special-casing Origin, Bugs and Maintainer fields
7489     which was making X[SBC]- fields containing such strings to propagate into
7490     the .deb control file unprocessed. Thanks to Colin Watson.
7491   * Add support for '--admindir' in dpkg-buildpackage, dpkg-checkbuilddeps
7492     and dpkg-shlibdeps. Closes: #162348
7493   * Cleaning and format unification of manual pages.
7494   * Make the override-file argument to dpkg-scanpackages optional.
7495   * Refactor compression filtering code.
7496   * Split override file information from dpkg-scanpackages.1 into
7497     deb-override.5 manual page.
7498   * Split dpkg-source.1 into independent man pages, namely deb-substvars.5,
7499     deb-shlibs.5, dpkg-buildpackage.1, dpkg-distaddfile.1, dpkg-genchanges.1,
7500     dpkg-gencontrol.1, dpkg-parsechangelog.1 and dpkg-shlibdeps.1.
7501   * Support building binary packages with the member data.tar.lzma compressed
7502     with lzma.
7503   * Require gettext 0.16.1.
7504   * Show the epoch (if present) when displaying package versions.
7505     Closes: #107449, #179913, #345594, #393924, #405668
7506     Based on a patch by Jeffrey W. Baker.
7507   * Switch from pseudo-tags to usertags, and update the documentation.
7508   * Fix typo in German dpkg man page. Closes: #416167
7509     Thanks to Martin Weis.
7510   * Properly sort Uploaders field in generated .dsc files.
7511   * Reorder a bit the fields in output files.
7512   * Speed up dpkg-shlibdeps by avoiding doing a dpkg-query for duped
7513     libraries. Thanks to Aaron M. Ucko. Closes: #421290
7514   * Generalize source architecture handling by abstracting it through the new
7515     Debian triplet and the new triplettable.
7516   * Add armel support to ostable and triplettable. Closes: #414087
7518   [ Updated programs translations ]
7519   * Dutch (Bart Cornelis).
7520   * French (Frédéric Bothamy).
7521   * Polish (Robert Luberda).
7522   * Romanian (Eddy Petrişor).
7523   * Simplified Chinese (Anthony Wong). Closes: #415320
7524   * Traditional Chinese (Anthony Wong). Closes: #415230
7526   [ Added programs translations ]
7527   * Estonian added (Ivar Smolin). Closes: #422404
7528   * Kurdish added (Erdal Ronahi). Closes: #418154
7529   * Marathi added (Priti Patil). Closes: #416810
7531   [ Updated man pages translations ]
7532   * German (German l10n team). Closes: #418528
7533   * Polish (Robert Luberda).
7535   [ Updated dselect translations ]
7536   * Dutch (Bart Cornelis).
7537   * Polish (Robert Luberda).
7539  -- Guillem Jover <guillem@debian.org>  Tue, 08 May 2007 11:11:50 +0300
7541 dpkg (1.13.25) unstable; urgency=low
7543   [ Guillem Jover ]
7544   * Fix year 2018 in changelog for Michael Alan Dorman's upload in 1998,
7545     which was confusing the changelog parsers. Closes: #402526
7546   * Document in its man page that update-alternatives requires cooperation
7547     from all packages dealing with the specific file. Closes: #396338
7548     Thanks to Tomas Pospisek <tpo_deb@sourcepole.ch>.
7549   * Require POSIX inside subprocerr in controllib.pl. Closes: #390636
7550     Thanks to Brendan O'Dea <bod@debian.org>.
7551   * Support extracting lzma compressed source and binary packages,
7552     and add a Suggests on package lzma. Closes: #347715
7553   * Add '/emul/ia32-linux' biarch paths to dpkg-shlibdeps. Closes: #403216
7554   * Remove non-modified /etc/dpkg/dpkg.cfg configuration file when upgrading
7555     from versions 1.9.21 through 1.10.28, to avoid getting prompted about
7556     conffile changes. Closes: #398061
7558   [ Updated programs translations ]
7559   * Chinese (Traditional, Asho Yeh).
7560   * Korean (Sunjae Park). Closes: #394135, #404938
7561   * Norwegian Bokmal (Hans Fredrik Nordhaug). Closes: #391143
7562   * Nepali (Shiva Prasad Pokharel).
7563   * Romanian (Eddy Petrişor).
7564   * Catalan (Jordà Polo).
7565   * Swedish (Peter Karlsson).
7566   * Vietnamese (Clytie Siddall). Closes: #399343
7568   [ Added programs translations ]
7569   * Punjabi (A S Alam).
7571   [ Updated scripts translations ]
7572   * Catalan (Jordi Mallach).
7574   [ Updated dselect translations ]
7575   * Korean (Sunjae Park). Closes: #404943
7577  -- Guillem Jover <guillem@debian.org>  Tue,  2 Jan 2007 00:23:57 +0200
7579 dpkg (1.13.24) unstable; urgency=low
7581   [ Guillem Jover ]
7582   * Fix dselect segfault by adding a field description matching the
7583     dependency field enum position. Closes: #392731, #392724
7585   [ Updated programs translations ]
7586   * Nepali (Shiva Prasad Pokharel). Closes: #373728
7588  -- Guillem Jover <guillem@debian.org>  Fri, 13 Oct 2006 16:34:39 +0300
7590 dpkg (1.13.23) unstable; urgency=low
7592   [ Guillem Jover ]
7593   * Add initial support for the Breaks field, by parsing but rejecting it.
7594     Thanks to Ian Jackson <iwj@ubuntu.com>. Closes: #375703
7595   * Use dpkg-architecture from the source tree to get the target Debian
7596     architecture, instead of duplicating the logic in the m4 files.
7597   * Remove comment headers in dselect/helpmsgs.{cc,h} about the files being
7598     autogenerated, replace them with a proper license and copyright comment.
7599     Closes: #382308
7600   * Add a new line at the end of m4/compiler.m4 file, to cope with an
7601     autoreconf failure due to the new m4 1.4.7.
7603   [ Nicolas François ]
7604   * Specify --null before the -T tar's option to avoid the "tar: -: file name
7605     read contains nul character" warning.
7606     Closes: #376351, #375749, #376724, #377279
7608   [ Added programs translations ]
7609   * Dzongkha (Kinley Tshering).
7611   [ Updated programs translations ]
7612   * Basque (Piarres Beobide). Closes: #375118
7613   * Brazilian Portuguese (Andre Luis Lopes).
7614   * Catalan (Robert Millan, Jordi Mallach). Closes: #383448
7615   * Czech (Miroslav Kure).
7616   * Danish (Claus Hindsgaul).
7617   * Dutch (Bart Cornelis).
7618   * Dzongkha (Tenzin Dendup). Closes: #388192
7619   * French (Frédéric Bothamy).
7620   * Galician (Jacobo Tarrio).
7621   * German (Sven Joachim). Closes: #381409, #381740
7622   * Hungarian (SZERVÁC Attila).
7623   * Italian (Stefano Canepa, Davide Viti). Closes: #387821
7624   * Japanese (Kenshi Muto). Closes: #386963
7625   * Khmer (Khoem Sokhem). Closes: #375099
7626   * Portuguese (Miguel Figueiredo, Rui Branco).
7627   * Romanian (Eddy Petrişor).
7628   * Russian (Yuri Kozlov). Closes: #376746, #391143
7629   * Slovak (Peter Mann). Closes: #387282
7630   * Spanish (Javier Fernandez-Sanguino). Closes: #386759
7631   * Swedish (Daniel Nylander). Closes: #383643
7632   * Vietnamese (Clytie Siddall). Closes: #383588
7634   [ Added scripts translations ]
7635   * Catalan (Jordi Mallach).
7636   * French (Philippe Batailler).
7638   [ Updated dselect translations ]
7639   * Brazilian Portuguese (Andre Luis Lopes).
7640   * Catalan (Robert Millan, Jordi Mallach).
7641   * Danish (Claus Hindsgaul).
7642   * German (Sven Joachim). Closes: #384843
7643     (Sven is now the new German translation maintainer for dpkg and dselect).
7644   * Hungarian (SZERVÁC Attila).
7645   * Indonesian (Arief S Fitrianto). Closes: #391144
7646   * Italian (Stefano Canepa).
7647   * Japanese (Kenshi Muto).
7648   * Norwegian Bokmål (Hans Fr. Nordhaug).
7649   * Russian (Yuri Kozlov).
7650   * Slovak (Peter Mann).
7651   * Spanish (Javier Fernández-Sanguino Peña). Closes: #391144
7652   * Swedish (Daniel Nylander).
7653   * Vietnamese (Clytie Siddall).
7655   [ Updated man pages translations ]
7656   * French (Philippe Batailler).
7657   * German (Helge Kreutzmann). Closes: #379030
7659   [ Added man pages translations ]
7660   * German (Helge Kreutzmann).
7661     Closes: #379286, #379298, #379417, #379433, #379661, #379798, #379825
7662     Closes: #379985, #380130, #380239, #380365, #381047, #380660, #380443
7663     Closes: #381349, #381488
7664   * Japanese (KISE Hiroshi).
7665     Closes: #381141, #381865, #384768, #385675, #386965, #388837
7667  -- Guillem Jover <guillem@debian.org>  Thu, 12 Oct 2006 02:56:09 +0300
7669 dpkg (1.13.22) unstable; urgency=low
7671   [ Guillem Jover ]
7672   * Version the po4a Build-Depends to >= 0.23 as we are using options
7673     introduced in that version. Thanks to Sergio Gelato. Closes: #370536
7674   * Add '.bzrtags' directory to default dpkg-source -i regex.
7675     Suggested by Adeodato Simó. Closes: #370392
7676   * Print update-alternatives '--config' listing layout evenly spaced.
7677     Closes: #325895
7678   * Clarify the legend in update-alternatives '--help' (Andrew Ferrier).
7679     Closes: #305318
7680   * Add the source version inside parenthesis to the Source field in the
7681     generated .changes and binary packages if the binary package version
7682     differs (like in binNMUs). Closes: #62529
7683   * Add missing comment serving as documentation about abort-remove on
7684     removal in dpkg.postinst (Justin Pryzby). Closes: #372145
7685   * Fix typo in dpkg-deb manpage (Robert Luberda). Closes: #373999
7686   * Clarify dpkg-architecture new options '-e' and '-i' in man page, add
7687     backward compatibility information and give some examples.
7688     Thanks for the initial suggestions to Junichi Uekawa. Closes: #370830
7689   * Modified some strings to be able to merge them in the .pot files.
7690   * Add new '--umask' option to start-stop-daemon. Closes: #368003
7692   [ Frank Lichtenheld ]
7693   * dpkg-source issued spurious warnings about fields defined with
7694     XB-. They now get correctly suppressed. Closes: #374154
7695   * Give a correct warning when the user requested an unknown
7696     sign command that we will default to a pgp style interface.
7697     Closes: #133470
7699   [ Updated programs translations ]
7700   * Romanian (Eddy Petrişor).
7701   * Galician (Jacobo Tarrio).
7702   * French (Christian Perrier).
7703   * Swedish (Peter Karlsson).
7704   * Basque (Piarres Beobide). Closes: #373107
7705   * Polish (Robert Luberda).
7706   * Catalan (Guillem Jover).
7708   [ Added programs translations ]
7709   * Nepali (Paras Pradhan). Closes: #373728
7711   [ Updated dselect translations ]
7712   * Simplified Chinese (Kov Tchai). Closes: #366260
7714   [ Updated man pages translations ]
7715   * Polish (Robert Luberda).
7717   [ Christian Perrier ]
7718   * Typo fix in update-alternatives ("alternativse"). Thanks to Eddy Petrisor
7719     for spotting it. Translations unfuzzied.
7720   * Make similar messages in dpkg-statoverride and dpkg-divert exactly similar
7721     Thanks to Eddy Petriso for spotting them, again.
7723  -- Guillem Jover <guillem@debian.org>  Wed, 21 Jun 2006 18:03:29 +0300
7725 dpkg (1.13.21) unstable; urgency=low
7727   [ Guillem Jover ]
7728   * Disambiguate error message about conflicting command line actions by
7729     providing both long and short option names. Based on a suggestion by
7730     Josip Rodin. Closes: #45575
7731   * Add '/lib32' and '/usr/lib32' to the dpkg-shlibdeps library path search
7732     list. Closes: #367892
7733   * Revert usage of English perl non-essential module from install-info.
7734     Closes: #369928, #369958, #370157, #370174, #370210
7735   * Print the correct file being parsed by dpkg-parsechangelog's debian
7736     parser. Closes: #368961
7737   * Fix dependency cycle breaking in the case when every link involves
7738     a Provides (Ian Jackson). This is a proper fix for #349442.
7739     Closes: #370017
7741   [ Updated programs translations ]
7742   * Czech (Miroslav Kure).
7743   * Vietnamese (Clytie Siddall).
7745  -- Guillem Jover <guillem@debian.org>  Sun,  4 Jun 2006 19:02:44 +0300
7747 dpkg (1.13.20) unstable; urgency=low
7749   [ Frank Lichtenheld ]
7750   * Add gettext support for the Perl scripts. Based on a patch by
7751     Nicolas François. Closes: #165843
7752   * Only print usage information of dpkg-scanpackages on stdout
7753     if requested explicitly. Use stderr in case of error.
7754     Closes: #366659
7755   * Add remarks to dpkg-scansources and dpkg-scanpackages
7756     man pages about the need to compress the generated files
7757     to be able to access them via apt. Closes: #65839
7758   * Allow '+' and '.' in distribution names in Debian changelogs.
7759     Based on a patch by John Wright.
7760     Closes: #361171
7761   * Use the Debian keyring in dpkg-source when checking signatures
7762     of .dsc files, if available. Closes: #364726
7763   * Let dpkg-buildpackage pass through all remotely sensible
7764     -sX options to dpkg-source (-s[nsAkurKUR] currently).
7765     Closes: #36586
7766   * Improve the description of --showformat in dpkg-deb
7767     man page and add a pointer to the complete description
7768     of the option in dpkg-query.
7769   * Don't spew out garbage from dpkg-deb, if the second argument
7770     to -I is a absolute filename. Based on a patch by Ian Eure.
7771     Closes: #35573
7772   * Fix --ignore-depends argument value parsing. Closes: #169125
7773   * Completely remove md5sum diversion madness.  Instead, we Pre-Depend
7774     on a version of textutils which provides /usr/bin/md5sum.  We rely on
7775     the logic in coreutils to remove our diversions. Patch by
7776     Ian Jackson. Closes: #315784, #313605
7777   * Try harder to detect dependency cycles that contain Provides
7778     links. Closes: #349120, #349442
7779   * Update archtable to reflect current archive: Add amd64 and remove
7780     sh. Closes: #367329
7781   * Don't claim in dpkg man page that we set DPKG_OLD_CONFFILE and
7782     DPKG_NEW_CONFFILE on sub shells since we actually don't.
7783   * Fix printing of user defined fields with --showformat and
7784     document the existence of this feature in dpkg-query man page.
7785   * Make --forget-old-unavail more reliable by deleting architecture
7786     information of removed packages. Patch by Piotr Engelking.
7787     Closes: #208532
7788   * When building packages with dpkg-deb give a more useful error
7789     message in case a conffile entry has leading whitespace. Patch
7790     by David Lopez Moreno. Closes: #281562
7791   * Don't drop directories that contain our conffiles too early from
7792     our file listing. Otherwise we might leave them behind on purge
7793     if we share them with other packages.
7794     Closes: #174180, #198128, #198522, #318825, #366178
7796   [ Nicolas François ]
7797   * Fix typos in the Russian man pages. Thanks to Stepan Golosunov.
7798     Closes: #366587
7799   * Honour tabbing requested via --showformat even if the field to
7800     be printed is empty. Closes: #361671
7801   * Flush the terminal's input before prompting what to do with a
7802     configuration file. Closes: #316551
7803   * Fix the --force-depends-version option. Closes: #57104
7805   [ Guillem Jover ]
7806   * Standardize scripts usage output format and at the same time make
7807     the strings easier for the translators. Add '--help' and '--version'
7808     for most of the scripts. Print the usage and version to stdout.
7809   * Do not strip the epoch from the source:Upstream-Version substvar.
7810     Closes: #366351
7811   * Properly check and report lock file existence in install-info.
7812     Based on patch by Ben Pfaff. Closes: #368874
7813   * Correct default info directory for '--infodir' in install-info man
7814     page (Ben Pfaff). Closes: #368875
7815   * Print the bogus version and prefix the error message with 'dpkg: '
7816     when using '--compare-versions'. Closes: #369177
7817   * Remove duplicated string " , at changelog " in dpkg-parsechangelog's
7818     debian style parser (Julian Gilbey). Closes: #369205
7819   * Update the Section and Priority fields in the status file from the
7820     new packages. We assume that the information from the binary package
7821     is correct, otherwise it should be fixed there to match the archive
7822     override file (Koblinger Egmont).
7823     Closes: #54529, #58106, #81171, #230610, #237622, #237626
7824   * Bump Standards-Version to 3.7.2 (no changes needed).
7825   * Add lintian overrides for dpkg, dpkg-dev, dselect and sources.
7826   * Replace logrotate installation logic with dh_installlogrotate.
7828   [ Updated programs translations ]
7829   * Portuguese (Miguel Figueiredo).
7830   * Polish (Robert Luberda).
7831   * Hungarian (SZERVÁC Attila).
7832   * Romanian (Eddy Petrişor).
7833   * Russian (Yuri Kozlov). Closes: #366353
7834   * Czech (Miroslav Kure).
7835   * Simplified Chinese (Kov Tchai). Closes: #366985
7836   * Swedish (Peter Karlsson).
7837   * Galician (Jacobo Tarrio).
7838   * Slovak (Peter Mann).
7839   * Dutch (Bart Cornelis).
7840   * Basque (Piarres Beobide). Closes: #366185
7842   [ Updated dselect translations ]
7843   * Polish (Robert Luberda).
7844   * Basque (Piarres Beobide). Closes: #366187
7845   * Czech (Miroslav Kure).
7846   * Romanian (Eddy Petrişor).
7848   [ Updated man pages translations ]
7849   * Polish (Robert Luberda).
7851  -- Guillem Jover <guillem@debian.org>  Wed, 31 May 2006 07:43:16 +0300
7853 dpkg (1.13.19) unstable; urgency=low
7855   [ Frank Lichtenheld ]
7856   * Add -follow (back) to find call in dpkg-scanpackages.
7857     Closes: #358011
7858   * Fix error in archive.c that lead to a infinite loop when
7859     installing files with long, non-ASCII filenames in
7860     certain locales. Closes: #346436
7862   [ Updated programs translations ]
7863   * French (Christian Perrier).
7864   * Galician (Jacobo Tarrio).
7865   * Romanian (Eddy Petrişor).
7866   * Dutch (Bart Cornelis).
7867   * Swedish (Peter Karlsson).
7868   * Danish (Claus Hindsgaul). Closes: #362317
7869   * Czech (Miroslav kure).
7870   * Vietnamese (Clytie Siddall). Closes: #363264
7871   * Spanish (Javier Fernández-Sanguino Peña). Closes: #357911
7872   * Basque (Piarres Beobide). Closes: #363683, #363679
7873   * Japanese (Kenshi Muto). Closes: #365334
7875   [ Updated dselect translations ]
7876   * Romanian (Eddy Petrişor).
7877   * Galician (Jacobo Tarrio).
7878   * French (Christian Perrier).
7879   * Dutch (Bart Cornelis).
7881   [ Nicolas Francois ]
7882   * Generate the Russian man pages in the KOI8-R charset. Closes: #361987
7883   * Document the shlibs.local format in dpkg-source(1). Closes: #316485
7884   * Fix a typo in an error message. Thanks to Justin Pryzby. Closes: #364539
7886   [ Guillem Jover ]
7887   * Fix strings so that they can be more easily translated. Closes: #134358
7888   * Add new substvars source:Version, source:Upstream-Version and
7889     binary:Version so packages will be able to avoid breaking on binNMUs.
7890     Based on a patch by Ken Bloom and Jeroen van Wolffelaar. Closes: #358530
7891   * Support binNMU safe packages even when source and binary differ in
7892     version.
7893   * Rename dpkg:UpstreamVersion to dpkg:Upstream-Version. Make dpkg:Version
7894     and dpkg:Upstream-Version get the current dpkg versions instead of the
7895     ones from the package being built.
7896   * Split usage strings to make it easier for translators when those change.
7897     Closes: #323957
7898   * Standardize start-stop-daemon usage output format.
7899   * Make install-info '--dir-file' option compatible with GNU install-info
7900     by renaming the infodir variable to dirfile and not appending the
7901     '/dir' string except when initializing from '--info-dir' or
7902     '--infodir' (Wayne Davison). Closes: #61640, #67237, #286275
7903   * Make install-info add a new line after adding the last entry at the
7904     end of the dir file, which makes the info readers able to see those
7905     last entries (Nicolas François). Closes: #164495
7906   * Use the numerical value of errno instead of a string in install-info
7907     when checking if the locking error was due to an already existing
7908     file, which is locale dependent, and die accordingly. Based on a patch
7909     by Nicolas François. Closes: #199204, #210781
7910   * Escape hyphens in man pages.
7911   * Bump Standards-Version to 3.7.1.
7912   * Wrapped debian/control fields except Uploaders given current policy.
7914  -- Guillem Jover <guillem@debian.org>  Thu,  4 May 2006 14:05:21 +0300
7916 dpkg (1.13.18) unstable; urgency=low
7918   [ Updated programs translations ]
7919   * Romanian (Sorin Batariuc). Closes: #356664
7920   * Danish (Claus Hindsgaul). Closes: #356188
7921   * Polish (Robert Luberda).
7922   * Dutch (Bart Cornelis).
7924   [ Updated dselect translations ]
7925   * Spanish (Javier Fernández-Sanguino Peña). Closes: #357912
7926   * Danish (Claus Hindsgaul). Closes: #356188
7927   * Polish (Robert Luberda).
7928   * Russian (Yuri Kozlov). Closes: #361415
7930   [ Updated man pages translations ]
7931   * Typos corrected in French dpkg-source man page
7932     Thanks to Nicolas Bonifas who spotted them
7933   * Russian completed. Thanks to Yuri Kozlov.
7934     Closes: #361415
7936   [ Christian Perrier ]
7937   * Correct typos in man pages. Thanks to A. Costa for spotting them
7938     Closes: #358091, #358092, #358093, #358094, #358095
7940   [ Guillem Jover ]
7941   * Add a '[!]' in --force-all help denoting that it is a dangerous option.
7942     Closes: #359935
7943   * Prefix any chroot path to the exec file name when stating it in
7944     start-stop-daemon. Closes: #318771, #333066
7945   * Add '-r' to the help output of start-stop-daemon (Jared Spiegel).
7946     Closes: #354869
7947   * Use mustsetvar when setting the value of the sversion variable in
7948     dpkg-buildpackage (Andrew Suffield). Closes: #158953
7949   * Pass '--admindir' option over to dpkg-query when passing '--admindir' or
7950     '--root' to dpkg (initial patch by Branden Robinson).
7951     Closes: #153305, #271041, #282853, #307715, #355915
7952   * Support system library directories in dpkg-shlibdeps symlinked from
7953     '/lib/ldconfig'. Closes: #356452
7954   * Document that 'dpkg --get-selections' and 'dpkg-query -l' without a
7955     pattern will not list packages in state purge. Closes: #355633
7956   * Obsolete force/refuse 'auto-select' dpkg option.
7957   * Add new '--clear-selections' option to dpkg (Andrew Suffield).
7958     Closes: #112388
7959   * Use '--clear-selections' in the dpkg man page example on how to transfer
7960     the status to another installation. Closes: #137442
7962  -- Guillem Jover <guillem@debian.org>  Mon, 10 Apr 2006 06:40:22 +0300
7964 dpkg (1.13.17) unstable; urgency=low
7966   [ Frank Lichtenheld ]
7967   * Fix handling of -DArchitecture=foo in dpkg-gencontrol. Closes: #251911
7968   * Handle architectures in all dependency fields in debian/control,
7969     even those of binary packages. Closes: #252657, #324741, #347819
7970   * More dpkg-scanpackages fixes (--arch option handling). Closes: #353506
7972   [ Guillem Jover ]
7973   * Add missing parentheses surrounding a man page section reference
7974     in the dpkg-source man page (Matt Kraai). Closes: #353731
7975   * Fix misspelling of "occurred" in dpkg-gencontrol and dpkg-source
7976     (Matt Kraai). Closes: #353949
7977   * Major cleanup of manpages, by using properly the bold and italic
7978     attributes and other embellishments.
7979   * Add dpkg-query(1) in the SEE ALSO section in dpkg(1). Closes: #354643
7980   * Don't try to compile in SELinux support on GNU/kFreeBSD amd64.
7981   * Add new quiet option to dpkg-source to suppress warnings. Closes: #355065
7982   * Do not expand architecture aliases anymore in .dsc files.
7983   * Change start-stop-daemon's --exec behaviour again on GNU/Linux to compare
7984     the referred file pointed by the '/proc/<pid>/exe' symlink, stripping
7985     any ' (deleted)' string and stating the result. Closes: #354867
7987   [ Updated man pages translations ]
7988   * Polish (Robert Luberda). Closes: #353782
7989   * French (Philippe Batailler).
7991   [ Updated dselect translations ]
7992   * Hungarian (Szervác Attila).
7993   * Dutch (Bart Cornelis).
7994   * Czech (Miroslav Kure).
7996   [ Updated programs translations ]
7997   * Italian (Lele Gaifax)
7998   * Simplified Chinese (Carlos Z.F. Liu).
7999   * Portuguese (Miguel Figueiredo).
8000   * Dutch (Bart Cornelis).
8001   * Hungarian (Szervác Attila).
8002   * Czech (Miroslav Kure).
8003   * Russian (Yuri Kozlov). Closes: #357724
8005  -- Guillem Jover <guillem@debian.org>  Mon, 20 Mar 2006 03:33:03 +0200
8007 dpkg (1.13.16) unstable; urgency=low
8009   * The "not really a brown paper bag needed but it's close" release
8011   [ Guillem Jover ]
8012   * Move auxiliary autotools scripts to config/.
8013   * Require gettext 0.14.5.
8014   * Move the methods directory to dselect/methods, so the contents will not
8015     be installed if dselect is not to be built.
8016   * Move dselect gettext strings to its own domain provided now by the
8017     dselect package.
8019   [ Frank Lichtenheld ]
8020   * Fix override handling in dpkg-scanpackages which was broken in
8021     1.13.14 and .15. Closes: #353305
8022   * Make -isp the default behaviour of dpkg-gencontrol as it is
8023     always used anyway these days. Suggested by Matthew Vernon.
8024     Closes: #215233
8025   * Typo fixes in man pages by A. Costa:
8026     - dpkg-deb.1 Closes: #353424
8027     - dpkg-statoverride.8 Closes: #353425
8028     - install-info.8 Closes: #353426
8029     - start-stop-daemon.8 Closes: #353427
8030     - update-alternatives.8 Closes: #353428
8031     - dpkg.1, dpkg.cfg.5 Closes: #353429
8033  -- Frank Lichtenheld <djpig@debian.org>  Sat, 18 Feb 2006 17:59:00 +0100
8035 dpkg (1.13.15) unstable; urgency=low
8037   [ Guillem Jover ]
8038   * Add a missing closing parenthesis in a dpkg string (Jordi Mallach).
8040   [ Christian Perrier ]
8041   * Updated translations:
8042     - Brazilian Portuguese (Andre Luis Lopes). Closes: #352432
8043     - Galician (Jacobo Tarrio). Closes: #352443
8045   [ Updated translations ]
8046   * Catalan (Jordi Mallach).
8047   * Portuguese (Miguel Figueiredo).
8048   * Swedish (Daniel Nylander).
8050   [ Added translations ]
8051   * Hungarian (Szervác Attila).
8053   [ Added man pages translations ]
8054   * Hungarian (Szervác Attila): dpkg.cfg.5 and dselect.cfg.5.
8056  -- Frank Lichtenheld <djpig@debian.org>  Wed, 15 Feb 2006 23:37:40 +0100
8058 dpkg (1.13.14) experimental; urgency=low
8060   [ Guillem Jover ]
8061   * Make start-stop-daemon print the proper version instead of 'VERSION'.
8062   * Set the HOME environment variable when using the --chuid switch in
8063     start-stop-daemon. Closes: #295169, #267784
8064   * Cleanup and unify program usage and version output, make it more i18n
8065     friendly. Fix wrong gettext usage with interparsed macros.
8066     Thanks to Changwoo Ryu for noticing. Closes: #237915
8067   * Mark some strings as translatable (Changwoo Ryu). Closes: #256387
8068   * Remove a trailing 'C' character from update-alternatives manpage.
8069   * Use pkg-config to get the proper flags to link against libselinux.
8070     Add a Build-Dependency on pkg-config, tighten libselinux1-dev to
8071     at least version 1.28-4 which provides a .pc file, and remove
8072     libsepol1-dev as libselinux1-dev is Depending on it.
8073   * Add command descriptions in the synopsis, and add a usage example for
8074     -f in the dpkg-query manpage. Thanks for the initial patch to
8075     Philippe Batailler. Closes: #352091
8076   * Document about the default log file, the behaviour in case of multiple
8077     --log options and add a reference to dpkg.cfg manpage in the dpkg manpage.
8078     Thanks to James R. Van Zandt. Closes: #350440
8079   * Escape ` and ' in manpages otherwise they are converted to quotation
8080     marks, which makes cut and paste not work. Thanks to Denis Barbier.
8081     Closes: #349925
8083   [ Frank Lichtenheld ]
8084   * Let dpkg-source ignore comments in the hunk header as used by
8085     diff -p (Anand Kumria). Closes: #344880
8086   * Let dpkg-buildpackage create a .changes file even if signing the
8087     .dsc file failed. This makes it easier to just sign the package
8088     later (Julian Gilbey). Closes: #217963
8089   * Change heuristics of dpkg-buildpackage's gpg check to allow for
8090     more complex setups (Julian Gilbey). Closes: #163061
8091   * Add files and dirs used by bzr to default dpkg-source -i regex
8092     (maximilian attems). Closes: #345164
8093   * Add .git directory to default dpkg-source -i regex.
8094     Suggested by Hans Ulrich Niedermann. Closes: #351885
8095   * dpkg-scanpackages can now output Packages files with multiple
8096     versions of a single package (Don Armstrong). Closes: #229589.
8097   * dpkg-scanpackages outputs help when given the --help or -h option
8098     (Don Armstrong). Closes: #319541
8099   * Document dpkg-scanpackage -m in man page.
8100   * Let warn dpkg-source if more than one -sX option was given and
8101     document the behaviour in this case in the man page.
8102     Closes: #246637
8103   * Make dpkg-source -b more robust regarding to existing symlinks
8104     by creating new files in a secure manner. Closes: #178839, #338591
8105   * Fix some semantic errors in dpkg-shlibdeps due to typos in used
8106     variables.
8107   * On package configuration, differentiate between modified and
8108     deleted configuration files (Ian Jackson). Closes: #351361
8109   * Improve processing of disappearing conffiles (Ian Jackson).
8110     This is part of the fix for #108587.
8111   * Let dpkg-source -x touch all patched files to have the same
8112     timestamp to mitigate time-skew problems (Denis Barbier).
8113     Closes: #105750
8114   * Strip any newlines from Uploaders field on dpkg-source -b.
8115     Closes: #254449
8117   [ Christian Perrier ]
8118   * Switch to po4a for manpages translation. Closes: #320122
8119     This adds a Build-Depends on po4a.
8120   * Add Vietnamese to po/LINGUAS as it was previously missing.
8121   * Updated translations:
8122     - Catalan (Jordi Mallach). Closes: #351587
8123     - French (Christian Perrier): 1011t.
8124     - Galician (Jacobo Tarrio): 1002t. Closes: #351795
8125     - Basque (Piarres Beobide): 1002t. Closes: #351845
8126     - Slovak (Peter Mann): 1002t. Closes: #352087, #352311
8127     - Vietnamese (Clytie Siddall): 1011t. Closes: #352307
8129  -- Frank Lichtenheld <djpig@debian.org>  Sun, 12 Feb 2006 02:32:12 +0100
8131 dpkg (1.13.13) unstable; urgency=low
8133   [ Frank Lichtenheld ]
8134   * dpkg and dselect are now in section admin, not section base.
8135     Correct info in the control file.
8136   * Bump Standards-Version to 3.6.2 (no changes).
8137   * Fix typo in dpkg-architecture man page. Closes: #334330
8138   * Honor LD_LIBRARY_PATH in dpkg-shlibdeps. Fixes a regression
8139     from 1.13.11 to .12.
8140   * Don't recurse into package directories to search for local
8141     shlibs files since it is obviously a waste of time. Based
8142     on a suggestion by Steve Langasek. Closes: #338725
8144   [ Christian Perrier ]
8145   * Updated translations:
8146     - Dutch (Bart Cornelis). Fix error mentioned in #323908 by
8147       Stephan Kramer.
8148     - Japanese (Kenshi Muto). Closes: #349808
8150   [ Guillem Jover ]
8151   * Fix typo in dpkg-statoverride manpage. Closes: #348113
8152     Thanks to Marc Haber <mh+debian-packages@zugschlus.de>.
8153   * Document the --no-debsig option in dpkg manpage. Closes: #316367
8154     Thanks to Bastian Kleineidam <calvin@debian.org>.
8155   * Fix typos in dselect manpage. Closes: #310358
8156     Thanks to A Costa <agcosta@gis.net>.
8157   * Fix typo in start-stop-daemon's help output. Closes: #333673
8158     Thanks to Christoph Maser <cm@financial.com>.
8159   * Document the correct format string for dpkg-query --showformat option.
8160     Update -l example and lower case the program name in the title header.
8161     Thanks to Zefram <zefram@fysh.org>. Closes: #174976
8162   * Make dpkg-architecture not print the warning about a mismatch between
8163     gcc target machine type and GNU target system type if the actions are
8164     '-e' or '-i'.
8166  -- Frank Lichtenheld <djpig@debian.org>  Sat, 28 Jan 2006 13:04:16 +0100
8168 dpkg (1.13.12) experimental; urgency=low
8170   * Due to the changes in dpkg-shlibdeps it is not recommended
8171     to use this version for building packages intended to be
8172     uploaded into an official archive, yet.
8174   [ Frank Lichtenheld ]
8175   * Update AUTHORS and debian/copyright for new maintainer team.
8177   * Don't use the ldd output in dpkg-shlibdeps. Search for the
8178     matching libraries ourself. This fixes problems with both
8179     symlinked directories, Closes: #103024, #145714, #164020, #285857
8180     and biarch builds. Closes: #317082
8181   * Let dpkg-gencontrol bail out with an error if parsedep
8182     found an error while parsing a dependency field. Closes: #228125
8183   * dpkg-source -x now tries to chown all files extracted from
8184     tar files. The temporary directory is now created with mode
8185     0700, too. Together this should make it safer to run
8186     dpkg-source -x as root. Based on suggestions by Marcus
8187     Brinkmann and Colin Watson. Closes: #144571, #238460
8188   * Let dpkg-source -b check the build relation fields before
8189     putting them into the .dsc. As a side effect they also
8190     get normalized. Closes: #254449
8191   * Check the gpg signatures of .dsc files before unpacking. See
8192     the upstream changelog for a full description of the semantics.
8193     Based on a patch by Matt Zimmerman. Closes: #48711
8194   * Let dpkg-source ensure (as good as possible) that all
8195     build source packages can also be unpacked.
8196     Closes: #6820, #7014
8197     Also fixed handling of md5sum -b output in dpkg-source on
8198     the way. Based on a patch by Ingo Saitz. Closes: #316123
8199   * Check for illegal architecture strings in dpkg-gencontrol and
8200     dpkg-source. dpkg-gencontrol will only issue a warning while
8201     dpkg-source will error out. Closes: #96920
8202   * Add support "package types" to dpkg-shlibdeps. Patch by Joey Hess.
8203     Closes: #335056, #345475
8204   * Fix man page references to dpkg and dselect man pages. Many
8205     of them still had a wrong section.
8206     Closes: #332826
8207   * Let dpkg-source -b warn about special permissions of files added
8208     in the diff since these will get lost. Closes: #306125
8209   * dpkg-source -x didn't work in case the upstream version or
8210     the Debian version ended with ~. Fixed.
8212   [ Christian Perrier ]
8213   * Updated translations:
8214     - French (Christian Perrier).
8215     - Polish (Bartosz Fenski). Closes: #314237
8216     - Norwegian Bokmal (Hans F. Nordhaug). Closes: #315548, #315990
8217     - Czech (Miroslav Kure). Closes: #323775, #345347
8218     - Russian (Yuri Kozlov). Closes: #323821, #335170
8219     - Japanese (Kenshi Muto). Closes: #323938
8220     - Brazilian Portuguese (Andre Luis Lopes). Closes: #325224, #332872
8221     - Russian (Yuri Kozlov). Closes: #335170, #349151
8222     - Swedish (Peter karlsson). Closes: #325990, #344058, #337164, #334063
8223     - Norwegian Nynorsk (Håvard Korsvoll). Closes: #315987
8224     - Portuguese (Miguel Figueiredo).
8225       Closes: #315461, #323674, #323642, #330021
8226     - Spanish (Javier Fernández-Sanguino Peña). Closes: #323662, #315253
8227     - Danish (Claus Hindsgaul). Closes: #348575, #323779, #337948, #325687
8228     - Dutch (Bart Cornelis). Closes: #323908
8229     - German (Michael Piefel). Closes: #323964
8230     - Italian (Stefano Canepa). Closes: #324114, #344671, #347225
8231     - Catalan (Jordi Mallach). Closes: #324456
8232     - Basque (Piarres Beobide). Closes: #342089, #332698
8233     - Tagalog (Eric Pareja). Closes: #337307
8234     - Simplified Chinese (Tchaikov). Closes: #338268
8235     - Galician (Jacobo Tarrío). Closes: #338904
8236     - Romanian (Eddy Petrişor). Closes: #340674
8237     - Vietnamese (Phan Vinh Thinh, Clytie Siddall).
8238     - Indonesian (Parlin Imanuel). Closes: #344513
8239     - Greek (Galaxico). Closes: #344646
8240     - Czech (Miroslav Kure). Closes: #345347
8241   * Fixed broken translation:
8242     - Brazilian Portuguese (James Troup). Closes: #332872
8243   * Fix Russian man page for start-stop-daemon(8)
8244     Closes: #325804
8245   * Fix German man page for update-alternatives(8)
8246     Closes: #329908
8247   * Fix typo in dpkg online help message. Unfuzzy translations
8248     Closes: #349299
8250   [ Guillem Jover ]
8251   * Add armeb to cputable. Closes: #331232
8252     Thanks to Lennert Buytenhek <buytenh+debian@wantstofly.org>.
8253   * Don't try to compile in SELinux support on GNU/kFreeBSD.  Closes: #313300
8254     Thanks to Aurelien Jarno <aurel32@debian.org>.
8255   * When linking statically, explicitly add libsepol, even if its only a
8256     transitive library. The proper fix should come with a pkg-config file.
8257     Based on a patch by Bart Martens <bart.martens@advalvas.be>.
8258     Closes: #347744, #348659
8259   * Add support for architecture wildcards, but for now they will only be
8260     exposed in debian/control files, not in binary nor source packages.
8261     Closes: #291939
8262   * Change start-stop-daemon's --exec option behaviour on GNU/Linux to
8263     compare the filename pointed by '/proc/<pid>/exe' instead of the inode
8264     and device numbers. Thanks to Vasilis Vasaitis <v.vasaitis@sms.ed.ac.uk>.
8265     Closes: #337942
8267  -- Frank Lichtenheld <djpig@debian.org>  Tue, 24 Jan 2006 11:15:36 +0100
8269 dpkg (1.13.11.1) unstable; urgency=low
8271   * Change maintainers to new team.
8273  -- Scott James Remnant <scott@netsplit.com>  Thu, 12 Jan 2006 07:56:49 +0000
8275 dpkg (1.13.11) unstable; urgency=low
8277   The "Good, clean fun" Release.
8279   * Fixed the always broken error handling so that only the intended
8280     cleanup handlers are run, rather than ones that we didn't expect.
8281     This corrects the bug when a package's postrm fails and the package is
8282     left in an installed state with no files; the package will now be left
8283     in a half-installed state, as originally intended.  Found by Marga
8284     Manterola while documenting the maintainer scripts.  Closes: #296026.
8285   * Fixed removal of files involved in diversions during upgrade, caused by
8286     checking whether the "directory" was in use by another package without
8287     actually checking whether or not it was a directory.  Closes: #310390.
8288   * Fixed package saving to not disappear packages who divert anything from
8289     the installing package out of the way.  Closes: #113626.
8290   * Improved clean-up of unpack failure during install or upgrade, to leave
8291     the system in exactly the same state as it started in.
8292     Closes: #47404, #82407, #121173, #170869, #201848, #236733, #268639.
8293   * Fixed crash when unpacking a package which has an unversioned Replaces
8294     declared on it by another package previously unpacked in the same run
8295     (Colin Watson).  Closes: #322595.
8297   * New install unwinding fixed to ensure we don't leave a version in the
8298     status db for a not-installed package.
8299   * Corrected error call when encountering a corrupted filesystem tarfile
8300     to not print "Success".  Closes: #95570.
8301   * Fixed castration of potentially unsafe devices to not follow symlinks.
8302     Closes: #169928.
8303   * Marked log file descriptor as close-on-exec.  Closes: #320925.
8304   * Re-worked dpkg-source -x to allow all manner of strange things maintainers
8305     seem to do, unpacking isn't the right place to enforce sanity; we'll
8306     do it in -b later on >:-).  Closes: #316470, #317760, #318473, #318745,
8307     #322359, #322361, #322362.
8309   * Corrected dselect synopsis line to match consensus.  Closes: #318659.
8310   * Changed dpkg-name to use a shell redirect rather than the /dev/stderr
8311     device that may not be writable.  Closes: #318376.
8312   * Adjusted various dpkg-query options to avoid outputting a trailing
8313     newline.  Closes: #151651, #319781.
8314   * Changed references to "statusoverride" file to just "statoverride"
8315     to make it match reality.  Closes: #320952.
8316   * Fixed several bugs with the default diff ignore list used by dpkg-source.
8317   * Added ,,* to the list of default diff ignore list.  Closes: #322917.
8319   * Fixes to dpkg-dev (Frank Lichtenheld):
8320     - dpkg-checkbuilddeps will now exit with an error if it is unable to
8321       parse a dependency field.  Closes: #171762, #302229.
8322     - dpkg-genchanges will now output a warning if given -sd for a native
8323       package, as it's going to ignore it.  Closes: #5571.
8324     - dpkg-source fixed to give a more meaningful error message if given
8325       a directory as the first argument.  Closes: #306874.
8326     - dpkg-source fixed to handle being given an absolute path to -b.
8327       Closes: #147574.
8328     - Fix controllib.pl to allow whitespace before version operators.
8329       Closes: #273489, #310306.
8330     - Fix architecture dependency parsing that sometimes generated wrong
8331       list of requirements.  Closes: #319816.
8332     - Make the default control field name mangling behaviour "nicer" by
8333       upper-casing all letters that come after a dash.  Closes: #306474.
8334     - Ignore trailing newlines in single paragraph control files.
8335       Closes: #57194, #156319
8336   * Documentation:
8337     - Fixed typo in dpkg-architecture man page.  Closes: #317770.
8338     - Documented dpkg-deb -W/--show and --showformat.  Closes: #319784.
8340  -- Scott James Remnant <scott@netsplit.com>  Wed, 17 Aug 2005 04:44:44 +0100
8342 dpkg (1.13.10) unstable; urgency=low
8344   The "Bully's Special Prize" Release.
8346   * Removed /usr/sbin/start-stop-daemon.  Closes: #313400.
8347   * Fixed md5sum diversion removal.  Closes: #313415.
8348   * Fixed dpkg-source to handle native tarballs with a Debian revision.
8349     Closes: #313381, #313433.
8350   * Fixed upgrade from pre-sarge dpkg outside of dselect.  Closes: #314575.
8351   * Changed log times to be local rather than UTC.  Closes: #313347.
8352   * Changed log writing to be line-buffered.  Closes: #314550.
8353   * Moved log creation to postinst, and don't fail if base-passwd hasn't
8354     been configured yet.  Closes: #316084.
8355   * Don't try to compile in SELinux support on Hurd.  Closes: #313398.
8356   * Place code for SELinux support in the right place so it will actually
8357     get compiled in and used (Manoj Srivastava).  Closes: #314886.
8359   * Documentation:
8360     - Added missing word to dpkg-architecture manpage.  Closes: #313554.
8361     - Reference to dpkg manpage in dpkg.cfg corrected.  Closes: #314262.
8362   * Updated translations (Christian Perrier):
8363     - Basque (Piarres Beobide Egana).  Closes: #313474.
8364     - Catalan (Jordi Mallach).  Closes: #313288.
8365     - Czech (Miroslav Kure).  Closes: #314431.
8366     - Danish (Claus Hindsgaul).
8367     - French (Christian Perrier).
8368     - German (Jens Seidel).  Closes: #314125.
8369     - Greek (Greek team).  Closes: #314828.
8370     - Italian (Lele Gaifax).
8371     - Japanese (Kenshi Muto).  Closes: #313330.
8372     - Russian (Yuri Kozlov).  Closes: #313620.
8373   * Hebrew translation de-activated on request of the translator until there
8374     is better support for RTL languages.  Closes: #313282.
8376  -- Scott James Remnant <scott@netsplit.com>  Tue, 28 Jun 2005 14:19:06 +0100
8378 dpkg (1.13.9) unstable; urgency=low
8380   The "On like Donkey Kong" Release.
8382   * Only open the log file when we first need to write to it, this avoids
8383     the need to suppress errors when not root which fakeroot defeated anyway.
8384   * Stop dpkg-source clobbering an existing .orig directory during unpacking.
8385     Closes: #21236.
8386   * Allow an alternate output directory to be specified to dpkg-source by
8387     giving a second argument to -x.  Closes: #246802, #282323.
8388   * Added .arch-inventory to default diff ignore regexp.  Closes: #304297.
8390   SELinux support (Manoj Srivastava):
8391   * On SELinux-enabled systems, try to set the security context when the
8392     package is unpacked.  Closes: #193653, #249496, #307139.
8393   * Added build-dependency on libselinux1-dev.
8395   Improvements to dpkg-source (Brendan O'Dea):
8396   * Support unpacking of "Wig And Pen" (Format 2.0) source packages.
8397   * Multiple pristine upstream tarballs allowed.
8398   * Native and upstream tarballs may be bzip2-compressed instead of gzip,
8399     as may the debian diff or tarball.
8400   * Unsupported format error fixed to output the unsupported format
8401     rather than the supported one.  Closes: #156317.
8403  -- Scott James Remnant <scott@netsplit.com>  Sun, 12 Jun 2005 15:52:43 +0100
8405 dpkg (1.13.8) experimental; urgency=low
8407   The "In like Flynn" Release.
8409   * Linux 2.6.12 changed the behaviour of mmap to fail and set EINVAL when
8410     given a zero length, rather than returning NULL.  This is POSIXly
8411     correct, so handle zero-length package control files (like available).
8413  -- Scott James Remnant <scott@netsplit.com>  Fri, 10 Jun 2005 07:39:44 +0100
8415 dpkg (1.13.7) experimental; urgency=low
8417   The "Maidenhead Creeping Water Plant" Release.
8419   * Reduced inability to open a log file to a warning, suppressed for
8420     non-root operations.  Closes: #312383.
8422  -- Scott James Remnant <scott@netsplit.com>  Thu,  9 Jun 2005 06:12:56 +0100
8424 dpkg (1.13.6) experimental; urgency=low
8426   The "Just kidding about the God part" Release.
8428   * Fixed incorrect installation location of /etc/logrotate.d/dpkg caused
8429     by a mis-understanding of dh_install's abilities.
8431  -- Scott James Remnant <scott@netsplit.com>  Mon,  6 Jun 2005 05:58:36 +0100
8433 dpkg (1.13.5) experimental; urgency=low
8435   The "Flatulent Elm of West Ruislip" Release.
8437   * Actions and package states are now logged by default in the
8438     /var/log/dpkg.log file.  This file is rotated monthly and can be
8439     disabled by commenting the line in /etc/dpkg/dpkg.cfg.
8440   * User decisions about conffiles are now logged.
8441   * dpkg-source no longer complains about Enhances field.  Closes: #159642,
8442     #159745, #159746.
8443   * preinst no longer relies on procps being installed.  Closes: #311808.
8445   * Architecture Support:
8446     - Change DEB_*_GNU_CPU from i386 to i486, to reflect reality.
8447       DEB_*_ARCH_CPU remains at i386, you should be checking against that.
8448       Closes: #310394.
8449     - Fixed order ostable is read to prevent Linux becoming the Hurd.
8450       Closes: #309603.
8451   * Updated man page translations (Christian Perrier):
8452     - Syntax error corrected in Swedish man page for dpkg-deb.
8453       Closes: #300980.
8454     - Syntax error corrected in Spanish man page for dpkg-scanpackages.
8455       Closes: #300981
8457  -- Scott James Remnant <scott@netsplit.com>  Mon,  6 Jun 2005 05:34:21 +0100
8459 dpkg (1.13.4) experimental; urgency=low
8461   The "Or the Wabbit gets it" Release.
8463   * Add -L option to dpkg-architecture to list architecture strings
8464     we can accept.
8466  -- Scott James Remnant <scott@netsplit.com>  Tue, 29 Mar 2005 13:31:15 +0100
8468 dpkg (1.13.3) experimental; urgency=low
8470   The "Paying off Karma at a vastly accelerated rate" Release.
8472   * Missing newline added to warning output function.  Closes: #283798.
8473   * Fixed prototype warning in dpkg-scansources.  Closes: #213577, #219760,
8474     #267505.
8475   * Removed trailing line from debian origins file.  Closes: #264904.
8476   * Changed dpkg-buildpackage to say "source changed by" rather than
8477     "source maintainer is".  Closes: #247313.
8478   * Fixed dpkg-gencontrol to allow '-' in architecture names.  Closes: #274677.
8479   * Fixed "unknown information field" error to report field that it doesn't
8480     know about.  Closes: #275243.
8482   * Documentation:
8483     - Remove "medium-level" from description of dpkg.  Closes: #292454.
8484     - Harmonised argument names in update-alternatives(8).
8485       Closes: #267095, #284941
8486     - Documented what the '+' and '*' mean in update-alternatives --config
8487       output.  Closes: #270486.
8488     - Mention aptitude alongside dselect in 'dpkg --usage' and
8489       'dpkg-deb --help', fix quote style of mention in 'dpkg --help'.
8490       Closes: #274800, #278118.
8491     - Associate --truename with the description of what it does in
8492       dpkg-divert(8).  Closes: #277076.
8493     - Removed last remaining references to the packaging manual, replacing
8494       with better references.  Closes: #262775.
8495     - Documented format of file dpkg --set-selections takes.  Closes: #270043.
8497  -- Scott James Remnant <scott@netsplit.com>  Mon, 21 Mar 2005 03:10:27 +0000
8499 dpkg (1.13.2) experimental; urgency=low
8501   The "Mysteriously Unnamed" Release.
8503   * md5sum has been removed, the coreutils or textutils version will be
8504     diverted to /usr/bin/md5sum.  Closes: #6633, #136110.
8505     The following bugs are filed against the dpkg md5sum, so no longer apply.
8506     Closes: #95755, #193877, #223381, #264195, #270241, #286632,
8507   * Take Replaces into account when installing packages; don't issue a
8508     "trying to overwrite" error if the file that already exists is in
8509     a package that Replaces the one being installed.
8510     Closes: #164595, #184635, #277890.
8511   * Allow actions and status changes to be logged to a file.  Disabled by
8512     default, uncomment line in /etc/dpkg/dpkg.cfg to enable.
8513     Closes: #957, #53376, #77109, #143882, #284499.
8514   * Don't truncate output of 'dpkg -l' when stdout is not a tty.
8515     Closes: #92263, #253860, #258608, #261822, #282790.
8516   * Fix further compilation problems with gcc 4.0.  Closes: #299699
8517   * Handle tar files without trailing slash in directory names.
8518     Closes: #287152.
8519   * Output arguments to maintainer scripts with -D2.  Closes: #237684,
8520     #296030.
8522   * Architecture Support:
8523     - Added ppc64.  Closes: #263743.
8524     - Split archtable into cputable and ostable, archtable is retained
8525       for compatibility with other packages that might use it only.
8526     - dpkg-architecture no longer canonises -t argument.  Closes: #173205.
8527     - dpkg-architecture output includes new DEB_*_ARCH_OS and
8528       DEB_*_ARCH_CPU variables that contain the Debian system and CPU
8529       names respectively.
8530     - dpkg-architecture outputs (mostly) correct GNU system names now,
8531       in particular this means that it will output "linux-gnu" instead
8532       of "linux".  You should use the new _ARCH_OS variables instead.
8533   * Documentation:
8534     - Add examples to dpkg-divert(8).  Closes: #291816.
8535     - Correct typo in dpkg-architecture(1).  Closes: #299090.
8537  -- Scott James Remnant <scott@netsplit.com>  Fri, 18 Mar 2005 16:21:32 +0000
8539 dpkg (1.13.1) experimental; urgency=low
8541   The "Livin' like a good boy oughta" Release.
8543   * Removed dpkg --print-gnu-build-architecture option.  Use variables
8544     defined by dpkg-architecture instead.
8545   * Soft-deprecated dpkg --print-installation-architecture.  Use
8546     dpkg --print-architecture instead, which now does the same thing.
8547   * dpkg --print-architecture no longer calls c-compiler.  Closes: #164863.
8548   * Removed third field from /usr/share/dpkg/archtable.
8550   * Now we no-longer pre-depend on dselect, check the upgrade will work
8551     in preinst and give the user a chance to abort if they haven't yet
8552     installed dselect and need to.  Closes: #282335.
8553   * Fix handling of GNU longname and longlink when a tarfile entry has
8554     both.  Closes: #128388.
8555   * md5sum no longer outputs "-" when no argument is supplied.
8556     Closes: #164591, #164889.
8557   * Add darcs metadirectory to dpkg-source diff ignore list.  Closes: #289760.
8558   * Add new '-f' short option to dpkg-query as equivalent to --showformat.
8559     Closes: #281627.
8560   * Report conffile conflicts and per-package errors on the status-fd.
8561     Closes: #297880.
8562   * Correct typo in dpkg-architecture.  Closes: #282701.
8563   * Fix start-stop-daemon's support for GNU/kFreeBSD.  Closes: #258051.
8565   * Architecture Support:
8566     - Added kfreebsd-amd64.  Closes: #280963.
8567     - Added m32r.  Closes: #280710.
8568     - Clean up of archtable.  Closes: #118910, #286898.
8569     - Clean up of dpkg-architecture.  Closes: #256323.
8570   * Updated translations (Christian Perrier):
8571     - French (French Team).
8572     - Greek (Konstantinos Margaritis).  Closes: #295922.
8574  -- Scott James Remnant <scott@netsplit.com>  Thu,  3 Mar 2005 12:09:07 +0000
8576 dpkg (1.13.0) experimental; urgency=low
8578   The "Three banana strategy" Release.
8580   * Remove the /usr/info or /usr/info/dir symlinks we used to create.
8581     Closes: #206063, #288415.
8582   * Fix cast in lvalue assignment that gcc 4.0 doesn't like.
8583     Closes: #282669, #284797.
8584   * Correct bashism in disk method update script.  Closes: #260568.
8586   * Scorched-earth reimplementation of the build process and control files
8587     with debhelper and automake.  Closes: #200683, #217946, #229629, #260568,
8588     #266995, #279701, #283640, #292973, #293041.
8589   * Remove SGML and POD documentation formats due to both licensing and
8590     sanity issues.  Closes: #285806.
8591   * The dpkg-doc and dpkg-static packages are no more.
8592   * dpkg.cfg cleaned up to remove non-useful examples.
8593     Closes: #169618, #305192.
8595  -- Scott James Remnant <scott@netsplit.com>  Fri, 14 Jan 2005 19:28:00 +0000
8597 dpkg (1.10.28) unstable; urgency=low
8599   The "Awh, yeah?  Ripper!" Release.
8601   * New translations (Christian Perrier):
8602     - Romanian (Eddy Petrisor).  Closes: #309714.
8603     - Tagalog (Eric Pareja).  Closes: #296407.
8604   * Updated translations (Christian Perrier):
8605     - French (Christian Perrier).
8606     - Greek (Konstantinos Margaritis).  Closes: #295922
8607     - Indonesian (Arief S Fitrianto).  Closes: #296733
8608   * Updated man page translations (Christian Perrier):
8609     - French (Philippe Batailler).
8610     - Syntax error corrected in Brazilian Portuguese man page for
8611       update-alternatives.  Closes: #300646
8613  -- Scott James Remnant <scott@netsplit.com>  Thu, 26 May 2005 18:18:10 +0100
8615 dpkg (1.10.27) unstable; urgency=low
8617   The "Grab your gun and bring in the cat" Release.
8619   * New Translations (Christian Perrier):
8620     - Indonesian (Arief S Fitrianto).
8621     - Norwegian Bokmål (Bjorn Steensrud).
8622   * Updated Translations (Christian Perrier):
8623     - Dutch (confusing option corrected by Christian Perrier).
8624     - Galician (Jacobo Tarrio).
8625     - Korean (Seo Sanghyeon).
8626     - Simplified Chinese (Carlos Liu).
8627     - Traditional Chinese (Asho Yeh).
8629  -- Scott James Remnant <scott@netsplit.com>  Thu, 10 Feb 2005 15:10:22 +0000
8631 dpkg (1.10.26) unstable; urgency=low
8633   The "Captain Tight-Pants" Release.
8635   * Fix incorrect claim that 'Q' in dselect quits without saving changes
8636     (really 'X').
8637   * Revert to current 'stable' behaviour of Space/Enter/'Q' in the dselect
8638     help screen, Space leaves the help screen and Enter and 'Q' do nothing.
8639     It's dangerous to encourage users to press Enter or 'Q' since they
8640     commit changes in the package selection screen.
8642   * New Translations (Christian Perrier):
8643     - Basque (Piarres Beobide Egaña).  Closes: #281245.
8644       (Was really added in 1.10.24, but forgotten from ALL_LINGUAS.)
8645     - Bosnian (Safir Šećerović).
8646     - Slovak (benco).  Closes: #284896, #289341
8647     - Traditional Chinese (Asho Yeh).  Closes: #287375.
8648   * Updated Translations (Christian Perrier):
8649     - Brazilian Portuguese (André Luís Lopes).  Closes: #281228.
8650     - Catalan (Jordi Mallach).  Closes: #281333.
8651     - Czech (Miroslav Kure).  Closes: #281231.
8652     - Danish (Claus Hindsgaul).  Closes: #281103.
8653     - Dutch (Christian Perrier).  Closes: #282087.
8654     - Galician (Héctor Fernéndez López).
8655     - German (Michael Piefel).  Closes: #281503.
8656     - Italian (Stefano Canepa). Closes: #282543.
8657     - Japanese (Kenshi Muto).  Closes: #281144.
8658     - Korean (Changwoo Ryu).  Closes: #282246.
8659     - Norwegian Nynorsk (Håvard Korsvoll).  Closes: #281456.
8660     - Polish (Bartosz Feñski).
8661     - Portuguese (Miguel Figueiredo).  Closes: #281122, #289359.
8662     - Russian (Yuri Kozlov).  Closes: #281166.
8663     - Simplified Chinese (Tchaikov, Carlos Liu).
8664     - Spanish (Javier Fernández-Sanguino Peña).  Closes: #281117.
8665     - Swedish (Peter Karlsson).  Closes: #281165.
8667  -- Scott James Remnant <scott@netsplit.com>  Tue, 11 Jan 2005 16:26:51 +0000
8669 dpkg (1.10.25) unstable; urgency=low
8671   The "你他媽的天下所有的人都該死" Release.
8673   This release is to correct the mangled Simplified Chinese translation
8674   included in 1.10.24 caused by rebellion of the translator's mail client.
8676   * Updated Translations (Christian Perrier):
8677     - Dutch (Bart Cornelis).  Closes: #278700.
8678     - Polish (Bartosz Fenski).  Closes: #280406.
8679     - Simplified Chinese (Tchaikov, Carlos Liu).  Closes: #278676.
8681  -- Scott James Remnant <scott@netsplit.com>  Thu, 11 Nov 2004 20:06:57 +0000
8683 dpkg (1.10.24) unstable; urgency=low
8685   The "Donald, where's your troosers?" Release.
8687   * Add support for uncompressed data.tar archive members and bzip2-
8688     compressed data.tar.bz2 members of binary packages.  Closes: #34727.
8690   * New Translations (Christian Perrier):
8691     - Basque (Piarres Beobide).  Closes: #265491.
8692     - Greek (George Papamichelakis).  Closes: #260809.
8693     - Hebrew (Lior Kaplan).  Closes: #275267.
8694     - Simplified Chinese (Tchaikov, Carlos Liu).  Closes: #265197.
8695   * Updated Translations (Christian Perrier):
8696     - Brazilian Portuguese (Andre Luis Lopes).  Closes: #260964, #273947,
8697       #278063.
8698     - Czech (Miroslav Kure).  Closes: #255904, #278178.
8699     - Catalan (Jordi Mallach).  Closes: #278098.
8700     - Danish (Claus Hindsgaul).  Closes: #278097.
8701     - Dutch (Bart Cornelis).  Closes: #268271, #268886, #274366, #278061.
8702     - Galician (Hector Fernandez).
8703     - German (Michael Piefel).  Closes: #276462, #278168.
8704     - French (Christian Perrier).
8705     - Japanese (Kenshi Muto).  Closes: #272456, #278141.
8706     - Italian (Lele Gaifax).
8707     - Korean (Changwoo Ryu).  Closes: #261528, #278142.
8708     - Norwegian Nynorsk (Håvard Korsvoll).  Closes: #275387, #278286.
8709     - Polish (Bartosz Fenski).  Closes: #268452, #278064.
8710     - Portuguese (Miguel Figueiredo).  Closes: #268266, #261424, #261519,
8711       #278294.
8712     - Russian (Yuri Kozlov).  Closes: #268452, #278154.
8713     - Spanish (Javier Fernández-Sanguino Peña).  Closes: #277173, #278117.
8714     - Swedish (Peter Karlsson).
8715   * Updated Manpage Translations (Christian Perrier):
8716     - French (Philippe Batailler).  Closes: #268048.
8717     - Spanish (Ruben Porras).  Closes: #261807.
8718     - Swedish (Peter Karlsson).
8720  -- Scott James Remnant <scott@netsplit.com>  Wed, 27 Oct 2004 09:25:58 +0100
8722 dpkg (1.10.23) unstable; urgency=low
8724   The "Let the Wookie win" Release.
8726   * Updated hurd start-stop-daemon support.  Closes: #133640, #254180.
8727   * Removed usage of non-POSIX test options.  Closes: #256302.
8729   * Architecture Support:
8730     - Renamed x86-64 to amd64.  Closes: #252346, #254598.
8731   * Documentation:
8732     - Correct typo in dpkg-divert(8).  Closes: #254175.
8733   * New Translations:
8734     - Korean (Changwoo Ryu).  Closes: #254590.
8735   * Updated Translations:
8736     - Catalan (Jordi Mallach).
8737     - Danish (Claus Hindsgaul).  Closes: #252407.
8738     - French (Christian Perrier).  Closes: #252586.
8739     - Italian (Lele Gaifax).
8740     - Polish (Bartosz Fenski).  Closes: #254209.
8741     - Spanish manpages (Ruben Porras).  Closes: #246158, #246159, #246160,
8742       #246161, #246162, #246163, #246164.
8744  -- Scott James Remnant <scott@netsplit.com>  Mon, 19 Jul 2004 19:52:14 +0100
8746 dpkg (1.10.22) unstable; urgency=low
8748   The DebConf4 Release.
8750   This release is mostly intended to mop up the minor and trivial bug
8751   fixes in the list and clear out the documentation changes.  As such,
8752   it should be treated with even more suspicion than is normal.
8754   * Use colouring to break cycles earlier to avoid long loops whilst
8755     installing or configuring packages.  Closes: #232445, #246857.
8756   * Don't try to configure packages that disappeared in the same
8757     run.  Closes: #202997.
8758   * Fix segfault when "gcc -dumpmachine" returns a non-matching triplet.
8759     Closes: #211850.
8760   * Remove restriction that package names be at least two characters long.
8761     Closes: #237734.
8762   * Fix dpkg-source (actually controllib.pl) to output the field name
8763     properly again.  Closes: #226931, #246595.
8764   * Make dpkg-scanpackages output Origin and Bugs fields with proper
8765     casing.  Closes: #154422.
8766   * Add support for DOS line-endings to md5sum.  Closes: #246103.
8767   * Fix start-stop-daemon segfault on Hurd.  Closes: #133640.
8768   * Allow dpkg-shlibdeps to run as non-root users.  Closes: #96881.
8769   * Correct various compiler warnings.  Closes: #229766.
8771   * Architecture Support:
8772     - Added x86-64 (x86_64 / amd64).  Closes: #238483, #241938.
8773     - Added i?86-gnu (Hurd).  Closes: #216695, #236331.
8774     - Added i386-kfreebsd-gnu and i386-knetbsd-gnu.  Closes: #250176.
8775   * Packaging:
8776     - Create $(docdir) even when --without-sgml-doc is passed so the
8777       ChangeLog can be installed.  Closes: #137719.
8778     - Stop hardcoding the list of manual page languages in debian/rules,
8779       so we include Spanish, Russian and Brazilian Portuguese.  Closes: #245994.
8780     - Quote LDFLAGS in debian/rules to allow multiple options.
8781       Closes: #230242.
8782   * Documentation:
8783     - Move dpkg-scanpackages and dpkg-scansources to section 1 as they
8784       are user tools.  Closes: #114946.
8785     - Correct hyphen characters in manpages.  Closes: #212284, #247086, #226800.
8786     - Remove obsolete references to the Debian Packaging Manual.
8787       Closes: #122910, #140695.
8788     - Correct 'n' and 'p' key descriptions in dselect help message.
8789       Closes: #120562.
8790     - Add --force-bad-verify to dpkg manpage.  Closes: #192812.
8791     - Correct dpkg manpage to refer to --force-remove-reinstreq instead of
8792       non-existent --force-reinstreq option.  Closes: #232831.
8793     - Correct documentation of --compare-versions arguments.  Closes: #232317.
8794     - Correct usage of "et al" to "et al.".  Closes: #230751.
8795     - Add dpkg-reconfigure(8) to SEE ALSO section of dpkg(8).  Closes: #233282.
8796     - Suggest packages that provide additional functionality in the dpkg
8797       manpage.  Closes: #81355.
8798     - Suggest dselect update in description of dpkg --update-avail.
8799       Closes: #206163.
8800     - Suggest aptitude as well as dselect.  Closes: #217042.
8801     - Suggest fakeroot for dpkg-source -r.  Closes: #175897.
8802     - Correct documentation of start-stop-daemon.  Closes: #41554, #211856.
8803     - Correct documentation of start-stop-daemon manpage to refer to --retry
8804       alongside --stop.  Closes: #204691.
8805     - Add note that start-stop-daemon will chdir("/") unless -d is specified.
8806       Closes: #217823, #218060.
8807     - Correct documentation of dpkg-query --list.  Closes: #232639.
8808     - Correct invalid use of &quot; within update-alternatives(8) with .BR.
8809       Closes: #244624.
8810     - Rewrite description of dpkg-source -i to indicate the intent of the
8811       default setting rather than the exact exclusions.  Closes: #227169.
8812     - Correct documentation of dpkg-statoverride --update.  Closes: #85079.
8813     - Correct documentation of update-alternatives --install.  Closes: #179648.
8814     - Documented dpkg:Version and dpkg:UpstreamVersion substvars.
8815       Closes: #85815, #85818.
8816     - Fix spelling error in utils/md5sum.1.  Closes: #250281.
8817     - Replace "&c." with the slightly clearer "etc.".  Closes: #235773.
8818     - Correct various typos.  Closes: #219623, #221235.
8819   * Updated Translations:
8820     - Catalan (Jordi Mallach).
8821     - French (Christian Perrier).  Closes: #246359.
8822     - Italian (Lele Gaifax).
8823     - Japanese manpages (KISE Hiroshi).  Closes: #248483.
8824     - Russian (Nikolai Prokoschenko).  Closes: #249254.
8825     - Spanish manpages (Ruben Porras).  Closes: #246158, #246159, #246160,
8826       #246161, #246162, #246163, #251830.
8827   * New Translations:
8828     - German start-stop-daemon and update-alternatives manpages
8829       (Helge Kreutzmann).  Closes: #247116, #249454.
8830     - Spanish dpkg-scansources manpage (Ruben Porras).  Closes: #246164.
8832  -- Scott James Remnant <scott@netsplit.com>  Tue,  1 Jun 2004 18:21:40 -0300
8834 dpkg (1.10.21) unstable; urgency=low
8836   * Fix incorrect linked list node removal code that caused every second
8837     shared or diverted conffile to be deleted by dpkg.
8838     Closes: #10879, #33046, #47267, #90623, #98210, #109691, #146167.
8839     Closes: #155456, #204275.
8840   * Call mknod with the required device type.  Closes: #158916.
8841   * Correct the default query output format to be consistent with
8842     what the underlying library expects.  Closes: #174973.
8843   * Fix missing NULL-termination in dpkg-query -W display of dependency
8844     fields.  Closes: #174978
8845   * Strip output from md5sum(1) after the first whitespace character.
8846     Closes: #200763.
8847   * Output a warning if we cannot open a configuration file instead of
8848     treating it as a fatal error, in case our home directory is not readable
8849     by root.  Closes: #200701.
8850   * Set LC_ALL to C before spawning off dpkg --search, to avoid searching
8851     on localized strings.  Closes: #244316.
8852   * Don't require argument for start-stop-daemon -V.  Closes: #237589.
8853   * Correct use of @ARGV within dpkg-scanpackages, allowing -u to work
8854     once again.  Closes: #225086, #241503.
8855   * Make sure file permissions passed to dpkg-statoverride are numeric.
8856     Closes: #161156.
8857   * Correctly break out of the loop in install-info.
8858     Closes: #124225, #160761.
8859   * Add --dir-file option to install-info for GNU install-info
8860     compatibility.  Closes: #179192
8861   * Refer to debian-policy in dpkg-doc's description instead of the
8862     non-existent packaging-manual.  Closes: #120970.
8863   * Remove incorrect mention of build-essential from dpkg-checkbuilddeps
8864     manpage.  Closes: #219210.
8865   * Add a note about diverting shared libraries to the dpkg-divert
8866     manpage.  Closes: #214699.
8867   * Updated Translations:
8868     - Brazilian Portuguese (Andre Luis Lopes).  Closes: #237864.
8869     - Catalan (Jordi Mallach).
8870     - Danish (Claus Hindsgaul).  Closes: #237624.
8871     - Dutch (Pieter-Paul Spiertz, Bart Cornelis, Erwin).
8872       Closes: #102094, #151799, #207758.
8873     - French (Sam Hocevar).  Closes: #243191.
8874     - German (Florian Ernst).  Closes: #109669, #115352, #187952, #244098.
8875     - Japanese manpages (KISE Hiroshi).  Closes: #220776.
8876     - Polish (Bartosz Fenski).  Closes: #242870.
8877     - Spanish (Javier Fernández-Sanguino Peña).  Closes: #166052.
8878     - Swedish (Peter Karlsson).
8879   * New Translations:
8880     - Japanese dpkg-source manpage (KISE Hiroshi).  Closes: #239000.
8881     - Norwegian Nynorsk (Gaute Hvoslef Kvalnes).  Closes: #233614.
8882     - Portuguese (Miguel Figueiredo).  Closes: #240081.
8883     - Spanish dpkg-source manpage (Ruben Porras).  Closes: #171489.
8885  -- Scott James Remnant <scott@netsplit.com>  Sun, 25 Apr 2004 18:55:10 +0100
8887 dpkg (1.10.20) unstable; urgency=high
8889   * Update Japanese translation.  Closes: #224616
8890   * Update French translation.  Closes: #218713
8891   * Fix spelling error in German md5sum man page.  Closes: #230750
8892   * Fix typo in pt_BR po file.  Closes: #192102
8893   * Revert fix for #232916, this turns out to be a bug in the pgpgp
8894     wrapper, dpkg worked fine with pgp itself.
8896  -- Scott James Remnant <scott@netsplit.com>  Thu, 11 Mar 2004 11:24:54 +0000
8898 dpkg (1.10.19) unstable; urgency=high
8900   * Distinguish unmet build dependencies from build conflicts.
8901     Closes: #217943, #235266.
8902   * Force NULL-termination of all tar file entry names.  Closes: #232025.
8903   * Allow dselect to use the full window width.  Closes: #139781.
8904   * Pass correct number of arguments for format string when out of disk
8905     space.  Closes: #213038, #217286, #213543, #213846.
8906   * Remove duplicated entries from ChangeLog.  Closes: #157437.
8907   * Fix dpkg-buildpackage when used with PGP.  Closes: #232916.
8908   * Update support for Debian FreeBSD.  Closes: #211566.
8909   * Store Architecture in the status file.  Closes: #228253.
8910   * Don't print offending lines in md5sum.  Closes: #170953.
8911   * Check bounds of md5sum lines.  Closes: #168443, #199489, #199693.
8913  -- Scott James Remnant <scott@netsplit.com>  Mon,  8 Mar 2004 19:05:32 +0000
8915 dpkg (1.10.18.1) unstable; urgency=medium
8917   * Non-maintainer upload to fix release-critical bugs.
8918   * Terminate string buffer in main/remove.c.  Closes: #228379.
8919   * Prevent stashing of hardlinked devices and setuid or setgid binaries
8920     by removing permissions on upgrade as well as on remove.
8921     Closes: #225692.
8922   * Update dpkg conflicts to << 1.10, instead of 1.9.
8923     Closes: #190611, #221989, #222760.
8925  -- Scott James Remnant <scott@netsplit.com>  Thu, 26 Feb 2004 01:17:27 +0000
8927 dpkg (1.10.18) unstable; urgency=medium
8929   * Rebuild, tagging and releasing correctly from cvs this time.
8931  -- Adam Heath <doogie@debian.org>  Mon, 27 Oct 2003 13:39:56 -0600
8933 dpkg (1.10.17) unstable; urgency=medium
8935   * Make dselect do conflict resolution when dealing with automatically
8936     selected recommended package. Thanks to Colin Watson for the analysis
8937     and patch. Closes: Bug#151663
8938   * Branden Robinson <branden@debian.org>:
8939     s/dpkg-checkbuild/dpkg-checkbuilddeps/ in usage.
8940   * dpkg-checkbuilddeps now sets $reduce_arch.  Closes: #212796.
8941   * Goswin Brederlow <brederlo@informatik.uni-tuebingen.de>:
8942     Add -u in dpkg-scanpackages.  Closes: #214123.
8943     Add -a<arch> command to dpkg-scanpackages.
8944   * Add .#* to dpkg-source's default ignore filter.  Closes: #217380.
8945   * Matthias Urlichs <smurf@smurf.noris.de>:
8946     Don't assume /usr/info/dir exists if /usr/info does.  Closes: #165770.
8947   * Jordi Mallach <jordi@debian.org>:
8948     Update Catalan translation.
8949   * Fix errors with dependency fields that reference ${dpkg:Version}.
8950     Closes: #213108.
8952  -- Adam Heath <doogie@debian.org>  Mon, 27 Oct 2003 13:04:57 -0600
8954 dpkg (1.10.16) unstable; urgency=low
8956   * Almost *EVERY* damn file was including config.h in the wrong spot.
8957     After making it the first include, then off_t/size_t/etc could actually
8958     be redefined to be 64-bit compatible.
8959   * Jordi Mallach <jordi@debian.org>:
8960     Fix configure to set HAVE_SETLOCALE.  Closes: #211816
8961   * "Loïc Le Loarer" <lll_deb@m4x.org>:
8962     Add a -d|--chdir option to start-stop-daemon.  Closes: #151802
8963   * Split the background block into 2 parts: one that does the fork, and
8964     opens /dev/tty and /dev/null, and one that does everything else.  The
8965     second block is then moved to be run right before the exec.  This
8966     allows error messages to be seen from the child(previously, they were
8967     lost), and allows for the chroot to not require the device files.
8968     These changes based on the bugs filed by:
8969     Marc Herbert <Marc.Herbert@ens-lyon.fr>: Closes: #155219
8970     Loïc Le Loarer <lll_deb@m4x.org>: Closes: #151800
8971   * Mario Lang <mlang@debian.org>:
8972     When --start, --startas and --pidfile are given, print 'process'
8973     instead of '(null)' for the process name, if it's already running.
8974     Closes: #209355
8975   * Imported several translated manpages, from debian-doc cvs:
8976     * Spanish: 822-date.1 cleanup-info.8 deb-control.5 deb-old.5
8977       deb.5 dpkg-checkbuilddeps.1 dpkg-deb.1 dpkg-divert.8 dpkg-name.1
8978       dpkg-scanpackages.8 dpkg-split.8 dpkg-statoverride.8 dpkg.8
8979       dselect.8 md5sum.1 start-stop-daemon.8 update-alternatives.8
8980       "Esteban Manchado Velázquez" <zoso@debian.org>: Closes: #171489
8981     * French: deb.5
8982       Julien Louis <arthur51@ifrance.com>: Closes: #164906
8983     * Portuguese: dpkg.8 dselect.8
8984   * Matt Zimmerman <mdz@debian.org>
8985     In dpkg's manpage, -O had an inverted word.  Closes: #111711
8986   * Marcin Owsiany <porridge@debian.org>:
8987     Fix Polish translation of 'conflicts with'  Closes: #112057
8988   * Jiri Masik <masik@darbujan.fzu.cz>:
8989     Improve Czech translation of: "dpkg - warning: ignoring request to
8990     remove %s which isn't installed."  Closes: #117518
8991   * Marco Nenciarini <mnencia@prato.linux.it>:
8992     Fix missing space in Italian translation when listing files, and the
8993     file is diverted.  Closes: #138244
8994   * Piotr Roszatycki <Piotr_Roszatycki@netia.net.pl>:
8995     Update Polish translation.  Closes: #142370
8996   * Martin Quinson <mquinson@ens-lyon.fr>:
8997     Fix missing space in French translation of: "%s - warning: downgrading
8998     %.250s from %.250s to %.250s.\n"  Closes: #149142
8999   * Hidetaka Iwai <tyuyu@sings.jp>:
9000     Fix typo in Japanese translation of dpkg --force-help; downgrade ->
9001     downgrade:  Closes: #157819
9002   * Martin Quinson <mquinson@ens-lyon.fr>:
9003     Fix French translation when listing files, and the file is diverted.
9004     Closes: #162154
9005   * Rune Schjellerup <olberd@odense.kollegienet.dk>:
9006     Fix Danish translation of(was missing the leading space): " does not
9007     appear to be available\n"  Closes: #192972
9008   * Fix md5sum when handling large files.  Closes: #162691
9009   * Fix dpkg-checkbuilddeps calling of parsedep.  It wasn't setting
9010     use_arch.  Closes: #212796.
9011   * Joey Hess <joeyh@debian.org>:
9012     Change formatting of info.dir.  Closes: #167379.
9014  -- Adam Heath <doogie@debian.org>  Sat, 25 Oct 2003 15:46:16 -0500
9016 dpkg (1.10.15) unstable; urgency=low
9018   * Fix detection of va_copy.
9019   * Back out debian/rules build-arch detection.  It is *not* possible *at
9020     all* to detect available targets in a rules file.  Period.
9022  -- Adam Heath <doogie@debian.org>  Fri, 19 Sep 2003 20:02:19 -0500
9024 dpkg (1.10.14) unstable; urgency=low
9026   * controllib.pl:
9027     * Rewrote the parsedep stuff, so that it wasn't done during control
9028       file parsing.  Scripts that need the internal parsed format should
9029       call parsedep on the field's value.
9030     * Split the substvars parsing into a separate function.
9031     * No longer validate dependency fields when reading the control file.
9032       Some fields may have vars in them, which breaks the validation.
9033     * dpkg-gencontrol calls substvars after parsing the control file, and
9034       then validates the substituted depends lines.  Originally,
9035       substitution occurred only during writing of the final output file.
9036     * Andreas Barth <aba@not.so.argh.org>:
9037       Fix bad regex that didn't allow spaces in dependency field parsing.
9038       It now directly matches what the c code expects.  It previously was
9039       allowing all of \S, which matched on '('.
9040       Closes: #211660.
9041   * Remove stale debug in debian/control that would have broken
9042     installation on s390.
9043   * We were calling our own local copy of dpkg-gencontrol, but the
9044     system-installed copy of dpkg-shlibdeps.  Now, both are called from
9045     the build directory.
9047  -- Adam Heath <doogie@debian.org>  Fri, 19 Sep 2003 12:29:34 -0500
9049 dpkg (1.10.13) unstable; urgency=low
9051   * Fix parsing of deps when both () and [] are specified.
9052   * Set $host_arch in controllib.pl:parsedep.
9053   * dpkg-checkbuilddeps doesn't output the [] stuff when finding invalid
9054     deps.
9056  -- Adam Heath <doogie@debian.org>  Wed, 17 Sep 2003 13:23:15 -0500
9058 dpkg (1.10.12) unstable; urgency=low
9060   * Fix dpkg-source output of build-depends lines.
9062  -- Adam Heath <doogie@debian.org>  Tue, 16 Sep 2003 13:43:45 -0500
9064 dpkg (1.10.11) unstable; urgency=low
9066   * dpkg no longer provides any BYHAND files.  If you need the source
9067     tarball, use the orig.tar.gz file available in the pool.  The
9068     precompiled tars were hold-overs from when debs were not standard
9069     ar/tar files.
9070   * Install /usr/share/doc/dpkg/pseudo-tags, which talks about the bug
9071     titling we use to mark bugs for filtering in the Debian bts.
9072   * Updated ca.po.
9073   * Teach dpkg-source that ~ is legal in version numbers
9074   * Add build-depends on sgml-base, and increase gettext build-depends to
9075     0.12.1-3.
9076   * Updated config.sub and config.guess in cvs.
9077   * Change use of strncpy in parsedb to memcpy.  Closes: #160447
9078   * No longer generate helpmsgs.{cc,h}.
9079   * several controllib changes:
9080     * Moved dependency parsing logic from dpkg-checkbuilddeps.
9081       The dpkg-checkbuilddeps parser didn't support empty fields, while
9082       the controllib parser did.
9083     * All dependency fields parsed by controllib.pl support [arch]
9084       specifiers.  If the arch specifier doesn't apply for the current
9085       arch, then the item will not be added to the internal list structure.
9086     * Comment lines(that begin with '#') are removed during parsing.
9087     * Store the original casing of field names, for use in error reporting.
9088     * Store the original field's casing with 'o:' prepended in %fi.
9089       * ballombe@merulo.debian.org:
9090         dpkg-checkbuilddeps now handles empty fields.  Closes: #111562
9091       * Branden Robinson <branden@debian.org>:
9092         support comments(first char on line begins with '#') in
9093         debian/control.  Closes: #191810
9094       * Bastian Blank <waldi@debian.org>:
9095         Allow for per-arch generated dependency fields.  Closes: #170575
9096       * Branden Robinson <branden@debian.org>:
9097         Report the original casing of field names when they are unknown.
9098         Closes: #177753
9099   * Patch dpkg-buildpackage to call debian/rules -qn build-arch, and if
9100     it's available, modify -B handling appropriately.  If build-arch is not
9101     available, then when -B was called, do *not* pass -B on to
9102     dpkg-checkbuilddeps.  Closes: #203097
9103   * Frank Lichtenheld <frank@lichtenheld.de>:
9104     Apply patch, to handle missing infodir.bak, and empty files.  Closes:
9105     #196361
9106   * Change standard_startup and standard_shutdown into macros.  Closes:
9107     #200351.
9108   * Andrew Suffield <asuffield@debian.org>:
9109     Fix inverted test of eof in parsedb, while looking for eof after
9110     field name.  Closes: #198218
9111   * Yann Dirson <dirson@debian.org>
9112     Add set -e to dpkg-doc.postinst.  Closes: #191261
9113   * Michael Weber <michaelw@debian.org>:
9114     dpkg --print-architecture now does gcc -dumpmachine instead of
9115     --print-libgcc-file-name.  Closes: #131893, #8241, #106793, #210285
9116   * Daniel Silverstone <dsilvers@digital-scurf.org>:
9117     Apply patch to change hashing function, and increase bin size, for
9118     the package database.  Closes: #206416
9119   * Paul Eggert <eggert@CS.UCLA.EDU>:
9120     Apply patch to make dpkg work with POSIX 1003.1-2001.  Closes:
9121     #204894
9122   * Joey Hess <joeyh@debian.org>:
9123     Fix "stripping trailing /" message from dpkg-statoverride.  Closes:
9124     #203782
9125   * Sami Liedes <sliedes@cc.hut.fi>:
9126     Increase filesdb bin size, and alter hashing function.  Closes:
9127     #179385
9128   * Anthony Towns <aj@azure.humbug.org.au>:
9129     Retry removing empty dirs during purge.  Closes: #112386
9130   * Darren Salt <linux@youmustbejoking.demon.co.uk>:
9131     Add .cvsignore to dpkg-source's default diff ignore regex.  Also fix
9132     missing \ escape for .deps.  Closes: #174013
9133   * Koblinger Egmont <egmont@uhulinux.hu>:
9134     Fix segfault with --status-fd.  Closes: #173618
9135   * Colin Watson <cjwatson@debian.org>,
9136     Andrew Suffield <asuffield@debian.org>:
9137     Add .svn, {arch}, and .arch-ids to dpkg-source -i default regex.
9138     Closes: #169359
9139   * Falk Hueffner <falk@debian.org>:
9140     Added alphaev68-linux-gnu to archtable.  Closes: #199360
9141   * Elie Rosenblum <fnord@debian.org>:
9142     Apply patch to support OpenBSD.  Closes: #154277
9143   * Geoff Richards <qef@laxan.com>:
9144     Add --config to action section, and add as EXAMPLES section.  Closes:
9145     #208014, #115759
9146   * Yann Dirson <dirson@debian.org>:
9147     install-info --version and --help now display on stdout.  Closes:
9148     #154633
9149   * Dan Jacobson <jidanni@dman.ddts.net>:
9150     Mention what dpkg and dpkg-query -S will not find.  Closes: #153096
9151   * Sebastian Leske <sleske@enterprise.mathematik.uni-essen.de>:
9152     Mention in dpkg(8) that downgrading a package can have serious
9153     consequences.  Closes: #61156
9154   * Dan Jacobson <jidanni@dman.ddts.net>:
9155     In dpkg-scanpackages(8), including small note that other tools might
9156     use the generated Packages file.  Closes: #208894
9157   * Warren Turkal <wturkal@cbu.edu>:
9158     Fix some typos in dpkg-source(1).  Closes: #207259, #204123, #167426
9159   * Dan Jacobson <jidanni@dman.ddts.net>:
9160     Alter text in dselect(8), implying that other interfaces are available
9161     for installing packages.  Closes: #206164.
9162   * Daniel Bonniot <bonniot@users.sourceforge.net>:
9163     Note in start-stop-daemon(8) that --nicelevel takes an argument.
9164   * Ruben Porras <nahoo82@telefonica.net>:
9165     Remove duplicate 'can' in deb-control(5).  Closes: #183840
9166   * Dan Jacobson <jidanni@dman.ddts.net>:
9167     Fix short description in dpkg-scansources(8).  Closes: #175770
9168   * Zefram <zefram@fysh.org>:
9169     In dpkg(8), move dpkg-query options to their own subsection, like
9170     dpkg-deb.  Closes: #174971
9171   * Thomas Hood <jdthood@yahoo.co.uk>
9172     Add --dry-run and --simulate as synonyms to --no-act.  Closes:
9173     #165099
9174   * Junichi Uekawa <dancer@netfort.gr.jp>:
9175     Fix wrong reference to DEB_BUILD_GNU_SYSTEM on --host in
9176     dpkg-architecture(1).  Closes: #163621
9177   * Michael Klein <michael.klein@puffin.lb.shuttle.de>:
9178     s/Usuaully/Usually/ in deb-control.5.  Closes: #161819
9179   * Joey Hess <joeyh@debian.org>:
9180     Removed reference in dselect(8) about recommends not being handled
9181     well.  Closes: #157973
9182   * Andrew Suffield <aps100@doc.ic.ac.uk>:
9183     s/dpkg-source/dpkg-parsechangelog/ in dpkg-parsechangelog -h.
9184     Closes: #155822
9185   * Matej Vela <vela@debian.org>:
9186     Unhighlight "May be repeated multiple times." in dpkg-source(1).
9187     Closes: #151845
9188   * Jordi Mallach <jordi@debian.org>:
9189     Make all actions in dpkg-deb -h lower case.  Closes: #150642
9190   * Alexander Hvostov <root@aoi.dyndns.org>:
9191     Add -g|--group to start-stop-daemon, and document properly.  Closes:
9192     #127342
9193   * Szerb Tamas <toma@mlf.linux.rulez.org>:
9194     s/THANKS/THANKS.gz/ in dpkg(8).  Closes: #91348
9195   * "James R. Van Zandt" <jrv@vanzandt-pc.mitre.org>:
9196     In dpkg(8), mention running dselect, install after --set-selections.
9197     Closes: #175236
9198   * Yann Dirson <dirson@debian.org>:
9199     Remove disabled --command-fd from help.  Closes: #169619
9200   * Tobias Burnus <tburnus@physik.fu-berlin.de>:
9201     Apply patch to update-alternatives that provides --set and --remove-all
9202     commands.  Closes: #133745.
9203   * Osamu Aoki <debian@aokiconsulting.com>:
9204     Add --all to update-alternatives, that calls --config on all
9205     alternatives.  Closes: #126621
9206   * Dan Jacobson <jidanni@jidanni.org>:
9207     Alter --config prompt, to be more clear, that one must 'press' enter to
9208     accept the default.  Closes: #203557
9209   * Peter Moulder <pmoulder@bowman.csse.monash.edu.au>:
9210     Fix some -w issues in update-alternatives.  Closes: #137313
9211   * Eduard Bloch <edi@gmx.de>:
9212     Apply patch to check whether the target path exists on removing.
9213     Closes: #37254
9214   * Colin Walters <walters@debian.org>:
9215     After opening files, set binmode.  Closes: #175363
9217  -- Adam Heath <doogie@debian.org>  Tue, 16 Sep 2003 12:52:11 -0500
9219 dpkg (1.10.10) unstable; urgency=low
9221   * Update archtable for hurd.  Closes: #187509.
9222   * Make the dpkg-iasearch conflicts versioned.  Closes: #170698.
9223   * Surround sed call with '' in Makefile.in.  Closes: #187534.
9224   * Strip trailing / from the file args in dpkg-statoverride.  Closes:
9225     #184239.
9226   * Modified to use autotools-dev.  Closes: #179656.
9227   * Add netbsd support.  Closes: #179658, #179659.
9228   * Support hyphenated values in dpkg-architecture. Closes: #179661
9229   * No longer managed the /usr/doc symlinks.
9231  -- Adam Heath <doogie@debian.org>  Sat, 26 Apr 2003 15:10:24 -0500
9233 dpkg (1.10.9) unstable; urgency=low
9235   * Fix dereference in main/help.c:cu_closefd(), which was the cause of
9236     close(random number) on most arches, but close(0) on s390x.
9237   * Add s390x to archtable.  Closes: #160976.
9239  -- Adam Heath <doogie@debian.org>  Sun, 15 Sep 2002 13:21:38 -0500
9241 dpkg (1.10.8) unstable; urgency=low
9243   * Make the multiline regex have an upper bound, instead of being
9244     unbounded, as newer perls have a larger stack frame, which cause them
9245     to segfault quicker with larger inputs.  Closes: #159756.
9247  -- Adam Heath <doogie@debian.org>  Thu,  5 Sep 2002 16:32:01 -0500
9249 dpkg (1.10.7) unstable; urgency=low
9251   * Fix double free in modstatdb_init, in the case that modstatdb_shutdown
9252     was called previously.  Closes: #159515.
9254  -- Adam Heath <doogie@debian.org>  Tue,  3 Sep 2002 18:59:19 -0500
9256 dpkg (1.10.6) unstable; urgency=low
9258   * Don't call nffreeall, in any of the c/c++ programs.  It appears dselect
9259     slightly corrupts it's memory enough that it can't be freed without
9260     segfaulting.  Closes: #159023.
9262  -- Adam Heath <doogie@debian.org>  Sun,  1 Sep 2002 00:19:18 -0500
9264 dpkg (1.10.5) unstable; urgency=low
9266   * Fix segfault in md5sum if the file being checked doesn't exist.
9267     Closes: #154503.
9268   * Fix extraction of md5sum in dpkg-scanpackages.  Closes: #153769.
9269   * Handle directories better in md5sum.  Closes: #157453.
9270   * Fix read past buffer in lib/nfmalloc.c.  Closes: #157304.
9271   * Fix several read pass buffer bugs, and a memleak.  Closes: #155362.
9272   * Fix segfault when --auto-deconfigure is given.  Closes: #157762.
9273   * Allow spaces between the end of a version, and the trailing ')'.
9274     Closes: #154898.
9275   * Fixes for HURD:  Closes: #156545
9276     * Add i386-gnu0.3 to archtable.
9277     * Fix handling of static compiles, with regard to zlib.
9278   * Previous install-infos(before 1.10) handled multiple dir file entries,
9279     because they would copy the entire stanza unmodified.  The newest
9280     version does not do this, as it reformats the options, and thereby
9281     only takes the first line.  So, we now split all the lines from the
9282     stanza, and process them all.  Closes: #147492.
9283   * Fix corruption of available file, caused by use of memory that was
9284     previously freed.  Closes: #154257.
9285   * Fix several minor memleaks.
9286   * Remove /usr/sbin/start-stop-daemon.  Closes: #156437.
9288  -- Adam Heath <doogie@debian.org>  Thu, 29 Aug 2002 16:43:15 -0500
9290 dpkg (1.10.4) unstable; urgency=low
9292   * Remove -ffunction-sections and -fdata-sections.  Closes: #152130.
9293   * Install archtable into /usr/share/dpkg/.
9295  -- Adam Heath <doogie@debian.org>  Sun, 14 Jul 2002 15:17:56 -0500
9297 dpkg (1.10.3) unstable; urgency=low
9299   * Move dselect.cfg to dselect package. Closes: Bug#152132
9300   * Install methods into /usr/lib/dpkg/methods, not /usr/lib/dpkg.  Closes:
9301     #152161.
9302   * Fix test inversion in start-stop-daemon, when checking the pid given in
9303     a pid file.  Thanks Thomas Morin <thomas.morin@enst-bretagne.fr>.
9304     Closes: #152270.
9305   * If in --test mode, and --stop is given, increment n_killed, so that
9306     start-stop-daemon returns the proper exit value.  Thanks Thomas Morin
9307     <thomas.morin@enst-bretagne.fr>.  Closes: #151992.
9309  -- Adam Heath <doogie@debian.org>  Thu, 11 Jul 2002 22:58:43 -0500
9311 dpkg (1.10.2) unstable; urgency=low
9313   * Make configuration files in $HOME work again
9314   * dpkg + dpkg-static conflict with dpkg-dev << 1.9, to fix md5sum error
9315     in dpkg-source.  Closes: #151691.
9316   * Remove -Z from patch call, in dpkg-source, as it makes patch warn about
9317     missing timestamps.  Closes: #151965
9318   * Install debian/dselect.conffiles.
9320  -- Adam Heath <doogie@debian.org>  Thu,  4 Jul 2002 21:08:09 -0500
9322 dpkg (1.10.1) unstable; urgency=low
9324   * Add conflict with dpkg-iasearch which intruded on our namespace.
9325   * Replace manpages-de which includes one of our manpages.  Closes: #151485
9326   * Don't always call autoheader when building. Closes: #151471
9327   * Fix double conflict in dpkg. Closes: Bug#151581
9328   * Move dselect methods to dselect package.
9329   * dpkg-checkbuilddeps no longer checks for build-essential. dpkg should
9330     not hardcode Debian policy.
9331   * Make dpkg-genchanges accept ~ as part of a package filename.
9332     Closes: Bug#150739
9333   * Move dpkg.cfg and dselect.cfg manpages into dpkg package. Closes: Bug#132901
9335  -- Wichert Akkerman <wakkerma@debian.org>  Tue,  2 Jul 2002 12:34:07 +0200
9337 dpkg (1.10) unstable; urgency=low
9339   * dpkg now reorders symlinks when extracting debs.  However, this is also
9340     still done when building debs.  After a stable release of Debian has
9341     occurred with this modified dpkg, the reordering when building can be
9342     removed.
9343   * Fixed upper/lowercase problems with package names. Closes: Bug#58091
9344     (and 3 others).
9345   * Add Russian manual pages
9346   * Fix n in dselect package list (performs searchagain now)
9347   * Fix layout problem in dpkg-divert manpage. Closes: Bug#103667
9348   * When a package is set to hold, and a reinstallation is requested,
9349     -E will not properly skip it.  Closes: #45787.
9350   * Make dpkg-checkbuilddeps use dpkg-architecture. Closes: Bug#104230
9351   * Improve dpkg-architecture documentation. Closes: Bug#104232
9352   * Update German translation. Closes: Bug#97239
9353   * Update Polish translation. Closes: Bug#115783
9354   * Update French translation.
9355   * Update Brazilian translation.
9356   * Update Danish translation.
9357   * Update Galician translation.
9358   * Update Portuguese translations.
9359   * Add Catalan translation
9360   * Add German md5sum manpage
9361   * Add Brazilian update-alternatives manpage. Closes: Bug#122132
9362   * Improve dselect manpage. Closes: Bug#103839
9363   * dpkg-name(1) no longer mentions the non-existing dpkg(5) manpage.
9364     Closes: Bug#104214
9365   * Improve handling of Recommends and Suggests in dselect. Closes: Bug#34942
9366   * Add per-user configuration files. Closes: Bug#103845
9367   * Split dselect into its own package. dpkg Pre-Depends on it
9368     to make sure no weird things happen during an upgrade but this
9369     will allow us to make dselect option at some point in the future.
9370     Closes: #114249.
9371   * Make colours in dselect user-configurable. Closes: Bug#103994
9372   * Make Q do an abort in the method selection menu to make things more
9373     consistent with the package list
9374   * Fix test for nice(2) failure in start-stop-daemon. Closes: Bug#104561
9375   * Improve the dselect helpscreen a bit. Closes: Bug#72634
9376   * New version comparison routine that can handle arbitrarily large numbers
9377     and accepts `~' as a low-sorting character. Closes: Bug#93386
9378   * dselect now accepts regular expressions when searching for packages
9379     and can search in package descriptions as well.
9380     Closes: Bug#81009,#83139
9381   * Move query commands into a separate dpkg-query command. For the old options
9382     (-L,-l,-s,-S) dpkg will still call it for you.
9383   * Add configurable package listing support to dpkg-query
9384   * Handle window resize in dselect main menu. Closes: Bug#98275
9385   * update-rc.d moved to the sysvinit package. Closes: Bug#108887,#109282
9386   * Add --showformat and --show options to dpkg-deb and dpkg-query to
9387     allow one to customize the output format
9388   * several install-info cleanups:
9389     * Move /usr/info/dir to /usr/share/info/dir.  Closes: #67174.
9390     * If /usr/share/info doesn't exist, print a message saying so,
9391       instead of the confusing "couldn't lock" error.  Closes: #2531.
9392     * If /usr/share/info/dir doesn't exist, or is empty, try to copy the
9393       backup from /var/backups/infodir.bak.  Closes: #121309.
9394     * Add a --remove-exactly option, and allow for relative filenames.
9395       Closes: #92650.
9396     * Use the section from the .info file if --section is not given.
9397       Closes: #76100.
9398     * Error messages now include the filename being processed.
9399       Closes: #66735
9400     * /usr/share/info/dir now has it's entries formatted to even widths.
9401       Closes: #11228
9402     * --calign|--align|--maxwidth are now ignored.
9403   * strip enoent as well. Closes: Bug#112378
9404   * Fix format error in Dutch translation. Closes: Bug#113120
9405   * When parsing stdin, md5sum now displays '-' as the filename, to match
9406     textutils md5sum.  Closes: #121489.
9407   * Apply patch from bug, to give update-alternatives a --list command.
9408     Closes: #120924.
9409   * Make dpkg-checkbuilddeps always check for build-essential.
9410     Closes: Bug#118420.
9411   * Use space separated output instead of comma separated in
9412     dpkg-checkbuilddeps
9413   * Update default ignore expression in dpkg-source to also match *~ and
9414     *.swp in subdirs. Closes: Bug#127458
9415   * Handle errors when verifying md5sums. Closes: Bug#102367
9416   * dpkg-source now uses reliable timestamps for changed files.
9417     Closes: Bug#105750
9418   * Fix typo in start-stop-daemon help message. Closes: Bug#131439
9419   * update-alternative exits with a non-zero exit code when displaying
9420     a non-existing alternative. Closes: Bug#131496
9421   * Use gzip -c in install-info. Closes: Bug#131758
9422   * start-stop-daemon works on HP-UX now. Closes: Bug#130130
9423   * Fix dselect spin when run without input. Closes: Bug#132476
9424   * Update-alternatives now correctly restores an alternative to auto mode
9425     when removing a manually selected alternative. Closes: Bug#132632
9426   * Copy bugs and origin information into status file. Closes: Bug#132714
9427   * Improve wording of update-alternatives --config text. Closes: Bug#133035
9428   * Add manpages for dpkg.cfg and dselect.cfg. Closes: Bug#132901
9429   * Improve test for illegal packagename for dpkg-gencontrol -p option
9430   * Fix segfault when getenv("PATH") returns null.  Closes: Bug#136349
9431   * Add Large File Summit extensions. Closes: Bug#130509
9432   * Fix typo in dpkg-source manpage. Closes: Bug#141906
9433   * Re-fix handling of multiple blank lines in control. Closes: Bug#143117
9434   * Document --force-confmiss and --force-bad-verify. Closes: Bug#146855
9435   * Drop upgrade compat stuff in dpkg postinst for ancient versions (over
9436     5 years old)
9437   * Always set CLOEXEC on the lock fd.  Closes: Bug#147872
9438   * Clean up tmp files when ctrl-c is sent to dpkg-source.  Closes:
9439     Bug#58653.
9440   * dpkg-source no longer requires exact case matches for fields in
9441     debian/control.  Closes: Bug#139159.
9442   * dpkg-scanpackages now gives proper case for Source and Installed-Size.
9443     Closes: Bug#119532.
9444   * dpkg-architecture: s/build on/built on/; same for 'build for'.
9445     Closes: Bug#140441.
9446   * cl-debian.pl now recognizes emergency as valid in changelogs.
9447     Closes: Bug#138013.
9448   * Properly count recursive expansion of variables, instead of just
9449     counting all variable expansions.  Closes: #144121.
9450   * Add -I<filename> to dpkg-buildpackage and dpkg-source, to excludes
9451     files from tar, when building a native package.  Closes: Bug#75947.
9452   * Close the old debian/files file, before doing a rename.  Closes:
9453     Bug#111503.
9454   * Fix documentation of -v<version> for dpkg-parsechangelog, removing the
9455     requirement that the version has to be in the changelog.  Closes:
9456     Bug#117968.
9457   * Fix typo in dpkg-source(1), for '-sU'.  Closes: Bug#126340.
9458   * Add dpkg-scansources to dpkg-scanpackages(8).  Closes: Bug#147924.
9459   * Change /usr/info into a symlink to /usr/share/info if possible
9461  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 21 Jun 2002 21:53:15 +0200
9463 dpkg (1.9.21) unstable; urgency=low
9465   * Fix corrupt Swedish translations that would some error messages display
9466     incorrectly.
9467   * Enable --force-overwrite by default in /etc/dpkg/dpkg.cfg
9468   * dpkg.cfg is now no longer a conffile. This means the installer can
9469     change defaults depending on how an install is done
9470   * Detect truncated debs, and abort the unpack.  Closes: #138569.
9471   * Improve dpkg(8) --force documentation
9472   * Fix error in Russian dselect translation
9474  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 16 May 2002 19:42:29 +0200
9476 dpkg (1.9.20) unstable; urgency=medium
9478   * Fix assertion when --auto-deconfigure is set.  Closes: #137765.
9479   * Fix segfault discovered by fixing the above.
9480   * Fix segfault when getenv("PATH") returns null.  Closes: #136349
9481   * Recompiled against updated zlib, to fix possible security issue.  Also
9482     bumped build-depends to match.  Closes: #137931(grave)
9484  -- Adam Heath <doogie@debian.org>  Sun, 17 Mar 2002 02:52:44 -0600
9486 dpkg (1.9.19) unstable; urgency=medium
9488   * install-info continues to read all data from a pipe, until EOF.
9489     Closes: #99816(grave).
9490   * Add Catalan translation
9491   * Update Danish translation. Closes: Bug#131869
9492   * Update French translation.
9493   * update-alternative exits with a non-zero exit code when displaying
9494     a non-existing alternative. Closes: Bug#131496
9495   * Changed Maintainer to debian-dpkg@lists.
9496   * Fix "Up to date installed packages" for polish translation.  Closes:
9497     #116398.
9498   * Swap updated/up-to-date polish translations(they were reversed).
9499     Closes: #117583, #102961.
9500   * Mark /etc/alternatives/README as a conffile.
9501   * Strip .note, .comment, and /usr/lib/dpkg/enoent.
9502   * Make dpkg-gencontrol not warn about Uploaders.  Closes: #111090.
9504  -- Adam Heath <doogie@debian.org>  Sat,  2 Feb 2002 11:47:34 -0600
9506 dpkg (1.9.18) unstable; urgency=low
9508   * Fix MD5Sum corruption when upgrading a package.  Closes: Bug#113961.
9509   * Add Wichert and I to debian/control:Uploaders.
9511  -- Adam Heath <doogie@debian.org>  Sat,  3 Nov 2001 00:31:00 -0600
9513 dpkg (1.9.17) unstable; urgency=low
9515   * updated-rc.d moved to the sysvinit package. Closes: Bug#108887,#109282
9517  -- Wichert Akkerman <wakkerma@debian.org>  Wed, 22 Aug 2001 01:24:52 +0200
9519 dpkg (1.9.16) unstable; urgency=low
9521   * Revert architecture-change to dpkg-source from 1.9.11, see ChangeLog
9522     for details.
9524  -- Wichert Akkerman <wakkerma@debian.org>  Thu,  5 Jul 2001 22:42:11 +0200
9526 dpkg (1.9.15) unstable; urgency=low
9528   * Change policy of handling dscformat in dpkg-source
9529   * Fix the arglist construction for maintainer scripts
9530   * Revert dscformat to 1.0 since older dpkg-source versions do not have
9531     the new policy. In the future (starting at format 2.0 to maintain
9532     compatibility with old dpkg-source implementations) minor changes to
9533     the dscformat have to be fully backward and forward compatible.
9535  -- Wichert Akkerman <wakkerma@debian.org>  Sat, 30 Jun 2001 16:41:43 +0200
9537 dpkg (1.9.14) unstable; urgency=low
9539   * Make the Uploaders field in a .dsc file optional.
9540   * Disabled sanity checking of source packages.
9542  -- Adam Heath <doogie@debian.org>  Mon, 25 Jun 2001 02:22:40 -0500
9544 dpkg (1.9.13) unstable; urgency=medium
9546   * Add a -W option to dpkg-source(and the other utils, where it is just
9547     passed thru), to turn certain errors into warnings(of which, only
9548     one is changed, namely, the 'tar doesn't contain preceding directory'
9549     error).  Closes: #101813, and partially 101845.
9550   * Don't error out if the files in the tar have leading './', for
9551     dpkg-source.  (another partial close of 101845).
9552   * Handle the case where a single directory exists in the orig.tar.gz, but
9553     it is NOT of the form <pkg>-<ver>.  Closes: #101845.
9554   * Set LC_ALL in dpkg-source when we call external programs when we are
9555     going to parse their output.  Another bug from 101845.
9556   * Handle stating of truncated cpio filenames(100 char limit, bah), in
9557     dpkg-source.  Another bug from 101845.
9558   * Add support for an Uploaders field, which is read from the first
9559     paragraph of debian/control, and propagated to the .dsc.  This lists
9560     the people allowed to upload a package.  If it is not set, then the
9561     value of the Maintainer is placed into this field of the .dsc.  This
9562     bumps the .dsc format to 1.1.  Closes: #101815.
9563   * Handle symlinks in the tarball, and don't error out if found.
9564   * in controllib, make warnerrors default to warnings.  Affects
9565     dpkg-source.  This will be changed to be errors in the future.
9567  -- Adam Heath <doogie@debian.org>  Sun, 24 Jun 2001 13:48:52 -0500
9569 dpkg (1.9.12) unstable; urgency=medium
9571   * Fix do_script() bug. Closes: Bug#101552
9572   * Fix building and extracting of certain kinds of source packages.
9573     Closes: #101684.
9574   * Added Colin Watson to THANKS.
9576  -- Adam Heath <doogie@debian.org>  Wed, 20 Jun 2001 18:27:03 -0500
9578 dpkg (1.9.11) unstable; urgency=low
9580   * The "Hang on to your hats, it gets bumpy from here." release.
9581   * Trim trailing spaces from package names when checking builddeps.
9582     Closes: #101304.
9583   * Apply patch from bug to fix logic error that kept everything but
9584     Build-Deps from working in checkbuilddeps.  Closes: #101511.
9585   * Apply patch to correctly check the output of gcc on hurd, for
9586     dpkg-architecture. Closes: #99874.
9587   * The internal pod docs in dpkg-architecture were updated to reflect
9588     that -f was no longer implied when -q was given, but the build system
9589     wasn't generating new documentation.  Closes: #100997.
9590   * deb(5) now has a see-also for deb-old(5).  Closes: #99620.
9591   * Fix dpkg-shlibdeps infinite directory recursion thru symlinks.
9592     Closes: #97622.
9593   * Set the Architecture to 'source' only when doing source only uploads
9594     in the generated changes files.  Closes: #100144.
9595   * Document -nc in the dpkg-buildpackage manpage.  Closes: #101038.
9596   * Make dpkg-source work with GNU md5sum.  Closes: #97666.
9597   * in dpkg-source, when both arch: all and arch: <arch> packages exist in
9598     debian/control, don't promote the source arch: to any, but only list
9599     all and <arch>.  Closes: #94608
9600   * Apply patch from Colin Watson:  Closes: #89679
9601     * Reset SIGPIPE to DEFAULT when forking gzip.
9602     * set LANG to C before execing cpio, as we parse its output.
9603     * In checktarcpio() and checktarsane(), use the previously open pipes,
9604       instead of the opening files on disk(which was the old, ancient way).
9605     * Improve the output parsing of tar in checktarsane().
9606   * warn instead of die when find returns an error(which happens if there
9607     is a dangling symlink, because we use -follow).  Closes: #51479.
9608   * Change list of allowed urgencies in debian/changelog to: low, medium,
9609     high, and critical.  Closes: #94475.
9610   * Error out if an illegal package name is used in dpkg-gencontrol.pl.
9611     Closes: #61211
9612   * Apply patch from Marcus Brinkmann to dpkg-buildpackage:  Closes:
9613     #98201.
9614     * Option -a implies option -d.
9615     * Set ARCH correctly to host architecture, rather than build arch.
9617  -- Adam Heath <doogie@debian.org>  Tue, 19 Jun 2001 22:15:25 -0500
9619 dpkg (1.9.10) unstable; urgency=low
9621   * Fix [arch] parsing, and handle extra spaces better.  Closes: #100512,
9622     #101031.
9623   * Apply patch from bug, to fix cleanup of dpkg-divert temp files.
9624     Closes: #100474.
9625   * Swap j/k keys on the main menu, so they function like the package
9626     selection screen(and like vi).  Closes: #100502.
9627   * Multiple fixes in bug: Closes: #99892.
9628     * s/DEAD_JOE/DEADJOE/ in dpkg-source.
9629     * Switch to auto mode if alternative symlink is missing.
9630   * Update Spanish translation
9632  -- Adam Heath <doogie@debian.org>  Sat, 16 Jun 2001 14:57:45 -0500
9634 dpkg (1.9.9) unstable; urgency=low
9636   * The leading and trailing spaces patch in the last upload had some
9637     issues with trailing spaces.  This fixes them.  No bug to close, as the
9638     bts is still down.
9640  -- Adam Heath <doogie@debian.org>  Wed,  6 Jun 2001 22:36:57 -0500
9642 dpkg (1.9.8) unstable; urgency=low
9644   * Remove leading and trailing spaces from versions, and check for
9645     embedded spaces, inside dpkg.  Closes: #99186.
9646   * Handle varied use of spaces in dpkg-checkbuilddeps.  Closes: #98899.
9647   * Reset SIGPIPE back to default, in dpkg-source.  Closes: #98563.
9648   * Remove bogus $! check from dpkg-architecture.  Closes: #99428.
9650  -- Adam Heath <doogie@debian.org>  Sat,  2 Jun 2001 15:15:04 -0500
9652 dpkg (1.9.7) unstable; urgency=low
9654   * If a new file doesn't exist on disk, but is a going to be installed as
9655     a directory, then don't error out.  Closes: Bug#17381.
9656   * Update japanese manpages.  Closes: Bug#97831.
9657   * Update it.po.  Closes: Bug#98273.
9658   * Fix bad cleanup in dpkg-divert.  Closes: Bug#98578,#98828,#98831.
9660  -- Adam Heath <doogie@debian.org>  Mon, 28 May 2001 18:59:03 -0500
9662 dpkg (1.9.4) unstable; urgency=low
9664   * Oops.  EOF_mmap incorrectly detecting the end of the data block.
9665     Closes: Bug#95981.
9666   * After fixing the above bug, and using debootstrap to build a sid
9667     chroot, I discovered that my previous dependency cycle fix could cause
9668     segfaults in some situations.
9670  -- Adam Heath <doogie@debian.org>  Tue,  1 May 2001 23:04:46 -0500
9672 dpkg (1.9.3) unstable; urgency=low
9674   * Fix compiles on ppc. Closes: Bug#95918.
9676  -- Adam Heath <doogie@debian.org>  Tue,  1 May 2001 00:29:45 -0500
9678 dpkg (1.9.2) unstable; urgency=low
9680   * Recompile, to fix incorrect path 1.9.1/dpkg-divert. Closes: Bug#95845
9682  -- Adam Heath <doogie@debian.org>  Mon, 30 Apr 2001 14:21:28 -0400
9684 dpkg (1.9.1) unstable; urgency=low
9686   * Fix segfault with empty status and available, and when missing a
9687     trailing new line.  Closes: Bug#95496
9688   * Make dpkg-shlibdeps not care if dpkg --search return with an error.
9689     Closes: Bug#95568
9690   * Fix corruption of user-defined fields in status and available.
9691     Closes: Bug#95567.
9692   * Changed dpkg.cfg to include no-debsig by default, as no debs are
9693     currently signed, and we get false errors when debsig-verify is
9694     installed.  This will be removed in the future, when the archive tools
9695     support package signatures.  Closes: Bug#95573
9696   * dpkg-buildpackage should only check for valid signinterface if the
9697     user specifies one. Closes: Bug#95598
9698   * Fix removing of diversions.  Closes: Bug#95655
9699   * Fix md5sum -c. Closes: Bug#95586
9701  -- Adam Heath <doogie@debian.org>  Sat, 28 Apr 2001 16:28:21 -0500
9703 dpkg (1.9.0) unstable; urgency=low
9705   * Things should mostly work OpenBSD 2.8 as well now
9706   * Added a --status-pipe option.
9707   * Fixed several memleaks.
9708   * Profiled dpkg.
9709     * Reworked lib/parse.c:parsedb().  Instead of using getc(), then
9710       calling varbufaddc(), it now reads the entire file at once into a
9711       huge buffer, then moves pointers around, to do the parsing.  This
9712       gave a speedup of 33% on a dual celeron 333, when reading status and
9713       available.
9714     * various other speedups.
9715   * Removed all --smallmem code, as smallmem and largemem now actually
9716     use about the same amount of memory, and largemem is faster.  Both
9717     --largemem and --smallmem are now obsolete options, and will print
9718     a warning if used. Closes: Bug#84905, #67528
9719   * Initialize uninitialized variables.  This should solve several
9720     segfaults. Closes: Bug#25317(plus 9 others, thru the beauty of
9721     merges)
9722   * Found that when working with dependency cycles, and part of the cycle
9723     was a provide, the provider was not being considered, so the cycle
9724     could not be broken. Closes: Bug#87985(and 3 others)
9725   * Update German translation, Closes: Bug#80529,#80532,#87581
9726   * Update French translation, Closes: Bug#65284,#85035,#87238
9727   * Update Japanese translation, Closes: Bug#93873
9728   * Updated all other translations (but no bugs filed)
9729   * Add Danish translation
9730   * Remove spurious '%s' in Polish translation, Closes: Bug#74814
9731   * Add French manpages, courtesy of Philippe Batailler
9732   * Ignore vim swapfiles in dpkg-source, Closes: Bug#81630
9733   * remove --import option from dpkg-statoverride, Closes: Bug#81358
9734   * Replace nfmalloc implementation with obstack. Added obstack.[ch] to
9735     optlib, for non-GNU systems.
9736   * dpkg-divert only allows absolute filenames now. Closes: Bug#82419
9737   * Handle diffs from non-existing files to existing files. Closes: Bug#82708,
9738     #90982.
9739   * Small fixes to the buildsystem. Closes: Bug#84361
9740   * Fix dpkg-statoverride --update for things other then plain files.
9741     Closes: Bug#84449
9742   * Fix race with source directory disappearing in dpkg-source.
9743     Closes: Bug#45511
9744   * Fix manpage for dpkg-gencontrol. Closes: Bug#84625
9745   * Add -n option for dpkg-gencontrol to specify a filename. Closes: Bug#75796
9746   * Use POSIX glob instead of regexp in debian/rules. Closes: Bug#83042,
9747     #84582
9748   * fix typo in usage message for dpkg-divert, Closes: Bug#85977
9749   * Use full path for argv[0] when calling scripts. Closes: Bug#68783
9750   * Add ia64 support to dpkg-architecture.
9751   * Minor script changes, Closes: Bug#87485
9752   * Stop dpkg-genchanges from complaining about missing packages
9753     when doing a source-only build. Closes: Bug#87571,#15644,#25496
9754   * Various dpkg-architecture cleanups. Closes: Bug#87505
9755   * Modify dpkg-architecture to handle gcc versions containing letters.
9756     Closes: Bug#83083
9757   * dpkg-buildpackage updates: Closes: Bug#87572,#85847
9758     + make -C work properly
9759     + fix test for gpg secret keyring
9760     + improve source messages
9761     + skip signing pause when building unsigned packages
9762     + test for invalid signinterface. Closes: Bug#87579
9763     + remove debsign support, it's useless and doesn't work
9764     + Use correct architecture when naming .changes file. Closes: Bug#88015
9765   * Fix wording in dpkg-statoverride manpage for --add. Closes: Bug#85080
9766   * Fix typo in start-stop-daemon manpage. Closes: Bug#88225
9767   * Add dpkg-checkbuilddeps to check if build dependencies are satisfied
9768     and modify dpkg-buildpackage to call it if wanted.
9769     Closes: Bug#86453,#83812,#60717,#74372,#67896,#60717,#13961
9770   * dpkg-parsechangelog can read a changelog from stdin now. Closes: Bug#80142
9771   * Fix confusing wording for dpkg-buildpackage -uc option in manpage.
9772     Closes: Bug#83468
9773   * dpkg-statoverride now exits with exitcode 1 if we do a --list but don't
9774     output anything. Closes: Bug#84328
9775   * Remove Linux reference from all scripts, they should run fine on
9776     other OSes as well.
9777   * Mark last argument in dpkg-scanpackages usage info as optional.
9778     Closes: Bug#86658
9779   * Fix cache in dpkg-scanpackages version comparison. Closes: Bug#90722
9780   * Fix formatting error in dpkg-source.1. Closes: Bug#82723
9781   * Change dpkg-gencontrol to fix comma-related syntax errors after
9782     processing substvars. Closes: Bug#92908
9783   * Verify package signatures if debsig-verify is installed. Closes: Bug#37017
9784   * Handle window resize in dselect main menu. Closes: Bug#93559
9785   * Initialize all parts of the package record.  This should fix several
9786     segfaults people have been seeing in dpkg.  Closes: Bug#90328.
9787   * Apply patch from bug#86847, that escapes intl chars in filenames.
9788     Closes: Bug#83752, #85040, #86847, #89000.
9789   * Errors during dpkg -s(and other similar commands) are now printed
9790     on stderr.  Closes: Bug#88987.
9791   * Add a --retry option to start-stop-daemon. Closes: Bug#75139
9792   * Fix regeps to extract Closes magic from a changelog so the #
9793     is really optional. Closes: Bug#94474
9794   * Remove useless statement from dpkg-shlibdeps. Closes: Bug#90516
9795   * Make the debian changelog parser identify itself with $progname.
9796     Closes: Bug#89409
9797   * Give a syntax error when we get an unexpected PGP signature in control
9798     files. Closes: Bug#75562
9799   * Change dpkg manpage to reflect that --force-statoverride is no enabled
9800     by default. Closes: Bug#95023
9801   * Handle dangling symlinks, by ignoring error code 1 from find, when
9802     processing --recursive. Closes: Bug#4784
9803   * dpkg -L, -S, -l, -s, and -p now return an error code if any package
9804     does not exist. Closes: Bug#4974, #72406
9805   * dselect has a configuration file as well now
9806   * Get ENOENT value at runtime in dpkg-divert instead of hardcoding it.
9807     Closes: Bug# 31620
9808   * Fix wrong ENOENT test in dpkg-divert. Closes: Bug#95088
9809   * Add support for more SuperH variants (sh[34]{,eb}-linux-gnu)
9810   * Fix formatting and a typo in the dpkg manpage
9811   * Document the dpkg.cfg configuration file in dpkg(8)
9813  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 26 Apr 2001 12:39:16 +0200
9815 dpkg (1.8.3.1) unstable; urgency=low
9817   * Revert change to nfmalloc.c that was causing SIGBUS on sparc.
9819  -- Ben Collins <bcollins@debian.org>  Sat, 13 Jan 2001 08:52:11 -0500
9821 dpkg (1.8.3) unstable; urgency=low
9823   * Do chown before chmod in dpkg-statoverride, Closes: Bug#81943
9824   * Fix recursion in dpkg-shlibdeps, Closes: Bug#81322
9825   * Really completely revert dpkg-source patches which broke backwards
9826     compatibility
9828  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 12 Jan 2001 00:02:22 -0800
9830 dpkg (1.8.2) unstable; urgency=low
9832   * Don't attempt to read from an input source when we only want 0 bytes.
9833     Also handle buggy systems that return EAGAIN instead of EINTR.  Closes:
9834     #81881.
9836  -- Adam Heath <doogie@debian.org>  Thu, 11 Jan 2001 00:43:50 -0600
9838 dpkg (1.8.1.1) unstable; urgency=low
9840   * Apply patch from bug to fix badly generated diffs(in some
9841     circumstances).  Closes: #81152
9843  -- Adam Heath <doogie@debian.org>  Sat,  6 Jan 2001 16:07:33 -0600
9845 dpkg (1.8.1) unstable; urgency=low
9847   * Make --name a valid option.  Closes: #31206, #51953.
9848   * dpkg-deb -I <pkg> <control> works again
9849   * Update Swedish translation
9851  -- Wichert Akkerman <wakkerma@debian.org>  Thu,  4 Jan 2001 19:31:13 +0100
9853 dpkg (1.8.0) unstable; urgency=low
9855   * Add -k|--symlink option to dpkg-name.  Closes: #35040
9856   * Made the accelerator keys in dselect's main menu separate options, so
9857     that they can be translated separately.  Closes: #50955.
9858   * Added depends on sysvinit (>= 2.72), so that we can make sure that
9859     /etc/rcS.d exists.  Closes: #55037.
9860   * update-rc.d: Changed documentation and help, as -f only applies during
9861     remove.  Closes: #55049.
9862   * Added a --force-all option.  Closes: #61354.
9863   * Format help string for --abort-after like other option help strings.
9864     Closes: #62464.
9865   * Fix dselect methods to pass admindir to dpkg from dselect.
9866   * Minor tweak so that when patch 2.5.4 is manually used to apply a diff,
9867     it doesn't get applied multiple times.  Closes: #65021
9868   * Add --nicelevel to start-stop-daemon, to alter a programs priority
9869     before starting.  Closes: #65191.
9870   * Document that --largemem is the default, and that the test point is
9871     24 megs.  Closes: #65607.
9872   * Document that --set-selections does not actually install any
9873     packages.  Closes: #65340.
9874   * Fix typo in dpkg-deb.1.  Closes: #65945.
9875   * Add --truename option to dpkg-divert.  Closes: #68489.
9876   * Documented COLUMNS in dpkg(8).  Closes: #77001.
9877   * Modified DPKG_C_GCC_TRY_WARNS() to call AC_SUBST, so that we can
9878     use the result of the test during build time.  Closes: Bug#75138
9879   * Added description for "suggests" in main/depcon.c:describedepcon().
9880     Closes: Bug#74113
9881   * Removed bashing from dpkg.postinst.
9882   * Make '#' optional in Closes: tags.  Closes: Bug#63137.
9883   * Add -t to -h output in dpkg-buildpackage:  Closes: Bug#49598.
9884   * Fix typo in --compare-versions error message.  Closes: Bug#66474.
9885   * -R doesn't mean --root.  Closes: Bug#66068, #72013
9886   * Add armv3l to archtable.  Closes: Bug#72125
9887   * Fix two memory leaks, and lesson the memory foot print a tad.  Hints
9888     taken from 74259.
9889   * Fix some things perl5.6 complains about. Closes: Bug#77337
9890   * Fix references to dpkg-deb manpage. Closes: Bug#77855
9891   * Update Galish translation
9892   * Add new --import option to dpkg-statoverride to make it easy to
9893     import suidmanager settings.
9894   * Speedup patches by Adam Heath
9895   * statoverride fixes by Robert Luberda, Closes: Bug#78436
9896   * Add Linux S/390 support. Closes: Bug#79063
9897   * Using libz to decompress data instead of calling gzip.
9898     Closes: Bug#49581
9899   * Add gettext to build-depends
9900   * Fix warning when trying to remove a non-existing statoverride.
9901     Closes: Bug#79352
9902   * Be more paranoid with file permissions when extracting files
9903   * Apply statoverrides to more then just files
9904   * Update update-alternatives manpage to use FHS instead of FSSTND.
9905     Closes: Bug#80237
9906   * List descriptions for udebs in .changes
9908  -- Wichert Akkerman <wakkerma@debian.org>  Mon, 25 Dec 2000 17:19:31 +0100
9910 dpkg (1.7.2) unstable; urgency=low
9912   * Fix parsing of configuration files
9913   * Add new powerpc-linux-gnu entry to archtable. Closes: Bug#76522
9914   * No longer bother to install emacs things. I don't use emacs myself
9915     and can't support that properly.
9916   * scripts/dpkg-shlibdeps.pl: Make it parse soname's in the format of
9917     "libfoo-X.X.so" (e.g. libdb-3.1.so) and use it. Also make it give a
9918     warning if there is a NEEDED line in the objdump output that we cannot
9919     grok.
9920   * scripts/dpkg-shlibdeps.pl: resolve library paths using a combination
9921     of the libc major version, and ldconfig -p output. Solves problems
9922     with errant libc5 deps.
9923   * Correct name of .changes file when doing source-only builds
9924   * Fix -ap option for dpkg-buildpackage. Closes: Bug#77305
9925   * Fix typo in update-alternatives manpage. Closes: Bug#77829
9926   * Fix typo in script-regexp update-rc.d. Closes: Bug#76029
9928  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 23 Nov 2000 18:55:50 +0100
9930 dpkg (1.7.1) unstable; urgency=medium
9932   * Fix a typo in the dpkg-statoverride manpage
9933   * dpkg-statoverride reads and writes the right file now
9934   * Make update-alternatives use the right dir for alternatives again
9936  -- Wichert Akkerman <wakkerma@debian.org>  Tue,  7 Nov 2000 01:16:39 +0100
9938 dpkg (1.7.0) unstable; urgency=low
9940   * Allow the administrator to override file mode and ownership using the
9941     new dpkg-statoverride tool.
9942   * Use objdump instead of ldd in dpkg-shlibdeps
9943   * Fix logic in dpkg-shlibdeps so it looks for dependencies as specified
9944     in its documentation
9945   * Make update-alternatives update slave links with --config and properly
9946     switch the alternative to manual mode
9947   * HURD updates, Closes: Bug#57753,#57754,#57755
9948   * dpkg-architecture: -q should not imply -f, Closes: Bug#57761
9949   * add dpkg:UpstreamVersion and dpkg:Version substvars in dpkg-genchanges
9950     and dpkg-gencontrol.  Closes: Bug#62069,#64774
9951   * dpkg-genchanges: add new Changed-By field to .changes with the last
9952     person who made a change, and modify the Maintainer-field to be the
9953     actual maintainer. Update the format-version to 1.7 to reflect this.
9954   * dpkg-genchanges: allow a space between # and a to-be-closed bugnumber
9955   * dpkg-deb: reorder files when building a package
9956   * dpkg-statoverride: new tool to override ownership and modes for files
9957   * Check COLUMNS environment for dpkg -l output. Closes: Bug#65536
9958   * Add Origin and Bugs fields to the control file
9959   * Install new /etc/dpkg/origins/debian file
9960   * Corrections and updates to Swedish translation.
9961   * Add Galician, German, Dutch and Brazilian translations
9962   * archtable: add ia64 and sh; revert sparc64 so that it turns into sparc.
9963     There won't be a full binary-sparc64 port. Closes: Bug#70788
9964   * dselect/main.cc: small fixups to get it to compile with gcc-2.96
9965   * Clean up fd handling in some places. Closes: Bug#69359,#69360,#69361
9966   * Document -k option for dpkg-buildpackage. Closes: Bug#71808
9967   * Install commented dummy shlibs.default and shlibs.override files
9968   * Give dpkg a configurationfile
9969   * dpkg-scanpackages now uses the most recent version if multiple versions
9970     of a package are found.
9971   * don't rename a file to itself in dpkg-source. Closes: Bug#75060
9972   * Fix buffer overflow in cmdname handling in start-stop-daemon.
9973     Closes: Bug#75103
9974   * Don't abort if start-stop-daemon tries to read a non-existing pidfile.
9975     Closes: Bug#75105
9976   * Update formatting of start-stop-daemon manpage. Closes: Bug#75110
9977   * Make a missing package a warning instead of an error in dpkg-genchanges
9979  -- Wichert Akkerman <wakkerma@debian.org>  Sun,  5 Nov 2000 17:28:39 +0100
9981 dpkg (1.6.13) frozen unstable; urgency=low
9983   * Add Format-flag to .dsc format: we know we are going to change the
9984     format in the next release, this change will make dpkg-source abort
9985     with a reasonable error instead of doing unexpected things.
9986   * Fix error in gettext'ized string
9987   * Updated Czech, French, Polish and Spanish translations. Closes: Bug#63663
9988   * debian-changelog-mode.el: fix documentation string for
9989     debian-changelog-finalise-last. Closes: Bug#63003
9991  -- Wichert Akkerman <wakkerma@debian.org>  Mon,  8 May 2000 16:08:53 +0200
9993 dpkg (1.6.12.99) frozen unstable; urgency=low
9995   * Pre-release for 1.6.13. which will only feature translation updates
9996   * Fix typo in dpkg-divert, Closes: Bug#60243
9997   * dpkg-genchanges: recognize non-deb packages (tarballs, such as
9998     dpkg-non-deb and boot-floppies disk tarballs). This makes sure that we
9999     include them when figuring out the Arch field in the .changes
10000   * mark another string as translateable, Closes: Bug#62543
10001   * fix location of --abort-after in --help output, Closes: Bug#62464
10002   * fix allocation error in checkpath(), Closes: Bug#62364
10003   * add Hold to list of desired package states in -l output, Closes: Bug#58765
10005  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 21 Apr 2000 11:52:59 +0200
10007 dpkg (1.6.12) frozen unstable; urgency=high
10009   * Fix test for gpg/pgp in dpkg-buildpackage. You can now build
10010     unsigned packages again. Closes: Bug#60395
10011   * Updated Spanish and Swedish translations. Closes: Bug#41735
10012   * Merge patch from Joel Klecker to remove emacsen-common stuff from dpkg-dev
10014  -- Wichert Akkerman <wakkerma@debian.org>  Mon,  3 Apr 2000 16:50:02 +0200
10016 dpkg (1.6.11) frozen unstable; urgency=high
10018   * Oops, missed one case where the libc/ncurses conflict reared its
10019     ugly head and broke dselect miserably.
10020   * fix syntax error in dpkg-divert. Closes: Bug#60050
10022  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 10 Mar 2000 11:52:07 +1100
10024 dpkg (1.6.10) frozen unstable; urgency=low
10026   * The `it rains in Sydney' release
10027   * Mark another string in dselect as translateable, Closes: Bug#58618
10028   * Fix typos, Closes: Bug#58619
10029   * Change dselect keybindings slightly so `n' really does searchagain
10030   * Updated Czech and Spanish translations, Closes: Bug#58617
10031   * dpkg-divert.pl: reinstate last writeability-patch. Modified
10032     to not abort on ENOENT: this indicates a directory does not (yet)
10033     exist. If this happens don't try to rename. This should fix all
10034     current dpkg-divert problems. Closes: Bug#59207,#58596
10035   * update-alternatives: switch back to auto-mode when manually selected
10036     alternative is removed, Closes: Bug#54933
10037   * dselect no longer segfaults on SIGWINCH but does The Right Thing
10038     instead. Closes: Bug#54303,#58697,#59419
10040  -- Wichert Akkerman <wakkerma@debian.org>  Tue,  7 Mar 2000 15:09:47 +1100
10042 dpkg (1.6.9) frozen unstable; urgency=low
10044   * Fix typo in update-alternatives manpage
10045   * dpkg-architecture: -q should not imply -f, Closes: Bug#57761
10046   * Cleanup bits of install-info to make it more stable
10047   * Fix Build-Dependency for ncurses, Closes: Bug#58073
10048   * Some more documentation updates, Closes: Bug#57985
10049   * Revert patch to check for writeable filesystems in dpkg-divert,
10050     Closes: Bug#57840
10052  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 18 Feb 2000 12:11:58 +0100
10054 dpkg (1.6.8) frozen unstable; urgency=low
10056   * Turn --force-overwrite on by default
10057   * Fix a couple of small buildsystem errors
10058   * Support multiple adjacent newlines in control-style files, Closes: Bug#56056
10059   * Updated Czech and Swedish translations
10060   * Revert patch to change order of things when purging a package,
10061     Closes: Bug#56374
10062   * Handle failed open of /dev/tty in dpkg -l, Closes: Bug# 55041
10063   * Update Japanese translations, Closes: Bug# 56641, #57494, #57595
10064   * Update extended description for dpkg-dev, Closes: Bug# 56675
10065   * Implement verbose option for update-alternative
10066   * Fix conflicts handling
10068  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 10 Feb 2000 15:31:31 +0100
10070 dpkg (1.6.7) frozen unstable; urgency=low
10072   * dpkg compiles on HP-UX, Solaris and IRIX now
10073   * start-stop-daemon can chroot now, Closes: Bug#54513
10074   * Allow space between # and the bugnumber in the changelog
10075   * Display package description with waddnstr, Closes: Bug#54313
10076   * Updated Japanese manpages, Closes: Bug#54690, #55080
10077   * Upload full source for packages with version *-0.1, Closes: Bug#54651
10079  -- Wichert Akkerman <wakkerma@debian.org>  Sun, 16 Jan 2000 18:36:10 +0100
10081 dpkg (1.6.6) unstable; urgency=low
10083   * dpkg-buildpackage supports debsign, Closes: Bug#58333
10084   * fix update-alternatives manpage, Closes: Bug#53859
10085   * Updated Polish translation
10086   * Pass admindir to dpkg, Closes: Bug#54039
10087   * Fix dpkg -l output
10088   * Remove dpkg-safelist again, it had issues
10090  -- Wichert Akkerman <wakkerma@debian.org>  Fri,  7 Jan 2000 19:51:45 +0100
10092 dpkg (1.6.5) unstable; urgency=low
10094   * Update Spanish translation
10095   * Don't strip 8th bit in dselect packagelists, Closes: Bug# 49061
10096   * Don't use \z in dpkg-scansources, Closes: Bug# 53182
10097   * Correctly unregister internals manual, Closes: Bug# 53200
10098   * dselect helpessages can be translated now, Closes: Bug# 51381
10099   * dselect UI tweaks, including a new --expert mode
10100   * Added build-depends, Closes: Bug# 53394
10101   * Added THANKS-file with people who have contributed to the code
10102   * Use full width of tty in packagelisting, Closes: Bug# 53395
10103   * Add -z option to dpkg-deb to set compressionlevel when building
10104     packages, Closes: Bug# 53398
10105   * Fix segfaults when producing a diff between current and new conffile,
10106     Closes: Bug# 52197
10108  -- Wichert Akkerman <wakkerma@debian.org>  Sat, 25 Dec 1999 04:47:09 +0100
10110 dpkg (1.6.4) unstable; urgency=low
10112   * No longer byte-compile for emacs
10113   * Add Swedish translation
10114   * start-stop-daemon: honour --oknodo if we fail to kill a process
10115     Closes: Bug#52580,#52185,#52457
10116   * Fix dselect program description, Closes: Bug#52328
10117   * Fix architecture-detection in dpkg-gencontrol, Closes: Bug#52616
10118   * Accept single-number values in update-rc.d, Closes: Bug#46810
10120  -- Wichert Akkerman <wakkerma@debian.org>  Sun, 19 Dec 1999 16:27:48 +0100
10122 dpkg (1.6.3) unstable; urgency=high
10124   * Comment dselect changes from 1.6.2, they seem to have a problem
10125     Closes: #52043,52058,52088,51437
10126   * Really fix emacs-stuff. Hopefully. Closes: #51919,51525
10127   * Fix copyright display in dselect menu, Closes: #52093
10128   * Fix uid/gid-changes in start-stop-daemon, Closes: #52081
10130  -- Wichert Akkerman <wakkerma@debian.org>  Tue,  7 Dec 1999 17:06:00 +0100
10132 dpkg (1.6.2) unstable; urgency=low
10134   * New dpkg-scansources, Closes: #51888
10135   * Fix default for elispdir, Closes: #51919,51525
10136   * New manpages for cleanup-info and dpkg-divert, Closes: #51539, 46657
10137   * Buildsystem updates, Closes: #51525, 51855, 51914
10138   * Modify dselect behaviour for suggests and recommends
10140  -- Wichert Akkerman <wakkerma@debian.org>  Sun,  5 Dec 1999 19:29:50 +0100
10142 dpkg (1.6.1) unstable; urgency=low
10144   * Fix some slight packaging errors
10146  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 26 Nov 1999 20:18:48 +0100
10148 dpkg (1.6) unstable; urgency=low
10150   * Major overhaul of the buildsystem
10151   * Update Standards-Version to 3.1.0
10152   * Move to version 1.6 to reflect the amount of changes made
10153   * Fix mixup with Czech and Polish translations, Closes: Bug# 48986
10154   * utils/start-stop-daemon.c: Added ability for user.group arg to
10155     --chuid. Also, always call initgroups() when using --chuid.
10156   * utils/start-stop-daemon.8: Document above change, also add note to the
10157     --make-pidfile option concerning its problem with daemons that fork
10159  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 25 Nov 1999 04:30:01 +0100
10161 dpkg (1.4.1.19) unstable; urgency=low
10163   * Fix replaces for dpkg-dev
10164   * Add gettext-support to dselect
10165   * Added Czech and Polish translations for dpkg
10166   * Fixed incorrect patch for --print-architecture (oops, oh well
10167     it was already broken when there was no gcc anyway :)
10168   * Fixed missing mipseb that was supposed to be in the archtable
10169   * Better output in update-alternatives --config, now shows the
10170     current, and the preferred choices.
10171   * dpkg-name: ignore epoch when getting version
10172   * 50dpkg-dev.el: add it as a conffile for dpkg-dev
10173   * internals.sgml: Removed references to the versions of build tools,
10174     they date the document.
10175   * debian-changelog-mode.el: added hint for better log-email handling
10176   * Added recognition for new source-depends fields for policy
10177     referenced in bug #41232
10178   * dpkg-buildpackage: add -ap option to force a pause prior to starting
10179     the sign process. This helps for people who don't keep their signatures
10180     on the filesystem (on a floppy perhaps, then mount as needed).
10181   * minor script corrections
10182   * dpkg-dev control: Change gcc to c-compiler in the recommends field, and
10183     move cpio, patch and make to the depends line
10184   * Leave file info intact in available when installing packages. MD5sum,
10185     Filename, and MSDOS-Filename used to get lost when installing a
10186     package.
10187   * Added armv4l to archtable
10188   * Added 'D' to the list of choices for conffile handling, closes: #48137
10189   * Converted internals.sgml to debiandoc format. Also added a dpkg-doc
10190     package that contains the generated output from this file (.ps, .html
10191     and .info), includes doc-base support. Internals.sgml is also not
10192     generated on the binary-arch target, and is no longer "byhand"
10193   * dpkg-gencontrol: add "Source" to the fields placed in the control file
10194   * dpkg-parsechangelog: fixed loop for parsepath (#48526)
10195   * main/{processarc.c,depcon.c}: added new structure for conflictors,
10196     which contains a struct for conflicts. This is used to create an array
10197     of conflicting packages, which are going to be replaced. Allows for
10198     multiple conflicts and replaces. All conflictor handlers were
10199     converted to loops to handle each one (processarc.c).
10200   * dpkg-divert: Fix check for writable filesystem, closes: #48646
10202  -- Wichert Akkerman <wakkerma@debian.org>  Sat, 30 Oct 1999 15:14:40 +0200
10204 dpkg (1.4.1.18) unstable; urgency=low
10206   * Backout dep check patch
10208  -- Ben Collins <bcollins@debian.org>  Sat, 23 Oct 1999 00:39:24 -0400
10210 dpkg (1.4.1.17) unstable; urgency=low
10212   * Add support for long filenames, along with --assert-longfilenames
10213   * Added --chuid option to start-stop-daemon to allow switching to
10214     a different uid when starting a process
10215   * Add mipseb and mipsel to the archtable too, since mips and mipseb are
10216     both viable names for the mips big endian arch, and mipsel is also needed
10217   * Update dpkg-architecture's archtable
10218   * Added --config option to update-alternatives to allow easy changing
10219     of the registered alternatives for a specific name
10220   * Updated the deb-control(5) man page with all the current fields
10221     and uses
10222   * Made the large info screen show 5 lines of the pkglist so that
10223     it scrolled properly, and still showed the cursor in dselect
10224   * Removed references to dpkg(5) which seems to not exist anymore
10225   * Fixed `dpkg-deb --help' and dpkg-deb(1) from reporting --no-check
10226     when it's actually --nocheck (went with the hardcoded option, so
10227     this is just a documentation fix).
10228   * Added better check in disk.setup for a working NFS server. Makes
10229     it compatible with other non-Linux servers.
10230   * Corrected dpkg(8)'s example of using dpkg -i (showed it used with
10231     a .tar.gz instead of a .deb)
10232   * Applied patch to correct improper TMPDIR handling in dpkg-deb
10233   * When encountering an error in extracting the tar archives in the
10234     packages, we should abort the install, not simply give an error
10235     and continue.
10236   * Make dpkg give the builtin arch if there was an error while exec()'ing
10237     the C compiler with --print-architecture. We still fail if the
10238     output from gcc was bad in some way, since they may be of importance.
10239   * Removed the maintainer-configure portion in debian/rules, since
10240     we should be shipping the source with all the auto* stuff
10241     already generated anyway
10242   * Removed the ltconfig patch, and resort to a debian/rules fix
10243     to libtool itself after running configure
10244   * Removed shlibs.default.i386. It's now a template for arch porting to
10245     Debian/dpkg, we install it still, if there exists a file matching the
10246     arch
10247   * Reimplemented a better *stat cache for the removal checking code,
10248     this helps a lot when doing upgrades where the packages are a lot
10249     different in layout
10250   * Increased largemem auto detection to >= 24megs, since it's not uncommon
10251     for dpkg to actually use 16megs of ram all on its own when using the
10252     largemem setting (old minimum was 16megs)
10253   * debian/rules: chmod -x everything in /usr/lib to make lintian happy.
10254     in the clean phase just rm -rf $(BUILD), we don't need to run
10255     distclean and all that other stuff. Don't run "make dist", we
10256     simply copy the .tar.gz that dpkg-source creates for the byhand
10257     source.
10258   * Make start-stop-daemon exit(1) when we don't find one of the
10259     pid's we are trying to kill, in accordance with the man page.
10260   * When running --configure on an already installed package, just
10261     say it's installed, and not that it is in an unconfigurable
10262     state
10263   * Fixed some compiler warnings
10264   * Make dpkg check for uid 0 requirement, before checking the path
10265     since not being root, is probably the reason that the PATH is
10266     borked in the first place
10267   * Make -p short for --print-avail, and -P short for --purge
10268   * Fix typo in md5sum(1) man page
10269   * start-stop-daemon: Add --background and --make-pidfile options
10270   * update-alternatives: make sure we remove "old" symlinks when they
10271     are no longer pertinent. Add /etc/alternatives/README that refers
10272     to the update-alternatives(8) man page.
10273   * dpkg-divert: Add check for being able to write to the old/new
10274     destination before doing a rename. We fail on this, without
10275     changing the diversion registry
10276   * Fix bad regex in update-rc.d
10278  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 21 Oct 1999 17:49:03 +0200
10280 dpkg (1.4.1.16) unstable; urgency=medium
10282   * Hardcode ENOENT again since the errno-part of the POSIX module
10283     isn't in perl-*-base. sigh.
10285  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 15 Oct 1999 04:01:14 +0200
10287 dpkg (1.4.1.15) unstable; urgency=low
10289   * non-maintainer release.
10290   * Move dselect into its own package
10291   * Remove conffiles before directories when purging
10292   * Check if integrity from other packages will broken when processing
10293     an archive
10294   * dpkg-deb can handle package made with Linux ar.
10295   * Add check to update-alternatives to see if the sequencecode is between
10296     0 and 99
10297   * Fix failed assertion, which was actually two bugs: a logic error in
10298     checkforremoval and a wrong assumption in findbreakcycle
10299   * dselect doesn't die when you resize the terminal
10300   * check if a file is also in a new package before removing it when upgrading
10301   * offer to show a diff between the old and new conffile
10302   * dpkg-scanpackages: don't abort but only skip a package if we can't
10303     open it
10304   * Add HURD-support to  start-stop-daemon
10305   * Reinstate patch to not read available when doing --list-files
10306   * Add a couple of --force options to handle changed conffiles
10308  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 14 Oct 1999 04:20:56 +0200
10310 dpkg (1.4.1.14) unstable; urgency=low
10312   * non-maintainer release.
10313   * dpkg-source works again on empty diffs, Closes: Bug# 46159
10314   * Install locale-files in /usr/share, Closes: Bug# 46631
10315   * Make /usr/share/doc/dpkg-dev a symlink to /usr/share/doc/dpkg
10316   * Actually include fix to make update-alternatives works filesystems (oops!)
10317   * Check if codenumber is between 0 and 99, Closes: Bug# 46810
10319  -- Wichert Akkerman <wakkerma@debian.org>  Tue,  5 Oct 1999 19:19:05 +0200
10321 dpkg (1.4.1.13) unstable; urgency=low
10323   * Non-maintainer release.
10324   * NMU number 13, lets see what breaks :)
10325   * update-alternatives works across filesystems now
10326   * Make -sgpg work in dpkg-buildpackage (typo)
10328  -- Wichert Akkerman <wakkerma@debian.org>  Tue, 28 Sep 1999 01:26:19 +0200
10330 dpkg (1.4.1.12) unstable; urgency=low
10332   * Non-maintainer release.
10333   * Fix typo in chmodsafe_unlink that made dpkg chmod files that
10334     weren't setuid or setgid
10336  -- Wichert Akkerman <wakkerma@debian.org>  Sun, 26 Sep 1999 02:41:30 +0200
10338 dpkg (1.4.1.11) unstable; urgency=low
10340   * Non-maintainer release.
10341   * Added sparc64 to archtable
10342   * Added entries for newer alpha architectures to the archtable
10343   * Always run patch and diff with LANG set to C.
10344   * Handle diff warning for files with no newline at the end of file
10345     Closes: Bug#45642
10347  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 24 Sep 1999 03:23:54 +0200
10349 dpkg (1.4.1.10) unstable; urgency=low
10351   * Non-maintainer release.
10352   * Build dpkg-scansources manpages using pod2man
10353   * dpkg-buildpackage changes:
10354     + fix signinterface-detection
10355     + use gpg by default if $HOME/.gnupg/secring.gpg exists
10357  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 16 Sep 1999 15:36:43 +0200
10359 dpkg (1.4.1.9) unstable; urgency=low
10361   * Non-maintainer release.
10362   * Updated dpkg-scansources to current version from Roderick Schertler
10363   * Update location of GPL in internals-manual
10364   * Update location of GPL and dpkg copyright in all manpages
10365   * Include patch from Roman Hodek for dpkg-source to handle diffs of files
10366     with lines that begin with two dashes.
10367   * Move dpkg-scansources to dpkg-dev package
10368   * Move dpkg-scansources manpage to section 8
10369   * Fix error that moved a lot of manpages to the dpkg package.
10370   * It looks like not reading the available-file for listfiles was not greeted
10371     with much enthiousiasm, so reverse the change.
10373  -- Wichert Akkerman <wakkerma@debian.org>  Wed, 15 Sep 1999 03:45:07 +0200
10375 dpkg (1.4.1.8) unstable; urgency=low
10377   * Non-maintainer release.
10378   * Merge dpkg-doc-ja
10379   * Add patch from Raphaël Hertzog <rhertzog@hrnet.fr> for dpkg-scansources
10380     to skip comments in signatures. This allows packages to also use GnuPG.
10382  -- Wichert Akkerman <wakkerma@debian.org>  Mon, 13 Sep 1999 04:16:33 +0200
10384 dpkg (1.4.1.7) unstable; urgency=low
10386   * Non-maintainer release.
10387   * Use /usr/share/doc
10388   * Merge changes from dpkg-iwj tree:
10389     + change section in dpkg-deb.1 to 1
10390     + Use COPYINGFILE instead of hardcoded GPL-location in showcopyright()
10391     + varbufprintf (used for some error messages) vsnprintf return value
10392       assumption changed to correspond to reality rather than glibc-doc.
10393     + Don't read available-info when not needed (slightly improved from
10394       dpkg-iwj: don't read for listfiles either :)
10395     + Cleanup --assert-* code
10396     + Assume largemem on systems without sysinfo(2).
10397     + modify preexec-script for easier script execution
10398     + Do not chmod(".../path/to/symlink",0600) causing many bad perms.
10399     + Sanity-check numbers for parameters
10400     + Move some logic from process_archive into wantinstall
10401     + Print '0' in dpkg-scanpackages if no packages found.
10403  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 10 Sep 1999 04:06:32 +0200
10405 dpkg (1.4.1.6) unstable; urgency=low
10407   * Non-maintainer release.
10408   * scripts/dpkg-architecture.pl: Update to latest version.
10409   * scripts/dpkg-architecture.1: Likewise.
10411  -- Marcus Brinkmann <brinkmd@debian.org>  Sat, 24 Jul 1999 18:24:21 +0200
10413 dpkg (1.4.1.5) unstable; urgency=low
10415   * Non-maintainer release.
10416   * (dpkg-dev): Use emacsen-common for debian-changelog-mode.el
10417     (closes:Bug#20776,#31030).
10418   * Removed references to the packaging and policy manuals from debian/control.
10419   * Put debian-changelog-mode.el in dpkg-dev and remove from dpkg (closes:Bug#29271).
10420   * Fix paths in 50dpkg-dev.el using Roderick Schertler's patch
10421     (closes:Bug#28270,#29702,#26876,#29184,and others).
10422   * Note that bug number 17367 was fixed in 1.4.0.26.
10423   * Add Zack Weinberg's install-info patch for GNU install-info
10424     compatibility (closes:Bug#28965).
10425   * Add dpkg-architecture stuff from Marcus Brinkmann.
10426   * Remove debian-keyring suggests from dpkg.
10427   * Add -k<keyid> flag to dpkg-buildpackage.
10428   * --textmode works in gpg, remove kluge from dpkg-buildpackage.
10429   * Cleanup configure.in slightly (stop using tl_ macros, fix gettext stuff).
10430   * Attempt to make Debian source useful for non-Debian systems
10431     (i.e. distclean tree instead of maintainer-clean tree).
10432   * Sync with wichert's 1.4.1.4.
10433   * Add my ltconfig-1.3.2.diff (RPATH workaround).
10434   * Add dpkg-scansources program and man page.
10435   * Man pages in /usr/share/man.
10437  -- Joel Klecker <espy@debian.org>  Tue, 13 Jul 1999 18:12:15 -0700
10439 dpkg (1.4.1.4) unstable; urgency=low
10441   * Also change developer-keyring to debian-keyring for dpkg-dev package
10442   * Include spanish translation from Nicolás Lichtmaier <nick@debian.org>
10443   * Depend on perl5 instead of perl
10445  -- Wichert Akkerman <wakkerma@debian.org>  Mon,  5 Jul 1999 00:04:14 +0200
10447 dpkg (1.4.1.3) unstable; urgency=low
10449   * Modify tarobject() so it does not complain if we are creating a
10450     directory that replaces a removed file. This works around the
10451     problem that the filedatabase doesn't remember what filetype a
10452     file was by assuming it already was a directory
10454  -- Wichert Akkerman <wakkerma@debian.org>  Mon, 31 May 1999 23:49:23 +0200
10456 dpkg (1.4.1.2) unstable; urgency=low
10458   * Non-maintainer upload
10459   * Rebuild, so this is glibc2.1 (unless you're on m68k), which is rumoured
10460     to also fix the i8n-problems.
10461   * Incorporate 1.6 format of .changes, patch from Guy Maor
10462   * Fix bug in section-handling of dpkg-scanpackages, patch from Guy Maor
10463   * Disable force-overwrites again, since we're in unstable
10464   * Assume largemem on systems for which sysinfo is not available, Bug# 33658
10466  -- Wichert Akkerman <wakkerma@debian.org>  Wed, 26 May 1999 15:50:17 +0200
10468 dpkg (1.4.1.1) unstable; urgency=low
10470   * Non-maintainer upload
10471   * Install emacs-startup scripts with mode 0644 (lintian)
10472   * Incorporate changes in NMU 1.4.0.32 made by Vincent Renardias
10473     <vincent@waw.com> for slink:
10474     + Apply patch from Jim Pick for update-alternatives.pl to
10475       fix 'Important' bugs #30891 in dpkg and (#27382, #27383, #27696,
10476       #27703, #27736, #27097(merged bugs)) in jdk1.1.
10477   * Incorporate changes in NMU 1.4.0.33 made by me for slink:
10478     + Fix illegal perl construct (Bug# 30985)
10479     + Initialize oialtname->useinstead and oicontest->camefrom to 0 (Bug# 30397)
10480     + Update shlibs.default for libncurses 4 (Bug# 30332)
10481     + Suggest debian-keyring instead of developer-keyring (Bug# 27376, 30248)
10482     + Abort dpkg-divert when attempting to divert a directory (Bug# 30126)
10483     + Make dpkg-deb.1 aware that it is in section 1, not 8
10484     + Fix section in reference to dpkg-deb in dpkg.8 (Bug# 29740)
10485     + Fix typo in --force-help (Bug# 26193)
10486     + Correct path for debian-changelog-mode.el (Bug# 24606)
10487     + Make disk-method for dpkg use /var/run instead of /tmp to fix
10488       symlink-attacks (Bug# 21399)
10489     + Document -n and -f options for update-rc.d in manpage (Bug# 15913)
10490     + Add --abort-after option to change after how many errors we abort and
10491       change the default to 50 (Bug# 22940)
10492     + Fix controllib.pl: don't check debian/substvars unless needed, and
10493       don't depend on language settings (Bug# 31508)
10494     + Allow a - in the architecture-field (Bug# 25537)
10496  -- Wichert Akkerman <wakkerma@debian.org>  Mon,  1 Feb 1999 00:44:01 +0100
10498 dpkg (1.4.1) unstable; urgency=low
10500   * Maintainer release by IWJ.
10501   * Changed Maintainer: field description.
10502   * Various changes to make the damn thing build.
10503   * Add .cvsignore files.
10505  -- Ian Jackson <ian@davenant.greenend.org.uk>  Sun,  1 Nov 1998 17:33:38 +0000
10507 dpkg (1.4.0.31) unstable; urgency=low
10509   * dpkg/processarc.c: Make newfileslist static like the other arguments
10510     for register_cleanup's cu_* functions.
10511   * N-th fix for controllib.pl (simulate old behavior by trying stdin,
10512     stdout, and stderr for getlogin()).
10513   * Enable --force-overwrite for slink release, and comment where to do
10514     so (dpkg/main.c).
10515   * Recompile against ncurses4.
10517  -- Daniel Jacobowitz <dan@debian.org>  Thu, 22 Oct 1998 17:37:23 -0400
10519 dpkg (1.4.0.30) unstable; urgency=low
10521   * dpkg-dev isn't allowed to have a Recommends: debian-keyring (as that's
10522     in contrib), so it's now lowered to a Suggests: . Thanks to James Troup
10523     for pointing this out.
10525  -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl>  Sat, 26 Sep 1998 13:59:23 +0200
10527 dpkg (1.4.0.29) unstable; urgency=low
10529   * For now, prefer PGP over GPG.
10531  -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl>  Tue, 22 Sep 1998 09:38:09 +0200
10533 dpkg (1.4.0.28) unstable; urgency=low
10535   * Added gpg (GNU Privacy Guard) support:
10536     * scripts/buildpackage.sh: default to GPG (unless no GPG, but only a PGP
10537       secret key file is found), as GPG, unlike PGP, is DFSG-free.
10538     * Updated dpkg-source(1), and added gpg(1) and pgp(1) to the SEE ALSO
10539       section.
10540     * Worked around broken textmode implementation in GPG.
10541     * dpkg-dev now Suggests: gnupg .
10542   * No longer includes developer-keys.pgp . Instead, dpkg now Suggests: and
10543     dpkg-dev now Recommends: developer-keyring.
10544   * Compiled with latest libstdc++ (2.9).
10546  -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl>  Mon, 21 Sep 1998 13:17:14 +0200
10549 dpkg (1.4.0.27) unstable; urgency=low
10551   * REALLY fixed dpkg-dev, and new attempt to placate installer on internals.
10553  -- Daniel Jacobowitz <dan@debian.org>  Fri, 27 Jul 1998 15:58:04 -0400
10555 dpkg (1.4.0.26.0.1) unstable; urgency=low
10557   * Binary-only upload for x86 and fixed dpkg-dev
10559  -- Daniel Jacobowitz <dan@debian.org>  Fri, 24 Jul 1998 15:58:04 -0400
10561 dpkg (1.4.0.26) unstable; urgency=low
10563   * Non-maintainer upload.
10565   * Make --root work with maintainer scripts (Patch by Scott Barker,
10566     bugs #4863 and #3170).
10567   * Fix $(lispdir) bug if compiling without emacs (noticed by Joey Hess).
10569  -- Daniel Jacobowitz <dan@debian.org>  Thu, 23 Jul 1998 12:02:04 -0400
10571 dpkg (1.4.0.25) unstable; urgency=low
10573   * Non-maintainer upload.
10575   * Add the requested -nc option to dpkg-buildpackage (Do
10576     not clean source tree, useful in debugging cycles).
10577   * controllib.pl: Again by popular acclamation, fix the getlogin() warnings.
10578     I redirected STDERR onto fd 0 before calling getlogin().
10579   * tools.m4: Fix display of whether c++ works.
10580   * dpkg-deb/extract.c: glibc 2.1 and some kernels want to make
10581     fflush() move the current fpos.  Until someone can fix that,
10582     protect with seek.
10583   * Add an extra 0, to dselect/{pkg,meth}keys.cc so it compiles again.
10584   * Start using lchown() if available.
10585   * Really fix #20353. (aclocal.m4 was the wrong place; that's a generated
10586     file.  The correct place is in tl_canon.m4.)
10588  -- Daniel Jacobowitz <dan@debian.org>  Tue, 21 Jul 1998 03:14:14 -0400
10590 dpkg (1.4.0.24) unstable; urgency=low
10592   * Non-maintainer upload.
10594   * dpkg/main.c: Turn --force-overwrite off as default.
10595   * dpkg/main.c: don't list --force-overwrite as default in --force-help,
10596     noticed by Peter Weiss <Peter.Weiss@Informatik.Uni-Oldenburg.DE> and
10597     others. [#23542, part of #17409].
10598   * dpkg/dpkg.8: replaced with a newer version from Jim Van Zandt
10599     <jrv@vanzandt.mv.com>. [#21061]
10601   * dpkg-deb/build.c (do_build): add missing \n and improve error message
10602     when conffile name is too long. [#7057]
10604   * scripts/update-alternatives.8: replaced with better man page from
10605     Charles Briscoe-Smith <cpb4@ukc.ac.uk>. [#17283]
10606   * scripts/dpkg-source.1: corrected logic error in documentation for
10607     dpkg-gencontrol's -p option, as noticed by Oliver Elphick
10608     <olly@linda.lfix.co.uk>. [#14655]
10609   * scripts/controllib.pl (findarch): correct typo in error message,
10610     noticed by Yann Dirson <ydirson@a2points.com>. [#22106]
10611   * scripts/dpkg-buildpackage.sh: fix typo for 'source maintainer',
10612     noticed by Joey Hess <joey@kite.ml.org>, Adam P. Harris
10613     <apharris@onshore.com> and others. [#10175, #15559]
10614   * scripts/dpkg-genchanges.pl: applied patch from Roman Hodek
10615     <Roman.Hodek@informatik.uni-erlangen.de> which solves problems with
10616     architecture specific packages in mostly architecture independent
10617     multi-binary source packages. [#14341, #20192].
10619   * doc/Makefile.am: remove any reference to the packaging manual, as it is
10620     now provided by the separate "packaging-manual" package.
10621   * doc/packaging.sgml: removed.
10622   * doc/developer-keys.pgp: updated to the current debian keyring.
10624   * aclocal.m4: applied patch from Joel Klecker <jk@espy.org> to handle
10625     egcs' --print-libgcc-file-name output. [#20353]
10627   * debian/copyright: correct FSF address.
10628   * debian/rules: add code from lesstif's debian/rules to make libtool
10629     less of a fool (i.e. not use -rpath and to link shared libraries
10630     against libraries it depends on).  Code by Richard Braakman
10631     <dark@xs4all.nl> and Yann Dirson <dirson@debian.org>.
10632   * debian/rules: remove all reference to the packaging manual as it is
10633     now provided by the separate "packaging-manual" package. [#21581,
10634     #21186, #22698, #23342]
10635   * debian/rules: link dpkg-divert.1.gz to undocumented.7.gz as the lack
10636     of a real manpage has been reported in #11093.
10637   * debian/README.compile: removed gawk and bogus comment about gettext
10638     being in experimental, as reported by Santiago Vila <sanvila@unex.es>
10639     [#23344].  Added libpaperg (debiandoc2ps needs paperconf).
10640   * debian/shlibs.default.i386: updated for glibc, reported by Herbert Xu
10641     <herbert@gondor.apana.org.au>. [#13140]
10642   * debian/control (dpkg-dev): depend on perl as POSIX (not a part of
10643     perl-base) is needed by most of the perl dpkg-* scripts, noticed by
10644     Joel Klecker <jk@espy.org>. [#22115]
10646  -- James Troup <jjtroup@comp.brad.ac.uk>  Wed, 24 Jun 1998 14:38:52 +0200
10648 dpkg (1.4.0.23.2) frozen unstable; urgency=low
10650   * Non-maintainer upload.
10651   * dpkg/main.c: Turn --force-overwrite back on as default.
10653  -- James Troup <jjtroup@comp.brad.ac.uk>  Tue, 23 Jun 1998 22:19:26 +0200
10655 dpkg (1.4.0.23.1) frozen unstable; urgency=low
10657   * No real changes, only a new version code to make this go to frozen too.
10659  -- Nils Rennebarth <nils@debian.org>  Wed, 10 Jun 1998 17:29:58 +0200
10661 dpkg (1.4.0.23) frozen unstable; urgency=low
10663   * Non-maintainer bug-fix release
10664   * Update the disk method to the hamm directory structure (Bug#21000)
10666  -- Nils Rennebarth <nils@debian.org>  Sun,  7 Jun 1998 19:14:51 +0200
10668 dpkg (1.4.0.22) frozen unstable; urgency=medium
10670   * Non-maintainer bug-fix release
10671   * Install main changelog file as `changelog.gz' instead of
10672     `changelog.dpkg.gz' (Debian Policy, section 5.8) (Bug#6052,15157)
10673   * Avoid use of /tmp/*.$$ in preinst and postinst (Bug#19712)
10674   * Make sure diversions file is always created with mode 0644 (Bug#19494)
10675   * When removing a file, chmod it to 000 if it's a char or block
10676     device or remove its s[ug]id bits, if any (Bug#6006)
10677   * Minor fixes in the programmer's manual (Bug#6206)
10678   * Always create readable status and available files
10679     (Bug#9869,11887,14636,15786,19146)
10680   * Make dpkg-gencontrol honour -DArchitecture=xxxx (Bug#9893)
10681   * Allow different archs for the same binary in debian/files (Bug#9894)
10682   * Added workaround in /usr/lib/dpkg/methods/disk/setup
10683     to avoid bash warning (Bug#10111,10131)
10684   * Recognize old .deb packages with other locales (Bug#12232)
10685   * Added `SHELL=bash' to debian/rules: it uses bash-specific structs
10686   * Move some files from dpkg to dpkg-dev (part of Bug#13295)
10687   * Minor fix in packaging manual regarding to Standards-Version (Bug#14696)
10688   * Fixed --altdir and --admindir in update-alternatives (Bug#15332)
10689   * Strip /usr/lib/libdpkg* (Bug#15671)
10690   * dpkg: send output of --help, --force-help and -Dhelp to stdout
10691     (Bug#16051,18574)
10692   * send correct signals with start-stop-daemon (Bug#17258)
10693   * Make `dpkg-divert --test --remove' work as expected (Bug#19531)
10694   * Determine properly the architecture if gcc is egcs (Bug#20353)
10696  -- Juan Cespedes <cespedes@debian.org>  Sun,  5 Apr 1998 17:37:01 +0200
10698 dpkg (1.4.0.21) unstable; urgency=low
10700   * Non-maintainer release to include a new update-rc.d
10701   * Fixed date on files in the archive from 2017 and 2018 by running
10702     touch foo; find . -newer foo | xargs -r touch; rm foo
10703   * Changed start-stop-daemon message "No <program> found; none killed." to
10704     "No <program> found running; none killed."
10706  -- Miquel van Smoorenburg <miquels@cistron.nl>  Thu,  5 Mar 1998 14:19:46 +0100
10708 dpkg (1.4.0.20) unstable; urgency=low
10710   * Disabled --force-overwrites.
10711   * Removed core file from source
10713  -- Michael Alan Dorman <mdorman@debian.org>  Tue,  9 Jan 1998 03:34:28 -0500
10715 dpkg (1.4.0.19) unstable; urgency=low
10717   * Changed methods/disk.setup to use output of
10718     'dpkg --print-installation-architecture' instead of hard-coded
10719     '1386' (fixes #10995).
10720   * Patched dpkg-source to properly quote metacharacters in strings
10721     before using them in pattern-matching expressions (fixes #10811).
10722   * Fixed several documentation typos (fixes #10764).
10723   * dpkg-source now works around 100-character filename limitation of cpio
10724     (fixes #10400).
10725   * dpkg-source now properly handles '\ no newline in source' message from
10726     patch (fixes #5041).
10728  -- Klee Dienes <klee@debian.org>  Sun, 13 Jul 1997 19:28:22 -0700
10730 dpkg (1.4.0.18) unstable; urgency=low
10732   * dpkg-source now uses new -z option to GNU patch (still needs to be
10733     changed to detect and use old version as well) (fixes #9904, #10005, #10007).
10734   * Added i686 to archtable.
10735   * shlibs.default now uses xlib6 instead of elf-x11r6lib (fixes #9926).
10736   * debian-changelog-mode now uses interruptible completing type-in fields
10737     instead of the previous 'select-a-letter method'.  I consider this
10738     better and more standard than the previous way, but I'd welcome
10739     opinions to the contrary.  Consider this a 'probationary' change for
10740     now (fixes #9873, #9874).
10742  -- Klee Dienes <klee@debian.org>  Sun, 25 May 1997 09:56:08 -0400
10744 dpkg (1.4.0.17) unstable; urgency=low
10746   * All of the dpkg binaries (but not dpkg-dev or dselect) now speak
10747     french, thanks to patches from Christophe Le Bars <clebars@teaser.fr>
10748   * Fix leading spaces before day in 822-date.
10749   * Changes from Tom Lees <tom@lpsg.demon.co.uk> to better support
10750     building on non-Debian systems; minor Makefile fixes.
10751   * Added 'ppc powerpc powerpc' to archtable.
10752   * Changed documentation paper size to US/Letter instead of A4 (A4
10753     may be better, but it's easier to print US/Letter on A4 than it is
10754     to print A4 on US/Letter).
10756  -- Klee Dienes <klee@debian.org>  Tue,  13 May 1997 15:24:31 -0400
10758 dpkg (1.4.0.16) experimental; urgency=low
10760   * Added generated sources to GNU-format source archive so it no longer
10761     requires perl to build.
10763  -- Klee Dienes <klee@debian.org>  Sat, 10 May 1997 17:34:29 -0400
10765 dpkg (1.4.0.15) experimental; urgency=low
10767   * Changed dpkg-genchanges to check for ($arch == $substvar{'Arch'}), not
10768     ($arch ne 'all') (fixes #9688).
10769   * Fixed bug in start-stop-daemon.c (was using optarg after argument
10770     parsing was over) (fixes #9597, #9603, #9364).
10771   * Provide 50dpkg-dev.el for xemacs as well as emacs.
10772   * Explicitly provide path for debian-changelog-mode in 50dpkg-dev to use
10773     .el file as workaround until xemacs can read emacs19 .elc files.
10774   * Pass top_distdir explicitly to 'make dist' to accommodate bug in
10775     automake_1.1o-1.
10776   * Fix debian/build to make html documentation without including
10777     directories in tar archives (fixes #9348).
10779  -- Klee Dienes <klee@debian.org>  Fri,  9 May 1997 13:17:18 -0400
10781 dpkg (1.4.0.14) experimental; urgency=low
10783   * Fixed buglet in install-info.pl (fixes #9438).
10784   * Re-write of update-rc.d.pl, primarily by Miquel van Smoorenburg
10785     <miquels@cistron.nl> (fixes #9434, #9436).
10786   * Renamed "dpkg Programmer's Manual" to "dpkg Internals Manual".
10788  -- Klee Dienes <klee@debian.org>  Tue,  6 May 1997 22:01:07 -0400
10790 dpkg (1.4.0.13) experimental; urgency=low
10792   * Fix to start-stop-daemon so that it still takes numeric arguments (had
10793     been broken in 1.4.0.12) (fixes #9598).
10794   * Fix 822-date to sanity-check localtime() output (seconds must be the
10795     same as GMT).
10796   * Patch from Guy Maor <maor@ece.utexas.edu> to dpkg-source.pl to support
10797     pristine (MD5-equivalent) upstream sources.
10798   * Patch from Michael Alan Dorman <mdorman@calder.med.miami.edu> to
10799     update-rc.d.pl to fix handling multiple start/stop entries on a single
10800     line.
10801   * Several fixes to dpkg-genchanges to support -B option (added in
10802     1.4.0.12) (fixes #9340).
10803   * Handle errors from 822-date in debian-changelog-mode.el.
10804   * Changed cl-debian.pl to correctly handle extra whitespace in changelog
10805     datestamps.
10807  -- Klee Dienes <klee@debian.org>  Mon,  5 May 1997 18:12:43 -0400
10809 dpkg (1.4.0.12) experimental; urgency=low
10811   * Re-wrote 822-date for clarity and to support timezone offsets >= 12h
10812     (New Zealand in DST is +1300, for example) (fixes #7130).
10813   * Patch from Juergen Menden <menden@morgana.camelot.de> to support
10814     archdependent-only builds (fixes #8912, #9245, #5359).
10815   * Fix archtable entry for powerpc (fixes #8794).
10816   * Strip /sbin/* and /usr/sbin/* in debian/rules (fixes #8853).
10817   * Moved start-stop-daemon to /sbin (fixes #8669).
10818   * Set sharedstatedir and localstatedir for $(MAKE) install in
10819     debian/rules (fixes #8852).
10820   * Fixes for update-rc.d(8) from Jim Van Zandt <jrv@vanzandt.mv.com>
10821     (fixes #8576).
10822   * No longer do variable substitutions when generating change file (fixes
10823     #5862).
10824   * Support symbolic signal names in start-stop-daemon (fixes #7715).
10825   * Add autoload for debian-changelog-mode to /etc/emacs/site-start.d
10826     (fixes #4519, #5841).
10827   * Add recommendation for gcc and make in dpkg-dev (gcc is needed for dpkg
10828     --print-architecture, used by dpkg-gencontrol; make is needed for any
10829     debian/rules file) (fixes #8470).
10830   * Minor changes to packaging manual section on source package
10831     conversion (fixes #6801).
10832   * Renamed "programmer's manual" to 'packaging manual'.
10833   * Start of new "programmer's manual" containing information on dpkg
10834     internals and build information.  This manual uses the new
10835     TeXinfo-SGML format, currently included in doc/.
10836   * dselect/pkgdepcon.cc now checks for debug not NULL, not just depdebug.
10837   * Changed makefiles to support building outside of source directory.
10838   * Include GNU-format source distribution with other non-debian packages.
10840  -- Klee Dienes <klee@debian.org>  Sun,  4 May 1997 11:08:19 -0500
10842 dpkg (1.4.0.11) experimental; urgency=low
10844   * Patches for alpha and libc6 from Michael Alan Dorman
10845     <mdorman@calder.med.miami.edu>.
10846   * Fixed minor problems in dpkg-shlibdeps regular expressions for libc6.
10847   * Fix regex to detect directory creation in dpkg-source.pl.
10848   * Minor changes for automake-1.1n.
10850  -- Klee Dienes <klee@debian.org>  Sun, 23 Mar 1997 18:09:33 -0500
10852 dpkg (1.4.0.10) unstable; urgency=medium
10854   * Fixed bug in controllib.pl (@fowner was entire passwd entry,
10855     not just [uid, gid] as it should have been).
10857  -- Klee Dienes <klee@debian.org>  Thu, 20 Mar 1997 13:06:52 -0500
10859 dpkg (1.4.0.9) unstable; urgency=low
10861   * Check fputs() return values for (ret >= 0), not (ret != 0) (fixes #7522).
10862   * dpkg-shlibdeps no longer gives error for Java and statically linked
10863     binaries (fixes #4988).
10864   * Change 'details of the old format' to 'details of the new format' in
10865     deb-old.5 (fixes #7605).
10866   * dpkg-source -b now warns (was previously silent) if maintainer changes
10867     create new subdirectories.  dpkg-source -x now warns (previously gave
10868     error) if maintainer changes create new subdirectories (partially
10869     fixes #6866, #6671, #5045, #6482).
10870   * Added manual page for start-stop-daemon (8).
10871   * Added C version of start-stop-daemon by
10872     Marek Michalkiewicz <marekm@i17linuxb.ists.pwr.wroc.pl> (fixes #1670).
10873   * Converted to use GNU automake for the build process by Tom Lees
10874     <tom@lpsg.demon.co.uk>.<
10875   * Preliminary support for dpkg functions as a shared library (now
10876     provides libdpkg.so, but much work needs to be done in better
10877     segregating and defining the interface).
10878   * Preliminary internationalization support by Galen Hazelwood
10879     <galenh@debian.org>.  Only the library, dpkg-deb, md5sum, and dpkg
10880     have been converted so far.  No translations have yet been
10881     constructed.
10882   * Handle 'libc.so.6 => /lib/libc.so.6 (0x40010000)' format from libc6
10883     ldd (fixes #7603, #7926, #8688, #9179, #9134, #8516).
10884   * Removed policy.sgml (it has been moved to the debian-policy package).
10885   * Include patch from Darren Stalder <torin@daft.com> for
10886     dpkg-buildpackage to choose PGP key based on Maintainer: field of
10887     package being built (or -m<maintainer> option, if present) (fixes
10888     #7898).
10889   * Changed controllib.pl to use $ENV{LOGNAME}, getlogin(), and $<
10890     (in that order) to determine the intended ownership of
10891     debian/{files,substvars},  (fixes #7324, #6823, #5659, #5965, #5929,
10892     #9239, #5366).
10893   * Don't sign .dsc file in dpkg-buildpackage if building a binary-only
10894     release (fixes #7260).
10895   * Updated developer-keys.pgp to latest revision (fixes #6134).
10897  -- Klee Dienes <klee@debian.org>  Mon, 17 Mar 1997 16:11:24 -0500
10899 dpkg (1.4.0.8) unstable; urgency=medium
10901   * Corrected update-rc.d for bash 2.0
10902   * Updated developer-keys.pgp from
10903     http://www.iki.fi/liw/debian/debian-keyring.tar.gz
10905  -- Guy Maor <maor@ece.utexas.edu>  Mon, 3 Feb 1997 04:05:01 -0600
10907 dpkg (1.4.0.7) stable unstable; urgency=HIGH
10909   * Fixed --assert-support-predepends failing between unpack & configure.
10910   * Added --assert-working-epoch option.
10912  -- Guy Maor <maor@ece.utexas.edu>  Sat, 25 Jan 1997 23:02:11 -0600
10914 dpkg (1.4.0.6) stable unstable; urgency=high
10916   * Patched lib/vercmp.c to hopefully fix dselect epoch processing
10917     (Bug#6204), (Bug#4590).
10918   * Patched scripts/dpkg-buildpackage, scripts/dpkg-genchanges,
10919     scripts/dpkg-gencontrol for epoch processing, courtesy of Loic Prylli
10920     <lprylli@graville.fdn.fr> (Bug#6138, Bug#5225).
10921   * Patched dpkg-genchanges to actually honor the -u switch to specify
10922     directory (Bug#5564).
10923   * Applied patch to main/archive.c to correct problems setting set[gu]id
10924     binaries, courtesy of Herbert Xu <herbert@greathan.apana.org.au>
10925     (Bug#5479).
10926   * Applied patch to dpkg-source to correct debian-only package names,
10927     courtesy of Guy Maor <maor@ece.utexas.edu> (Bug#5355).
10929  -- Michael Alan Dorman <mdorman@calder.med.miami.edu>  Thu, 2 Jan 1997 11:36:09 -0500
10931 dpkg (1.4.0.5) stable frozen unstable; urgency=medium
10933   * Distribution for frozen too.
10935  -- Heiko Schlittermann <heiko@lotte.sax.de>  Thu, 5 Dec 1996 09:13:42 +0100
10937 dpkg (1.4.0.4) stable unstable; urgency=medium
10939   * Bug2962 fixed: patch from Ian Jackson applied
10940     (cursor keys won't work after search)
10941   * Manuals 2.1.2.2
10943  -- Heiko Schlittermann <heiko@lotte.sax.de>  Fri, 15 Nov 1996 20:21:18 +0100
10945 dpkg (1.4.0.3) unstable; urgency=medium
10947   * dpkg-source -x: created bad permissions (set x-bit for
10948     all files pointed to by a symlink)
10950  -- Heiko Schlittermann <heiko@lotte.sax.de>  Fri, 18 Oct 1996 18:32:06 +0200
10952 dpkg (1.4.0.2) unstable; urgency=medium
10954   * dpkg-buildpackage.sh: reverted the quoting change -- (you
10955     should use super, sudo, really, but not su.  Or write a wrapper
10956     around su)
10957   * dpkg-buildpackage.sh: passing -m, -C, -v options to dpkg-genchanges
10958     more the way Ian likes ;-)
10959   * dpkg-source.pl: new function deoctify() as replacement for eval()
10960     (turn \ddd into the corresponding character) [rem: probably better
10961     solution would be to convert cpios output names into complete \ddd
10962     representation as well tars output names]
10963   * dpkg-source.pl: fixed 2 typos in failure message on creating
10964     $origtargz.tmp-nest.
10965   * main/main.c: typo for `treat'
10966   * main/enquiry.c: fixed the ignorance for some relations in --compare-versions
10967   * main/enquiry.c: missing version is now handled as described in `dpkg --help'
10968     (or at least as I understood `dpkg --help' PLEASE TRY IT)
10969   * lib/parsehelp.c: fixed parsing of epoch information
10971  -- Heiko Schlittermann <heiko@lotte.sax.de>  Sun, 6 Oct 1996 23:27:47 +0200
10973 dpkg (1.4.0.1) unstable; urgency=medium
10975   * dpkg-source: doesn't get screwed up from hardlinks
10976     in the archive now
10977   * dpkg-source: doesn't get screwed up from `unprintable' characters
10978     in file names (e.g. from the kbd package)
10979   * controllib.pl: $varlistvile -> $varlistfile (thanx Karl Sackett)
10980   * dpkg-buildpackage: quoting for $rootcommand (thanx  Michael Meskes)
10981     and `eval' as default $rootcommand
10982   * dpkg-*, controllib.pl: created debian/files and debian/substvars
10983     are chown'ed to `getlogin()' and its group
10984   * doc/: mv changed to mv -f
10985   * dpkg-buildpackage: added an option -a for overriding the
10986     architecture in the changes _file_name_
10987   * dpkg-buildpackage: pass -m* -v* .. options to dpgk-genchangelog
10988   * dpkg-name moved to dpkg-dev
10990  -- Heiko Schlittermann <heiko@lotte.sax.de>  Sat, 21 Sep 1996 22:06:01 +0200
10992 dpkg (1.4.0) unstable; urgency=low (HIGH for new source format)
10994   * Corrected buffer overrun when dpkg-deb generates filename.  (Bug#4467.)
10995   * dpkg-shlibdeps works with DEBIAN/shlibs (thanks Heiko Schlittermann).
10996   * Added libm.so.5 to shlibs.default for i386/m68k.
10998   * Split binary package into two: dpkg and dpkg-dev.
10999   * dpkg-source(1) documents mode and ownership setting during extraction.
11001   * dpkg-scanpackages moved to /usr/bin.
11002   * Include /usr/bin/dpkg-deb, not dpkg-deb.dist; don't rename in scripts.
11003   * Copyright file changed slightly.
11004   * debian-changelog-mode uses magic key substitution strings.  (Bug#4419.)
11005   * Changed email address in control file to <ian@chiark.greenend.org.uk>.
11006   * Manuals and own Standards-Version: updated to 2.1.1.0.
11008  -- Ian Jackson <ian@chiark.greenend.org.uk>  Thu, 12 Sep 1996 01:13:33 +0100
11010 dpkg (1.3.14) unstable; urgency=low
11012   * dpkg-buildpackage new -tc (clean source tree) option.
11014   * Formatted documentation removed by `make clean' and so not in source.
11015   * Manuals and own Standards-Version: updated to 2.1.0.0.
11016   * Distribute {policy,programmer}.{html.tar,ps}.gz with each upload.
11018  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sun, 1 Sep 1996 20:43:40 +0100
11020 dpkg (1.3.13) unstable; urgency=low (HIGH for building new src X programs)
11022   * X shared libraries added to shlibs.default (=> `elf-x11r6lib').
11023   * dpkg-source tar invocation fixed so that TAPE env var doesn't break it.
11024   * dpkg-source copes better with missing final newline messages from diff.
11026   * dpkg-buildpackage usage message fixed: -si is the default.  (Bug#4350.)
11027   * dpkg-source error message about src dir mismatch typo fixed.  (Bug#4349.)
11029   * dpkg-source(1) has suggestions for dpkg-buildpackage -r option.
11030   * dpkg-source change date fixed.  (Bug#4351.)
11031   * More developers' keys.
11032   * Manual updates, own Standards-Version updated.
11034  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 31 Aug 1996 20:08:18 +0100
11036 dpkg (1.3.12) unstable; urgency=medium
11038   * dpkg prints old version number when upgrading.  (Bug#4340.)
11039   * dpkg-deb tries to detect and flag corruption by ASCII download.
11041   * dpkg-genchanges and dpkg-buildpackage say what source is included.
11043   * dpkg-buildpackage passes +clearsig=on to PGP (or pgpcommand).  (Bug#4342.)
11045   * dpkg-source prints better error for cpio not honouring -0t.
11046   * control file Suggests cpio >= 2.4.2, rather than just cpio.
11048  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Fri, 30 Aug 1996 15:31:51 +0100
11050 dpkg (1.3.11) unstable; urgency=low
11052   * EBUSY when dpkg removes a directory is only a warning.
11054   * dpkg-genchanges generates sensible warning (not confusing error
11055     about mismatch) for missing Section/Priority in binary packages.
11057   * Added dpkg --print-gnu-build-architecture option.
11058   * shlibs.default for m68k provided, as a copy of i386 version.
11060  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 29 Aug 1996 14:05:02 +0100
11062 dpkg (1.3.10) unstable; urgency=medium
11064   * dpkg-source(1) manpage alias symlinks are not dangling.
11065   * dselect selects things by default if they are installed.
11066   * Added `pentium' as alias for `i386' architecture.
11067   * Added `Suggests: cpio, patch' and explanatory text to Description.
11068     (Bugs #4262, #4263.)
11070   * More developers' PGP keys.
11071   * Manual updates, new source format released.
11073  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 26 Aug 1996 14:30:44 +0100
11075 dpkg (1.3.9) unstable; urgency=low (high for new source format)
11077   * dpkg --get-selections and --set-selections added.
11078   * New dpkg --force-not-root flag.
11080   * Don't replace directory with another package's file.  (Bug#4202.)
11082   * All manpages now installed compressed.
11083   * Copyright file moved to /usr/doc/dpkg/copyright.
11084   * Standards-Version updated (0.2.1.1).
11086  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 24 Aug 1996 19:09:30 +0100
11088 dpkg (1.3.8) unstable; urgency=low (high for new source format)
11090   * dpkg-buildpackage -sa, -si options work correctly.
11092   * update-rc.d(8) updated to reflect design and reality.
11093   * Programmers' and policy manual updates.
11095  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Fri, 23 Aug 1996 12:48:26 +0100
11097 dpkg (1.3.7) unstable; urgency=low (medium for source pkg docs)
11099   * dselect +/-/_/= on lines for all broken, new, local or whatever
11100     packages do not affect _all_ packages.  (Bug#4129.)
11102   * Support for diff-only uploads in source packaging tools.
11103   * dpkg-genchanges -d<descripfile> option renamed to -C.
11104   * dpkg-buildpackage understands -m, -v, -C (for dpkg-genchanges).
11105   * Support for debian/shlibs.local added to dpkg-shlibdeps.
11106   * Shared library files' search order defined in dpkg-source(1), and
11107     relevant files added to the FILES section.
11109   * Programmers' manual describes source packaging tools.
11110   * Policy manual mentions shared library control area file.
11111   * dpkg-source manpage includes dpkg-shlibdeps in title line.
11112   * Manuals have changelog and automatic version numbering.
11113   * changelogs (for dpkg and for manuals) installed.
11114   * binary target split into binary-arch and binary-indep in manual.
11115   * Manpages should be compressed.
11116   * Copyright file is moved to /usr/doc/<package>/copyright.
11117   * Changelogs must be installed in /usr/doc/<package>.
11119   * dpkg-deb(8) moved to dpkg-deb(1).
11121   * binary target split into binary-arch and binary-indep in source.
11122   * changelog entry for 1.2.14 copied from that (forked) release.
11124  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 22 Aug 1996 15:36:12 +0100
11126 dpkg (1.3.6) experimental; urgency=low (HIGH for new source format)
11128   * dpkg-source now has broken argument unparsing for tar.  (Bug#4195.)
11130   * dpkg-gencontrol writes to debian/tmp/DEBIAN/control by default.
11131   * dpkg-shlibdeps script added.
11133   * Back to old sh update-rc.d, and removed manpage, because new Perl
11134     version and the manpage have different syntax and semantics.
11135   * update-rc.d prints usage message for missing terminal `.'.  (Bug#4122.)
11137   * Use rm -rf instead of just rm -r in dpkg-deb --info &c.  (Bug#4200.)
11139   * Added support for Installed-Size to dpkg-gencontrol, and documented.
11140   * Source packaging substitution variables and name syntax rationalised.
11141   * dpkg-source scripts' usage messages improved slightly.
11142   * dpkg-source works with non-empty second (orig dir) argument.
11144   * Added rationale for copyright policy to manual.
11145   * More developers' PGP keys.
11146   * Control database handling cleanups (usu. Source field blanked).
11148  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 20 Aug 1996 15:39:58 +0100
11150 dpkg (1.3.5) experimental; urgency=low (high for debian-changelog-mode)
11152   * 822-date script included.  (Bug#4136.)
11153   * debian-changelog-add-version works on empty file.
11154   * debian-changelog-mode mode-help works properly.
11156   * dpkg-source tells patch not to make numbered backups.  (Bug#4135.)
11158   * More developers' PGP keys.
11159   * Paragraph on uucp -a and -g options removed from policy manual.
11161  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 14 Aug 1996 14:46:47 +0100
11163 dpkg (1.3.4) experimental; urgency=low
11165   * Removed debugging output from dpkg-source -x.  Oops.
11166   * Removed section on source package permissions from policy manual -
11167     dpkg-source now sorts these out.
11169  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sun, 11 Aug 1996 13:25:44 +0100
11171 dpkg (1.3.3) experimental; urgency=low
11173   * Programmers' & policy manuals in source tree; HTML in /usr/doc/dpkg.
11174   * Old guidelines.info and text files in /usr/doc/dpkg removed.
11176   * dpkg-source sets permissions on extracted debianized source tree
11177     and does not copy ownerships out of archive even if running as root.
11179   * Emacs mode `dpkg changelog' renamed to `Debian changelog'.
11180   * Default changelog format renamed from `dpkg' to `debian'.
11182   * debian-changelog-mode sets fill-prefix correctly.
11183   * debian-changelog-mode urgencies except HIGH lowercase by default.
11184   * debian-changelog-mode displays keymap in doc string and so mode help.
11186   * More maintainers' PGP keys.
11188   * Remove built changelog parsers with `clean' target in source.
11190  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 10 Aug 1996 23:35:51 +0100
11192 dpkg (1.3.2) experimental; urgency=LOW (MEDIUM for dpkg-source)
11194   * Faster update-rc.d written in Perl by Miquel van Smoorenburg.
11195   * install-info --test doesn't lock dir.  (Bug#3992, thanks Darren).
11197   * dpkg-source doesn't break in the presence of any symlinks.
11199   * More developers' keys added to doc/developer-keys.pgp.
11200   * Install developers' keys in /usr/doc/dpkg/developer-keys.pgp.
11201   * dpkg-source documents undefined substvar behaviour.
11202   * minor debian/rules cleanups.
11204  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 10 Aug 1996 02:13:47 +0100
11206 dpkg (1.3.1) experimental; urgency=LOW
11208   * manpage for dpkg-source et al now available.
11209   * dpkg-changelog-mode.el installed in site-lisp, but still no autoload.
11211   * dpkg-source prints correct string for not-understood tar -vvt output.
11212   * dpkg-source parsing of tar -vvt output made more robust.
11214   * dpkg-buildpackage prints usage message on usage error.
11215   * dpkg-gencontrol can print usage message.
11216   * -T<varlistfile> option added to dpkg-source.
11217   * Description of -f<fileslistfile> corrected in dpkg-distaddfile usage.
11218   * -m<maintainer> synopsis changed in dpkg-genchanges usage.
11219   * debian/substvars may now contain blank lines.
11221  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 8 Aug 1996 02:36:04 +0100
11223 dpkg (1.3.0) experimental; urgency=LOW
11225   * dpkg can install named pipes.
11226   * dpkg-deb supports directory for destination, generates filename.
11227   * dpkg-{source,gencontrol,genchanges,parsechangelog,buildpackage},
11228     dpkg-distaddfile scripts to support new source package format.
11229   * a.out build no longer supported.
11230   * Changed to new source package format.
11232  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 6 Aug 1996 02:31:52 +0100
11235 dpkg (1.2.14) stable unstable; urgency=MEDIUM
11237   * dselect +/-/_/= on lines for all broken, new, local or whatever
11238     packages do not affect _all_ packages.  (Bug#4129.)
11240   * NOTE - THE HISTORY FORKS HERE.  1.2.14's change appears in 1.3.7.
11242  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 22 Aug 1996 00:39:52 +0100
11245 dpkg (1.2.13) unstable; urgency=LOW
11247   * dpkg --search produces correct output for diversions.
11248   * dpkg-name remove unnecessary arch missing warning.  (Bug#3482.)
11250   * dpkg-deb --build warns about uppercase chars in package name.
11252   * dpkg-scanpackages error messages updated and manpage provided
11253     (thanks to Michael Shields).
11254   * dpkg-scanpackages warns about spurious entries in override file.
11255   * dpkg-scanpackages `noverride' renamed to `override' everywhere.
11256   * dpkg-scanpackages field ordering to put Architecture higher.
11257   * dpkg-scanpackages field names capitalised appropriately.
11258   * dpkg-scanpackages invokes find with -follow.  (Bug#3956.)
11260   * guidelines say #!/usr/bin/perl everywhere, not #!/bin/perl.
11261   * Many developers' PGP keys added.
11263   * configure script uses ${CC} instead of $(CC) (again :-/).
11264   * developers' keys included in dpkg source tree and /usr/doc.
11265   * configure remade using autoconf 2.10-3 (was 2.4-1).
11267  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 1 Aug 1996 02:46:34 +0100
11269 dpkg (1.2.12); priority=LOW
11271   * dpkg --search and --list understand and comment on diversions.
11272   * dpkg-divert displays diversions more intelligibly.
11274   * Guidelines are somewhat clearer about descriptions.
11275   * deb(5) describes new format; old moved to deb-old(5).  (Bug#3435.)
11276   * deb-control(5) carries a warning about being out of date.
11278   * Added 1996 to dselect version/copyright.
11280  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 4 Jul 1996 15:04:49 +0100
11282 dpkg (1.2.11); priority=MEDIUM
11284   * dselect had dependency bug if installed package newer than avail.
11285   * Added `replaces' to dselect's list of package relationship strings.
11287  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 1 Jul 1996 02:51:11 +0100
11289 dpkg (1.2.10); priority=MEDIUM
11291   * Fixed bug in old-style version/revision number parsing.  (Bug#3440.)
11293  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 29 Jun 1996 03:32:45 +0100
11295 dpkg (1.2.9); priority=MEDIUM
11297   * Fixed status database updates reading bug.
11298   * `Setting up' message includes version number.
11299   * `existence check' message changed to say `cannot access archive'.
11301  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 27 Jun 1996 13:39:36 +0100
11303 dpkg (1.2.8); priority=LOW
11305   * dpkg --record-avail puts data in Size field.
11306   * strip / for rmdir(2) in cleanup to work around kernel bug.  (Bug#3275.)
11307   * dpkg-split --msdos no longer allows `-' and other chars in filenames.
11309   * manual dpkg-split(8) written.
11310   * dpkg-split minor typo in --auto usage error message fixed.
11311   * dpkg-deb(8) very minor cosmetic fix to --build option.
11313  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 25 Jun 1996 03:00:14 +0100
11315 dpkg (1.2.7); priority=LOW
11317   * dpkg-scanpackages syntax errors fixed.
11319  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Fri, 21 Jun 1996 04:10:38 +0100
11321 dpkg (1.2.6); priority=MEDIUM
11323   * NFS, CDROM and partition dselect methods include mountpoint
11324     in paths given to dpkg in [I]install, so they should now work.
11326   * Removed some leftover files from source tree.
11328  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 12 Jun 1996 14:35:19 +0100
11330 dpkg (1.2.5); priority=MEDIUM
11332   * Allow, but do not create, packages in half-installed state
11333     with no version number.  (Aargh.)
11335  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 10 Jun 1996 04:55:43 +0100
11337 dpkg (1.2.4); priority=MEDIUM
11339   * New dpkg-name from Erick (<pkg>_<version>_<arch>.deb convention).
11340   * Disappeared packages can't own conffiles any more !  (Bug#3214.)
11341   * install-info creates Miscellaneous sections with a newline
11342     following the heading.  (Bug#3218.)
11343   * cleanup-info script installed in /usr/sbin; called as appropriate
11344     by postinst.  Thanks to Kim-Minh Kaplan.  (Bug#3125.)
11345   * Allow superseded Essential packages to be purged after they've
11346     been removed (clear the Essential flag on removal, and ignore it
11347     on packages that are in stat_configfiles).
11349   * dselect disk methods understand `y' as well as `yes' for using
11350     development tree.
11351   * dselect doesn't make packages appear as `new' again if update
11352     of available packages fails.
11353   * dselect places method selection cursor over option last selected.
11355   * dpkg-scanpackages doesn't die when repeated packages are found.
11356   * dpkg-scanpackages allows many old maintainers (`//'-separated).
11358   * `Version' field is now mandatory (some operations already
11359     wouldn't work right anyway if it wasn't there).
11361   * update-rc.d(8) now says you must remove the script.  (Bug#3215.)
11362   * dpkg --force-help says that --force-overwrite is on by default.
11363   * dpkg-deb manpage rewritten.
11364   * debian.README (= /usr/doc/copyright/dpkg) edited slightly.
11366   * Some database parsing grunge removed (pdb_preferversion, &c).
11367   * Source tree doc/sgml contains some embryonic manuals.
11368   * Leftover files in lib directory in source tree deleted.
11370  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 10 Jun 1996 03:52:01 +0100
11372 dpkg (1.2.3); priority=HIGH
11374   * install-info doesn't replicate section headings (Bug#3125, #2973).
11375   * New dpkg-name manpage broken off from script (oops!).
11376   * dselect help screens made consistent with new strings, flags, &c.
11377   * dselect error flag column labelled E (Error), not H (Hold).
11378   * `Escape' no longer bound to `exit list without saving' in dselect.
11380  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 28 May 1996 02:14:57 +0100
11382 dpkg (1.2.2); priority=MEDIUM
11384   * Fixed dselect coredump found by Erick Branderhorst (thanks).
11385   * Sort obsolete removed packages separately, not under Available.
11387  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 23 May 1996 21:31:05 +0100
11389 dpkg (1.2.1); priority=MEDIUM
11391   * `=' key in dselect really does `hold' rather than `unhold'.
11392   * dselect dependency processing now interacts better with `hold'.
11393   * dselect `I' key (not `i') modifies display of the info window.
11394   * dselect shows unavailable packages as being unavailable.
11395   * dselect main menu headings and many other strings changed to try to
11396     discourage people from deselecting every package and using [R]emove.
11397     Notably, `select' changed to `mark' throughout.
11399   * dselect disk methods now print a few fewer double slashes.
11400   * dselect disk access methods will offer to use dpkg --record-avail
11401     to scan the available packages, if no Packages file is found.
11403   * New dpkg --compare-versions option, for the benefit of scripts &c.
11404   * New dpkg --clear-avail option forgets all available packages info.
11405   * New dpkg --print-avail option, prints `available' data (from Packages, &c).
11406   * dpkg usage message is more informative, but no longer fits on screen.
11407   * dpkg --avail option renamed --record-avail.
11409   * Latest dpkg-name from Erick Branderhorst.
11410   * dpkg-scanpackages has more sensible problem reporting.
11411   * postinst configure now gets null argument (not <unknown> or <none>)
11412     when there is no previously configured version.
11414   * Guidelines say that postinst configure is given previous version.
11415   * Guidelines don't refer to maintainer-script-args.txt in main text.
11416   * Guidelines (Texinfo source) uploaded separately.
11418   * Own version of strcpy (used for debugging) removed.
11419   * Interface to access methods document in source (doc/dselect-methods.txt).
11420   * debian.buildscript moves changes file into parent directory.
11422  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 22 May 1996 01:26:31 +0100
11424 dpkg (1.2.0); priority=MEDIUM
11426   * dselect can sort packages by available and installed states, and
11427     display their version numbers.  (Use O, o and V.)
11428   * Hold is properly integrated as a real `wanted state', rather than
11429     a separate flag.
11430   * Epochs in version numbers implemented, using the syntax
11431     <epoch>:<version>-<revision>.  (Epoch not usually displayed.)
11432   * dselect disk method is architecture-independent (uses dpkg's
11433     installation architecture, and looks in the right part of the tree).
11435   * dselect disk method doesn't try to satisfy the predependencies of
11436     packages which are on hold.
11437   * Fixed conflict-related assertion failure.  (Bug#2784.)
11438   * conffiles do not cause file conflicts if the conflicting package
11439     is in the `configuration only' state.  (Bug#2720.)
11440   * Fixed messages where available version number was reported as installed
11441     version in conflict and dependency messages.  (Bug#2654, Bug#2974.)
11443   * New format .deb files are default even for a.out compiles (but
11444     a.out version of dpkg is in old format).
11445   * Characters @:= (at colon equals) in package names now strictly
11446     forbidden everywhere (_ is still allowed in existing packages).
11447   * New dpkg --print-installation-architecture option prints installation
11448     architecture (compiled in), rather than build architecture (determined
11449     from gcc -print-libgcc-file-name).
11451   * Version messages show whether compiled a.out or ELF (i386 only).
11452   * Fixed missing space in version syntax error messages.
11453   * Manpage dpkg.8 installed with warning about inaccuracy.
11455   * Guidelines don't say to stop and restart daemons in runlevels 2345;
11456     instead they say to start in 2345 and stop in 016.
11457   * Guidelines and version messages say just Debian Linux.
11458   * Guidelines typo fix for '"stop"'.  (Bug#2867.)
11460   * doc/Makefile.in clean properly deletes various guidelines.info* files.
11462  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 16 May 1996 00:01:21 +0100
11464 dpkg (1.1.6); priority=MEDIUM
11466   * Check virtual dependencies when removing (ouch! - thanks SDE.)
11467   * Fixed bug in internal database validity management that could
11468     make dselect and dpkg dump core.  (Bug#2613.)
11469   * Fixed two coredumping bugs when using local diversions.  (Bug#2804.)
11470   * Fixed disappearance of overwritten packages.  (Bug#2696.)
11471   * install-info won't modify dir file before start of menu.
11472   * install-info will create Miscellaneous heading if no sections yet.
11474   * Only alphanums and +-. allowed in package names - enforced by
11475     dpkg-deb --build and documented in Guidelines.
11476   * dselect doesn't display packages unless they are installed, selected
11477     or available.
11478   * dselect doesn't show spurious section and priority headings.
11479   * dselect has a few extra keybindings (from Lee Olds).
11480   * --force message changed to `--force enabled' so that default is OK.
11482   * dpkg-name now includes architecture component in .deb filename,
11483     and translates - in package name to _.
11484   * .deb file has architecture component in filename.
11486   * Guidelines changed to say Pre-Depends is for experts only.
11487   * Guidelines say to provide a unidiff (-u) rather than an old context diff.
11488   * Guidelines say 755 root.root for shared libraries.
11490  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 1 May 1996 00:47:22 +0100
11492 dpkg (1.1.5); priority=MEDIUM (HIGH for diversions users)
11494   * Fixed coredump when using diversions.  (Bug#2603.)
11495   * Fixed typo in dpkg-divert which could lose diversions.  (Bug#2662.)
11497   * --force-overwrite is the default.
11498   * diversions.text provides better examples.
11500  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 10 Apr 1996 13:59:30 +0100
11502 dpkg (1.1.4); priority=MEDIUM
11504   * Allow overwriting of conflicting packages being removed.  (Bug#2614.)
11506   * a.out control file says Pre-Depends: libc4 | libc.  (Bug#2640.)
11507   * ELF control file and libc dependencies changed to use finalised scheme.
11508   * ELF control file and libc dependencies for i386 only.  (Bug#2617.)
11510   * Guidelines say use only released libraries and compilers.
11511   * Install wishlist as /usr/doc/dpkg/WISHLIST.
11512   * Remove spurious entries for Guidelines in info dir file.
11514   * dpkg-deb --build checks permissions on control (DEBIAN) directory.
11516   * Spaces in control file fields not copied by dpkg-split.  (Bug#2633.)
11517   * Spaces in split file part control data ignore.  (Bug#2633.)
11519   * Portability fixes, including patch from Richard Kettlewell.
11520   * Fixed minor configure.in bug causing mangled GCC -W options.
11522  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 4 Apr 1996 01:58:40 +0100
11524 dpkg (1.1.3); priority=LOW
11526   * dselect disk methods support Pre-Depends installation ordering.
11527   * When dpkg fails and --auto-deconfigure would help it says so.
11528   * dpkg --search output lists several packages with same file on one line.
11529   * Improved dpkg usage message somewhat.
11531   * dpkg-deb --build checks permissions and types of maintainer scripts.
11532   * dpkg-deb --build treats misspecified conffiles as error, not warning.
11533   * dpkg --print-architecture prints compiler's architecture while
11534     dpkg --version (&c) print system's arch (this to help cross-compiling).
11535   * More minor guidelines changes, including dir entry fixup.
11537   * configure script caches more values.
11538   * Changed maintainer email address to ian@chiark.chu.cam.ac.uk.
11540  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 16 Mar 1996 19:18:08 +0000
11542 dpkg (1.1.2); priority=LOW
11544   * Packaging guidelines installed properly (and as guidelines
11545     rather than debian-guidelines).
11546   * ELF version has more checks to stop you wrecking your dpkg installation.
11547   * dselect disk methods now look for a `local' tree as well, for
11548     people who want locally-available software of various kinds.
11549   * dpkg-divert has debugging message removed.
11550   * Minor guidelines changes.
11552   * Various makefile cleanups, mainly to do with ELF vs. a.out support.
11553   * debian.rules cleans out ~ files itself, as well as calling make clean.
11554   * debian.rules names .nondebbin.tar.gz file ELF too, if appropriate.
11556  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 14 Mar 1996 03:38:29 +0000
11558 dpkg (1.1.1elf); priority=LOW
11560   * Added /usr/lib/dpkg/elf-executables-ok and elf-in-kernel.
11561   * Replaces field now allows automatic removal of conflicting packages.
11562   * Replaces field now required to overwrite other packages' files.
11563   * Architecture field, and dpkg --print-architecture, supported.
11564   * build new format archives by default when compiled with ELF compiler.
11566   * symlinks are now installed atomically (good for shared libraries).
11567   * create /var/lib/dpkg/diversions in postinst if necessary (Bug#2465.)
11568   * Pre-Depends now correctly fails if package never configured.
11569   * dselect disk methods mount with -o nosuid,nodev.
11570   * update-rc.d defaults doesn't add both K and S in any one runlevel;
11571     dpkg postinst fixes up this situation if it sees it.
11573   * Assorted fixups to the Guidelines, which are now in one piece.
11574   * dpkg --list prints version string in one piece.
11575   * dpkg-scanpackages doesn't produce notice on output with list of
11576     packages with Section and/or Priority control file fields.
11578   * control file and debian.rules work both for ELF and non-ELF compiles.
11579   * most files compiled with -O2 (-O3 only for some critical files) -
11580     this fixes ELF build.
11582  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 11 Mar 1996 04:25:28 +0000
11584 dpkg (1.1.0); priority=LOW
11586   * dpkg supports Pre-Depends.
11587   * postinst script gets most-recently-configured version as $2.
11589   * lib/tarfn.c #includes <errno.h> (portability fix).
11591  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 11 Feb 1996 21:07:03 +0000
11593 dpkg (1.0.17); priority=LOW
11595   * dpkg --recursive follows symlinks (useful for devel tree).
11597  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 10 Feb 1996 15:58:46 +0000
11599 dpkg (1.0.16); priority=LOW
11601   * dpkg-deb much faster reading new format archives.  (Bug#2256.)
11602   * Developers' documentation in /usr/doc/dpkg/, /usr/info/.
11604   * Fixed typo in control file Description.
11606   * configure script tries to improve matters wrt sysinfo.
11607   * any debian-tmp.deb is deleted by `./debian.rules clean'.
11609  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 4 Feb 1996 15:51:59 +0000
11611 dpkg (1.0.15); priority=LOW
11613   * dselect disk methods should never unmount things they didn't mount.
11614   * debian.README aka /usr/doc/copyright updated.
11616  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 30 Jan 1996 15:05:39 +0000
11618 dpkg (1.0.14); priority=MEDIUM
11620   * fixed file descriptor leak in dpkg introduced in 1.0.11.
11621   * included dpkg-name in this package (conflicts with dpkg-name).
11623   * redraw in dselect main menu changed to use clearok (like in lists).
11624   * sa_restorer in struct sigaction no longer used (portability fix).
11625   * removed Guidelines from source package.
11627  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 30 Jan 1996 02:52:29 +0000
11629 dpkg (1.0.13); priority=MEDIUM
11631   * dselect partition and mounted methods work again.
11632   * dpkg-deb --no-act in usage message.
11634  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 26 Jan 1996 18:37:03 +0000
11636 dpkg (1.0.12); priority=MEDIUM (HIGH for users of 1.0.11)
11638   * Fixed frequent dpkg coredump introduced in 1.0.11.  (Bug#2219.)
11639   * dpkg-deb ensures version numbers start with alphanumerics.
11641  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 24 Jan 1996 00:42:31 +0000
11643 dpkg (1.0.11); priority=MEDIUM
11645   * corrected potentially serious problem with dpkg low-memory in-core
11646     files database.
11647   * dpkg-split --msdos puts output files in right directory.  (Bug#2165.)
11649   * diversions implemented - see `dpkg-divert --help'.
11651   * dselect shows and uses (for dependencies) currently installed
11652     version of a package if that is more recent.
11653   * dpkg --force-... options are in separate help screen.
11654   * better error messages for corrupted .deb archives.  (Bug#2178.)
11655   * dselect NFS method will unmount correct copy of NFS area if mounted
11656     twice.
11658   * removes some ELF compilation warnings.
11660  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 19 Jan 1996 02:41:46 +0000
11662 dpkg (1.0.10); priority=MEDIUM
11664   * dpkg-deb option parsing unmuddled (-I option was removed
11665     in 1.0.9 and broke dpkg-deb).  (Bug#2124.)
11667   * dpkg-split will work when ELF `ar' is installed, and is faster.
11669   * nfs dselect method now available.
11670   * disk methods don't prompt spuriously for Packages files.
11671   * cdrom+harddisk methods can find Packages files.
11673   * dpkg-scanpackages (creates Packages files) now in /usr/sbin.
11675   * various changes to help compilation of dpkg-deb, dpkg-split
11676     and md5sum on non-Debian systems.
11677   * <sys/fcntl.h> replaced by <fcntl.h> throughout.
11679  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 14 Jan 1996 02:55:19 +0000
11681 dpkg (1.0.9); priority=MEDIUM
11683   * dselect uninitialized variable coredump fixed (thanks Carl).
11685   * version numbers printed by --version fixed.  (Bug#2115.)
11686   * disk method problem with missing Packages files fixed.  (Bug#2114.)
11687   * dependency version relationships now <= >= << >> =.  (Bug#2060.)
11689   * install-info is in /usr/sbin, not /usr/bin.  (Bug#1924.)
11690   * dpkg regards Revision field as obsolete.
11692   * <asm/unistd.h> changed to <linux/unistd.h> (for m68k port).
11693   * scripts/Makefile.in `clean' target deletes scripts.
11695  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 11 Jan 1996 20:51:20 +0000
11697 dpkg (1.0.8); priority=LOW
11699   * update-alternatives slightly more helpful message.  (Bug#1975.)
11700   * cosmetic improvements to disk installation method.  (Bug#1970,1956.)
11701   * mounted filesystem and unmounted partition separate methods.  (Bug#1957.)
11703  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 12 Dec 1995 04:07:47 +0000
11705 dpkg (1.0.7); priority=MEDIUM (HIGH to upgrade syslogd)
11707   * dselect harddisk/CDROM method script handles multiple package
11708     areas.
11709   * Everything has a manpage, though many are very unhelpful indeed.
11711  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 30 Nov 1995 03:59:14 +0000
11713 dpkg (1.0.6); priority=MEDIUM (HIGH to upgrade syslogd)
11715   * conffiles can now be taken over properly from one package by
11716     another which replaces it.  (Bug#1482.)
11717   * dpkg will not deconfigure essential packages when --auto-deconfigure
11718     is set (this bug was fairly unlikely ever to be exercised).
11720   * dpkg checks for the presence of certain important programs on the PATH.
11721   * dselect is now more informative when a dependency is missing, saying
11722     "<package> does not appear to be available".  (Bug#1642, 1705).
11724   * `make distclean' fixed; config.* &c removed from source archive.
11725   * lib/lock.c now uses fcntl rather than flock, for better portability.
11727   * `Package_Revision: 0' removed from control file.
11728   * Some inaccuracies and bad formatting in various messages corrected.
11730  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 21 Nov 1995 20:15:18 +0000
11732 dpkg (1.0.5); priority=LOW
11734   * dpkg-split allows some space for the header.  (Bug#1649.)
11735   * dpkg-split now has --msdos option for 8.3 filenames.
11736   * dpkg-split --join &c will not complain about trailing garbage.
11738   * dselect & dpkg will no longer ignore SIGHUP will running subprocesses.
11740  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 13 Oct 1995 13:59:51 +0100
11742 dpkg (1.0.4); priority=MEDIUM (HIGH for dselect users with 1.0.3)
11744   * fixed bug which prevented dselect from displaying the bottom line of
11745     any listing screen.  This was introduced in 1.0.3, sorry !
11747   * a conffile will never cause a prompt if the package maintainer
11748     distributes a file identical to the user's, even if the file has
11749     been edited by both the user and the maintainer or is a
11750     newly-registered conffile.  (Bug#1639.)
11752   * dselect disk/cdrom method script says where to get Packages file.
11753   * dselect help has better descriptions of the functions of Return and Q.
11755   * postinst now warns about some problems with /usr/lib/dpkg/methods/hd.
11757  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 12 Oct 1995 01:45:38 +0100
11759 dpkg (1.0.3); priority=MEDIUM
11761   * dselect: fixed segfault when doing some multiple (de)selections.
11763  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 10 Oct 1995 03:21:12 +0100
11765 dpkg (1.0.2); priority=MEDIUM
11767   * problem with screen refresh after `o' (change order) corrected.
11769  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 9 Oct 1995 13:11:04 +0100
11771 dpkg (1.0.1); priority=LOW
11773   * much better dpkg performance on low-memory systems.
11774   * start-stop-daemon --name should now work. (oops!)
11775   * fixed typo which could turn into memory overwriting bug sometime.
11777  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 8 Oct 1995 20:12:29 +0100
11779 dpkg (1.0.0); priority=LOW
11781   * Version 1.0.0: dpkg is no longer beta.
11783   * tar extractor no longer looks up an empty string using getgrnam
11784     (this causes the libc to coredump when using NIS).
11786  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 1 Oct 1995 13:07:36 +0100
11788 dpkg (0.93.80); priority=LOW
11790   * dselect help screen intro changed to remove `much' before `help'.
11792   * update-alternatives.pl contains hardcoded ENOENT value, instead
11793     of requiring POSIX.pm to be present.
11795   * Makefiles changed to strip when installing instead of when building.
11797  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 30 Sep 1995 01:44:12 +0100
11799 dpkg (0.93.79) BETA; priority=LOW
11801   * DPKG_NO_TSTP environment variable which stops dpkg sending the
11802     process group a SIGTSTP (Bug#1496).
11803   * End key should work in dselect lists (Bug#1501).
11804   * various message typos (missing \n's) fixed (Bug#1504).
11806  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 29 Sep 1995 03:27:01 +0100
11808 dpkg (0.93.78) BETA; priority=LOW
11810   * dselect keystrokes help file typo fix.
11812  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 28 Sep 1995 20:31:02 +0100
11814 dpkg (0.93.77) BETA; priority=MEDIUM
11816   * dpkg --remove --pending will purge things when appropriate.
11818   * fixed failure to null-terminate dpkg conflict problem messages.
11819   * fixed bug in formatting of dependency version problem messages.
11821   * Conffiles resolution prompt for new conffile: typo fixed.
11822   * Changed dpkg usage error to suggest `-Dhelp' instead of `--Dhelp'.
11824  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 20 Sep 1995 23:44:35 +0100
11826 dpkg (0.93.76) BETA; priority=MEDIUM
11828   * dpkg --auto-deconfigure option (used automatically by dselect) allows
11829     `important' packages which many others depend on to be split.
11830   * dpkg should no longer fail an assertion during complicated
11831     multiple configurations involving packages which are on hold.
11833   * update-alternatives supports negative priorities.
11834   * /etc/alternatives is included in the .deb archive.
11836   * Package priorities changed: Required (Req), Important (Imp), Standard (Std),
11837     Optional (Opt) and Extra (Xtr).  For backward compatibility Base is an
11838     alias for Required, and Recommended is kept as a level just below Standard.
11840   * dselect shows introductory help screen when entering package lists (both
11841     main and recursive).
11842   * dselect help messages made more friendly.
11843   * dselect package list `quit, confirm, and check dependencies' key is
11844     now Return rather than lowercase `q'; likewise method list `select this
11845     one and configure it' key.
11846   * dselect selects packages with priority `standard' or better by default.
11847   * dselect `v=verbose' becomes `v=terse' when in verbose mode.
11849   * hard disk method unmounts /var/lib/dpkg/methods/mnt on failure.
11850   * disk methods' install message uses `stty' to find out what the
11851     interrupt character is, and uses that in the prompt (rather than ^C).
11852   * dpkg now tolerates ^Z characters in Packages files.
11853   * harddisk method doesn't display extra slash when updating packages file.
11854   * harddisk method burbles less if it doesn't have a good default.
11856   * dpkg-deb now supports new flexible format, but old format still default.
11858  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 20 Sep 1995 02:49:41 +0100
11860 dpkg (0.93.75) BETA; priority=MEDIUM
11862   * dselect no longer segfaults when you try to modify the last item.
11864   * dselect Makefile compiles with -g, and links without -s, but installs
11865     with -s, so that built source directory has debugabble binary.
11867  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 12 Sep 1995 02:59:29 +0100
11869 dpkg (0.93.74) BETA; priority=LOW
11871   * dpkg-split implemented and installed in /usr/bin/dpkg-split.
11872     (NB this is not compatible with Carl Streeter's old dpkg-split script.)
11873   * dpkg uses dpkg-split.
11874   * floppy disk method available - NB this is a first attempt only.
11876   * hard disk method uses --merge-avail rather than --update-avail.
11877   * installation by default of `standard' packages removed again.
11878     (I don't think this is the right place to do this.)
11879   * update-alternatives --remove correctly deletes all slave links;
11880     minor cosmetic improvements.
11882  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 11 Sep 1995 02:06:05 +0100
11884 dpkg (0.93.73) BETA; priority=LOW
11886   * dselect multi-package selection now done by `divider' lines
11887     actually in the package list, rather than horizontal highlight
11888     movement.
11889   * dselect help available, and keybindings rationalised.
11891   * postinst removes /usr/lib/dpkg/methods/hd if upgrading from
11892     0.93.42.3 or earlier.
11893   * `hold' flag changed to be settable by the user only, and
11894     made orthogonal to the `reinstallation required' flag.
11895   * dpkg will install by default any packages with priority of
11896     `standard' or better unless they're explicitly deselected.
11898   * dselect dependency/conflict resolution will suggest marking absent
11899     packages for `purge' rather than `deinstall'.
11900   * disk method script produces message about invoking dpkg.
11901   * dpkg produces warning, not error, when it gets EPERM trying to
11902     remove a directory belonging to a package being removed.
11903   * dpkg, dpkg-deb usage error reporting improved.
11904   * dselect detects too-dumb terminals and stops.
11905   * dpkg-deb(8) updated a little (thanks to Bill Mitchell).
11907   * dselect debugmake script uses -O0.
11909  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 10 Sep 1995 12:23:05 +0100
11911 dpkg (0.93.72) BETA; priority=MEDIUM
11913   * /usr/sbin/update-alternatives added.
11915   * New names for certain control file fields (old names work
11916     as aliases): Optional -> Suggests, Recommended -> Recommends,
11917     Class -> Priority.
11919  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 3 Sep 1995 16:37:41 +0100
11921 dpkg (0.93.71) BETA; priority=LOW
11923   * dpkg doesn't silently overwrite `new' conffiles (Bug#1283).
11924   * case now not significant in Essential, Status and Class (Bug#1280).
11925   * dselect checks method scripts for execute, not for write.
11927   * spelling fixes in lib/dbmodify.c and dselect/helpmsgs.src.
11929   * dselect `clean' target deletes helpmsgs.cc and helpmsgs.cc.new.
11931  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 31 Aug 1995 13:56:08 +0100
11933 dpkg (0.93.70) BETA; priority=MEDIUM
11935   * dselect unmounted harddisk method has many silly bugs fixed.
11937   * dpkg --root option restored (was removed by mistake in 0.93.68).
11938   * minor cosmetic change to dselect subprocess failure message.
11940  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 9 Aug 1995 22:18:55 +0100
11942 dpkg (0.93.69) BETA; priority=MEDIUM
11944   * dpkg --configure and --remove should work properly when
11945     they have to defer processing (this tends to happen when many
11946     packages are processed at once).  (Bug#1209.)
11948   * dpkg --configure and --remove work better when `processing'
11949     several related packages with --no-act.
11951   * dpkg --auto is now two options, --pending or -a (for configure,
11952     remove, &c) and --recursive or -R (for install, unpack, &c).
11954   * dpkg debug options in usage message, and values available (-Dh).
11956  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 9 Aug 1995 22:18:55 +0100
11958 dpkg (0.93.68) BETA; priority=MEDIUM
11960   * dpkg won't get an internal error if you try to use the default
11961     conffiles response (ie, if you just hit return).  (Bug#1208.)
11963   * dselect hard disk and CD-ROM methods - the real thing, but ALPHA.
11965   * dselect allows you to go straight to `update' or `install' if
11966     you have already set up an access method.
11967   * new dpkg options --yet-to-unpack, --merge-avail and --update-avail.
11968   * dpkg -G is an abbreviation for dpkg --refuse-downgrade.
11969   * dpkg -R alias for --root withdrawn, pending reuse with different meaning.
11970   * dpkg --help message rationalised somewhat.
11972   * Obsolete `examples' and `dpkg-split' directories removed from
11973     source tree.  The `hello' package is a better example.
11975  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 7 Aug 1995 02:16:25 +0100
11977 dpkg (0.93.67) BETA; priority=LOW for C dpkg alpha testers, HIGH for others
11979   * dpkg no longer statically linked and -g.
11980   * calls to abort() changed to print string, file and line number first.
11981   * removed unused variable from dpkg source.
11983  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 4 Aug 1995 01:39:52 +0100
11985 dpkg (0.93.66) ALPHA; priority=MEDIUM
11987   * dpkg will correctly remove overwritten files from the lists of
11988     the package(s) that used to contain them.
11990   * dpkg --purge is now an action, rather than a modifier for --remove,
11991     and the -P alias for it is withdrawn.
11993   * dpkg --unpack/--install filenames in messages are now more sensible
11994     about when to use .../ (show as many trailing components as possible
11995     in 40 characters, or the whole path if that the last component is
11996     longer than that).
11998  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 3 Aug 1995 02:11:03 +0100
12000 dpkg (0.93.65) ALPHA; priority=MEDIUM
12002   * dpkg --remove should, when a package being removed is depended-on
12003     by another that is also queued for removal, defer the depended-on
12004     package rather than aborting it.  (Bug#1188.)
12006   * dpkg will not attempt to configure or remove a package more than
12007     once in the same run.  (Bug#1169.)
12009   * dpkg cosmetic fix to dependency problems message (this bug
12010     hasn't been triggered to my knowledge).
12012   * perl-dpkg no longer installed in /usr/bin.
12014  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 2 Aug 1995 13:02:58 +0100
12016 dpkg (0.93.64) ALPHA; priority=MEDIUM
12018   * dpkg marks a package as no longer `to be configured in this run'
12019     when an error occurs, so that other packages which depend on it
12020     will fail (rather than causing a loop and an assertion failure,
12021      packages.c:166: failed assertion `dependtry <= 4').
12023   * dselect initial selection granularity is single-package.
12024   * dpkg --no-also-select option renamed to --selected-only (old option
12025     still accepted, but no longer in --help).  Changed -N to -O.
12027   * dselect `update' option changed to `install' (and other options
12028     renamed too).  NB: old access methods will not work, because
12029     the `update' script should now be an `install' script.
12031   * dselect `installation methods' renamed to `access methods'.
12032   * dpkg --skip-same-version and --refuse-downgrade produce friendlier
12033     messages when they skip packages.
12034   * --licence option now properly mentioned in all programs' --version
12035     messages.
12037   * bad fix for ELF compile problem involving myopt.h removed (compile
12038     problem turned out to be a GCC bug.)
12040  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 1 Aug 1995 03:03:58 +0100
12042 dpkg (0.93.63) ALPHA; priority=LOW
12044   * preinst works around shell bug/misfeature involving `trap'.
12046   * dpkg --skip-same-version doesn't skip packages which have
12047     an error flag set or which aren't in a standard `installed' state.
12049   * dpkg --search now does a substring search if the string doesn't
12050     start with a wildcard character (*, [ or ?) or slash.
12052   * problem with C/C++ linkage of stuff in "myopt.h" fixed, to help
12053     with compiling with GCC 2.7.0.
12055   * dselect Makefile.in `clean' deletes curkeys.inc &c, so that they are
12056     not shipped in the distribution source and will be rebuilt on the
12057     target system.
12059  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 27 Jul 1995 13:38:47 +0100
12061 dpkg (0.93.62) ALPHA; priority=HIGH
12063   * dpkg purges leftover control scripts from /var/lib/dpkg/tmp.ci,
12064     rather than associating them with the wrong package.  (Bug#1101.)
12066   * dpkg won't `disappear' packages containing no files or directories,
12067     nor a package required for depends/recommended.  (Bug#1128.)
12069   * dpkg follows directory symlinks.  (Bug#1125.)
12071   * dselect fixups for ELF/GCC2.7.0 compilation.
12073  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 21 Jul 1995 21:43:41 +0100
12075 dpkg (0.93.61) ALPHA; priority=LOW
12077   * dselect keybindings and status characters and descriptions changed
12078     (in pursuance of Bug#1037, user interface problems, still open.)
12080   * Some cleanups to fix mistakes discovered by ELF-GCC 2.7.0, and fixup
12081     for newer C++ draft standard (`for' variable declaration scope change).
12083  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 18 Jul 1995 01:42:51 +0100
12085 dpkg (0.93.60) ALPHA; priority=HIGH
12087   * dpkg doesn't think packages have `disappeared' if you install
12088     several packages at once.  (later reported as Bug#1132.)
12090   * usage error messages tidied up.
12092  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 16 Jul 1995 17:56:56 +0100
12094 dpkg (0.93.59) ALPHA; priority=HIGH
12096   * dpkg doesn't break maintainer scripts &c if package `foo' exists
12097     when processing package `foobar'.  (Related to Bug#1101.)
12099   * dpkg implements `disappear' functionality.
12100   * dpkg/dselect remove dead entries from /var/lib/dpkg/status.
12102   * dpkg --list now sorted correctly and output somewhat improved.
12103   * some debugging messages moved from dbg_stupidlyverbose to dbg_scripts.
12104   * dpkg prints `Removing foo' message even if foo is not configured.
12105   * dpkg only prints `serious warning: files list file ... missing'
12106     once for each package.
12108  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 16 Jul 1995 02:32:11 +0100
12110 dpkg (0.93.58) ALPHA; priority=HIGH
12112   * dpkg should write out status even for packages which it has only
12113     encountered in the `available' file so far.
12115  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 14 Jul 1995 20:19:21 +0100
12117 dpkg (0.93.57) ALPHA; priority=LOW
12119   * dpkg does chroot when running maintainer scripts (--instdir
12120     should work right now, though I haven't been able to test it).
12122  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 14 Jul 1995 01:32:30 +0100
12124 dpkg (0.93.56) ALPHA; priority=HIGH
12126   * dpkg can now overwrite symlinks to directories, and will
12127     do correct handling of symlinks to plain files.
12128   * dpkg should not replace any directory with a symlink.
12130  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 13 Jul 1995 02:43:36 +0100
12132 dpkg (0.93.55) ALPHA; priority=MEDIUM
12134   * dpkg can now extract hardlinks.
12135   * dpkg configuration/removal works in the presence of dependency cycles.
12136   * dpkg should no longer fail an assertion at processarc.c:193.
12138  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 12 Jul 1995 01:34:44 +0100
12140 dpkg (0.93.54) ALPHA; priority=MEDIUM
12142   * dpkg and dselect no longer throw away all Class and Section
12143     information in /var/lib/dpkg/available.  (Oops.)
12144   * dpkg --refuse-<something> now works (this broke some dselect
12145     method scripts' attempts to use --refuse-downgrade).
12146   * dpkg --audit and --list implemented.
12148  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 10 Jul 1995 00:35:13 +0100
12150 dpkg (0.93.53) ALPHA; priority=LOW
12152   * dpkg --install/--unpack only skips on-hold packages with --auto.
12153   * dpkg doesn't fclose() the --fsys-tarfile pipe twice.
12154   * dpkg error handling and reporting cleaned up.
12155   * dpkg now lists any failed packages/files just before exiting.
12157  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 9 Jul 1995 16:31:36 +0100
12159 dpkg (0.93.52) ALPHA; priority=MEDIUM
12161   * dpkg won't segfault due to missing (Package_)Revision fields.
12162   * dpkg --search works.
12163   * dpkg will set execute permissions on scripts if necessary.
12164   * dpkg prints filenames in --unpack and --install.
12166  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 8 Jul 1995 12:41:39 +0100
12168 dpkg (0.93.51) ALPHA; priority=HIGH
12170   * dpkg --status and --listfiles now work.
12172   * dpkg --remove --auto won't try to remove everything (!)
12173   * dpkg --unpack doesn't coredump after unpacking the first package.
12174   * dpkg won't fail an assertion if it bombs out of --configure
12175     or --remove because of too many errors.
12177   * Support for `Essential' in dpkg (not yet in dselect).
12178   * `available' (Packages) file class and section override those
12179     from package control files.
12180   * `Essential: yes' added to control file.
12182   * Locking strategy changed, now uses flock (no more stale locks).
12183   * preinst now more helpful about conffiles upgrade problem.
12185  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 8 Jul 1995 01:15:26 +0100
12187 dpkg (0.93.50) ALPHA
12189   * C dpkg now in service.
12191   * dselect now installs in /usr/bin instead of /usr/sbin.
12192   * Improved `explanation of display' help and changed HSOC to EIOW.
12193   * dselect goes back to top of info display when you move the
12194     highlight.
12196   * Added <sys/types.h> to md5sum/md5.c, for the benefit of FreeBSD.
12197   * --admindir doesn't append `var/lib/dpkg' to its argument.
12199  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 19 May 1995 21:03:08 +0100
12201 dpkg (0.93.42.3) BETA; priority=LOW
12203   * Rebuilt using ncurses 1.9.2c-0.
12204   * Silenced `subcritical error' message if errno == ENOENT.
12206  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 12 Jun 1995 13:09:24 +0100
12208 dpkg (0.93.42.2) BETA; priority=HIGH
12210   * install-info --remove properly removes multi-line entries.
12211   * Slightly changed ^L redraw code in dselect package list.
12213  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 10 Jun 1995 14:06:01 +0100
12215 dpkg (0.93.42.1) BETA; priority=HIGH esp. for new installations
12217   * update-rc.d default no longer adds K entries in runlevels 2345.
12219  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 6 Jun 1995 18:56:23 +0100
12221 dpkg (0.93.42) BETA; priority=LOW; HIGH for dselect users
12223   * Fix uninitialized variable reference bug in dselect (#890).
12224   * Fix problem with wordwrapping package and method descriptions.
12225   * Create /var/lib/dpkg/methods/mnt.
12227  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 19 May 1995 21:03:08 +0100
12229 dpkg (0.93.41) BETA; priority=LOW
12231   * Create /var/lib/dpkg/methods.
12232   * dpkg.pl noisily ignores --skip-same-version rather than barfing.
12234  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 16 May 1995 13:28:27 +0100
12236 dpkg (0.93.40) BETA; priority=LOW
12238   * dselect's subprogram failure message made to stand out more.
12240   * When switching out of curses, always move the cursor to the
12241     bottom right corner of the screen.
12243  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 16 May 1995 01:03:38 +0100
12245 dpkg (0.93.39) BETA; priority=LOW
12247   * dselect can now:
12248     - allow you to select and configure an installation method;
12249     - invoke installation method scripts to update the available file
12250       and unpack packages;
12251     - invoke dpkg to configure and remove packages.
12252     There are no installation methods available yet.
12254   * Search feature in dselect works (it was purely an ncurses bug).
12256   * dpkg-*.nondebbin.tar.gz now available (built by debian.rules).
12258   * The target directory for dpkg-deb --extract (also available as
12259     dpkg --extract) is no longer optional.  dpkg-deb suggests the use
12260     of dpkg --install if you omit it.
12262   * Added <errno.h> to lib/lock.c and fixed ref. to `byte' in
12263     md5sum/md5.c, for portability to Solaris 2.
12265   * Rebuilt `configure' and `config.h.in' using autoconf 2.3.
12266   * Revised function attribute support checking in configure script.
12267   * Removed obsolete `dselect.pl' from scripts directory.
12268   * New option --licence on all the C programs.
12270  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 14 May 1995 18:05:38 +0100
12272 dpkg (0.93.38) BETA; priority=MEDIUM
12274   * Version number comparisons (in dpkg and dselect) now >= <=
12275     as documented (Bug#831; thanks to Christian Linhart).
12277   * dselect now has a non-superuser readonly mode.
12278   * dselect doesn't pop up unsatisfied `Optional's when quitting.
12279   * `unable to delete saved old file' message fixed dpkg_tmp to dpkg-tmp.
12281   * Made dpkg convert `revision' to `package_revision' when reading
12282     (eg) the `status' file.  libdpkg.a has `revision' as a synonym
12283     for `package_revision' and writes the former.
12285   * Major improvements and many changes to C option parsing, database
12286     management, error handling, Makefiles &c to support dpkg.
12287   * dpkg-deb should now work if sizeof(void*) < sizeof(void(*)()).
12289  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 24 Apr 1995 12:34:39 +0100
12291 dpkg (0.93.37) BETA; priority=LOW (MEDIUM for dselect users)
12293   * Fixed segfault if no description available (Bug#735);
12294     thanks to Peter Tobias for the bug report.
12295   * Fixed other assorted minor bugs in description displays.
12297   * Changed dpkg-deb --info short option from -i to -I, to make
12298     it unique across dpkg and dpkg-deb (-i still works with
12299     dpkg-deb for backwards compatibility).
12301   * Produce more sensible error when main package list is empty.
12303  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 7 Apr 1995 02:24:55 +0100
12305 dpkg (0.93.36) BETA; priority=LOW (MEDIUM for dselect users)
12307   * All the C code (including dselect) updated to support `provides'
12308     (virtual packages).
12309   * Revamped dselect's related package selection/deselection
12310     algorithms.
12311   * Everything can now handle arbitrary `class' values (as well
12312     as the predefined ones which we understand and can interpret).
12313   * Fixed bug that prevented display update when moving down a small
12314     recursive package list in dselect.
12315   * Column heading characters corrected from `SHOC' to `HSOC'.
12317  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 6 Apr 1995 12:48:13 +0100
12319 dpkg (0.93.35) BETA; priority=MEDIUM
12321  * Preserve ownerships and permissions on configuration files.
12322  * Fix bug in conffile updating that could leave a hardlink
12323    <foo>.dpkg-new to the conffile <foo>.
12325  * Improved dselect's package list help messages.
12326  * Highlight now moves on after (de)selecting just one package.
12327  * Better algorithm for scrolling up/down when moving highlight.
12328  * Fixed bug in display of `preformatted' extended Description lines.
12329    (dselect is still ALPHA, but is fairly stable.)
12331  * Improved dpkg's message when configuring a package that doesn't
12332    exist, and when selecting or skipping a package that isn't
12333    currently selected (during unpack processing).
12335  * Description in control file expanded.
12337  * Scroll back to top when changing what is in the `info' area.
12339 dpkg (0.93.34) BETA; priority=LOW (HIGH for dselect users)
12341  * dselect: Fixed bug which caused a coredump if you exited the
12342    package list if you'd made any changes.  Ouch !
12344  * dselect: Improved selection algorithm to show fewer extraneous
12345    packages; improved display for unavailable packages.
12347  * dpkg: Improved progress messages during unpacking somewhat.
12349 dpkg (0.93.33) BETA; priority=LOW (HIGH for dselect users)
12351  * dselect now has a main menu.
12353  * Fixed nasty uninitialized data bug in dselect.
12355  * dselect now locks and unlocks the packages database.
12357 Mon, 27 Mar 1995 03:30:51 BST  Ian Jackson <iwj10@cus.cam.ac.uk>
12359         * dpkg (0.93.32): Alpha dselect released and installed in
12360                           /usr/sbin/dselect.
12361         * dpkg (0.93.32): Many portability enhancements: should now
12362                           compile using GCC 2.6.3, and dpkg-deb should
12363                           compile better on non-Linux systems.
12364         * dpkg (0.93.32): dpkg will not loop if its stdin disappears
12365                           and it needs to prompt.
12366         * dpkg (0.93.32): Fixed removal dependency error to show
12367                           correct package (Bug #648).
12368         * dpkg (0.93.32): Tidied up copyright notices.
12369         * dpkg (0.93.32): First draft of update-rc.d manpage, not yet
12370                           installed in /usr/man.
12371         * dpkg (0.93.32): Changes to top-level Makefile.in to improve
12372                           error trapping.
12373         * dpkg (0.93.32): Improved Makefile `clean' and `distclean'
12374                           targets.
12375         * dpkg (0.93.32): Deleted irrelevant `t.c' from lib and
12376                           dselect directories.
12377         * dpkg (0.93.32): Added vercmp.c with version comparison code.
12378         * dpkg (0.93.32): varbufextend message changed - varbufs not
12379                           just for input buffers.
12380         * dpkg (0.93.32): varbuf has C++ member functions in header
12381                           #ifdef __cplusplus.
12383 Changes in dpkg 0.93.31:
12385 * start-stop-daemon --pidfile now works (Bug#571).
12386 * Fixed dependency processing bugs which could require a rerun of
12387   dpkg --configure (Bug#566).
12388 * Fixed garbage output for `language' of control file in dpkg-deb --info.
12390 Changes in dpkg 0.93.30:
12392 * Added /usr/sbin/start-stop-daemon.
12394 Changes in dpkg 0.93.09:
12396 * Made postinst scripts really be run when dpkg --purge used.
12397 * Added new --force-extractfail option - VERY DANGEROUS.
12399 Changes in dpkg 0.93.28:
12401 * Removed undef of 0x_p21 in read_database_file, which caused the
12402   the whole status database to become trashed when any update files
12403   were read.
12404 * Make infinite-loop prevention and cycle detection work.
12405 * Made findbreakcycle work (ie, break properly when cycle detected).
12406 * New script, update-rc.d, to update links /etc/rc?.d/[KS]??*.
12407 * dpkg.pl now sets the umask to 022.
12408 * Cosmetic error message fix to dpkg-deb.
12409 * Deleted OLD directory altogether.
12410 * Improved error-trapping in top-level Makefile loops.
12412 Changes in dpkg 0.93.27:
12414 * Make version number specifications in Depends &c work.
12415 * Added AC_PROG_CXX to autoconf.in for dselect.
12416 * Changed myopt.h not to have cipaction field in cmdinfo (this was
12417   specially for dpkg-deb) - now we have a generic void*.
12418 * Renamed `class' member of `pkginfoperfile' to `clas' [sic].
12419 * Much work in `dselect' subdirectory.
12420 * Deleted executables, objects and libraries from OLD tree !
12421 * Minor changes to various copyright notices and top-of-file comments.
12422 * Don't install nasty Perl dselectish thing as /usr/bin/dselect.
12424 Changes in dpkg 0.93.26:
12426 * Added --no-also-select instead of not auto-selecting on --unpack
12427   but doing so on --install; removed --force-unpack-any.
12429 Changes in dpkg 0.93.25:
12431 * Fixed duplicate output (failure to flush before fork) bug.
12432 * More clarification of md5sum.c copyright.
12433 * Corrected typo in ChangeLog in 0.93.24 source package.
12435 Changes in dpkg 0.93.24:
12437 * dpkg could copy conffiles info from one package to another.  Aargh.
12438   Bug #426.
12439 * dpkg failed to initialise status if you tried to remove or
12440   configure a nonexistent package.  Bug #419.
12441 * install-info now handles START-INFO-DIR-ENTRY entries like:
12442    * Gdb::                         The GNU debugger.
12443   Previously it would only accept (Bug #407):
12444    * Gdb: (gdb).                   The GNU debugger.
12445 * When installing a new foo.info[.gz], install-info now replaces
12446    * Foo: (foo.info).              The Gnoo Foo.
12447   as well as just * Foo: (foo). ...
12448 * Moved option parsing out of dpkg-deb into libdpkg.
12449 * Assorted minor source code rearrangements.
12450 * Fixed assorted copyright notices, clarified md5sum copyright.
12451 * Corrected typo in 0.93.23 source package's ChangeLog.
12453 Changes in dpkg 0.93.23:
12455 * `dpkg-deb' --build now does a syntax check on the control file.
12456 * `dselect' is now no longer called `debian', spurious copy removed
12457   from package top-level source directory.
12458 * C control information parsing complete and somewhat tested.
12459 * Moved `global' include files into $(srcdir)/include from ../lib,
12460   added some files to the lib Makefile, and arranged for pop_cleanup().
12462 Changes in dpkg 0.93.22:
12464 * Fixed bug which caused dpkg to see failures of md5sum where there
12465   were none (would also have caused dpkg to miss a real failure).
12466 * Fixed failure to update some `status' database fields.
12468 Changes in dpkg 0.93.21:
12470 * Fixed error-handling bug which could corrupt database.
12472 Changes in dpkg 0.93.20:
12474 * Fixed bug which ran old (/var/adm/dpkg) postinst scripts.
12475 * Fixed dpkg usage message which claimed -i => both --install & --info.
12476 * Use Colin Plumb's MD5 code - faster, and better copyright.
12477 * Manpages: dpkg-deb(8), deb-control(5), deb(5) - thanks to Raul
12478   Deluth Miller.  Also, an xfig picture of some C program innards.
12480 Changes in dpkg 0.93.19:
12482 * Don't delete the `list' file from the dpkg database.
12483 * Fixed various bugs in the conffile handling.
12484 * Conffiles that are symlinks will now be treated as if the
12485   `dereferenced' name of the file was listed in conffiles.  This means
12486   that /etc/foo -> /usr/etc/foo will cause all conffile updates of
12487   /etc/foo to create /usr/etc/foo.dpkg-tmp &c instead.  However, the
12488   link will be removed if --purge is used to delete all the conffiles.
12489 * When doing a new installation, or when updating a conffile that
12490   wasn't listed as a conffile in the old version of the package, don't
12491   do any prompting but just install the version from the archive.
12492 * Corrected error message if exec of dpkg --vextract failed
12493   and --instroot or --root specified.
12494 * Added new --force-unpack-any option.
12495 * Extra newline after --status output.
12496 * Added -W options to CFLAGS.
12497 * Fixed mistake in previous ChangeLog entry.
12499 Changes in dpkg 0.93.18:
12501 * Fixed invocation of dpkg-deb --vextract if --root or --instdir
12502   not specified.
12503 * Create /var/lib/dpkg/updates.
12505 Changes in dpkg 0.93.17:
12507 * install-info --remove exits with status 0 if it doesn't find the
12508   thing to remove, instead of status 1.
12509 * Error handling functions have __attribute__((format...)) if GCC.
12510 * push_cleanup its arg takes void **argv instead of char **argv.
12511 * Top-level Makefile.in has set -e before `for' loops.
12512 * dpkg-deb --info not-an-existing-file produces fewer error messages.
12514 Changes in dpkg 0.93.16:
12516 * Made --root= option really extract to $instroot instead of `/'.
12517 * install-info clears the 0444 bits in its umask.
12518 * Fixed a few database handling bugs which cause dpkg always to fail,
12519   and usually to corrupt the status database in various ways.
12520 * dpkg-deb completely rewritten, now doesn't tinker with
12521   /var/{adm,lib}/dpkg.  Should be faster.
12522 * Directory structure and Makefiles in source package reorganised.
12524 Changes in dpkg 0.93.15:
12526 * Added `debian' (dselect), still very primitive.
12527 * Database format changed, and moved from /var/adm to /var/lib.
12528 * Added dpkg --avail mode, --list, --status and --search.
12529 * Set of dpkg => dpkg-deb pass-through operations changed (but
12530   dpkg-deb not yet updated).
12531 * Added --root, --admindir and --instdir, as well as --isok &c.
12532 * Moved much stuff into /usr/lib/dpkg-lib.pl, rewritten status
12533   database handling.
12534 * Put packages in `purge' state even if `deinstall' requested if
12535   they have no postrm and no conffiles.
12536 * Version number comparisons fixed.
12537 * insert-version.pl now installes lib.pl filename too.
12538 * Strip trailing slashes when reading files from file lists.
12540 Changes in dpkg 0.93.14:
12542 * Fixed parsing of DEPENDS &c fields with trailing whitespace.
12543 * postinst now fixes up broken ispell.control file.
12544 * Cyclic dependency/multiple package removal processing: don't consider
12545   packages we've just removed when looking for a reason not to go ahead.
12546 * Added call to postinst with `purge' argument for expunging old
12547   configuration etc. that aren't listed in conffiles.
12549 Changes in dpkg 0.93.13:
12551 * sub S_ISREG defined in dpkg.pl.
12552 * Checking of DEPENDS &c fields was too lax, causing an internal error
12553   if you fed it certain kinds of broken control file.
12554 * Fixed misleading message from bogus installationstatus call.
12555 * New -u and -U options to dpkg-deb which don't unpack the /DEBIAN
12556   directory, and use these in dpkg.pl; clean up /DEBIAN in postinst.
12558 Changes in dpkg 0.93.12:
12560 * No longer needs *.ph files, since these appear to be broken.
12561 * Postinst fixes up *.control files with curly brackets.
12562 * embryo of dselect.
12564 Changes in dpkg 0.93.11:
12566 * New --ignore-depends option.
12567 * This ChangeLog changed format here.
12569 Wed Nov 30 15:38:21 GMT 1994  Ian Jackson  <iwj10@cus.cam.ac.uk>
12571         * dpkg 0.93.11 released.
12573         * conffile updating fixed.
12575         * Message `upgrade' in dpkg changed to `replace'.
12577         * install-info now copes with multi-line entries.
12579         * version numbers now done automatically in dpkg and install-info.
12581         * more debugging around conffiles updates.
12583         * *.hash files not deleted so soon.
12585         * adds brand new packages to status array so we can install them.
12587         * postinst does h2ph for {sys,linux}/{stat,types}.ph if required.
12589 Mon Nov 28 02:00:13 GMT 1994  Ian Jackson  <iwj10@cus.cam.ac.uk>
12591         * dpkg 0.93.10 released.
12593         * dpkg.pl completely rewritten.
12595         * dpkg-deb: removed dabase-processing and --install option.
12597         * Makefiles reworked, debian.rules added.
12599         * Don't install anything in /usr/doc/examples.
12601         * dpkg-*.deb contains /usr/bin/dpkg-deb.dist, fixed up by postinst.
12603 Thu Oct 20 13:22:20 1994  Ian Murdock  (imurdock@debra.debian.org)
12605         * dpkg 0.93.9 released.
12607         * dpkg.pl: Use $argument, not $package, with `--build'.
12608         Make sure that saved postinst scripts are executable.
12610 Tue Oct 18 09:40:57 1994  Ian Murdock  (imurdock@debra.debian.org)
12612         * dpkg 0.93.8 released.
12614         * deb/remove.c (pkg_remove): Do not report an error from rmdir ()
12615         when `errno' is ENOTEMPTY (Directory not empty), because in this
12616         case we have found the highest-level directory in the package and
12617         are ready to exit the loop (i.e., it is a normal occurrence).
12619 Mon Oct 17 10:44:32 1994  Ian Murdock  (imurdock@debra.debian.org)
12621         * Makefile.in: Adapted all Makefiles to the GNU Coding Standards.
12623         * deb/remove.c (pkg_remove): Make sure that parent directories are
12624         removed LAST!  This will result in complete removal of packages
12625         when --remove is called.  dpkg 0.93.7 (and earlier) had problems
12626         with this because it tried to remove directories in order, which
12627         will work most of the time, but not necessarily all of the time.
12629         * deb/list.c (pkg_list): Output is sorted by package name.
12631 Tue Oct  4 12:27:10 1994  Ian Murdock  (imurdock@debra.debian.org)
12633         * deb/contents.c (pkg_contents): When a list file cannot be
12634         opened, silently fail and let the front-end explain the problem.
12636         * deb/util.c (return_info): When a control file cannot be opened,
12637         silently fail and let the front-end explain the problem.
12639         * deb/search.c (pkg_search): Exit 0 if the regular expression is
12640         matched and 1 if it is not.
12642 Mon Oct  3 18:38:53 1994  Ian Murdock  (imurdock@debra.debian.org)
12644         * dpkg.pl: New file.  Replaces dpkg.sh.
12646         * deb/Makefile.in: Renamed `dpkg-util.deb' to `dpkg-deb'.
12648         * deb/build.c (pkg_build): `--build' is less verbose, instead
12649         letting the front-end add verbosity where appropriate.
12651         * deb/install.c (pkg_install): Ditto.
12653         * deb/remove.c (pkg_remove): Ditto.
12655         * deb/search.c (pkg_search): Ditto.
12657         * deb/describe.c (pkg_describe): `--describe' is less verbose,
12658         instead letting the front-end add verbosity where appropriate.
12659         The ``Description:'' label has been removed.
12661         * deb/version.c (pkg_version): `--version' is less verbose,
12662         instead letting the front-end add verbosity where appropriate.
12663         The ``Version:'' label has been removed, as has the maintainer
12664         information.
12666 Mon Sep 12 14:22:04 1994  Ian Murdock  (imurdock@debra.debian.org)
12668         * deb/version.c (pkg_version): `--version' now reports the
12669         version number of dpkg if no argument is specified.
12671 Thu Sep  1 13:31:37 1994  Ian Murdock  (imurdock@debra.debian.org)
12673         * dpkg 0.93.7 released.
12675         * deb/build.c (pkg_build): check status and exit if non-zero.
12677         * deb/contents.c (pkg_contents): ditto.
12679         * deb/install.c (archive_extract): ditto.
12681 Thu Sep  1 13:20:08 1994  Ian Murdock  (imurdock@debra.debian.org)
12683         * deb/version.c (pkg_version): indent to the same point as
12684         pkg_describe.
12686 Thu Sep  1 12:21:11 1994  Ian Murdock  (imurdock@debra.debian.org)
12688         * Makefile.in (dist): added debian.rules binary, source and
12689         dist targets to make final distribution easier to make.
12690         (install): install programs to /usr/bin.
12692         * deb/Makefile.in (install): install programs to /usr/bin.
12694         * deb/list.c (pkg_list): enforce a maximum limit of ten characters
12695         for the package name in the output.
12696         (pkg_list): left-justify the version number to make it easier for
12697         the front-end to parse the output.
12698         (pkg_list): replace first '\n' character in packages[n].description
12699         with '\0'.
12701         * deb/install.c (archive_extract): use the `p' option to `tar' to
12702         ensure that permissions are preserved.
12704 Sat Aug 27 09:53:37 1994  Ian Murdock  (imurdock@debra.debian.org)
12706         * dpkg 0.93.6 released.
12708         * deb/util.c (return_info): only unlink CONTROL if ARCHIVE_FLAG is
12709         true!
12711 Fri Aug 26 15:38:22 1994  Ian Murdock  (imurdock@debra.debian.org)
12713         * dpkg 0.93.5 released.
12715         * deb/contents.c (pkg_contents): merged function archive_contents
12716         into function pkg_contents.
12718         * deb/contents.c (pkg_contents): use lstat (rather than stat) so
12719         that symbolic links are recognized.
12720         (pkg_contents): print the usual `<path> -> <link_to>' now that we
12721         recognize symbolic links.
12723         * deb/util.c (return_info): create a FIFO to pipe the needed
12724         information to the ``formatter'' rather than creating a directory
12725         in /tmp for the package information, which is what we used to do.
12727 Thu Aug 25 11:46:27 1994  Ian Murdock  (imurdock@debra.debian.org)
12729         * lib/fake-ls.c (mk_date_string): return a pointer to malloc'ed
12730         area.
12731         (mk_mode_string): ditto.
12733         * dpkg.sh: make sure the control information is extracted to a
12734         uniquely-named temporary directory during package installation.
12736         * dpkg.sh: execute the pre- and post-removal scripts during
12737         package removal.
12739         * dpkg.sh: exit immediately if dpkg-util.deb reports failure.
12741         * deb/install.c (pkg_control): make sure that `package' exists and
12742         is a Debian archive before doing anything.
12744         * deb/install.c (pkg_extract): make sure that `package' exists and
12745         is a Debian archive before doing anything.
12747         * deb/install.c (pkg_install): unlink `extract_output' when done.
12749         * deb/remove.c (pkg_remove): use lstat (rather than stat) so that
12750         --remove does not get confused and think that a symbolic link to a
12751         directory is actually a directory, which results in the symbolic
12752         link never being removed at all.
12754 ChangeLog begins Thu Aug 25 11:46:27 1994 for dpkg 0.93.5.