Update Swedish translation.
[dpkg.git] / debian / changelog
blob7776f2a6b661ccf231ae2e2848f8c5463d95e70d
1 dpkg (1.15.8.4) unstable; urgency=low
3   [ Guillem Jover ]
4   * Fix use after free segfault on update-alternatives --remove-all.
5     Closes: #591653, #591654
6   * Always print a massage on warning when parsing control files.
7   * On database parsing only warn on bogus versions previously accepted,
8     the other instances will keep producing errors, to avoid newly
9     introduced bogosity. Closes: #590885, #590896, #591692, #591885
10   * Fix compilation on Solaris and Darwin:
11     - Link update-alternatives against libintl if libc does not have i18n
12       support.
13     - Include <limits.h> for _POSIX_MAX_PATH in update-alternatives.
14     Thanks to Fabian Groffen <grobian@gentoo.org>.
16   [ Raphaël Hertzog ]
17   * Fix make -C man install so that it actually finds the manual pages
18     to install. Closes: #591588
19   * When analyzing the ELF format of a binary in dpkg-shlibdeps, fallback on
20     usual objdump when the cross objdump failed. Closes: #591522
22   [ Sven Joachim ]
23   * Ensure removal of leftover backup .dpkg-tmp files after unpacking
24     failures, when the backup is still a hard link to the original file.
25     Closes: #591993
27  -- Guillem Jover <guillem@debian.org>  Fri, 13 Aug 2010 06:02:10 +0200
29 dpkg (1.15.8.3) unstable; urgency=low
31   [ Raphaël Hertzog ]
32   * Fix dpkg-divert test suite to cope with + and other special characters for
33     regexps in the build directory name. Thanks to Jonathan Nieder for the
34     patch and to Phil Kern for the report. Closes: #591182
36   [ Guillem Jover ]
37   * Fix buffer overflow in dpkg_ar_member_put_header causing it to write the
38     header to fd 0 (instead of ar_fd) depending on the stack layout, affecting
39     armel. Thanks to Phil Kern for the analysis and Reinhard Tartler for the
40     initial patch. Closes: #591312
42  -- Guillem Jover <guillem@debian.org>  Mon, 02 Aug 2010 10:38:07 +0200
44 dpkg (1.15.8.2) unstable; urgency=low
46   * Bump libdpkg-perl Depends on dpkg to 1.15.8, as it will break dpkg
47     versions before that when installing and removing libdpkg-perl,
48     because older update-alternatives and dpkg-divert require Dpkg.pm and
49     Dpkg/Gettext.pm which will disappear due to the Replaces. Closes: #590867
50     Thanks to Sven Joachim <svenjoac@gmx.de> for the analysis.
51   * Allow specifying again absolute and relative paths for dpkg-buildpackage
52     -r option. Closes: #591010
54  -- Guillem Jover <guillem@debian.org>  Sat, 31 Jul 2010 04:20:01 +0200
56 dpkg (1.15.8.1) unstable; urgency=low
58   * Fix off-by-one error in update-alternatives that lead to an infinite loop
59     while writing the administrative file. Closes: #590854
61  -- Raphaël Hertzog <hertzog@debian.org>  Thu, 29 Jul 2010 21:18:16 +0200
63 dpkg (1.15.8) unstable; urgency=low
65   [ Raphaël Hertzog ]
66   * Add new commands --before-build and --after-build to dpkg-source
67     and modify dpkg-buildpackage to call them automatically at the
68     start and at the end of the process. With "3.0 (quilt)" source packages
69     this ensures patches are applied even in case of binary-only builds.
70     Closes: #572526
71   * Merge non-regression test for Ubuntu's specificities concerning
72     changelog handling. Closes: #582389
73   * Fix some copy-paste mistakes in dpkg-architecture(1). Thanks to Ian Fleming
74     <iflema@yahoo.com.au> for the patch and Colin Watson for forwarding out of
75     Launchpad. Closes: #582404 LP: #564308
76   * Clarify description of dpkg --configure in dpkg(1). Thanks to Colin Watson
77     for the patch and to Robert Persson for the report.
78     Closes: #582406 LP: #77287
79   * Fix the non-regression test lib/dpkg/test/t-ar.c by not overflowing the
80     size of ar_name. Thanks to Colin Watson for the report, analysis and patch.
81     Closes: #582401
82   * Modify Dpkg::Shlibs::Objdump to use the cross objdump binary when cross
83     compiling. Thanks to Loïc Minier for the initial patch. Closes: #578365
84   * Make dpkg-maintscript-helper more robust when required parameters are
85     missing. Closes: #582814
86   * Clarify that dpkg-maintscript-helper rm_conffile needs the last version of
87     the package that did not remove the obsolete conffile if this was not
88     implemented at the time the file became obsolete. Closes: #582893
89   * Enhance dpkg-maintscript-helper rm_conffile and mv_conffile to work
90     properly when <lastversion> is not given (or is empty). Closes: #582819
91   * Small fix in dpkg-gensymbols' handling of tags. Closes: #583656
92     Thanks to Michael Tautschnig <mt@debian.org> for the report and the fix.
93   * update-alternatives has been rewritten in C, the only feature change
94     should be that it uses its own logfile /var/log/alternatives.log (rotated
95     like dpkg.log).
96   * Implement new --unapply-patches option for dpkg-source with source formats
97     2.0 and 3.0 (quilt) that unapplies the patches after a successful build.
98     This option can be put in debian/source/local-options in the package VCS
99     repository for instance.
100   * Implement new --abort-on-upstream-changes option for dpkg-source with
101     source formats 1.0, 2.0 and 3.0 (quilt). It aborts every time that you try
102     to build a source package which contains (unmanaged) changes to the
103     upstream source code. Closes: #579012
104   * dpkg-source now captures the output of patch and prints it on error so
105     that the user can better diagnose what went wrong. Closes: #575304
106   * Fix Dpkg::Changelog to cope properly with an entry of version "0".
107     Add non-regression test for this. Closes: #587382
108   * Add --export command to dpkg-buildflags to be used in shell with eval.
109   * Modify source format "3.0 (git)" to use git bundles. Thanks to Joey Hess
110     for the patch.
111     The usage of git bundle avoids distributing cruft. Closes: #477954
112     It's no longer needed to tell which branch contains the debian packaging,
113     it uses automatically the one that was used at build-time. Closes: #534637
114   * Pass --no-name option to gzip to avoid encoding the timestamp in the file
115     so that the result is more predictable. Closes: #587724
116     Also pass --rsyncable to make source packages more rsync friendly.
117   * Replace dpkg-source's tar ignore pattern "*~" with "*/*~" to avoid
118     matching on the top level directory. Closes: #588265
119   * In source formats "2.0" and "3.0 (quilt)", make sure to remove the
120     upstream-provided debian directory before copying the debian-provided
121     version of that directory in place. Closes: #590297
123   [ Guillem Jover ]
124   * Require gettext 0.18:
125     - Remove embedded gettext files from the repository, now properly
126       installed by autopoint for all po/ directories.
127     - Add versioned Build-Depends.
128   * Fix variable usage after delete in dselect.
129   * Change default configure admindir to LOCALSTATEDIR/lib/dpkg from
130     LOCALSTATEDIR/dpkg, so that we can use a correct --localstatedir=/var.
131   * Add two new dpkg options --path-exclude and --path-include for filtering
132     files on package installation. This allows embedded systems to skip
133     /usr/share/doc, manpages, etc. Based on work from Tollef Fog Heen and
134     Martin Pitt, thanks! Closes: #68788, #68861, #497304, #525567, #583902
135   * Remove obsolete internal status aliases “postinst-failed” for
136     stat_halfconfigured and “removal-failed” for stat_halfinstalled.
137   * Check version syntax when parsing it from libdpkg based programs.
138     Closes: #574704
139   * Rewrite mksplit in C, and merge it into dpkg-split.
140   * Rewrite dpkg-divert in C.
141   * Use linux-any wildcard for libselinux1-dev Build-Depends instead of
142     using a list of negated architectures.
143   * Use Breaks instead of Conflicts in dpkg, dpkg-dev and libdpkg-perl binary
144     packages.
145   * Move Dpkg.pm and Dpkg/Gettext.pm from dpkg to libdpkg-perl.
146   * Bump Standards-Version to 3.9.1.
147   * Detect when another process has locked the database, and mention that
148     problematic dpkg --audit results might be due to ongoing operations.
149     Closes: #80252
150   * Add new dpkg --force-confask option that forces a conffile prompt when
151     the conffile from the new package does not differ from the previous one.
152     Thanks to Henning Makholm <henning@makholm.net>. Closes: #102609
153   * On dpkg-divert --rename, check if the source file exists, and disable
154     renaming if it does not. Closes: #550252
155     As a side effect, this avoids useless errors when the destination
156     directory is not existent or writable. Closes: #581544
157   * Properly compute the longest package description from all to be displayed
158     on “dpkg-query --list”, so that it does not get incorrectly trimmed.
159   * Consistently use earlier/later instead of smaller/bigger when describing
160     comparison relationships. Closes: #587641
161   * Stop exporting DPKG_LIBDIR to maintainer scripts, no need for it anymore.
162   * Assign correct SE Linux label on non-regular files. Based on a patch by
163     Russell Coker <russell@coker.com.au>. Closes: #587949
164   * Add -F option to dpkg-buildpackage to be able to explicitly specify a
165     normal full build and combine it with -nc. Closes: #547993
166   * Add missing mentions of the Breaks field alongside the other fields
167     sharing the same syntax in deb-control(5).
168     Thanks to Osamu Aoki <osamu@debian.org>. Closes: #590472
170   [ Updated programs translations ]
171   * Catalan (Guillem Jover).
172   * German (Sven Joachim).
173   * Russian (Yuri Kozlov). Closes: #579149
174   * Swedish (Peter Krefting).
176   [ Updated man page translations ]
177   * German (Helge Kreutzmann).
178   * Russian (Yuri Kozlov). Closes: #579149
179   * Spanish (Omar Campagne).
180   * Swedish (Peter Krefting).
182   [ New scripts translation ]
183   * Spanish (Omar Campagne).
185   [ Updated scripts translations ]
186   * French (Christian Perrier).
187   * German (Helge Kreutzmann). Improved by Holger Wansing.
188   * Russian (Yuri Kozlov). Closes: #579149
189   * Swedish (Peter Krefting).
191  -- Guillem Jover <guillem@debian.org>  Thu, 29 Jul 2010 09:37:35 +0200
193 dpkg (1.15.7.2) unstable; urgency=low
195   [ Raphaël Hertzog ]
196   * Update dpkg-buildflags to respect $XDG_CONFIG_HOME and to use
197     $XDG_CONFIG_HOME/dpkg/buildflags.conf by default.
198   * Update deb-substvars(5) to codify how variables containing multiple
199     lines must be managed.
200   * Fix boolean evaluation of Dpkg::Version so that version 0 evaluates to
201     false and dpkg-shlibdeps can strip the minimal version specification.
202     Closes: #579724
203     Document this behaviour in the API and add non-regression test to ensure
204     it's kept.
205   * Let dpkg-buildflags error out when a required parameter is missing.
206     Closes: #579722
207   * Add Bug-Ubuntu field in DEP-3 template provided in the automatic header
208     of patches in 3.0 (quilt) source packages. Thanks to Benjamin Drung
209     <bdrung@ubuntu.com> for the patch. Closes: #578002
210   * Update deb-override(5) by removing references to usage of sections
211     to place the packages on the mirrors and by indicating that the Debian
212     policy offers a list of allowed values for section and priority.
213     Closes: #575410
214   * Update reference to triggers.txt.gz in dpkg-trigger(1) and deb-triggers(5)
215     to match the new location. Closes: #580774
216   * Drop mention of PKG_CONFIG_LIBDIR in dpkg-buildpackage(1), the feature has
217     been removed in 1.15.6.
218   * Rename /usr/lib/dpkg/maintscript-helper into
219     /usr/bin/dpkg-maintscript-helper, it is a public interface even if working
220     around known limitations.
221   * Add "supports" command to dpkg-maintscript-helper to ensure the wanted
222     command is supported before calling it.
224   [ Guillem Jover ]
225   * Add powerpcspe support to ostable and triplettable.
226     Thanks to Sebastian Andrzej Siewior <sebastian@breakpoint.cc> and
227     Kyle Moffett <Kyle.D.Moffett@boeing.com>. Closes: #568123, #575158
228   * Fix dpkg --root by properly stripping again the root directory from the
229     path of the maintainer script to execute. Closes: #580984
230   * On Linux use sync() instead of an fsync() per file on deferred extraction,
231     to workaround performance degradation on ext4. Closes: #578635
233   [ Gerfried Fuchs ]
234   * Fix syntax error in dpkg-name. Closes: #581315
236  -- Guillem Jover <guillem@debian.org>  Wed, 19 May 2010 07:57:14 +0200
238 dpkg (1.15.7.1) unstable; urgency=low
240   * Fix dpkg-source -b (without -i) for source packages 1.0. Closes: #578693
241     It was erroneously ignoring all changes because the ignore regex was
242     wrong (due to the change to ignore debian/source/local-options).
243   * Add missing call to textdomain() in dpkg-mergechangelogs to make
244     translations work.
246  -- Raphaël Hertzog <hertzog@debian.org>  Thu, 22 Apr 2010 08:05:20 +0200
248 dpkg (1.15.7) unstable; urgency=low
250   [ Raphaël Hertzog ]
251   * Clarify the plan concerning dpkg-source, debian/source/format and
252     the default source format in dpkg-source(1). Add a warning
253     in dpkg-source to invite people to always create debian/source/format.
254     We deprecate the fallback to "1.0" (it's there for backwards compatibility
255     only) and debian/source/format is going to be mandatory at some point in
256     the future. Closes: #553928
257   * Add .gitattributes to list of files ignored by dpkg-source.
258   * Document most common warnings and errors of dpkg-source in its manual
259     page.
260   * Let dpkg-source read options from debian/source/local-options as well but
261     do not include that file in the generated source package.
262   * Improve explanation of --all option in dpkg-parsechangelog(1). Thanks to
263     Jari Aalto. Closes: #575706
264   * Fix dpkg to not lose package metadata on filesystems where readdir()
265     returns new files added after the opendir() call, btrfs in particular
266     triggered the problematic behaviour. Closes: #575891
267   * Tigthen the regex used by dpkg-source to match the component name of
268     supplementary tarballs so that undercore (_) are not allowed as it was
269     supposed to be.
270   * Introduce a new script called dpkg-buildflags: its purpose is to retrieve
271     compilation flags and it should be used within debian/rules to pass
272     the right compilation flags to the build process. dpkg-builpackage still
273     exports them to not break packages currently relying on them but packages
274     should now start using dpkg-buildflags instead. Closes: #560070
275   * For Ubuntu set default value of LDFLAGS to -Wl,-Bsymbolic-functions.
276   * Cleanup some old Conflicts/Replaces, thanks to Helge Kreutzmann.
277   * Modify dselect to treat all unknown package as known and marked for purge.
278     This is a temporary work-around so that dselect doesn't try to reinstall
279     packages of priority > standard that were removed or not installed. Thanks
280     to Robert Luderda for the patch. Closes: #559519, #556889
281   * dpkg now exports DPKG_MAINTSCRIPT_NAME to maintainer scripts with the
282     type of maintainer script currently running (preinst, postinst, prerm,
283     postrm). Closes: #546577
284   * dpkg now exports DPKG_LIBDIR to maintainer scripts pointing to the
285     private directory containing internal programs like the upcoming
286     maintscript-helper.
287   * Add $DPKG_LIBDIR/maintscript-helper program that can be used in
288     maintainer scripts to perform common operations working around
289     current dpkg limitations: first version supports removing obsolete
290     conffiles and renaming conffiles. Closes: #514316
291   * Fix "dpkg-scansources -e", it was calling a non-existing function.
292     Closes: #578162
293   * Add new script dpkg-mergechangelogs to do 3-way merges of Debian
294     changelogs. Add libalgorithm-merge-perl to Recommends for the
295     benefit of this script.
297   [ Colin Watson ]
298   * Modern tar files typically use NormalFile1 rather than NormalFile0 for
299     file objects. A typo meant that the former never triggered rename
300     deferral. Closes: #577756
301   * Use the new list of files on rename deferral instead of old one, so that
302     newly added files get installed.
304   [ Guillem Jover ]
305   * Report deferred trigger errors on status-fd. Closes: #574599
306     Thanks to Michael Vogt <michael.vogt@ubuntu.com>.
307   * When creating hard links to normal files on extraction use the .dpkg-new
308     filename for source as the file is not yet in place due to the rename
309     deferral. Thanks to Colin Watson for the initial patch.
310   * Do not output the Package-Type field on udeb.
311   * Fix versioned Replaces to not produce file overwrite errors on downgrades.
312     Closes: #568566
313   * Fix installation of replaced and replacing packages in reverse order
314     (first the replacing then the replaced) for which the replaced package
315     is supposed to get disappeared, to disappear the correct package and not
316     lose track of the ownership of the replaced files.
318   [ Updated dpkg translations ]
319   * German (Sven Joachim).
321   [ Updated dselect translations ]
322   * German (Sven Joachim).
324   [ Updated man page translations ]
325   * German (Helge Kreutzmann).
327   [ Updated scripts translations ]
328   * German (Helge Kreutzmann).
330  -- Guillem Jover <guillem@debian.org>  Wed, 21 Apr 2010 04:05:55 +0200
332 dpkg (1.15.6.1) experimental; urgency=low
334   [ Guillem Jover ]
335   * Fix two memory leaks introduced in 1.15.6.
336   * Always use C99 variadic macros, as the build requires them anyway, we
337     avoid exposing the configure variable HAVE_C99 on installed headers.
338   * Use __attribute__ keyword depending on compiler support, we avoid
339     exposing the configure variable HAVE_C_ATTRIBUTE on installed headers.
340   * Do not allow a --retry schedule in start-stop-daemon where forever is
341     the last item, as it needs something to repeat over. Closes: #570938
342   * Show dselect dependency/conflicts resolution screen again, by switching
343     the code to use STL's min() and max() instead of preprocessor macros, to
344     avoid multiple evaluation of arguments. Regression introduced in 1.15.6.
345     Based on a patch by Robert Luberda <robert@debian.org>. Closes: #574816
346   * Defer the fsync and rename for normal files in tar extraction so that
347     it's done in one pass afterwards, to avoid massive I/O degradation due to
348     the serialization from each write + fsync. This restores extraction times
349     to numbers closer to the ones before the fsync patch introduced in 1.15.6.
351   [ Raphaël Hertzog ]
352   * Accept source packages without "Format" field for compatibility with very
353     old source packages. Thanks to Colin Watson for the report and the patch.
354     Closes: #574097
356   [ Updated dpkg translations ]
357   * French (Christian Perrier).
358   * Swedish (Peter Krefting).
360   [ Updated scripts translations ]
361   * Swedish (Peter Krefting).
363  -- Guillem Jover <guillem@debian.org>  Wed, 24 Mar 2010 13:56:28 +0100
365 dpkg (1.15.6) experimental; urgency=low
367   [ Raphaël Hertzog ]
368   * debian/control: Add the accent on my first name.
369   * Perl API cleanup:
370     - rename Dpkg::Deps dump() methods into output([$fh]), overload string
371       representation ("$dep") to provide the result of $dep->output()
372     - prefix public functions in Dpkg::Deps with deps_ and export them
373       by default
374     - rename Dpkg::Source::Compressor in Dpkg::Compression::Process
375     - rename Dpkg::Source::CompressedFile in Dpkg::Compression::FileHandle
376       and completely redesign its API
377     - update Dpkg::Compression's API to use compression_* functions
378       instead of granting direct access to variables, integrate
379       there management of default compression
380     - introduce Dpkg::Interface::Storable and update many modules
381       to make use of it
382     - update Dpkg::BuildOptions to provide an object-oriented interface
383     - update Dpkg::Checksums to provide an object-oriented interface
384   * Drop debian-maintainers from Suggests since it's obsolete, the
385     corresponding keyring is in debian-keyring.
386   * Merge support of symbol patterns in dpkg-gensymbols. Thanks to
387     Modestas Vainius for his work (see further for more details).
388   * Accept filename with spaces and colon in the output of objdump.
389     Required so that dpkg-shlibdeps support such files properly.
390     Thanks to Raphaël Geissert for the patch. Closes: #565712
391   * When unpacking a "3.0 (quilt)" source package, tell quilt where
392     patches are (to be) stored. Requires quilt >= 0.48-5 to work.
393     Closes: #557619
394   * Fix update-alternatives to not try to reinstall an unknown alternative
395     when the link group is broken, instead switch to the best choice in
396     automatic mode. Closes: #566406
397   * Don't return duplicate bug numbers in Launchpad-Bugs-Fixed:.
398     Thanks to Brian Murray <brian@ubuntu.com> for the report
399     and the patch. Closes: #569618
400   * Add $VERSION numbers to all perl modules. Closes: #465256
401     1.00 and higher means that the API should be stable
402   * While parsing diff's output, accept any sentence that contains the word
403     differ (as specified by POSIX) to identify that binary files could not be
404     compared. Closes: #570008
405   * dpkg-gencontrol does no longer accept arch-specific dependencies in
406     arch: all packages. Closes: #560071
407   * dpkg-gencontrol no longer warns if a substitution variable provided by -V
408     is not used (the warning is meant to catch unused substitutions coming
409     from the file, those are package specific with debhelper). Closes: #557133
410   * dpkg-gencontrol now indicates which package is concerned by the substvars
411     warning that it displays. Closes: #566837
412   * dpkg-buildpackage now supports options --source-option=<opt> and
413     --changes-option=<opt> to forward arbitrary options to dpkg-source and
414     dpkg-genchanges respectively. Closes: #566230
415   * The -T option of dpkg-{source,gencontrol,genchanges} can now be used
416     multiple times to read substitution variables from multiple files.
417     Closes: #363323
418   * dpkg-source now supports an option --create-empty-orig in formats
419     "2.0" and "3.0 (quilt)" to auto-create the main original tarball when
420     there are supplementary tarballs. This makes it easier to bundle
421     multiple software together. Closes: #554488
422   * dpkg-source supports long option names --diff-ignore and --tar-ignore for
423     -i and -I. A new option --extend-diff-ignore is introduced. Those options
424     can thus now be used in debian/source/options.
425   * Generate manual pages for perl modules.
426   * Introduce the libdpkg-perl package and clarify its status in README.api.
427   * Update Standards-Version to 3.8.4 (no changes needed).
428   * Drop unused lintian override for arch-dep-package-has-big-usr-share on
429     dselect.
430   * The rewritten Dpkg::Checksums deals properly with filenames with
431     spaces. Closes: #572030
432   * dpkg-source does no longer fallback to other source formats if the
433     requested one is not usable. Closes: #557459
434   * Modify dpkg-source to error out when it would apply patches containing
435     insecure paths (with "/../") and also error out when it would apply a
436     patch through a symlink. Those checks are required as patch will happily
437     modify files outside of the target directory and unpacking a source package
438     should not be able to have any side-effect outside of the target
439     directory. Fixes CVE-2010-0396.
440   * Also error out when the quilt series contains a path with "/../" as this
441     can cause patch to create files outside of the source package due
442     to the -B .pc/$path option that it gets.
444   [ Guillem Jover ]
445   * Handle argument parsing in dpkg-checkbuilddeps and dpkg-scanpackages
446     in a way consistent with the rest of the tools.
447   * Recognize --help in addition to -h in dpkg-checkbuilddeps.
448   * Add a --version option to dpkg-checkbuilddeps.
449   * Improve and mark more messages in writedb() to make translators lifes
450     easier. Closes: #408525
451   * Improve update-alternatives --display output to use two leading spaces
452     for current link and slave information. Use single quotes for both “best”
453     and the alternative it's pointing to. Closes: #549167
454   * Refer to “half configured” instead of “failed config” in «dpkg-query -l»
455     header and dselect package status printing for consistency.
456   * Make “dpkg-statoverride --quiet” actually do something, and quiesce
457     most of the inoquous warning messages. Closes: #403211
458   * Make “dpkg-statoverride --update --add” fail if it cannot update the
459     mode and owner of the file. This would fail later on when dpkg itself
460     applies the overrides, so better to signal this earlier.
461   * Add sparc64 to cputable. Thanks to Aurelien Jarno <aurel32@debian.org>.
462     Closes: #560010
463   * Do not allow diverting a file to itself, which makes the file to get
464     removed. Closes: #312206
465   * Make the check for duplicate fields in a stanza in libdpkg actually work,
466     which now makes it fatal, as was intended originally. This should not
467     cause problems for anything using dpkg-dev to build packages as those
468     are already fatal on that case.
469   * Add new deb-split(5) man page.
470   * Fix misspellings of “explicitly” all over the place.
471   * Normalize ar member names when reading (removing trailing spaces and
472     slash), this allows deb-split packages be created with GNU ar.
473   * Validate compression level on dpkg-deb argument parsing.
474   * Fix error handling, clean up and refactor compression code.
475     Thanks to Jonathan Nieder for several of the patches.
476   * Do not print unambiguous epoch on dpkg file overwrite error.
477   * Rename Dpkg::IPC::fork_and_exec() to Dpkg::IPC::spawn().
478   * Change dpkg-dev to Depend on perl instead of perl5 and perl-modules.
479   * Fix small memory leaks related to scandir() in dpkg-deb and libdpkg.
480   * Fix dpkg-query and dpkg-trigger to actually print a version on --version.
481   * Always spawn a new shell on conffile prompt, instead of supporting
482     self backgrounding, remove DPKG_NO_TSTP environment variable support.
483     Closes: #38334
484   * Set DPKG_SHELL_REASON, DPKG_CONFFILE_OLD and DPKG_CONFFILE_NEW environment
485     variables when spawning a shell for conffile examination. Closes: #60329
486     Thanks to Daniel Martin <Daniel.Martin@jhu.edu> for the idea.
487   * Add support for disabling update-alternatives at configure time using
488     --withouth-update-alternatives.
489   * Add support for disabling install-info at configure time using
490     --withouth-install-info.
491   * Update debian/copyright.
492   * Use Debian instead of ‘Debian GNU/Linux’ when referring to the
493     distribution.
494   * On dpkg --no-act with --install, --unpack or --record-avail, and
495     dpkg-deb --info or --field use mkdtemp() to create a temporary directory
496     instead of insecure tempnam() or tmpnam() functions.
497   * Remove --license and --licence options from tools.
498   * Securely remove newly installed files when rolling-back a failed unpack.
499   * Change default lzma compression level from 9 to 6.
500     Thanks to Jonathan Nieder for the initial patch.
501   * Add support for xz compressed data.tar member of binary packages. Add
502     xz-utils to dpkg's Pre-Depends. Closes: #542160
503     Thanks to Jonathan Nieder for the initial patch.
504   * Use xz command to handle lzma compressed files in dpkg and dpkg-dev.
505     This removes the lzma package from both dpkg and dpkg-dev dependencies.
506   * Do not set PKG_CONFIG_LIBDIR in dpkg-buildpackage when cross-building.
507     The proper solution to this is to let the build system choose the
508     appropriate pkg-config binary for the build or host system in the same
509     way pkg.m4 is handling it now. Closes: #551118
510   * Dynamically link against all external libraries. This includes libbz2
511     and zlib for dpkg-deb and and libselinux for dpkg on GNU/Linux.
512   * Mark the libdpkg.a API as volatile and require any possible users to set
513     LIBDPKG_VOLATILE_API to acknowledge that fact.
514   * Add a new libdpkg-dev package with the headers and the static library,
515     although its API should be considered volatile.
516   * Reorganize the doc contents that goes into each package:
517     - README.multicd only in dselect.
518     - README.api only in development packages, dpkg-dev and libdpkg-dev.
519     - triggers.txt only in dpkg-dev.
520   * Move source.lintian-overrides to debian/source/lintian-overrides.
521   * Switch SE Linux support to explicitly set path context. This fixes the
522     mislabeling of files under <admindir> on conffile extraction or on unpack
523     errors, due to improper default context restoration. Closes: #498438
524   * Use FIEMAP when available (on Linux based systems) to sort the .list
525     files loading order. With a cold cache it improves up to a 70%.
526     Thanks to Morten Hustveit <morten@debian.org>.
527   * When FIEMAP is not available use posix_fadvise() to start preloading the
528     .list files before loading them. With a cold cache it improves up to 40%.
529     Thanks to Stefan Fritsch <sf@sfritsch.de>. Closes: #557560
530   * Call fsync(2) after writting files on disk, to get the atomicity
531     guarantees when doing rename(2). Based on a patch by
532     Jean-Baptiste Lallement <jeanbaptiste.lallement@gmail.com>.
533     Closes: #430958
534   * Call fsync(2) on database directories after creating, renaming or
535     unlinking files, to guarantee the new file entry is correctly listed
536     in the directory. Base on a patch by
537     Jean-Baptiste Lallement <jeanbaptiste.lallement@gmail.com>.
538   * Document in the man page the effects of setting TMPDIR for dpkg and
539     dpkg-deb, HOME for dselect and dpkg and PAGER for dpkg. Closes: #572836
540   * Document the exit codes for dpkg-query. Closes: #571798
541   * Document “dpkg-query -l” abbreviated state information in the man page.
542     Based on a patch by Marc-Jano Knopp <pub_br_debian.org@marc-jano.de>.
543     Closes: #383869
544   * Honour LINGUAS environment variable when installing translated man pages.
545   * Allow disabling at configure time Unicode ncurses support for dselect.
546     Based on a patch by Yuri Vasilevski <yvasilev@gentoo.org>.
548   [ Modestas Vainius ]
549   * Implement symbol patterns (Closes: #563752). From now on, it is possible to
550     match multiple symbols with a single entry in the symbol file template.
551     While the concept is not new (wildcards also match multiple symbols),
552     patterns cover much more ground and are a lot more flexible. Together with
553     the framework, 3 basic pattern types are supported:
554     - c++ - matching C++ symbols by their demangled name (as emitted by
555       c++filt);
556     - symver - matching by symbol version. It replaces the wildcards feature
557       which is still supported for backwards compatibility but is reimplemented
558       on top of the new framework;
559     - regex - matching symbol names with perl regular expression.
560     Basic patterns may be combined where it makes sense.
561   * As a positive side effect of the new symbol patterns implementation,
562     patterns are now treated like normal symbols whenever possible, e.g. a
563     pattern is MISSING if it does not match anything. As a result,
564     dpkg-gensymbols is now able to detect NEW/MISSING symbols when patterns are
565     present in the symbol file (Closes: #541464). Please note, however, that
566     there is no way to detect symbol changes in the pattern match sets.
567   * Add source version to the dpkg-gensymbols diff label, reformat it according
568     to the rules of dpkg-name.
569   * Add -a<arch> option to dpkg-gensymbols.
570   * Add -q option to dpkg-gensymbols. -c0 will never fail but still generate a
571     diff. Use -c0 -q to keep dpkg-gensymbols completely quiet as before
572     (Closes: #568228).
574   [ Jonathan Nieder ]
575   * Fix a file handle leak in “dpkg-deb --info”. Thanks to Raphael Geissert
576     for the report and patch.
578   [ Helge Kreutzmann ]
579   * Add dpkg-gensymbols.1 to the translatable man page set.
581   [ Updated dpkg translations ]
582   * Catalan (Guillem Jover).
583   * French (Christian PERRIER).
584   * German (Sven Joachim).
585   * Italian 'Milo Casagrande). Closes: #567531
586   * Simplified Chinese (Aron Xua). Closes: #558794
587   * Slovak (Ivan Masár). Closes: #559269
588   * Swedish (Peter Krefting).
590   [ Updated dselect translations ]
591   * Catalan (Guillem Jover).
592   * French (Christian Perrier).
593   * German (Sven Joachim).
594   * Spanish (Javier Fernández-Sanguino). Closes: #572861
595   * Swedish (Peter Krefting).
597   [ Updated man page translations ]
598   * French (Christian Perrier): correcting inconsistencies for the translation
599     of "original" here and there. Thanks to Julien Valroff for pointing this.
600   * German (Helge Kreutzmann).
601   * Swedish (Peter Krefting).
603   [ Updated scripts translations ]
604   * Catalan (Guillem Jover).
605   * French (Christian PERRIER).
606   * German (Helge Kreutzmann).
607   * Swedish (Peter Krefting).
609  -- Guillem Jover <guillem@debian.org>  Fri, 12 Mar 2010 00:15:31 +0100
611 dpkg (1.15.5.6) unstable; urgency=low
613   * dpkg-source: with format "3.0 (quilt)" ensure quilt's .pc directory is
614     created before trying to register a new patch in .pc/applied-patches.
615     Thanks to Tommi Vainikainen <thv+debian@iki.fi> for the report and the
616     patch. Closes: #561237
617   * Fix dpkg-buildpackage to set "parallel=" in DEB_BUILD_OPTIONS instead of
618     the invalid "parallel=-1" when option "-j" is given. Closes: #562038
619   * Clarify how dpkg-source --print-format works and display messages on
620     STDERR when the requested format is discarded. Closes: #560391
621   * Add ${misc:Depends} in all Depends fields.
623  -- Raphaël Hertzog <hertzog@debian.org>  Fri, 08 Jan 2010 17:57:43 +0100
625 dpkg (1.15.5.5) unstable; urgency=low
627   * Allow again new lines in dpkg-source and dpkg-genchanges on substvar and
628     maintainer arguments.
630  -- Guillem Jover <guillem@debian.org>  Tue, 22 Dec 2009 09:49:49 +0100
632 dpkg (1.15.5.4) unstable; urgency=low
634   * Fix Dpkg::Index::get() and remove(). Thanks to Roderich Schupp
635     <roderich.schupp@googlemail.com> for the patch. Closes: #558595
636   * Modify implementation of "3.0 (quilt)" source format to not be
637     behave differently depending on whether quilt is installed or not.
638     The option --without-quilt is thus gone and dpkg-source creates
639     and relies on the .pc directory to know whether patches are applied
640     or not. Closes: #557667
641   * Add new dpkg-source option --single-debian-patch supported by the source
642     format "3.0 (quilt)" so that it behaves more like 1.0 and its single diff
643     that is constantly updated with all upstream changes. Useful if the
644     workflow is VCS based and can't generate a full patch set.
645   * dpkg-source now uses debian/source/patch-header as header of the automatic
646     Debian patch in format "3.0 (quilt)".
647   * Fix Debian changelog parser so that the trailer line is again checked.
649  -- Raphaël Hertzog <hertzog@debian.org>  Mon, 07 Dec 2009 09:24:31 +0100
651 dpkg (1.15.5.3) unstable; urgency=low
653   [ Raphaël Hertzog ]
654   * Avoid usage of IO::String in dpkg-scanpackages, rely on Dpkg::IPC
655     instead to directly get a pipe file descriptor. Closes: #557013
656   * Put "3.0 (quilt)" in the default list of formats tried by dpkg-source
657     after "1.0" and before "3.0 (native)".
658   * Let dpkg-source fail if several upstream orig.tar files are available
659     (using different compression scheme) since we don't know which one
660     to use.
661   * Add missing "use Dpkg::Gettext" in Dpkg::Changelog::Entry::Debian.
662     Closes: #557668
663   * When building "3.0 (quilt)" source packages, use QUILT_PATCH_OPTS="-t -F 0
664     -N -u -V never -g0" so that quilt is as strict as dpkg-source's internal
665     implementation of quilt. Closes: #557664, #558233
666   * Before accepting to build a 3.0 (quilt) source packages, ensure that
667     debian/patches is a directory (or non-existing) and that
668     debian/patches/series is a file (or non-existing). Closes: #557618
669   * Dpkg::IPC::fork_and_exec() now includes the changed environment
670     variables in the default error message displayed when the sub-process
671     fails.
673   [ Guillem Jover ]
674   * Verify that the alternative used in update-alternatives --set has been
675     registered instead of failing with an undefined value in the slave
676     method. Closes: #554136
677   * Strip leading spaces in the first line of a field's value in
678     Dpkg::Control::Hash. Closes: #557547
680  -- Guillem Jover <guillem@debian.org>  Fri, 27 Nov 2009 19:23:36 +0100
682 dpkg (1.15.5.2) unstable; urgency=low
684   * Change Dpkg::Version API to accept invalid versions by default and add
685     is_valid() method. The boolean evaluation of a version object returns
686     true if the version is valid, false otherwise.
687   * Update dpkg-shlibdeps to always use Dpkg::Version now that it can
688     contain the empty version string. Closes: #556786
689   * Keep compatibility with perl 5.8 by avoiding the _ prototype.
691  -- Raphaël Hertzog <hertzog@debian.org>  Wed, 18 Nov 2009 11:54:50 +0100
693 dpkg (1.15.5.1) unstable; urgency=low
695   * Fix build failures due to off_t type missmatch caused by not including
696     <config.h> first on the unit tests. Suggested by Pierre Habouzit and
697     Julien Cristau, thanks!
699  -- Guillem Jover <guillem@debian.org>  Tue, 17 Nov 2009 16:42:00 +0100
701 dpkg (1.15.5) unstable; urgency=low
703   [ Guillem Jover ]
704   * Remove obsolete conffiles on purge. Closes: #421367, #453005, #454628
705   * Update list of binaries dpkg checks on the PATH.
706     - Remove install-info, now a wrapper that will disappear soonish.
707     - Add programs used by dpkg itself: sh, rm, find, tar and dpkg-deb.
708   * Check and warn on duplicate conffiles in dpkg-deb. Closes: #131633
709   * Make the upstream build system silent by default with automake 1.11 or
710     newer, and always verbose when building the Debian packages.
711   * Fix small leak when parsing ‘--ignore-depends’ option values.
712   * Define compatibility WCOREDUMP only if the system does not have it.
713   * When start-stop-daemon fails to set the io scheduling warn instead of
714     finishing fatally. Closes: #553580
715   * Update md5 file paths in debian/copyright.
716     Thanks to Jonathan Nieder <jrnieder@gmail.com>.
717   * On ‘dpkg-trigger --help’ print the default admindir instead of the one
718     passed on the command line.
719   * Abort on configure if the required C99 extensions are not supported.
720   * Add C coding style document.
721   * Make dpkg as strict as dpkg-statoverride on input when validating the
722     parsed data from the statdb.
723   * Rewrite dpkg-statoverride in C.
724   * Use C99 snprintf function family semantics to avoid having to call them
725     in a loop to grow the varbuf buffer. This should reduce memory usage and
726     be slightly faster on varbufprintf calls.
727   * Use the size from stat to allocate the buffers for readlink, instead of
728     indefinitely calling readlink and growing the buffer. This should reduce
729     memory usage when handling lots of symlinks, and be slightly faster.
730   * Rework varbuf api to avoid increasing buffers indefinitely when adding
731     content to them, regardless of space being already available.
732   * Fix build macros to allow start-stop-deaemon to use TIOCNOTTY.
733   * Generate the autoconf version from git to make it easier to see when a
734     snapshot version is being used.
735   * Add infrastructure for doxygen, for now not installed anywhere.
736   * Allow overriding the pkg-config path to ease cross-compilation.
737     Suggested by Tollef Fog Heen <tfheen@err.no>.
738   * Fix spelling errors in the Catalan translation. Closes: #553328
739     Thanks to Robert Millan.
740   * Update the FSF postal address in the source code license headers by
741     replacing it with a URL to the gnu.org page.
742   * Fix a file descriptor leak in dpkg-deb.
743     Reported by Raphael Geissert <atomo64@gmail.com>.
744   * Fix resource leaks on error conditions in compat scandir.
745   * Add a new status-fd action when disappearing a package. Closes: #537338
747   [ Raphaël Hertzog ]
748   * Add versioned dependency on base-files (>= 5.0.0) to dpkg-dev to ensure
749     that /etc/dpkg/origins/default exists. Closes: #545274
750   * Update Standards-Version to 3.8.3 (no changes needed).
751   * Major changes to the perl API:
752     - Dpkg::Control is now Dpkg::Control::Info
753     - Dpkg::Cdata is gone and is replaced by a new Dpkg::Control
754     - Dpkg::Control::Fields contains authoritative information
755       about fields allowed in various types of control information
756       (and can be customized by each vendor). It also integrates
757       information that was previously available through Dpkg::Deps.
758     - Dpkg::Changelog has been split in multiple modules and largely
759       modified to offer an interface that is now more in line with the
760       other modules.
761   * All dpkg-* perl programs that work with control information have been
762     updated to use the new Dpkg::Control interface.
763     In this process, dpkg-scanpackages has been fixed to not skip non-standard
764     fields. Closes: #494136
765   * Create Launchpad-Bugs-Fixed directly in the changelog parsing code thanks
766     to a new vendor hook post-process-changelog-entry. Closes: #536066
767   * Integrate dpkg-ftp into dselect. Add the required Replaces and Conflicts.
768   * dpkg-scanpackages/dpkg-scansources now supports compressed override files.
769   * dpkg-scanpackages now supports a new --medium option as needed to
770     generate Packages.cd file for consumption by the multicd dselect access
771     method. Closes: #402527
772   * Integrate dpkg-multicd into dselect. Add the required Replaces and
773     Conflicts. The dpkg-scanpackages fork is dropped. Closes: #516631
774   * Fix bashisms in dselect multicd access method. Closes: #530070
775   * Add support of "xz" compression method for source packages. Add dependency
776     dpkg-dev → xz-utils to ensure xz and unxz are available.
777   * Fix dpkg-source --include-binaries to correctly compute the path name of
778     the discovered binary files. Closes: #554612
779   * Remove extra quoting that should not be there while passing an exclude
780     file to git ls-files during build of 3.0 (git) source package.
781     Thanks to Courtney Bane for the patch. Closes: #551829
782   * Optimize dpkg-source -b by avoiding many diff calls when not required.
783     Thanks to Mike Hommey for the idea. Closes: #554689
784   * Add new option --print-format to dpkg-source to be able to know by advance
785     the source format that would be used during a build.
786   * Modify dpkg-source -b to use default build options from
787     debian/source/options. Thus it's now possible to have sticky options, for
788     example for the choice of a compression method (--compression=<comp>).
789   * dpkg-source outputs the list of upstream files modified by the diff.gz
790     (applies only to source packages using format 1.0). Closes: #482166
791     It also recommends usage of 3.0 (quilt) format during dpkg-source -b if it
792     detects changes to upstream files that are stored in the .diff.gz.
793   * Add DEP-3 compliant headers to automatic patches created by dpkg-source
794     in 3.0 (quilt) source format. Closes: #543581
795   * Switch dpkg to source format "3.0 (native)" with bzip2 compression.
797   [ Updated dpkg translations ]
798   * Czech (Miroslav Kure).
799   * French (Christian Perrier).
800   * German (Sven Joachim).
801   * Italian (Milo Casagrande). Closes: #548615, #555806
802   * Polish (Wiktor Wandachowicz). Closes: #548541
803   * Swedish (Peter Krefting).
805   [ Updated dselect translations ]
806   * Czech (Miroslav Kure).
807   * French (Christian Perrier).
808   * German (Sven Joachim).
809   * Polish (Wiktor Wandachowicz). Closes: #548541
810   * Swedish (Peter Krefting).
812   [ Updated man page translations ]
813   * French (Christian Perrier).
814   * French translation error fixed (Christian Perrier)
815     Thanks to Pietro Battiston for spotting it. Closes: #545446
816   * German (Helge Kreutzmann).
817   * Polish (Wiktor Wandachowicz). Closes: #548541
818   * Swedish (Peter Krefting).
820   [ Updated scripts translations ]
821   * German (Helge Kreutzmann).
822   * Polish (Wiktor Wandachowicz). Closes: #548541
823   * Swedish (Peter Krefting).
825  -- Guillem Jover <guillem@debian.org>  Tue, 17 Nov 2009 10:17:57 +0100
827 dpkg (1.15.4.1) unstable; urgency=medium
829   * Do not mark any package as unseen in dselect. This is a workaround
830     until it learns how to store such information again. Closes: #545366
832  -- Guillem Jover <guillem@debian.org>  Mon, 19 Oct 2009 15:15:17 +0200
834 dpkg (1.15.4) unstable; urgency=low
836   [ Guillem Jover ]
837   * Call _g instead of g_ in dpkg-name.
838   * Fix inverted logic when deciding to assume the architecture in dpkg-name
839     when the package didn't have such field.
840   * Do not take into account Revision and Package_Revision fields in dpkg-name
841     and dpkg-scanpackages as they have been handled already by “dpkg-deb -I”.
842   * Switch dpkg-scansources to use Dpkg::Cdata instead of duplicating the
843     .dsc parsing code. As a side effect it now handles properly bogus files.
844   * Do not remap obsolete fields in dpkg-scanpackages as they have been
845     handled already by “dpkg-deb -I”.
846   * Properly mark packages being purged for disappearance from the database.
847     This will make the status database not be left behind with traces of old
848     not-installed packages. Closes: #472208
849   * On parse mark not-installed leftover packages for automatic removal from
850     the database on next dump. This obsoletes the --forget-old-unavail option,
851     thus making it now a no-op. Closes: #33394, #429262
852   * Document “hold” under package selection states instead of flags in dpkg(1).
853   * Remove trailing ‘/’ and ‘/.’ from the directory name to be used as the
854     package name on “dpkg-deb -b”. Closes: #218018, #373602
855   * Remove obsolete ‘hold’ and ‘hold-reinstreq’ internal status flags.
856   * Add fakeroot to dpkg-dev Recommends. Closes: #536821
857   * Fix an always false test when trying to decide which package to deselect
858     to resolve a dependency problem in dselect.
859   * Add uClibc Linux support to ostable and triplettable. Closes: #455501
860   * Add uClinux support to ostable and triplettable.
861     Thanks to Simon Richter <sjr@debian.org>.
862   * When aborting due to file conflicts print the version of the conflicted
863     package. Closes: #540019
864   * Remove double slash in database path visible to the user in some error
865     conditions.
866   * Stop macthing sparc64-*-* GNU triplets with sparc Debian architecture.
867   * Add support for config.d style directories in dpkg and dselect,
868     (/etc/dpkg/dpkg.cfg.d and /etc/dpkg/dselect.cfg.d respectively).
869   * Define DPKG_MAINTSCRIPT_ARCH on the maintainer script environment to the
870     architecture the package got built for.
871   * Document DPKG_MAINTSCRIPT_PACKAGE maintainer script environment variable
872     in dpkg man page.
873   * Document DPKG_RUNNING_VERSION maintainer script environment variable
874     in dpkg man page.
875   * Change po4a usage to not create unwated changes depending if doing out or
876     in-tree builds.
877   * Use po4a “--previous” support when updating the man pages.
878     Suggested by Christian Perrier <bubulle@debian.org>.
879   * On configuration error print file name and line number.
880   * Allow quoting values in configuration file options.
881   * Add new --pre-invoke and --post-invoke hooks in dpkg.
882   * Add new --control-path command to dpkg-query.
883   * Use ohshit on bad version syntax in --compare-versions.
884   * Add Multi-Arch to the list of known binary package fields for dpkg-dev.
885     Thanks to Steve Langasek <vorlon@debian.org>.
887   [ Raphaël Hertzog ]
888   * Replace install-info by a wrapper around GNU's install-info. The wrapper
889     will be dropped in squeeze+1. dpkg now Breaks: old versions of
890     info-browsers that do not depend on the new install-info package
891     that provides the real functionality. Closes: #9771, #523980
892     See http://wiki.debian.org/Transitions/DpkgToGnuInstallInfo for details.
893   * Fix dpkg's preinst in case /var/lib/dpkg/alternatives contains unexpected
894     sub-directories. Closes: #535138
895     And also when one of the file doesn't contain correct alternatives
896     information (improper number of lines). Closes: #537558
897   * Upgrade Standards-Version to 3.8.2 (no changes).
898   * Update deb-substvars(5) to list fields that do not support substvars.
899     Closes: #535353
900   * Fix dpkg-parsechangelog to include all entries with -v0 parameter.
901     Closes: #537800
902   * Fix update-alternatives to mention the correct slave link that can't
903     be installed due to a conflicting file instead of quoting the master link.
904   * Add support for extra override file in dpkg-scanpackages. Thanks to Robert
905     Millan for the patch. Closes: #537559
906   * Add support for extra override file in dpkg-scansources.
907   * Document format of extra override file in a new manual page
908     deb-extra-override(5).
909   * Update sample in dpkg-gensymbols(1) to give an accurate listing of
910     64 bit arches. Thanks to Julien Cristau for the patch. Closes: #540382
911   * Create /etc/cron.daily/dpkg to handle the backup of
912     /var/lib/dpkg/status in /var/backups. This is taken out of the cron
913     package and need no conflicts/breaks as the code does nothing if
914     the current status file is already backupped. Thanks to Leo 'costela'
915     Antunes <costela@debian.org> for the patch. Closes: #541412
916   * Change behaviour of dpkg --merge-avail to not update a package's
917     information if the version provided is older than the one already listed
918     in the available file. Thanks to Ian Jackson
919     <ian@davenant.greenend.org.uk> for the patch. Closes: #496114
920   * dpkg-architecture can now export DEB_{HOST,BUILD}_ARCH_{BITS,ENDIAN}
921     (pointer size and endianness):
922     - cputable (in dpkg) modified to contain those information
923     - dpkg-dev depends on dpkg (>= 1.15.4) to ensure that we have an updated
924       cputable (and so that a versioned build-dependency on dpkg-dev is enough
925       to use this new feature)
926     Closes: #531307
927   * Split overly long Binary: field values over multiple lines. This is
928     allowed since policy 3.8.3. Closes: #494714
929   * Improve performance of dpkg-shlibdeps by caching minimal version
930     associated to each library in Dpkg::Shlib::SymbolFile. Thanks to
931     Jiří Paleček <jpalecek@web.de> for the patch.
932   * Slightly improve dpkg-source(1) by giving the section name that we're
933     referring to. Closes: #544037
934   * Fix translation error in german manpage of dpkg-buildpackage. Thanks
935     to Joachim Breitner <nomeata@debian.org>. Closes: #541829
937   [ Modestas Vainius ]
938   * Provide a meaningful label for dpkg-gensymbols diff.
940   [ Updated dpkg translations ]
941   * Asturian (Marcos Alvarez Costales). Closes: #535327
942   * French (Christian Perrier).
943   * German (Sven Joachim).
944   * Italian (Milo Casagrande). Closes: #536538
945   * Russian (Yuri Kozlov). Closes: #542254
946   * Slovak (Ivan Masár). Closes: #537742
947   * Swedish (Peter Krefting).
949   [ Updated dselect translations ]
950   * Russian (Yuri Kozlov). Closes: #542254
951   * Slovak (Ivan Masár). Closes: #537741
953   [ Updated man page translations ]
954   * French (Christian Perrier).
955   * German (Helge Kreutzmann), proofread by Jens Seidel.
956   * Swedish (Peter Krefting).
958   [ Updated scripts translations ]
959   * French completed (Christian Perrier).
960   * German (Helge Kreutzmann).
961   * Russian (Yuri Kozlov). Closes: #542254
962   * Swedish (Peter Krefting).
964  -- Guillem Jover <guillem@debian.org>  Sun, 06 Sep 2009 09:37:45 +0200
966 dpkg (1.15.3.1) unstable; urgency=low
968   [ Modestas Vainius ]
969   * Fix wildcard support in symbol files. Closes: #536034
971  -- Guillem Jover <guillem@debian.org>  Wed, 08 Jul 2009 11:26:36 +0200
973 dpkg (1.15.3) unstable; urgency=low
975   [ Guillem Jover ]
976   * Unset TAR_OPTIONS when extracting .deb archives.
977   * Use default compressor values in dpkg-source from Dpkg::Source::Compressor.
978   * Fix dpkg-scanpackages to properly detect spurious overrides.
979   * Rewrite dpkg-name in perl.
980   * Do not close already closed files in some error conditions in libdpkg.
981   * Use the correct units (KiB) in dpkg-split when referring to partsize.
982   * Document in dpkg-statoverride(8) that mode needs to be specified in
983     octal. Closes: #534551
984   * Mark argument names in dpkg-statoverride.1 in italic.
985   * Explicitly pass field argument to Dpkg::ErrorHandling::unknown().
986   * Move unknown() from Dpkg::ErrorHandling to Dpkg::Fields.
988   [ Raphaël Hertzog ]
989   * Unset TAR_OPTIONS when creating/extracting tar archives for source
990     packages. Closes: #530860
991   * Add cleanup of all invalid (master) alternatives in preinst script.
992     Closes: #530633, #531611, #532739, #521760
993   * Let update-alternatives fix a manual alternative with a dangling symlink
994     by switching it to automatic mode. Closes: #529999
995   * Add missing paragraph separator in dpkg-buildpackage(1). Thanks to Per
996     Andersson <avtobiff@gmail.com>. Closes: #532769
997   * Fix english mistake (“as you request” → “as you requested”) in several
998     places. Thanks to David Stansby for the patch. Closes: #533171
999   * Support tags before symbols in symbols file contained in source packages.
1000     The first two tags are "optional" (use it to not fail if the symbol might
1001     disappear from the library without breaking the ABI) and "arch" to
1002     restrict the set of architectures where the symbol is supposed to exist.
1003     Thanks to Modestas Vainius <modestas@vainius.eu> for the patch.
1004     See dpkg-gensymbols(1) for more information. Closes: #521551
1005   * Do not include #MISSING lines in symbols files integrated in binary
1006     packages. Closes: #526251
1007   * Assume an implicit version of "Base" for all unversioned symbols
1008     that are merged into a SymbolFile. Closes: #533181
1009   * Add new tag "ignore-blacklist" to force-include symbols which are
1010     normally blacklisted. This can be useful for libgcc to include symbols
1011     that the toolchain allows to be shared but that are often static (and
1012     hence are blacklisted for this reason). Closes: #533642
1013   * In dpkg-source, explicitly pass --keyring ~/.gnupg/trustedkeys.gpg to
1014     gpgv as it does not use it if other --keyring parameters are given.
1015     Closes: #530769
1016   * In dpkg-vendor, allow to use dashes instead of spaces in vendor
1017     filenames. Closes: #532222
1018   * Skip dpkg-genchanges' warning about lower version numbers for backports
1019     (recognized by ~bpo or ~vola in their version number). Closes: #525115
1020   * Support all checksum algorithms in dpkg-scanpackages/dpkg-scansources.
1021     Closes: #533828
1022   * Fix dependency parsing code in Dpkg::Deps to not accept "foo\nbar"
1023     even if foo is valid. Closes: #534464
1024     Thanks to Andrew Sayers for spotting the problem.
1026   [ Joachim Breitner ]
1027   * Warn about unused substvars in dpkg-gencontrol. Closes: #532760
1029   [ Updated dpkg translations ]
1030   * Catalan (Jordi Mallach). Closes: #532109
1031   * Czech (Miroslav Kure).
1032   * German (Sven Joachim). Closes: #534831
1033   * Simplified Chinese (Deng Xiyue). Closes: #531387
1034   * Swedish (Peter Krefting).
1036   [ Updated dselect translations ]
1037   * Czech (Miroslav Kure).
1039   [ Updated man page translations ]
1040   * German (Helge Kreutzmann).
1041   * Swedish (Peter Krefting).
1043   [ Updated scripts translations ]
1044   * German (Helge Kreutzmann).
1045   * Swedish (Peter Krefting).
1047  -- Guillem Jover <guillem@debian.org>  Sat, 27 Jun 2009 19:06:43 +0200
1049 dpkg (1.15.2) unstable; urgency=low
1051   [ Guillem Jover ]
1052   * Fix FTBFS on GNU/Hurd due to a missmatched define usage in
1053     start-stop-daemon. Closes: #530446
1054   * Remove obsolete priorities support from dselect.
1055     Thanks to Sven Joachim <svenjoac@gmx.de>.
1056   * Fix bashism (“echo -e”) in dselect disk setup method. Closes: #530071
1057   * Properly parse fdisk output in dselect disk setup method.
1058   * Fix memory leaks due to not destroying some pkg iterators.
1060   [ Updated dpkg translations ]
1061   * Asturian (Marcos Alvarez Costales). Closes: #529889
1062   * Basque (Piarres Beobide). Closes: #529857
1063   * French (Christian Perrier).
1064   * German (Sven Joachim).
1066   [ Updated man page translations ]
1067   * German (Helge Kreutzmann).
1069   [ Updated dselect translations ]
1070   * French (Christian Perrier).
1072   [ Updated scripts translations ]
1073   * French (Christian Perrier).
1074   * German (Helge Kreutzmann).
1076  -- Guillem Jover <guillem@debian.org>  Tue, 26 May 2009 01:00:36 +0200
1078 dpkg (1.15.1) unstable; urgency=low
1080   [ Raphaël Hertzog ]
1081   * Fix dpkg-genchanges to not include the additional upstream tarballs
1082     when they are not desired (specific to source packages using format 3.0
1083     quilt).
1084   * Call quilt only once to apply all patches instead of once per patch
1085     when building 3.0 (quilt) source packages. Closes: #518453
1086   * Fix dpkg-shlibdeps so that it works again when analyzing binaries
1087     outside of package's directory. Closes: #518687
1088   * Modify dpkg-shlibdeps to let shlibs.local override symbols files too.
1089   * Drop support of debian/control's “Format” field used by dpkg-source while
1090     it's not too late. Instead debian/source/format should be used to indicate
1091     the desired source package format.
1092   * Update deb-triggers(5) and dpkg-trigger(1) to add a reference to
1093     /usr/share/doc/dpkg/triggers.txt.gz. Closes: #519717
1094   * Avoid perl warnings in dpkg-gencontrol and dpkg-genchanges when the
1095     Architecture field is missing in a binary package. Closes: #510282
1096   * Modify Dpkg::Version::check_version() to not die by default.
1097     Closes: #510615
1098   * dpkg-source now ignores all possible vi swap file extensions (and not
1099     only .swp). The corresponding exclude pattern for -I also got tightened to
1100     only catch filenames starting with a dot. Closes: #515540
1101   * dpkg-gencontrol displays a better error message when an ORed dependency
1102     is used in a union field like Conflicts, Replaces or Breaks.
1103     Closes: #489238
1104   * dpkg-source's signature check is now done with gpgv if possible and
1105     timeouts if not completed within 10 seconds. Closes: #490929
1106     When using gpg, use --no-default-keyring to be consistent with gpgv's
1107     behaviour to not use the user's keyring. Closes: #440841
1108   * Update dpkg-dev dependencies: Closes: #472942
1109     - Move gnupg to Recommends. It's needed to sign .dsc and .changes.
1110     - Add gpgv to Recommends. Useful to check signatures of extracted packages.
1111     - Add debian-maintainers to Suggests. Together with debian-keyring they
1112     contain all the GPG keys required to verify official Debian packages.
1113   * Drop /etc/dpkg/origins as it's taken over by base-files (see #487437).
1114   * Fix dpkg-shlibdeps to properly initialize a symbol-based dependency
1115     even when some symbols are associated with a (fake) version "0". Such a
1116     version means that the symbol has always existed in all versions of the
1117     package.
1118   * When dpkg delegates to dpkg-query or dpkg-deb to do the actual work, add
1119     the "--" marker to explicitly document the end of options so that
1120     arguments starting with a dash are not interpreted as options.
1121     Closes: #293163
1122     Thanks to Bill Allombert for the patch.
1123   * dpkg now correctly refuses empty parameters when an integer value is
1124     wanted. Closes: #386197 Based on a patch by Bill Allombert.
1125   * Fix a mistake in the french translation of dpkg's manual page.
1126     Thanks to Jonathan Gibert. Closes: #522032
1127   * Fix dpkg-source to not die when uncompressor processes are killed by
1128     SIGPIPE due to tar closing the pipe without exhausting all the data
1129     available. Closes: #523329
1130   * dpkg-gencontrol now handles properly (empty) dependencies which contain
1131     only spaces. Closes: #522787
1132   * dpkg-source now accepts additional tarballs (in format "3.0 (quilt)")
1133     with a "component" name containing dashes. Closes: #524376
1134   * Fix dpkg-source to not complain on binary files that are ignored and are
1135     not going to be included in the debian tarball of a "3.0 (quilt)" source
1136     package. Closes: #524375
1137   * Bump Standards-Version to 3.8.1 (no change required).
1138   * Do not store usernames and group names in tarballs created by dpkg-source,
1139     they are anyway ignored at unpack time. Closes: #523184
1140   * Fix update-alternatives to not remove real files installed in place of
1141     an alternative link when the corresponding alternative is fully removed.
1142     Closes: #526538
1143   * Add a new dpkg-vendor tool to query vendor information stored in
1144     /etc/dpkg/origins. It can be used in debian/rules to enable different
1145     behaviour depending on the current vendor at the time of the build.
1146     Closes: #498380
1147     Modify dpkg-buildpackage to not set the DEB_VENDOR environment variable,
1148     packages should use the dpkg-vendor program instead.
1149   * Ensure that the automatic patch created in format "3.0 (quilt)" is always
1150     well registered with quilt even when it's updated by a new call to
1151     dpkg-source. Thanks to Goswin von Brederlow for the initial patch.
1152     Closes: #525858
1153   * Do not update/create debian/patches/.dpkg-source-applied during build,
1154     it's only meant to document what patches have been applied at extraction
1155     time. Closes: #525835
1156   * Let dpkg-buildpackage add the missing execute right on debian/rules if
1157     needed. Display a warning when it happens. Closes: #499088
1158   * Allow to combine -nc and -S in dpkg-buildpackage but display a warning
1159     saying that it's not advised. Closes: #304404
1160   * Let dpkg-buildpackage error out with subprocerr() when dpkg-checkbuilddeps
1161     is interrupted/killed by a signal. Closes: #498734
1162   * Fix dpkg-buildpackage/dpkg-genchanges to properly interpret option -v0.
1163     Closes: #475916
1164   * Improves how dpkg-parsechangelog handles non-existing versions
1165     in its --since, --until, --to, --from options. Approximate the intent
1166     by selectioning the nearest version instead. Closes: #477638
1167   * Update dpkg-parsechangelog's documentation to make it clearer that spaces
1168     are not allowed between single characters options and their values.
1169     Closes: #494883
1170   * Don't let dpkg-scanpackages complain about missing overrides when
1171     no overrides file has been given. Closes: #468106
1172     Thanks to Piotr Engelking for the patch.
1174   [ Guillem Jover ]
1175   * Fix typo in dpkg output (‘unexecpted’ → ‘unexpected’). Closes: #519082
1176     Thanks to Ivan Masár.
1177   * Sync archtable with architectures currently present in Debian sid.
1178     - Remove m68k.
1179     - Add kfreebsd-i386 and kfreebsd-amd64.
1180   * Add avr32 to cputable. Closes: #523456
1181   * Detect the curses headers to use instead of hardcoding them.
1182   * Make dpkg-source do not set arch:any in .dsc on arch-restricted packages.
1183     Thanks to Philipp Kern <pkern@debian.org>. Closes: #526617
1184   * Add '.hgtags' to the default dpkg-source -i regex and -I pattern.
1185     Closes: #525854
1186   * Use backticks instead of non-portable make $(shell) function in automake.
1187   * Do not install dselect and start-stop-daemon man pages when the programs
1188     have been disabled from configure.
1189   * Move Debian specific keyrings to the Debian vendor class and change the
1190     Ubuntu vendor class to inherit from it.
1191   * Do not set the Arch substvar in dpkg-source, avoiding generating warnings
1192     when there's no compiler present. Closes: #526132
1193   * Preserve faulting errno when printing reason in start-stop-daemon fatal
1194     function.
1195   * Only print fatal errno string in start-stop-daemon if it was non-zero.
1196   * Print the valid values for the IO scheduler class in start-stop-daemon
1197     --help output.
1198   * Print a warning when using obsolete '--print-installation-architecture'.
1199     Closes: #528171
1200   * Remove obsolete --largemem and --smallmem dpkg options.
1201   * Remove obsolete --force-auto-select dpkg option.
1202   * Remove obsolete priorities support from dpkg.
1203   * Remove obsolete 822-date program.
1204   * Do not right justify the database reading progress percent counter.
1205   * Remove deprecated status on substvars for dpkg-source dpkg-genchanges,
1206     and stop producing warnings.
1207   * Make deprecated dpkg-scanpackages --udeb option produce a warning.
1208   * Change dpkg-source --help output to state there's no default substvar
1209     file to match reality.
1210   * Warn in start-stop-daemon if the argument to --name is longer than the
1211     supported kernel process name size. Closes: #353015, #519128
1212   * Do not warn in dpkg-deb when parsing unknown fields with the “Private-”
1213     prefix. Based on a patch by Nils Rennebarth. Closes: #353040
1215   [ Frank Lichtenheld ]
1216   * Dpkg::Version: Remove unnecessary function next_elem which just
1217     replicates the standard shift behaviour.
1219   [ Colin Watson ]
1220   * Add "keyrings" vendor hook, used by dpkg-source to allow vendors to
1221     supply additional keyrings against which source package signatures will
1222     be verified. Implement this for Ubuntu. Closes: #525834
1224   [ Updated dselect translations ]
1225   * German (Sven Joachim).
1226   * Swedish (Peter Krefting).
1228   [ Updated scripts translations ]
1229   * French (Christian Perrier).
1230   * German (Helge Kreutzmann).
1231   * Swedish (Peter Krefting).
1233   [ Added dpkg translations ]
1234   * Asturian (Marcos Alvarez Costales). Closes: #519478, #519813, #519998
1235   * Esperanto (Felipe Castro). Closes: #523023
1237   [ Updated dpkg translations ]
1238   * French (Christian Perrier).
1239   * German (Sven Joachim).
1240   * Slovak (Ivan Masár). Closes: #519084
1241   * Swedish (Peter Krefting).
1242   * Russian (Yuri Kozlov). Closes: #526659
1244   [ Updated man page translations ]
1245   * German (Helge Kreutzmann).
1246   * Swedish (Peter Krefting).
1248  -- Guillem Jover <guillem@debian.org>  Thu, 21 May 2009 06:45:45 +0200
1250 dpkg (1.15.0) experimental; urgency=low
1252   [ Guillem Jover ]
1253   * Do not suggest manually changing the alternative symlinks on
1254     update-alternative's verbose mode. Closes: #412487
1255   * Refactor subprocess signal setup.
1256   * Mark and coalesce similar strings for translation.
1257   * Add '.be' to the default dpkg-source -i regex. Closes: #481716
1258     Based on a patch by Ben Finney.
1259   * Fix link order when using libcompat.a and libintl.a by placing them after
1260     libdpkg.a. Based on a patch by Martin Koeppe. Closes: #481805
1261   * Remove duplicate program name from dpkg-trigger badusage output.
1262   * Trim trailing slash and slash dot from 'dpkg -S' arguments when those
1263     are path names, but not on patterns. Closes: #129577
1264   * Fix the support for passing more than one --status-fd option to dpkg.
1265     Until now only the last one was being used.
1266   * Replace realloc plus error checking usage with m_realloc.
1267   * Add '.hgignore' to the default dpkg-source -i regex and -I pattern.
1268     Closes: #485365
1269   * Support diverting files when origin and destination are on different file
1270     systems. Based on a patch by Juergen Kreileder. Closes: #102144, #149961
1271   * Do not silently enable --rename on dpkg-divert --remove. Closes: #160848
1272   * Do not allocate memory when lstat fails during package upgrade.
1273   * Properly lstat the correct file when using --root on package upgrade.
1274     Thanks to Egmont Koblinger. Closes: #281057
1275   * Print a longer string when a disallowed field value is found when parsing.
1276   * Use $(filter ...) instead of $(findstring ...) to extract space separated
1277     options from DEB_BUILD_OPTIONS in debian/rules.
1278   * Do not leave new conffile as .dpkg-new when it has been diverted, also
1279     properly activate the file trigger for the diverted conffile.
1280     Based on a patch by Timothy G Abbott. Closes: #58735, #476899
1281   * Improve comment on BUGS section in dpkg-deb.1 about lack of authentication
1282     and checksum support in .deb files. Closes: #492052
1283   * Use a troff special character for the copyright symbol on man pages.
1284   * Mark program names in dpkg-trigger.1 in bold.
1285   * Unmark dselect debug messages for translation.
1286   * Use a the warning function to uniformly print all warning messages.
1287   * Properly use internerr to report about programming bugs.
1288   * Do not log repeated strings when the write call wrote partial data.
1289   * Change dir to / after chroot when using --instdir.
1290     Thanks to Colin Watson <cjwatson@ubuntu.com>. Closes: #509578
1291   * Make dpkg log files user readable. Closes: #480556
1292   * Clarify in the start-stop-daemon man page that the signal sent by default
1293     is TERM not KILL. Closes: #507568
1294   * Warn in dpkg-deb man page that -x will modify the extraction directory
1295     permissions. Closes: #502496
1296   * Make start-stop-daemon behave the same way whether --chuid gets a user
1297     name or a uid. Closes: #368000
1298   * Add new option --procsched to start-stop-daemon to be able to set the
1299     process scheduling policy and priority. Closes: #175740
1300   * Add initial C unit test suite for libdpkg.
1301   * Sanitize --status-fd output by replacing newlines with spaces.
1302     Closes: #505172
1303   * Remove unneeded cpio dependency from dpkg-dev.
1304   * Add kopensolaris support to ostable and triplettable. Closes: #509312
1305   * Document in deb.5 in detail the currently supported format, ar member
1306     names, types of tar archives and data.tar members.
1307   * Print correct feature name on «dpkg --assert-*» failures.
1308   * Add progress reporting to dpkg while reading the file list database.
1309     Based on a patch by Romain Francoise.
1310   * Add new option --iosched to start-stop-daemon to be able to set the
1311     IO scheduling class and priority. Closes: #443535
1312     Thanks to Chris Coulson <chrisccoulson@googlemail.com>.
1313   * Add tar format detection support to the internal extractor.
1314   * Add support for ustar long names using the prefix field. Closes: #474092
1315   * Code refactoring and cleanup, some of the major changes include:
1316     - Use standard interfaces instead of ad-hoc ones.
1317     - Fix memory leaks.
1318     - Fix compilation warnings.
1319     - Constify string members in structures and arguments in functions.
1320     - Make local functions static.
1321     - Remove unused functions, macros and variables.
1322     - Fix and cleanup libcompat broken replacement implementations.
1323     - Reduction of module interdependencies.
1324     - Rename function and variable names to make them more clear.
1325     - Cleanup and split of header files.
1327   [ Raphaël Hertzog ]
1328   * Enhance dpkg-shlibdeps's error message when a library can't be found to
1329     include the ELF format of the desired library. Closes: #474671
1330   * dpkg-gensymbols now refuses empty values for the the -v -P and -e
1331     parameters.
1332   * Update dpkg(1) to refer to conffile whenever we speak of configuration
1333     file handled by dpkg. Thus harmonize vocabulary with the policy. Thanks
1334     to Helge Kreutzmann <debian@helgefjell.de>. Closes: #381219
1335   * Improve error message stating that dpkg is unable to create a file so that
1336     it also refers to the real filename instead of the non-diverted name only.
1337     Thanks to Daniel Hahler for the patch. Closes: #457135
1338   * dpkg-gencontrol can now again read the control file from its standard
1339     input with "-c-". Closes: #465340
1340   * Add DEB_VENDOR environment variable in the build environment to be able
1341     to change behaviour dynamically depending on the vendor of the current
1342     system (or target system when the user overrides DEB_VENDOR by setting
1343     it himself). Closes: #457371
1344   * dpkg-shlibdeps give less strong warnings for symbols not found in NEEDED
1345     libraries when the shared library is a non-public directory and is likely
1346     to be a plugin. Closes: #481165
1347   * Clarify list of packages displayed by dpkg --get-selections and
1348     dpkg-query -l. Thanks to Jidanni. Closes: #487455
1349   * Document -A option in dpkg-buildpackage(1). Closes: #482834
1350   * Add some warning concerning the available file and the related commands.
1351     They are mostly obsolete for APT users. Closes: #481185
1352   * Add new option --listpackage to dpkg-divert. Thanks to Timothy G Abbott
1353     <tabbott@MIT.EDU> for the patch. Closes: #485012
1354   * Add new option --require-valid-signature to dpkg-source. Closes: #390282
1355   * In dpkg-query(1) document the origin of the various fields and warn that
1356     they are not always available. Closes: #488293
1357   * Improve error message in install-info when the file doesn't exist.
1358     Thanks to Thomas Hood <jdthood@yahoo.co.uk>. Closes: #107098
1359   * Use description of installed package as fallback in dselect.
1360     Based on a patch from Bruce Sass <bmsass@shaw.ca>. Closes: #21659
1361   * Reduce memory usage of dselect by avoiding usage of a big infopad.
1362     Thanks to Michel Lespinasse <walken@zoy.org> for the patch.
1363     Closes: #395140
1364   * Largely improve and update dpkg-buildpackage's manual page.
1365   * Clarify two points in dpkg-source(1). Closes: #490693
1366   * Support RUNPATH exactly like RPATH in dpkg-shlibdeps. Closes: #502258
1367     Thanks to Javier Serrano Polo <jasp00@terra.es>.
1368   * Set Standards-Version to 3.8.0 (no changes needed).
1369   * Drop some unneeded lintian overrides.
1370   * Fix a chmod call in dpkg-source to not fail when POSIXLY_CORRECT is set.
1371     Closes: #506028
1372   * Optimize dpkg-shlibdeps by caching parsed symbols files and
1373     objdump objects. Thanks to Modestas Vainius <modestas@vainius.eu> for the
1374     patch. Closes: #503954
1375   * Add new framework to hook vendor-specific logic (see
1376     module Dpkg::Vendor::Default).
1377   * Add Ubuntu vendor object implementing lookup of launchpad bugs in
1378     changelogs and a safety-check for Maintainer fields of forked packages
1379     (launched during source build). Closes: #426752, #499924
1380   * Improve behaviour of update-alternatives --config. Thanks to
1381     Osamu Aoki <osamu@debian.org> for the initial patch. We can know
1382     select between manual and auto in --config and --all. Closes: #392430
1383   * Fix update-alternatives to not switch to manual mode an alternative
1384     with a broken symlink (instead let the current action fix it).
1385     Also ensure that a message is displayed by default when such a switch is
1386     made. Closes: #141325, #87677
1387   * Fix update-alternatives' logic to rename files. It failed to ignore errors
1388     in some cases where it wanted to when the source file didn't exist.
1389     Closes: #99870
1390     This also makes update-alternatives less noisy when this happens since we
1391     don't call mv when we know that it's going to fail.
1392     Closes: #98822
1393   * Properly remove inappropriate slave links in update-alternatives even when
1394     we switch to manual mode with --set or --config. Closes: #388313
1395   * Modify update-alternatives to always remove the alternative group when the
1396     last alternative is removed (even in manual mode).
1397   * Ensure that update-alternative --install fix the links if the alternative
1398     installed is the one currently selected. Closes: #100135
1399   * Let update-alternatives deal with empty files in its administrative
1400     directory by ignoring them. Closes: #457863
1401   * Add new --target and --as-root options to dpkg-buildpackage to call
1402     any debian/rules target with the proper build environment.
1403     Closes: #477916
1404   * Move update-alternatives, dpkg-divert and dpkg-statoverride to /usr/bin
1405     but keep compatibility symlinks in /usr/sbin for the squeeze release
1406     until all maintainer scripts are fixed (see
1407     http://lintian.debian.org/tags/command-with-path-in-maintainer-script.html).
1408     Closes: #216606
1409   * Use dh_lintian to install lintian overrides. Build-Depends on debhelper
1410     (>= 6.0.7) for this. Update debhelper compatility level to 6 at the same
1411     time.
1412   * Drop cleanup-info script.
1413   * Reset umask to 0022 in dpkg-gencontrol and dpkg-gensymbols to ensure that
1414     files created in the DEBIAN directory have sane permissions.
1415     Closes: #516481
1416   * Rewrite update-alternatives (so that we can understand it again) and
1417     implement new features on top of it:
1418     - the --config output is now sorted. Closes: #437060
1419     - it now logs information to /var/log/dpkg.log. Closes: #445270
1420     - it forbids reusing master alternative as slave and vice-versa.
1421       Closes: #342566
1422     - it forbids reusing alternative links managed by other alternatives
1423     - new sanity checks on --install parameters. Closes: #423176
1424     - install slave link only if the corresponding slave file is available.
1425       Closes: #143701
1426     - new option --get-selections to export the configuration of all
1427       alternatives. It's a simple way to discover the name of all available
1428       alternatives. Closes: #273406, #392429
1429     - new option --set-selections to reconfigure a set of alternatives in
1430       a single command.
1431   * Document in update-alternatives(8) how one can repair all broken
1432     alternatives with a single command. Closes: #250258, #395556
1433   * Modify dpkg-gensymbols to replace #PACKAGE# on the fly while installing
1434     symbols files so that package having libraries whose name varies between
1435     architectures do not need to hardcode the package name. Closes: #517264
1437   [ Pierre Habouzit ]
1438   * Add a --query option to update-alternatives. Closes: #336091, #441904
1440   [ Updated scripts translations ]
1441   * Polish (Wiktor Wandachowicz). Closes: #514106
1443   [ Updated manpages translations ]
1444   * Polish (Wiktor Wandachowicz). Closes: #514106
1446   [ Updated dpkg translations ]
1447   * Portuguese (Miguel Figueiredo).
1448   * Korean (Changwoo Ryu).
1449   * Romanian (Eddy Petri?or)
1450   * Slovak (Ivan Masár). Closes: #514490
1452  -- Guillem Jover <guillem@debian.org>  Mon, 02 Mar 2009 06:13:53 +0200
1454 dpkg (1.14.25) unstable; urgency=low
1456   [ Guillem Jover ]
1457   * Fix typo in package description ('privides' -> 'provides').
1458     Thanks to Pascal De Vuyst <pascal.devuyst@gmail.com>. Closes: #510755
1459   * Do not lose conffiles while replacing them from another package on the
1460     same install run. Closes: #513857
1461     As a side effect this fixes the following symptoms:
1462     - Do not do unneeded conffile prompts when it wasn't locally changed.
1463     - Do not ensure (and thus do not output debug information) that the
1464      .dpkg-new and .dpkg-tmp directories for an existing directory do not
1465       exist. Closes: #80416
1467   [ Raphaël Hertzog ]
1468   * dpkg-deb now always produces GNU tarballs inside .deb and ignores
1469     TAR_OPTIONS. Closes: #513863
1471   [ Updated dpkg translations ]
1472   * Basque (Piarres Beobide). Closes: #506092, #509851
1473   * Simplified Chinese (Deng Xiyue). Closes: #506177
1474   * Traditional Chinese (Tetralet). Closes: #513312
1476   [ Updated dselect translations ]
1477   * Basque (Piarres Beobide). Closes: #509852
1478   * Norwegian Bokmål (Hans F. Nordhaug).
1479   * Portuguese (Miguel Figueiredo). Closes: #509904
1481   [ Updated scripts translations ]
1482   * Add missing space in French translation.
1483     Thanks to Cyril "Oeil de lynx" Brulebois.
1485  -- Guillem Jover <guillem@debian.org>  Tue, 03 Feb 2009 00:00:41 +0200
1487 dpkg (1.14.24) unstable; urgency=low
1489   [ Raphaël Hertzog ]
1490   * Fix parsing of objdump output (by dpkg-shlibdeps) in a special case where
1491     the symbol name is separated only with a single space. Closes: #506139
1492   * Fix dpkg-shlibdeps behaviour when Build-Depends-Package is used in the
1493     symbols file. It was merging all dependency templates into the generated
1494     dependency instead of simply modifying the minimal version. Thanks to
1495     Modestas Vainius <modestas@vainius.eu>. Closes: #507346
1496   * Fix dpkg-source to correctly extract a source package even when called
1497     from a non-writable directory when a target directory has been specified
1498     on the command line. Closes: #507217, #507219
1500   [ Guillem Jover ]
1501   * Do not allow installing packages with non-obsolete conffiles owned by
1502     other packages without a proper Replaces field. Closes: #508392
1504   [ Updated dselect translations ]
1505   * Galician (Marce Villarino). Closes: #509887
1507   [ Updated dpkg translations ]
1508   * Galician (Marce Villarino). Closes: #509150
1509   * Vietnamese (Clytie Siddall). Closes: #509424
1511   [ Updated scripts translations ]
1512   * Improve German translation.
1514  -- Guillem Jover <guillem@debian.org>  Mon, 29 Dec 2008 05:38:31 +0100
1516 dpkg (1.14.23) unstable; urgency=low
1518   [ Raphaël Hertzog ]
1519   * Blacklist "__gnu_local_gp" symbol for dpkg-gensymbols. Closes: #500188
1520     Thanks to Thiemo Seufer <ths@debian.org>.
1521   * Important bugfix in dpkg-gensymbols for people using includes in symbol
1522     files: the current object didn't flow back from the included file to
1523     the including file.
1524   * Fix Dpkg::Version comparison code. Closes: #504135
1526   [ Guillem Jover ]
1527   * Untangle fatal abort condition from the “too many errors” one in the
1528     archives and packages processing loop. Closes: #367226
1529   * Abort on unrecoverable fatal errors instead of continuing execution, as
1530     the recovery code assumed the execution would not be reaching it again
1531     and some times bogus update files were created either with incompletely
1532     written content or with '#padding' lines. Closes: #497041, #499070
1534   [ Updated dpkg translations ]
1535   * Brazilian Portuguese (Felipe Augusto van de Wiel).
1536   * Catalan (Jordi Mallach).
1537   * Czech (Miroslav Kure). Closes: #505910
1538   * French (Christian Perrier)
1539   * German (Sven Joachim).
1540   * Greek (Emmanuel Galatoulas). Closes: #498585
1541   * Japanese (Kenshi Muto).
1542   * Korean (Changwoo Ryu). Closes: #505777
1543   * Norwegian Bokmål (Hans F. Nordhaug).
1544   * Polish (Wiktor Wandachowicz).
1545   * Portuguese (Miguel Figueiredo). Closes: #505869
1546   * Russian (Yuri Kozlov). Closes: #499028, #505735
1547   * Romanian (Eddy Petri?or).
1548   * Slovak (Ivan Masár). Closes: #506024
1549   * Spanish (Javier Fernandez-Sanguino). Closes: #505836
1550   * Swedish (Peter Krefting).
1552   [ Updated scripts translations ]
1553   * Fix typo in Russian. Closes: #499736
1554   * Fix wrong translation in French. Closes: #504123
1555   * French (Christian Perrier).
1557   [ Updated manpages translations ]
1558   * German (Helge Kreutzmann).
1560  -- Guillem Jover <guillem@debian.org>  Tue, 18 Nov 2008 11:50:56 +0200
1562 dpkg (1.14.22) unstable; urgency=low
1564   [ Raphaël Hertzog ]
1565   * The last "small fix" actually broke conversion of source packages to
1566     "3.0 (quilt)" format when they have local changes and no pre-existing
1567     quilt series file. Now always provide a valid name in QUILT_SERIES.
1568     Closes: #496920
1569   * Fix permissions of the automatically generated pacth in "2.0" and "3.0
1570     (quilt)" format. They were improperly set to 0600 due to tempfile()
1571     and were not reset to a sane value. Closes: #496925
1572   * Fix dpkg-gensymbols to not scan (real) directories accessed through a
1573     symlink contained in the build tree as they may well not be part of
1574     the package (with absolute symlinks). It was already skipping symlinks
1575     (since 1.14.16.6) for similar reasons.
1577   [ Updated dpkg translations ]
1578   * Basque (Piarres Beobide). Closes: #496753
1579   * Brazilian Portuguese (Felipe Augusto van de Wiel).
1580   * Galician (Jacobo Tarrio).
1581   * Norwegian Bokmal (Hans Fredrik Nordhaug). Closes: #497309
1582   * Swedish (Daniel Nylander and Peter Krefting).
1583   * Vietnamese (Clytie Siddall). Closes: #497893
1585   [ Updated manpages translations ]
1586   * Swedish (Peter Krefting).
1588   [ Updated scripts translations ]
1589   * Swedish (Peter Krefting).
1591  -- Raphaël Hertzog <hertzog@debian.org>  Fri, 05 Sep 2008 16:54:45 +0200
1593 dpkg (1.14.21) unstable; urgency=low
1595   [ Raphaël Hertzog ]
1596   * Small fix in "3.0 (quilt)" source format when using non-standard name
1597     of the quilt series.
1598   * Handle debian.tar.gz files like diff.gz in dpkg-buildpackage and
1599     dpkg-genchanges to detect the kind of upload.
1600   * Add "armel" to /usr/share/dpkg/archtable. Closes: #487768
1601   * Modified Dpkg::BuildOptions to recognize and use spaces as separator
1602     in DEB_BUILD_OPTIONS (in order to conform with the Debian policy
1603     ruling established in #430649). Closes: #486937
1604   * Fix dpkg-source to not use -i and -I by default with "1.0" source
1605     packages. Closes: #495138
1607   [ Guillem Jover ]
1608   * When loading the status file fix up any inconsistent package in state
1609     triggers-awaited w/o the corresponding package with pending triggers.
1610     Closes: #487637, #486843, #489068
1611   * Fix --no-act in triggers related code. Closes: #495097
1612   * Do not assert when dpkg stops processing packages due to too many
1613     errors occurred while configuring or removing packages.
1614     Thanks to Ian Jackson <ian@davenant.greenend.org.uk>. Closes: #483655
1615   * Move lzma from dpkg Suggests to Pre-Depends. Closes: #456332
1616   * Match description of -si option in dpkg-buildpackage to the one in
1617     dpkg-genchanges. Closes: #493743
1618   * Close --status-fd file descriptors on exec, so that they are not
1619     inherited by the childs. Closes: #471488, #487684
1620   * State that the preferred front-end is aptitude and replace one instance
1621     of dselect usage with apt-get. Closes: #483785
1623   [ Updated manpages translations ]
1624   * French (Florent Usseil).
1625   * German (Helge Kreutzmann).
1627   [ Updated scripts translations ]
1628   * Russian (Yuri Kozlov). Closes: #490076
1629   * German (Helge Kreutzmann).
1631   [ Updated dpkg translations ]
1632   * Basque (Piarres Beobide). Closes: #490905
1633   * Czech (Miroslav Kure).
1634   * French (Christian Perrier).
1635   * German (Sven Joachim).
1636   * Korean (Changwoo Ryu).
1637   * Romanian (Eddy Petri?or).
1638   * Russian (Yuri Kozlov). Closes: #488689
1639   * Simplified Chinese (Deng Xiyue). Closes: #496176
1640   * Slovak (Ivan Masár). Closes: #488903, #495505
1641   * Thai (Theppitak Karoonboonyanan). Closes: #488090
1643   [ Added dpkg translations ]
1644   * Lithuanian (Gintautas Miliauskas). Closes: #493326
1646   [ Updated dselect translations ]
1647   * Romanian (Eddy Petri?or).
1649  -- Guillem Jover <guillem@debian.org>  Tue, 26 Aug 2008 05:32:39 +0300
1651 dpkg (1.14.20) unstable; urgency=low
1653   [ Guillem Jover ]
1654   * Change UTF-8 '©' to '(C)' in deb-version.5 (unfuzzy translations).
1655   * Document --force-breaks in 'dpkg --force-help' output.
1656   * Document triggers --debug values in dpkg.1. Thanks to Sven Joachim.
1657   * Improve package descriptions for dpkg, dpkg-dev and dselect.
1658     Thanks to Justin B Rye for the review and corrections. Closes: #484002
1659   * When dpkg-divert does renames do no check the target file if the source
1660     does not exist and the rename is thus being disabled. This also allows
1661     to remove bogus diversions. Closes: #476973, #469033
1662   * Properly close triggers 'File' file, so it does not get leaked to childs.
1664   [ Raphaël Hertzog ]
1665   * Add missing 'use File::Path' in Dpkg::Source::Package::V3::quilt.
1666   * Use debian/patches/debian-changes-<version> (without the trailing ".diff")
1667     as default name for the automatic patch created by the format "3.0
1668     (quilt)". This ensures a saner cohabitation with patch systems that
1669     apply all of debian/patches/*.{diff,patch}.
1670   * Improve patch parser to accept more patches that are accepted by patch
1671     itself.
1672   * Correctly skip comments in quilt series files (concerns "3.0 (quilt)" source
1673     packages). Closes: #486323
1674   * The automatically created patches (in source package formats "2.0" and
1675     "3.0 (quilt)") will now contain "/dev/null" as previous filename when the
1676     patch creates a new file (instead of putting the same name).
1677   * Set PERL_DL_NONLZY to 1 in perl scripts that are likely to be called in
1678     package's configuration scripts to work around the perl bug #479711.
1680   [ Helge Kreutzmann ]
1681   * Fix a typo in dselect.1.
1683   [ Updated dpkg translations ]
1684   * Basque (Piarres Beobide). Closes: #481043
1685   * Brazilian Portuguese (Felipe Augusto van de Wiel).
1686   * Catalan (Jordi Mallach). Closes: #383448
1687   * Czech (Miroslav Kure).
1688   * French (Christian Perrier).
1689   * Galician (Jacobo Tarrio). Closes: #483441
1690   * German (Sven Joachim).
1691   * Norwegian Bokmal (Hans Fredrik Nordhaug). Closes: #480626
1692   * Polish (Wiktor Wandachowicz).
1693   * Simplified Chinese (Deng Xiyue). Closes: #483143
1694   * Swedish (Peter Karlsson).
1695   * Vietnamese (Clytie Siddall). Closes: #481199
1697   [ Updated manpages translations ]
1698   * German (Helge Kreutzmann).
1699   * Polish (Wiktor Wandachowicz).
1700   * Swedish (Peter Karlsson).
1702   [ Updated scripts translations ]
1703   * French (Christian Perrier).
1704   * German (Helge Kreutzmann).
1705   * Polish (Wiktor Wandachowicz).
1706   * Russian (Yuri Kozlov).
1707   * Swedish (Peter Karlsson).
1709   [ Updated dselect translations ]
1710   * Brazilian Portuguese (Felipe Augusto van de Wiel).
1711   * Polish (Wiktor Wandachowicz).
1713  -- Raphaël Hertzog <hertzog@debian.org>  Wed, 18 Jun 2008 09:33:54 +0200
1715 dpkg (1.14.19) unstable; urgency=low
1717   [ Guillem Jover ]
1718   * Fix a double-free by setting scontext to NULL after calling freecon.
1719     Based on a patch by Russell Coker. Closes: #474339
1720   * Add missing import of internerr in Dpkg::Source::Patch.pm.
1721     Thanks to Marco d'Itri. Closes: #479205
1722   * Consider also custom Package-Type fields when printing warnings in
1723     dpkg-gencontrol. Closes: #452273
1725   [ Raphaël Hertzog ]
1726   * Add missing import of subprocerr in Dpkg::Source::Package. Thanks to Sven
1727     Joachim for the patch.
1728   * Handle symlinks better when deciding if dpkg-source has to copy the
1729     original tarball in the current extraction directory. Closes: #475668
1730   * Fix the dpkg-source error message about unrepresentable changes to
1731     source because the type of a file changed (new and old were inverted).
1732   * Fix dpkg-genchanges to detect udeb based on Package-Type control
1733     header instead of file extension analysis on uploaded files.
1734     Closes: #476113
1735   * Fix dpkg-source to grant correct permissions to tarballs of native
1736     source packages. Closes: #477784
1737   * Add Conflicts: devscripts (<< 2.10.26) to ensure that people are
1738     using versions of debsign/mergechanges that support the Checksums fields
1739     in *.dsc and *.changes.
1740   * Cleanup the various Conflicts/Replaces fields to remove references
1741     to package that have disappeared before sarge (this includes dpkg-doc-ja,
1742     dpkgname, and dpkg-static which has never officially been built).
1743     dpkg-iasearch has been kept as popcon still reports a few installations.
1744   * Collapsed multiple conflicts of dpkg with old versions of dpkg-dev
1745     in a single Conflicts: dpkg-dev (<< 1.14.16).
1746   * The "3.0 (quilt)" source package format now parses correctly series files
1747     with patch options and warn if something else than -p1 is used.
1748   * Change the way dpkg-source finds the perl object to use to unpack/build
1749     a source package to ignore the minor part of the Format: version.
1750     For example "1.0" and "1.1" would both map to Dpkg::Source::Package::V1
1751     instead of ::V1_0 and ::V1_1 before. Similarly "3.0 (quilt)" now maps to
1752     ::V3::quilt instead of ::V3_0::quilt.
1753   * Fix changelog parser to not fail when an unexpected changelog entry
1754     appears without the preceding heading line. Closes: #478925
1755   * Change the "2.0" and "3.0 (quilt)" source packages to refuse by default
1756     binary files in the debian sub-directory. They have to be whitelisted
1757     through debian/source/include-binaries. Closes: #473041
1758   * Make sure triggers are activated when a file is removed in a directory
1759     shared by multiple packages. Closes: #479850
1761   [ Helge Kreutzmann ]
1762   * Minor fixes and clarifications to man pages.
1764   [ Updated dpkg translations ]
1765   * Brazilian Portuguese (Felipe Augusto van de Wiel). Closes: #480579
1766   * Czech (Miroslav Kure).
1767   * French (Florent Ussel).
1768   * Galician (Jacobo Tarrio).
1769   * German (Sven Joachim).
1770   * Polish (Wiktor Wandachowicz).
1771   * Portuguese (Miguel Figueiredo).
1772   * Russian (Yuri Kozlov). Closes: #478827
1773   * Slovak (Ivan Masár). Closes: #478897
1774   * Swedish (Peter Karlsson).
1776   [ Updated manpages translations ]
1777   * German (Helge Kreutzmann).
1778   * Polish (Wiktor Wandachowicz).
1779   * Swedish (Peter Karlsson).
1781   [ Updated scripts translations ]
1782   * German (Helge Kreutzmann).
1783   * Polish (Wiktor Wandachowicz).
1784   * Russian (Yuri Kozlov). Closes: #479142
1785   * Swedish (Peter Karlsson).
1787   [ Updated dselect translations ]
1788   * Brazilian Portuguese (Felipe Augusto van de Wiel).
1789   * Czech (Miroslav Kure).
1790   * French (Christian Perrier).
1791   * German (Sven Joachim).
1792   * Russian (Yuri Kozlov). Closes: #478802
1793   * Slovak (Ivan Masár). Closes: #479007
1795  -- Guillem Jover <guillem@debian.org>  Mon, 12 May 2008 08:33:07 +0300
1797 dpkg (1.14.18) unstable; urgency=low
1799   [ Guillem Jover ]
1800   * Bump po4a version in Build-Depends to 0.33.1-1, as usage of UTF-8
1801     in original man pages was causing build failures. Closes: #473498
1802   * Add triggers documentation to dpkg-dev. Closes: #473449
1803   * Add deb-triggers.5 and dpkg-trigger.1 man pages, and document new
1804     statuses and options in dpkg.1.
1806   [ Raphaël Hertzog ]
1807   * When dpkg-source builds a source package of Format: 2.0 or 3.0 (quilt) it
1808     applies the patches before the build if
1809     debian/patches/.dpkg-source-applied doesn't exist. This file is created
1810     during extraction if patches are applied, and is auto-excluded from the
1811     debian tarball. This enables on-the-fly conversion of source packages from
1812     Format: 1.0 to Format: 3.0 (quilt) without manual intervention of the
1813     user. This feature can be disabled with the option --no-preparation.
1814   * The dpkg-source option --skip-patches disables application of patches
1815     during extraction of source packages using Format: 2.0 or Format: 3.0
1816     (quilt).
1817   * Ensure the Files field is last in *.dsc and *.changes. This is a
1818     work-around for some braindead dsc parsers (dupload and sbuild for
1819     instance, see #473518 and #470440).
1820   * Initialize dependencies for libraries having symbols files with the
1821     smallest minimal version listed in the symbols file instead of using
1822     an unversioned dependency. It's the only way to ensure the library
1823     presence if it wasn't available in all versions of the package that ever
1824     existed. Closes: #474079
1825   * Don't use the -p option of diff for Format: 1.0 source packages.
1826     dpkg-source of sarge doesn't accept data after @@. Closes: #474417
1828   [ Updated dselect translations ]
1829   * German. (Sven Joachim).
1830   * Swedish (Peter Karlsson).
1832   [ Updated dpkg translations ]
1833   * Portuguese (Miguel Figueiredo).
1834   * Simplified Chinese (Deng Xiyue). Closes: #473523
1835   * Swedish (Peter Karlsson).
1836   * Vietnamese (Clytie Siddall). Closes: #473726
1838   [ Updated manpages translations ]
1839   * German (Helge Kreutzmann).
1840   * Swedish (Peter Karlsson).
1842   [ Updated scripts translations ]
1843   * German (Helge Kreutzmann).
1844   * Swedish (Peter Karlsson).
1846  -- Guillem Jover <guillem@debian.org>  Tue, 08 Apr 2008 07:00:10 +0300
1848 dpkg (1.14.17) experimental; urgency=low
1850   [ Guillem Jover ]
1851   * Replace strdup plus error checking usage with a new m_strdup function.
1852     Closes: #379028
1853   * Add new keybinding in dselect to restore all selections back to
1854     whatever's currently installed. Closes: #151540
1855     Thanks to Colin Watson.
1856   * Use system timersub and fix timeval normalization in multiplication in
1857     start-stop-daemon. Thanks to Andreas Påhlsson. Closes: #462225
1858   * Cosmetic fixes to start-stop-daemon output and man page. Document that
1859     --chuid will change the group even if it has not been specified. Add
1860     EXIT STATUS and EXAMPLE sections to man page. Thanks to Justin Pryzby.
1861   * Add Raphaël Hertzog to Uploaders, and remove Brendan O'Dea and
1862     Christian Perrier with their permission.
1863   * Use functions from libcompat when those are not provided by the system.
1864     - Add strnlen to libcompat.
1865     - Link programs against libcompat which provides obstack. Closes: #142042
1866   * Change dpkg-gencontrol to not output the Homapage field on udeb.
1867   * Reintroduce 'no-debsig' back in dpkg.cfg to avoid failing to install any
1868     package when debsig-verify is installed. Closes: #311843
1869   * Fix some small memory leaks. Closes: #469520
1870     Thanks to Sean Finney.
1871   * Correct broken dselect logic for self-conflicting packages.
1872     Thanks to Ian Jackson.
1873   * Implement 'Breaks' properly in dselect. Closes: #448946
1874     Thanks to Ian Jackson.
1875   * Fix erroneous description of Breaks in dselect output.
1876     Thanks to Ian Jackson.
1877   * Allow compilation with --disable-nls on systems without libintl.h where
1878     a non glibc claims to be glibc. Closes: #465420
1879   * Fix crash when a .deb file becomes unreadable while dpkg is starting.
1880     Thanks to Ian Jackson. Closes: #255882
1881   * Few file descriptor cleanup and error handling fixes.
1882     Thanks to Ian Jackson. Closes: #443338
1883   * Move test suite invokation to a new check target in debian/rules.
1884   * Add support for nocheck DEB_BUILD_OPTIONS in debian/rules, so that the
1885     dpkg test suite can be skept if desired.
1886   * Improve log and status-fd output by printing more status change updates
1887     and actions. Thanks to Ian Jackson.
1888   * Implement triggers support. Thanks to Ian Jackson.
1889     Closes: #17243, #68981, #215374, #217622, #248693, #308285
1891   [ Raphaël Hertzog ]
1892   * Add a warning displayed by dpkg-genchanges if the current version is
1893     smaller than the previous one. Closes: #4655
1894   * Add -d and -c options in dpkg-checkbuilddeps to override
1895     build-depends/conflicts. Closes: #114774
1896   * Include list of libraries in dpkg-gensymbols' warning about new/lost
1897     libraries.
1898   * Add -R option to dpkg-buildpackage so that one can replace the usual
1899     "debian/rules" by something else. Closes: #355654
1900   * Always list all binary packages in the Description: field of .changes
1901     files. It's nice for reviewers and mentors.debian.net was using this field
1902     on source only uploads to display short description of what the package is
1903     about.
1904   * Handle the case when the library has a different SONAME than the one used
1905     to find it. Closes: #462413
1906   * Fix Dpkg::Version and Dpkg::Fields::Object to import _g() from
1907     Dpkg::Gettext. Thanks to Adam Heath and Olivier Berger for spotting
1908     this. Closes: #465651
1909   * Change PATH during make check to look into build directories containing
1910     dpkg and the related scripts. Thanks to Mike Frysinger. Closes: #466957
1911   * Some lintian cleanup:
1912     - add overrides for some useless I: tags
1913     - drop unused overrides
1914     - updated several manual pages to fix hyphen-used-as-minus-sign
1915     - fixed manpage-has-errors-from-man in several manual pages
1916     - removed empty debian/dpkg.prerm
1917   * Removed old upgrade code from dpkg's preinst and postinst which only
1918     concerns upgrading from dpkg version older than the one in oldstable
1919     already. And thus we get rid of old the last usage of read in those
1920     scripts (fixes lintian's warning read-in-maintainer-script).
1921   * Removed sorting of dependencies in dpkg-gencontrol and dpkg-source. But
1922     kept it for all other fields (Enhances, Conflicts, Replaces, Breaks,
1923     Build-Conflicts and Build-Conflicts-Indep).
1924   * Instead changed dpkg-shlibdeps to sort the dependencies generated in
1925     ${shlibs:*} variables.
1926   * Changed the logic of simplification of dependencies: if any dependency
1927     must be discarded due to another dependency appearing further
1928     in the field, the superseding dependency will take the place of the
1929     discarded one. Added a test case for this.
1930   * dpkg-shlibdeps properly accounts usage of symbols provided by private
1931     libraries without SONAME. Closes: #469838
1932   * Add a new warning to dpkg-shlibdeps when a library NEEDED is in fact
1933     not used by any of the binaries analyzed. Closes: #472332
1934   * Add a new --warnings=<value> option to select the set of warnings to
1935     activate. By default, do not activate the warning about useless
1936     libraries at the binary level (instead the new warning above is activated
1937     by default: it's less strict and more useful).
1938   * dpkg-source has been heavily refactored to make it easier to support
1939     multiple source package formats. Several new source package formats have
1940     been added:
1941     - the format "2.0" is the original wig&pen
1942     - the format "3.0 (quilt)" is based on 2.0. It uses a tarball for the
1943       debian directory and can thus include binary files. Binaries
1944       outside of the debian directory can be also included if they
1945       are listed in debian/source/include-binaries (and option
1946       --include-binaries will generate this file automatically).
1947       Closes: #4588, #4628
1948     - thus it will also preserve timestamps on Debian-provided
1949       documentation like README.Debian. Closes: #366555
1950     - it handles an explicit series of patches and the patch can thus be
1951       named without constraints. Patches can contain arbitrary
1952       headers/comments between file chunks. Closes: #363018
1953     - it ignores changes on a number of temporary and VCS-specific files
1954       by default. Closes: #203792, #323909
1955     - the patches in debian/patches can remove files. Closes: #12564
1956     - the patches are applied at unpack time. Closes: #463048
1957     - the formats "3.0 (quilt/native)" don't include VCS directories by
1958       default. Closes: #435126
1959     - the format "3.0 (custom)" can be used to create a source package
1960       containing arbitrary files. It's useful for helper tools that can
1961       generate the files by themselves in a more efficient way
1962       (like all the *-buildpackage tools). Closes: #246918
1963     - the formats "3.0 (git/bzr)" are experimental formats based
1964       on corresponding VCS repositories. Thanks to Joey Hess and Colin Watson
1965       respectively.
1966   * dpkg-source has a new --no-check option. It disables GPG check and
1967     checksums checks. Closes: #220758
1968   * dpkg-shlibdeps is now able to look into directories containing libraries
1969     used by cross-built binaries provided that the right environment variable
1970     are set. Closes: #453267
1971   * Change default value of LDFLAGS (set by dpkg-buildpackage) to ''
1972     instead of '-Wl,-Bsymbolic-functions'. It's safer at this point of the
1973     release cycle.
1974   * dpkg-buildpackage will set PKG_CONFIG_LIBDIR (but not override an existing
1975     value) in case of cross-compilation so that pkgconfig finds .pc files
1976     in the directory specific to the target architecture. Closes: #439979
1978   [ Frank Lichtenheld ]
1979   * Add a warning in dpkg-buildpackage if the build-dependencies are not
1980     satisfied during -S. Closes: #445552
1981   * Add a missing space in the German scripts translation. Closes: #463398
1982   * Add improved deb-shlibs.5 manual page by Zack Weinberg. Closes: #466135
1983   * dpkg-buildpackage exports some build related environment variables
1984     now. Based on a patch by Matthias Klose. Closes: #465282
1985     (See dpkg-buildpackage(1) and https://wiki.ubuntu.com/DistCompilerFlags
1986      for details)
1987   * Add support for use of SHA1 and SHA256 checksums in .dsc and
1988     .changes files. Information will be available in Checksums-Sha{1,256}
1989     fields. .changes format version increased to 1.8.
1990   * Link dselect against libncursesw. Closes: #466321
1991   * Forward port a patch from the old changelog parser to the new
1992     one that got lost during the transition. '+' and '.' can now
1993     be used in distribution names yet again. Reported by dann frazier.
1994     Closes: #467470
1996   [ Updated dpkg translations ]
1997   * Korean (Changwoo Ryu).
1998   * Polish (Robert Luberda).
1999   * Romanian (Eddy Petrişor).
2000   * Slovak (Ivan Masár). Closes: #471342
2001   * Swedish (Peter Karlsson).
2002   * Thai (Theppitak Karoonboonyanan). Closes: #468916
2004   [ Updated manpages translations ]
2005   * German (Helge Kreutzmann).
2006   * Polish (Robert Luberda).
2007   * Swedish (Peter Karlsson).
2009   [ Updated dselect translations ]
2010   * Basque. (Piarres beobide). Closes: #462403
2012   [ Updated scripts translations ]
2013   * German (Helge Kreutzmann).
2014   * Polish (Robert Luberda).
2015   * Swedish (Peter Karlsson).
2017   [ Updated dselect translations ]
2018   * Polish (Robert Luberda).
2019   * Romanian (Eddy Petrişor).
2021  -- Guillem Jover <guillem@debian.org>  Sun, 30 Mar 2008 12:48:22 +0300
2023 dpkg (1.14.16.6) unstable; urgency=medium
2025   * Let dpkg-gensymbols skip directories which are just symlinks when scanning
2026     the package build dir.
2027   * Bump urgency to medium to compensate lost days in testing migration due to
2028     the two last uploads.
2030  -- Raphaël Hertzog <hertzog@debian.org>  Sat, 26 Jan 2008 19:20:40 +0100
2032 dpkg (1.14.16.5) unstable; urgency=low
2034   * Fix dpkg-gensymbols handling of #include so that one can include multiple
2035     times the same file and have it properly taken into account.
2036   * Add many armel-specific symbols to dpkg-gensymbols' blacklist.
2037     Closes: #462318
2039  -- Raphaël Hertzog <hertzog@debian.org>  Thu, 24 Jan 2008 14:20:10 +0100
2041 dpkg (1.14.16.4) unstable; urgency=low
2043   * Import capit in Dpkg::Cdata from Dpkg::Fields. Closes: #462172
2045  -- Guillem Jover <guillem@debian.org>  Wed, 23 Jan 2008 08:44:32 +0200
2047 dpkg (1.14.16.3) unstable; urgency=low
2049   [ Raphaël Hertzog ]
2050   * Remove the ":utf8" layer that utf8-encodes already valid utf8.
2051     Closes: #462098
2052   * Disable variable substitution in dpkg-genchanges. Closes: #462079, #462089
2054   [ Guillem Jover ]
2055   * Make start-stop-daemon set the supplementary groups if the real user or
2056     group are different than the ones we should switch to. Closes: #462075
2057   * Fix segfault in start-stop-daemon when using --group w/o --chuid (as
2058     a side effect, using --group alone works for the first time in years).
2059     Closes: #462072
2060   * Fix timeout computations for start-stop-daemon --retry option. This has
2061     not worked properly for a long time (maybe never), but came to light
2062     due to #460903's fix. Closes: #462104
2064  -- Guillem Jover <guillem@debian.org>  Tue, 22 Jan 2008 23:39:59 +0200
2066 dpkg (1.14.16.2) unstable; urgency=low
2068   * Change uid after changing gid and initializing supplementary groups in
2069     start-stop-daemon. Closes: #462018
2070   * Change temporary dpkg Breaks on dpkg-dev (= 1.14.13) and (= 1.14.14)
2071     to Conflicts, so that users from etch can upgrade to sid (or lenny
2072     once dpkg has migrated).
2074  -- Guillem Jover <guillem@debian.org>  Tue, 22 Jan 2008 13:05:22 +0200
2076 dpkg (1.14.16.1) unstable; urgency=low
2078   * Add libtimedate-perl to dpkg-dev's Depends and to Build-Depends.
2079     Reported by Aurelien Jarno. Closes: #461875
2081  -- Frank Lichtenheld <djpig@debian.org>  Mon, 21 Jan 2008 12:48:51 +0100
2083 dpkg (1.14.16) unstable; urgency=low
2085   [ Guillem Jover ]
2086   * Add build-essential as an implicit Build-Depends in dpkg-checkbuilddeps.
2087     Closes: #402901
2088   * Add build-essential to dpkg-dev Recommends.
2089   * Do not warn about unrecognized Homepage field in binary package stanzas
2090     in dpkg-genchanges and dpkg-source. Closes: #460309
2091   * Do not use the enoent helper binary, and use perl POSIX module instead.
2092   * Keep checking for the process when start-stop-daemon is called with
2093     --retry even if the daemon removed the pidfile. Closes: #460903
2094     Thanks to Justin Pryzby for the analysis.
2095   * Make --quiet silence --test in start-stop-daemon. Closes: #367998
2096   * Check current uid and gid in start-stop-daemon before calling setuid,
2097     setgid and initgroups. Closes: #222524
2098     Based on a patch by Samuel Thibault.
2099   * Remove unimplemented --test option from update-alternatives.
2100     Closes: #392432, #461247
2101   * Additionally check if errno is EEXIST after rmdir(2), as SUSv3 specifies
2102     that on non-empty directories it can either return that or ENOTEMPTY.
2103     This fixes run time problems on Solaris.
2104   * Fix start-stop-daemon --help output to state that --name is one of the
2105     possible required options to use. Closes: #354999
2106   * Demote dselect from priority important to optional. Closes: #461327
2107   * Fix portability issues on HP-UX, by not using backticks inside double
2108     quotes in m4 files. Closes: #24514
2109   * Switch Maintainer address to <debian-dpkg@lists.debian.org> from
2110     <team@dpkg.org>.
2111   * Add README.feature-removal-schedule describing the features to be removed
2112     and README.api describing the provided APIs.
2114   [ Frank Lichtenheld ]
2115   * Make the -L option of dpkg-parsechangelog actually work (it's
2116     only been eleven years...)
2117   * Import the code from my external Parse::DebianChangelog as
2118     Dpkg::Changelog and Dpkg::Changelog::Debian. Using this
2119     from parsechangelog/debian adds the following requested
2120     features:
2121      - Option to use a non-lossy format. Closes: #95579
2122      - Various options to better control how many entries
2123        should be displayed. Closes: #226932
2125   [ Raphaël Hertzog ]
2126   * Replaced all the remaining code in controllib.pl by new modules. All
2127     scripts have been adjusted to use the new modules and controllib.pl has
2128     been removed.
2129   * The code to parse debian/control is available in a perl module
2130     Dpkg::Control. Closes: #26554
2131   * Temporarily add a Breaks: dpkg-dev (= 1.14.13), dpkg-dev (= 1.14.14) on
2132     dpkg for the convenience of sid users. Closes: #459815
2133   * Update dpkg-source(1) to explain better what the directory after -b is.
2134     Closes: #323606
2135   * Also force version in ${binary:Version} if dpkg-gencontrol -v<version>
2136     is used. That way we're consistent with the definition of that variable
2137     in deb-substvars(5). Closes: #433477
2138   * Add support of Dm-Upload-Allowed field. Closes: #453400
2139   * Fix dpkg-shlibdeps's filtering of duplicated dependencies in fields of
2140     lesser priority (when -d is used).
2141   * Fix behaviour of dpkg-shlibdeps when the same binary was passed multiple
2142     times for use in different dependency fields (-d option).
2143   * Change logic of -si option of dpkg-genchanges to include the original
2144     tarball only if the current upstream version differs from the upstream
2145     version of the previous changelog entry. Replaces the heuristic based
2146     on revision number (-0, -0.1 or -1). Closes: #28701
2147   * Some code refactoring on dpkg-genchanges and bug fixes in the generation
2148     of the Description: field. As a result, source only uploads will no more
2149     have Description fields.
2150   * Add support of wildcard entries in symbols files. This makes it much
2151     simpler to write symbols files for well managed libraries but in that case
2152     dpkg-gensymbols can't check any more if symbols have disappeared.
2153     Closes: #459359
2155   [ Updated manpages translations ]
2156   * Fix typo in French. Closes: #460021
2157   * German (Helge Kreutzmann).
2159   [ Updated dpkg translations ]
2160   * Basque (Piarres Beobide). Closes: #459565
2161   * French (Christian Perrier).
2162   * German, Basque, Norwegian Bokmål, Swedish, Vietnamese, Simplified Chinese,
2163     Galician unfuzzied.
2164   * Russian (Yuri Kozlov). Closes: #460708
2166   [ Updated scripts translations ]
2167   * Russian (Yuri Kozlov). Closes: #460709
2168   * Swedish (Peter Karlsson).
2170  -- Guillem Jover <guillem@debian.org>  Mon, 21 Jan 2008 10:00:45 +0200
2172 dpkg (1.14.15) unstable; urgency=low
2174   [ Raphaël Hertzog ]
2175   * Make sure {dpkg-dev,dselect}.preinst are included in the source tarball.
2176     Closes: #452730
2177   * Blacklist armel-specific symbols in dpkg-gensymbols. Reported by Riku
2178     Voipio. Closes: #457964
2179   * Fix typos in various manpages. Patch from A. Costa. Closes: #458276
2180   * Make dpkg-shlibdeps choose the right symbols files when we have several
2181     debian/*/DEBIAN/symbols for a given soname. Closes: #458860
2182   * Add a -S<pkgbuilddir> option to dpkg-shlibdeps to indicate a package build
2183     tree to scan first when trying to find a needed library.
2184   * Change dpkg-gensymbols to mark symbols that disappeared with #MISSING
2185     instead of #DEPRECATED, it's clearer for people.
2186   * Fix Dpkg::Shlibs::Objdump to properly take into account R_*_COPY
2187     relocations. Closes: #454036
2188   * Explain better the order in which postinst/prerm scripts are called
2189     between a package and its dependencies. Thanks to Nicolas François and
2190     Helge Kreutzmann for their suggestions. Closes: #379641
2191   * Fix Dpkg::BuildOptions so that dpkg-buildpackage doesn't double all
2192     options in DEB_BUILD_OPTIONS when called with the -j parameter.
2193     Closes: #453656
2195   [ Guillem Jover ]
2196   * Move compression related variables to a new Dpkg::Compression module.
2197   * Remove disabled, obsolete and quite incomplete Hebrew translations.
2198   * Revert dpkg-dev versioned dependency bump on dpkg >= 1.14.13 back to
2199     >= 1.14.6, as the compression variables are now in a module in dpkg-dev.
2200   * Do not disaplay garbage in dselect on monochrome terminals, by setting
2201     a missing ncurses character attribute. Closes: #155741, #157093
2202     Thanks to Sven Rudolph.
2203   * Do not loop endlessly in dselect with very long package descriptions.
2204     Closes: #179320, #342495
2205     Thanks to John Zaitseff.
2206   * Ignore wrapped lines in install-info when matching section titles.
2207     Closes: #214684
2208     Thanks to Andreas Metzler and Ian Zimmerman.
2209   * Do not use strdup for execvp arguments. Closes: #379027
2210   * Do not print 'failed to kill' warning in start-stop-daemon when polling
2211     the pid. Closes: #157305, #352554
2212     Thanks to Samuel Thibault.
2213   * Properly print build message in dpkg-buildpackage for lzma and bzip2
2214     compressed sources. Closes: #458519
2215   * Promote bzip2 Recommends to Depends for dpkg-dev. Closes: #458521
2216   * Add lzma to dpkg-dev Depends.
2217   * Do not automatically enable -j if DEB_BUILD_OPTIONS contains parallel=n,
2218     and allow overriding its value from the environment. Closes: #458589
2219   * Fix Dpkg::BuildOptions to parse all options in DEB_BUILD_OPTIONS, so
2220     that dpkg-buildpackage called with -j preserves unrecognized options.
2221   * Fix several signed vs unsigned value comparisons that were making some
2222     code to never be executed.
2224   [ Updated dpkg translations ]
2225   * French (Christian Perrier).
2226   * German (Sven Joachim). Closes: #459223
2227   * Norwegian Bokmål (Hans Fredrik Nordhaug). Closes: #457918, #458732
2228   * Simplified Chinese (Deng Xiyue). Closes: #459018
2229   * Swedish (Peter Karlsson).
2230   * Vietnamese (Clytie Siddall). Closes: #459016
2232   [ Updated scripts translations ]
2233   * French (Christian Perrier).
2234   * Swedish (Peter Karlsson).
2236   [ Updated man pages translations ]
2237   * Swedish (Peter Karlsson).
2239  -- Guillem Jover <guillem@debian.org>  Mon, 07 Jan 2008 12:12:16 +0200
2241 dpkg (1.14.14) unstable; urgency=low
2243   * Fix override disparity: set priority of dselect to important.
2244   * Add libio-string-perl to Build-Depends as it's needed by a non-regression
2245     test (fix FTBFS, thus a quick upload).
2246   * Make dpkg-dev depend on dpkg (>= 1.14.13) as the latest Dpkg.pm is needed
2247     for dpkg-source.
2249  -- Raphaël Hertzog <hertzog@debian.org>  Thu, 27 Dec 2007 11:20:38 +0100
2251 dpkg (1.14.13) unstable; urgency=low
2253   [ Frank Lichtenheld ]
2254   * Add an own manpage for Dpkg's version format. Mostly stolen
2255     from policy. Closes: #373003
2256   * Fix control file parsing for field values starting with a colon.
2257     Apparently nobody ever needed this until Vcs-Cvs came along.
2258     Closes: #453364
2259   * Copy the usr/share/doc directory to dpkg-dev and dselect (Instead
2260     of using symlinks). The space requirements are minimal and adding
2261     the needed dependencies to comply with policy would be way more
2262     inconvenient. Pointed out by Rene Engelhard. Closes: #452730
2263   * Allow more than one arch and more than one type of a package
2264     in debian/files. Parts of the patch by Goswin von Brederlow
2265     and Bastian Blank. Closes: #356299, #377400, #229143
2266   * Allow building only architecture independent packages (-A).
2267     Closes: #109794, #200454
2268   * Bump Standards-Version to 3.7.3 (no changes)
2270   [ Raphaël Hertzog ]
2271   * When dpkg-shlibdeps finds a lib in a directory which is just a symlink to
2272     another directory that is also considered, remember the other directory
2273     name as the canonical one. Closes: #453885
2274   * dpkg-shlibdeps doesn't warn any more about libm.so.6 being unused if the
2275     binary is also linked against libstdc++ since g++ always add an implicit
2276     -lm. Closes: #454616
2277   * Included files in symbols files (via #include) do no more need to repeat
2278     the header line. Closes: #455260
2279   * Tweak the sort algorithm between dependencies so that intervals
2280     are displayed as "a (>= 1), a (<< 2)" instead of the opposite.
2281     Closes: #455520
2282   * Extend format of symbols files to support arbitrary fields of
2283     meta-information. First field is Build-Depends-Package used to extract the
2284     version requirement possibly encoded in the Build-Depends field and make
2285     sure that the generated dependency is at least as strict as this one.
2286   * Fix dpkg-gensymbols to not update version info of a deprecated symbol.
2287     Closes: #457739
2288   * Fix dpkg-source's behaviour with options -sk -sK -sp -sP. Closes: #457784
2290   [ Guillem Jover ]
2291   * Ignore the man pages when building without NLS support. Closes: #457673
2292   * Fix perl warnings:
2293     - Check for undefined values when reading from the alternative db.
2294   * Properly handle symlinks for alternatives with inexistent slave links.
2295     Closes: #76295, #246906, #433567, #451872, #220044, #392440, #441021
2296     Closes: #443241
2297     Based on a patch by Daniel Leidert <daniel.leidert@wgdd.de>.
2298   * Fail when diverting to a non existent directory. Closes: #245562
2299     Thanks to Flavio Stanchina <flavio@stanchina.net>.
2300   * Refactor update-alternatives.
2302   [ Updated dpkg translations ]
2303   * French (Christian Perrier, as this was trivial).
2304   * Spanish (Javier Fernández-Sanguino Peña). Closes: #456984
2305   * Swedish (Peter Karlsson).
2307   [ Updated man pages translations ]
2308   * German (Helge Kreutzmann).
2309   * Swedish (Peter Karlsson).
2311   [ Updated scripts translations ]
2312   * French (Frédéric Bothamy).
2313   * German (Helge Kreutzmann).
2314   * Japanese (Kenshi Muto). Closes: #455841
2315   * Swedish (Peter Karlsson).
2317  -- Guillem Jover <guillem@debian.org>  Thu, 27 Dec 2007 09:16:45 +0200
2319 dpkg (1.14.12) unstable; urgency=low
2321   [ Raphaël Hertzog ]
2322   * Add -I<file> option to dpkg-gensymbols to force the usage of a specific
2323     symbols file.
2324   * Dpkg::Shlibs::find_library() now returns canonicalized paths.
2325   * dpkg-shlibdeps always tries the realpath() of a lib as fallback when
2326     trying to identify the package of a lib (and not only for symlinks).
2327   * dpkg-shlibdeps doesn't fail any more if it can't find unversioned
2328     libraries on the presumption that they are just private libraries. Outputs
2329     a warning instead.
2330   * Expand the dpkg-shlibdeps manual page with explanations concerning
2331     failures.
2332   * The environment variable DPKG_GENSYMBOLS_CHECK_LEVEL can be used to force
2333     dpkg-gensymbols to use a precise level of checks. Closes: #452022
2335   [ Guillem Jover ]
2336   * Define several private functions and variables as static.
2337   * Move extern declarations to header files and stop defining them as extern.
2338   * Unify parsing of Section and Priority in dpkg-gencontrol with Homepage.
2339   * Switch dpkg-scanpackages to use the new Dpkg::ErrorHandling and
2340     Dpkg::Versions modules.
2342  -- Guillem Jover <guillem@debian.org>  Thu, 29 Nov 2007 06:14:09 +0200
2344 dpkg (1.14.11) unstable; urgency=low
2346   [ Raphaël Hertzog ]
2347   * dpkg-shlibdeps now ignores the lack of dependency information in some
2348     specific cases (instead of failing):
2349     - when the library is in the same package than the binary analyzed
2350     - when the library is not versionned and can't have a shlibs file
2351   * dpkg-shlibdeps now only displays 10 warnings about symbols not found for
2352     each binary and a count of skipped warnings. Closes: #452318
2353   * dpkg-shlibdeps: optimize "dpkg -S" lookups by caching results, patch
2354     from Aaron M. Ucko <ucko@debian.org>. Closes: #452577
2356   [ Guillem Jover ]
2357   * Fix dpkg-scanpackages to properly support an optional override file.
2358     Closes: #452621
2360  -- Guillem Jover <guillem@debian.org>  Sat, 24 Nov 2007 07:19:02 +0200
2362 dpkg (1.14.10) unstable; urgency=low
2364   [ Raphaël Hertzog ]
2365   * dpkg-shlibdeps now correctly identify private libraries (avoid many
2366     warnings with perl/python modules). Closes: #452338
2367   * Move capit() to a Dpkg::Fields module and use it in dpkg-shlibdeps.
2368     Closes: #452262
2369   * Add more debug messages to dpkg-shlibdeps to ease collecting information
2370     in case of problems.
2371   * dpkg-shlibdeps now accepts again empty dependencies in shlibs files.
2372   * dpkg-shlibdeps will try harder to identify packages providing a library
2373     by looking up dpkg -S on the realpath of any symlink to a library.
2374     Closes: #452339
2375   * dpkg-source now correctly identifies the extension of the
2376     orig.tar.{gz,bz2,lzma} file and won't unexpectedly create "Format: 2.0"
2377     .dsc files.
2379   [ Guillem Jover ]
2380   * Add support for Package-Type in dpkg-name.
2381   * Restore cross compilation support by honouring the environment host and
2382     arch variables to override the default values on the dpkg-dev scripts.
2384   [ Updated man pages translations ]
2385   * Swedish (Peter Karlsson)
2387   [ Added scripts translations ]
2388   * Swedish (Peter Karlsson)
2390  -- Guillem Jover <guillem@debian.org>  Fri, 23 Nov 2007 06:32:27 +0200
2392 dpkg (1.14.9) unstable; urgency=low
2394   [ Raphaël Hertzog ]
2395   * Fix bad behaviour of Dpkg::Path::get_pkg_root_dir() and adjust
2396     dpkg-shlibdeps accordingly. Closes: #452012
2397   * Fix Dpkg::Deps to accept empty fields. Closes: #452013
2399   [ Updated man pages translations ]
2400   * German (Helge Kreutzmann).
2402  -- Guillem Jover <guillem@debian.org>  Tue, 20 Nov 2007 07:15:41 +0200
2404 dpkg (1.14.8) unstable; urgency=low
2406   [ Raphaël Hertzog ]
2407   * Heavy rework of dpkg-shlibdeps:
2408     - Support "symbols" files to generate finer-grained dependencies.
2409       Those files can be created by the new dpkg-gensymbols command.
2410       Closes: #430367
2411     - Uses now all paths in RPATH (instead of only the first).
2412       Closes: #395942
2413     - Support parsing include directives in /etc/ld.so.conf. Closes: #431597
2414     - Libraries are also searched in the public directories of packages
2415       being built and thus debian/shlibs.local can effectively define
2416       dependencies for libraries that are being built. Closes: #80340
2417     - "symbols" files use the full SONAME as key instead of splitting it in
2418       (name, version) like in the "shlibs" format. This allows binaries to
2419       be linked with unversioned libraries and not fail. Note that
2420       unversioned libraries are still a very bad idea.  Closes: #48208
2421     - dpkg-shlibdeps now supports '-x<package>' options that can be used to
2422       exclude packages from generated dependencies (use with care though).
2423       Closes: #41907, #109954
2424     - If dpkg-shlibdeps doesn't find any dependency information for a
2425       shared library that is actively used, then it will fail. This can be
2426       disabled with the option '--ignore-missing-info'. Closes: #10807
2427   * Switch perl programs to use the new Dpkg::Deps module. This changes the
2428     behaviour of dpkg-gencontrol and dpkg-source which will rewrite and
2429     simplify dependencies and build dependencies as possible. Multiple
2430     dependencies on the same package are replaced by their intersection.
2431     Closes: #178203, #186809, #222652
2433   [ Frank Lichtenheld ]
2434   * Add $(MAKE) check to build target
2435   * Allow to use other compressions than gzip on dpkg-source -b
2436     (NOTE: this will result in a Format: 2.0 source package!).
2437     Closes: #382673
2438   * Various small fixes to the manpages suggested by Helge Kreutzmann.
2439     Closes: #445858
2440   * Fix Dpkg::BuildOptions (and thereby dpkg-buildpackage) to really
2441     set DEB_BUILD_OPTIONS. Found by Daniel Shepler. Closes: #446119
2442   * Change some ' in shell code in dpkg-source.1 and dpkg-query.1 to
2443     proper \(aq. Reported by Daniel van Eeden. Closes: #447476
2445   [ Guillem Jover ]
2446   * Use shipped perl modules when calling perl programs at build time.
2447   * Switch perl programs to use the new Dpkg::ErrorHandling and Dpkg::Arch
2448     perl modules.
2449   * Add support for format strings in Dpkg::ErrorHandling functions.
2450   * Move build and host arch detection code from dpkg-architecture to
2451     Dpkg::Arch.
2452   * Add initial udeb support:
2453     - Support new fields fields Package-Type, Subarchitecture, Kernel-Version
2454       and Installer-Menu-Item. Closes: #383916
2455     - New '--type' option for dpkg-scanpackages.
2456   * Make dpkg-dev Conflict on dpkg-cross << 2.0.0 which was sourcing
2457     dpkg-buildpackage expecting it to be a shell script. Closes: #445852
2458   * Get rid of undefined macros from man pages. Thanks to Colin Watson
2459     for the analysis.
2461   [ Updated dselect translations ]
2462   * Czech (Miroslav Kure).
2464   [ Added dpkg translations ]
2465   * Thai (Theppitak Karoonboonyanan). Closes: #446501
2467   [ Updated dpkg translations ]
2468   * Czech (Miroslav Kure).
2469   * Galician (Jacobo Tarrio). Closes: #446624
2470   * Polish (Robert Luberda).
2471   * Russian (Yuri Kozlov). Closes: #446278
2473   [ Updated man pages translations ]
2474   * German (Helge Kreutzmann). Closes: #448354
2475   * Polish (Robert Luberda).
2476   * Swedish (Peter Karlsson).
2478   [ Added scripts translations ]
2479   * German (Helge Kreutzmann). Closes: #448353
2481   [ Updated scripts translations ]
2482   * Polish (Robert Luberda).
2483   * Swedish (Peter Karlsson).
2485  -- Guillem Jover <guillem@debian.org>  Mon, 19 Nov 2007 10:36:30 +0200
2487 dpkg (1.14.7) unstable; urgency=low
2489   [ Guillem Jover ]
2490   * Add back $dpkglib into @INC, needed by the controllib.pl require in
2491     822-date. Closes: #440962
2492   * Document in dpkg-scanpackages that apt now requires Packages.bz2 in
2493     preference to Packages.gz. Closes: #440973
2494   * Stop recognizing the obsolete Optional field when building packages.
2495   * Use fakeroot, if present, by default to gain root privileges in
2496     dpkg-buildpackage.
2497   * Fix typos in dpkg-deb.1 and start-stop-daemon.8. Closes: #441051
2498     Thanks to A. Costa.
2499   * After '<prerm> remove' fails and while doing the error unwinding, if
2500     the '<postinst> abort-remove' call succeeds, preserve the old status
2501     instead of unconditionally setting it to 'Installed'. Closes: #432893
2502     Thanks to Brian M. Carlson.
2503   * Add Vcs-Browser and Vcs-Git fields to debian/control.
2504   * Add a Homepage field to debian/control (to be changed later when
2505     there's a more formal site).
2506   * Allow comparing unsupported architectures for equality and identity.
2507     Based on a patch by Frank Lichtenheld. Closes: #427210
2508   * Document Origin and Bugs fields in deb-control.5. Closes: #173463
2509   * Do not replace substvars for build dependencies (it was not supported
2510     anyway).
2512   [ Frank Lichtenheld ]
2513   * Add _MTN to dpkg-source -i default regex. Suggested by Jari Aalto.
2514   * Convert dpkg-buildpackage to a Perl script.
2515     Fix some bugs in the new script detected in experimental:
2516     Closes: #444362
2517   * dpkg-buildpackage accepts a -j<n> option now which will set
2518     MAKEFLAGS(-j<n>) and DEB_BUILD_OPTIONS(parallel=<n>) accordingly.
2519     parallel=<n> in DEB_BUILD_OPTIONS will be passed to MAKEFLAGS as
2520     well. Based on an idea by Robert Millan. Closes: #440636
2521   * Allow dpkg-source -I without a pattern which will load a default
2522     list of pattern similar to -i without regexp. Patch by
2523     Jari Aalto. Closes: #440972
2524   * Rework documentation of dpkg-source's -i and -I options.
2525     Closes: #323911, #440956
2526   * Add --utf8-strings to gpg call in dpkg-buildpackage since
2527     that seems to be the better default. Suggested by Székelyi Szabolcs.
2528     Closes: #379418
2529   * Let dpkg-buildpackage error out early if the version number from
2530     the changelog is not a valid Debian version. Closes: #216075
2531   * Fix dpkg-source to create correct diffs for files with spaces in
2532     their name (apparantly we don't have many of those ;).
2533     Based on a patch by Marcel Toele. Closes: #445380
2535   [ Updated dpkg translations ]
2536   * Basque (Piarres Beobide). Closes: #440859
2537   * Danish (Claus Hindsgaul). Closes: #441106
2538   * French (Frédéric Bothamy).
2539   * German (Sven Joachim). Closes: #440537
2540   * Nepali (Shiva Prasad Pokharel). Closes: #437825
2541   * Portuguese (Miguel Figueiredo). Closes: #441113
2542   * Romanian (Eddy Petrişor).
2543   * Vietnamese (Clytie Siddall). Closes: #440502
2544   * Korean (Sunjae Park). Closes: #443190
2546   [ Updated man pages translations ]
2547   * German (Helge Kreutzmann).
2548   * Swedish (Peter Karlsson).
2549   * Korean (Sunjae Park). Closes: #443191
2551   [ Updated scripts translations ]
2552   * Correct a typo in the French translation. Closes: #443276
2553   * Swedish (Peter Karlsson).
2555  -- Guillem Jover <guillem@debian.org>  Mon, 08 Oct 2007 07:31:34 +0300
2557 dpkg (1.14.6) unstable; urgency=low
2559   [ Frank Lichtenheld ]
2560   * Synchronise usage information of dpkg, dpkg-deb, and
2561     dpkg-query man pages. This fixes some small mistakes
2562     and also Closes: #321520
2564   [ Guillem Jover ]
2565   * Man pages cleanup:
2566     - Some italics and bold fixes.
2567     - Unify ellipsis, argument separator, and remove redundant program name
2568       preceding the options.
2569     - Substitute 'FILES' header with 'SEE ALSO' in dpkg-buildpackage(1),
2570       and remove leftover string from man page split. Closes: #439306
2571     - Split option descriptions so that it gets easier to distinguish.
2572     - Unify author and copyright information formatting.
2573   * Move variables automatically modified at build time for the perl scripts
2574     to a new style perl module (Dpkg) and make all programs use it.
2575   * Switch 'dpkg-gettext.pl' to a new style perl module (Dpkg::Gettext).
2576   * Implement support for Breaks field. Closes: #379140
2577     Thanks to Ian Jackson.
2578   * Run the deconfiguration of each package to be deconfigured once, instead
2579     of once per each conflicting package being removed. Closes: #378003
2580     Thanks to Ian Jackson.
2581   * Do not segfault when the result from a 'dpkg-query -l' is bigger than
2582     the total number of current packages, and do not produce repeated
2583     results with overlapping patterns on 'dpkg-query -W'. Closes: #428427
2584   * Tightening dpkg-dev versioned Depends to dpkg 1.14.6, and dpkg Conflicts
2585     against << dpkg-dev 1.14.6, where the perl modularization started.
2586   * Do not print empty lines after 'Setting up ...' output. Closes: #392317
2587   * When a slave alternative is inapplicable do not attempt to create the
2588     slave link before removing it again. Closes: #411699
2589     Thanks to Ian Jackson.
2590   * Do not consider it a file conflict if the package contains a symlink
2591     to a directory where the existing symlink on-disk points to the
2592     same place. Closes: #377682
2593     Thanks to Ian Jackson.
2594   * Fix perl warnings:
2595     - When removing a non diverted file with dpkg-divert. Closes: #438416
2596   * Implement support for Homepage field. Closes: #142324
2597   * Ignore XB- fields instead of XC- fields from control file binary package
2598     stanzas in dpkg-genchanges.
2599   * Explicitly ignore all known fields from the control file source package
2600     stanza in dpkg-genchanges, instead of leaving unknown fields unwarned.
2601   * Implement support for Vcs-Browser, Vcs-Arch, Vcs-Bzr, Vcs-Cvs, Vcs-Darcs,
2602     Vcs-Git, Vcs-Hg, Vcs-Mtn and Vcs-Svn fields in control file source
2603     package stanza.
2604   * Implement support for Tag field.
2606   [ Updated scripts translations ]
2607   * French (Frédéric Bothamy, Christian Perrier).
2608   * Swedish (Peter Karlsson).
2610   [ Updated dpkg translations ]
2611   * Dzongkha (Tshewang Norbu). Closes: #430931
2612   * Nepali (Shiva Prasad Pokharel). Closes: #435353
2613   * Polish (Robert Luberda).
2614   * Russian (Yuri Kozlov). Closes: #436147
2615   * Swedish (Peter Karlsson).
2617   [ Updated dselect translations ]
2618   * Russian (Yuri Kozlov). Closes: #436149
2619   * Swedish (Peter Karlsson).
2621   [ Updated man pages translations ]
2622   * German (Helge Kreutzmann).
2623   * Polish (Robert Luberda).
2624   * Swedish (Peter Karlsson).
2626  -- Guillem Jover <guillem@debian.org>  Wed, 05 Sep 2007 07:36:02 +0300
2628 dpkg (1.14.5) unstable; urgency=low
2630   [ Guillem Jover ]
2631   * Add lpia support to ostable and triplettable.
2632   * Fix dpkg-source to not emit duplicated entries for the Architecture field
2633     in the .dsc file.
2634   * Fix dpkg-scanpackages to load the override file after having filled the
2635     packages information. Closes: #428169, #428470
2636   * Add '.shelf' to the default dpkg-source -i regex. Closes: #427827
2637     Thanks to Adeodato Simó.
2638   * Support a colon separated list of paths from the ELF RPATH field in
2639     dpkg-shlibdeps. Thanks to Jiří Paleček. Closes: #427988
2640   * Man pages cleanup:
2641     - Reference deb-substvars(5) instead of dpkg-substvars(5). Closes: #429182
2642     - Mark dpkg-* commands in bold.
2643     - Unify title header.
2644     - Remove an additional space in install-info(8) and mark gzip in bold
2645       and remove redundant reference to GNU.
2646     - Fix explanation of dpkg-source '-b' option, remove a reference to
2647       checking for a missing empty string argument, and add a reference
2648       to '-sX' arguments affecting the behaviour. Closes: #428167
2649     - Remove documented dpkg-gencontrol options in dpkg-source left over
2650       from the man pages split.
2652   [ Frank Lichtenheld ]
2653   * Fix typo in German translation of start-stop-daemon(8).
2654     Noted by Joachim Breitner. Closes: #430008
2655   * Correct permission and owner/group handling when extracting
2656     tar balls to match more the user's preferences instead of
2657     ours or the ones from the originator of the tar ball. Patch
2658     by Ian Jackson. Closes: #390915, #207289
2659   * dpkg-source warns now about new empty files since those will
2660     not be represented in the diff. Closes: #383394
2662   [ Updated dselect translations ]
2663   * French (Christian Perrier).
2664   * Romanian (Eddy Petrişor).
2666   [ Updated dpkg translations ]
2667   * Estonian (Ivar Smolin). Closes: #427589
2668   * Portuguese (Miguel Figueiredo).
2669   * Romanian (Eddy Petrişor).
2670   * Spanish (Javier Fernandez-Sanguino). Closes: #429958
2672   [ Updated man pages translations ]
2673   * German (Helge Kreutzmann).
2675  -- Frank Lichtenheld <djpig@debian.org>  Tue, 03 Jul 2007 00:27:07 +0200
2677 dpkg (1.14.4) unstable; urgency=low
2679   [ Guillem Jover ]
2680   * Fix perl warnings:
2681     - When unpacking a source package with -sp from a different directory
2682       than the one containing the tarball. Closes: #424998
2683   * Remove an unused variable in dpkg-statoverride by renaming it to the
2684     initially intended name. Closes: #425041
2685   * Fix loose regex in dpkg-source (/\.debian.tar/ -> /\.debian\.tar/).
2686     Thanks to Kylan Robinson. Closes: #425629
2687   * Revert change on 1.14.0 from Aaron M. Ucko. Trim down duped entries only
2688     when passing them to dpkg-query instead. Closes: #425641
2689   * Recognize again architecture wildcards. Closes: #424670
2691   [ Updated dpkg translations ]
2692   * Basque (Piarres Beobide). Closes: #425776
2693   * French (Frédéric Bothamy).
2694   * Galician (Jacobo Tarrío).
2696  -- Guillem Jover <guillem@debian.org>  Thu, 24 May 2007 19:30:26 +0300
2698 dpkg (1.14.3) unstable; urgency=low
2700   [ Guillem Jover ]
2701   * Fix perl warnings:
2702     - In dpkg-genchanges when called with -S. Closes: #423193
2703     - In architecture comparison operations. Closes: #423452
2704     - Fill slavepaths undefined entries with an empty string to guarantee
2705       they are always defined. Closes: #423140, #423451, #423544, #423555
2706   * Include the new split man pages deb-substvars.5, deb-override.5 and
2707     deb-shlibs.5 in dpkg-dev.
2708   * Fix deb-substvars.5 section to match reality.
2709   * Refactor update-alternatives.
2710   * Fix dpkg-divert to work again w/o specifying the '--divert' and
2711     '--package' or '--local' options. Closes: #423864
2712   * Document in install-info.8 that when no '--section' option is specified,
2713     install-info will try to use the INFO-DIR-SECTION entry from the info
2714     file. Add missing commas. Thanks to Kurt B. Kaiser. Closes: #397737
2715   * Disambiguate in install-info.8 the use of 'Info directory' with
2716     'Info dir file'. Closes: #420766
2717   * Document in deb-control.5 that the control file can have '#'-style
2718     comments. Closes: #406481
2719   * Make start-stop-daemon fork twice while daemonizing.
2721   [ Updated dpkg-dev translations ]
2722   * French (Frédéric Bothamy). Closes: #423392
2724   [ Updated dpkg translations ]
2725   * French (Christian Perrier).
2726   * German (Sven Joachim). Closes: #423401
2728   [ Updated dselect translations ]
2729   * German (Sven Joachim). Closes: #423403
2731  -- Guillem Jover <guillem@debian.org>  Tue, 15 May 2007 16:02:59 +0300
2733 dpkg (1.14.2) unstable; urgency=low
2735   [ Guillem Jover ]
2736   * Remove bashisms in dpkg-buildpackage. Closes: #422239
2737   * Handle case in update-alternatives when there's no existing alternative
2738     to configure. Closes: #260987, #353252, #367717, #392431
2739   * Add solaris support to ostable and triplettable. Closes: #361866
2740   * Properly create the generic name symlink in update-alternatives for new
2741     alternatives. Closes: #422979
2742   * Include translations again, which disappeared due to a dirty source tree
2743     and a bogus Makefile.am for the man pages. Closes: #423029, #423085
2745  -- Guillem Jover <guillem@debian.org>  Wed, 09 May 2007 22:22:45 +0300
2747 dpkg (1.14.1) unstable; urgency=low
2749   [ Guillem Jover ]
2750   * Fix partial upgrades by tightening dpkg-dev versioned Depends to
2751     dpkg 1.14.0, and dpkg Conflicts against << dpkg-dev 1.14.0, where
2752     the triplettable support first appeared. Closes: #422848
2754  -- Guillem Jover <guillem@debian.org>  Tue, 08 May 2007 18:23:49 +0300
2756 dpkg (1.14.0) unstable; urgency=low
2758   [ Guillem Jover ]
2759   * Make the copyright information in dpkg-deb.1 and dpkg-split.1 match the
2760     one in the source. Thanks to Nicolas François. Closes: #379320
2761   * Allow dpkg-buildpackage to properly override '-b' when passed after '-B'.
2762     Thanks to Julian Gilbey. Closes: #397479
2763   * Move retrieval of uid and gid information from controllib.pl into a
2764     function, so that scripts not needing it do not execute that code.
2765     Based on a patch by Riku Voipio. Closes: #396884
2766   * Do not bail out in dpkg when building without start-stop-daemon support,
2767     by checking if the macro value is true instead of it being defined.
2768     Thanks to Mark Rosenstand.
2769   * Make all perl scripts use strict and warnings, to ease catching errors.
2770   * Refactor update-alternatives code, with the side effect that now commands
2771     on non existing link group files will return an error code (except
2772     for --remove, now). Closes: #273407
2773   * Add a missing newline to a warning message in dpkg. Closes: #390914
2774     Thanks to Ian Jackson.
2775   * Fix typo in variable name in dpkg-source which was causing it to not
2776     create directories when extracting the diff. Closes: #374645
2777   * Fix up and down keystrokes in the dselect help message. Closes: #383438
2778     Thanks to Sven Joachim.
2779   * Convert 822-date to be a simple wrapper around 'date -R'. 822-date is
2780     now deprecated and should not be used anymore. It might be removed
2781     sometime in the future. Closes: #31634, #367712, #314462
2782     Thanks to Frank Lichtenheld.
2783   * Add '.gitignore' to the default dpkg-source -i regex. Closes: #409566
2784     Thanks to Julien Cristau.
2785   * Add '.hg' to the default dpkg-source -i regex. Closes: #414794
2786   * Use l10n-friendlier strings to describe dependencies. Closes: #390916
2787     Thanks to Ian Jackson.
2788   * Change priority for dpkg-dev from standard to optional to match the
2789     override.
2790   * Do not use a build-stamp in debian/rules.
2791   * Fix confusing bottom status lines in dselect, unifying them by removing
2792     the method or package name and capitalizing. Closes: #9085
2793   * Check proper error value returned by BZ2_bzerror. Closes: #410605
2794   * Exit with an error instead of an assert if a file name is too long when
2795     building a .deb package. Closes: #393069
2796   * Exit with an error instead of an assert if the number of conflictors is
2797     exceeded. Remove bogus comments. Closes: #377855
2798   * Fix regular expression special-casing Origin, Bugs and Maintainer fields
2799     which was making X[SBC]- fields containing such strings to propagate into
2800     the .deb control file unprocessed. Thanks to Colin Watson.
2801   * Add support for '--admindir' in dpkg-buildpackage, dpkg-checkbuilddeps
2802     and dpkg-shlibdeps. Closes: #162348
2803   * Cleaning and format unification of manual pages.
2804   * Make the override-file argument to dpkg-scanpackages optional.
2805   * Refactor compression filtering code.
2806   * Split override file information from dpkg-scanpackages.1 into
2807     deb-override.5 manual page.
2808   * Split dpkg-source.1 into independent man pages, namely deb-substvars.5,
2809     deb-shlibs.5, dpkg-buildpackage.1, dpkg-distaddfile.1, dpkg-genchanges.1,
2810     dpkg-gencontrol.1, dpkg-parsechangelog.1 and dpkg-shlibdeps.1.
2811   * Support building binary packages with the member data.tar.lzma compressed
2812     with lzma.
2813   * Require gettext 0.16.1.
2814   * Show the epoch (if present) when displaying package versions.
2815     Closes: #107449, #179913, #345594, #393924, #405668
2816     Based on a patch by Jeffrey W. Baker.
2817   * Switch from pseudo-tags to usertags, and update the documentation.
2818   * Fix typo in German dpkg man page. Closes: #416167
2819     Thanks to Martin Weis.
2820   * Properly sort Uploaders field in generated .dsc files.
2821   * Reorder a bit the fields in output files.
2822   * Speed up dpkg-shlibdeps by avoiding doing a dpkg-query for duped
2823     libraries. Thanks to Aaron M. Ucko. Closes: #421290
2824   * Generalize source architecture handling by abstracting it through the new
2825     Debian triplet and the new triplettable.
2826   * Add armel support to ostable and triplettable. Closes: #414087
2828   [ Updated dpkg translations ]
2829   * Dutch (Bart Cornelis).
2830   * French (Frédéric Bothamy).
2831   * Polish (Robert Luberda).
2832   * Romanian (Eddy Petrişor).
2833   * Simplified Chinese (Anthony Wong). Closes: #415320
2834   * Traditional Chinese (Anthony Wong). Closes: #415230
2836   [ Added dpkg translations ]
2837   * Estonian added (Ivar Smolin). Closes: #422404
2838   * Kurdish added (Erdal Ronahi). Closes: #418154
2839   * Marathi added (Priti Patil). Closes: #416810
2841   [ Updated man pages translations ]
2842   * German (German l10n team). Closes: #418528
2843   * Polish (Robert Luberda).
2845   [ Updated dselect translations ]
2846   * Dutch (Bart Cornelis).
2847   * Polish (Robert Luberda).
2849  -- Guillem Jover <guillem@debian.org>  Tue, 08 May 2007 11:11:50 +0300
2851 dpkg (1.13.25) unstable; urgency=low
2853   [ Guillem Jover ]
2854   * Fix year 2018 in changelog for Michael Alan Dorman's upload in 1998,
2855     which was confusing the changelog parsers. Closes: #402526
2856   * Document in its man page that update-alternatives requires cooperation
2857     from all packages dealing with the specific file. Closes: #396338
2858     Thanks to Tomas Pospisek <tpo_deb@sourcepole.ch>.
2859   * Require POSIX inside subprocerr in controllib.pl. Closes: #390636
2860     Thanks to Brendan O'Dea <bod@debian.org>.
2861   * Support extracting lzma compressed source and binary packages,
2862     and add a Suggests on package lzma. Closes: #347715
2863   * Add '/emul/ia32-linux' biarch paths to dpkg-shlibdeps. Closes: #403216
2864   * Remove non-modified /etc/dpkg/dpkg.cfg configuration file when upgrading
2865     from versions 1.9.21 through 1.10.28, to avoid getting prompted about
2866     conffile changes. Closes: #398061
2868   [ Updated dpkg translations ]
2869   * Chinese (Traditional, Asho Yeh).
2870   * Korean (Sunjae Park). Closes: #394135, #404938
2871   * Norwegian Bokmal (Hans Fredrik Nordhaug). Closes: #391143
2872   * Nepali (Shiva Prasad Pokharel).
2873   * Romanian (Eddy Petrişor).
2874   * Catalan (Jordà Polo).
2875   * Swedish (Peter Karlsson).
2876   * Vietnamese (Clytie Siddall). Closes: #399343
2878   [ Added dpkg translations ]
2879   * Punjabi (A S Alam).
2881   [ Updated dpkg-dev translations ]
2882   * Catalan (Jordi Mallach).
2884   [ Updated dselect translations ]
2885   * Korean (Sunjae Park). Closes: #404943
2887  -- Guillem Jover <guillem@debian.org>  Tue,  2 Jan 2007 00:23:57 +0200
2889 dpkg (1.13.24) unstable; urgency=low
2891   [ Guillem Jover ]
2892   * Fix dselect segfault by adding a field description matching the
2893     dependency field enum position. Closes: #392731, #392724
2895   [ Updated dpkg Translations ]
2896   * Nepali (Shiva Prasad Pokharel). Closes: #373728
2898  -- Guillem Jover <guillem@debian.org>  Fri, 13 Oct 2006 16:34:39 +0300
2900 dpkg (1.13.23) unstable; urgency=low
2902   [ Guillem Jover ]
2903   * Add initial support for the Breaks field, by parsing but rejecting it.
2904     Thanks to Ian Jackson <iwj@ubuntu.com>. Closes: #375703
2905   * Use dpkg-architecture from the source tree to get the target Debian
2906     architecture, instead of duplicating the logic in the m4 files.
2907   * Remove comment headers in dselect/helpmsgs.{cc,h} about the files being
2908     autogenerated, replace them with a proper license and copyright comment.
2909     Closes: #382308
2910   * Add a new line at the end of m4/compiler.m4 file, to cope with an
2911     autoreconf failure due to the new m4 1.4.7.
2913   [ Nicolas François ]
2914   * Specify --null before the -T tar's option to avoid the "tar: -: file name
2915     read contains nul character" warning.
2916     Closes: #376351, #375749, #376724, #377279
2918   [ Added dpkg Translations ]
2919   * Dzongkha (Kinley Tshering).
2921   [ Updated dpkg Translations ]
2922   * Basque (Piarres Beobide). Closes: #375118
2923   * Brazilian Portuguese (Andre Luis Lopes).
2924   * Catalan (Robert Millan, Jordi Mallach). Closes: #383448
2925   * Czech (Miroslav Kure).
2926   * Danish (Claus Hindsgaul).
2927   * Dutch (Bart Cornelis).
2928   * Dzongkha (Tenzin Dendup). Closes: #388192
2929   * French (Frédéric Bothamy).
2930   * Galician (Jacobo Tarrio).
2931   * German (Sven Joachim). Closes: #381409, #381740
2932   * Hungarian (SZERVÁC Attila).
2933   * Italian (Stefano Canepa, Davide Viti). Closes: #387821
2934   * Japanese (Kenshi Muto). Closes: #386963
2935   * Khmer (Khoem Sokhem). Closes: #375099
2936   * Portuguese (Miguel Figueiredo, Rui Branco).
2937   * Romanian (Eddy Petrişor).
2938   * Russian (Yuri Kozlov). Closes: #376746, #391143
2939   * Slovak (Peter Mann). Closes: #387282
2940   * Spanish (Javier Fernandez-Sanguino). Closes: #386759
2941   * Swedish (Daniel Nylander). Closes: #383643
2942   * Vietnamese (Clytie Siddall). Closes: #383588
2944   [ Added dpkg-dev Translations ]
2945   * Catalan (Jordi Mallach).
2946   * French (Philippe Batailler).
2948   [ Updated dselect Translations ]
2949   * Brazilian Portuguese (Andre Luis Lopes).
2950   * Catalan (Robert Millan, Jordi Mallach).
2951   * Danish (Claus Hindsgaul).
2952   * German (Sven Joachim). Closes: #384843
2953     (Sven is now the new German translation maintainer for dpkg and dselect).
2954   * Hungarian (SZERVÁC Attila).
2955   * Indonesian (Arief S Fitrianto). Closes: #391144
2956   * Italian (Stefano Canepa).
2957   * Japanese (Kenshi Muto).
2958   * Norwegian Bokmål (Hans Fr. Nordhaug).
2959   * Russian (Yuri Kozlov).
2960   * Slovak (Peter Mann).
2961   * Spanish (Javier Fernández-Sanguino Peña). Closes: #391144
2962   * Swedish (Daniel Nylander).
2963   * Vietnamese (Clytie Siddall).
2965   [ Updated man pages translations ]
2966   * French (Philippe Batailler).
2967   * German (Helge Kreutzmann). Closes: #379030
2969   [ Added man pages translations ]
2970   * German (Helge Kreutzmann).
2971     Closes: #379286, #379298, #379417, #379433, #379661, #379798, #379825
2972     Closes: #379985, #380130, #380239, #380365, #381047, #380660, #380443
2973     Closes: #381349, #381488
2974   * Japanese (KISE Hiroshi).
2975     Closes: #381141, #381865, #384768, #385675, #386965, #388837
2977  -- Guillem Jover <guillem@debian.org>  Thu, 12 Oct 2006 02:56:09 +0300
2979 dpkg (1.13.22) unstable; urgency=low
2981   [ Guillem Jover ]
2982   * Version the po4a Build-Depends to >= 0.23 as we are using options
2983     introduced in that version. Thanks to Sergio Gelato. Closes: #370536
2984   * Add '.bzrtags' directory to default dpkg-source -i regex.
2985     Suggested by Adeodato Simó. Closes: #370392
2986   * Print update-alternatives '--config' listing layout evenly spaced.
2987     Closes: #325895
2988   * Clarify the legend in update-alternatives '--help' (Andrew Ferrier).
2989     Closes: #305318
2990   * Add the source version inside parenthesis to the Source field in the
2991     generated .changes and binary packages if the binary package version
2992     differs (like in binNMUs). Closes: #62529
2993   * Add missing comment serving as documentation about abort-remove on
2994     removal in dpkg.postinst (Justin Pryzby). Closes: #372145
2995   * Fix typo in dpkg-deb manpage (Robert Luberda). Closes: #373999
2996   * Clarify dpkg-architecture new options '-e' and '-i' in man page, add
2997     backward compatibility information and give some examples.
2998     Thanks for the initial suggestions to Junichi Uekawa. Closes: #370830
2999   * Modified some strings to be able to merge them in the .pot files.
3000   * Add new '--umask' option to start-stop-daemon. Closes: #368003
3002   [ Frank Lichtenheld ]
3003   * dpkg-source issued spurious warnings about fields defined with
3004     XB-. They now get correctly suppressed. Closes: #374154
3005   * Give a correct warning when the user requested an unknown
3006     sign command that we will default to a pgp style interface.
3007     Closes: #133470
3009   [ Updated dpkg Translations ]
3010   * Romanian (Eddy Petrişor).
3011   * Galician (Jacobo Tarrio).
3012   * French (Christian Perrier).
3013   * Swedish (Peter Karlsson).
3014   * Basque (Piarres Beobide). Closes: #373107
3015   * Polish (Robert Luberda).
3016   * Catalan (Guillem Jover).
3018   [ New dpkg Translations ]
3019   * Nepali (Paras Pradhan). Closes: #373728
3021   [ Updated dselect Translations ]
3022   * Simplified Chinese (Kov Tchai). Closes: #366260
3024   [ Updated man pages translations ]
3025   * Polish (Robert Luberda).
3027   [ Christian Perrier ]
3028   * Typo fix in update-alternatives ("alternativse"). Thanks to Eddy Petrisor
3029     for spotting it. Translations unfuzzied.
3030   * Make similar messages in dpkg-statoverride and dpkg-divert exactly similar
3031     Thanks to Eddy Petriso for spotting them, again.
3033  -- Guillem Jover <guillem@debian.org>  Wed, 21 Jun 2006 18:03:29 +0300
3035 dpkg (1.13.21) unstable; urgency=low
3037   [ Guillem Jover ]
3038   * Disambiguate error message about conflicting command line actions by
3039     providing both long and short option names. Based on a suggestion by
3040     Josip Rodin. Closes: #45575
3041   * Add '/lib32' and '/usr/lib32' to the dpkg-shlibdeps library path search
3042     list. Closes: #367892
3043   * Revert usage of English perl non-essential module from install-info.
3044     Closes: #369928, #369958, #370157, #370174, #370210
3045   * Print the correct file being parsed by dpkg-parsechangelog's debian
3046     parser. Closes: #368961
3047   * Fix dependency cycle breaking in the case when every link involves
3048     a Provides (Ian Jackson). This is a proper fix for #349442.
3049     Closes: #370017
3051   [ Updated dpkg Translations ]
3052   * Czech (Miroslav Kure).
3053   * Vietnamese (Clytie Siddall).
3055  -- Guillem Jover <guillem@debian.org>  Sun,  4 Jun 2006 19:02:44 +0300
3057 dpkg (1.13.20) unstable; urgency=low
3059   [ Frank Lichtenheld ]
3060   * Add gettext support for the Perl scripts. Based on a patch by
3061     Nicolas François. Closes: #165843
3062   * Only print usage information of dpkg-scanpackages on stdout
3063     if requested explicetly. Use stderr in case of error.
3064     Closes: #366659
3065   * Add remarks to dpkg-scansources and dpkg-scanpackages
3066     man pages about the need to compress the generated files
3067     to be able to access them via apt. Closes: #65839
3068   * Allow '+' and '.' in distribution names in Debian changelogs.
3069     Based on a patch by John Wright.
3070     Closes: #361171
3071   * Use the Debian keyring in dpkg-source when checking signatures
3072     of .dsc files, if available. Closes: #364726
3073   * Let dpkg-buildpackage pass through all remotely sensible
3074     -sX options to dpkg-source (-s[nsAkurKUR] currently).
3075     Closes: #36586
3076   * Improve the description of --showformat in dpkg-deb
3077     man page and add a pointer to the complete description
3078     of the option in dpkg-query.
3079   * Don't spew out garbage from dpkg-deb, if the second argument
3080     to -I is a absolute filename. Based on a patch by Ian Eure.
3081     Closes: #35573
3082   * Fix --ignore-depends argument value parsing. Closes: #169125
3083   * Completely remove md5sum diversion madness.  Instead, we Pre-Depend
3084     on a version of textutils which provides /usr/bin/md5sum.  We rely on
3085     the logic in coreutils to remove our diversions. Patch by
3086     Ian Jackson. Closes: #315784, #313605
3087   * Try harder to detect dependency cycles that contain Provides
3088     links. Closes: #349120, #349442
3089   * Update archtable to reflect current archive: Add amd64 and remove
3090     sh. Closes: #367329
3091   * Don't claim in dpkg man page that we set DPKG_OLD_CONFFILE and
3092     DPKG_NEW_CONFFILE on sub shells since we actually don't.
3093   * Fix printing of user defined fields with --showformat and
3094     document the existance of this feature in dpkg-query man page.
3095   * Make --forget-old-unavail more reliable by deleting architecture
3096     information of removed packages. Patch by Piotr Engelking.
3097     Closes: #208532
3098   * When building packages with dpkg-deb give a more useful error
3099     message in case a conffile entry has leading whitespace. Patch
3100     by David Lopez Moreno. Closes: #281562
3101   * Don't drop directories that contain our conffiles too early from
3102     our file listing. Otherwise we might leave them behind on purge
3103     if we share them with other packages.
3104     Closes: #174180, #198128, #198522, #318825, #366178
3106   [ Nicolas François ]
3107   * Fix typos in the Russian man pages. Thanks to Stepan Golosunov.
3108     Closes: #366587
3109   * Honour tabbing requested via --showformat even if the field to
3110     be printed is empty. Closes: #361671
3111   * Flush the terminal's input before prompting what to do with a
3112     configuration file. Closes: #316551
3113   * Fix the --force-depends-version option. Closes: #57104
3115   [ Guillem Jover ]
3116   * Standarize scripts usage output format and at the same time make
3117     the strings easier for the translators. Add '--help' and '--version'
3118     for most of the scripts. Print the usage and version to stdout.
3119   * Do not strip the epoch from the source:Upstream-Version substvar.
3120     Closes: #366351
3121   * Properly check and report lock file existence in install-info.
3122     Based on patch by Ben Pfaff. Closes: #368874
3123   * Correct default info directory for '--infodir' in intall-info man
3124     page (Ben Pfaff). Closes: #368875
3125   * Print the bogus version and prefix the error message with 'dpkg: '
3126     when using '--compare-versions'. Closes: #369177
3127   * Remove duplicated string " , at changelog " in dpkg-parsechangelog's
3128     debian style parser (Julian Gilbey). Closes: #369205
3129   * Update the Section and Priority fields in the status file from the
3130     new packages. We assume that the information from the binary package
3131     is correct, otherwise it should be fixed there to match the archive
3132     override file (Koblinger Egmont).
3133     Closes: #54529, #58106, #81171, #230610, #237622, #237626
3134   * Bump Standards-Version to 3.7.2 (no changes needed).
3135   * Add lintian overrides for dpkg, dpkg-dev, dselect and sources.
3136   * Replace logrotate installation logic with dh_installlogrotate.
3138   [ Updated dpkg Translations ]
3139   * Portuguese (Miguel Figueiredo).
3140   * Polish (Robert Luberda).
3141   * Hungarian (SZERVÁC Attila).
3142   * Romanian (Eddy Petrişor).
3143   * Russian (Yuri Kozlov). Closes: #366353
3144   * Czech (Miroslav Kure).
3145   * Simplified Chinese (Kov Tchai). Closes: #366985
3146   * Swedish (Peter Karlsson).
3147   * Galician (Jacobo Tarrio).
3148   * Slovak (Peter Mann).
3149   * Dutch (Bart Cornelis).
3150   * Basque (Piarres Beobide). Closes: #366185
3152   [ Updated dselect Translations ]
3153   * Polish (Robert Luberda).
3154   * Basque (Piarres Beobide). Closes: #366187
3155   * Czech (Miroslav Kure).
3156   * Romanian (Eddy Petrişor).
3158   [ Updated man pages translations ]
3159   * Polish (Robert Luberda).
3161  -- Guillem Jover <guillem@debian.org>  Wed, 31 May 2006 07:43:16 +0300
3163 dpkg (1.13.19) unstable; urgency=low
3165   [ Frank Lichtenheld ]
3166   * Add -follow (back) to find call in dpkg-scanpackages.
3167     Closes: #358011
3168   * Fix error in archive.c that lead to a infinite loop when
3169     installing files with long, non-ASCII filenames in
3170     certain locales. Closes: #346436
3172   [ Updated dpkg Translations ]
3173   * French (Christian Perrier).
3174   * Galician (Jacobo Tarrio).
3175   * Romanian (Eddy Petrişor).
3176   * Dutch (Bart Cornelis).
3177   * Swedish (Peter Karlsson).
3178   * Danish (Claus Hindsgaul). Closes: #362317
3179   * Czech (Miroslav kure).
3180   * Vietnamese (Clytie Siddall). Closes: #363264
3181   * Spanish (Javier Fernández-Sanguino Peña). Closes: #357911
3182   * Basque (Piarres Beobide). Closes: #363683, #363679
3183   * Japanese (Kenshi Muto). Closes: #365334
3185   [ Updated dselect Translations ]
3186   * Romanian (Eddy Petrişor).
3187   * Galician (Jacobo Tarrio).
3188   * French (Christian Perrier).
3189   * Dutch (Bart Cornelis).
3191   [ Nicolas Francois ]
3192   * Generate the Russian man pages in the KOI8-R charset. Closes: #361987
3193   * Document the shlibs.local format in dpkg-source(1). Closes: #316485
3194   * Fix a typo in an error message. Thanks to Justin Pryzby. Closes: #364539
3196   [ Guillem Jover ]
3197   * Fix strings so that they can be more easily translated. Closes: #134358
3198   * Add new substvars source:Version, source:Upstream-Version and
3199     binary:Version so packages will be able to avoid breaking on binNMUs.
3200     Based on a patch by Ken Bloom and Jeroen van Wolffelaar. Closes: #358530
3201   * Support binNMU safe packages even when source and binary differ in
3202     version.
3203   * Rename dpkg:UpstreamVersion to dpkg:Upstream-Version. Make dpkg:Version
3204     and dpkg:Upstream-Version get the current dpkg versions instead of the
3205     ones from the package being built.
3206   * Split usage strings to make it easier for translators when those change.
3207     Closes: #323957
3208   * Standarize start-stop-daemon usage output format.
3209   * Make install-info '--dir-file' option compatible with GNU install-info
3210     by renaming the infodir variable to dirfile and not appending the
3211     '/dir' string except when initializing from '--info-dir' or
3212     '--infodir' (Wayne Davison). Closes: #61640, #67237, #286275
3213   * Make install-info add a new line after adding the last entry at the
3214     end of the dir file, which makes the info readers able to see those
3215     last enties (Nicolas François). Closes: #164495
3216   * Use the numerical value of errno instead of a string in install-info
3217     when checking if the locking error was due to an already existing
3218     file, which is locale dependent, and die accordingly. Based on a patch
3219     by Nicolas François. Closes: #199204, #210781
3220   * Escape hyphens in man pages.
3221   * Bump Standards-Version to 3.7.1.
3222   * Wrapped debian/control fields except Uploaders given current policy.
3224  -- Guillem Jover <guillem@debian.org>  Thu,  4 May 2006 14:05:21 +0300
3226 dpkg (1.13.18) unstable; urgency=low
3228   [ Updated dpkg Translations ]
3229   * Romanian (Sorin Batariuc). Closes: #356664
3230   * Danish (Claus Hindsgaul). Closes: #356188
3231   * Polish (Robert Luberda).
3232   * Dutch (Bart Cornelis).
3234   [ Updated dselect Translations ]
3235   * Spanish (Javier Fernández-Sanguino Peña). Closes: #357912
3236   * Danish (Claus Hindsgaul). Closes: #356188
3237   * Polish (Robert Luberda).
3238   * Russian (Yuri Kowlov). Closes: #361415
3240   [ Updated man pages translations ]
3241   * Typos corrected in French dpkg-source man page
3242     Thanks to Nicolas Bonifas who spotted them
3243   * Russian completed. Thanks to Yuri Kozlov.
3244     Closes: #361415
3246   [ Christian Perrier ]
3247   * Correct typos in man pages. Thanks to A. Costa for spotting them
3248     Closes: #358091, #358092, #358093, #358094, #358095
3250   [ Guillem Jover ]
3251   * Add a '[!]' in --force-all help denoting that it is a dangerous option.
3252     Closes: #359935
3253   * Prefix any chroot path to the exec file name when stating it in
3254     start-stop-daemon. Closes: #318771, #333066
3255   * Add '-r' to the help output of start-stop-daemon (Jared Spiegel).
3256     Closes: #354869
3257   * Use mustsetvar when setting the value of the sversion variable in
3258     dpkg-buildpackage (Andrew Suffield). Closes: #158953
3259   * Pass '--admindir' option over to dpkg-query when passing '--admindir' or
3260     '--root' to dpkg (initial patch by Branden Robinson).
3261     Closes: #153305, #271041, #282853, #307715, #355915
3262   * Support system library directories in dpkg-shlibdeps symlinked from
3263     '/lib/ldconfig'. Closes: #356452
3264   * Document that 'dpkg --get-selections' and 'dpkg-query -l' without a
3265     pattern will not list packages in state purge. Closes: #355633
3266   * Obsolete force/refuse 'auto-select' dpkg option.
3267   * Add new '--clear-selections' option to dpkg (Andrew Suffield).
3268     Closes: #112388
3269   * Use '--clear-selections' in the dpkg man page example on how to transfer
3270     the status to another installation. Closes: #137442
3272  -- Guillem Jover <guillem@debian.org>  Mon, 10 Apr 2006 06:40:22 +0300
3274 dpkg (1.13.17) unstable; urgency=low
3276   [ Frank Lichtenheld ]
3277   * Fix handling of -DArchitecure=foo in dpkg-gencontrol. Closes: #251911
3278   * Handle architectures in all dependency fields in debian/control,
3279     even those of binary packages. Closes: #252657, #324741, #347819
3280   * More dpkg-scanpackages fixes (--arch option handling). Closes: #353506
3282   [ Guillem Jover ]
3283   * Add missing parentheses surrounding a man page section reference
3284     in the dpkg-source man page (Matt Kraai). Closes: #353731
3285   * Fix misspelling of "occurred" as "occoured" in dpkg-gencontrol and
3286     dpkg-source (Matt Kraai). Closes: #353949
3287   * Major cleanup of manpages, by using properly the bold and italic
3288     attributes and other embellishments.
3289   * Add dpkg-query(1) in the SEE ALSO section in dpkg(1). Closes: #354643
3290   * Don't try to compile in SELinux support on GNU/kFreeBSD amd64.
3291   * Add new quiet option to dpkg-source to supress warnings. Closes: #355065
3292   * Do not expand architecture aliases anymore in .dsc files.
3293   * Change start-stop-daemon's --exec behaviour again on GNU/Linux to compare
3294     the referred file pointed by the '/proc/<pid>/exe' symlink, stripping
3295     any ' (deleted)' string and stating the result. Closes: #354867
3297   [ Updated man pages translations ]
3298   * Polish (Robert Luberda). Closes: #353782
3299   * French (Philippe Batailler).
3301   [ Updated dselect Translations ]
3302   * Hungarian (Szervác Attila).
3303   * Dutch (Bart Cornelis).
3304   * Czech (Miroslav Kure).
3306   [ Updated dpkg Translations ]
3307   * Italian (Lele Gaifax)
3308   * Simplified Chinese (Carlos Z.F. Liu).
3309   * Portuguese (Miguel Figueiredo).
3310   * Dutch (Bart Cornelis).
3311   * Hungarian (Szervác Attila).
3312   * Czech (Miroslav Kure).
3313   * Russian (Yuri Kozlov). Closes: #357724
3315  -- Guillem Jover <guillem@debian.org>  Mon, 20 Mar 2006 03:33:03 +0200
3317 dpkg (1.13.16) unstable; urgency=low
3319   * The "not really a brown paper bag needed but it's close" release
3321   [ Guillem Jover ]
3322   * Move auxiliary autotools scripts to config/.
3323   * Require gettext 0.14.5.
3324   * Move the methods directory to dselect/methods, so the contents will not
3325     be installed if dselect is not to be built.
3326   * Move dselect gettext strings to its own domain provided now by the
3327     dselect package.
3329   [ Frank Lichtenheld ]
3330   * Fix override handling in dpkg-scanpackages which was broken in
3331     1.13.14 and .15. Closes: #353305
3332   * Make -isp the default behaviour of dpkg-gencontrol as it is
3333     always used anyway these days. Suggested by Matthew Vernon.
3334     Closes: #215233
3335   * Typo fixes in man pages by A. Costa:
3336     - dpkg-deb.1 Closes: #353424
3337     - dpkg-statoverride.8 Closes: #353425
3338     - install-info.8 Closes: #353426
3339     - start-stop-daemon.8 Closes: #353427
3340     - update-alternatives.8 Closes: #353428
3341     - dpkg.1, dpkg.cfg.5 Closes: #353429
3343  -- Frank Lichtenheld <djpig@debian.org>  Sat, 18 Feb 2006 17:59:00 +0100
3345 dpkg (1.13.15) unstable; urgency=low
3347   [ Guillem Jover ]
3348   * Add a missing closing parenthesis in a dpkg string (Jordi Mallach).
3350   [ Christian Perrier ]
3351   * Updated Translations:
3352     - Brazilian Portuguese (Andre Luis Lopes). Closes: #352432
3353     - Galician (Jacobo Tarrio). Closes: #352443
3355   [ Updated Translations ]
3356   * Catalan (Jordi Mallach).
3357   * Portuguese (Miguel Figueiredo).
3358   * Swedish (Daniel Nylander).
3360   [ New Translations ]
3361   * Hungarian (Szervác Attila).
3363   [ New Manpage Translations ]
3364   * Hungarian (Szervác Attila): dpkg.cfg.5 and dselect.cfg.5.
3366  -- Frank Lichtenheld <djpig@debian.org>  Wed, 15 Feb 2006 23:37:40 +0100
3368 dpkg (1.13.14) experimental; urgency=low
3370   [ Guillem Jover ]
3371   * Make start-stop-daemon print the proper version instead of 'VERSION'.
3372   * Set the HOME environment variable when using the --chuid switch in
3373     start-stop-daemon. Closes: #295169, #267784
3374   * Cleanup and unify program usage and version output, make it more i18n
3375     friendly. Fix wrong gettext usage with interparsed macros.
3376     Thanks to Changwoo Ryu for noticing. Closes: #237915
3377   * Mark some strings as translatable (Changwoo Ryu). Closes: #256387
3378   * Remove a trailing 'C' character from update-alternatives manpage.
3379   * Use pkg-config to get the proper flags to link against libselinux.
3380     Add a Build-Dependency on pkg-config, thighten libselinux1-dev to
3381     at least version 1.28-4 which provides a .pc file, and remove
3382     libsepol1-dev as libselinux1-dev is Depending on it.
3383   * Add command descriptions in the synopis, and add a usage example for
3384     -f in the dpkg-query manpage. Thanks for the initial patch to
3385     Philippe Batailler. Closes: #352091
3386   * Document about the default log file, the behaviour in case of multple
3387     --log options and add a reference to dpkg.cfg manpage in the dpkg manpage.
3388     Thanks to James R. Van Zandt. Closes: #350440
3389   * Escape ` and ' in manpages otherwise they are converted to quotation
3390     marks, which makes cut and paste not work. Thanks to Denis Barbier.
3391     Closes: #349925
3393   [ Frank Lichtenheld ]
3394   * Let dpkg-source ignore comments in the hunk header as used by
3395     diff -p (Anand Kumria). Closes: #344880
3396   * Let dpkg-buildpackage create a .changes file even if signing the
3397     .dsc file failed. This makes it easier to just sign the package
3398     later (Julian Gilbey). Closes: #217963
3399   * Change heuristics of dpkg-buildpackage's gpg check to allow for
3400     more complex setups (Julian Gilbey). Closes: #163061
3401   * Add files and dirs used by bzr to default dpkg-source -i regex
3402     (maximilian attems). Closes: #345164
3403   * Add .git directory to default dpkg-source -i regex.
3404     Suggested by Hans Ulrich Niedermann. Closes: #351885
3405   * dpkg-scanpackages can now output Packages files with multiple
3406     versions of a single package (Don Armstrong). Closes: #229589.
3407   * dpkg-scanpackages outputs help when given the --help or -h option
3408     (Don Armstrong). Closes: #319541
3409   * Document dpkg-scanpackage -m in man page.
3410   * Let warn dpkg-source if more than one -sX option was given and
3411     document the behaviour in this case in the man page.
3412     Closes: #246637
3413   * Make dpkg-source -b more robust regarding to existing symlinks
3414     by creating new files in a secure manner. Closes: #178839, #338591
3415   * Fix some semantic errors in dpkg-shlibdeps due to typos in used
3416     variables.
3417   * On package configuration, differentiate between modified and
3418     deleted configuration files (Ian Jackson). Closes: #351361
3419   * Improve processing of disappearing conffiles (Ian Jackson).
3420     This is part of the fix for #108587.
3421   * Let dpkg-source -x touch all patched files to have the same
3422     timestamp to mitigate time-skew problems (Denis Barbier).
3423     Closes: #105750
3424   * Strip any newlines from Uploaders field on dpkg-source -b.
3425     Closes: #254449
3427   [ Christian Perrier ]
3428   * Switch to po4a for manpages translation. Closes: #320122
3429     This adds a Build-Depends on po4a.
3430   * Add Vietnamese to po/LINGUAS as it was previously missing.
3431   * Updated Translations:
3432     - Catalan (Jordi Mallach). Closes: #351587
3433     - French (Christian Perrier): 1011t.
3434     - Galician (Jacobo Tarrio): 1002t. Closes: #351795
3435     - Basque (Piarres Beobide): 1002t. Closes: #351845
3436     - Slovak (Peter Mann): 1002t. Closes: #352087, #352311
3437     - Vietnamese (Clytie Siddal): 1011t. Closes: #352307
3439  -- Frank Lichtenheld <djpig@debian.org>  Sun, 12 Feb 2006 02:32:12 +0100
3441 dpkg (1.13.13) unstable; urgency=low
3443   [ Frank Lichtenheld ]
3444   * dpkg and dselect are now in section admin, not section base.
3445     Correct info in the control file.
3446   * Bump Standards-Version to 3.6.2 (no changes).
3447   * Fix typo in dpkg-architecture man page. Closes: #334330
3448   * Honor LD_LIBRARY_PATH in dpkg-shlibdeps. Fixes a regression
3449     from 1.13.11 to .12.
3450   * Don't recurse into package directories to search for local
3451     shlibs files since it is obviously a waste of time. Based
3452     on a suggestion by Steve Langasek. Closes: #338725
3454   [ Christian Perrier ]
3455   * Updated Translations:
3456     - Dutch (Bart Cornelis). Fix error mentioned in #323908 by
3457       Stephan Kramer.
3458     - Japanese (Kenshi Muto). Closes: #349808
3460   [ Guillem Jover ]
3461   * Fix typo in dpkg-statoverride manpage. Closes: #348113
3462     Thanks to Marc Haber <mh+debian-packages@zugschlus.de>.
3463   * Document the --no-debsig option in dpkg manpage. Closes: #316367
3464     Thanks to Bastian Kleineidam <calvin@debian.org>.
3465   * Fix typos in dselect manpage. Closes: #310358
3466     Thanks to A Costa <agcosta@gis.net>.
3467   * Fix typo in start-stop-daemon's help output. Closes: #333673
3468     Thanks to Christoph Maser <cm@financial.com>.
3469   * Document the correct format string for dpkg-query --showformat option.
3470     Update -l example and lower case the program name in the title header.
3471     Thanks to Zefram <zefram@fysh.org>. Closes: #174976
3472   * Make dpkg-architecture not print the warning about a missmatch between
3473     gcc target machine type and GNU target system type if the actions are
3474     '-e' or '-i'.
3476  -- Frank Lichtenheld <djpig@debian.org>  Sat, 28 Jan 2006 13:04:16 +0100
3478 dpkg (1.13.12) experimental; urgency=low
3480   * Due to the changes in dpkg-shlibdeps it is not recommended
3481     to use this version for building packages intended to be
3482     uploaded into an official archive, yet.
3484   [ Frank Lichtenheld ]
3485   * Update AUTHORS and debian/copyright for new maintainer team.
3487   * Don't use the ldd output in dpkg-shlibdeps. Search for the
3488     matching libraries ourself. This fixes problems with both
3489     symlinked directories, Closes: #103024, #145714, #164020, #285857
3490     and biarch builds. Closes: #317082
3491   * Let dpkg-gencontrol bail out with an error if parsedep
3492     found an error while parsing a dependency field. Closes: #228125
3493   * dpkg-source -x now tries to chown all files extracted from
3494     tar files. The temporary directory is now created with mode
3495     0700, too. Together this should make it safer to run
3496     dpkg-source -x as root. Based on suggestions by Marcus
3497     Brinkmann and Colin Watson. Closes: #144571, #238460
3498   * Let dpkg-source -b check the build relation fields before
3499     putting them into the .dsc. As a side effect they also
3500     get normalized. Closes: #254449
3501   * Check the gpg signatures of .dsc files before unpacking. See
3502     the upstream changelog for a full description of the semantics.
3503     Based on a patch by Matt Zimmerman. Closes: #48711
3504   * Let dpkg-source ensure (as good as possible) that all
3505     build source packages can also be unpacked.
3506     Closes: #6820, #7014
3507     Also fixed handling of md5sum -b output in dpkg-source on
3508     the way. Based on a patch by Ingo Saitz. Closes: #316123
3509   * Check for illegal architecture strings in dpkg-gencontrol and
3510     dpkg-source. dpkg-gencontrol will only issue a warning while
3511     dpkg-source will error out. Closes: #96920
3512   * Add support "package types" to dpkg-shlibdeps. Patch by Joey Hess.
3513     Closes: #335056, #345475
3514   * Fix man page references to dpkg and dselect man pages. Many
3515     of them still had a wrong section.
3516     Closes: #332826
3517   * Let dpkg-source -b warn about special permissions of files added
3518     in the diff since these will get lost. Closes: #306125
3519   * dpkg-source -x didn't work in case the upstream version or
3520     the Debian version ended with ~. Fixed.
3522   [ Christian Perrier ]
3523   * Updated Translations:
3524     - French (Christian Perrier).
3525     - Polish (Bartosz Fenski). Closes: #314237
3526     - Norwegian Bokmal (Hans F. Nordhaug). Closes: #315548, #315990
3527     - Czech (Miroslav Kure). Closes: #323775, #345347
3528     - Russian (Yuri Kozlov). Closes: #323821, #335170
3529     - Japanese (Kenshi Muto). Closes: #323938
3530     - Brazilian Portuguese (Andre Luis Lopes). Closes: #325224, #332872
3531     - Russian (Yuri Kozlov). Closes: #335170, #349151
3532     - Swedish (Peter karlsson). Closes: #325990, #344058, #337164, #334063
3533     - Norwegian Nynorsk (Håvard Korsvoll). Closes: #315987
3534     - Portuguese (Miguel Figueiredo).
3535       Closes: #315461, #323674, #323642, #330021
3536     - Spanish (Javier Fernández-Sanguino Peña). Closes: #323662, #315253
3537     - Danish (Claus Hindsgaul). Closes: #348575, #323779, #337948, #325687
3538     - Dutch (Bart Cornelis). Closes: #323908
3539     - German (Michael Piefel). Closes: #323964
3540     - Italian (Stefano Canepa). Closes: #324114, #344671, #347225
3541     - Catalan (Jordi Mallach). Closes: #324456
3542     - Basque (Piarres Beobide). Closes: #342089, #332698
3543     - Tagalog (Eric Pareja). Closes: #337307
3544     - Simplified Chinese (Tchaikov). Closes: #338268
3545     - Galician (Jacobo Tarrío). Closes: #338904
3546     - Romanian (Eddy Petrişor). Closes: #340674
3547     - Vietnamese (Phan Vinh Thinh, Clytie Siddall).
3548     - Indonesian (Parlin Imanuel). Closes: #344513
3549     - Greek (Galaxico). Closes: #344646
3550     - Czech (Miroslav Kure). Closes: #345347
3551   * Fixed broken translation:
3552     - Brazilian Portuguese (James Troup). Closes: #332872
3553   * Fix Russian man page for start-stop-deamon(8)
3554     Closes: #325804
3555   * Fix German man page for update-alternatives(8)
3556     Closes: #329908
3557   * Fix typo in dpkg online help message. Unfuzzy translations
3558     Closes: #349299
3560   [ Guillem Jover ]
3561   * Add armeb to cputable. Closes: #331232
3562     Thanks to Lennert Buytenhek <buytenh+debian@wantstofly.org>.
3563   * Don't try to compile in SELinux support on GNU/kFreeBSD.  Closes: #313300
3564     Thanks to Aurelien Jarno <aurel32@debian.org>.
3565   * When linking statically, explicitly add libsepol, even if its only a
3566     transitive library. The proper fix should come with a pkg-config file.
3567     Based on a patch by Bart Martens <bart.martens@advalvas.be>.
3568     Closes: #347744, #348659
3569   * Add support for architecture wildcards, but for now they will only be
3570     exposed in debian/control files, not in binary nor source packages.
3571     Closes: #291939
3572   * Change start-stop-daemon's --exec option behaviour on GNU/Linux to
3573     compare the filename pointed by '/proc/<pid>/exe' instead of the inode
3574     and device numbers. Thanks to Vasilis Vasaitis <v.vasaitis@sms.ed.ac.uk>.
3575     Closes: #337942
3577  -- Frank Lichtenheld <djpig@debian.org>  Tue, 24 Jan 2006 11:15:36 +0100
3579 dpkg (1.13.11.1) unstable; urgency=low
3581   * Change maintainers to new team.
3583  -- Scott James Remnant <scott@netsplit.com>  Thu, 12 Jan 2006 07:56:49 +0000
3585 dpkg (1.13.11) unstable; urgency=low
3586   
3587   The "Good, clean fun" Release.
3589   * Fixed the always broken error handling so that only the intended
3590     cleanup handlers are run, rather than ones that we didn't expect.
3591     This corrects the bug when a package's postrm fails and the package is
3592     left in an installed state with no files; the package will now be left
3593     in a half-installed state, as originally intended.  Found by Marga
3594     Manterola while documenting the maintainer scripts.  Closes: #296026.
3595   * Fixed removal of files involved in diversions during upgrade, caused by
3596     checking whether the "directory" was in use by another package without
3597     actually checking whether or not it was a directory.  Closes: #310390.
3598   * Fixed package saving to not disappear packages who divert anything from
3599     the installing package out of the way.  Closes: #113626.
3600   * Improved clean-up of unpack failure during install or upgrade, to leave
3601     the system in exactly the same state as it started in.
3602     Closes: #47404, #82407, #121173, #170869, #201848, #236733, #268639.
3603   * Fixed crash when unpacking a package which has an unversioned Replaces
3604     declared on it by another package previously unpacked in the same run
3605     (Colin Watson).  Closes: #322595.
3607   * New install unwinding fixed to ensure we don't leave a version in the
3608     status db for a not-installed package.
3609   * Corrected error call when encountering a corrupted filesystem tarfile
3610     to not print "Success".  Closes: #95570.
3611   * Fixed castration of potentially unsafe devices to not follow symlinks.
3612     Closes: #169928.
3613   * Marked log file descriptor as close-on-exec.  Closes: #320925.
3614   * Re-worked dpkg-source -x to allow all manner of strange things maintainers
3615     seem to do, unpacking isn't the right place to enforce sanity; we'll
3616     do it in -b later on >:-).  Closes: #316470, #317760, #318473, #318745,
3617     #322359, #322361, #322362.
3619   * Corrected dselect synopsis line to match consensus.  Closes: #318659.
3620   * Changed dpkg-name to use a shell redirect rather than the /dev/stderr
3621     device that may not be writable.  Closes: #318376.
3622   * Adjusted various dpkg-query options to avoid outputting a trailing
3623     newline.  Closes: #151651, #319781.
3624   * Changed references to "statusoverride" file to just "statoverride"
3625     to make it match reality.  Closes: #320952.
3626   * Fixed several bugs with the default diff ignore list used by dpkg-source.
3627   * Added ,,* to the list of default diff ignore list.  Closes: #322917.
3629   * Fixes to dpkg-dev (Frank Lichtenheld):
3630     - dpkg-checkbuilddeps will now exit with an error if it is unable to
3631       parse a dependency field.  Closes: #171762, #302229.
3632     - dpkg-genchanges will now output a warning if given -sd for a native
3633       package, as it's going to ignore it.  Closes: #5571.
3634     - dpkg-source fixed to give a more meaningful error message if given
3635       a directory as the first argument.  Closes: #306874.
3636     - dpkg-source fixed to handle being given an absolute path to -b.
3637       Closes: #147574.
3638     - Fix controllib.pl to allow whitespace before version operators.
3639       Closes: #273489, #310306.
3640     - Fix architecture dependency parsing that sometimes generated wrong
3641       list of requirements.  Closes: #319816.
3642     - Make the default control field name mangling behaviour "nicer" by
3643       upper-casing all letters that come after a dash.  Closes: #306474.
3644     - Ignore trailing newlines in single paragraph control files.
3645       Closes: #57194, #156319
3646   * Documentation:
3647     - Fixed typo in dpkg-architecture man page.  Closes: #317770.
3648     - Documented dpkg-deb -W/--show and --showformat.  Closes: #319784.
3650  -- Scott James Remnant <scott@netsplit.com>  Wed, 17 Aug 2005 04:44:44 +0100
3652 dpkg (1.13.10) unstable; urgency=low
3653   
3654   The "Bully's Special Prize" Release.
3656   * Removed /usr/sbin/start-stop-daemon.  Closes: #313400.
3657   * Fixed md5sum diversion removal.  Closes: #313415.
3658   * Fixed dpkg-source to handle native tarballs with a Debian revision.
3659     Closes: #313381, #313433.
3660   * Fixed upgrade from pre-sarge dpkg outside of dselect.  Closes: #314575.
3661   * Changed log times to be local rather than UTC.  Closes: #313347.
3662   * Changed log writing to be line-buffered.  Closes: #314550.
3663   * Moved log creation to postinst, and don't fail if base-passwd hasn't
3664     been configured yet.  Closes: #316084.
3665   * Don't try to compile in SELinux support on Hurd.  Closes: #313398.
3666   * Place code for SELinux support in the right place so it will actually
3667     get compiled in and used (Manoj Srivastava).  Closes: #314886.
3669   * Documentation:
3670     - Added missing word to dpkg-architecture manpage.  Closes: #313554.
3671     - Reference to dpkg manpage in dpkg.cfg corrected.  Closes: #314262.
3672   * Updated Translations (Christian Perrier):
3673     - Basque (Piarres Beobide Egana).  Closes: #313474.
3674     - Catalan (Jordi Mallach).  Closes: #313288.
3675     - Czech (Miroslav Kure).  Closes: #314431.
3676     - Danish (Claus Hindsgaul).
3677     - French (Christian Perrier).
3678     - German (Jens Seidel).  Closes: #314125.
3679     - Greek (Greek team).  Closes: #314828.
3680     - Italian (Lele Gaifax).
3681     - Japanese (Kenshi Muto).  Closes: #313330.
3682     - Russian (Yuri Kozlov).  Closes: #313620.
3683   * Hebrew translation de-activated on request of the translator until there
3684     is better support for RTL languages.  Closes: #313282.
3686  -- Scott James Remnant <scott@netsplit.com>  Tue, 28 Jun 2005 14:19:06 +0100
3688 dpkg (1.13.9) unstable; urgency=low
3689   
3690   The "On like Donkey Kong" Release.
3692   * Only open the log file when we first need to write to it, this avoids
3693     the need to suppress errors when not root which fakeroot defeated anyway.
3694   * Stop dpkg-source clobbering an existing .orig directory during unpacking.
3695     Closes: #21236.
3696   * Allow an alternate output directory to be specified to dpkg-source by
3697     giving a second argument to -x.  Closes: #246802, #282323.
3698   * Added .arch-inventory to default diff ignore regexp.  Closes: #304297.
3700   SELinux support (Manoj Srivastava):
3701   * On SELinux-enabled systems, try to set the security context when the
3702     package is unpacked.  Closes: #193653, #249496, #307139.
3703   * Added build-dependancy on libselinux1-dev.
3705   Improvements to dpkg-source (Brendan O'Dea):
3706   * Support unpacking of "Wig And Pen" (Format 2.0) source packages.
3707   * Multiple pristine upstream tarballs allowed.
3708   * Native and upstream tarballs may be bzip2-compressed instead of gzip,
3709     as may the debian diff or tarball.
3710   * Unsupported format error fixed to output the unsupported format
3711     rather than the supported one.  Closes: #156317.
3713  -- Scott James Remnant <scott@netsplit.com>  Sun, 12 Jun 2005 15:52:43 +0100
3715 dpkg (1.13.8) experimental; urgency=low
3716   
3717   The "In like Flynn" Release.
3719   * Linux 2.6.12 changed the behaviour of mmap to fail and set EINVAL when
3720     given a zero length, rather than returning NULL.  This is POSIXly
3721     correct, so handle zero-length package control files (like available).
3723  -- Scott James Remnant <scott@netsplit.com>  Fri, 10 Jun 2005 07:39:44 +0100
3725 dpkg (1.13.7) experimental; urgency=low
3726   
3727   The "Maidenhead Creeping Water Plant" Release.
3729   * Reduced inability to open a log file to a warning, suppressed for
3730     non-root operations.  Closes: #312383.
3732  -- Scott James Remnant <scott@netsplit.com>  Thu,  9 Jun 2005 06:12:56 +0100
3734 dpkg (1.13.6) experimental; urgency=low
3735   
3736   The "Just kidding about the God part" Release.
3738   * Fixed incorrect installation location of /etc/logrotate.d/dpkg caused
3739     by a mis-understanding of dh_install's abilities.
3741  -- Scott James Remnant <scott@netsplit.com>  Mon,  6 Jun 2005 05:58:36 +0100
3743 dpkg (1.13.5) experimental; urgency=low
3744   
3745   The "Flatulent Elm of West Ruislip" Release.
3747   * Actions and package states are now logged by default in the
3748     /var/log/dpkg.log file.  This file is rotated monthly and can be
3749     disabled by commenting the line in /etc/dpkg/dpkg.cfg.
3750   * User decisions about conffiles are now logged.
3751   * dpkg-source no longer complains about Enhances field.  Closes: #159642,
3752     #159745, #159746.
3753   * preinst no longer relies on procps being installed.  Closes: #311808.
3755   * Architecture Support:
3756     - Change DEB_*_GNU_CPU from i386 to i486, to reflect reality.
3757       DEB_*_ARCH_CPU remains at i386, you should be checking against that.
3758       Closes: #310394.
3759     - Fixed order ostable is read to prevent Linux becoming the Hurd.
3760       Closes: #309603.
3761   * Updated Manpage Translations (Christian Perrier):
3762     - Syntax error corrected in Swedish man page for dpkg-deb.
3763       Closes: #300980.
3764     - Syntax error corrected in Spanish man page for dpkg-scanpackages.
3765       Closes: #300981
3767  -- Scott James Remnant <scott@netsplit.com>  Mon,  6 Jun 2005 05:34:21 +0100
3769 dpkg (1.13.4) experimental; urgency=low
3770   
3771   The "Or the Wabbit gets it" Release.
3773   * Add -L option to dpkg-architecture to list architecture strings
3774     we can accept.
3776  -- Scott James Remnant <scott@netsplit.com>  Tue, 29 Mar 2005 13:31:15 +0100
3778 dpkg (1.13.3) experimental; urgency=low
3779   
3780   The "Paying off Karma at a vastly accelerated rate" Release.
3782   * Missing newline added to warning output function.  Closes: #283798.
3783   * Fixed prototype warning in dpkg-scansources.  Closes: #213577, #219760,
3784     #267505.
3785   * Removed trailing line from debian origins file.  Closes: #264904.
3786   * Changed dpkg-buildpackage to say "source changed by" rather than
3787     "source maintainer is".  Closes: #247313.
3788   * Fixed dpkg-gencontrol to allow '-' in architecture names.  Closes: #274677.
3789   * Fixed "unknown information field" error to report field that it doesn't
3790     know about.  Closes: #275243.
3792   * Documentation:
3793     - Remove "medium-level" from description of dpkg.  Closes: #292454.
3794     - Harmonised argument names in update-alternatives(8).
3795       Closes: #267095, #284941
3796     - Documented what the '+' and '*' mean in update-alternatives --config
3797       output.  Closes: #270486.
3798     - Mention aptitude alongside dselect in 'dpkg --usage' and
3799       'dpkg-deb --help', fix quote style of mention in 'dpkg --help'.
3800       Closes: #274800, #278118.
3801     - Associate --truename with the description of what it does in
3802       dpkg-divert(8).  Closes: #277076.
3803     - Removed last remaining references to the packaging manual, replacing
3804       with better references.  Closes: #262775.
3805     - Documented format of file dpkg --set-selections takes.  Closes: #270043.
3807  -- Scott James Remnant <scott@netsplit.com>  Mon, 21 Mar 2005 03:10:27 +0000
3809 dpkg (1.13.2) experimental; urgency=low
3810   
3811   The "Mysteriously Unnamed" Release.
3813   * md5sum has been removed, the coreutils or textutils version will be
3814     diverted to /usr/bin/md5sum.  Closes: #6633, #136110.
3815     The following bugs are filed against the dpkg md5sum, so no longer apply.
3816     Closes: #95755, #193877, #223381, #264195, #270241, #286632,
3817   * Take Replaces into account when installing packages; don't issue a
3818     "trying to overwrite" error if the file that already exists is in
3819     a package that Replaces the one being installed.
3820     Closes: #164595, #184635, #277890.
3821   * Allow actions and status changes to be logged to a file.  Disabled by
3822     default, uncomment line in /etc/dpkg/dpkg.cfg to enable.
3823     Closes: #957, #53376, #77109, #143882, #284499.
3824   * Don't truncate output of 'dpkg -l' when stdout is not a tty.
3825     Closes: #92263, #253860, #258608, #261822, #282790.
3826   * Fix further compilation problems with gcc 4.0.  Closes: #299699
3827   * Handle tar files without trailing slash in directory names.
3828     Closes: #287152.
3829   * Output arguments to maintainer scripts with -D2.  Closes: #237684,
3830     #296030.
3831   
3832   * Architecture Support:
3833     - Added ppc64.  Closes: #263743.
3834     - Split archtable into cputable and ostable, archtable is retained
3835       for compatibility with other packages that might use it only.
3836     - dpkg-architecture no longer canonises -t argument.  Closes: #173205.
3837     - dpkg-architecture output includes new DEB_*_ARCH_OS and
3838       DEB_*_ARCH_CPU variables that contain the Debian system and CPU
3839       names respectively.
3840     - dpkg-architecture outputs (mostly) correct GNU system names now,
3841       in particular this means that it will output "linux-gnu" instead
3842       of "linux".  You should use the new _ARCH_OS variables instead.
3843   * Documentation:
3844     - Add examples to dpkg-divert(8).  Closes: #291816.
3845     - Correct typo in dpkg-architecture(1).  Closes: #299090.
3847  -- Scott James Remnant <scott@netsplit.com>  Fri, 18 Mar 2005 16:21:32 +0000
3849 dpkg (1.13.1) experimental; urgency=low
3850   
3851   The "Livin' like a good boy oughta" Release.
3852   
3853   * Removed dpkg --print-gnu-build-architecture option.  Use variables
3854     defined by dpkg-architecture instead.
3855   * Soft-deprecated dpkg --print-installation-architecture.  Use
3856     dpkg --print-architecture instead, which now does the same thing.
3857   * dpkg --print-architecture no longer calls c-compiler.  Closes: #164863.
3858   * Removed third field from /usr/share/dpkg/archtable.
3860   * Now we no-longer pre-depend on dselect, check the upgrade will work
3861     in preinst and give the user a chance to abort if they haven't yet
3862     installed dselect and need to.  Closes: #282335.
3863   * Fix handling of GNU longname and longlink when a tarfile entry has
3864     both.  Closes: #128388.
3865   * md5sum no longer outputs "-" when no argument is supplied.
3866     Closes: #164591, #164889.
3867   * Add darcs metadirectory to dpkg-source diff ignore list.  Closes: #289760.
3868   * Add new '-f' short option to dpkg-query as equivalent to --showformat.
3869     Closes: #281627.
3870   * Report conffile conflicts and per-package errors on the status-fd.
3871     Closes: #297880.
3872   * Correct typo in dpkg-architecture.  Closes: #282701.
3873   * Fix start-stop-daemon's support for GNU/kFreeBSD.  Closes: #258051.
3875   * Architecture Support:
3876     - Added kfreebsd-amd64.  Closes: #280963.
3877     - Added m32r.  Closes: #280710.
3878     - Clean up of archtable.  Closes: #118910, #286898.
3879     - Clean up of dpkg-architecture.  Closes: #256323.
3880   * Updated Translations (Christian Perrier):
3881     - French (French Team).
3882     - Greek (Konstantinos Margaritis).  Closes: #295922.
3884  -- Scott James Remnant <scott@netsplit.com>  Thu,  3 Mar 2005 12:09:07 +0000
3886 dpkg (1.13.0) experimental; urgency=low
3887   
3888   The "Three banana strategy" Release.
3890   * Remove the /usr/info or /usr/info/dir symlinks we used to create.
3891     Closes: #206063, #288415.
3892   * Fix cast in lvalue assignment that gcc 4.0 doesn't like.
3893     Closes: #282669, #284797.
3894   * Correct bashism in disk method update script.  Closes: #260568.
3896   * Scorched-earth reimplementation of the build process and control files
3897     with debhelper and automake.  Closes: #200683, #217946, #229629, #260568,
3898     #266995, #279701, #283640, #292973, #293041.
3899   * Remove SGML and POD documentation formats due to both licensing and
3900     sanity issues.  Closes: #285806.
3901   * The dpkg-doc and dpkg-static packages are no more.
3902   * dpkg.cfg cleaned up to remove non-useful examples.
3903     Closes: #169618, #305192.
3904   
3905  -- Scott James Remnant <scott@netsplit.com>  Fri, 14 Jan 2005 19:28:00 +0000
3907 dpkg (1.10.28) unstable; urgency=low
3908   
3909   The "Awh, yeah?  Ripper!" Release.
3911   * New Translations (Christian Perrier):
3912     - Romanian (Eddy Petrisor).  Closes: #309714.
3913     - Tagalog (Eric Pareja).  Closes: #296407.
3914   * Updated Translations (Christian Perrier):
3915     - French (Christian Perrier).
3916     - Greek (Konstantinos Margaritis).  Closes: #295922
3917     - Indonesian (Arief S Fitrianto).  Closes: #296733
3918   * Updated Manpage Translations (Christian Perrier):
3919     - French (Philippe Batailler).
3920     - Syntax error corrected in Brazilian Portuguese man page for
3921       update-alternatives.  Closes: #300646
3923  -- Scott James Remnant <scott@netsplit.com>  Thu, 26 May 2005 18:18:10 +0100
3925 dpkg (1.10.27) unstable; urgency=low
3927   The "Grab your gun and bring in the cat" Release.
3929   * New Translations (Christian Perrier):
3930     - Indonesian (Arief S Fitrianto).
3931     - Norwegian Bokmål (Bjorn Steensrud).
3932   * Updated Translations (Christian Perrier):
3933     - Dutch (confusing option corrected by Christian Perrier).
3934     - Galician (Jacobo Tarrio).
3935     - Korean (Seo Sanghyeon).
3936     - Simplified Chinese (Carlos Liu).
3937     - Traditional Chinese (Asho Yeh).
3939  -- Scott James Remnant <scott@netsplit.com>  Thu, 10 Feb 2005 15:10:22 +0000
3941 dpkg (1.10.26) unstable; urgency=low
3943   The "Captain Tight-Pants" Release.
3945   * Fix incorrect claim that 'Q' in dselect quits without saving changes
3946     (really 'X').
3947   * Revert to current 'stable' behaviour of Space/Enter/'Q' in the dselect
3948     help screen, Space leaves the help screen and Enter and 'Q' do nothing.
3949     It's dangerous to encourage users to press Enter or 'Q' since they
3950     commit changes in the package selection screen.
3952   * New Translations (Christian Perrier):
3953     - Basque (Piarres Beobide Egaña).  Closes: #281245.
3954       (Was really added in 1.10.24, but forgotten from ALL_LINGUAS.)
3955     - Bosnian (Safir Šećerović).
3956     - Slovak (benco).  Closes: #284896, #289341
3957     - Traditional Chinese (Asho Yeh).  Closes: #287375.
3958   * Updated Translations (Christian Perrier):
3959     - Brazilian Portuguese (André Luís Lopes).  Closes: #281228.
3960     - Catalan (Jordi Mallach).  Closes: #281333.
3961     - Czech (Miroslav Kure).  Closes: #281231.
3962     - Danish (Claus Hindsgaul).  Closes: #281103.
3963     - Dutch (Christian Perrier).  Closes: #282087.
3964     - Galician (Héctor Fernéndez López).
3965     - German (Michael Piefel).  Closes: #281503.
3966     - Italian (Stefano Canepa). Closes: #282543.
3967     - Japanese (Kenshi Muto).  Closes: #281144.
3968     - Korean (Changwoo Ryu).  Closes: #282246.
3969     - Norwegian Nynorsk (Håvard Korsvoll).  Closes: #281456.
3970     - Polish (Bartosz Feñski).
3971     - Portuguese (Miguel Figueiredo).  Closes: #281122, #289359.
3972     - Russian (Yuri Kozlov).  Closes: #281166.
3973     - Simplified Chinese (Tchaikov, Carlos Liu).
3974     - Spanish (Javier Fernández-Sanguino Peña).  Closes: #281117.
3975     - Swedish (Peter Karlsson).  Closes: #281165.
3977  -- Scott James Remnant <scott@netsplit.com>  Tue, 11 Jan 2005 16:26:51 +0000
3979 dpkg (1.10.25) unstable; urgency=low
3981   The "你他媽的天下所有的人都該死" Release.
3983   This release is to correct the mangled Simplified Chinese translation
3984   included in 1.10.24 caused by rebellion of the translator's mail client.
3986   * Updated Translations (Christian Perrier):
3987     - Dutch (Bart Cornelis).  Closes: #278700.
3988     - Polish (Bartosz Fenski).  Closes: #280406.
3989     - Simplified Chinese (Tchaikov, Carlos Liu).  Closes: #278676.
3991  -- Scott James Remnant <scott@netsplit.com>  Thu, 11 Nov 2004 20:06:57 +0000
3993 dpkg (1.10.24) unstable; urgency=low
3995   The "Donald, where's your troosers?" Release.
3997   * Add support for uncompressed data.tar archive members and bzip2-
3998     compressed data.tar.bz2 members of binary packages.  Closes: #34727.
4000   * New Translations (Christian Perrier):
4001     - Basque (Piarres Beobide).  Closes: #265491.
4002     - Greek (George Papamichelakis).  Closes: #260809.
4003     - Hebrew (Lior Kaplan).  Closes: #275267.
4004     - Simplified Chinese (Tchaikov, Carlos Liu).  Closes: #265197.
4005   * Updated Translations (Christian Perrier):
4006     - Brazilian Portuguese (Andre Luis Lopes).  Closes: #260964, #273947,
4007       #278063.
4008     - Czech (Miroslav Kure).  Closes: #255904, #278178.
4009     - Catalan (Jordi Mallach).  Closes: #278098.
4010     - Danish (Claus Hindsgaul).  Closes: #278097.
4011     - Dutch (Bart Cornelis).  Closes: #268271, #268886, #274366, #278061.
4012     - Galician (Hector Fernandez).
4013     - German (Michael Piefel).  Closes: #276462, #278168.
4014     - French (Christian Perrier).
4015     - Japanese (Kenshi Muto).  Closes: #272456, #278141.
4016     - Italian (Lele Gaifax).
4017     - Korean (Changwoo Ryu).  Closes: #261528, #278142.
4018     - Norwegian Nynorsk (Håvard Korsvoll).  Closes: #275387, #278286.
4019     - Polish (Bartosz Fenski).  Closes: #268452, #278064.
4020     - Portuguese (Miguel Figueiredo).  Closes: #268266, #261424, #261519,
4021       #278294.
4022     - Russian (Yuri Kozlov).  Closes: #268452, #278154.
4023     - Spanish (Javier Fernández-Sanguino Peña).  Closes: #277173, #278117.
4024     - Swedish (Peter Karlsson).
4025   * Updated Manpage Translations (Christian Perrier):
4026     - French (Philippe Batailler).  Closes: #268048.
4027     - Spanish (Ruben Porras).  Closes: #261807.
4028     - Swedish (Peter Karlsson).
4030  -- Scott James Remnant <scott@netsplit.com>  Wed, 27 Oct 2004 09:25:58 +0100
4032 dpkg (1.10.23) unstable; urgency=low
4034   The "Let the Wookie win" Release.
4036   * Updated hurd start-stop-daemon support.  Closes: #133640, #254180.
4037   * Removed usage of non-POSIX test options.  Closes: #256302.
4039   * Architecture Support:
4040     - Renamed x86-64 to amd64.  Closes: #252346, #254598.
4041   * Documentation:
4042     - Correct typo in dpkg-divert(8).  Closes: #254175.
4043   * New Translations:
4044     - Korean (Changwoo Ryu).  Closes: #254590.
4045   * Updated Translations:
4046     - Catalan (Jordi Mallach).
4047     - Danish (Claus Hindsgaul).  Closes: #252407.
4048     - French (Christian Perrier).  Closes: #252586.
4049     - Italian (Lele Gaifax).
4050     - Polish (Bartosz Fenski).  Closes: #254209.
4051     - Spanish manpages (Ruben Porras).  Closes: #246158, #246159, #246160,
4052       #246161, #246162, #246163, #246164.
4054  -- Scott James Remnant <scott@netsplit.com>  Mon, 19 Jul 2004 19:52:14 +0100
4056 dpkg (1.10.22) unstable; urgency=low
4058   The DebConf4 Release.
4060   This release is mostly intended to mop up the minor and trivial bug
4061   fixes in the list and clear out the documentation changes.  As such,
4062   it should be treated with even more suspicion than is normal.
4064   * Use colouring to break cycles earlier to avoid long loops whilst
4065     installing or configuring packages.  Closes: #232445, #246857.
4066   * Don't try to configure packages that disappeared in the same
4067     run.  Closes: #202997.
4068   * Fix segfault when "gcc -dumpmachine" returns a non-matching triplet.
4069     Closes: #211850.
4070   * Remove restriction that package names be at least two characters long.
4071     Closes: #237734.
4072   * Fix dpkg-source (actually controllib.pl) to output the field name
4073     properly again.  Closes: #226931, #246595.
4074   * Make dpkg-scanpackages output Origin and Bugs fields with proper
4075     casing.  Closes: #154422.
4076   * Add support for DOS line-endings to md5sum.  Closes: #246103.
4077   * Fix start-stop-daemon segfault on Hurd.  Closes: #133640.
4078   * Allow dpkg-shlibdeps to run as non-root users.  Closes: #96881.
4079   * Correct various compiler warnings.  Closes: #229766.
4081   * Architecture Support:
4082     - Added x86-64 (x86_64 / amd64).  Closes: #238483, #241938.
4083     - Added i?86-gnu (Hurd).  Closes: #216695, #236331.
4084     - Added i386-kfreebsd-gnu and i386-knetbsd-gnu.  Closes: #250176.
4085   * Packaging:
4086     - Create $(docdir) even when --without-sgml-doc is passed so the
4087       ChangeLog can be installed.  Closes: #137719.
4088     - Stop hardcoding the list of manual page languages in debian/rules,
4089       so we include Spanish, Russian and Brazilian Portugese.  Closes: #245994.
4090     - Quote LDFLAGS in debian/rules to allow multiple options.
4091       Closes: #230242.
4092   * Documentation:
4093     - Move dpkg-scanpackages and dpkg-scansources to section 1 as they
4094       are user tools.  Closes: #114946.
4095     - Correct hyphen characters in manpages.  Closes: #212284, #247086, #226800.
4096     - Remove obsolete references to the Debian Packaging Manual.
4097       Closes: #122910, #140695.
4098     - Correct 'n' and 'p' key descriptions in dselect help message.
4099       Closes: #120562.
4100     - Add --force-bad-verify to dpkg manpage.  Closes: #192812.
4101     - Correct dpkg manpage to refer to --force-remove-reinstreq instead of
4102       -non-existant --force-reinstreq option.  Closes: #232831.
4103     - Correct documentation of --compare-versions arguments.  Closes: #232317.
4104     - Correct usage of "et al" to "et al.".  Closes: #230751.
4105     - Add dpkg-reconfigure(8) to SEE ALSO section of dpkg(8).  Closes: #233282.
4106     - Suggest packages that provide additional functionality in the dpkg
4107       manpage.  Closes: #81355.
4108     - Suggest dselect update in description of dpkg --update-avail.
4109       Closes: #206163.
4110     - Suggest aptitude as well as dselect.  Closes: #217042.
4111     - Suggest fakeroot for dpkg-source -r.  Closes: #175897.
4112     - Correct documentation of start-stop-daemon.  Closes: #41554, #211856.
4113     - Correct documentation of start-stop-daemon manpage to refer to --retry
4114       alongside --stop.  Closes: #204691.
4115     - Add note that start-stop-daemon will chdir("/") unless -d is specified.
4116       Closes: #217823, #218060.
4117     - Correct documentation of dpkg-query --list.  Closes: #232639.
4118     - Correct invalid use of &quot; within update-alternatives(8) with .BR.
4119       Closes: #244624.
4120     - Rewrite description of dpkg-source -i to indicate the intent of the
4121       default setting rather than the exact exclusions.  Closes: #227169.
4122     - Correct documentation of dpkg-statoverride --update.  Closes: #85079.
4123     - Correct documentation of update-alternatives --install.  Closes: #179648.
4124     - Documented dpkg:Version and dpkg:UpstreamVersion substvars.
4125       Closes: #85815, #85818.
4126     - Fix spelling error in utils/md5sum.1.  Closes: #250281.
4127     - Replace "&c." with the slightly clearer "etc.".  Closes: #235773.
4128     - Correct various typos.  Closes: #219623, #221235.
4129   * Updated Translations:
4130     - Catalan (Jordi Mallach).
4131     - French (Christian Perrier).  Closes: #246359.
4132     - Italian (Lele Gaifax).
4133     - Japanese manpages (KISE Hiroshi).  Closes: #248483.
4134     - Russian (Nikolai Prokoschenko).  Closes: #249254.
4135     - Spanish manpages (Ruben Porras).  Closes: #246158, #246159, #246160,
4136       #246161, #246162, #246163, #251830.
4137   * New Translations:
4138     - German start-stop-daemon and update-alternatives manpages
4139       (Helge Kreutzmann).  Closes: #247116, #249454.
4140     - Spanish dpkg-scansources manpage (Ruben Porras).  Closes: #246164.
4142  -- Scott James Remnant <scott@netsplit.com>  Tue,  1 Jun 2004 18:21:40 -0300
4144 dpkg (1.10.21) unstable; urgency=low
4146   * Fix incorrect linked list node removal code that caused every second
4147     shared or diverted conffile to be deleted by dpkg.
4148     Closes: #10879, #33046, #47267, #90623, #98210, #109691, #146167.
4149     Closes: #155456, #204275.
4150   * Call mknod with the required device type.  Closes: #158916.
4151   * Correct the default query output format to be consistent with
4152     what the underlying library expects.  Closes: #174973.
4153   * Fix missing NULL-termination in dpkg-query -W display of dependency
4154     fields.  Closes: #174978
4155   * Strip output from md5sum(1) after the first whitespace character.
4156     Closes: #200763.
4157   * Output a warning if we cannot open a configuration file instead of
4158     treating it as a fatal error, in case our home directory is not readable
4159     by root.  Closes: #200701.
4160   * Set LC_ALL to C before spawning off dpkg --search, to avoid searching
4161     on localized strings.  Closes: #244316.
4162   * Don't require argument for start-stop-daemon -V.  Closes: #237589.
4163   * Correct use of @ARGV within dpkg-scanpackages, allowing -u to work
4164     once again.  Closes: #225086, #241503.
4165   * Make sure file permissions passed to dpkg-statoverride are numeric.
4166     Closes: #161156.
4167   * Correctly break out of the loop in install-info.
4168     Closes: #124225, #160761.
4169   * Add --dir-file option to install-info for GNU install-info
4170     compatibility.  Closes: #179192
4171   * Refer to debian-policy in dpkg-doc's description instead of the
4172     non-existant packaging-manual.  Closes: #120970.
4173   * Remove incorrect mention of build-essential from dpkg-checkbuilddeps
4174     manpage.  Closes: #219210.
4175   * Add a note about diverting shared libraries to the dpkg-divert
4176     manpage.  Closes: #214699.
4177   * Updated Translations:
4178     - Brazilian Portugese (Andre Luis Lopes).  Closes: #237864.
4179     - Catalan (Jordi Mallach).
4180     - Danish (Claus Hindsgaul).  Closes: #237624.
4181     - Dutch (Pieter-Paul Spiertz, Bart Cornelis, Erwin).
4182       Closes: #102094, #151799, #207758.
4183     - French (Sam Hocevar).  Closes: #243191.
4184     - German (Florian Ernst).  Closes: #109669, #115352, #187952, #244098.
4185     - Japanese manpages (KISE Hiroshi).  Closes: #220776.
4186     - Polish (Bartosz Fenski).  Closes: #242870.
4187     - Spanish (Javier Fernández-Sanguino Peña).  Closes: #166052.
4188     - Swedish (Peter Karlsson).
4189   * New Translations:
4190     - Japanese dpkg-source manpage (KISE Hiroshi).  Closes: #239000.
4191     - Norwegian Nynorsk (Gaute Hvoslef Kvalnes).  Closes: #233614.
4192     - Portguese (Miguel Figueiredo).  Closes: #240081.
4193     - Spanish dpkg-source manpage (Ruben Porras).  Closes: #171489.
4195  -- Scott James Remnant <scott@netsplit.com>  Sun, 25 Apr 2004 18:55:10 +0100
4197 dpkg (1.10.20) unstable; urgency=high
4199   * Update Japanese translation.  Closes: #224616
4200   * Update French translation.  Closes: #218713
4201   * Fix spelling error in German md5sum man page.  Closes: #230750
4202   * Fix typo in pt_BR po file.  Closes: #192102
4203   * Revert fix for #232916, this turns out to be a bug in the pgpgp
4204     wrapper, dpkg worked fine with pgp itself.
4206  -- Scott James Remnant <scott@netsplit.com>  Thu, 11 Mar 2004 11:24:54 +0000
4208 dpkg (1.10.19) unstable; urgency=high
4210   * Distinguish unmet build dependencies from build conflicts.
4211     Closes: #217943, #235266.
4212   * Force NULL-termination of all tar file entry names.  Closes: #232025.
4213   * Allow dselect to use the full window width.  Closes: #139781.
4214   * Pass correct number of arguments for format string when out of disk
4215     space.  Closes: #213038, #217286, #213543, #213846.
4216   * Remove duplicated entries from ChangeLog.  Closes: #157437.
4217   * Fix dpkg-buildpackage when used with PGP.  Closes: #232916.
4218   * Update support for Debian FreeBSD.  Closes: #211566.
4219   * Store Architecture in the status file.  Closes: #228253.
4220   * Don't print offending lines in md5sum.  Closes: #170953.
4221   * Check bounds of md5sum lines.  Closes: #168443, #199489, #199693.
4223  -- Scott James Remnant <scott@netsplit.com>  Mon,  8 Mar 2004 19:05:32 +0000
4225 dpkg (1.10.18.1) unstable; urgency=medium
4227   * Non-maintainer upload to fix release-critical bugs.
4228   * Terminate string buffer in main/remove.c.  Closes: #228379.
4229   * Prevent stashing of hardlinked devices and setuid or setgid binaries
4230     by removing permissions on upgrade as well as on remove.
4231     Closes: #225692.
4232   * Update dpkg conflicts to << 1.10, instead of 1.9.
4233     Closes: #190611, #221989, #222760.
4235  -- Scott James Remnant <scott@netsplit.com>  Thu, 26 Feb 2004 01:17:27 +0000
4237 dpkg (1.10.18) unstable; urgency=medium
4239   * Rebuild, tagging and releasing correctly from cvs this time.
4241  -- Adam Heath <doogie@debian.org>  Mon, 27 Oct 2003 13:39:56 -0600
4243 dpkg (1.10.17) unstable; urgency=medium
4245   * Make dselect do conflict resolution when dealing with automatically
4246     selected recommended package. Thanks to Colin Watson for the analysis
4247     and patch. Closes: Bug#151663
4248   * Branden Robinson <branden@debian.org>:
4249     s/dpkg-checkbuild/dpkg-checkbuilddeps/ in usage.
4250   * dpkg-checkbuilddeps now sets $reduce_arch.  Closes: #212796.
4251   * Goswin Brederlow <brederlo@informatik.uni-tuebingen.de>:
4252     Add -u in dpkg-scanpackages.  Closes: #214123.
4253     Add -a<arch> command to dpkg-scanpackages.
4254   * Add .#* to dpkg-source's default ignore filter.  Closes: #217380.
4255   * Matthias Urlichs <smurf@smurf.noris.de>:
4256     Don't assume /usr/info/dir exists if /usr/info does.  Closes: #165770.
4257   * Jordi Mallach <jordi@debian.org>:
4258     Update Catalan translation.
4259   * Fix errors with dependency fields that reference ${dpkg:Version}.
4260     Closes: #213108.
4262  -- Adam Heath <doogie@debian.org>  Mon, 27 Oct 2003 13:04:57 -0600
4264 dpkg (1.10.16) unstable; urgency=low
4266   * Almost *EVERY* damn file was including config.h in the wrong spot.
4267     After making it the first include, then off_t/size_t/etc could actually
4268     be redefined to be 64-bit compatible.
4269   * Jordi Mallach <jordi@debian.org>:
4270     Fix configure to set HAVE_SETLOCALE.  Closes: #211816
4271   * "Loïc Le Loarer" <lll_deb@m4x.org>:
4272     Add a -d|--chdir option to start-stop-daemon.  Closes: #151802
4273   * Split the background block into 2 parts: one that does the fork, and
4274     opens /dev/tty and /dev/null, and one that does everything else.  The
4275     second block is then moved to be run right before the exec.  This
4276     allows error messages to be seen from the child(previously, they were
4277     lost), and allows for the chroot to not require the device files.
4278     These changes based on the bugs filed by:
4279     Marc Herbert <Marc.Herbert@ens-lyon.fr>: Closes: #155219
4280     Loïc Le Loarer <lll_deb@m4x.org>: Closes: #151800
4281   * Mario Lang <mlang@debian.org>:
4282     When --start, --startas and --pidfile are given, print 'process'
4283     instead of '(null)' for the process name, if it's already running.
4284     Closes: #209355
4285   * Imported several translated manpages, from debian-doc cvs:
4286     * Spanish: 822-date.1 cleanup-info.8 deb-control.5 deb-old.5
4287       deb.5 dpkg-checkbuilddeps.1 dpkg-deb.1 dpkg-divert.8 dpkg-name.1
4288       dpkg-scanpackages.8 dpkg-split.8 dpkg-statoverride.8 dpkg.8
4289       dselect.8 md5sum.1 start-stop-daemon.8 update-alternatives.8
4290       "Esteban Manchado Velázquez" <zoso@debian.org>: Closes: #171489
4291     * French: deb.5
4292       Julien Louis <arthur51@ifrance.com>: Closes: #164906
4293     * Portuguese: dpkg.8 dselect.8
4294   * Matt Zimmerman <mdz@debian.org>
4295     In dpkg's manpage, -O had an inverted word.  Closes: #111711
4296   * Marcin Owsiany <porridge@debian.org>:
4297     Fix Polish translation of 'conflicts with'  Closes: #112057
4298   * Jiri Masik <masik@darbujan.fzu.cz>:
4299     Improve Czech translation of: "dpkg - warning: ignoring request to
4300     remove %s which isn't installed."  Closes: #117518
4301   * Marco Nenciarini <mnencia@prato.linux.it>:
4302     Fix missing space in Italian translation when listing files, and the
4303     file is diverted.  Closes: #138244
4304   * Piotr Roszatycki <Piotr_Roszatycki@netia.net.pl>:
4305     Update Polish translation.  Closes: #142370
4306   * Martin Quinson <mquinson@ens-lyon.fr>:
4307     Fix missing space in French translation of: "%s - warning: downgrading
4308     %.250s from %.250s to %.250s.\n"  Closes: #149142
4309   * Hidetaka Iwai <tyuyu@sings.jp>:
4310     Fix typo in Japanese translation of dpkg --force-help; dowgrade ->
4311     downgrade:  Closes: #157819
4312   * Martin Quinson <mquinson@ens-lyon.fr>:
4313     Fix French translation when listing files, and the file is diverted.
4314     Closes: #162154
4315   * Rune Schjellerup <olberd@odense.kollegienet.dk>:
4316     Fix Danish translation of(was missing the leading space): " does not
4317     appear to be available\n"  Closes: #192972
4318   * Fix md5sum when handling large files.  Closes: #162691
4319   * Fix dpkg-checkbuilddeps calling of parsedep.  It wasn't setting
4320     use_arch.  Closes: #212796.
4321   * Joey Hess <joeyh@debian.org>:
4322     Change formatting of info.dir.  Closes: #167379.
4324  -- Adam Heath <doogie@debian.org>  Sat, 25 Oct 2003 15:46:16 -0500
4326 dpkg (1.10.15) unstable; urgency=low
4328   * Fix detection of va_copy.
4329   * Back out debian/rules build-arch detection.  It is *not* possible *at
4330     all* to detect available targets in a rules file.  Period.
4332  -- Adam Heath <doogie@debian.org>  Fri, 19 Sep 2003 20:02:19 -0500
4334 dpkg (1.10.14) unstable; urgency=low
4336   * controllib.pl:
4337     * Rewrote the parsedep stuff, so that it wasn't done during control
4338       file parsing.  Scripts that need the internal parsed format should
4339       call parsedep on the field's value.
4340     * Split the substvars parsing into a separate function.
4341     * No longer validate dependency fields when reading the control file.
4342       Some fields may have vars in them, which breaks the validation.
4343     * dpkg-gencontrol calls substvars after parsing the control file, and
4344       then validates the substituted depends lines.  Originally,
4345       substitution occured only during writing of the final output file.
4346     * Andreas Barth <aba@not.so.argh.org>:
4347       Fix bad regex that didn't allow spaces in dependency field parsing.
4348       It now directly matches what the c code expects.  It previously was
4349       allowing all of \S, which matched on '('.
4350       Closes: #211660.
4351   * Remove stale debug in debian/control that would have broken
4352     installation on s390.
4353   * We were calling our own local copy of dpkg-gencontrol, but the
4354     system-installed copy of dpkg-shlibdeps.  Now, both are called from
4355     the build directory.
4357  -- Adam Heath <doogie@debian.org>  Fri, 19 Sep 2003 12:29:34 -0500
4359 dpkg (1.10.13) unstable; urgency=low
4361   * Fix parsing of deps when both () and [] are specified.
4362   * Set $host_arch in controllib.pl:parsedep.
4363   * dpkg-checkbuilddeps doesn't output the [] stuff when finding invalid
4364     deps.
4366  -- Adam Heath <doogie@debian.org>  Wed, 17 Sep 2003 13:23:15 -0500
4368 dpkg (1.10.12) unstable; urgency=low
4370   * Fix dpkg-source output of build-depends lines.
4372  -- Adam Heath <doogie@debian.org>  Tue, 16 Sep 2003 13:43:45 -0500
4374 dpkg (1.10.11) unstable; urgency=low
4376   * dpkg no longer provides any BYHAND files.  If you need the source
4377     tarball, use the orig.tar.gz file available in the pool.  The
4378     precompiled tars were hold-overs from when debs were not standard
4379     ar/tar files.
4380   * Install /usr/share/doc/dpkg/pseudo-tags, which talks about the bug
4381     titling we use to mark bugs for filtering in the Debian bts.
4382   * Updated ca.po.
4383   * Teach dpkg-source that ~ is legal in version numbers
4384   * Add build-depends on sgml-base, and increase gettext build-depends to
4385     0.12.1-3.
4386   * Updated config.sub and config.guess in cvs.
4387   * Change use of strncpy in parsedb to memcpy.  Closes: #160447
4388   * No longer generate helpmsgs.{cc,h}.
4389   * several controllib changes:
4390     * Moved dependency parsing logic from dpkg-checkbuilddeps.
4391       The dpkg-checkbuilddeps parser didn't support empty fields, while
4392       the controllib parser did.
4393     * All dependency fields parsed by controllib.pl support [arch]
4394       specifiers.  If the arch specifier doesn't apply for the current
4395       arch, then the item will not be added to the internal list structure.
4396     * Comment lines(that begin with '#') are removed during parsing.
4397     * Store the original casing of field names, for use in error reporting.
4398     * Store the original field's casing with 'o:' prepended in %fi.
4399       * ballombe@merulo.debian.org:
4400         dpkg-checkbuilddeps now handles empty fields.  Closes: #111562
4401       * Branden Robinson <branden@debian.org>:
4402         support comments(first char on line begins with '#') in
4403         debian/control.  Closes: #191810
4404       * Bastian Blank <waldi@debian.org>:
4405         Allow for per-arch generated dependency fields.  Closes: #170575
4406       * Branden Robinson <branden@debian.org>:
4407         Report the original casing of field names when they are unknown.
4408         Closes: #177753
4409   * Patch dpkg-buildpackage to call debian/rules -qn build-arch, and if
4410     it's available, modify -B handling appropriately.  If build-arch is not
4411     available, then when -B was called, do *not* pass -B on to
4412     dpkg-checkbuilddeps.  Closes: #203097
4413   * Frank Lichtenheld <frank@lichtenheld.de>:
4414     Apply patch, to handle missing infodir.bak, and empty files.  Closes:
4415     #196361
4416   * Change standard_startup and standard_shutdown into macros.  Closes:
4417     #200351.
4418   * Andrew Suffield <asuffield@debian.org>:
4419     Fix inverted test of eof in parsedb, while looking for eof after
4420     field name.  Closes: #198218
4421   * Yann Dirson <dirson@debian.org>
4422     Add set -e to dpkg-doc.postinst.  Closes: #191261
4423   * Michael Weber <michaelw@debian.org>:
4424     dpkg --print-architecture now does gcc -dumpmachine instead of
4425     --print-libgcc-file-name.  Closes: #131893, #8241, #106793, #210285
4426   * Daniel Silverstone <dsilvers@digital-scurf.org>:
4427     Apply patch to change hashing function, and increase bin size, for
4428     the package database.  Closes: #206416
4429   * Paul Eggert <eggert@CS.UCLA.EDU>:
4430     Apply patch to make dpkg work with POSIX 1003.1-2001.  Closes:
4431     #204894
4432   * Joey Hess <joeyh@debian.org>:
4433     Fix "stripping trailing /" message from dpkg-statoverride.  Closes:
4434     #203782
4435   * Sami Liedes <sliedes@cc.hut.fi>:
4436     Increase filesdb bin size, and alter hashing function.  Closes:
4437     #179385
4438   * Anthony Towns <aj@azure.humbug.org.au>:
4439     Retry removing empty dirs during purge.  Closes: #112386
4440   * Darren Salt <linux@youmustbejoking.demon.co.uk>:
4441     Add .cvsignore to dpkg-source's default diff ignore regex.  Also fix
4442     missing \ escape for .deps.  Closes: #174013
4443   * Koblinger Egmont <egmont@uhulinux.hu>:
4444     Fix segfault with --status-fd.  Closes: #173618
4445   * Colin Watson <cjwatson@debian.org>,
4446     Andrew Suffield <asuffield@debian.org>:
4447     Add .svn, {arch}, and .arch-ids to dpkg-source -i default regex.
4448     Closes: #169359
4449   * Falk Hueffner <falk@debian.org>:
4450     Added alphaev68-linux-gnu to archtable.  Closes: #199360
4451   * Elie Rosenblum <fnord@debian.org>:
4452     Apply patch to support OpenBSD.  Closes: #154277
4453   * Geoff Richards <qef@laxan.com>:
4454     Add --config to action section, and add as EXAMPLES section.  Closes:
4455     #208014, #115759
4456   * Yann Dirson <dirson@debian.org>:
4457     install-info --version and --help now display on stdout.  Closes:
4458     #154633
4459   * Dan Jacobson <jidanni@dman.ddts.net>:
4460     Mention what dpkg and dpkg-query -S will not find.  Closes: #153096
4461   * Sebastian Leske <sleske@enterprise.mathematik.uni-essen.de>:
4462     Mention in dpkg(8) that downgrading a package can have serious
4463     consequences.  Closes: #61156
4464   * Dan Jacobson <jidanni@dman.ddts.net>:
4465     In dpkg-scanpackages(8), including small note that other tools might
4466     use the generated Packages file.  Closes: #208894
4467   * Warren Turkal <wturkal@cbu.edu>:
4468     Fix some typos in dpkg-source(1).  Closes: #207259, #204123, #167426
4469   * Dan Jacobson <jidanni@dman.ddts.net>:
4470     Alter text in dselect(8), implying that other interfaces are available
4471     for installing packages.  Closes: #206164.
4472   * Daniel Bonniot <bonniot@users.sourceforge.net>:
4473     Note in start-stop-daemon(8) that --nicelevel takes an argument.
4474   * Ruben Porras <nahoo82@telefonica.net>:
4475     Remove duplicate 'can' in deb-control(5).  Closes: #183840
4476   * Dan Jacobson <jidanni@dman.ddts.net>:
4477     Fix short description in dpkg-scansources(8).  Closes: #175770
4478   * Zefram <zefram@fysh.org>:
4479     In dpkg(8), move dpkg-query options to their own subsection, like
4480     dpkg-deb.  Closes: #174971
4481   * Thomas Hood <jdthood@yahoo.co.uk>
4482     Add --dry-run and --simulate as synonyms to --no-act.  Closes:
4483     #165099
4484   * Junichi Uekawa <dancer@netfort.gr.jp>:
4485     Fix wrong reference to DEB_BUILD_GNU_SYSTEM on --host in
4486     dpkg-architecture(1).  Closes: #163621
4487   * Michael Klein <michael.klein@puffin.lb.shuttle.de>:
4488     s/Usuaully/Usually/ in deb-control.5.  Closes: #161819
4489   * Joey Hess <joeyh@debian.org>:
4490     Removed reference in dselect(8) about recommends not being handled
4491     well.  Closes: #157973
4492   * Andrew Suffield <aps100@doc.ic.ac.uk>:
4493     s/dpkg-source/dpkg-parsechangelog/ in dpkg-parsechangelog -h.
4494     Closes: #155822
4495   * Matej Vela <vela@debian.org>:
4496     Unhighlight "May be repeated multiple times." in dpkg-source(1).
4497     Closes: #151845
4498   * Jordi Mallach <jordi@debian.org>:
4499     Make all actions in dpkg-deb -h lower case.  Closes: #150642
4500   * Alexander Hvostov <root@aoi.dyndns.org>:
4501     Add -g|--group to start-stop-daemon, and document properly.  Closes:
4502     #127342
4503   * Szerb Tamas <toma@mlf.linux.rulez.org>:
4504     s/THANKS/THANKS.gz/ in dpkg(8).  Closes: #91348
4505   * "James R. Van Zandt" <jrv@vanzandt-pc.mitre.org>:
4506     In dpkg(8), mention running dselect, install after --set-selections.
4507     Closes: #175236
4508   * Yann Dirson <dirson@debian.org>:
4509     Remove disabled --command-fd from help.  Closes: #169619
4510   * Tobias Burnus <tburnus@physik.fu-berlin.de>:
4511     Apply patch to update-alternatives that provides --set and --remove-all
4512     commands.  Closes: #133745.
4513   * Osamu Aoki <debian@aokiconsulting.com>:
4514     Add --all to update-alternatives, that calls --config on all
4515     alternatives.  Closes: #126621
4516   * Dan Jacobson <jidanni@jidanni.org>:
4517     Alter --config prompt, to be more clear, that one must 'press' enter to
4518     accept the default.  Closes: #203557
4519   * Peter Moulder <pmoulder@bowman.csse.monash.edu.au>:
4520     Fix some -w issues in update-alternatives.  Closes: #137313
4521   * Eduard Bloch <edi@gmx.de>:
4522     Apply patch to check whether the target path exists on removing.
4523     Closes: #37254
4524   * Colin Walters <walters@debian.org>:
4525     After opening files, set binmode.  Closes: #175363
4527  -- Adam Heath <doogie@debian.org>  Tue, 16 Sep 2003 12:52:11 -0500
4529 dpkg (1.10.10) unstable; urgency=low
4531   * Update archtable for hurd.  Closes: #187509.
4532   * Make the dpkg-iasearch conflicts versioned.  Closes: #170698.
4533   * Surround sed call with '' in Makefile.in.  Closes: #187534.
4534   * Strip trailing / from the file args in dpkg-statoverride.  Closes:
4535     #184239.
4536   * Modified to use autotools-dev.  Closes: #179656.
4537   * Add netbsd support.  Closes: #179658, #179659.
4538   * Support hypenated values in dpkg-architeture. Closes: #179661
4539   * No longer managed the /usr/doc symlinks.
4541  -- Adam Heath <doogie@debian.org>  Sat, 26 Apr 2003 15:10:24 -0500
4543 dpkg (1.10.9) unstable; urgency=low
4545   * Fix dereference in main/help.c:cu_closefd(), which was the cause of
4546     close(random number) on most arches, but close(0) on s390x.
4547   * Add s390x to archtable.  Closes: #160976.
4549  -- Adam Heath <doogie@debian.org>  Sun, 15 Sep 2002 13:21:38 -0500
4551 dpkg (1.10.8) unstable; urgency=low
4553   * Make the multiline regex have an upper bound, instead of being
4554     unbounded, as newer perls have a larger stack frame, which cause them
4555     to segfault quicker with larger inputs.  Closes: #159756.
4557  -- Adam Heath <doogie@debian.org>  Thu,  5 Sep 2002 16:32:01 -0500
4559 dpkg (1.10.7) unstable; urgency=low
4561   * Fix double free in modstatdb_init, in the case that modstatdb_shutdown
4562     was called previously.  Closes: #159515.
4564  -- Adam Heath <doogie@debian.org>  Tue,  3 Sep 2002 18:59:19 -0500
4566 dpkg (1.10.6) unstable; urgency=low
4568   * Don't call nffreeall, in any of the c/c++ programs.  It appears dselect
4569     slightly corrupts it's memory enough that it can't be freed without
4570     segfaulting.  Closes: #159023.
4572  -- Adam Heath <doogie@debian.org>  Sun,  1 Sep 2002 00:19:18 -0500
4574 dpkg (1.10.5) unstable; urgency=low
4576   * Fix segfault in md5sum if the file being checked doesn't exist.
4577     Closes: #154503.
4578   * Fix extraction of md5sum in dpkg-scanpackages.  Closes: #153769.
4579   * Handle directories better in md5sum.  Closes: #157453.
4580   * Fix read past buffer in lib/nfmalloc.c.  Closes: #157304.
4581   * Fix several read pass buffer bugs, and a memleak.  Closes: #155362.
4582   * Fix segfault when --auto-deconfigure is given.  Closes: #157762.
4583   * Allow spaces between the end of a version, and the trailing ')'.
4584     Closes: #154898.
4585   * Fixes for HURD:  Closes: #156545
4586     * Add i386-gnu0.3 to archtable.
4587     * Fix handling of static compiles, with regard to zlib.
4588   * Previous install-infos(before 1.10) handled multiple dir file entries,
4589     because they would copy the entire stanza unmodified.  The newest
4590     version does not do this, as it reformats the options, and thereby
4591     only takes the first line.  So, we now split all the lines from the
4592     stanza, and process them all.  Closes: #147492.
4593   * Fix corruption of available file, caused by use of memory that was
4594     previously freed.  Closes: #154257.
4595   * Fix several minor memleaks.
4596   * Remove /usr/sbin/start-stop-daemon.  Closes: #156437.
4598  -- Adam Heath <doogie@debian.org>  Thu, 29 Aug 2002 16:43:15 -0500
4600 dpkg (1.10.4) unstable; urgency=low
4602   * Remove -ffunction-sections and -fdata-sections.  Closes: #152130.
4603   * Install archtable into /usr/share/dpkg/.
4605  -- Adam Heath <doogie@debian.org>  Sun, 14 Jul 2002 15:17:56 -0500
4607 dpkg (1.10.3) unstable; urgency=low
4609   * Move dselect.cfg to dselect package. Closes: Bug#152132
4610   * Install methods into /usr/lib/dpkg/methods, not /usr/lib/dpkg.  Closes:
4611     #152161.
4612   * Fix test inversion in start-stop-daemon, when checking the pid given in
4613     a pid file.  Thanks Thomas Morin <thomas.morin@enst-bretagne.fr>.
4614     Closes: #152270.
4615   * If in --test mode, and --stop is given, increment n_killed, so that
4616     start-stop-daemon returns the proper exit value.  Thanks Thomas Morin
4617     <thomas.morin@enst-bretagne.fr>.  Closes: #151992.
4619  -- Adam Heath <doogie@debian.org>  Thu, 11 Jul 2002 22:58:43 -0500
4621 dpkg (1.10.2) unstable; urgency=low
4623   * Make configuration files in $HOME work again
4624   * dpkg + dpkg-static conflict with dpkg-dev << 1.9, to fix md5sum error
4625     in dpkg-source.  Closes: #151691.
4626   * Remove -Z from patch call, in dpkg-source, as it makes patch warn about
4627     missing timestamps.  Closes: #151965
4628   * Install debian/dselect.conffiles.
4630  -- Adam Heath <doogie@debian.org>  Thu,  4 Jul 2002 21:08:09 -0500
4632 dpkg (1.10.1) unstable; urgency=low
4634   * Add conflict with dpkg-iasearch which intruded on our namespace.
4635   * Replace manpages-de which includes one of our manpages.  Closes: #151485
4636   * Don't always call autoheader when building. Closes: #151471
4637   * Fix double conflict in dpkg. Closes: Bug#151581
4638   * Move dselect methods to dselect package.
4639   * dpkg-checkbuilddeps no longer checks for build-essential. dpkg should
4640     not hardcode Debian policy.
4641   * Make dpkg-genchanges accept ~ as part of a package filename.
4642     Closes: Bug#150739
4643   * Move dpkg.cfg and dselect.cfg manpages into dpkg package. Closes: Bug#132901
4645  -- Wichert Akkerman <wakkerma@debian.org>  Tue,  2 Jul 2002 12:34:07 +0200
4647 dpkg (1.10) unstable; urgency=low
4649   * dpkg now reorders symlinks when extracting debs.  However, this is also
4650     still done when building debs.  After a stable release of Debian has
4651     occurred with this modified dpkg, the reordering when building can be
4652     removed.
4653   * Fixed upper/lowercase problems with package names. Closes: Bug#58091
4654     (and 3 others).
4655   * Add Russian manual pages
4656   * Fix n in dselect package list (performs searchagain now)
4657   * Fix layout problem in dpkg-divert manpage. Closes: Bug#103667
4658   * When a package is set to hold, and a reinstallation is requested,
4659     -E will not properly skip it.  Closes: #45787.
4660   * Make dpkg-checkbuilddeps use dpkg-architecture. Closes: Bug#104230
4661   * Improve dpkg-archtecture documentation. Closes: Bug#104232
4662   * Update German translation. Closes: Bug#97239
4663   * Update Polish translation. Closes: Bug#115783
4664   * Update French translation.
4665   * Update Brazilian translation.
4666   * Update Danish translation.
4667   * Update Galician translation.
4668   * Update Portuguese translations.
4669   * Add Catalan translation
4670   * Add German md5sum manpage
4671   * Add Brazilian update-alternatives manpage. Closes: Bug#122132
4672   * Improve dselect manpage. Closes: Bug#103839
4673   * dpkg-name(1) no longer mentions the non-existing dpkg(5) manpage.
4674     Closes: Bug#104214
4675   * Improve handling of Recommends and Suggests in dselect. Closes: Bug#34942
4676   * Add per-user configuration files. Closes: Bug#103845
4677   * Split dselect into its own package. dpkg Pre-Depends on it
4678     to make sure no weird things happen during an upgrade but this
4679     will allow us to make dselect option at some point in the future.
4680     Closes: #114249.
4681   * Make colours in dselect user-configurable. Closes: Bug#103994
4682   * Make Q do an abort in the method selection menu to make things more
4683     consistent with the package list
4684   * Fix test for nice(2) failure in start-stop-daemon. Closes: Bug#104561
4685   * Improve the dselect helpscreen a bit. Closes: Bug#72634
4686   * New version comparison routine that can handle arbitrarily large numbers
4687     and accepts `~' as a low-sorting character. Closes: Bug#93386
4688   * dselect now accepts regular expressions when searching for packages
4689     and can search in package descriptions as well.
4690     Closes: Bug#81009,#83139
4691   * Move query commands into a seperate dpkg-query command. For the old options
4692     (-L,-l,-s,-S) dpkg will still call it for you.
4693   * Add configurable package listing support to dpkg-query
4694   * Handle window resize in dselect main menu. Closes: Bug#98275
4695   * update-rc.d moved to the sysvinit package. Closes: Bug#108887,#109282
4696   * Add --showformat and --show options to dpkg-deb and dpkg-query to
4697     allow one to customize the output format
4698   * several install-info cleanups:
4699     * Move /usr/info/dir to /usr/share/info/dir.  Closes: #67174.
4700     * If /usr/share/info doesn't exist, print a message saying so,
4701       instead of the confusing "couldn't lock" error.  Closes: #2531.
4702     * If /usr/share/info/dir doesn't exist, or is empty, try to copy the
4703       backup from /var/backups/infodir.bak.  Closes: #121309.
4704     * Add a --remove-exactly option, and allow for relative filenames.
4705       Closes: #92650.
4706     * Use the section from the .info file if --section is not given.
4707       Closes: #76100.
4708     * Error messages now include the filename being processed.
4709       Closes: #66735
4710     * /usr/share/info/dir now has it's entries formatted to even widths. 
4711       Closes: #11228
4712     * --calign|--align|--maxwidth are now ignored.
4713   * strip enoent as well. Closes: Bug#112378
4714   * Fix format error in Dutch translation. Closes: Bug#113120
4715   * When parsing stdin, md5sum now displays '-' as the filename, to match
4716     textutils md5sum.  Closes: #121489.
4717   * Apply patch from bug, to give update-alternatives a --list command.
4718     Closes: #120924.
4719   * Make dpkg-checkbuilddeps always check for build-essential.
4720     Closes: Bug#118420.
4721   * Use space seperated output instead of comma seperated in
4722     dpkg-checkbuilddeps
4723   * Update default ignore expression in dpkg-source to also match *~ and
4724     *.swp in subdirs. Closes: Bug#127458
4725   * Handle errors when verifying md5sums. Closes: Bug#102367
4726   * dpkg-source now uses reliable timestamps for changed files.
4727     Closes: Bug#105750
4728   * Fix typo in start-stop-daemon help message. Closes: Bug#131439
4729   * update-alternative exits with a non-zero exit code when displaying
4730     a non-existing alternative. Closes: Bug#131496
4731   * Use gzip -c in install-info. Closes: Bug#131758
4732   * start-stop-daemon works on HP-UX now. Closes: Bug#130130
4733   * Fix dselect spin when run without input. Closes: Bug#132476
4734   * Update-alternatives now correctly restores an alternative to auto mode
4735     when removing a manually selected alternative. Closes: Bug#132632
4736   * Copy bugs and origin information into status file. Closes: Bug#132714
4737   * Improve wording of update-alternatives --config text. Closes: Bug#133035
4738   * Add manpages for dpkg.cfg and dselect.cfg. Closes: Bug#132901
4739   * Improve test for illegal packagename for dpkg-gencontrol -p option
4740   * Fix segfault when getenv("PATH") returns null.  Closes: Bug#136349
4741   * Add Large File Summit extensions. Closes: Bug#130509
4742   * Fix typo in dpkg-source manpage. Closes: Bug#141906
4743   * Re-fix handling of multiple blank lines in control. Closes: Bug#143117
4744   * Document --force-confmiss and --force-bad-verify. Closes: Bug#146855
4745   * Drop upgrade compat stuff in dpkg postinst for ancient versions (over
4746     5 years old)
4747   * Always set CLOEXEC on the lock fd.  Closes: Bug#147872
4748   * Clean up tmp files when ctrl-c is sent to dpkg-source.  Closes:
4749     Bug#58653.
4750   * dpkg-source no longer requires exact case matches for fields in
4751     debian/control.  Closes: Bug#139159.
4752   * dpkg-scanpackages now gives proper case for Source and Installed-Size.
4753     Closes: Bug#119532.
4754   * dpkg-architecture: s/build on/built on/; same for 'build for'.
4755     Closes: Bug#140441.
4756   * cl-debian.pl now recognizes emergency as valid in changelogs.
4757     Closes: Bug#138013.
4758   * Properly count recursive expansion of variables, instead of just
4759     counting all variable expansions.  Closes: #144121.
4760   * Add -I<filename> to dpkg-buildpackage and dpkg-source, to excludes
4761     files from tar, when building a native package.  Closes: Bug#75947.
4762   * Close the old debian/files file, before doing a rename.  Closes:
4763     Bug#111503.
4764   * Fix documentation of -v<version> for dpkg-parsechangelog, removing the
4765     requirement that the version has to be in the changelog.  Closes:
4766     Bug#117968.
4767   * Fix typo in dpkg-source(1), s/-su/-sU/.  Closes: Bug#126340.
4768   * Add dpkg-scansources to dpkg-scanpackages(8).  Closes: Bug#147924.
4769   * Change /usr/info into a symlink to /usr/share/info if possible
4771  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 21 Jun 2002 21:53:15 +0200
4773 dpkg (1.9.21) unstable; urgency=low
4775   * Fix corrupt Swedish translations that would some error messages display
4776     incorrectly.
4777   * Enable --force-overwrite by default in /etc/dpkg/dpkg.cfg
4778   * dpkg.cfg is now no longer a conffile. This means the installer can
4779     change defaults depending on how an install is done
4780   * Detect truncated debs, and abort the unpack.  Closes: #138569.
4781   * Improve dpkg(8) --force documentation
4782   * Fix error in Russian dselect translation
4784  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 16 May 2002 19:42:29 +0200
4786 dpkg (1.9.20) unstable; urgency=medium
4788   * Fix assertion when --auto-deconfigure is set.  Closes: #137765.
4789   * Fix segfault discovered by fixing the above.
4790   * Fix segfault when getenv("PATH") returns null.  Closes: #136349
4791   * Recompiled against updated zlib, to fix possible security issue.  Also
4792     bumped build-depends to match.  Closes: #137931(grave)
4794  -- Adam Heath <doogie@debian.org>  Sun, 17 Mar 2002 02:52:44 -0600
4796 dpkg (1.9.19) unstable; urgency=medium
4798   * install-info continues to read all data from a pipe, until EOF.
4799     Closes: #99816(grave).
4800   * Add Catalan translation
4801   * Update Danish translation. Closes: Bug#131869
4802   * Update French translation.
4803   * update-alternative exits with a non-zero exit code when displaying
4804     a non-existing alternative. Closes: Bug#131496
4805   * Changed Maintainer to debian-dpkg@lists.
4806   * Fix "Up to date installed packages" for polish translation.  Closes:
4807     #116398.
4808   * Swap updated/up-to-date polish translations(they were reversed).
4809     Closes: #117583, #102961.
4810   * Mark /etc/alternatives/README as a conffile.
4811   * Strip .note, .comment, and /usr/lib/dpkg/enoent.
4812   * Make dpkg-gencontrol not warn about Uploaders.  Closes: #111090.
4814  -- Adam Heath <doogie@debian.org>  Sat,  2 Feb 2002 11:47:34 -0600
4816 dpkg (1.9.18) unstable; urgency=low
4818   * Fix MD5Sum corruption when upgrading a package.  Closes: Bug#113961.
4819   * Add Wichert and I to debian/control:Uploaders.
4821  -- Adam Heath <doogie@debian.org>  Sat,  3 Nov 2001 00:31:00 -0600
4823 dpkg (1.9.17) unstable; urgency=low
4825   * updated-rc.d moved to the sysvinit package. Closes: Bug#108887,#109282
4827  -- Wichert Akkerman <wakkerma@debian.org>  Wed, 22 Aug 2001 01:24:52 +0200
4829 dpkg (1.9.16) unstable; urgency=low
4831   * Revert architecture-change to dpkg-source from 1.9.11, see ChangeLog
4832     for details.
4834  -- Wichert Akkerman <wakkerma@debian.org>  Thu,  5 Jul 2001 22:42:11 +0200
4836 dpkg (1.9.15) unstable; urgency=low
4838   * Change policy of handling dscformat in dpkg-source
4839   * Fix the arglist construction for maintainer scripts
4840   * Revert dscformat to 1.0 since older dpkg-source versions do not have
4841     the new policy. In the future (starting at format 2.0 to maintain
4842     compatibility with old dpkg-source implementations) minor changes to
4843     the dscformat have to be fully backward and forward compatible.
4845  -- Wichert Akkerman <wakkerma@debian.org>  Sat, 30 Jun 2001 16:41:43 +0200
4847 dpkg (1.9.14) unstable; urgency=low
4849   * Make the Uploaders field in a .dsc file optional.
4850   * Disabled sanity checking of source packages.  
4852  -- Adam Heath <doogie@debian.org>  Mon, 25 Jun 2001 02:22:40 -0500
4854 dpkg (1.9.13) unstable; urgency=medium
4856   * Add a -W option to dpkg-source(and the other utils, where it is just
4857     passed thru), to turn certain errors into warnings(of which, only
4858     one is changed, namely, the 'tar doesn't contain preceeding directory'
4859     error).  Closes: #101813, and partially 101845.
4860   * Don't error out if the files in the tar have leading './', for
4861     dpkg-source.  (another partial close of 101845).
4862   * Handle the case where a single directory exists in the orig.tar.gz, but
4863     it is NOT of the form <pkg>-<ver>.  Closes: #101845.
4864   * Set LC_ALL in dpkg-source when we call external programs when we are
4865     going to parse their output.  Another bug from 101845.
4866   * Handle stating of truncated cpio filenames(100 char limit, bah), in
4867     dpkg-source.  Another bug from 101845.
4868   * Add support for an Uploaders field, which is read from the first
4869     paragraph of debian/control, and propagated to the .dsc.  This lists
4870     the people allowed to upload a package.  If it is not set, then the
4871     value of the Maintainer is placed into this field of the .dsc.  This
4872     bumps the .dsc format to 1.1.  Closes: #101815.
4873   * Handle symlinks in the tarball, and don't error out if found.
4874   * in controllib, make warnerrors default to warnings.  Affects
4875     dpkg-source.  This will be changed to be errors in the future.
4877  -- Adam Heath <doogie@debian.org>  Sun, 24 Jun 2001 13:48:52 -0500
4879 dpkg (1.9.12) unstable; urgency=medium
4881   * Fix do_script() bug. Closes: Bug#101552
4882   * Fix building and extracting of certain kinds of source packages.
4883     Closes: #101684.
4884   * Added Colin Watson to THANKS.
4886  -- Adam Heath <doogie@debian.org>  Wed, 20 Jun 2001 18:27:03 -0500
4888 dpkg (1.9.11) unstable; urgency=low
4890   * The "Hang on to your hats, it gets bumpy from here." release.
4891   * Trim trailing spaces from package names when checking builddeps.
4892     Closes: #101304.
4893   * Apply patch from bug to fix logic error that kept everything but
4894     Build-Deps from working in checkbuilddeps.  Closes: #101511.
4895   * Apply patch to correctly check the output of gcc on hurd, for
4896     dpkg-architecture. Closes: #99874.
4897   * The internal pod docs in dpkg-architecture were updated to reflect
4898     that -f was no longer implied when -q was given, but the build system
4899     wasn't generating new documentation.  Closes: #100997.
4900   * deb(5) now has a see-also for deb-old(5).  Closes: #99620.
4901   * Fix dpkg-shlibdeps infinite directory recursion thru symlinks.
4902     Closes: #97622.
4903   * Set the Architecture to 'source' only when doing source only uploads
4904     in the generated changes files.  Closes: #100144.
4905   * Document -nc in the dpkg-buildpackage manpage.  Closes: #101038.
4906   * Make dpkg-source work with GNU md5sum.  Closes: #97666.
4907   * in dpkg-source, when both arch: all and arch: <arch> packages exist in
4908     debian/control, don't promote the source arch: to any, but only list
4909     all and <arch>.  Closes: #94608
4910   * Apply patch from Colin Watson:  Closes: #89679
4911     * Reset SIGPIPE to DEFAULT when forking gzip.
4912     * set LANG to C before execing cpio, as we parse its output.
4913     * In checktarcpio() and checktarsane(), use the previously open pipes,
4914       instead of the opening files on disk(which was the old, ancient way).
4915     * Improve the output parsing of tar in checktarsane().
4916   * warn instead of die when find returns an error(which happens if there
4917     is a dangling symlink, because we use -follow).  Closes: #51479.
4918   * Change list of allowed urgencies in debian/changelog to: low, medium,
4919     high, and critcial.  Closes: #94475.
4920   * Error out if an illegal package name is used in dpkg-gencontrol.pl.
4921     Closes: #61211
4922   * Apply patch from Marcus Brinkmann to dpkg-buildpackage:  Closes:
4923     #98201.
4924     * Option -a implies option -d.
4925     * Set ARCH correctly to host architecture, rather than build arch.
4927  -- Adam Heath <doogie@debian.org>  Tue, 19 Jun 2001 22:15:25 -0500
4929 dpkg (1.9.10) unstable; urgency=low
4931   * Fix [arch] parsing, and handle extra spaces better.  Closes: #100512,
4932     #101031.
4933   * Apply patch from bug, to fix cleanup of dpkg-divert temp files.
4934     Closes: #100474.
4935   * Swap j/k keys on the main menu, so they function like the package
4936     selection screen(and like vi).  Closes: #100502.
4937   * Multiple fixes in bug: Closes: #99892.
4938     * s/DEAD_JOE/DEADJOE/ in dpkg-source.
4939     * Switch to auto mode if alternative symlink is missing.
4940   * Update Spanish translation
4942  -- Adam Heath <doogie@debian.org>  Sat, 16 Jun 2001 14:57:45 -0500
4944 dpkg (1.9.9) unstable; urgency=low
4946   * The leading and trailing spaces patch in the last upload had some
4947     issues with trailing spaces.  This fixes them.  No bug to close, as the
4948     bts is still down.
4950  -- Adam Heath <doogie@debian.org>  Wed,  6 Jun 2001 22:36:57 -0500
4952 dpkg (1.9.8) unstable; urgency=low
4954   * Remove leading and trailing spaces from versions, and check for
4955     embedded spaces, inside dpkg.  Closes: #99186.
4956   * Handle varied use of spaces in dpkg-checkbuilddeps.  Closes: #98899.
4957   * Reset SIGPIPE back to default, in dpkg-source.  Closes: #98563.
4958   * Remove bogus $! check from dpkg-architecture.  Closes: #99428.
4960  -- Adam Heath <doogie@debian.org>  Sat,  2 Jun 2001 15:15:04 -0500
4962 dpkg (1.9.7) unstable; urgency=low
4964   * If a new file doesn't exist on disk, but is a going to be installed as
4965     a directory, then don't error out.  Closes: Bug#17381.
4966   * Update japanese manpages.  Closes: Bug#97831.
4967   * Update it.po.  Closes: Bug#98273.
4968   * Fix bad cleanup in dpkg-divert.  Closes: Bug#98578,#98828,#98831.
4970  -- Adam Heath <doogie@debian.org>  Mon, 28 May 2001 18:59:03 -0500
4972 dpkg (1.9.4) unstable; urgency=low
4974   * Oops.  EOF_mmap incorrectly detecting the end of the data block.
4975     Closes: Bug#95981.
4976   * After fixing the above bug, and using debootstrap to build a sid
4977     chroot, I discovered that my previous dependency cycle fix could cause
4978     segfaults in some situations.
4980  -- Adam Heath <doogie@debian.org>  Tue,  1 May 2001 23:04:46 -0500
4982 dpkg (1.9.3) unstable; urgency=low
4984   * Fix compiles on ppc. Closes: Bug#95918.
4986  -- Adam Heath <doogie@debian.org>  Tue,  1 May 2001 00:29:45 -0500
4987    
4988 dpkg (1.9.2) unstable; urgency=low
4990   * Recompile, to fix incorrect path 1.9.1/dpkg-divert. Closes: Bug#95845
4992  -- Adam Heath <doogie@debian.org>  Mon, 30 Apr 2001 14:21:28 -0400
4994 dpkg (1.9.1) unstable; urgency=low
4996   * Fix segfault with empty status and available, and when missing a
4997     trailing new line.  Closes: Bug#95496
4998   * Make dpkg-shlibdeps not care if dpkg --search return with an error.
4999     Closes: Bug#95568
5000   * Fix corruption of user-defined fields in status and available.
5001     Closes: Bug#95567.
5002   * Changed dpkg.cfg to include no-debsig by default, as no debs are
5003     currently signed, and we get false errors when debsig-verify is
5004     installed.  This will be removed in the future, when the archive tools
5005     support package signatures.  Closes: Bug#95573
5006   * dpkg-buildpackage should only check for valid signinterface if the
5007     user specifies one. Closes: Bug#95598
5008   * Fix removing of diversions.  Closes: Bug#95655
5009   * Fix md5sum -c. Closes: Bug#95586
5011  -- Adam Heath <doogie@debian.org>  Sat, 28 Apr 2001 16:28:21 -0500
5013 dpkg (1.9.0) unstable; urgency=low
5015   * Things should mostly work OpenBSD 2.8 as well now
5016   * Added a --status-pipe option.
5017   * Fixed several memleaks.
5018   * Profiled dpkg.
5019     * Reworked lib/parse.c:parsedb().  Instead of using getc(), then
5020       calling varbufaddc(), it now reads the entire file at once into a
5021       huge buffer, then moves pointers around, to do the parsing.  This
5022       gave a speedup of 33% on a dual celeron 333, when reading status and
5023       available.
5024     * various other speedups.
5025   * Removed all --smallmem code, as smallmem and largemem now actually
5026     use about the same amount of memory, and largemem is faster.  Both
5027     --largemem and --smallmem are now obselete options, and will print
5028     a warning if used. Closes: Bug#84905, #67528
5029   * Initialize unitialized variables.  This should solve several
5030     segfaults. Closes: Bug#25317(plus 9 others, thru the beauty of
5031     merges)
5032   * Found that when working with dependency cycles, and part of the cycle
5033     was a provide, the provider was not being considered, so the cycle
5034     could not be broken. Closes: Bug#87985(and 3 others)
5035   * Update German translation, Closes: Bug#80529,#80532,#87581
5036   * Update French translation, Closes: Bug#65284,#85035,#87238
5037   * Update Japanese translation, Closes: Bug#93873
5038   * Updated all other translations (but no bugs filed)
5039   * Add Danish translation
5040   * Remove spurious '%s' in Polish translation, Closes: Bug#74814
5041   * Add French manpages, courtesy of Philippe Batailler
5042   * Ingore vim swapfiles in dpkg-source, Closes: Bug#81630
5043   * remove --import option from dpkg-statoverride, Closes: Bug#81358
5044   * Replace nfmalloc implementation with obstack. Added obstack.[ch] to
5045     optlib, for non-GNU systems.
5046   * dpkg-divert only allows absolute filenames now. Closes: Bug#82419
5047   * Handle diffs from non-existing files to existing files. Closes: Bug#82708,
5048     #90982.
5049   * Small fixes to the buildsystem. Closes: Bug#84361
5050   * Fix dpkg-statoverride --update for things other then plain files.
5051     Closes: Bug#84449
5052   * Fix race with source directory disappearing in dpkg-source.
5053     Closes: Bug#45511
5054   * Fix manpage for dpkg-gencontrol. Closes: Bug#84625
5055   * Add -n option for dpkg-gencontrol to specify a filename. Closes: Bug#75796
5056   * Use POSIX glob instead of regexp in debian/rules. Closes: Bug#83042,
5057     #84582
5058   * fix typo in usage message for dpkg-divert, Closes: Bug#85977
5059   * Use full path for argv[0] when calling scripts. Closes: Bug#68783
5060   * Add ia64 support to dpkg-architecture.
5061   * Minor script changes, Closes: Bug#87485
5062   * Stop dpkg-genchanges from complaining about missing packages
5063     when doing a source-only build. Closes: Bug#87571,#15644,#25496
5064   * Various dpkg-architecture cleanups. Closes: Bug#87505
5065   * Modify dpkg-architecture to handle gcc versions containing letters.
5066     Closes: Bug#83083
5067   * dpkg-buildpackage updates: Closes: Bug#87572,#85847
5068     + make -C work properly
5069     + fix test for gpg secret keyring
5070     + improve source messages
5071     + skip signing pause when building unsigned packages
5072     + test for invalid signinterface. Closes: Bug#87579
5073     + remove debsign support, it's useless and doesn't work
5074     + Use correct architecture when naming .changes file. Closes: Bug#88015
5075   * Fix wording in dpkg-statoverride manpage for --add. Closes: Bug#85080
5076   * Fix typo in start-stop-daemon manpage. Closes: Bug#88225
5077   * Add dpkg-checkbuilddeps to check if build dependencies are satisfied
5078     and modify dpkg-buildpackage to call it if wanted.
5079     Closes: Bug#86453,#83812,#60717,#74372,#67896,#60717,#13961
5080   * dpkg-parsechangelog can read a changelog from stdin now. Closes: Bug#80142
5081   * Fix confusing wording for dpkg-buildpackage -uc option in manpage.
5082     Closes: Bug#83468
5083   * dpkg-statoverride now exits with exitcode 1 if we do a --list but don't
5084     output anything. Closes: Bug#84328
5085   * Remove Linux reference from all scripts, they should run fine on
5086     other OSes as well.
5087   * Mark last argument in dpkg-scanpackages usage info as optional.
5088     Closes: Bug#86658
5089   * Fix cache in dpkg-scanpackages version comparison. Closes: Bug#90722
5090   * Fix formatting error in dpkg-source.1. Closes: Bug#82723
5091   * Change dpkg-gencontrol to fix comma-related syntax errors after
5092     processing substvars. Closes: Bug#92908
5093   * Verify package signatures if debsig-verify is installed. Closes: Bug#37017
5094   * Handle window resize in dselect main menu. Closes: Bug#93559
5095   * Initialize all parts of the package record.  This should fix several
5096     segfaults people have been seeing in dpkg.  Closes: Bug#90328.
5097   * Apply patch from bug#86847, that escapes intl chars in filenames.
5098     Closes: Bug#83752, #85040, #86847, #89000.
5099   * Errors during dpkg -s(and other similiar commands) are now printed
5100     on stderr.  Closes: Bug#88987.
5101   * Add a --retry option to start-stop-daemon. Closes: Bug#75139
5102   * Fix regeps to extract Closes magic from a changelog so the #
5103     is really optional. Closes: Bug#94474
5104   * Remove useless statement from dpkg-shlibdeps. Closes: Bug#90516
5105   * Make the debian changelog parser identify itself with $progname.
5106     Closes: Bug#89409
5107   * Give a syntax error when we get an unexpected PGP signature in control
5108     files. Closes: Bug#75562
5109   * Change dpkg manpage to reflect that --force-statoveride is no enabled
5110     by default. Closes: Bug#95023
5111   * Handle dangling symlinks, by ignoring error code 1 from find, when
5112     processing --recursive. Closes: Bug#4784
5113   * dpkg -L, -S, -l, -s, and -p now return an error code if any package
5114     does not exist. Closes: Bug#4974, #72406
5115   * dselect has a configuration file as well now
5116   * Get ENOENT value at runtime in dpkg-divert instead of hardcoding it.
5117     Closes: Bug# 31620
5118   * Fix wrong ENOENT test in dpkg-divert. Closes: Bug#95088
5119   * Add support for more SuperH variants (sh[34]{,eb}-linux-gnu)
5120   * Fix formating and a typo in the dpkg manpage
5121   * Document the dpkg.cfg configuration file in dpkg(8)
5123  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 26 Apr 2001 12:39:16 +0200
5125 dpkg (1.8.3.1) unstable; urgency=low
5127   * Revert change to nfmalloc.c that was causing SIGBUS on sparc.
5129  -- Ben Collins <bcollins@debian.org>  Sat, 13 Jan 2001 08:52:11 -0500
5131 dpkg (1.8.3) unstable; urgency=low
5133   * Do chown before chmod in dpkg-statoverride, Closes: Bug#81943
5134   * Fix recusion in dpkg-shlibdeps, Closes: Bug#81322
5135   * Really completely revert dpkg-source patches which broke backwards
5136     compatibility
5138  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 12 Jan 2001 00:02:22 -0800
5140 dpkg (1.8.2) unstable; urgency=low
5142   * Don't attempt to read from an input source when we only want 0 bytes.
5143     Also handle buggy systems that return EAGAIN instead of EINTR.  Closes:
5144     #81881.
5146  -- Adam Heath <doogie@debian.org>  Thu, 11 Jan 2001 00:43:50 -0600
5148 dpkg (1.8.1.1) unstable; urgency=low
5150   * Apply patch from bug to fix badly generated diffs(in some
5151     circumstances).  Closes: #81152
5153  -- Adam Heath <doogie@debian.org>  Sat,  6 Jan 2001 16:07:33 -0600
5155 dpkg (1.8.1) unstable; urgency=low
5157   * Make --name a valid option.  Closes: #31206, #51953.
5158   * dpkg-deb -I <pkg> <control> works again
5159   * Update Swedish translation
5161  -- Wichert Akkerman <wakkerma@debian.org>  Thu,  4 Jan 2001 19:31:13 +0100
5163 dpkg (1.8.0) unstable; urgency=low
5165   * Add -k|--symlink option to dpkg-name.  Closes: #35040
5166   * Made the accelerator keys in dselect's main menu separate options, so
5167     that they can be translated separately.  Closes: #50955.
5168   * Added depends on sysvinit (>= 2.72), so that we can make sure that
5169     /etc/rcS.d exists.  Closes: #55037.
5170   * update-rc.d: Changed documentation and help, as -f only applies during
5171     remove.  Closes: #55049.
5172   * Added a --force-all option.  Closes: #61354.
5173   * Format help string for --abort-after like other option help strings.
5174     Closes: #62464.
5175   * Fix dselect methods to pass admindir to dpkg from dselect.
5176   * Minor tweak so that when patch 2.5.4 is manually used to apply a diff,
5177     it doesn't get applied multiple times.  Closes: #65021
5178   * Add --nicelevel to start-stop-daemon, to alter a programs priority
5179     before starting.  Closes: #65191.
5180   * Document that --largemem is the default, and that the test point is
5181     24 megs.  Closes: #65607.
5182   * Document that --set-selections does not actually install any
5183     packages.  Closes: #65340.
5184   * Fix typo in dpkg-deb.1.  Closes: #65945.
5185   * Add --truename option to dpkg-divert.  Closes: #68489.
5186   * Documented COLUMNS in dpkg(8).  Closes: #77001.
5187   * Modified DPKG_C_GCC_TRY_WARNS() to call AC_SUBST, so that we can
5188     use the result of the test during build time.  Closes: Bug#75138
5189   * Added description for "suggests" in main/depcon.c:describedepcon().
5190     Closes: Bug#74113
5191   * Removed bashing from dpkg.postinst.
5192   * Make '#' optional in Closes: tags.  Closes: Bug#63137.
5193   * Add -t to -h output in dpkg-buildpackage:  Closes: Bug#49598.
5194   * Fix typo in --compare-versions error message.  Closes: Bug#66474.
5195   * -R doesn't mean --root.  Closes: Bug#66068, #72013
5196   * Add armv3l to archtable.  Closes: Bug#72125
5197   * Fix two memory leaks, and lesson the memory foot print a tad.  Hints
5198     taken from 74259.
5199   * Fix some things perl5.6 complains about. Closes: Bug#77337
5200   * Fix referenes to dpkg-deb manpage. Closes: Bug#77855
5201   * Update Galish translation
5202   * Add new --import option to dpkg-statoverride to make it easy to
5203     import suidmanager settings.
5204   * Speedup patches by Adam Heath
5205   * statoverride fixes by Robert Luberda, Closes: Bug#78436
5206   * Add Linux S/390 support. Closes: Bug#79063
5207   * Using libz to decompress data instead of calling gzip.
5208     Closes: Bug#49581
5209   * Add gettext to build-depends
5210   * Fix warning when trying to remove a non-existing statoverride.
5211     Closes: Bug#79352
5212   * Be more paranoid with file permissions when extracing files
5213   * Apply statoverrides to more then just files
5214   * Update update-alternatives manpage to use FHS instead of FSSTND.
5215     Closes: Bug#80237
5216   * List descriptions for udebs in .changes
5218  -- Wichert Akkerman <wakkerma@debian.org>  Mon, 25 Dec 2000 17:19:31 +0100
5220 dpkg (1.7.2) unstable; urgency=low
5222   * Fix parsing of configuration files
5223   * Add new powerpc-linux-gnu entry to archtable. Closes: Bug#76522
5224   * No longer bother to install emacs things. I don't use emacs myself
5225     and can't support that properly.
5226   * scripts/dpkg-shlibdeps.pl: Make it parse soname's in the format of
5227     "libfoo-X.X.so" (e.g. libdb-3.1.so) and use it. Also make it give a
5228     warning if there is a NEEDED line in the objdump output that we cannot
5229     grok.
5230   * scripts/dpkg-shlibdeps.pl: resolve library paths using a combination
5231     of the libc major version, and ldconfig -p output. Solves problems
5232     with errant libc5 deps.
5233   * Correct name of .changes file when doing source-only builds
5234   * Fix -ap option for dpkg-buildpackage. Closes: Bug#77305
5235   * Fix typo in update-alternatives manpage. Closes: Bug#77829
5236   * Fix typo in script-regexp update-rc.d. Closes: Bug#76029
5238  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 23 Nov 2000 18:55:50 +0100
5240 dpkg (1.7.1) unstable; urgency=medium
5242   * Fix a typo in the dpkg-statoveride manpage
5243   * dpkg-statoverride reads and writes the right file now
5244   * Make update-alternatives use the right dir for alternatives again
5246  -- Wichert Akkerman <wakkerma@debian.org>  Tue,  7 Nov 2000 01:16:39 +0100
5248 dpkg (1.7.0) unstable; urgency=low
5250   * Allow the administrator to override file mode and ownership using the
5251     new dpkg-statoverride tool.
5252   * Use objdump instead of ldd in dpkg-shlibdeps
5253   * Fix logic in dpkg-shlibdeps so it looks for dependencies as specified
5254     in its documentation
5255   * Make update-alternatives update slave links with --config and properly
5256     switch the alternative to manual mode
5257   * HURD updates, Closes: Bug#57753,#57754,#57755
5258   * dpkg-architecture: -q should not imply -f, Closes: Bug#57761
5259   * add dpkg:UpstreamVersion and dpkg:Version substvars in dpkg-genchanges
5260     and dpkg-gencontrol.  Closes: Bug#62069,#64774
5261   * dpkg-genchanges: add new Changed-By field to .changes with the last
5262     person who made a change, and modify the Maintainer-field to be the
5263     actual maintainer. Update the format-version to 1.7 to reflect this.
5264   * dpkg-genchanges: allow a space between # and a to-be-closed bugnumber
5265   * dpkg-deb: reorder files when building a package
5266   * dpkg-statoverride: new tool to override ownership and modes for files
5267   * Check COLUMNS environment for dpkg -l output. Closes: Bug#65536
5268   * Add Origin and Bugs fields to the control file
5269   * Install new /etc/dpkg/origins/debian file
5270   * Corrections and updates to Swedish translation.
5271   * Add Galician, German, Dutch and Brazilian translations
5272   * archtable: add ia64 and sh; revert sparc64 so that it turns into sparc.
5273     There wont be a full binary-sparc64 port. Closes: Bug#70788
5274   * dselect/main.cc: small fixups to get it to compile with gcc-2.96
5275   * Clean up fd handling in some places. Closes: Bug#69359,#69360,#69361
5276   * Document -k option for dpkg-buildpackage. Closes: Bug#71808
5277   * Install commented dummy shlibs.default and shlibs.override files
5278   * Give dpkg a configurationfile
5279   * dpkg-scanpackages now uses the most recent version if multiple versions
5280     of a package are found.
5281   * don't rename a file to itself in dpkg-source. Closes: Bug#75060
5282   * Fix buffer overflow in cmdname handling in start-stop-daemon.
5283     Closes: Bug#75103
5284   * Don't abort if start-stop-daemon tries to read a non-existing pidfile.
5285     Closes: Bug#75105
5286   * Update formating of start-stop-daemon manpage. Closes: Bug#75110
5287   * Make a missing package a warning instead of an error in dpkg-genchanges
5289  -- Wichert Akkerman <wakkerma@debian.org>  Sun,  5 Nov 2000 17:28:39 +0100
5291 dpkg (1.6.13) frozen unstable; urgency=low
5293   * Add Format-flag to .dsc format: we know we are going to change the
5294     format in the next release, this change will make dpkg-source abort
5295     with a reasonable error instead of doing unexpected things.
5296   * Fix error in gettext'ized string
5297   * Updated Czech, French, Polish and Spanish translations. Closes: Bug#63663
5298   * debian-changelog-mode.el: fix documentation string for
5299     debian-changelog-finalise-last. Closes: Bug#63003
5301  -- Wichert Akkerman <wakkerma@debian.org>  Mon,  8 May 2000 16:08:53 +0200
5303 dpkg (1.6.12.99) frozen unstable; urgency=low
5305   * Pre-release for 1.6.13. which will only feature translation updates
5306   * Fix typo in dpkg-divert, Closes: Bug#60243
5307   * dpkg-genchanges: recognize non-deb packages (tarballs, such as
5308     dpkg-non-deb and boot-floppies disk tarballs). This makes sure that we
5309     include them when figuring out the Arch field in the .changes
5310   * mark another string as translateable, Closes: Bug#62543
5311   * fix location of --abort-after in --help output, Closes: Bug#62464
5312   * fix allocation error in checkpath(), Closes: Bug#62364
5313   * add Hold to list of desired package states in -l output, Closes: Bug#58765
5315  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 21 Apr 2000 11:52:59 +0200
5317 dpkg (1.6.12) frozen unstable; urgency=high
5319   * Fix test for gpg/pgp in dpkg-buildpackage. You can now build
5320     unsigned packages again. Closes: Bug#60395
5321   * Updated Spanish and Swedish translations. Closes: Bug#41735
5322   * Merge patch from Joel Klecker to remove emacsen-common stuff from dpkg-dev
5324  -- Wichert Akkerman <wakkerma@debian.org>  Mon,  3 Apr 2000 16:50:02 +0200
5326 dpkg (1.6.11) frozen unstable; urgency=high
5328   * Oops, missed one case where the libc/ncurses conflict reared its
5329     ugly head and broke dselect miserably. 
5330   * fix syntax error in dpkg-divert. Closes: Bug#60050
5332  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 10 Mar 2000 11:52:07 +1100
5334 dpkg (1.6.10) frozen unstable; urgency=low
5336   * The `it rains in Sydney' release
5337   * Mark another string in dselect as translateable, Closes: Bug#58618
5338   * Fix typos, Closes: Bug#58619
5339   * Change dselect keybindings slightly so `n' really does searchagain
5340   * Updated Czech and Spanish translations, Closes: Bug#58617
5341   * dpkg-divert.pl: reinstate last writeability-patch. Modified
5342     to not abort on ENOENT: this indicates a directory does not (yet)
5343     exist. If this happens don't try to rename. This should fix all
5344     current dpkg-divert problems. Closes: Bug#59207,#58596
5345   * update-alternatives: switch back to auto-mode when manually selected
5346     alternative is removed, Closes: Bug#54933
5347   * dselect no longer segfaults on SIGWINCH but does The Right Thing
5348     instead. Closes: Bug#54303,#58697,#59419
5350  -- Wichert Akkerman <wakkerma@debian.org>  Tue,  7 Mar 2000 15:09:47 +1100
5352 dpkg (1.6.9) frozen unstable; urgency=low
5354   * Fix typo in update-alternatives manpage
5355   * dpkg-architecture: -q should not imply -f, Closes: Bug#57761
5356   * Cleanup bits of install-info to make it more stable
5357   * Fix Build-Dependency for ncurses, Closes: Bug#58073
5358   * Some more documentation updates, Closes: Bug#57985
5359   * Revert patch to check for writeable filesystems in dpkg-divert,
5360     Closes: Bug#57840
5362  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 18 Feb 2000 12:11:58 +0100
5364 dpkg (1.6.8) frozen unstable; urgency=low
5366   * Turn --force-overwrite on by default
5367   * Fix a couple of small buildsystem errors
5368   * Support multiple adjacent newlines in control-style files, Closes: Bug#56056
5369   * Updated Czech and Swedish translations
5370   * Revert patch to change order of things when purging a package,
5371     Closes: Bug#56374
5372   * Handle failed open of /dev/tty in dpkg -l, Closes: Bug# 55041
5373   * Update Japanese translations, Closes: Bug# 56641, #57494, #57595
5374   * Update extended description for dpkg-dev, Closes: Bug# 56675
5375   * Implement verbose option for update-alternative
5376   * Fix conflicts handling
5378  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 10 Feb 2000 15:31:31 +0100
5380 dpkg (1.6.7) frozen unstable; urgency=low
5382   * dpkg compiles on HP-UX, Solaris and IRIX now
5383   * start-stop-daemon can chroot now, Closes: Bug#54513
5384   * Allow space between # and the bugnumber in the changelog
5385   * Display package description with waddnstr, Closes: Bug#54313
5386   * Updated Japanese manpages, Closes: Bug#54690, #55080
5387   * Upload full source for packages with version *-0.1, Closes: Bug#54651
5389  -- Wichert Akkerman <wakkerma@debian.org>  Sun, 16 Jan 2000 18:36:10 +0100
5391 dpkg (1.6.6) unstable; urgency=low
5393   * dpkg-buildpackage supports debsign, Closes: Bug#58333
5394   * fix update-alternatives manpage, Closes: Bug#53859
5395   * Updated Polish translation
5396   * Pass admindir to dpkg, Closes: Bug#54039
5397   * Fix dpkg -l output
5398   * Remove dpkg-safelist again, it had issues
5400  -- Wichert Akkerman <wakkerma@debian.org>  Fri,  7 Jan 2000 19:51:45 +0100
5402 dpkg (1.6.5) unstable; urgency=low
5404   * Update Spanish translation
5405   * Don't strip 8th bit in dselect packagelists, Closes: Bug# 49061
5406   * Don't use \z in dpkg-scansources, Closes: Bug# 53182
5407   * Correctly unregister internals manual, Closes: Bug# 53200
5408   * dselect helpessages can be translated now, Closes: Bug# 51381
5409   * dselect UI tweaks, including a new --expert mode
5410   * Added build-depends, Closes: Bug# 53394
5411   * Added THANKS-file with people who have contributed to the code
5412   * Use full width of tty in packagelisting, Closes: Bug# 53395
5413   * Add -z option to dpkg-deb to set compressionlevel when building
5414     packages, Closes: Bug# 53398
5415   * Fix segfaults when producing a diff between current and new conffile,
5416     Closes: Bug# 52197
5418  -- Wichert Akkerman <wakkerma@debian.org>  Sat, 25 Dec 1999 04:47:09 +0100
5420 dpkg (1.6.4) unstable; urgency=low
5422   * No longer byte-compile for emacs
5423   * Add Swedish translation
5424   * start-stop-daemon: honour --oknodo if we fail to kill a process
5425     Closes: Bug#52580,#52185,#52457
5426   * Fix dselect program description, Closes: Bug#52328
5427   * Fix architecture-detection in dpkg-gencontrol, Closes: Bug#52616
5428   * Accept single-number values in update-rc.d, Closes: Bug#46810
5430  -- Wichert Akkerman <wakkerma@debian.org>  Sun, 19 Dec 1999 16:27:48 +0100
5432 dpkg (1.6.3) unstable; urgency=high
5434   * Comment dselect changes from 1.6.2, they seem to have a problem
5435     Closes: #52043,52058,52088,51437
5436   * Really fix emacs-stuff. Hopefully. Closes: #51919,51525
5437   * Fix copyright display in dselect menu, Closes: #52093
5438   * Fix uid/gid-changes in start-stop-daemon, Closes: #52081
5440  -- Wichert Akkerman <wakkerma@debian.org>  Tue,  7 Dec 1999 17:06:00 +0100
5442 dpkg (1.6.2) unstable; urgency=low
5444   * New dpkg-scansources, Closes: #51888
5445   * Fix default for elispdir, Closes: #51919,51525
5446   * New manpages for cleanup-info and dpkg-divert, Closes: #51539, 46657
5447   * Buildsystem updates, Closes: #51525, 51855, 51914
5448   * Modify dselect behaviour for suggests and recommends
5450  -- Wichert Akkerman <wakkerma@debian.org>  Sun,  5 Dec 1999 19:29:50 +0100
5452 dpkg (1.6.1) unstable; urgency=low
5454   * Fix some slight packaging errors
5456  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 26 Nov 1999 20:18:48 +0100
5458 dpkg (1.6) unstable; urgency=low
5460   * Major overhaul of the buildsystem
5461   * Update Standards-Version to 3.1.0
5462   * Move to version 1.6 to reflect the amount of changes made
5463   * Fix mixup with Czech and Polish translations, Closes: Bug# 48986
5464   * utils/start-stop-daemon.c: Added ability for user.group arg to
5465     --chuid. Also, always call initgroups() when using --chuid.
5466   * utils/start-stop-daemon.8: Document above change, also add note to the
5467     --make-pidfile option concerning its problem with daemons that fork
5469  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 25 Nov 1999 04:30:01 +0100
5471 dpkg (1.4.1.19) unstable; urgency=low
5473   * Fix replaces for dpkg-dev
5474   * Add gettext-support to dselect
5475   * Added Czech and Polish translations for dpkg
5476   * Fixed incorrect patch for --print-architecture (oops, oh well
5477     it was already broken when there was no gcc anyway :)
5478   * Fixed missing mipseb that was supposed to be in the archtable
5479   * Better output in update-alternatives --config, now shows the
5480     current, and the prefered choices.
5481   * dpkg-name: ignore epoch when getting version
5482   * 50dpkg-dev.el: add it as a conffile for dpkg-dev
5483   * internals.sgml: Removed references to the versions of build tools,
5484     they date the document.
5485   * debian-changelog-mode.el: added hint for better log-email handling
5486   * Added recognition for new source-depends fields for policy
5487     referenced in bug #41232
5488   * dpkg-buildpackage: add -ap option to force a pause prior to starting
5489     the sign process. This helps for people who don't keep their signatures
5490     on the filesystem (on a floppy perhaps, then mount as needed).
5491   * minor script corrections
5492   * dpkg-dev control: Change gcc to c-compiler in the recommends field, and
5493     move cpio, patch and make to the depends line
5494   * Leave file info intact in available when installing packages. MD5sum,
5495     Filename, and MSDOS-Filename used to get lost when installing a
5496     package.
5497   * Added armv4l to archtable
5498   * Added 'D' to the list of choices for conffile handling, closes: #48137
5499   * Converted internals.sgml to debiandoc format. Also added a dpkg-doc
5500     package that contains the generated output from this file (.ps, .html
5501     and .info), includes doc-base support. Internals.sgml is also not
5502     generated on the binary-arch target, and is no longer "byhand"
5503   * dpkg-gencontrol: add "Source" to the fields placed in the control file
5504   * dpkg-parsechangelog: fixed loop for parsepath (#48526)
5505   * main/{processarc.c,depcon.c}: added new structure for conflictors,
5506     which contains a struct for conflicts. This is used to create an array
5507     of conflicting packages, which are going to be replaced. Allows for
5508     multiple conflicts and replaces. All conflictor handlers were
5509     converted to loops to handle each one (processarc.c).
5510   * dpkg-divert: Fix check for writable filesystem, closes: #48646
5512  -- Wichert Akkerman <wakkerma@debian.org>  Sat, 30 Oct 1999 15:14:40 +0200
5514 dpkg (1.4.1.18) unstable; urgency=low
5516   * Backout dep check patch
5518  -- Ben Collins <bcollins@debian.org>  Sat, 23 Oct 1999 00:39:24 -0400
5520 dpkg (1.4.1.17) unstable; urgency=low
5522   * Add support for long filenames, along with --assert-longfilenames
5523   * Added --chuid option to start-stop-daemon to allow switching to
5524     a different uid when starting a process
5525   * Add mipseb and mipsel to the archtable too, since mips and mipseb are
5526     both viable names for the mips big endian arch, and mipsel is also needed
5527   * Update dpkg-architecure's archtable
5528   * Added --config option to update-alternatives to allow easy changing
5529     of the registered alternatives for a specific name
5530   * Updated the deb-control(5) man page with all the current fields
5531     and uses
5532   * Made the large info screen show 5 lines of the pkglist so that
5533     it scrolled properly, and still showed the cursor in dselect
5534   * Removed references to dpkg(5) which seems to not exist anymore
5535   * Fixed `dpkg-deb --help' and dpkg-deb(1) from reporting --no-check
5536     when it's actually --nocheck (went with the hardcoded option, so
5537     this is just a documentation fix).
5538   * Added better check in disk.setup for a working NFS server. Makes
5539     it compatible with other non-Linux servers.
5540   * Corrected dpkg(8)'s example of using dpkg -i (showed it used with
5541     a .tar.gz instead of a .deb)
5542   * Applied patch to correct improper TMPDIR handling in dpkg-deb
5543   * When encountering an error in extracting the tar archives in the
5544     packages, we should abort the install, not simply give an error
5545     and continue.
5546   * Make dpkg give the builtin arch if there was an error while exec()'ing
5547     the C compiler with --print-architecture. We still fail if the
5548     output from gcc was bad in some way, since they may be of importance.
5549   * Removed the maintainer-configure portion in debian/rules, since
5550     we should be shipping the source with all the auto* stuff
5551     already generated anyway
5552   * Removed the ltconfig patch, and resort to a debian/rules fix
5553     to libtool itself after running configure
5554   * Removed shlibs.default.i386. It's now a template for arch porting to
5555     Debian/dpkg, we install it still, if there exists a file matching the
5556     arch
5557   * Reimplemented a better *stat cache for the removal checking code,
5558     this helps a lot when doing upgrades where the packages are a lot
5559     different in layout
5560   * Increased largemem auto detection to >= 24megs, since it's not uncommon
5561     for dpkg to actually use 16megs of ram all on its own when using the
5562     largemem setting (old minimum was 16megs)
5563   * debian/rules: chmod -x everything in /usr/lib to make lintian happy.
5564     in the clean phase just rm -rf $(BUILD), we don't need to run
5565     distclean and all that other stuff. Don't run "make dist", we
5566     simply copy the .tar.gz that dpkg-source creates for the byhand
5567     source.
5568   * Make start-stop-daemon exit(1) when we don't find one of the
5569     pid's we are trying to kill, in accordance with the man page.
5570   * When running --configure on an already installed package, just
5571     say it's installed, and not that it is in an unconfigurable
5572     state
5573   * Fixed some compiler warnings
5574   * Make dpkg check for uid 0 requirement, before checking the path
5575     since not being root, is probably the reason that the PATH is
5576     borked in the first place
5577   * Make -p short for --print-avail, and -P short for --purge
5578   * Fix typo in md5sum(1) man page
5579   * start-stop-daemon: Add --background and --make-pidfile options
5580   * update-alternatives: make sure we remove "old" symlinks when they
5581     are no longer pertinent. Add /etc/alternatives/README that refers
5582     to the update-alternatives(8) man page.
5583   * dpkg-divert: Add check for being able to write to the old/new
5584     destination before doing a rename. We fail on this, without
5585     changing the diversion registry
5586   * Fix bad regex in update-rc.d
5588  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 21 Oct 1999 17:49:03 +0200
5590 dpkg (1.4.1.16) unstable; urgency=medium
5592   * Hardcode ENOENT again since the errno-part of the POSIX module
5593     isn't in perl-*-base. sigh.
5595  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 15 Oct 1999 04:01:14 +0200
5597 dpkg (1.4.1.15) unstable; urgency=low
5599   * non-maintainer release.
5600   * Move dselect into its own package
5601   * Remove conffiles before directories when purging
5602   * Check if integrity from other packages will broken when processing
5603     an archive
5604   * dpkg-deb can handle package made with Linux ar.
5605   * Add check to update-alternatives to see if the sequencecode is between
5606     0 and 99
5607   * Fix failed assertion, which was actually two bugs: a logic error in
5608     checkforremoval and a wrong assumption in findbreakcycle
5609   * dselect doesn't die when you resize the terminal
5610   * check if a file is also in a new package before removing it when upgrading
5611   * offer to show a diff between the old and new conffile
5612   * dpkg-scanpackages: don't abort but only skip a package if we can't
5613     open it
5614   * Add HURD-support to  start-stop-daemon
5615   * Reinstate patch to not read available when doing --list-files
5616   * Add a couple of --force options to handle changed conffiles
5618  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 14 Oct 1999 04:20:56 +0200
5620 dpkg (1.4.1.14) unstable; urgency=low
5622   * non-maintainer release.
5623   * dpkg-source works again on empty diffs, Closes: Bug# 46159
5624   * Install locale-files in /usr/share, Closes: Bug# 46631
5625   * Make /usr/share/doc/dpkg-dev a symlink to /usr/share/doc/dpkg
5626   * Actually include fix to make update-alternatives works filesystems (oops!)
5627   * Check if codenumber is between 0 and 99, Closes: Bug# 46810
5629  -- Wichert Akkerman <wakkerma@debian.org>  Tue,  5 Oct 1999 19:19:05 +0200
5631 dpkg (1.4.1.13) unstable; urgency=low
5633   * Non-maintainer release.
5634   * NMU number 13, lets see what breaks :)
5635   * update-alternatives works across filesystems now
5636   * Make -sgpg work in dpkg-buildpackage (typo)
5638  -- Wichert Akkerman <wakkerma@debian.org>  Tue, 28 Sep 1999 01:26:19 +0200
5640 dpkg (1.4.1.12) unstable; urgency=low
5642   * Non-maintainer release.
5643   * Fix typo in chmodsafe_unlink that made dpkg chmod files that
5644     weren't setuid or setgid
5646  -- Wichert Akkerman <wakkerma@debian.org>  Sun, 26 Sep 1999 02:41:30 +0200
5648 dpkg (1.4.1.11) unstable; urgency=low
5650   * Non-maintainer release.
5651   * Added sparc64 to archtable
5652   * Added entries for newer alpha architectures to the archtable
5653   * Always run patch and diff with LANG set to C.
5654   * Handle diff warning for files with no newline at the end of file
5655     Closes: Bug#45642
5657  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 24 Sep 1999 03:23:54 +0200
5659 dpkg (1.4.1.10) unstable; urgency=low
5661   * Non-maintainer release.
5662   * Build dpkg-scansources manpages using pod2man
5663   * dpkg-buildpackage changes:
5664     + fix signinterface-detection
5665     + use gpg by default if $HOME/.gnupg/secring.gpg exists
5667  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 16 Sep 1999 15:36:43 +0200
5669 dpkg (1.4.1.9) unstable; urgency=low
5671   * Non-maintainer release.
5672   * Updated dpkg-scansources to current version from Roderick Schertler
5673   * Update location of GPL in internals-manual
5674   * Update location of GPL and dpkg copyright in all manpages
5675   * Include patch from Roman Hodek for dpkg-source to handle diffs of files
5676     with lines that begin with two dashes.
5677   * Move dpkg-scansources to dpkg-dev package
5678   * Move dpkg-scansources manpage to section 8
5679   * Fix error that moved a lot of manpages to the dpkg package.
5680   * It looks like not reading the available-file for listfiles was not greeted
5681     with much enthiousiasm, so reverse the change.
5683  -- Wichert Akkerman <wakkerma@debian.org>  Wed, 15 Sep 1999 03:45:07 +0200
5685 dpkg (1.4.1.8) unstable; urgency=low
5687   * Non-maintainer release.
5688   * Merge dpkg-doc-ja
5689   * Add patch from Raphaël Hertzog <rhertzog@hrnet.fr> for dpkg-scansources
5690     to skip comments in signatures. This allows packages to also use GnuPG.
5692  -- Wichert Akkerman <wakkerma@debian.org>  Mon, 13 Sep 1999 04:16:33 +0200
5694 dpkg (1.4.1.7) unstable; urgency=low
5696   * Non-maintainer release.
5697   * Use /usr/share/doc
5698   * Merge changes from dpkg-iwj tree:
5699     + change section in dpkg-deb.1 to 1
5700     + Use COPYINGFILE instead of hardcoded GPL-location in showcopyright()
5701     + varbufprintf (used for some error messages) vsnprintf return value
5702       assumption changed to correspond to reality rather than glibc-doc.
5703     + Don't read available-info when not needed (slightly improved from 
5704       dpkg-iwj: don't read for listfiles either :)
5705     + Cleanup --assert-* code
5706     + Assume largemem on systems without sysinfo(2).
5707     + modify preexec-script for easier script execution
5708     + Do not chmod(".../path/to/symlink",0600) causing many bad perms.
5709     + Sanity-check numbers for parameters
5710     + Move some logic from process_archive into wantinstall
5711     + Print '0' in dpkg-scanpackages if no packages found.
5713  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 10 Sep 1999 04:06:32 +0200
5715 dpkg (1.4.1.6) unstable; urgency=low
5717   * Non-maintainer release.
5718   * scripts/dpkg-architecture.pl: Update to latest version.
5719   * scripts/dpkg-architecture.1: Likewise.
5720   
5721  -- Marcus Brinkmann <brinkmd@debian.org>  Sat, 24 Jul 1999 18:24:21 +0200
5723 dpkg (1.4.1.5) unstable; urgency=low
5725   * Non-maintainer release.
5726   * (dpkg-dev): Use emacsen-common for debian-changelog-mode.el
5727     (closes:Bug#20776,#31030).
5728   * Removed references to the packaging and policy manuals from debian/control.
5729   * Put debian-changelog-mode.el in dpkg-dev and remove from dpkg (closes:Bug#29271).
5730   * Fix paths in 50dpkg-dev.el using Roderick Schertler's patch
5731     (closes:Bug#28270,#29702,#26876,#29184,and others).
5732   * Note that bug number 17367 was fixed in 1.4.0.26.
5733   * Add Zack Weinberg's install-info patch for GNU install-info
5734     compatibility (closes:Bug#28965).
5735   * Add dpkg-architecture stuff from Marcus Brinkmann.
5736   * Remove debian-keyring suggests from dpkg.
5737   * Add -k<keyid> flag to dpkg-buildpackage.
5738   * --textmode works in gpg, remove kluge from dpkg-buildpackage.
5739   * Cleanup configure.in slightly (stop using tl_ macros, fix gettext stuff).
5740   * Attempt to make Debian source useful for non-Debian systems
5741     (i.e. distclean tree instead of maintainer-clean tree).
5742   * Sync with wichert's 1.4.1.4.
5743   * Add my ltconfig-1.3.2.diff (RPATH workaround).
5744   * Add dpkg-scansources program and man page.
5745   * Man pages in /usr/share/man.
5747  -- Joel Klecker <espy@debian.org>  Tue, 13 Jul 1999 18:12:15 -0700
5749 dpkg (1.4.1.4) unstable; urgency=low
5751   * Also change developer-keyring to debian-keyring for dpkg-dev package
5752   * Include spanish translation from Nicolás Lichtmaier <nick@debian.org>
5753   * Depend on perl5 instead of perl
5755  -- Wichert Akkerman <wakkerma@debian.org>  Mon,  5 Jul 1999 00:04:14 +0200
5757 dpkg (1.4.1.3) unstable; urgency=low
5759   * Modify tarobject() so it does not complain if we are creating a
5760     directory that replaces a removed file. This works around the
5761     problem that the filedatabase doesn't remember what filetype a
5762     file was by assuming it already was a directory
5764  -- Wichert Akkerman <wakkerma@debian.org>  Mon, 31 May 1999 23:49:23 +0200
5766 dpkg (1.4.1.2) unstable; urgency=low
5768   * Non-maintainer upload
5769   * Rebuild, so this is glibc2.1 (unless you're on m68k), which is rumoured
5770     to also fix the i8n-problems.
5771   * Incorporate 1.6 format of .changes, patch from Guy Maor
5772   * Fix bug in section-handling of dpkg-scanpackages, patch from Guy Maor
5773   * Disable force-overwrites again, since we're in unstable
5774   * Assume largemem on systems for which sysinfo is not available, Bug# 33658
5776  -- Wichert Akkerman <wakkerma@debian.org>  Wed, 26 May 1999 15:50:17 +0200
5778 dpkg (1.4.1.1) unstable; urgency=low
5780   * Non-maintainer upload
5781   * Install emacs-startup scripts with mode 0644 (lintian)
5782   * Incorporate changes in NMU 1.4.0.32 made by Vincent Renardias
5783     <vincent@waw.com> for slink:
5784     + Apply patch from Jim Pick for update-alternatives.pl to
5785       fix 'Important' bugs #30891 in dpkg and (#27382, #27383, #27696,
5786       #27703, #27736, #27097(merged bugs)) in jdk1.1.
5787   * Incorporate changes in NMU 1.4.0.33 made by me for slink:
5788     + Fix illegal perl construct (Bug# 30985)
5789     + Initialize oialtname->useinstead and oicontest->camefrom to 0 (Bug# 30397)
5790     + Update shlibs.default for libncurses 4 (Bug# 30332)
5791     + Suggest debian-keyring instead of developer-keyring (Bug# 27376, 30248)
5792     + Abort dpkg-divert when attempting to divert a directory (Bug# 30126)
5793     + Make dpkg-deb.1 aware that it is in section 1, not 8
5794     + Fix section in reference to dpkg-deb in dpkg.8 (Bug# 29740)
5795     + Fix typo in --force-help (Bug# 26193)
5796     + Correct path for debian-changelog-mode.el (Bug# 24606)
5797     + Make disk-method for dpkg use /var/run instead of /tmp to fix
5798       symlink-attacks (Bug# 21399)
5799     + Document -n and -f options for update-rc.d in manpage (Bug# 15913)
5800     + Add --abort-after option to change after how many errors we abort and
5801       change the default to 50 (Bug# 22940)
5802     + Fix controllib.pl: don't check debian/substvars unless needed, and
5803       don't depend on language settings (Bug# 31508)
5804     + Allow a - in the architecture-field (Bug# 25537)
5806  -- Wichert Akkerman <wakkerma@debian.org>  Mon,  1 Feb 1999 00:44:01 +0100
5808 dpkg (1.4.1) unstable; urgency=low
5810   * Maintainer release by IWJ.
5811   * Changed Maintainer: field description.
5812   * Various changes to make the damn thing build.
5813   * Add .cvsignore files.
5815  -- Ian Jackson <ian@davenant.greenend.org.uk>  Sun,  1 Nov 1998 17:33:38 +0000
5817 dpkg (1.4.0.31) unstable; urgency=low
5819   * dpkg/processarc.c: Make newfileslist static like the other arguments
5820     for register_cleanup's cu_* functions.
5821   * N-th fix for controllib.pl (simulate old behavior by trying stdin,
5822     stdout, and stderr for getlogin()).
5823   * Enable --force-overwrite for slink release, and comment where to do
5824     so (dpkg/main.c).
5825   * Recompile against ncurses4.
5827  -- Daniel Jacobowitz <dan@debian.org>  Thu, 22 Oct 1998 17:37:23 -0400
5829 dpkg (1.4.0.30) unstable; urgency=low
5831   * dpkg-dev isn't allowed to have a Recommends: debian-keyring (as that's
5832     in contrib), so it's now lowered to a Suggests: . Thanks to James Troup
5833     for pointing this out. 
5835  -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl>  Sat, 26 Sep 1998 13:59:23 +0200
5837 dpkg (1.4.0.29) unstable; urgency=low
5839   * For now, prefer PGP over GPG.
5841  -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl>  Tue, 22 Sep 1998 09:38:09 +0200
5843 dpkg (1.4.0.28) unstable; urgency=low
5845   * Added gpg (GNU Privacy Guard) support:
5846     * scripts/buildpackage.sh: default to GPG (unless no GPG, but only a PGP
5847       secret key file is found), as GPG, unlike PGP, is DFSG-free.
5848     * Updated dpkg-source(1), and added gpg(1) and pgp(1) to the SEE ALSO
5849       section.
5850     * Worked around broken textmode implementation in GPG.
5851     * dpkg-dev now Suggests: gnupg .
5852   * No longer includes developer-keys.pgp . Instead, dpkg now Suggests: and
5853     dpkg-dev now Recommends: developer-keyring.
5854   * Compiled with latest libstdc++ (2.9).
5856  -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl>  Mon, 21 Sep 1998 13:17:14 +0200
5859 dpkg (1.4.0.27) unstable; urgency=low
5861   * REALLY fixed dpkg-dev, and new attempt to placate installer on internals.
5863  -- Daniel Jacobowitz <dan@debian.org>  Fri, 27 Jul 1998 15:58:04 -0400
5865 dpkg (1.4.0.26.0.1) unstable; urgency=low
5867   * Binary-only upload for x86 and fixed dpkg-dev
5869  -- Daniel Jacobowitz <dan@debian.org>  Fri, 24 Jul 1998 15:58:04 -0400
5871 dpkg (1.4.0.26) unstable; urgency=low
5873   * Non-maintainer upload.
5875   * Make --root work with maintainer scripts (Patch by Scott Barker,
5876     bugs #4863 and #3170).
5877   * Fix $(lispdir) bug if compiling without emacs (noticed by Joey Hess).
5879  -- Daniel Jacobowitz <dan@debian.org>  Thu, 23 Jul 1998 12:02:04 -0400
5881 dpkg (1.4.0.25) unstable; urgency=low
5883   * Non-maintainer upload.
5884   
5885   * Add the requested -nc option to dpkg-buildpackage (Do
5886     not clean source tree, useful in debugging cycles).
5887   * controllib.pl: Again by popular acclamation, fix the getlogin() warnings.
5888     I redirected STDERR onto fd 0 before calling getlogin().
5889   * tools.m4: Fix display of whether c++ works.
5890   * dpkg-deb/extract.c: glibc 2.1 and some kernels want to make
5891     fflush() move the current fpos.  Until someone can fix that,
5892     protect with seek.
5893   * Add an extra 0, to dselect/{pkg,meth}keys.cc so it compiles again.
5894   * Start using lchown() if available.
5895   * Really fix #20353. (aclocal.m4 was the wrong place; that's a generated
5896     file.  The correct place is in tl_canon.m4.)
5898  -- Daniel Jacobowitz <dan@debian.org>  Tue, 21 Jul 1998 03:14:14 -0400
5900 dpkg (1.4.0.24) unstable; urgency=low
5902   * Non-maintainer upload.
5904   * dpkg/main.c: Turn --force-overwrite off as default.
5905   * dpkg/main.c: don't list --force-overwrite as default in --force-help,
5906     noticed by Peter Weiss <Peter.Weiss@Informatik.Uni-Oldenburg.DE> and
5907     others. [#23542, part of #17409].
5908   * dpkg/dpkg.8: replaced with a newer version from Jim Van Zandt
5909     <jrv@vanzandt.mv.com>. [#21061]
5911   * dpkg-deb/build.c (do_build): add missing \n and improve error message
5912     when conffile name is too long. [#7057]
5914   * scripts/update-alternatives.8: replaced with better man page from
5915     Charles Briscoe-Smith <cpb4@ukc.ac.uk>. [#17283]
5916   * scripts/dpkg-source.1: corrected logic error in documentation for
5917     dpkg-gencontrol's -p option, as noticed by Oliver Elphick
5918     <olly@linda.lfix.co.uk>. [#14655]
5919   * scripts/controllib.pl (findarch): correct typo in error message,
5920     noticed by Yann Dirson <ydirson@a2points.com>. [#22106]
5921   * scripts/dpkg-buildpackage.sh: fix typo s/source version/source
5922     maintainer/, noticed by Joey Hess <joey@kite.ml.org>, Adam P. Harris
5923     <apharris@onshore.com> and others. [#10175, #15559]
5924   * scripts/dpkg-genchanges.pl: applied patch from Roman Hodek
5925     <Roman.Hodek@informatik.uni-erlangen.de> which solves problems with
5926     architecture specific packages in mostly architecture independent
5927     multi-binary source packages. [#14341, #20192].
5929   * doc/Makefile.am: remove any reference to the packaging manual, as it is
5930     now provided by the separate "packaging-manual" package.
5931   * doc/packaging.sgml: removed.
5932   * doc/developer-keys.pgp: updated to the current debian keyring.
5934   * aclocal.m4: applied patch from Joel Klecker <jk@espy.org> to handle
5935     egcs' --print-libgcc-file-name output. [#20353]
5936   
5937   * debian/copyright: correct FSF address.
5938   * debian/rules: add code from lesstif's debian/rules to make libtool
5939     less of a fool (i.e. not use -rpath and to link shared libraries
5940     against libraries it depends on).  Code by Richard Braakman
5941     <dark@xs4all.nl> and Yann Dirson <dirson@debian.org>.
5942   * debian/rules: remove all reference to the packaging manual as it is
5943     now provided by the seperate "packaging-manual" package. [#21581,
5944     #21186, #22698, #23342]
5945   * debian/rules: link dpkg-divert.1.gz to undocumented.7.gz as the lack
5946     of a real manpage has been reported in #11093.
5947   * debian/README.compile: removed gawk and bogus comment about gettext
5948     being in experimental, as reported by Santiago Vila <sanvila@unex.es>
5949     [#23344].  Added libpaperg (debiandoc2ps needs paperconf).
5950   * debian/shlibs.default.i386: updated for glibc, reported by Herbert Xu
5951     <herbert@gondor.apana.org.au>. [#13140]
5952   * debian/control (dpkg-dev): depend on perl as POSIX (not a part of
5953     perl-base) is needed by most of the perl dpkg-* scripts, noticed by
5954     Joel Klecker <jk@espy.org>. [#22115]
5956  -- James Troup <jjtroup@comp.brad.ac.uk>  Wed, 24 Jun 1998 14:38:52 +0200
5958 dpkg (1.4.0.23.2) frozen unstable; urgency=low
5960   * Non-maintainer upload.
5961   * dpkg/main.c: Turn --force-overwrite back on as default.
5963  -- James Troup <jjtroup@comp.brad.ac.uk>  Tue, 23 Jun 1998 22:19:26 +0200
5965 dpkg (1.4.0.23.1) frozen unstable; urgency=low
5967   * No real changes, only a new version code to make this go to frozen too.
5969  -- Nils Rennebarth <nils@debian.org>  Wed, 10 Jun 1998 17:29:58 +0200
5971 dpkg (1.4.0.23) frozen unstable; urgency=low
5973   * Non-maintainer bug-fix release
5974   * Update the disk method to the hamm directory structure (Bug#21000)
5976  -- Nils Rennebarth <nils@debian.org>  Sun,  7 Jun 1998 19:14:51 +0200
5978 dpkg (1.4.0.22) frozen unstable; urgency=medium
5980   * Non-maintainer bug-fix release
5981   * Install main changelog file as `changelog.gz' instead of
5982     `changelog.dpkg.gz' (Debian Policy, section 5.8) (Bug#6052,15157)
5983   * Avoid use of /tmp/*.$$ in preinst and postinst (Bug#19712)
5984   * Make sure diversions file is always created with mode 0644 (Bug#19494)
5985   * When removing a file, chmod it to 000 if it's a char or block
5986     device or remove its s[ug]id bits, if any (Bug#6006)
5987   * Minor fixes in the programmer's manual (Bug#6206)
5988   * Always create readable status and available files
5989     (Bug#9869,11887,14636,15786,19146)
5990   * Make dpkg-gencontrol honour -DArchtecture=xxxx (Bug#9893)
5991   * Allow different archs for the same binary in debian/files (Bug#9894)
5992   * Added workaround in /usr/lib/dpkg/methods/disk/setup
5993     to avoid bash warning (Bug#10111,10131)
5994   * Recognize old .deb packages with other locales (Bug#12232)
5995   * Added `SHELL=bash' to debian/rules: it uses bash-specific structs
5996   * Move some files from dpkg to dpkg-dev (part of Bug#13295)
5997   * Minor fix in packaging manual regarding to Standards-Version (Bug#14696)
5998   * Fixed --altdir and --admindir in update-alternatives (Bug#15332)
5999   * Strip /usr/lib/libdpkg* (Bug#15671)
6000   * dpkg: send output of --help, --force-help and -Dhelp to stdout
6001     (Bug#16051,18574)
6002   * send correct signals with start-stop-daemon (Bug#17258)
6003   * Make `dpkg-divert --test --remove' work as expected (Bug#19531)
6004   * Determine properly the architecture if gcc is egcs (Bug#20353)
6006  -- Juan Cespedes <cespedes@debian.org>  Sun,  5 Apr 1998 17:37:01 +0200
6008 dpkg (1.4.0.21) unstable; urgency=low
6010   * Non-maintainer release to include a new update-rc.d
6011   * Fixed date on files in the archive from 2017 and 2018 by running
6012     touch foo; find . -newer foo | xargs -r touch; rm foo
6013   * Changed start-stop-deamon message "No <program> found; none killed." to
6014     "No <program> found running; none killed."
6016  -- Miquel van Smoorenburg <miquels@cistron.nl>  Thu,  5 Mar 1998 14:19:46 +0100
6018 dpkg (1.4.0.20) unstable; urgency=low
6020   * Disabled --force-overwrites.
6021   * Removed core file from source
6023  -- Michael Alan Dorman <mdorman@debian.org>  Tue,  9 Jan 1998 03:34:28 -0500
6025 dpkg (1.4.0.19) unstable; urgency=low
6027   * Changed methods/disk.setup to use output of
6028     'dpkg --print-installation-architecture' instead of hard-coded 
6029     '1386' (fixes #10995).
6030   * Patched dpkg-source to properly quote metacharacters in strings 
6031     before using them in pattern-matching expressions (fixes #10811).
6032   * Fixed several documentation typos (fixes #10764).
6033   * dpkg-source now works around 100-character filename limitation of cpio
6034     (fixes #10400).
6035   * dpkg-source now properly handles '\ no newline in source' message from
6036     patch (fixes #5041).
6037   
6038  -- Klee Dienes <klee@debian.org>  Sun, 13 Jul 1997 19:28:22 -0700
6040 dpkg (1.4.0.18) unstable; urgency=low
6042   * dpkg-source now uses new -z option to GNU patch (still needs to be
6043     changed to detect and use old version as well) (fixes #9904, #10005, #10007).
6044   * Added i686 to archtable.
6045   * shlibs.default now uses xlib6 instead of elf-x11r6lib (fixes #9926).
6046   * debian-changelog-mode now uses interruptible completing type-in fields
6047     instead of the previous 'select-a-letter method'.  I consider this
6048     better and more standard than the previous way, but I'd welcome
6049     opinions to the contrary.  Consider this a 'probationary' change for
6050     now (fixes #9873, #9874).
6052  -- Klee Dienes <klee@debian.org>  Sun, 25 May 1997 09:56:08 -0400
6054 dpkg (1.4.0.17) unstable; urgency=low
6056   * All of the dpkg binaries (but not dpkg-dev or dselect) now speak
6057     french, thanks to patches from Christophe Le Bars <clebars@teaser.fr>
6058   * Fix leading spaces before day in 822-date.
6059   * Changes from Tom Lees <tom@lpsg.demon.co.uk> to better support
6060     building on non-Debian systems; minor Makefile fixes.
6061   * Added 'ppc powerpc powerpc' to archtable.
6062   * Changed documentation paper size to US/Letter instead of A4 (A4
6063     may be better, but it's easier to print US/Letter on A4 than it is 
6064     to print A4 on US/Letter).
6065   
6066  -- Klee Dienes <klee@debian.org>  Tue,  13 May 1997 15:24:31 -0400
6068 dpkg (1.4.0.16) experimental; urgency=low
6070   * Added generated sources to GNU-format source archive so it no longer
6071     requires perl to build.
6073  -- Klee Dienes <klee@debian.org>  Sat, 10 May 1997 17:34:29 -0400
6075 dpkg (1.4.0.15) experimental; urgency=low
6077   * Changed dpkg-genchanges to check for ($arch == $substvar{'Arch'}), not
6078     ($arch ne 'all') (fixes #9688).
6079   * Fixed bug in start-stop-daemon.c (was using optarg after argument
6080     parsing was over) (fixes #9597, #9603, #9364).
6081   * Provide 50dpkg-dev.el for xemacs as well as emacs.
6082   * Explicitly provide path for debian-changelog-mode in 50dpkg-dev to use
6083     .el file as workaround until xemacs can read emacs19 .elc files.
6084   * Pass top_distdir explicitly to 'make dist' to accomodate bug in
6085     automake_1.1o-1.
6086   * Fix debian/build to make html documentation without including
6087     directories in tar archives (fixes #9348).
6088   
6089  -- Klee Dienes <klee@debian.org>  Fri,  9 May 1997 13:17:18 -0400
6091 dpkg (1.4.0.14) experimental; urgency=low
6093   * Fixed buglet in install-info.pl (fixes #9438).
6094   * Re-write of update-rc.d.pl, primarily by Miquel van Smoorenburg
6095     <miquels@cistron.nl> (fixes #9434, #9436).
6096   * Renamed "dpkg Programmer's Manual" to "dpkg Internals Manual".
6097   
6098  -- Klee Dienes <klee@debian.org>  Tue,  6 May 1997 22:01:07 -0400
6100 dpkg (1.4.0.13) experimental; urgency=low
6102   * Fix to start-stop-daemon so that it still takes numeric arguments (had
6103     been broken in 1.4.0.12) (fixes #9598).
6104   * Fix 822-date to sanity-check localtime() output (seconds must be the
6105     same as GMT).
6106   * Patch from Guy Maor <maor@ece.utexas.edu> to dpkg-source.pl to support
6107     pristine (MD5-equivalent) upstream sources.
6108   * Patch from Michael Alan Dorman <mdorman@calder.med.miami.edu> to
6109     update-rc.d.pl to fix handling multiple start/stop entries on a single
6110     line.
6111   * Several fixes to dpkg-genchanges to support -B option (added in
6112     1.4.0.12) (fixes #9340).
6113   * Handle errors from 822-date in debian-changelog-mode.el.
6114   * Changed cl-debian.pl to correctly handle extra whitespace in changelog
6115     datestamps.
6117  -- Klee Dienes <klee@debian.org>  Mon,  5 May 1997 18:12:43 -0400
6119 dpkg (1.4.0.12) experimental; urgency=low
6121   * Re-wrote 822-date for clarity and to support timezone offsets >= 12h
6122     (New Zealand in DST is +1300, for example) (fixes #7130).
6123   * Patch from Juergen Menden <menden@morgana.camelot.de> to support
6124     archdependent-only builds (fixes #8912, #9245, #5359).
6125   * Fix archtable entry for powerpc (fixes #8794).
6126   * Strip /sbin/* and /usr/sbin/* in debian/rules (fixes #8853).
6127   * Moved start-stop-daemon to /sbin (fixes #8669).
6128   * Set sharedstatedir and localstatedir for $(MAKE) install in
6129     debian/rules (fixes #8852).
6130   * Fixes for update-rc.d(8) from Jim Van Zandt <jrv@vanzandt.mv.com>
6131     (fixes #8576).
6132   * No longer do variable substitutions when generating change file (fixes
6133     #5862).
6134   * Support symbolic signal names in start-stop-daemon (fixes #7715).
6135   * Add autoload for debian-changelog-mode to /etc/emacs/site-start.d
6136     (fixes #4519, #5841).
6137   * Add recommendation for gcc and make in dpkg-dev (gcc is needed for dpkg
6138     --print-architecture, used by dpkg-gencontrol; make is needed for any
6139     debian/rules file) (fixes #8470).
6140   * Minor changes to packaging manual section on source package
6141     conversion (fixes #6801).
6142   * Renamed "programmer's manual" to 'packaging manual'.
6143   * Start of new "programmer's manual" containing information on dpkg
6144     internals and build information.  This manual uses the new
6145     TeXinfo-SGML format, currently included in doc/.
6146   * dselect/pkgdepcon.cc now checks for debug not NULL, not just depdebug.
6147   * Changed makefiles to support building outside of source directory.
6148   * Include GNU-format source distribution with other non-debian packages.
6150  -- Klee Dienes <klee@debian.org>  Sun,  4 May 1997 11:08:19 -0500
6152 dpkg (1.4.0.11) experimental; urgency=low
6154   * Patches for alpha and libc6 from Michael Alan Dorman
6155     <mdorman@calder.med.miami.edu>.
6156   * Fixed minor problems in dpkg-shlibdeps regular expressions for libc6.
6157   * Fix regex to detect directory creation in dpkg-source.pl.
6158   * Minor changes for automake-1.1n.
6160  -- Klee Dienes <klee@debian.org>  Sun, 23 Mar 1997 18:09:33 -0500
6162 dpkg (1.4.0.10) unstable; urgency=medium
6164   * Fixed bug in controllib.pl (@fowner was entire passwd entry,
6165     not just [uid, gid] as it should have been).
6167  -- Klee Dienes <klee@debian.org>  Thu, 20 Mar 1997 13:06:52 -0500
6169 dpkg (1.4.0.9) unstable; urgency=low
6171   * Check fputs() return values for (ret >= 0), not (ret != 0) (fixes #7522).
6172   * dpkg-shlibdeps no longer gives error for Java and statically linked
6173     binaries (fixes #4988).
6174   * Change 'details of the old format' to 'details of the new format' in
6175     deb-old.5 (fixes #7605).
6176   * dpkg-source -b now warns (was previously silent) if maintainer changes
6177     create new subdirectories.  dpkg-source -x now warns (previously gave
6178     error) if maintainer changes create new subdirectories (partially
6179     fixes #6866, #6671, #5045, #6482).    
6180   * Added manual page for start-stop-daemon (8). 
6181   * Added C version of start-stop-daemon by 
6182     Marek Michalkiewicz <marekm@i17linuxb.ists.pwr.wroc.pl> (fixes #1670).
6183   * Converted to use GNU automake for the build process by Tom Lees 
6184     <tom@lpsg.demon.co.uk>.<
6185   * Preliminary support for dpkg functions as a shared library (now
6186     provides libdpkg.so, but much work needs to be done in better
6187     segregating and defining the interface).
6188   * Preliminary internationalization support by Galen Hazelwood
6189     <galenh@debian.org>.  Only the library, dpkg-deb, md5sum, and dpkg
6190     have been converted so far.  No translations have yet been
6191     constructed.
6192   * Handle 'libc.so.6 => /lib/libc.so.6 (0x40010000)' format from libc6
6193     ldd (fixes #7603, #7926, #8688, #9179, #9134, #8516).
6194   * Removed policy.sgml (it has been moved to the debian-policy package).
6195   * Include patch from Darren Stalder <torin@daft.com> for
6196     dpkg-buildpackage to choose PGP key based on Maintainer: field of 
6197     package being built (or -m<maintainer> option, if present) (fixes 
6198     #7898).
6199   * Changed controllib.pl to use $ENV{LOGNAME}, getlogin(), and $<
6200     (in that order) to determine the intended ownership of 
6201     debian/{files,substvars},  (fixes #7324, #6823, #5659, #5965, #5929,
6202     #9239, #5366).
6203   * Don't sign .dsc file in dpkg-buildpackage if building a binary-only
6204     release (fixes #7260).
6205   * Updated developer-keys.pgp to latest revision (fixes #6134).
6206   
6207  -- Klee Dienes <klee@debian.org>  Mon, 17 Mar 1997 16:11:24 -0500
6209 dpkg (1.4.0.8) unstable; urgency=medium
6211   * Corrected update-rc.d for bash 2.0
6212   * Updated developer-keys.pgp from
6213     http://www.iki.fi/liw/debian/debian-keyring.tar.gz
6215  -- Guy Maor <maor@ece.utexas.edu>  Mon, 3 Feb 1997 04:05:01 -0600
6217 dpkg (1.4.0.7) stable unstable; urgency=HIGH
6219   * Fixed --assert-support-predepends failing between unpack & configure.
6220   * Added --assert-working-epoch option.
6222  -- Guy Maor <maor@ece.utexas.edu>  Sat, 25 Jan 1997 23:02:11 -0600
6224 dpkg (1.4.0.6) stable unstable; urgency=high
6226   * Patched lib/vercmp.c to hopefully fix dselect epoch processing
6227     (Bug#6204), (Bug#4590).
6228   * Patched scripts/dpkg-buildpackage, scripts/dpkg-genchanges,
6229     scripts/dpkg-gencontrol for epoch processing, courtesy of Loic Prylli 
6230     <lprylli@graville.fdn.fr> (Bug#6138, Bug#5225).
6231   * Patched dpkg-genchanges to actually honor the -u switch to specify
6232     directory (Bug#5564).
6233   * Applied patch to main/archive.c to correct problems setting set[gu]id
6234     binaries, courtesy of Herbert Xu <herbert@greathan.apana.org.au>
6235     (Bug#5479). 
6236   * Applied patch to dpkg-source to correct debian-only package names,
6237     courtesy of Guy Maor <maor@ece.utexas.edu> (Bug#5355).
6239  -- Michael Alan Dorman <mdorman@calder.med.miami.edu>  Thu, 2 Jan 1997 11:36:09 -0500
6241 dpkg (1.4.0.5) stable frozen unstable; urgency=medium
6243   * Distribution for frozen too.
6245  -- Heiko Schlittermann <heiko@lotte.sax.de>  Thu, 5 Dec 1996 09:13:42 +0100
6247 dpkg (1.4.0.4) stable unstable; urgency=medium
6249   * Bug2962 fixed: patch from Ian Jackson applied
6250     (cursor keys won't work after search)
6251   * Manuals 2.1.2.2
6253  -- Heiko Schlittermann <heiko@lotte.sax.de>  Fri, 15 Nov 1996 20:21:18 +0100
6255 dpkg (1.4.0.3) unstable; urgency=medium
6257   * dpkg-source -x: created bad permissions (set x-bit for
6258     all files pointed to by a symlink)
6260  -- Heiko Schlittermann <heiko@lotte.sax.de>  Fri, 18 Oct 1996 18:32:06 +0200
6262 dpkg (1.4.0.2) unstable; urgency=medium
6264   * dpkg-buildpackage.sh: reverted the quoting change -- (you
6265     should use super, sudo, realy, but not su.  Or write a wrapper
6266     around su)
6267   * dpkg-buildpackge.sh: passing -m, -C, -v options to dpkg-genchanges
6268     more the way Ian likes ;-)
6269   * dpkg-source.pl: new function deoctify() as replacement for eval()
6270     (turn \ddd into the corresponding character) [rem: probably better
6271     solution would be to convert cpios output names into complete \ddd 
6272     representation as well tars output names] 
6273   * dpkg-source.pl: fixed 2 typos in failure message on creating 
6274     $origtargz.tmp-nest.
6275   * main/main.c: typo `tread' -> `treat'
6276   * main/enquiry.c: fixed the ignorance for some relations in --compare-versions
6277   * main/enquiry.c: missing version is now handled as described in `dpkg --help'
6278     (or at least as I understood `dpkg --help' PLEASE TRY IT)
6279   * lib/parsehelp.c: fixed parsing of epoch information
6281  -- Heiko Schlittermann <heiko@lotte.sax.de>  Sun, 6 Oct 1996 23:27:47 +0200
6283 dpkg (1.4.0.1) unstable; urgency=medium
6285   * dpkg-source: doesn't get screwed up from hardlinks
6286     in the archive now
6287   * dpkg-source: doesn't get screwed up from `unprintable' characters
6288     in file names (e.g. from the kbd package) 
6289   * controllib.pl: $varlistvile -> $varlistfile (thanx Karl Sackett)
6290   * dpkg-buildpackge: quoting for $rootcommand (thanx  Michael Meskes)
6291     and `eval' as default $rootcommand
6292   * dpkg-*, controllib.pl: created debian/files and debian/substvars
6293     are chown'ed to `getlogin()' and its group
6294   * doc/: mv changed to mv -f
6295   * dpkg-buildpackage: added an option -a for overriding the
6296     architecture in the changes _file_name_
6297   * dpkg-buildpackage: pass -m* -v* .. options to dpgk-genchangelog
6298   * dpkg-name moved to dpkg-dev
6300  -- Heiko Schlittermann <heiko@lotte.sax.de>  Sat, 21 Sep 1996 22:06:01 +0200
6302 dpkg (1.4.0) unstable; urgency=low (HIGH for new source format)
6304   * Corrected buffer overrun when dpkg-deb generates filename.  (Bug#4467.)
6305   * dpkg-shlibdeps works with DEBIAN/shlibs (thanks Heiko Schlittermann).
6306   * Added libm.so.5 to shlibs.default for i386/m68k.
6308   * Split binary package into two: dpkg and dpkg-dev.
6309   * dpkg-source(1) documents mode and ownership setting during extraction.
6311   * dpkg-scanpackages moved to /usr/bin.
6312   * Include /usr/bin/dpkg-deb, not dpkg-deb.dist; don't rename in scripts.
6313   * Copyright file changed slightly.
6314   * debian-changelog-mode uses magic key substitution strings.  (Bug#4419.)
6315   * Changed email address in control file to <ian@chiark.greenend.org.uk>.
6316   * Manuals and own Standards-Version: updated to 2.1.1.0.
6318  -- Ian Jackson <ian@chiark.greenend.org.uk>  Thu, 12 Sep 1996 01:13:33 +0100
6320 dpkg (1.3.14) unstable; urgency=low
6322   * dpkg-buildpackage new -tc (clean source tree) option.
6324   * Formatted documentation removed by `make clean' and so not in source.
6325   * Manuals and own Standards-Version: updated to 2.1.0.0.
6326   * Distribute {policy,programmer}.{html.tar,ps}.gz with each upload.
6328  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sun, 1 Sep 1996 20:43:40 +0100
6330 dpkg (1.3.13) unstable; urgency=low (HIGH for building new src X programs)
6332   * X shared libraries added to shlibs.default (=> `elf-x11r6lib').
6333   * dpkg-source tar invocation fixed so that TAPE env var doesn't break it.
6334   * dpkg-source copes better with missing final newline messages from diff.
6336   * dpkg-buildpackage usage message fixed: -si is the default.  (Bug#4350.)
6337   * dpkg-source error message about src dir mismatch typo fixed.  (Bug#4349.)
6339   * dpkg-source(1) has suggestions for dpkg-buildpackage -r option.
6340   * dpkg-source change date fixed.  (Bug#4351.)
6341   * More developers' keys.
6342   * Manual updates, own Standards-Version updated.
6344  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 31 Aug 1996 20:08:18 +0100
6346 dpkg (1.3.12) unstable; urgency=medium
6348   * dpkg prints old version number when upgrading.  (Bug#4340.)
6349   * dpkg-deb tries to detect and flag corruption by ASCII download.
6351   * dpkg-genchanges and dpkg-buildpackage say what source is included.
6353   * dpkg-buildpackage passes +clearsig=on to PGP (or pgpcommand).  (Bug#4342.)
6355   * dpkg-source prints better error for cpio not honouring -0t.
6356   * control file Suggests cpio >= 2.4.2, rather than just cpio.
6358  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Fri, 30 Aug 1996 15:31:51 +0100
6360 dpkg (1.3.11) unstable; urgency=low
6362   * EBUSY when dpkg removes a directory is only a warning.
6364   * dpkg-genchanges generates sensible warning (not confusing error
6365     about mismatch) for missing Section/Priority in binary packages.
6367   * Added dpkg --print-gnu-build-architecture option.
6368   * shlibs.default for m68k provided, as a copy of i386 version.
6370  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 29 Aug 1996 14:05:02 +0100
6372 dpkg (1.3.10) unstable; urgency=medium
6374   * dpkg-source(1) manpage alias symlinks are not dangling.
6375   * dselect selects things by default if they are installed.
6376   * Added `pentium' as alias for `i386' architecture.
6377   * Added `Suggests: cpio, patch' and explanatory text to Description.
6378     (Bugs #4262, #4263.)
6380   * More developers' PGP keys.
6381   * Manual updates, new source format released.
6383  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 26 Aug 1996 14:30:44 +0100
6385 dpkg (1.3.9) unstable; urgency=low (high for new source format)
6387   * dpkg --get-selections and --set-selections added.
6388   * New dpkg --force-not-root flag.
6390   * Don't replace directory with another package's file.  (Bug#4202.)
6392   * All manpages now installed compressed.
6393   * Copyright file moved to /usr/doc/dpkg/copyright.
6394   * Standards-Version updated (0.2.1.1).
6396  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 24 Aug 1996 19:09:30 +0100
6398 dpkg (1.3.8) unstable; urgency=low (high for new source format)
6400   * dpkg-buildpackage -sa, -si options work correctly.
6402   * update-rc.d(8) updated to reflect design and reality.
6403   * Programmers' and policy manual updates.
6405  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Fri, 23 Aug 1996 12:48:26 +0100
6407 dpkg (1.3.7) unstable; urgency=low (medium for source pkg docs)
6409   * dselect +/-/_/= on lines for all broken, new, local or whatever
6410     packages do not affect _all_ packages.  (Bug#4129.)
6412   * Support for diff-only uploads in source packaging tools.
6413   * dpkg-genchanges -d<descripfile> option renamed to -C.
6414   * dpkg-buildpackage understands -m, -v, -C (for dpkg-genchanges).
6415   * Support for debian/shlibs.local added to dpkg-shlibdeps.
6416   * Shared library files' search order defined in dpkg-source(1), and
6417     relevant files added to the FILES section.
6419   * Programmers' manual describes source packaging tools.
6420   * Policy manual mentions shared library control area file.
6421   * dpkg-source manpage includes dpkg-shlibdeps in title line.
6422   * Manuals have changelog and automatic version numbering.
6423   * changelogs (for dpkg and for manuals) installed.
6424   * binary target split into binary-arch and binary-indep in manual.
6425   * Manpages should be compressed.
6426   * Copyright file is moved to /usr/doc/<package>/copyright.
6427   * Changelogs must be installed in /usr/doc/<package>.
6428   
6429   * dpkg-deb(8) moved to dpkg-deb(1).
6431   * binary target split into binary-arch and binary-indep in source.
6432   * changelog entry for 1.2.14 copied from that (forked) release.
6434  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 22 Aug 1996 15:36:12 +0100
6436 dpkg (1.3.6) experimental; urgency=low (HIGH for new source format)
6438   * dpkg-source now has broken argument unparsing for tar.  (Bug#4195.)
6440   * dpkg-gencontrol writes to debian/tmp/DEBIAN/control by default.
6441   * dpkg-shlibdeps script added.
6443   * Back to old sh update-rc.d, and removed manpage, because new Perl
6444     version and the manpage have different syntax and semantics.
6445   * update-rc.d prints usage message for missing terminal `.'.  (Bug#4122.)
6447   * Use rm -rf instead of just rm -r in dpkg-deb --info &c.  (Bug#4200.)
6449   * Added support for Installed-Size to dpkg-gencontrol, and documented.
6450   * Source packaging substitution variables and name syntax rationalised.
6451   * dpkg-source scripts' usage messages improved slightly.
6452   * dpkg-source works with non-empty second (orig dir) argument.
6454   * Added rationale for copyright policy to manual.
6455   * More developers' PGP keys.
6456   * Control database handling cleanups (usu. Source field blanked).
6458  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 20 Aug 1996 15:39:58 +0100
6460 dpkg (1.3.5) experimental; urgency=low (high for debian-changelog-mode)
6462   * 822-date script included.  (Bug#4136.)
6463   * debian-changelog-add-version works on empty file.
6464   * debian-changelog-mode mode-help works properly.
6466   * dpkg-source tells patch not to make numbered backups.  (Bug#4135.)
6468   * More developers' PGP keys.
6469   * Paragraph on uucp -a and -g options removed from policy manual.
6471  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 14 Aug 1996 14:46:47 +0100
6473 dpkg (1.3.4) experimental; urgency=low
6475   * Removed debugging output from dpkg-source -x.  Oops.
6476   * Removed section on source package permissions from policy manual -
6477     dpkg-source now sorts these out.
6479  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sun, 11 Aug 1996 13:25:44 +0100
6481 dpkg (1.3.3) experimental; urgency=low
6483   * Programmers' & policy manuals in source tree; HTML in /usr/doc/dpkg.
6484   * Old guidelines.info and text files in /usr/doc/dpkg removed.
6486   * dpkg-source sets permissions on extracted debianised source tree
6487     and does not copy ownerships out of archive even if running as root.
6489   * Emacs mode `dpkg changelog' renamed to `Debian changelog'.
6490   * Default changelog format renamed from `dpkg' to `debian'.
6492   * debian-changelog-mode sets fill-prefix correctly.
6493   * debian-changelog-mode urgencies except HIGH lowercase by default.
6494   * debian-changelog-mode displays keymap in doc string and so mode help.
6496   * More maintainers' PGP keys.
6498   * Remove built changelog parsers with `clean' target in source.
6500  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 10 Aug 1996 23:35:51 +0100
6502 dpkg (1.3.2) experimental; urgency=LOW (MEDIUM for dpkg-source)
6504   * Faster update-rc.d written in Perl by Miquel van Smoorenburg.
6505   * install-info --test doesn't lock dir.  (Bug#3992, thanks Darren).
6507   * dpkg-source doesn't break in the presence of any symlinks.
6509   * More developers' keys added to doc/developer-keys.pgp.
6510   * Install developers' keys in /usr/doc/dpkg/developer-keys.pgp.
6511   * dpkg-source documents undefined substvar behaviour.
6512   * minor debian/rules cleanups.
6514  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 10 Aug 1996 02:13:47 +0100
6516 dpkg (1.3.1) experimental; urgency=LOW
6518   * manpage for dpkg-source et al now available.
6519   * dpkg-changelog-mode.el installed in site-lisp, but still no autoload.
6521   * dpkg-source prints correct string for not-understood tar -vvt output.
6522   * dpkg-source parsing of tar -vvt output made more robust.
6524   * dpkg-buildpackage prints usage message on usage error.
6525   * dpkg-gencontrol can print usage message.
6526   * -T<varlistfile> option added to dpkg-source.
6527   * Description of -f<fileslistfile> corrected in dpkg-distaddfile usage.
6528   * -m<maintainer> synopsis changed in dpkg-genchanges usage.
6529   * debian/substvars may now contain blank lines.
6531  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 8 Aug 1996 02:36:04 +0100
6533 dpkg (1.3.0) experimental; urgency=LOW
6535   * dpkg can install named pipes.
6536   * dpkg-deb supports directory for destination, generates filename.
6537   * dpkg-{source,gencontrol,genchanges,parsechangelog,buildpackage},
6538     dpkg-distaddfile scripts to support new source package format.
6539   * a.out build no longer supported.
6540   * Changed to new source package format.
6542  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 6 Aug 1996 02:31:52 +0100
6545 dpkg (1.2.14) stable unstable; urgency=MEDIUM
6547   * dselect +/-/_/= on lines for all broken, new, local or whatever
6548     packages do not affect _all_ packages.  (Bug#4129.)
6550   * NOTE - THE HISTORY FORKS HERE.  1.2.14's change appears in 1.3.7.
6552  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 22 Aug 1996 00:39:52 +0100
6555 dpkg (1.2.13) unstable; urgency=LOW
6557   * dpkg --search produces correct output for diversions.
6558   * dpkg-name remove unnecessary arch missing warning.  (Bug#3482.)
6560   * dpkg-deb --build warns about uppercase chars in package name.
6562   * dpkg-scanpackages error messages updated and manpage provided
6563     (thanks to Michael Shields).
6564   * dpkg-scanpackages warns about spurious entries in override file.
6565   * dpkg-scanpackages `noverride' renamed to `override' everywhere.
6566   * dpkg-scanpackages field ordering to put Architecture higher.
6567   * dpkg-scanpackages field names capitalised appropriately.
6568   * dpkg-scanpackages invokes find with -follow.  (Bug#3956.)
6570   * guidelines say #!/usr/bin/perl everywhere, not #!/bin/perl.
6571   * Many developers' PGP keys added.
6573   * configure script uses ${CC} instead of $(CC) (again :-/).
6574   * developers' keys included in dpkg source tree and /usr/doc.
6575   * configure remade using autoconf 2.10-3 (was 2.4-1).
6577  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 1 Aug 1996 02:46:34 +0100
6579 dpkg (1.2.12); priority=LOW
6581   * dpkg --search and --list understand and comment on diversions.
6582   * dpkg-divert displays diversions more intelligibly.
6584   * Guidelines are somewhat clearer about descriptions.
6585   * deb(5) describes new format; old moved to deb-old(5).  (Bug#3435.)
6586   * deb-control(5) carries a warning about being out of date.
6588   * Added 1996 to dselect version/copyright.
6590  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 4 Jul 1996 15:04:49 +0100
6592 dpkg (1.2.11); priority=MEDIUM
6594   * dselect had dependency bug if installed package newer than avail.
6595   * Added `replaces' to dselect's list of package relationship strings.
6597  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 1 Jul 1996 02:51:11 +0100
6599 dpkg (1.2.10); priority=MEDIUM
6601   * Fixed bug in old-style version/revision number parsing.  (Bug#3440.)
6603  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 29 Jun 1996 03:32:45 +0100
6605 dpkg (1.2.9); priority=MEDIUM
6607   * Fixed status database updates reading bug.
6608   * `Setting up' message includes version number.
6609   * `existence check' message changed to say `cannot access archive'.
6611  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 27 Jun 1996 13:39:36 +0100
6613 dpkg (1.2.8); priority=LOW
6615   * dpkg --record-avail puts data in Size field.
6616   * strip / for rmdir(2) in cleanup to work around kernel bug.  (Bug#3275.)
6617   * dpkg-split --msdos no longer allows `-' and other chars in filenames.
6619   * manual dpkg-split(8) written.
6620   * dpkg-split minor typo in --auto usage error message fixed.
6621   * dpkg-deb(8) very minor cosmetic fix to --build option.
6623  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 25 Jun 1996 03:00:14 +0100
6625 dpkg (1.2.7); priority=LOW
6627   * dpkg-scanpackages syntax errors fixed.
6629  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Fri, 21 Jun 1996 04:10:38 +0100
6631 dpkg (1.2.6); priority=MEDIUM
6633   * NFS, CDROM and partition dselect methods include mountpoint
6634     in paths given to dpkg in [I]install, so they should now work.
6636   * Removed some leftover files from source tree.
6638  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 12 Jun 1996 14:35:19 +0100
6640 dpkg (1.2.5); priority=MEDIUM
6642   * Allow, but do not create, packages in half-installed state
6643     with no version number.  (Aargh.)
6645  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 10 Jun 1996 04:55:43 +0100
6647 dpkg (1.2.4); priority=MEDIUM
6649   * New dpkg-name from Erick (<pkg>_<version>_<arch>.deb convention).
6650   * Disappeared packages can't own conffiles any more !  (Bug#3214.)
6651   * install-info creates Miscellaneous sections with a newline
6652     following the heading.  (Bug#3218.)
6653   * cleanup-info script installed in /usr/sbin; called as appropriate
6654     by postinst.  Thanks to Kim-Minh Kaplan.  (Bug#3125.)
6655   * Allow superseded Essential packages to be purged after they've
6656     been removed (clear the Essential flag on removal, and ignore it
6657     on packages that are in stat_configfiles).
6659   * dselect disk methods understand `y' as well as `yes' for using
6660     development tree.
6661   * dselect doesn't make packages appear as `new' again if update
6662     of available packages fails.
6663   * dselect places method selection cursor over option last selected.
6665   * dpkg-scanpackages doesn't die when repeated packages are found.
6666   * dpkg-scanpackages allows many old maintainers (`//'-separated).
6668   * `Version' field is now mandatory (some operations already
6669     wouldn't work right anyway if it was't there).
6671   * update-rc.d(8) now says you must remove the script.  (Bug#3215.)
6672   * dpkg --force-help says that --force-overwrite is on by default.
6673   * dpkg-deb manpage rewritten.
6674   * debian.README (= /usr/doc/copyright/dpkg) edited slightly.
6676   * Some database parsing grunge removed (pdb_preferversion, &c).
6677   * Source tree doc/sgml contains some embryonic manuals.
6678   * Leftover files in lib directory in source tree deleted.
6680  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 10 Jun 1996 03:52:01 +0100
6682 dpkg (1.2.3); priority=HIGH
6684   * install-info doesn't replicate section headings (Bug#3125, #2973).
6685   * New dpkg-name manpage broken off from script (oops!).
6686   * dselect help screens made consistent with new strings, flags, &c.
6687   * dselect error flag column labelled E (Error), not H (Hold).
6688   * `Escape' no longer bound to `exit list without saving' in dselect.
6690  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 28 May 1996 02:14:57 +0100
6692 dpkg (1.2.2); priority=MEDIUM
6694   * Fixed dselect coredump found by Erick Branderhorst (thanks).
6695   * Sort obsolete removed packages separately, not under Available.
6697  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 23 May 1996 21:31:05 +0100
6699 dpkg (1.2.1); priority=MEDIUM
6701   * `=' key in dselect really does `hold' rather than `unhold'.
6702   * dselect dependency processing now interacts better with `hold'.
6703   * dselect `I' key (not `i') modifies display of the info window.
6704   * dselect shows unavailable packages as being unavailable.
6705   * dselect main menu headings and many other strings changed to try to
6706     discourage people from deselecting every package and using [R]emove.
6707     Notably, `select' changed to `mark' throughout.
6709   * dselect disk methods now print a few fewer double slashes.
6710   * dselect disk access methods will offer to use dpkg --record-avail
6711     to scan the available packages, if no Packages file is found.
6713   * New dpkg --compare-versions option, for the benefit of scripts &c.
6714   * New dpkg --clear-avail option forgets all available packages info.
6715   * New dpkg --print-avail option, prints `available' data (from Packages, &c).
6716   * dpkg usage message is more informative, but no longer fits on screen.
6717   * dpkg --avail option renamed --record-avail.
6719   * Latest dpkg-name from Erick Branderhorst.
6720   * dpkg-scanpackages has more sensible problem reporting.
6721   * postinst configure now gets null argument (not <unknown> or <none>)
6722     when there is no previously configured version.
6724   * Guidelines say that postinst configure is given previous version.
6725   * Guidelines don't refer to maintainer-script-args.txt in main text.
6726   * Guidelines (Texinfo source) uploaded separately.
6728   * Own version of strcpy (used for debugging) removed.
6729   * Interface to access methods document in source (doc/dselect-methods.txt).
6730   * debian.buildscript moves changes file into parent directory.
6732  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 22 May 1996 01:26:31 +0100
6734 dpkg (1.2.0); priority=MEDIUM
6736   * dselect can sort packages by available and installed states, and
6737     display their version numbers.  (Use O, o and V.)
6738   * Hold is properly integrated as a real `wanted state', rather than
6739     a separate flag.
6740   * Epochs in version numbers implemented, using the syntax
6741     <epoch>:<version>-<revision>.  (Epoch not usually displayed.)
6742   * dselect disk method is architecture-independent (uses dpkg's
6743     installation architecture, and looks in the right part of the tree).
6745   * dselect disk method doesn't try to satisfy the predependencies of
6746     packages which are on hold.
6747   * Fixed conflict-related assertion failure.  (Bug#2784.)
6748   * conffiles do not cause file conflicts if the conflicting package
6749     is in the `configuration only' state.  (Bug#2720.)
6750   * Fixed messages where available version number was reported as installed
6751     version in conflict and dependency messages.  (Bug#2654, Bug#2974.)
6753   * New format .deb files are default even for a.out compiles (but
6754     a.out version of dpkg is in old format).
6755   * Characters @:= (at colon equals) in package names now strictly
6756     forbidden everywhere (_ is still allowed in existing packages).
6757   * New dpkg --print-installation-architecture option prints installation
6758     architecture (compiled in), rather than build architecture (determined
6759     from gcc -print-libgcc-file-name).
6761   * Version messages show whether compiled a.out or ELF (i386 only).
6762   * Fixed missing space in version syntax error messages.
6763   * Manpage dpkg.8 installed with warning about inaccuracy.
6765   * Guidelines don't say to stop and restart daemons in runlevels 2345;
6766     instead they say to start in 2345 and stop in 016.
6767   * Guidelines and version messages say just Debian Linux.
6768   * Guidelines typo fix `"stop2' => `"stop"'.  (Bug#2867.)
6770   * doc/Makefile.in clean properly deletes various guidelines.info* files.
6772  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 16 May 1996 00:01:21 +0100
6774 dpkg (1.1.6); priority=MEDIUM
6776   * Check virtual dependencies when removing (ouch! - thanks SDE.)
6777   * Fixed bug in internal database validity management that could
6778     make dselect and dpkg dump core.  (Bug#2613.)
6779   * Fixed two coredumping bugs when using local diversions.  (Bug#2804.)
6780   * Fixed disappearance of overwritten packages.  (Bug#2696.)
6781   * install-info won't modify dir file before start of menu.
6782   * install-info will create Miscellaneous heading if no sections yet.
6784   * Only alphanums and +-. allowed in package names - enforced by
6785     dpkg-deb --build and documented in Guidelines.
6786   * dselect doesn't display packages unless they are installed, selected
6787     or available.
6788   * dselect doesn't show spurious section and priority headings.
6789   * dselect has a few extra keybindings (from Lee Olds).
6790   * --force message changed to `--force enabled' so that default is OK.
6792   * dpkg-name now includes architecture component in .deb filename,
6793     and translates - in package name to _.
6794   * .deb file has architecture component in filename.
6796   * Guidelines changed to say Pre-Depends is for experts only.
6797   * Guidelines say to provide a unidiff (-u) rather than an old context diff.
6798   * Guidelines say 755 root.root for shared libraries.
6800  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 1 May 1996 00:47:22 +0100
6802 dpkg (1.1.5); priority=MEDIUM (HIGH for diversions users)
6804   * Fixed coredump when using diversions.  (Bug#2603.)
6805   * Fixed typo in dpkg-divert which could lose diversions.  (Bug#2662.)
6807   * --force-overwrite is the default.
6808   * diversions.text provides better examples.
6810  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 10 Apr 1996 13:59:30 +0100
6812 dpkg (1.1.4); priority=MEDIUM
6814   * Allow overwriting of conflicting packages being removed.  (Bug#2614.)
6816   * a.out control file says Pre-Depends: libc4 | libc.  (Bug#2640.)
6817   * ELF control file and libc dependencies changed to use finalised scheme.
6818   * ELF control file and libc dependencies for i386 only.  (Bug#2617.)
6820   * Guidelines say use only released libraries and compilers.
6821   * Install wishlist as /usr/doc/dpkg/WISHLIST.
6822   * Remove spurious entries for Guidelines in info dir file.
6824   * dpkg-deb --build checks permissions on control (DEBIAN) directory.
6826   * Spaces in control file fields not copied by dpkg-split.  (Bug#2633.)
6827   * Spaces in split file part control data ignore.  (Bug#2633.)
6829   * Portability fixes, including patch from Richard Kettlewell.
6830   * Fixed minor configure.in bug causing mangled GCC -W options.
6832  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 4 Apr 1996 01:58:40 +0100
6834 dpkg (1.1.3); priority=LOW
6836   * dselect disk methods support Pre-Depends installation ordering.
6837   * When dpkg fails and --auto-deconfigure would help it says so.
6838   * dpkg --search output lists several packages with same file on one line.
6839   * Improved dpkg usage message somewhat.
6841   * dpkg-deb --build checks permissions and types of maintainer scripts.
6842   * dpkg-deb --build treats misspecified conffiles as error, not warning.
6843   * dpkg --print-architecture prints compiler's architecture while
6844     dpkg --version (&c) print system's arch (this to help cross-compiling).
6845   * More minor guidelines changes, including dir entry fixup.
6847   * configure script caches more values.
6848   * Changed maintainer email address to ian@chiark.chu.cam.ac.uk.
6850  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 16 Mar 1996 19:18:08 +0000
6852 dpkg (1.1.2); priority=LOW
6854   * Packaging guidelines installed properly (and as guidelines
6855     rather than debian-guidelines).
6856   * ELF version has more checks to stop you wrecking your dpkg installation.
6857   * dselect disk methods now look for a `local' tree as well, for
6858     people who want locally-available software of various kinds.
6859   * dpkg-divert has debugging message removed.
6860   * Minor guidelines changes.
6862   * Various makefile cleanups, mainly to do with ELF vs. a.out support.
6863   * debian.rules cleans out ~ files itself, as well as calling make clean.
6864   * debian.rules names .nondebbin.tar.gz file ELF too, if appropriate.
6866  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 14 Mar 1996 03:38:29 +0000
6868 dpkg (1.1.1elf); priority=LOW
6870   * Added /usr/lib/dpkg/elf-executables-ok and elf-in-kernel.
6871   * Replaces field now allows automatic removal of conflicting packages.
6872   * Replaces field now required to overwrite other packages' files.
6873   * Architecture field, and dpkg --print-architecture, supported.
6874   * build new format archives by default when compiled with ELF compiler.
6876   * symlinks are now installed atomically (good for shared libraries).
6877   * create /var/lib/dpkg/diversions in postinst if necessary (Bug#2465.)
6878   * Pre-Depends now correctly fails if package never configured.
6879   * dselect disk methods mount with -o nosuid,nodev.
6880   * update-rc.d defaults doesn't add both K and S in any one runlevel;
6881     dpkg postinst fixes up this situation if it sees it.
6883   * Assorted fixups to the Guidelines, which are now in one piece.
6884   * dpkg --list prints version string in one piece.
6885   * dpkg-scanpackages doesn't produce notice on output with list of
6886     packages with Section and/or Priority control file fields.
6888   * control file and debian.rules work both for ELF and non-ELF compiles.
6889   * most files compiled with -O2 (-O3 only for some critical files) -
6890     this fixes ELF build.
6892  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 11 Mar 1996 04:25:28 +0000
6894 dpkg (1.1.0); priority=LOW
6896   * dpkg supports Pre-Depends.
6897   * postinst script gets most-recently-configured version as $2.
6899   * lib/tarfn.c #includes <errno.h> (portability fix).
6901  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 11 Feb 1996 21:07:03 +0000
6903 dpkg (1.0.17); priority=LOW
6905   * dpkg --recursive follows symlinks (useful for devel tree).
6907  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 10 Feb 1996 15:58:46 +0000
6909 dpkg (1.0.16); priority=LOW
6911   * dpkg-deb much faster reading new format archives.  (Bug#2256.)
6912   * Developers' documentation in /usr/doc/dpkg/, /usr/info/.
6914   * Fixed typo in control file Description.
6916   * configure script tries to improve matters wrt sysinfo.
6917   * any debian-tmp.deb is deleted by `./debian.rules clean'.
6919  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 4 Feb 1996 15:51:59 +0000
6921 dpkg (1.0.15); priority=LOW
6923   * dselect disk methods should never unmount things they didn't mount.
6924   * debian.README aka /usr/doc/copyright updated.
6926  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 30 Jan 1996 15:05:39 +0000
6928 dpkg (1.0.14); priority=MEDIUM
6930   * fixed file descriptor leak in dpkg introduced in 1.0.11.
6931   * included dpkg-name in this package (conflicts with dpkg-name).
6933   * redraw in dselect main menu changed to use clearok (like in lists).
6934   * sa_restorer in struct sigaction no longer used (portability fix).
6935   * removed Guidelines from source package.
6937  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 30 Jan 1996 02:52:29 +0000
6939 dpkg (1.0.13); priority=MEDIUM
6941   * dselect partition and mounted methods work again.
6942   * dpkg-deb --no-act in usage message.
6944  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 26 Jan 1996 18:37:03 +0000
6946 dpkg (1.0.12); priority=MEDIUM (HIGH for users of 1.0.11)
6948   * Fixed frequent dpkg coredump introduced in 1.0.11.  (Bug#2219.)
6949   * dpkg-deb ensures version numbers start with alphanumerics.
6951  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 24 Jan 1996 00:42:31 +0000
6953 dpkg (1.0.11); priority=MEDIUM
6955   * corrected potentially serious problem with dpkg low-memory in-core
6956     files database.
6957   * dpkg-split --msdos puts output files in right directory.  (Bug#2165.)
6959   * diversions implemented - see `dpkg-divert --help'.
6961   * dselect shows and uses (for dependencies) currently installed
6962     version of a package if that is more recent.
6963   * dpkg --force-... options are in separate help screen.
6964   * better error messages for corrupted .deb archives.  (Bug#2178.)
6965   * dselect NFS method will unmount correct copy of NFS area if mounted
6966     twice.
6968   * removes some ELF compilation warnings.
6970  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 19 Jan 1996 02:41:46 +0000
6972 dpkg (1.0.10); priority=MEDIUM
6974   * dpkg-deb option parsing unmuddled (-I option was removed
6975     in 1.0.9 and broke dpkg-deb).  (Bug#2124.)
6977   * dpkg-split will work when ELF `ar' is installed, and is faster.
6979   * nfs dselect method now available.
6980   * disk methods don't prompt spuriously for Packages files.
6981   * cdrom+harddisk methods can find Packages files.
6983   * dpkg-scanpackages (creates Packages files) now in /usr/sbin.
6985   * various changes to help compilation of dpkg-deb, dpkg-split
6986     and md5sum on non-Debian systems.
6987   * <sys/fcntl.h> replaced by <fcntl.h> throughout.
6989  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 14 Jan 1996 02:55:19 +0000
6991 dpkg (1.0.9); priority=MEDIUM
6993   * dselect uninitialised variable coredump fixed (thanks Carl).
6995   * version numbers printed by --version fixed.  (Bug#2115.)
6996   * disk method problem with missing Packages files fixed.  (Bug#2114.)
6997   * dependency version relationships now <= >= << >> =.  (Bug#2060.)
6999   * install-info is in /usr/sbin, not /usr/bin.  (Bug#1924.)
7000   * dpkg regards Revision field as obsolete.
7002   * <asm/unistd.h> changed to <linux/unistd.h> (for m68k port).
7003   * scripts/Makefile.in `clean' target deletes scripts.
7005  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 11 Jan 1996 20:51:20 +0000
7007 dpkg (1.0.8); priority=LOW
7009   * update-alternatives slightly more helpful message.  (Bug#1975.)
7010   * cosmetic improvements to disk installation method.  (Bug#1970,1956.)
7011   * mounted filesystem and unmounted partition separate methods.  (Bug#1957.)
7013  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 12 Dec 1995 04:07:47 +0000
7015 dpkg (1.0.7); priority=MEDIUM (HIGH to upgrade syslogd)
7017   * dselect harddisk/CDROM method script handles multiple package
7018     areas.
7019   * Everything has a manpage, though many are very unhelpful indeed.
7021  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 30 Nov 1995 03:59:14 +0000
7023 dpkg (1.0.6); priority=MEDIUM (HIGH to upgrade syslogd)
7025   * conffiles can now be taken over properly from one package by
7026     another which replaces it.  (Bug#1482.)
7027   * dpkg will not deconfigure essential packages when --auto-deconfigure
7028     is set (this bug was fairly unlikely ever to be exercised).
7030   * dpkg checks for the presence of certain important programs on the PATH.
7031   * dselect is now more informative when a dependency is missing, saying
7032     "<package> does not appear to be available".  (Bug#1642, 1705).
7034   * `make distclean' fixed; config.* &c removed from source archive.
7035   * lib/lock.c now uses fcntl rather than flock, for better portability.
7037   * `Package_Revision: 0' removed from control file.
7038   * Some inaccuracies and bad formatting in various messages corrected.
7040  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 21 Nov 1995 20:15:18 +0000
7042 dpkg (1.0.5); priority=LOW
7044   * dpkg-split allows some space for the header.  (Bug#1649.)
7045   * dpkg-split now has --msdos option for 8.3 filenames.
7046   * dpkg-split --join &c will not complain about trailing garbage.
7048   * dselect & dpkg will no longer ignore SIGHUP will running subprocesses.
7050  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 13 Oct 1995 13:59:51 +0100
7052 dpkg (1.0.4); priority=MEDIUM (HIGH for dselect users with 1.0.3)
7054   * fixed bug which prevented dselect from displaying the bottom line of
7055     any listing screen.  This was introduced in 1.0.3, sorry !
7057   * a conffile will never cause a prompt if the package maintainer
7058     distributes a file identical to the user's, even if the file has
7059     been edited by both the user and the maintainer or is a
7060     newly-registered conffile.  (Bug#1639.)
7062   * dselect disk/cdrom method script says where to get Packages file.
7063   * dselect help has better descriptions of the functions of Return and Q.
7065   * postinst now warns about some problems with /usr/lib/dpkg/methods/hd.
7067  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 12 Oct 1995 01:45:38 +0100
7069 dpkg (1.0.3); priority=MEDIUM
7071   * dselect: fixed segfault when doing some multiple (de)selections.
7073  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 10 Oct 1995 03:21:12 +0100
7075 dpkg (1.0.2); priority=MEDIUM
7077   * problem with screen refresh after `o' (change order) corrected.
7079  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 9 Oct 1995 13:11:04 +0100
7081 dpkg (1.0.1); priority=LOW
7083   * much better dpkg performance on low-memory systems.
7084   * start-stop-daemon --name should now work. (oops!)
7085   * fixed typo which could turn into memory overwriting bug sometime.
7087  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 8 Oct 1995 20:12:29 +0100
7089 dpkg (1.0.0); priority=LOW
7091   * Version 1.0.0: dpkg is no longer beta.
7093   * tar extractor no longer looks up an empty string using getgrnam
7094     (this causes the libc to coredump when using NIS).
7096  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 1 Oct 1995 13:07:36 +0100
7098 dpkg (0.93.80); priority=LOW
7100   * dselect help screen intro changed to remove `much' before `help'.
7102   * update-alternatives.pl contains hardcoded ENOENT value, instead
7103     of requiring POSIX.pm to be present.
7105   * Makefiles changed to strip when installing instead of when building.
7107  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 30 Sep 1995 01:44:12 +0100
7109 dpkg (0.93.79) BETA; priority=LOW
7111   * DPKG_NO_TSTP environment variable which stops dpkg sending the
7112     process group a SIGTSTP (Bug#1496).
7113   * End key should work in dselect lists (Bug#1501).
7114   * various message typos (missing \n's) fixed (Bug#1504).
7116  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 29 Sep 1995 03:27:01 +0100
7118 dpkg (0.93.78) BETA; priority=LOW
7120   * dselect keystrokes help file typo fix.
7122  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 28 Sep 1995 20:31:02 +0100
7124 dpkg (0.93.77) BETA; priority=MEDIUM
7126   * dpkg --remove --pending will purge things when appropriate.
7128   * fixed failure to null-terminate dpkg conflict problem messages.
7129   * fixed bug in formatting of dependency version problem messages.
7131   * Conffiles resolution prompt for new conffile: typo fixed.
7132   * Changed dpkg usage error to suggest `-Dhelp' instead of `--Dhelp'.
7134  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 20 Sep 1995 23:44:35 +0100
7136 dpkg (0.93.76) BETA; priority=MEDIUM
7138   * dpkg --auto-deconfigure option (used automatically by dselect) allows
7139     `important' packages which many others depend on to be split.
7140   * dpkg should no longer fail an assertion during complicated
7141     multiple configurations involving packages which are on hold.
7143   * update-alternatives supports negative priorities.
7144   * /etc/alternatives is included in the .deb archive.
7146   * Package priorities changed: Required (Req), Important (Imp), Standard (Std),
7147     Optional (Opt) and Extra (Xtr).  For backward compatibility Base is an
7148     alias for Required, and Recommended is kept as a level just below Standard.
7150   * dselect shows introductory help screen when entering package lists (both
7151     main and recursive).
7152   * dselect help messages made more friendly.
7153   * dselect package list `quit, confirm, and check dependencies' key is
7154     now Return rather than lowercase `q'; likewise method list `select this
7155     one and configure it' key.
7156   * dselect selects packages with priority `standard' or better by default.
7157   * dselect `v=verbose' becomes `v=terse' when in verbose mode.
7159   * hard disk method unmounts /var/lib/dpkg/methods/mnt on failure.
7160   * disk methods' install message uses `stty' to find out what the
7161     interrupt character is, and uses that in the prompt (rather than ^C).
7162   * dpkg now tolerates ^Z characters in Packages files.
7163   * harddisk method doesn't display extra slash when updating packages file.
7164   * harddisk method burbles less if it doesn't have a good default.
7166   * dpkg-deb now supports new flexible format, but old format still default.
7168  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 20 Sep 1995 02:49:41 +0100
7170 dpkg (0.93.75) BETA; priority=MEDIUM
7172   * dselect no longer segfaults when you try to modify the last item.
7174   * dselect Makefile compiles with -g, and links without -s, but installs
7175     with -s, so that built source directory has debugabble binary.
7177  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 12 Sep 1995 02:59:29 +0100
7179 dpkg (0.93.74) BETA; priority=LOW
7181   * dpkg-split implemented and installed in /usr/bin/dpkg-split.
7182     (NB this is not compatible with Carl Streeter's old dpkg-split script.)
7183   * dpkg uses dpkg-split.
7184   * floppy disk method available - NB this is a first attempt only.
7186   * hard disk method uses --merge-avail rather than --update-avail.
7187   * installation by default of `standard' packages removed again.
7188     (I don't think this is the right place to do this.)
7189   * update-alternatives --remove correctly deletes all slave links;
7190     minor cosmetic improvements.
7192  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 11 Sep 1995 02:06:05 +0100
7194 dpkg (0.93.73) BETA; priority=LOW
7196   * dselect multi-package selection now done by `divider' lines
7197     actually in the package list, rather than horizontal highlight
7198     movement.
7199   * dselect help available, and keybindings rationalised.
7201   * postinst removes /usr/lib/dpkg/methods/hd if upgrading from
7202     0.93.42.3 or earlier.
7203   * `hold' flag changed to be settable by the user only, and
7204     made orthogonal to the `reinstallation required' flag.
7205   * dpkg will install by default any packages with priority of
7206     `standard' or better unless they're explictly deselected.
7208   * dselect dependency/conflict resolution will suggest marking absent
7209     packages for `purge' rather than `deinstall'.
7210   * disk method script produces message about invoking dpkg.
7211   * dpkg produces warning, not error, when it gets EPERM trying to
7212     remove a directory belonging to a package being removed.
7213   * dpkg, dpkg-deb usage error reporting improved.
7214   * dselect detects too-dumb terminals and stops.
7215   * dpkg-deb(8) updated a little (thanks to Bill Mitchell).
7217   * dselect debugmake script uses -O0.
7219  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 10 Sep 1995 12:23:05 +0100
7221 dpkg (0.93.72) BETA; priority=MEDIUM
7223   * /usr/sbin/update-alternatives added.
7225   * New names for certain control file fields (old names work
7226     as aliases): Optional -> Suggests, Recommended -> Recommends,
7227     Class -> Priority.
7228      
7229  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 3 Sep 1995 16:37:41 +0100
7231 dpkg (0.93.71) BETA; priority=LOW
7233   * dpkg doesn't silently overwrite `new' conffiles (Bug#1283).
7234   * case now not significant in Essential, Status and Class (Bug#1280).
7235   * dselect checks method scripts for execute, not for write.
7237   * spelling fixes in lib/dbmodify.c and dselect/helpmsgs.src.
7239   * dselect `clean' target deletes helpmsgs.cc and helpmsgs.cc.new.
7241  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 31 Aug 1995 13:56:08 +0100
7243 dpkg (0.93.70) BETA; priority=MEDIUM
7245   * dselect unmounted harddisk method has many silly bugs fixed.
7247   * dpkg --root option restored (was removed by mistake in 0.93.68).
7248   * minor cosmetic change to dselect subprocess failure message.
7250  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 9 Aug 1995 22:18:55 +0100
7252 dpkg (0.93.69) BETA; priority=MEDIUM
7254   * dpkg --configure and --remove should work properly when
7255     they have to defer processing (this tends to happen when many
7256     packages are processed at once).  (Bug#1209.)
7258   * dpkg --configure and --remove work better when `processing'
7259     several related packages with --no-act.
7261   * dpkg --auto is now two options, --pending or -a (for configure,
7262     remove, &c) and --recursive or -R (for install, unpack, &c).
7264   * dpkg debug options in usage message, and values available (-Dh).
7266  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 9 Aug 1995 22:18:55 +0100
7268 dpkg (0.93.68) BETA; priority=MEDIUM
7270   * dpkg won't get an internal error if you try to use the default
7271     conffiles response (ie, if you just hit return).  (Bug#1208.)
7273   * dselect hard disk and CD-ROM methods - the real thing, but ALPHA.
7275   * dselect allows you to go straight to `update' or `install' if
7276     you have already set up an access method.
7277   * new dpkg options --yet-to-unpack, --merge-avail and --update-avail.
7278   * dpkg -G is an abbreviation for dpkg --refuse-downgrade.
7279   * dpkg -R alias for --root withdrawn, pending reuse with different meaning.
7280   * dpkg --help message rationalised somewhat.
7282   * Obsolete `examples' and `dpkg-split' directories removed from
7283     source tree.  The `hello' package is a better example.
7285  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 7 Aug 1995 02:16:25 +0100
7287 dpkg (0.93.67) BETA; priority=LOW for C dpkg alpha testers, HIGH for others
7289   * dpkg no longer statically linked and -g.
7290   * calls to abort() changed to print string, file and line number first.
7291   * removed unused variable from dpkg source.
7293  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 4 Aug 1995 01:39:52 +0100
7295 dpkg (0.93.66) ALPHA; priority=MEDIUM
7297   * dpkg will correctly remove overwritten files from the lists of
7298     the package(s) that used to contain them.
7300   * dpkg --purge is now an action, rather than a modifier for --remove,
7301     and the -P alias for it is withdrawn.
7303   * dpkg --unpack/--install filenames in messages are now more sensible
7304     about when to use .../ (show as many trailing components as possible
7305     in 40 characters, or the whole path if that the last component is
7306     longer than that).
7308  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 3 Aug 1995 02:11:03 +0100
7310 dpkg (0.93.65) ALPHA; priority=MEDIUM
7312   * dpkg --remove should, when a package being removed is depended-on
7313     by another that is also queued for removal, defer the depended-on
7314     package rather than aborting it.  (Bug#1188.)
7316   * dpkg will not attempt to configure or remove a package more than
7317     once in the same run.  (Bug#1169.)
7319   * dpkg cosmetic fix to dependency problems message (this bug
7320     hasn't been triggered to my knowledge).
7322   * perl-dpkg no longer installed in /usr/bin.
7324  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 2 Aug 1995 13:02:58 +0100
7326 dpkg (0.93.64) ALPHA; priority=MEDIUM
7328   * dpkg marks a package as no longer `to be configured in this run'
7329     when an error occurs, so that other packages which depend on it
7330     will fail (rather than causing a loop and an assertion failure,
7331      packages.c:166: failed assertion `dependtry <= 4').
7333   * dselect initial selection granularity is single-package.
7334   * dpkg --no-also-select option renamed to --selected-only (old option
7335     still accepted, but no longer in --help).  Changed -N to -O.
7337   * dselect `update' option changed to `install' (and other options
7338     renamed too).  NB: old access methods will not work, because
7339     the `update' script should now be an `install' script.
7341   * dselect `installation methods' renamed to `access methods'.
7342   * dpkg --skip-same-version and --refuse-downgrade produce friendlier
7343     messages when they skip packages.
7344   * --licence option now properly mentioned in all programs' --version
7345     messages.
7347   * bad fix for ELF compile problem involving myopt.h removed (compile
7348     problem turned out to be a GCC bug.)
7350  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 1 Aug 1995 03:03:58 +0100
7352 dpkg (0.93.63) ALPHA; priority=LOW
7354   * preinst works around shell bug/misfeature involving `trap'.
7356   * dpkg --skip-same-version doesn't skip packages which have
7357     an error flag set or which aren't in a standard `installed' state.
7359   * dpkg --search now does a substring search if the string doesn't
7360     start with a wildcard character (*, [ or ?) or slash.
7362   * problem with C/C++ linkage of stuff in "myopt.h" fixed, to help
7363     with compiling with GCC 2.7.0.
7365   * dselect Makefile.in `clean' deletes curkeys.inc &c, so that they are
7366     not shipped in the distribution source and will be rebuilt on the
7367     target system.
7369  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 27 Jul 1995 13:38:47 +0100
7371 dpkg (0.93.62) ALPHA; priority=HIGH
7373   * dpkg purges leftover control scripts from /var/lib/dpkg/tmp.ci,
7374     rather than associating them with the wrong package.  (Bug#1101.)
7376   * dpkg won't `disappear' packages containing no files or directories,
7377     nor a package required for depends/recommended.  (Bug#1128.)
7379   * dpkg follows directory symlinks.  (Bug#1125.)
7381   * dselect fixups for ELF/GCC2.7.0 compilation.
7383  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 21 Jul 1995 21:43:41 +0100
7385 dpkg (0.93.61) ALPHA; priority=LOW
7387   * dselect keybindings and status characters and descriptions changed
7388     (in pursuance of Bug#1037, user interface problems, still open.)
7390   * Some cleanups to fix mistakes discovered by ELF-GCC 2.7.0, and fixup
7391     for newer C++ draft standard (`for' variable declaration scope change).
7393  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 18 Jul 1995 01:42:51 +0100
7395 dpkg (0.93.60) ALPHA; priority=HIGH
7397   * dpkg doesn't think packages have `disappeared' if you install
7398     several packages at once.  (later reported as Bug#1132.)
7400   * usage error messages tidied up.
7402  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 16 Jul 1995 17:56:56 +0100
7404 dpkg (0.93.59) ALPHA; priority=HIGH
7406   * dpkg doesn't break maintainer scripts &c if package `foo' exists
7407     when processing package `foobar'.  (Related to Bug#1101.)
7409   * dpkg implements `disappear' functionality.
7410   * dpkg/dselect remove dead entries from /var/lib/dpkg/status.
7412   * dpkg --list now sorted correctly and output somewhat improved.
7413   * some debugging messages moved from dbg_stupidlyverbose to dbg_scripts.
7414   * dpkg prints `Removing foo' message even if foo is not configured.
7415   * dpkg only prints `serious warning: files list file ... missing'
7416     once for each package.
7418  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 16 Jul 1995 02:32:11 +0100
7420 dpkg (0.93.58) ALPHA; priority=HIGH
7422   * dpkg should write out status even for packages which it has only
7423     encountered in the `available' file so far.
7425  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 14 Jul 1995 20:19:21 +0100
7427 dpkg (0.93.57) ALPHA; priority=LOW
7429   * dpkg does chroot when running maintainer scripts (--instdir
7430     should work right now, though I haven't been able to test it).
7432  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 14 Jul 1995 01:32:30 +0100
7434 dpkg (0.93.56) ALPHA; priority=HIGH
7436   * dpkg can now overwrite symlinks to directories, and will
7437     do correct handling of symlinks to plain files.
7438   * dpkg should not replace any directory with a symlink.
7440  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 13 Jul 1995 02:43:36 +0100
7442 dpkg (0.93.55) ALPHA; priority=MEDIUM
7444   * dpkg can now extract hardlinks.
7445   * dpkg configuration/removal works in the presence of dependency cycles.
7446   * dpkg should no longer fail an assertion at processarc.c:193.
7448  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 12 Jul 1995 01:34:44 +0100
7450 dpkg (0.93.54) ALPHA; priority=MEDIUM
7452   * dpkg and dselect no longer throw away all Class and Section
7453     information in /var/lib/dpkg/available.  (Oops.)
7454   * dpkg --refuse-<something> now works (this broke some dselect
7455     method scripts' attempts to use --refuse-downgrade).
7456   * dpkg --audit and --list implemented.
7458  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 10 Jul 1995 00:35:13 +0100
7460 dpkg (0.93.53) ALPHA; priority=LOW
7462   * dpkg --install/--unpack only skips on-hold packages with --auto.
7463   * dpkg doesn't fclose() the --fsys-tarfile pipe twice.
7464   * dpkg error handling and reporting cleaned up.
7465   * dpkg now lists any failed packages/files just before exiting.
7467  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 9 Jul 1995 16:31:36 +0100
7469 dpkg (0.93.52) ALPHA; priority=MEDIUM
7471   * dpkg won't segfault due to missing (Package_)Revision fields.
7472   * dpkg --search works.
7473   * dpkg will set execute permissions on scripts if necessary.
7474   * dpkg prints filenames in --unpack and --install.
7476  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 8 Jul 1995 12:41:39 +0100
7478 dpkg (0.93.51) ALPHA; priority=HIGH
7480   * dpkg --status and --listfiles now work.
7482   * dpkg --remove --auto won't try to remove everything (!)
7483   * dpkg --unpack doesn't coredump after unpacking the first package.
7484   * dpkg won't fail an assertion if it bombs out of --configure
7485     or --remove because of too many errors.
7487   * Support for `Essential' in dpkg (not yet in dselect).
7488   * `available' (Packages) file class and section override those
7489     from package control files.
7490   * `Essential: yes' added to control file.
7492   * Locking strategy changed, now uses flock (no more stale locks).
7493   * preinst now more helpful about conffiles upgrade problem.
7495  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 8 Jul 1995 01:15:26 +0100
7497 dpkg (0.93.50) ALPHA
7499   * C dpkg now in service.
7501   * dselect now installs in /usr/bin instead of /usr/sbin.
7502   * Improved `explanation of display' help and changed HSOC to EIOW.
7503   * dselect goes back to top of info display when you move the
7504     highlight.
7506   * Added <sys/types.h> to md5sum/md5.c, for the benefit of FreeBSD.
7507   * --admindir doesn't append `var/lib/dpkg' to its argument.
7509  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 19 May 1995 21:03:08 +0100
7511 dpkg (0.93.42.3) BETA; priority=LOW
7513   * Rebuilt using ncurses 1.9.2c-0.
7514   * Silenced `subcritical error' message if errno == ENOENT.
7516  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 12 Jun 1995 13:09:24 +0100
7518 dpkg (0.93.42.2) BETA; priority=HIGH
7520   * install-info --remove properly removes multi-line entries.
7521   * Slightly changed ^L redraw code in dselect package list.
7523  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 10 Jun 1995 14:06:01 +0100
7525 dpkg (0.93.42.1) BETA; priority=HIGH esp. for new installations
7527   * update-rc.d default no longer adds K entries in runlevels 2345.
7529  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 6 Jun 1995 18:56:23 +0100
7531 dpkg (0.93.42) BETA; priority=LOW; HIGH for dselect users
7533   * Fix unitialised variable reference bug in dselect (#890).
7534   * Fix problem with wordwrapping package and method descriptions.
7535   * Create /var/lib/dpkg/methods/mnt.
7537  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 19 May 1995 21:03:08 +0100
7539 dpkg (0.93.41) BETA; priority=LOW
7541   * Create /var/lib/dpkg/methods.
7542   * dpkg.pl noisily ignores --skip-same-version rather than barfing.
7544  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 16 May 1995 13:28:27 +0100
7546 dpkg (0.93.40) BETA; priority=LOW
7548   * dselect's subprogram failure message made to stand out more.
7550   * When switching out of curses, always move the cursor to the
7551     bottom right corner of the screen.
7553  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 16 May 1995 01:03:38 +0100
7555 dpkg (0.93.39) BETA; priority=LOW
7557   * dselect can now:
7558     - allow you to select and configure an installation method;
7559     - invoke installation method scripts to update the available file
7560       and unpack packages;
7561     - invoke dpkg to configure and remove packages.
7562     There are no installation methods available yet.
7564   * Search feature in dselect works (it was purely an ncurses bug).
7566   * dpkg-*.nondebbin.tar.gz now available (built by debian.rules).
7568   * The target directory for dpkg-deb --extract (also available as
7569     dpkg --extract) is no longer optional.  dpkg-deb suggests the use
7570     of dpkg --install if you omit it.
7572   * Added <errno.h> to lib/lock.c and fixed ref. to `byte' in
7573     md5sum/md5.c, for portability to Solaris 2.
7575   * Rebuilt `configure' and `config.h.in' using autoconf 2.3.
7576   * Revised function attribute support checking in configure script.
7577   * Removed obsolete `dselect.pl' from scripts directory.
7578   * New option --licence on all the C programs.
7580  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 14 May 1995 18:05:38 +0100
7582 dpkg (0.93.38) BETA; priority=MEDIUM
7584   * Version number comparisons (in dpkg and dselect) now >= <=
7585     as documented (Bug#831; thanks to Christian Linhart).
7587   * dselect now has a non-superuser readonly mode.
7588   * dselect doesn't pop up unsatisfied `Optional's when quitting.
7589   * `unable to delete saved old file' message fixed dpkg_tmp to dpkg-tmp.
7591   * Made dpkg convert `revision' to `package_revision' when reading
7592     (eg) the `status' file.  libdpkg.a has `revision' as a synonym
7593     for `package_revision' and writes the former.
7595   * Major improvements and many changes to C option parsing, database
7596     management, error handling, Makefiles &c to support dpkg.
7597   * dpkg-deb should now work if sizeof(void*) < sizeof(void(*)()).
7599  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 24 Apr 1995 12:34:39 +0100
7601 dpkg (0.93.37) BETA; priority=LOW (MEDIUM for dselect users)
7603   * Fixed segfault if no description available (Bug#735);
7604     thanks to Peter Tobias for the bug report.
7605   * Fixed other assorted minor bugs in description displays.
7607   * Changed dpkg-deb --info short option from -i to -I, to make
7608     it unique across dpkg and dpkg-deb (-i still works with
7609     dpkg-deb for backwards compatibility).
7611   * Produce more sensible error when main package list is empty.
7613  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 7 Apr 1995 02:24:55 +0100
7615 dpkg (0.93.36) BETA; priority=LOW (MEDIUM for dselect users)
7617   * All the C code (including dselect) updated to support `provides'
7618     (virtual packages).
7619   * Revamped dselect's related package selection/deselection
7620     algorithms.
7621   * Everything can now handle arbitrary `class' values (as well
7622     as the predefined ones which we understand and can interpret).
7623   * Fixed bug that prevented display update when moving down a small
7624     recursive package list in dselect.
7625   * Column heading characters corrected from `SHOC' to `HSOC'.
7627  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 6 Apr 1995 12:48:13 +0100
7629 dpkg (0.93.35) BETA; priority=MEDIUM
7631  * Preserve ownerships and permissions on configuration files.
7632  * Fix bug in conffile updating that could leave a hardlink
7633    <foo>.dpkg-new to the conffile <foo>.
7635  * Improved dselect's package list help messages.
7636  * Highlight now moves on after (de)selecting just one package.
7637  * Better algorithm for scrolling up/down when moving highlight.
7638  * Fixed bug in display of `preformatted' extended Description lines.
7639    (dselect is still ALPHA, but is fairly stable.)
7641  * Improved dpkg's message when configuring a package that doesn't
7642    exist, and when selecting or skipping a package that isn't
7643    currently selected (during unpack processing).
7645  * Description in control file expanded.
7647  * Scroll back to top when changing what is in the `info' area.
7649 dpkg (0.93.34) BETA; priority=LOW (HIGH for dselect users)
7651  * dselect: Fixed bug which caused a coredump if you exited the
7652    package list if you'd made any changes.  Ouch !
7654  * dselect: Improved selection algorithm to show fewer extraneous
7655    packages; improved display for unavailable packages.
7657  * dpkg: Improved progress messages during unpacking somewhat.
7659 dpkg (0.93.33) BETA; priority=LOW (HIGH for dselect users)
7661  * dselect now has a main menu.
7663  * Fixed nasty uninitialised data bug in dselect.
7665  * dselect now locks and unlocks the packages database.
7667 Mon, 27 Mar 1995 03:30:51 BST  Ian Jackson <iwj10@cus.cam.ac.uk>
7669         * dpkg (0.93.32): Alpha dselect released and installed in
7670                           /usr/sbin/dselect.
7671         * dpkg (0.93.32): Many portability enhancements: should now
7672                           compile using GCC 2.6.3, and dpkg-deb should
7673                           compile better on non-Linux systems.
7674         * dpkg (0.93.32): dpkg will not loop if its stdin disappears
7675                           and it needs to prompt.
7676         * dpkg (0.93.32): Fixed removal dependency error to show
7677                           correct package (Bug #648).
7678         * dpkg (0.93.32): Tidied up copyright notices.
7679         * dpkg (0.93.32): First draft of update-rc.d manpage, not yet
7680                           installed in /usr/man.
7681         * dpkg (0.93.32): Changes to top-level Makefile.in to improve
7682                           error trapping.
7683         * dpkg (0.93.32): Improved Makefile `clean' and `distclean'
7684                           targets.
7685         * dpkg (0.93.32): Deleted irrelevant `t.c' from lib and
7686                           dselect directories.
7687         * dpkg (0.93.32): Added vercmp.c with version comparison code.
7688         * dpkg (0.93.32): varbufextend message changed - varbufs not
7689                           just for input buffers.
7690         * dpkg (0.93.32): varbuf has C++ member functions in header
7691                           #ifdef __cplusplus.
7693 Changes in dpkg 0.93.31:
7695 * start-stop-daemon --pidfile now works (Bug#571).
7696 * Fixed dependency processing bugs which could require a rerun of
7697   dpkg --configure (Bug#566).
7698 * Fixed garbage output for `language' of control file in dpkg-deb --info.
7700 Changes in dpkg 0.93.30:
7702 * Added /usr/sbin/start-stop-daemon.
7704 Changes in dpkg 0.93.09:
7706 * Made postinst scripts really be run when dpkg --purge used.
7707 * Added new --force-extractfail option - VERY DANGEROUS.
7709 Changes in dpkg 0.93.28:
7711 * Removed undef of 0x_p21 in read_database_file, which caused the
7712   the whole status database to become trashed when any update files
7713   were read.
7714 * Make infinite-loop prevention and cycle detection work.
7715 * Made findbreakcycle work (ie, break properly when cycle detected).
7716 * New script, update-rc.d, to update links /etc/rc?.d/[KS]??*.
7717 * dpkg.pl now sets the umask to 022.
7718 * Cosmetic error message fix to dpkg-deb.
7719 * Deleted OLD directory altogether.
7720 * Improved error-trapping in top-level Makefile loops.
7722 Changes in dpkg 0.93.27:
7724 * Make version number specifications in Depends &c work.
7725 * Added AC_PROG_CXX to autoconf.in for dselect.
7726 * Changed myopt.h not to have cipaction field in cmdinfo (this was
7727   specially for dpkg-deb) - now we have a generic void*.
7728 * Renamed `class' member of `pkginfoperfile' to `clas' [sic].
7729 * Much work in `dselect' subdirectory.
7730 * Deleted executables, objects and libraries from OLD tree !
7731 * Minor changes to various copyright notices and top-of-file comments.
7732 * Don't install nasty Perl dselectish thing as /usr/bin/dselect.
7734 Changes in dpkg 0.93.26:
7736 * Added --no-also-select instead of not auto-selecting on --unpack
7737   but doing so on --install; removed --force-unpack-any.
7739 Changes in dpkg 0.93.25:
7741 * Fixed duplicate output (failure to flush before fork) bug.
7742 * More clarification of md5sum.c copyright.
7743 * Corrected typo in ChangeLog in 0.93.24 source package.
7745 Changes in dpkg 0.93.24:
7747 * dpkg could copy conffiles info from one package to another.  Aargh.
7748   Bug #426.
7749 * dpkg failed to initialise status if you tried to remove or
7750   configure a nonexistent package.  Bug #419.
7751 * install-info now handles START-INFO-DIR-ENTRY entries like:
7752    * Gdb::                         The GNU debugger.
7753   Previously it would only accept (Bug #407):
7754    * Gdb: (gdb).                   The GNU debugger.
7755 * When installing a new foo.info[.gz], install-info now replaces
7756    * Foo: (foo.info).              The Gnoo Foo.
7757   as well as just * Foo: (foo). ...
7758 * Moved option parsing out of dpkg-deb into libdpkg.
7759 * Assorted minor source code rearrangements.
7760 * Fixed assorted copyright notices, clarified md5sum copyright.
7761 * Corrected typo in 0.93.23 source package's ChangeLog.
7763 Changes in dpkg 0.93.23:
7765 * `dpkg-deb' --build now does a syntax check on the control file.
7766 * `dselect' is now no longer called `debian', spurious copy removed
7767   from package top-level source directory.
7768 * C control information parsing complete and somewhat tested.
7769 * Moved `global' include files into $(srcdir)/include from ../lib,
7770   added some files to the lib Makefile, and arranged for pop_cleanup().
7772 Changes in dpkg 0.93.22:
7774 * Fixed bug which caused dpkg to see failures of md5sum where there
7775   were none (would also have caused dpkg to miss a real failure).
7776 * Fixed failure to update some `status' database fields.
7778 Changes in dpkg 0.93.21:
7780 * Fixed error-handling bug which could corrupt database.
7782 Changes in dpkg 0.93.20:
7784 * Fixed bug which ran old (/var/adm/dpkg) postinst scripts.
7785 * Fixed dpkg usage message which claimed -i => both --install & --info.
7786 * Use Colin Plumb's MD5 code - faster, and better copyright.
7787 * Manpages: dpkg-deb(8), deb-control(5), deb(5) - thanks to Raul
7788   Deluth Miller.  Also, an xfig picture of some C program innards.
7790 Changes in dpkg 0.93.19:
7792 * Don't delete the `list' file from the dpkg database.
7793 * Fixed various bugs in the conffile handling.
7794 * Conffiles that are symlinks will now be treated as if the
7795   `dereferenced' name of the file was listed in conffiles.  This means
7796   that /etc/foo -> /usr/etc/foo will cause all conffile updates of
7797   /etc/foo to create /usr/etc/foo.dpkg-tmp &c instead.  However, the
7798   link will be removed if --purge is used to delete all the conffiles.
7799 * When doing a new installation, or when updating a conffile that
7800   wasn't listed as a conffile in the old version of the package, don't
7801   do any prompting but just install the version from the archive.
7802 * Corrected error message if exec of dpkg --vextract failed
7803   and --instroot or --root specified.
7804 * Added new --force-unpack-any option.
7805 * Extra newline after --status output.
7806 * Added -W options to CFLAGS.
7807 * Fixed mistake in previous ChangeLog entry.
7809 Changes in dpkg 0.93.18:
7811 * Fixed invocation of dpkg-deb --vextract if --root or --instdir
7812   not specified.
7813 * Create /var/lib/dpkg/updates.
7815 Changes in dpkg 0.93.17:
7817 * install-info --remove exits with status 0 if it doesn't find the
7818   thing to remove, instead of status 1.
7819 * Error handling functions have __attribute__((format...)) if GCC.
7820 * push_cleanup its arg takes void **argv instead of char **argv.
7821 * Top-level Makefile.in has set -e before `for' loops.
7822 * dpkg-deb --info not-an-existing-file produces fewer error messages.
7824 Changes in dpkg 0.93.16:
7826 * Made --root= option really extract to $instroot instead of `/'.
7827 * install-info clears the 0444 bits in its umask.
7828 * Fixed a few database handling bugs which cause dpkg always to fail,
7829   and usually to corrupt the status database in various ways.
7830 * dpkg-deb completely rewritten, now doesn't tinker with
7831   /var/{adm,lib}/dpkg.  Should be faster.
7832 * Directory structure and Makefiles in source package reorganised.
7834 Changes in dpkg 0.93.15:
7836 * Added `debian' (dselect), still very primitive.
7837 * Database format changed, and moved from /var/adm to /var/lib.
7838 * Added dpkg --avail mode, --list, --status and --search.
7839 * Set of dpkg => dpkg-deb pass-through operations changed (but
7840   dpkg-deb not yet updated).
7841 * Added --root, --admindir and --instdir, as well as --isok &c.
7842 * Moved much stuff into /usr/lib/dpkg-lib.pl, rewritten status
7843   database handling.
7844 * Put packages in `purge' state even if `deinstall' requested if
7845   they have no postrm and no conffiles.
7846 * Version number comparisons fixed.
7847 * insert-version.pl now installes lib.pl filename too.
7848 * Strip trailing slashes when reading files from file lists.
7850 Changes in dpkg 0.93.14:
7852 * Fixed parsing of DEPENDS &c fields with trailing whitespace.
7853 * postinst now fixes up broken ispell.control file.
7854 * Cyclic dependency/multiple package removal processing: don't consider
7855   packages we've just removed when looking for a reason not to go ahead.
7856 * Added call to postinst with `purge' argument for expunging old
7857   configuration etc. that aren't listed in conffiles.
7859 Changes in dpkg 0.93.13:
7861 * sub S_ISREG defined in dpkg.pl.
7862 * Checking of DEPENDS &c fields was too lax, causing an internal error
7863   if you fed it certain kinds of broken control file.
7864 * Fixed misleading message from bogus installationstatus call.
7865 * New -u and -U options to dpkg-deb which don't unpack the /DEBIAN
7866   directory, and use these in dpkg.pl; clean up /DEBIAN in postinst.
7868 Changes in dpkg 0.93.12:
7870 * No longer needs *.ph files, since these appear to be broken.
7871 * Postinst fixes up *.control files with curly brackets.
7872 * embryo of dselect.
7874 Changes in dpkg 0.93.11:
7876 * New --ignore-depends option.
7877 * This ChangeLog changed format here.
7879 Wed Nov 30 15:38:21 GMT 1994  Ian Jackson  <iwj10@cus.cam.ac.uk>
7881         * dpkg 0.93.11 released.
7883         * conffile updating fixed.
7885         * Message `updgrade' in dpkg changed to `replace'.
7887         * install-info now copes with multi-line entries.
7889         * version numbers now done automatically in dpkg and install-info.
7891         * more debugging around conffiles updates.
7893         * *.hash files not deleted so soon.
7895         * adds brand new packages to status array so we can install them.
7897         * postinst does h2ph for {sys,linux}/{stat,types}.ph if required.
7899 Mon Nov 28 02:00:13 GMT 1994  Ian Jackson  <iwj10@cus.cam.ac.uk>
7901         * dpkg 0.93.10 released.
7903         * dpkg.pl completely rewritten.
7905         * dpkg-deb: removed dabase-processing and --install option.
7907         * Makefiles reworked, debian.rules added.
7909         * Don't install anything in /usr/doc/examples.
7911         * dpkg-*.deb contains /usr/bin/dpkg-deb.dist, fixed up by postinst.
7913 Thu Oct 20 13:22:20 1994  Ian Murdock  (imurdock@debra.debian.org)
7915         * dpkg 0.93.9 released.
7917         * dpkg.pl: Use $argument, not $package, with `--build'.
7918         Make sure that saved postinst scripts are executable.
7920 Tue Oct 18 09:40:57 1994  Ian Murdock  (imurdock@debra.debian.org)
7922         * dpkg 0.93.8 released.
7924         * deb/remove.c (pkg_remove): Do not report an error from rmdir ()
7925         when `errno' is ENOTEMPTY (Directory not empty), because in this
7926         case we have found the highest-level directory in the package and
7927         are ready to exit the loop (i.e., it is a normal occurrence).
7929 Mon Oct 17 10:44:32 1994  Ian Murdock  (imurdock@debra.debian.org)
7931         * Makefile.in: Adapted all Makefiles to the GNU Coding Standards.
7933         * deb/remove.c (pkg_remove): Make sure that parent directories are
7934         removed LAST!  This will result in complete removal of packages
7935         when --remove is called.  dpkg 0.93.7 (and earlier) had problems
7936         with this because it tried to remove directories in order, which
7937         will work most of the time, but not necessarily all of the time.
7939         * deb/list.c (pkg_list): Output is sorted by package name.
7941 Tue Oct  4 12:27:10 1994  Ian Murdock  (imurdock@debra.debian.org)
7943         * deb/contents.c (pkg_contents): When a list file cannot be
7944         opened, silently fail and let the front-end explain the problem.
7946         * deb/util.c (return_info): When a control file cannot be opened,
7947         silently fail and let the front-end explain the problem.
7949         * deb/search.c (pkg_search): Exit 0 if the regular expression is
7950         matched and 1 if it is not.
7952 Mon Oct  3 18:38:53 1994  Ian Murdock  (imurdock@debra.debian.org)
7954         * dpkg.pl: New file.  Replaces dpkg.sh.
7956         * deb/Makefile.in: Renamed `dpkg-util.deb' to `dpkg-deb'.
7958         * deb/build.c (pkg_build): `--build' is less verbose, instead
7959         letting the front-end add verbosity where appropriate.
7961         * deb/install.c (pkg_install): Ditto.
7963         * deb/remove.c (pkg_remove): Ditto.
7965         * deb/search.c (pkg_search): Ditto.
7967         * deb/describe.c (pkg_describe): `--describe' is less verbose,
7968         instead letting the front-end add verbosity where appropriate.
7969         The ``Description:'' label has been removed.
7971         * deb/version.c (pkg_version): `--version' is less verbose,
7972         instead letting the front-end add verbosity where appropriate.
7973         The ``Version:'' label has been removed, as has the maintainer
7974         information.
7976 Mon Sep 12 14:22:04 1994  Ian Murdock  (imurdock@debra.debian.org)
7978         * deb/version.c (pkg_version): `--version' now reports the
7979         version number of dpkg if no argument is specified.
7981 Thu Sep  1 13:31:37 1994  Ian Murdock  (imurdock@debra.debian.org)
7983         * dpkg 0.93.7 released.
7985         * deb/build.c (pkg_build): check status and exit if non-zero.
7987         * deb/contents.c (pkg_contents): ditto.
7989         * deb/install.c (archive_extract): ditto.
7991 Thu Sep  1 13:20:08 1994  Ian Murdock  (imurdock@debra.debian.org)
7993         * deb/version.c (pkg_version): indent to the same point as
7994         pkg_describe.
7996 Thu Sep  1 12:21:11 1994  Ian Murdock  (imurdock@debra.debian.org)
7998         * Makefile.in (dist): added debian.rules binary, source and
7999         dist targets to make final distribution easier to make.
8000         (install): install programs to /usr/bin.
8002         * deb/Makefile.in (install): install programs to /usr/bin.
8004         * deb/list.c (pkg_list): enforce a maximum limit of ten characters
8005         for the package name in the output.
8006         (pkg_list): left-justify the version number to make it easier for
8007         the front-end to parse the output.
8008         (pkg_list): replace first '\n' character in packages[n].description
8009         with '\0'.
8011         * deb/install.c (archive_extract): use the `p' option to `tar' to
8012         ensure that permissions are preserved.
8014 Sat Aug 27 09:53:37 1994  Ian Murdock  (imurdock@debra.debian.org)
8016         * dpkg 0.93.6 released.
8018         * deb/util.c (return_info): only unlink CONTROL if ARCHIVE_FLAG is
8019         true!
8021 Fri Aug 26 15:38:22 1994  Ian Murdock  (imurdock@debra.debian.org)
8023         * dpkg 0.93.5 released.
8025         * deb/contents.c (pkg_contents): merged function archive_contents
8026         into function pkg_contents.
8028         * deb/contents.c (pkg_contents): use lstat (rather than stat) so
8029         that symbolic links are recognized.
8030         (pkg_contents): print the usual `<path> -> <link_to>' now that we
8031         recognize symbolic links.
8033         * deb/util.c (return_info): create a FIFO to pipe the needed
8034         information to the ``formatter'' rather than creating a directory
8035         in /tmp for the package information, which is what we used to do.
8037 Thu Aug 25 11:46:27 1994  Ian Murdock  (imurdock@debra.debian.org)
8039         * lib/fake-ls.c (mk_date_string): return a pointer to malloc'ed
8040         area.
8041         (mk_mode_string): ditto.
8043         * dpkg.sh: make sure the control information is extracted to a
8044         uniquely-named temporary directory during package installation.
8046         * dpkg.sh: execute the pre- and post-removal scripts during
8047         package removal.
8049         * dpkg.sh: exit immediately if dpkg-util.deb reports failure.
8051         * deb/install.c (pkg_control): make sure that `package' exists and
8052         is a Debian archive before doing anything.
8054         * deb/install.c (pkg_extract): make sure that `package' exists and
8055         is a Debian archive before doing anything.
8057         * deb/install.c (pkg_install): unlink `extract_output' when done.
8059         * deb/remove.c (pkg_remove): use lstat (rather than stat) so that
8060         --remove does not get confused and think that a symbolic link to a
8061         directory is actually a directory, which results in the symbolic
8062         link never being removed at all.
8064 ChangeLog begins Thu Aug 25 11:46:27 1994 for dpkg 0.93.5.