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