Release 1.22.7
[dpkg.git] / debian / changelog
blobfe3b1a11f1d0d8df9d986fec3f7ae8da4eb409ec
1 dpkg (1.22.7) unstable; urgency=medium
3   [ Guillem Jover ]
4   * dpkg-buildpackage: Remove fallback handling for missing required targets.
5   * dpkg-buildpackage: Fix the debian/rules executable check to respect -R.
6   * dpkg-realpath: Rewrite in C.
7   * Revert "test: Pass -T+1 to xz to workaround spurious warning with xz
8     5.6.0".
9   * dpkg-genbuildinfo: Parse Provides as virtual packages.
10   * dpkg: Do not run hooks or loggers with --dry-run or while unprivileged.
11     Closes: #1071124
12   * dpkg-shlibdeps: Add support for new --package option.
13   * dpkg-buildpackage: Make newline injection during signing GnuPG specific.
14     See https://dev.gnupg.org/T7106.
15   * dpkg-realpath: Do not allow an empty pathname argument.
16   * dpkg-buildpackage: Add support for building from a specified .dsc or dir.
17   * dpkg-buildpackage: Reference the .dsc in .buildinfo if building from one.
18     Closes: #882511
19   * Perl modules:
20     - Dpkg::BuildDriver: Refactor build driver out of dpkg-buildpackage.
21     - Dpkg::Vendor::Ubuntu: Use -fcf-protection=none instead of
22       -fno-cf-protection. Thanks to Matthias Klose <doko@ubuntu.com>.
23     - Dpkg::Vendor::Debian: On native builds map *_FOR_BUILD flags to * flags.
24       Closes: #1072332
25     - Dpkg::OpenPGP::ErrorCodes: Update error codes from SOP draft version 10.
26       See https://ietf.org/archive/id/draft-dkg-openpgp-stateless-cli-10.html.
27     - Dpkg::Vendor::Debian: Set -Wno-error on qa=-bug-implicit-func.
28       Closes: #1075769
29     - Dpkg::Shlibs::Cppfilt: Normalize demangled symbols with llvm or C++11
30       format.
31     - Dpkg::Archive::Ar: New module.
32     - Dpkg::Vendor::Debian: Guarantee UTF-8 locale codeset on sanitize-env.
33     - Dpkg::Substvars: Add support for required substvars assigned with !=.
34     - Dpkg::Source::Package: Document method additions with an object.
35     - Dpkg::Source::Package::V3::Bzr: Remove unused variables.
36     - Dpkg::Source::Package: Add a new get_basedirname() method.
37   * Make fragments:
38     - Protect files against double inclusion.
39       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
40     - Use filter instead of findstring.
41       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
42     - Use explicit test of $(origin) instead of ?=.
43       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
44     - Search once for parallel= in DEB_BUILD_OPTIONS.
45       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
46     - Generate the _FOR_BUILD variant of each variable automatically.
47       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
48     - Reduce the number of subprocesses.
49       Thanks to Nicolas Boulenguez <nicolas@debian.org>. Closes: #872381
50     - Stop hard-coding dpkg_datadir.
51       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
52   * Documentation:
53     - doc: Add missing full stop to end of sentence.
54     - man: Document DEB_BUILD_ARCH and DEB_HOST_ARCH usage in commands.
55       Prompted by Thorsten Glaser <tg@mirbsd.de>.
56     - man: Add new libdpkg(7) manual page.
57     - man: Document DPKG_COLORS and DPKG_NLS for all perl scripts honoring
58       them.
59     - man: Document missing Packages front-end fields in dpkg-query(1).
60     - man: Document weak checksum algorithms.
61     - man: Update verify format example to also include M.
62     - doc: Fix grammar for fallback.
63     - doc: Fix casing after admonition.
64   * Code internals:
65     - libdpkg: Factor out filesystem database file loading into new function.
66       Based on a patch by Simon Richter <sjr@debian.org>.
67     - libcompat: Include missing <string.h> in strnlen module.
68       Reported by Simon Richter <sjr@debian.org>.
69     - dpkg-buildpackage: Refactor build target hook execution.
70     - libdpkg: Handle readlink() failures in file_readlink().
71     - libdpkg: Change varbuf_get_str() to return "" instead of initializing it.
72     - libdpkg: Rename varbuf_get_str() to varbuf_str().
73     - Use varbuf_str() instead of direct access.
74     - libdpkg: Always NUL terminate varbufs.
75     - libdpkg: Remove varbuf_end_str() function.
76     - libdpkg: Add support for DPKG_NLS environment variable.
77     - libdpkg: Add new varbuf prefix and suffix handling functions.
78     - libdpkg: Add new file_getcwd() function.
79     - dpkg: Use a variable for each conffile pathname type.
80     - src: Fix timestamp parse error reporting. See #1069846.
81     - src: Check whether SOURCE_DATE_EPOCH is set before parsing it.
82       Based on a patch by Rainer Weikusat <rweikusat@cyberadapt.com>.
83       Closes: #1069846
84     - libdpkg: Add missing header includes.
85     - libdpkg: Make file_slurp_fd() NUL-terminate the varbuf.
86     - libdpkg: Refactor lax problem reporting into parse_lax_problem()
87       function.
88     - libdpkg: Turn the warning on Provides version relation into a lax error.
89       See #930317.
90     - libdpkg: Make varbuf_detach() always return a string.
91     - libdpkg: Factor fsys_list_parse_buffer() out of
92       ensure_packagefiles_available().
93     - dpkg-shlibdeps: Refactor executable CLI parsing.
94     - dpkg: Refactor conffile disappearing check into a new function.
95     - Merge conffile obsolete and remove-on-upgrade into a single flags member.
96     - lib, src: Include missing <stdbool.h>.
97       Reported by Simon Richter <sjr@debian.org>.
98     - dpkg-ar: New internal ar implementation script.
99     - start-stop-daemon: Fix typos in code comments.
100     - libcompat: Fix vasprintf() to error out if vsnprintf() returns >=
101       INT_MAX.
102     - libdpkg: Do not accept len >= INT_MAX in fd_read() and fd_write().
103     - dpkg-realpath: Switch direct varbuf accesses to varbuf_str().
104     - Revert "dpkg-realpath: Switch direct varbuf accesses to varbuf_str()".
105       See https://bugs.debian.org/1076061.
106     - dpkg-realpath: Guarantee varbufs have been allocated.
107     - Check for < 0 instead of == -1 from syscall return values.
108     - Check for >= 0 instead of != -1 for syscall return values.
109     - dpkg: Check for < 0 instead of == -1 for conffderef() return values.
110     - libdpkg: Check for limit >= 0 instead of != -1 in buffer_copy().
111     - libdpkg: Check for updateslength < 0 instead of == -1 in ulist_select().
112     - dselect: Use enum values instead of literal integers.
113     - libdpkg: Add new execname module.
114     - libdpkg: Try to print the executable name of the lock contending process.
115       Closes: #1070027
116     - perl: Use new Dpkg::Source::Package->get_basedirname() method.
117   * Build system:
118     - Re-enable the sanitizer for functional tests in CI.
119     - Add missing space before backslash line continuation character.
120     - Unconditionally include <stddef.h>.
121     - Do not check for memcpy(). Reported by Simon Richter <sjr@debian.org>.
122     - Do not check for functions used unconditionally.
123     - Partially revert the sanitizer for some functional tests in CI.
124     - Print the release version at the end of configure.
125     - Add support to track release VCS commit id.
126     - Pass abs_srcdir and abs_builddir to the TAP driver.
127     - Rework subst handling for built or installed artifacts.
128     - Workaround Tap::Harness verbose misbehavior on parallel mode.
129       See https://github.com/Perl-Toolchain-Gang/Test-Harness/issues/105.
130     - Fix test verbose and parallel option propagation.
131     - Add missing files and sort POTFILES.in.
132     - Check whether HAVE_* macros for headers are defined.
133     - Include a .dist-vcs-url file in the distributed tarball.
134     - Do not include VCS specific files in the distributed tarball.
135   * Packaging:
136     - Suppress start-stop-daemon compat symlink if /sbin is missing.
137       Thanks to Johannes Schauer Marin Rodrigues <josch@debian.org>.
138       Closes: #1071078
139   * Test suite:
140     - Do not fail the functional test suite due to memory leaks.
141     - Pass --check-level=exhaustive to cppcheck.
142     - Unset DEB_BUILD_MAINT_OPTIONS in build flags tests.
143     - Simplify buildflags.mk test of _MAINT_APPEND when TEST_ is empty.
144       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
145     - Use loops instead of repetitions in mk fragment tests.
146       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
147     - Replace double quotes with single quote in shell recipes.
148       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
149     - Test exported variables in addition to Make variables.
150       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
151     - Test variable override.
152       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
153     - Test DEB_CXXFLAGS_MAINT_SET.
154       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
155     - Add missing test for CPP build tool.
156       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
157     - Test override of a build tool.
158       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
159     - Refactor real and virtual package setup.
160       Based on a patch by Johannes Schauer Marin Rodrigues <josch@debian.org>.
161     - Set CC to gcc in make fragments functional tests.
162     - Parametrize all Makefile fragment functional tests.
163     - Clarify the Makefile fragment variable being tested via comments.
164     - Add new DPKG_CHECK_DIFF macro to abstract file comparisons.
165     - Only execute Dpkg::Shlibs checks on ELF platforms.
166     - Unify all ar invocations into create, extract and list.
167     - Refactor ar handling into m4 macros.
168     - Switch ar m4 macros to use internal dpkg-ar implementation.
169   * Localization:
170     - Update Dutch man pages translations.
171       Thanks to Frans Spiesschaert <Frans.Spiesschaert@yucom.be>.
172       Closes: #1070144
173     - Update Swedish translations.
174       Thanks to Peter Krefting <peter@softwolves.pp.se>. Closes: #1070011
176   [ Helge Kreutzmann ]
177   * Localization:
178     - Update German man pages translation.
179     - Update German scripts translation.
181   [ Sven Joachim ]
182   * Localization:
183     - Update German programs translation.
185  -- Guillem Jover <guillem@debian.org>  Wed, 17 Jul 2024 01:10:42 +0200
187 dpkg (1.22.6) unstable; urgency=medium
189   [ Guillem Jover ]
190   * dpkg-deb: Fix up compressor parameters for default legacy format.
191   * Perl modules:
192     - Dpkg::Vendor::Debian: Make it possible to disable qa=-bug-implicit-func.
193       Closes: #1065371
194     - Dpkg::Vendor::Debian: Unconditionally set qa bug-implicit-func.
195       See #1065371.
196   * Documentation:
197     - man: Document dpkg versions supporting SOURCE_DATE_EPOCH for various
198       tools.
199   * Code internals:
200     - libdpkg: Use array access instead of pointer arithmetic for meminfo
201       parser.
202     - libdpkg: Use a macro to define the zstd default compression level.
203   * Build system:
204     - Test with minimal library dependencies in CI.
205     - Add gen-release script.
206   * Packaging:
207     - Fix typo in man page reference in changelog.
208   * Test suite:
209     - Refactor OpenPGP backend and commands list.
210     - Refactor certfile and keyfile filenames for OpenPGP test.
211     - Skip OpenPGP tests if the backend does not have a verify command.
212       Closes: #1065648
213   * Localization:
214     - Fix typos in Swedish man pages translations.
215       Thanks to Andreas Rönnquist <gusnan@debian.org>. Closes: #1065672
216     - Fix typos in Swedish man pages translations. Closes: #1065575
217     - Update Dutch man pages translations.
218       Thanks to Frans Spiesschaert <Frans.Spiesschaert@yucom.be>.
219       Closes: #1065518
220     - Update Portuguese man pages translations.
221       Thanks to Américo Monteiro <a_monteiro@gmx.com>. Closes: #1065401
223   [ Helge Kreutzmann ]
224   * Localization:
225     - Update German man pages translation.
227  -- Guillem Jover <guillem@debian.org>  Sun, 10 Mar 2024 20:21:24 +0100
229 dpkg (1.22.5) unstable; urgency=medium
231   [ Guillem Jover ]
232   * dpkg-buildapi: Remove -v alias for --version.
233   * dpkg-query: Fix exit codes for --show. Closes: #1064036
234   * Perl modules:
235     - Dpkg::OpenPGP::Backend::Sequoia: Update to new CLI API changes.
236     - Dpkg::OpenPGP::Backend::GnuPG: Add support for Sequoia gpg Chameleon.
237     - Dpkg::Vendor::Debian: Only append branch compiler flags if $flag is set.
238     - Dpkg::Vendor: Make the add_build_flags() a non-private method.
239     - Dpkg::Vendor::Ubuntu: Pass compiler flags to disable features.
240       Based on a patch by Matthias Klose <doko@ubuntu.com>.
241     - Dpkg::Vendor::Debian: Enable time64 feature by default except on
242       <some>-i386. Closes: #1037136
243       Based on a patch by Steve Langasek <steve.langasek@ubuntu.com>.
244     - Dpkg::Vendor::Debian: Enable qa=+bug-implicit-func for abi=+time64
245       feature. Based on a patch by Steve Langasek <steve.langasek@ubuntu.com>.
246   * Documentation:
247     - man, doc: Fix dpkg-buildapi option and command grouping in descriptions.
248     - man: Add spaces around make variable assignments.
249     - man: Do not duplicate list of known feature areas in dpkg-buildflags.
250     - man: Document known feature areas in DEB_BUILD_OPTIONS for
251       dpkg-buildpackage.
252     - man: Improve build flags feature specification in environment variables.
253       Closes: #1063641
254     - man: Use L</> markup for inter link reference.
255     - man: Mention Build-Depends-Packages in dpkg-shlibdeps(1).
256   * Code internals:
257     - libdpkg: Add comment clarifying GNU long name tar format expectations.
258     - libdpkg: Use an intermediate mode variable in secure_unlink_statted().
259     - dpkg: Rename symlink_len to linksize.
260     - dpkg: Rename r variable for readlink() return value to linksize.
261     - dpkg: Reduce variable scope in conffderef().
262     - libdpkg: Refactor file_readlink() function.
263     - libdpkg: Deindent an else clause.
264     - lib, src: Fold if with last previous else.
265     - perl: Fold if into previous else.
266     - dpkg-mergechangelogs: Refactor merge_tail() sub from anonymous sub.
267     - dpkg-query: Rename rc variables tracking no matches to misses.
268     - dpkg-query: Rename failures variables tracking no matches to misses.
269   * Build system:
270     - Rename pkexec variables to polkitactions.
271     - Move directory definitions to configure.
272     - Use PACKAGE_TARNAME for pathname components in directories.
273     - Split each automake variable value into its own line.
274     - Reorder automake variables.
275     - Move update-alternatives rules within automake conditional.
276     - Move MD_LIBS from LDFLAGS to LDADD for libdpkg.
277     - Fix libdpkg library flags for static and dynamic linking.
278     - Add infrastructure for bash-completions.
279   * Test suite:
280     - Pass -T+1 to xz to workaround spurious warning with xz 5.6.0.
281       Closes: #1064856
283   [ Helge Kreutzmann ]
284   * Localization:
285     - Update German man pages translation.
286     - Update German scripts translation.
288  -- Guillem Jover <guillem@debian.org>  Tue, 27 Feb 2024 04:28:03 +0100
290 dpkg (1.22.4) unstable; urgency=medium
292   [ Guillem Jover ]
293   * Code internals:
294     - dpkg: Rename r variable for readlink() return value to symlink_len.
295     - dpkg: Rename r variable for fd_read() return value to n.
296     - dpkg-deb: Rename r variable for fd_read() return value to nread.
297     - dpkg-deb: Rename r variables for fd_read() call chain return value to rc.
298     - dpkg-split: Rename r variable for strtoimax() return value to ret.
299     - libdpkg: Rename r variable for path_quote_filename() return to ret.
300     - libdpkg: Rename r variable for fclose() return value to rc.
301     - libdpkg: Rename r variables for printf()-like return values to n.
302     - libdpkg: Handle tar long GNU names and links not being NUL terminated.
303       Closes: #1061404
304     - perl: Use qw() when importing symbols.
305     - dpkg-gensymbols: Move foreach inlined array elements into a list.
306     - dpkg-scansources: Fix newline breaks for ternary operators.
307   * Packaging:
308     - Update copyright years.
310  -- Guillem Jover <guillem@debian.org>  Wed, 24 Jan 2024 13:12:31 +0100
312 dpkg (1.22.3) experimental; urgency=medium
314   [ Guillem Jover ]
315   * dpkg-buildtree: New program.
316   * Perl modules:
317     - Dpkg::Vendor::Debian: Parametrize fortify level.
318     - Dpkg::Vendor::Ubuntu: Default to fortify level 3.
319     - Dpkg::OpenPGP::Backend::SOP: Add reference to another gosop blocker.
320     - Dpkg::OpenPGP::Backend::GnuPG: Accept keybox format keyrings as-is.
321     - Dpkg::OpenPGP::Backend: Remove unused strict_verify option.
322     - Dpkg::OpenPGP::Backend::GnuPG: Look harder for trustedkeys keyring.
323     - Dpkg::Changelog::Debian: Remove wrong import arguments.
324     - Dpkg::Vendor::Debian: Split bug-implicit-func from bug feature in qa
325       area.
326   * Documentation:
327     - man: Use semantic line breaks (must requirements).
328     - man: Remove trailing full stop before parenthetical.
329     - man: Use «package maintainer script» instead of «Debian package
330       scripts».
331   * Code internals:
332     - libcompat: Make long_options array const.
333   * Packaging:
334     - Make the logdir variable local to its function in postrm.
335     - Install start-stop-daemon under /usr/sbin. Closes: #1059982
336     - Make get_vendor honor DEB_VENDOR environment variable.
337     - Check for usrmerge in bug-script on the same vendors as postinst.
338     - Do not install dpkg-fsys-usrunmess on Debian and Ubuntu.
339   * Localization:
340     - Fix L<> markup.
341     - Unfuzzy translations after semantic line break changes.
342     - Update Dutch man pages translation.
343       Thanks to Frans Spiesschaert <Frans.Spiesschaert@yucom.be>.
344       Closes: #1061085
345     - Update Swedish translations.
346       Thanks to Peter Krefting <peter@softwolves.pp.se>. Closes: #1059527
348   [ Helge Kreutzmann ]
349   * Localization:
350     - Update German man pages translation.
351     - Update German scripts translation.
353  -- Guillem Jover <guillem@debian.org>  Fri, 19 Jan 2024 12:10:52 +0100
355 dpkg (1.22.2) unstable; urgency=medium
357   [ Guillem Jover ]
358   * dpkg-shlibdeps: Do not require debian/control when parsing CLI options.
359     Closes: #1055536
360   * Architecture support:
361     - Remove arm64ilp32 support.
362       See https://lists.debian.org/debian-dpkg/2023/11/msg00007.html.
363     - Remove uclinux support.
364       See https://lists.debian.org/debian-dpkg/2023/11/msg00012.html.
365     - Remove knetbsd-any support.
366     - Restrict kfreebsd ports to amd64 and i386.
367     - Restrict kopensolaris ports to amd64 and i386.
368     - Restrict hurd ports to amd64 and i386.
369     - Restrict dragonflybsd ports to amd64.
370     - Restrict aix ports to powerpc and ppc64.
371     - Restrict solaris ports to amd64, i386, sparc and sparc64.
372     - Restrict darwin ports to amd64, arm, arm64, i386, powerpc and ppc64.
373     - Restrict freebsd ports to amd64, arm, arm64, i386, powerpc, ppc64, riscv.
374     - Split tupletable header names description into two paragraphs.
375   * Perl modules:
376     - Dpkg::OpenPGP::Backend::Sequoia: Switch to use --signer-file.
377     - Dpkg::Vendor::Debian: Mask PIE for alpha and ia64. Closes: #1040062
378     - Dpkg::Control::Types: Add aliases for type enumerations.
379   * Documentation:
380     - man: Add dpkg-build-api behavior for Rules-Requires-Root field defaults.
381     - man: Improve description for dpkg-build-api v1 items.
382     - doc, man: Clarify terminology for Debian control files.
383   * Code internals:
384     - libcompat: Disable VLA usage for gettext.h.
385     - libdpkg: Remove dead code after non-returning error function call.
386     - libdpkg: Mark varbuf constructor as explicit.
387     - Reduce variables scope.
388     - update-alternatives: Wrap the bad_format() function pointer call into a
389       new function.
390     - start-stop-daemon: Rename local variables shadowing global info()
391       function name.
392     - libdpkg: Add underscore after NO to FHFF_NONEW and FHFF_NOCOPY enum
393       values.
394     - Use FHFF_NONE instead of a literal 0 in calls to fsys_hash_find_node().
395       Reported by Alexandre Detiste <alexandre.detiste@gmail.com>.
396     - dpkg-split: Change heading print logic to use a proper boolean.
397     - dpkg-shlibdeps: Defer add_library_dir() calls after option parsing.
398     - libdpkg: Remove unused DEFAULTSHELL and DEFAULTPAGER macros.
399     - dpkg-buildapi: Do not include newline in Usage text to be translated.
400   * Build system:
401     - Check whether we need to linkg against libtinfo explicitly.
402     - Add support for structured procfs via struct psinfo.
403     - Replace action-if-found with : for extra libselinux check.
404     - Check and print sizeof off_t and time_t on the configure summary.
405   * Packaging:
406     - Use installtest instead of test target in autopkgtests.
407   * Test suite:
408     - Reorder check on whether pkg is NULL.
409     - Split and sort cppcheck arguments to be one per line.
410     - Remove unused cppcheck suppressions.
411     - Improve cppcheck coverage.
412     - Pass -I<builddir> to cppcheck instead of «.» if <builddir> is defined.
413   * Localization:
414     - Update Catalan translations.
415     - Update Dutch translations.
416       Thanks to Frans Spiesschaert <Frans.Spiesschaert@yucom.be>.
417       Closes: #1058631, #1058637
419   [ Helge Kreutzmann ]
420   * Localization:
421     - Update German man pages translation.
422     - Update German scripts translation.
424  -- Guillem Jover <guillem@debian.org>  Mon, 18 Dec 2023 03:37:08 +0100
426 dpkg (1.22.1) unstable; urgency=medium
428   [ Guillem Jover ]
429   * dpkg-deb: Reject --no-uniform-compression with format 0.939000.
430   * dpkg-deb: Force deb format 0.939000 to use gzip compression.
431   * update-alternatives: Fix typo in comment.
432   * update-alternatives: Unvendor documentation and --version output.
433   * scripts: Remove unused GCJ and GCJFLAGS support.
434   * scripts: Add basic support for _FOR_BUILD build flags.
435   * Perl modules:
436     - Dpkg::BuildAPI: Move DESCRIPTION before package declaration.
437     - Dpkg::Source::Archive: Use $Dpkg::PROGTAR instead of tar in error
438       message.
439     - Dpkg::Source::Patch: Warn when patching hard linked files.
440     - Dpkg::Vendor::Debian: Mark loong64 as having pie builtin.
441       Thanks to yalingfang <fangyaling@loongson.cn>. Closes: #1053778
442     - Dpkg::BuildFlags: Refactor flags initialization by using a single list.
443     - Dpkg::Deps: Implicitly enable build_deps option on tests_deps.
444       Closes: #1053481
445     - Dpkg::Vendor::Debian: Fix stackclash condition to enable the feature
446       on armhf and armel. Closes: #1054583
447   * Make fragments:
448     - Wrap DPKG_BUILDFLAGS_LIST into one entry per line.
449   * Documentation:
450     - man: Fix typo in stackclash feature name in dpkg-buildflags(1).
451     - doc: Fix typos in code comments.
452     - doc: Use macOS instead of Mac OS X in code comments.
453     - man: Document the list of editors tried on dpkg-source --commit.
454       Closes: #1051209
455     - doc: Update R³ default values to take dpkg-build-api into account.
456     - man: Clarify Maintainer field in dpkg-parsechangelog(1). See #1053705.
457     - man: Document all dpkg-parsechangelog(1) output fields.
458     - doc, man: Use manual page instead of manpage.
459     - doc, man: Use field name or field-name instead of fieldname.
460     - man: Use web interface instead of both terms concatenated.
461     - man: Hyphenate 32-bit and 64-bit.
462     - doc, man: Use L</> markup for inter link references.
463     - doc: Use name() POD syntax instead of C<>, B<> or L<> for function names.
464     - doc: Use name() POD syntax instead of a bare function name.
465     - doc: Simplify references in CHANGES sections.
466     - doc, man: Use L<> for manual page references.
467     - doc, man: Use media discs instead of CD-ROM.
468     - man: Use /media/bdrom instead of /media/cdrom.
469     - man: Fix grammar in dpkg --force-confdef description.
470     - man: Avoid redundant action list in dpkg invoke hook description.
471     - man: Document the intermediary filenames used during unpack and
472       configure. Prompted by Florian Weimer <fweimer@redhat.com>.
473       See https://sourceware.org/pipermail/libc-alpha/2023-October/152245.html.
474     - man: Update dpkg EXAMPLES section.
475     - man: Recommend debsig-verify instead of debsums for additional
476       functionality.
477     - doc: Clarify compiler flag variables are for the host.
478   * Code internals:
479     - src: Use DEBEXT instead of hard-coding ".deb".
480     - dpkg-deb: Initialize threads_max in no-uniform-compression mode.
481     - dpkg-deb: Refactor legacy compress_params.
482     - libdpkg: Refactor struct treewalk_funcs compound initializer into a
483       macro.
484     - libdpkg: Initialize TREEWALK_OBJECT with a 0.
485     - libdpkg: Define DPKG_NULL to nullptr on C23 mode.
486     - libcompat: Fix comparison of integers of different sign in
487       obstack_blank().
488     - libcompat: Declare exit_failure as an extern variable.
489   * Build system:
490     - Remove dpkg prefix from default deb compressor configure knobs.
491     - Parametrize dpkg-deb default compressor in man page.
492     - Use TAR variable from configure instead of hard-coded tar.
493     - Split sanitizer CI unit tests from author checks.
494     - Rename the shared library CI tests to shlib-tests.
495     - Run make in parallel for autotest and TAP CI test jobs.
496     - Make default shell and pager selectable at configure time.
497     - Handle almost-POSIX shells that do not support -- after -c.
498       See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274650.
499     - Check for available pagers during configure.
500     - Add comment for the system the DPKG_LIB_SOCKET m4 macro is needed.
501   * Packaging:
502     - Do not stop the dpkg-db-backup timer and service during upgrade.
503       Closes: #1051085
504     - Fix typos in debian/control comments.
505   * Test suite:
506     - Update cppcheck suppressions for 2.12.0.
507     - Add installtest target and make test use the build tree programs.
508     - Add new DPKG_CWD m4 macro.
509     - Do not use -T for ln calls.
510     - Generate the .deb from scratch instead of adapting them.
511     - Update suppressions for codespell 2.2.6.
512     - Use «\\n» after «a» and «c» sed commands.
513     - Use perl instead of dd to create a zero-filled file.
514     - Pass argument S to ar to avoid generating a symbol table.
515     - Replace SED usage with PERL.
516     - Include <sys/mkdev.h> on Solaris for major() and minor().
517   * Localization:
518     - Update Dutch translations.
519       Thanks to Frans Spiesschaert <Frans.Spiesschaert@yucom.be>.
520       Closes: #1053235, #1053236, #1053237
521     - Update Portuguese man pages translation.
522       Thanks to Américo Monteiro <a_monteiro@gmx.com>. Closes: #1051634
523     - Update Romanian dselect translation.
524       Thanks to Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>.
525       Closes: #1053364
526     - Update Romanian programs translation.
527       Thanks to Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>.
528       Closes: #1054196
529     - Update Swedish translations.
530       Thanks to Peter Krefting <peter@softwolves.pp.se>. Closes: #1054510
532   [ Helge Kreutzmann ]
533   * Localization:
534     - Update German man pages translation.
535     - Update German scripts translation.
537   [ Sven Joachim ]
538   * Localization:
539     - Update German programs translation.
541  -- Guillem Jover <guillem@debian.org>  Mon, 30 Oct 2023 04:14:22 +0100
543 dpkg (1.22.0) unstable; urgency=medium
545   [ Guillem Jover ]
546   * dpkg: Do not reset the line number for each --command-fd parsed command.
547   * dselect: Add non-free-firmware archive area support.
548   * dselect: Relicense ftp method from GPL-2 to GPL-2+.
549   * dpkg-deb: Do not print trailing spaces in --info output.
550   * dpkg: Clarify that commands can take package-name or --pending in error
551     message. Closes: #1034466
552   * Remove avr32, m32r and tilegx obsolete architectures.
553     See Linux commit 26202873bb51fafdaa51be3e8de7aab9beb49f70 (avr32).
554     See Linux commit 553b085c2075f6a4a2591108554f830fa61e881f (m32r).
555     See Linux commit bb9d812643d8a121df7d614a2b9c60193a92deb0 (tile).
556   * dpkg-db-keeper: Add helper script to assist with tracking database changes.
557   * dpkg-buildpackage: Add support for new preinit hook. Closes: #1023753
558   * dselect: Remove handling of .GZ, .Z and .z compressed Package files.
559   * dselect: Fix stdout+stderr discarding redirection in ftp method.
560     Prompted by shellcheck.
561   * dpkg-buildpackage: Fix build hook action substitution string handling.
562   * dpkg-buildpackage: Set the hook options in an environment variable.
563     Closes: #902856
564   * dpkg-buildpackage: Set DPKG_BUILDPACKAGE_HOOK_NAME envvar for hooks.
565   * dpkg-buildpackage: Handle missing information for hook substitutions.
566   * dpkg-deb: Fix short lived memory leak after fork().
567   * Switch from pkg-config to pkgconf.
568   * dpkg: Handle non-existent .dpkg-tmp files on read-only filesystems.
569     Closes: #1030149
570   * dpkg-buildpackage: Fix R³ namespace check to only refuse unknown dpkg
571     keywords. Closes: #1036865
572   * dpkg-buildapi: New tool to fetch the dpkg-build-api level.
573   * dpkg-shlibdeps: On dpkg-build-api >= 1 require -l instead of
574     LD_LIBRARY_PATH.
575   * dpkg-buildpackage: On dpkg-build-api >= 1 default R³ to no.
576   * dpkg-buildpackage: On dpkg-build-api >= 1 avoid build target heuristics.
577   * Mark dpkg-build-api level 1 as stable.
578   * Architecture support:
579     - Restore "arch: Add support for loong64 CPU". Closes: #1028654
580   * Perl modules:
581     - Dpkg::OpenPGP::ErrorCodes: Add new OPENPGP_CMD_CANNOT_SIGN error code.
582     - Dpkg::OpenPGP::Backend::GnuPG: On signing failure use
583       OPENPGP_CMD_CANNOT_SIGN. Closes: #1030271
584     - Dpkg::Shlibs::Objdump::Object: Split from Dpkg::Shlibs::Objdump.
585     - Dpkg::Control::HashCore::Tie: Split from Dpkg::Control::HashCore.
586     - Dpkg::Vars: Fold into Dpkg::Package.
587     - Dpkg::Package: Rename source_package symbols to source_name.
588     - Dpkg::Changelog::Parse: Fix indentation of copyright and license notice.
589     - Dpkg::Version: Update POD for removed semantic_change::overload::bool
590       warning.
591     - Dpkg::Gettext: Relicense from BSD-2 to GPL-2+.
592     - Dpkg::Source::Archive: Fix file normalization for relative pathnames.
593     - Dpkg::Source::Archive: Reflow regex match in _add_entry().
594     - Dpkg::Control::FieldsCore: Deprecate implicit field_transfer_single()
595       argument.
596     - Dselect::Method::Ftp: Rename from Dselect::Ftp.
597     - Dselect::Method::Ftp: Modify config and site subs towards method
598       independence.
599     - Dselect::Method: Move to be generic functions from Dselect::Ftp.
600     - Dselect::Method::Ftp: Update package name.
601     - Dpkg::Vendor::Debian: Add time64 feature in the future area.
602       Based on a patch by Helge Deller <deller@gmx.de>. Closes: #1030159
603     - Dpkg::Control::HashCore::Tie: Rename $last to $prev.
604     - Dpkg::Substvars: Handle exponential expansion gracefully.
605     - Dpkg::Shlibs::Objdump: Remove unsupported ELF machine types.
606     - Dpkg::Shlibs::Objdump: Add ELF machine types for all supported arches.
607     - Dpkg::Shlibs::Objdump: Add RISC-V ELF ABI tracking.
608     - Dpkg::Shlibs::Objdump: Add OR1K ELF ABI tracking.
609     - Dpkg::Shlibs::Objdump: Switch get_format() to return a colon-separated
610       string.
611     - Dpkg::Shlibs::Objdump: Add back the ARM ABI mismatch mask but commented
612       out. See #853793.
613     - Dpkg::Source::Quilt: Switch get_db_file() to be based off get_db_dir().
614     - Dpkg::Vendor::Debian: Mark PIE as builtin on hurd-amd64.
615     - Dpkg::Vendor::Debian: Only use ABI bits to suppress LFS or time64
616       features.
617     - Dpkg::Vendor::Debian: Only enable LFS when time64 is enabled for glibc.
618     - Dpkg::Vendor::Debian: Invert time64 suppression list logic.
619     - Dpkg::Vendor::Debian: Ignore musl libc systems for time64 suppression.
620     - Dpkg::Vendor::Debian: Add fallback values for ABI attributes.
621     - Dpkg::Source::Package::V2: Mark single-debian-patch as not needing
622       forwarding. Closes: #1038121
623     - Dpkg::Vendor::Debian: Sync builtin pie arches with gcc-13.
624     - Dpkg::Vendor::Debian: Move time64 buildflags feature from future to abi.
625       Suggested by Steve Langasek <vorlon@debian.org>.
626     - Dpkg::Vendor::Debian: Move lfs from future to abi area and create an
627       alias. Suggested by Steve Langasek <vorlon@debian.org>.
628     - Dpkg::Vendor::Debian: Move builtin default setup before
629       init_build_features().
630     - Dpkg::Vendor::Debian: Handle abi feature flags as builtin.
631     - Dpkg::Vendor::Debian: Add support for new hardening branch feature.
632       Closes: #1021292
633     - Dpkg::Vendor::Debian: Add support for new stackclash hardening feature.
634       Closes: #918914
635     - Dpkg::Source::Quilt: Switch get_patch_file() to be based off
636       get_patch_dir().
637     - Dpkg::BuildAPI: New module.
638   * Make fragments:
639     - Add new buildapi.mk support.
640     - On dpkg-build-api >= 1 default to dpkg_vendor_derives_from_v1.
641     - On dpkg-build-api >= 1 include buildtools.mk in default.mk.
642   * Documentation:
643     - man: Add notes about reproducibility properties for path fixing build
644       features. Prompted by Sven Joachim <svenjoac@gmx.de>.
645     - man: Itemize remaining lists.
646     - man: Unify admonition markup and formatting.
647     - man: Move shell redirection operator close to the redirected file.
648     - man: Add versions where build flag features were added.
649     - doc: Update triggers spec.
650     - man: Fix OpenPGP backends list in dpkg-buildpackage(1).
651     - doc: Use «honor» and «behavior» uniformly in documentation and output.
652     - man: Clarify that dpkg-reconfigure is part of the debconf project.
653     - doc: Add a Status field to frontend-api spec.
654     - man: Clarify shared library name formats and their purpose.
655     - man: Add SECURITY sections.
656     - man: Spell out «manual page».
657     - man: Clarify C.UTF-8 locale setting hint. Closes: #1028296
658     - man: Update methods provided by dselect(1).
659     - man: Turn buildinfo filename format selection into a list.
660     - man: Itemize supported deb-changelog(5) keyword/value entries.
661     - doc: Move Perl version baseline as the first perl coding style
662       subsection.
663     - doc: Clarify required C/C++ standards.
664     - doc: Require POSIX.1-2008.
665     - man: Mention .buildinfo in dpkg-buildpackage --sign-command description.
666     - doc: Fix typo.
667     - man: Document known DEB_BUILD_OPTIONS options. Closes: #1038888
668     - man: Clarify the md5sums checks as integrity and not security checks.
669       Prompted by Sebastian Andrzej Siewior <sebastian@breakpoint.cc>.
670     - man: Clarify dpkg-architecture -c option.
671       Prompted by Paul Wise <pabs@debian.org>.
672     - man: Document version when new programs where introduced.
673     - man: Fix typo in future lfs feature introduction version.
674     - man: Open up dpkg-build-api level 1.
675   * Code internals:
676     - libdpkg: Move early return into the loop.
677     - libdpkg: Remove impossible condition.
678     - libdpkg: Turn bitmask parse_nv_flags into an actual enum parse_nv_mode.
679     - libdpkg: Move parse_nv() next word check inside else block.
680     - dpkg: Remove path_quote_filename() usage.
681     - dselect: Reduce variables scope.
682     - libcompat: Reduce variables scope.
683     - libdpkg: Reduce variables scope.
684     - update-alternatives: Reduce variables scope.
685     - src: Reduce variables scope.
686     - libdpkg: Rename mlib module to mustlib.
687     - dselect: Remove unused trailing semicolons.
688     - libdpkg: Surround macro within a do-while block.
689     - perl: Add $VERSION to all embedded perl packages.
690     - perl: Add POD to all private modules. Closes: #1030660
691     - perl: Move POD sections before what they describe.
692     - scripts: Unpack function arguments.
693     - scripts: Remove duplicate variable declaration.
694     - dselect: Reduce variable scope to avoid shadowing.
695     - perl: Move $VERSION into package keyword.
696     - perl: Remove unused Dpkg::Version semantic_change warning suppression.
697     - scripts: Use «(undef) x N» to ignore tuples or function returns.
698     - perl: Stop removing «.» from @INC before loading modules.
699     - dpkg-scansources: Reorder captured variable and regex match.
700     - perl: Use List::Util instead of fixed string matches within a regex.
701     - perl: Pass $_ explicitly to field_transfer_single().
702     - perl: Rename filename related variables to distinguish them from field
703       ones.
704     - dpkg-genchanges: Move comment describing %sourcedefault before
705       declaration.
706     - perl: Rename Dpkg::Control variables from $f to $c or $ctrl.
707     - perl: Use an $f variable for fields instead of the topic variable.
708     - perl: Use fixed string comparisons for field name matches.
709     - scripts: Switch code to use chained comparisons.
710     - dselect: Update Andy Guy email address.
711     - dselect: Remove unused ismulti() function from media method actions.
712     - dpkg-deb: Use intermediate variable for exec mark on --info output.
713     - dpkg-deb: Refactor maintscript interpreter parser.
714     - dpkg-deb, dpkg-query: Rename option flags to opt_NAME.
715     - dpkg-trigger: Rename CLI option variables from f_ to opt_.
716     - libcompat: Declare variables before definitions.
717     - libdpkg: Make local variables static.
718     - libdpkg: Rename FHFF_NONE to FHFF_NONEW.
719     - libdpkg: Switch bitmasks enumerations into precise masks.
720     - libdpkg: Add enumerations for the default, unset and max cases.
721     - libdpkg: Add warning suppression macros.
722     - lib: Add an enum flags attribute.
723     - lib, src, utils: Use new enum flag C attributes.
724     - libdpkg: Unconditionally initialize c variable in parse_stanza().
725     - start-stop-daemon: Initialize variables in run_stop_schedule().
726     - dpkg-genchanges: Refactor .changes file description formatting into a
727       function.
728     - dpkg-genchanges: Replace Encode usage with utf8 encode/decode functions.
729     - dpkg-gensymbols: Use File::Compare instead of Digest::MD5.
730     - dselect: Reword odd code comment.
731     - dselect: Use «color» uniformly in variables and comments.
732     - libdpkg: Handle missing Version when formatting source:Upstream-Version.
733       Reported by John Scott <jscott@posteo.net>.
734     - perl: Remove «1;» from end of script in programs.
735     - libdpkg: Pass -- after sh -c to avoid bogus option parsing.
736       Prompted by Joe Simmons-Talbott <josimmon@redhat.com> (on libc-alpha).
737     - libdpkg: Mask the mode from the tar entry to only the file mode bits.
738     - lib: Define __has_include fallback if the compiler does not support it.
739     - libdpkg: Simplify progress output by using fputs() and putchar().
740     - libdpkg: Mark the progress percentage for translation. See #1034378.
741     - dpkg-buildpackage: Turn items into lists for easier extensibility.
742     - libdpkg: Make headers self-contained.
743       Thanks to Simon Richter <sjr@debian.org>.
744     - libdpkg: Mark functions in headers as inline.
745       Thanks to Simon Richter <sjr@debian.org>.
746     - scripts: Do not set LANG unnecessarily.
747     - dpkg: Move comment next to the code it is describing.
748     - dpkg-buildpackage: Move hook invocation closer to artifact creation.
749     - dpkg-buildpackage: Default the enabled run_hook() parameter to true.
750     - dpkg-buildpackage: Turn the run_hook() enabled argument into a hash
751       option.
752     - libcompat: Use ptrdiff_t directly instead of using a macro.
753     - libcompat: Update getopt code from gnulib.
754     - libdpkg: Remove redundant check.
755     - lib, src: Add const qualifiers to variables.
756     - dselect: Add constVariableReference as a cppcheck suppression.
757     - libdpkg: Fix varbuf memory leak in pkg_source_version().
758     - dpkg-shlibdeps: Switch from exec() to Dpkg::IPC::spawn().
759       Prompted by Paul Wise <pabs@debian.org>.
760     - libdpkg: Fix coding style for varbuf module.
761     - libdpkg: Reorder varbuf functions.
762     - libdpkg: Add varbuf_add_varbuf() function.
763     - libdpkg: Add varbuf_add_strn().
764     - libdpkg: Add varbuf setter functions.
765     - libdpkg: Switch ustar filename construction to use varbuf_add_strn().
766     - dpkg-split: Use varbuf instead of ad-hoc allocation in read_info.
767     - Use varbuf_add_varbuf() instead of varbuf_add_buf()/_str().
768     - Use varbuf_set_*() instead of ad-hoc initialization.
769     - libdpkg: Generalize command_in_path() from find_command().
770   * Build system:
771     - Fix version script linker support detection.
772     - Enable -Wextra-semi compilation warning.
773     - Explicitly set the date when generating perl module man pages.
774     - Bump minimal Perl version to 5.32.1.
775     - Enable more compiler warnings.
776     - Remove unused AC_SIZEOF checks.
777     - Check for the host architecture attributes during configure.
778     - Detect whether we need librt for clock_gettime().
779     - Use an export symbols file if there is no version script support.
780     - Add -no-undefined libtool flag.
781     - Add support for .git-blame-ignore-revs file.
782     - Fix typo in .gitignore filename by renaming it.
783       Thanks to Simon Richter <sjr@debian.org>.
784     - Remove vim swap file entry from .gitignore.
785     - Ignore tags files.
786       Based on a patch by Simon Richter <sjr@debian.org>.
787     - Add perl prefixes into the Code Internals changelog section.
788     - Namespace COMPILER_*FLAGS with DPKG_.
789     - Add support for compiler sanitizer flags.
790     - Add support for compiler analyzer flags.
791     - Add new gcc-13 warnings.
792     - Warn on alloca() usage.
793     - Remove distcleancheck_listfiles override for CPAN dist-cpan target.
794     - Avoid Perl's exec() falling back to system().
795       Thanks to Paul Wise <pabs@debian.org>.
796       See https://perldoc.perl.org/functions/exec.html.
797   * Packaging:
798     - Merge copyright statements for the same holder.
799     - Remove executable permissions from maintscripts in source.
800     - Remove no longer needed alternatives fixup from postint.
801     - Remove no longer needed maintscripts for method renames.
802     - Fix removal of file method state directory on purge.
803     - Wrap fields in debian/tests/control file.
804     - Set Persistent=true for dpkg-db-backup systemd timer.
805       Thanks to Teemu Likonen <tlikonen@iki.fi>. Closes: #1041730
806     - Do not start the dpkg-db-backup timer during installation.
807   * Test suite:
808     - Update perlcritic checks and suppressions.
809     - Disable perlcritic checks that are not relevant.
810     - Reduce scope of variable to avoid shadowing others.
811     - Do not use potentially bogus variable value.
812     - Enable perlcritic RegularExpressions::ProhibitCaptureWithoutTest.
813     - Disable -Wassign-enum for tests using out of range enum values.
814     - Make some perlcritic checks more strict.
815     - Update rationale for perlcritic check suppressions.
816     - Use the TAR detected at configure time in autotests.
817     - Use the SED detected at configure time in autotests.
818     - Use m4 to implement seq instead of assuming GNU seq is present.
819     - Add missing argument to DPKG_FILE_SIZE m4 function.
820     - Add more substvar recursive replace cases.
821     - Define lzma based on xz if missing.
822     - Switch deb non-uniform members test to use uncompressed control.tar.
823     - Use AT_DATA instead of touch to create empty files.
824     - Refactor deb-format package template generation into a new macro.
825     - Split deb-format tests per compressor.
826     - Fix t-disappear-depended test.
827     - Add cases for disappearing with diversions.
828     - Add cases for disappearance on diverted overwrites and third parties.
829       Suggested by Simon Richter <sjr@debian.org>.
830     - Quote command variables in case these contain spaces.
831     - Use the GREP/EGREP detected at configure time in autotests.
832     - Pass -n to gzip for all invocations.
833     - Generate the pkg-old.deb from controlled parts.
834     - Compute the sizes for «dpkg-deb -I» output dynamically.
835     - Add test cases for dpkg-buildpackage hook support.
836     - Use dpkg-buildpackage --no-sign instead of each --unsigned-* option.
837     - Add new stop words for codespell 2.2.5.
838     - Update cppcheck suppressions for 2.11.
839     - Define macros to help cppcheck analyze code.
840     - Fix varbuf memory leak in t-pkg-format test.
841     - Rename merge_changlogs test to match the command being tested.
842     - Add new test case checking Conflicts with Replaces.
843     - Fix t-conffile-divert-conffile case.
844     - Use «ar qc» to create archives with duplicate members.
845     - Move test_data_file() to test.h.
846   * Localization:
847     - Add Portuguese scripts translations.
848       Thanks to Américo Monteiro <a_monteiro@gmx.com>. Closes: #1032562
849     - Clarify license for translation files.
850     - Fix Project-Id-Version to match the gettext domain.
851     - Unify translation header description.
852     - Update Dutch header boilerplate with an actual copyright line.
853     - Update French scripts translation.
854       Thanks to Sébastien Poher <sebastien@volted.net>.
855     - Update Romanian dselect translation.
856       Thanks to Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>.
857       Closes: #1040869
858     - Use Dpkg Developers instead of listing them individually.
860   [ Helge Kreutzmann ]
861   * man: Remove a now superfluous character from dpkg(1).
862   * Localization:
863     - Update German man pages translation.
864     - Update German scripts translation.
866   [ Sven Joachim ]
867   * Localization:
868     - Update German dselect translation.
869     - Update German programs translation.
871  -- Guillem Jover <guillem@debian.org>  Wed, 30 Aug 2023 05:39:24 +0200
873 dpkg (1.21.20) unstable; urgency=medium
875   [ Guillem Jover ]
876   * Documentation:
877     - man: Remove duplicate word in dpkg-buildflags(1).
878       Thanks to Peter Krefting <peter@softwolves.pp.se>.
879   * Packaging:
880     - Fix versioned Build-Depends on debhelper. Closes: #1030288
881     - Update lintian overrides.
882   * Test suite:
883     - Update suppressions for cppcheck 2.10.
884     - Skip auto-generated policykit policy file.
885   * Localization:
886     - Add Dutch scripts translation. Closes: #1030712
887       Thanks to Frans Spiesschaert <Frans.Spiesschaert@yucom.be>.
888     - Unfuzzy translations due to typo fix.
889     - Update Czech translations. Closes: #1029706, #1030267
890       Thanks to Miroslav Kure <kurem@upcase.inf.upol.cz>.
891     - Update Dutch translations. Closes: #1030710, #1030711
892       Thanks to Frans Spiesschaert <Frans.Spiesschaert@yucom.be>.
893     - Update French man page translation. Closes: #1030618
894       Thanks to Jean-Pierre Giraud <jenapierregiraud75@free.fr>.
895     - Update French programs translations.
896       Thanks to Sébastien Poher <sebastien@volted.net>.
897     - Update Hungarian programs translation.
898       Thanks to Nagy Elemér Károly <nagy.elemer.karoly@gmail.com>.
899     - Update Korean dselect translation.
900       Thanks to Sangdo Jun <sebuls@gmail.com>.
901     - Update Occitan programs translation.
902       Thanks to Quentin PAGÈS <quentinantonin@free.fr>.
903     - Update Portuguese programs translation.
904       Thanks to Miguel Figueiredo <elmig@debianpt.org>.
905     - Update Romanian programs translation.
906       Thanks to Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>.
907     - Update Russian translations. Closes: #1030162, #1030378
908       Thanks to Yuri Kozlov <yuray@komyakino.ru>.
909     - Update Simplified Chinese translations.
910       Thanks to Boyuan Yang <byang@debian.org>.
911     - Update Spanish dselect translation.
912       Thanks to jonatan porras <jonatanpc8@gmail.com>.
913     - Update Swedish translations.
914       Thanks to Peter Krefting <peter@softwolves.pp.se>.
915     - Update Thai programs translation.
916       Thanks to Theppitak Karoonboonyanan <thep@debian.org>.
917     - Update Traditional Chinese dselect translation.
918       Thanks to Cheng-Chia Tseng <pswo10680@gmail.com>.
919     - Workaround po4a formatting issue in French translation.
921  -- Guillem Jover <guillem@debian.org>  Tue, 07 Feb 2023 12:19:12 +0100
923 dpkg (1.21.19) unstable; urgency=medium
925   [ Guillem Jover ]
926   * Architecture support:
927     - Revert "arch: Add support for loong64 CPU". See #1028654.
928   * Perl modules:
929     - Dpkg::OpenPGP::Backend::GnuPG: Set secure signing preferred algorithms.
930       Closes: #1028961
931     - Dpkg::OpenPGP::Backend::GnuPG: Touch trustedkeys.gpg on temporary gpg
932       home.
933     - Dpkg::OpenPGP::Backend::GnuPG: Fallback to use «gpg dearmor» if
934       present. Reported by Sven Joachim <svenjoac@gmx.de> (on IRC).
935     - Dpkg::Vendor::Ubuntu: Fix lto feature to honor DEB_BUILD_OPTIONS.
936   * Test suite:
937     - Set the permissions explicitly for the copied ChangeLog.old file.
938     - Add unit tests for lto build flags handling in Ubuntu.
939       Thanks to Shengjing Zhu <shengjing.zhu@canonical.com>.
940       See https://bugs.launchpad.net/bugs/2002582.
941   * Localization:
942     - Update Catalan translation.
943     - Update Portuguese man pages translation.
944       Thanks to Américo Monteiro <a_monteiro@gmx.com>. Closes: #1028981
946   [ Sven Joachim ]
947   * Localization:
948     - Update German programs translation.
950   [ Helge Kreutzmann ]
951   * Localization:
952     - Update German man pages translation.
954  -- Guillem Jover <guillem@debian.org>  Tue, 24 Jan 2023 23:39:50 +0100
956 dpkg (1.21.18) unstable; urgency=medium
958   [ Guillem Jover ]
959   * Perl modules:
960     - Dpkg::BuildFlags: Fix strip method to always work with duplicates.
961       Closes: #1028044
962   * Documentation:
963     - man: Add a note to dpkg-fsys-usrunmess(8) about Debian support.
964       Closes: #1008486
965   * Code internals:
966     - libdpkg: Move compression level max bound check from dpkg-deb.
967     - libdpkg: Switch dpkg_lzma_strerror() to use struct io_lzma.
968     - libdpkg: Split compression filter operation tracking from its status.
969     - libdpkg: Generalize compression stream action handling.
970     - libdpkg: Abstract compression stream status tracking.
971     - libdpkg: Add zstd support for .deb archives. Closes: #892664
972   * Build system:
973     - Update .mailmap mappings.
974   * Packaging:
975     - Update copyright years.
976   * Test suite:
977     - Add dpkg-deb build and extract tests.
979  -- Guillem Jover <guillem@debian.org>  Tue, 10 Jan 2023 18:46:37 +0100
981 dpkg (1.21.17) unstable; urgency=medium
983   [ Guillem Jover ]
984   * dpkg-genbuildinfo: Do not fail if the cross-compiler cannot compile.
985     Closes: #1027966
986   * Code internals:
987     - dpkg-buildinfo: Fix indentation.
988   * Packaging:
989     - Stop shipping the «git log» changelog in exchange for no trimming.
990       Closes: #1027716
992  -- Guillem Jover <guillem@debian.org>  Thu, 05 Jan 2023 12:34:05 +0100
994 dpkg (1.21.16) unstable; urgency=medium
996   [ Guillem Jover ]
997   * dpkg-deb: Fix buffer overflow on long directory names with old deb formats.
998     Reported by Georgy Yakovlev <gyakovlev@gentoo.org>.
999   * Perl modules:
1000     - Dpkg::Compression: Pass --no-adjust to xz to force compression threaded
1001       mode.
1002     - Dpkg::Compression: Make xz not emit warnings nor exit non-zero on
1003       warnings.
1004     - Dpkg::OpenPGP::Backend::SOP: Add sqop as an alternative SOP
1005       implementation.
1006     - Dpkg::Source::Package::V3::Git: Move error() argument out of g_() call.
1007   * Code internals:
1008     - libdpkg: Make xz not emit warnings nor exit non-zero on warnings.
1010   [ Helge Kreutzmann ]
1011   * Localization:
1012     - Update German man pages translation.
1013     - Update German scripts translation.
1015  -- Guillem Jover <guillem@debian.org>  Wed, 04 Jan 2023 23:57:40 +0100
1017 dpkg (1.21.15) unstable; urgency=medium
1019   [ Guillem Jover ]
1020   * Perl modules:
1021     - Dpkg::BuildFlags: Add new get_feature() method.
1022     - Dpkg::Vendor::Debian: Use get_feature() instead of use_feature() for PIE.
1023       Reported by Helmut Grohne <helmut@subdivi.de>.
1024     - Dpkg: Temporarily silence deprecation warnings.
1025   * Test suite:
1026     - Improve TAP descriptions to clarify we are testing patch(1).
1028   [ Sven Joachim ]
1029   * Localization:
1030     - Update German programs translation.
1032  -- Guillem Jover <guillem@debian.org>  Mon, 02 Jan 2023 12:44:53 +0100
1034 dpkg (1.21.14) unstable; urgency=medium
1036   [ Guillem Jover ]
1037   * dpkg-source: Add new --threads-max option to control threaded compressors.
1038   * dpkg-buildflags: Add support for features handled as builtin defaults.
1039   * Perl modules:
1040     - Dpkg::Compression::Process: Unify and simplify cmdline handling.
1041     - Dpkg::Compression: Change $COMP hashref into a %COMP hash.
1042     - Dpkg::Compression: Add new compression_get_file_extension() and switch to
1043       it.
1044     - Dpkg::Compression: Move the POD for each function immediately before it.
1045     - Dpkg::Compression: Clarify the compression_get/set_default_level() are
1046       global.
1047     - Dpkg::Compression: Use %COMP directly in functions when it is safe.
1048     - Dpkg::Compression: Add new compression_get/set_level() and switch to it.
1049     - Dpkg::Compression: Add new compression_get/set_cmdline_de/compress().
1050     - Dpkg::Compression: Deprecate compression_get_property().
1051     - Dpkg::Compression: Add multi-threaded xz support.
1052     - Dpkg::Vendor::Devuan: Add new vendor module.
1053       Requested by Ivan J. <parazyd@dyne.org>.
1054     - Dpkg::BuildFlags: Make it possible to not load the vendor defaults on
1055       new().
1056     - Dpkg::BuildFlags: Add a new use_feature() method.
1057     - Dpkg::BuildFlags: Add a new set/get_option_value() private methods.
1058     - Dpkg::BuildFlags: Add missing feature area to is_maintainer_modified()
1059       POD.
1060     - Dpkg::BuildFlags: Add support for builtin build flags.
1061     - Dpkg::Vendor::Debian: Track option values state as a build flag options.
1062     - Dpkg::Vendor::Debian: Generalize feature areas defaults.
1063     - Dpkg::Vendor::Ubuntu: Use a string comparison instead of debarch_eq().
1064     - Dpkg::Vendor::Ubuntu: Use new build flag option override support to set
1065       -O3.
1066     - Dpkg::Vendor::Ubuntu: Handle LTO by default using new feature overrides.
1067     - Dpkg::BuildEnv: Rename from Dpkg::Build::Env.
1068     - Dpkg::BuildTypes: Rename from Dpkg::Build::Types.
1069     - Dpkg::BuildInfo: New module to deprecate the Dpkg::Build::Info module.
1070   * Documentation:
1071     - man: Document dpkg-source -q option.
1072     - doc: Update TODO.
1073     - man: Document start-stop-daemon options that might be no-ops on some
1074       systems.
1075     - man: Turn spaces followed by tabs into spaces in start-stop-daemon(8).
1076     - man: Use stanza instead of paragraph, block or record for deb822 parts.
1077   * Code internals:
1078     - libdpkg: Use correct return type in meminfo functions definitions.
1079     - libdpkg: Split DPKG_ATTR_ declarations.
1080     - lib: Refactor format attributes into a common *_ATTR_FMT.
1081     - lib: Use __name__ format for attributes.
1082     - lib: Use __has_attribute() to check for attribute availability.
1083     - libdpkg: Mark tar on-disk members with attribute nonstring.
1084     - scripts: Use stanza instead of entry or block.
1085     - libdpkg: Rename functions with names containing record to stanza.
1086     - dselect: Rename functions with names containing block to stanza.
1087     - perl: Add missing space around equal-based operators.
1088     - scripts: Fix indentation.
1089     - perl: Fix list and hash literals indentation.
1090     - scripts: Cuddle else and elsif.
1091     - perl: Remove excess blank lines.
1092     - dselect, src, utils: Remove excess blank lines.
1093     - dpkg-scansources: Turn spaces followed by tabs into spaces.
1094   * Packaging:
1095     - Clarify new xz multi-threaded support is for decompression.
1096     - Bump Standards-Version to 4.6.2.
1097   * Test suite:
1098     - Add unit tests for most of Dpkg::Compression.
1099   * Localization:
1100     - Update Dutch translations.
1101       Thanks to Frans Spiesschaert <Frans.Spiesschaert@yucom.be>.
1102       Closes: #1027312, #1027313
1104   [ Helge Kreutzmann ]
1105   * Localization:
1106     - Update German man pages translation.
1107     - Update German scripts translation.
1109  -- Guillem Jover <guillem@debian.org>  Sun, 01 Jan 2023 23:48:16 +0100
1111 dpkg (1.21.13) unstable; urgency=medium
1113   [ Guillem Jover ]
1114   * Perl modules:
1115     - Test::Dpkg: Refactor OpenPGP requisite into test_needs_openpgp_backend().
1116     - Dpkg::Backend::GnuPG: Ensure future signing interop with gpg --openpgp.
1117   * Documentation:
1118     - man: Move parallel-safe note from dpkg-buildpackage -j option to
1119       --jobs-force.
1120   * Code internals:
1121     - start-stop-daemon: Cast struct sockaddr_un to struct sockaddr on bind()
1122       call.
1123     - lib: Stop using register keyword.
1124     - libcompat: Remove unused arguments from ngettext() fallback macro.
1125     - libcompat: Switch manual copying to memcpy() in obstack module.
1126     - libcompat: Switch obstack to use size_t.
1127     - libcompat: Use an union to track chunkfun and freefun.
1128     - dpkg-architecture: Fix indentation.
1129     - libdpkg: Fix pdb_lax_stanza_parser and pdb_allow_empty aliased values.
1130     - libcompat: Add noreturn and sentinel C attributes.
1131     - utils: Switch to use libcompat attributes.
1132     - libdpkg: Add new multi-threaded xz decompression support. Closes: #956452
1133     - libdpkg: Pass -T+1 instead of -T1 to xz when compressing.
1134     - libdpkg: On threads-max > 0 pass --no-adjust to xz to force threaded
1135       mode.
1136     - Use hyphenated multi-threaded in text.
1137   * Build system:
1138     - Consider lib and utils prefixes as internal in gen-changelog.
1139     - Fix m4 files coding style.
1140     - Include <stdio.h> for printf() usage in __progname check.
1141   * Packaging:
1142     - Require liblzma >= 5.4.0 for multi-threaded decompressor support.
1143     - Clarify versioned dependency rationale comments.
1144     - Add pkgconf as main Build-Depends alternative to pkg-config.
1145   * Test suite:
1146     - Skip deb-format tests if required compressors are not present.
1147     - Use a custom dpkg database directory for dpkg-buildpackage tests.
1148     - Switch Dpkg::Source::Package test to use test_needs_openpgp_backend().
1149     - Skip deb-format tests if gzip is not present.
1150     - Skip dpkg-source tests if xz is not present.
1151     - Use the PERL detected at configure time in autotests.
1152     - Use perl instead of yes+dd to generate a data-file for deb-split.
1153   * Localization:
1154     - Update Simplified Chinese programs translation.
1155       Thanks to Boyuan Yang <byang@debian.org>. Closes: #1025625
1157  -- Guillem Jover <guillem@debian.org>  Mon, 19 Dec 2022 02:07:45 +0100
1159 dpkg (1.21.12) unstable; urgency=medium
1161   [ Guillem Jover ]
1162   * dpkg-architecture: Properly compute required information to gather.
1163     Reported by Sören Tempel <soeren@soeren-tempel.net>.
1164   * Code internals:
1165     - dpkg-architecture: Rename information tracking constants and variables.
1166   * Packaging:
1167     - Set paths for configure in autopkgtests to match installed ones.
1168     - Add libmd-dev to libdpkg-dev Depends.
1169       Reported by Alexandre Detiste <alexandre.detiste@gmail.com>.
1171  -- Guillem Jover <guillem@debian.org>  Tue, 06 Dec 2022 04:27:57 +0100
1173 dpkg (1.21.11) unstable; urgency=medium
1175   [ Guillem Jover ]
1176   * dpkg-genbuildinfo: Do not fail if there is no cross-compiler.
1177     Closes: #1025273
1178   * Documentation:
1179     - doc: Update Doxyfile after code reorganization.
1180     - doc: Update Doxygen configuration from version 1.9.4.
1181     - man: Remove B<> or replace with S< >.
1182   * Code internals:
1183     - libdpkg: Document str_end parameter for str_strip_quotes().
1184   * Packaging:
1185     - Add libmd-dev to the test-root and test-not-root autopkgtests.
1186     - Add source lintian-overrides.
1187     - Remove obsolete libncursesw5-dev alternative from Build-Depends.
1188     - Update copyright years.
1189   * Localization:
1190     - Unfuzzy translations after markup fixes.
1192   [ Helge Kreutzmann ]
1193   * Localization:
1194     - Update German man pages translation.
1196  -- Guillem Jover <guillem@debian.org>  Sat, 03 Dec 2022 00:18:29 +0100
1198 dpkg (1.21.10) unstable; urgency=medium
1200   [ Guillem Jover ]
1201   * dpkg: Avoid setgid(2) call if not needed.
1202     Thanks to Christian Göttsche <cgzones@googlemail.com>. Closes: #1014332
1203   * dpkg-architecture: Do not compute values that are not required.
1204   * dpkg-buildpackage: Fix swapped long options for -m/-e.
1205   * dpkg-buildpackage: Add --source-by and --changed-by aliases for -m/-e.
1206   * dpkg-deb: Add support for DPKG_DEB_COMPRESSOR_TYPE/LEVEL. Closes: #550475
1207   * dpkg-genbuildinfo: Refactor build-tainted-by gathering into a function.
1208   * dpkg-genbuildinfo: Add new can-execute-cross-built-programs tainted flag.
1209     Thanks to Johannes Schauer Marin Rodrigues <josch@mister-muffin.de>.
1210     Closes: #1011191
1211   * dpkg: Make -E also take into account the architecture.
1212     Thanks to Ian Jackson <ijackson@chiark.greenend.org.uk>. Closes: #1014476
1213   * dpkg-source: Fix confusing regex match for option arguments.
1214   * dpkg-buildpackage: Fix --jobs and --jobs-try parsing with no «=».
1215   * dpkg-buildpackage: Rename --jobs/--jobs-try argument in --help output.
1216   * dpkg-buildpackage: Add new --jobs-force option.
1217   * dpkg-buildpackage: Change -j, --jobs semantics to non-force mode.
1218     Closes: #905835
1219   * dpkg, dpkg-statoverride: Install SELinux log callback to filter messages.
1220     Thanks to Christian Göttsche <cgzones@googlemail.com>.
1221   * dselect: Clarify non-free section as optional not free software component.
1222     Closes: #30972
1223   * dselect: Require the Dpkg modules for the ftp access method.
1224   * dpkg-buildpackage: Remove blank line around signfile output lines.
1225   * dpkg-buildpackage: Add new --sign-keyid and alias --sign-key to it.
1226   * dpkg-buildpackage: Add --sign-keyfile and DEB_SIGN_KEYFILE support.
1227   * dpkg-buildpackage: Add --sign-backend to specify the OpenPGP backend.
1228   * dpkg-source: Translate source format specific --help option descriptions.
1229   * dpkg-shlibdeps: Cache soname check against shlibs files. Closes: #1022766
1230   * libdpkg, dpkg: Switch triggers database to use reproducible package names.
1231     Closes: #990712
1232   * update-alternatives: Switch point at which we increment alternative
1233     refcount.
1234   * dpkg: Fix setting admindir when root is set.
1235   * dpkg-split: Add support for --root and --admindir.
1236   * Architecture support:
1237     - Move i386 and ia64 in an alphabetical-ish order in the cputable.
1238     - Add support for loong64 CPU.
1239       Based on a patch by 张丹丹 <zhangdandan@loongson.cn>. Closes: #1023486
1240   * Perl modules:
1241     - Dpkg::Source::Package::V1: Remove redundant exit handler for erasedir().
1242     - Dpkg::Source::Package::V2: Update and clarify patch header metadata
1243       template.
1244     - Dpkg::Deps: Merge dependency string into a single line when parsing.
1245       Closes: #1019565
1246     - Dselect::Ftp: Switch to current mirror list for ftp method output.
1247     - Dpkg::Source::Package: Use File::Spec instead of ad-hoc concatenation.
1248     - Dpkg::Source::Package: Verify signatures before printing source files
1249       addition.
1250     - Dpkg::Source::Package: Print verifying signature for all source formats.
1251     - Dpkg::Vendor: Rename @tries variable to @names.
1252     - Dpkg::Vendor: Fix get_vendor_file() to return on first match.
1253       Reported by Niels Thykier <niels@thykier.net> (on IRC).
1254     - Dpkg::Vendor: Avoid duplicate file loading attempts.
1255     - Dpkg::Vendor: Prefer loading lowercase vendor file first as documented.
1256       Reported by Niels Thykier <niels@thykier.net> (on IRC).
1257     - Dpkg::Vendor: Prefer loading capitalized vendor modules.
1258     - Dpkg::Vendor: Use a normalized key to access the cached objects.
1259       Reported by Niels Thykier <niels@thykier.net> (on IRC).
1260     - Dpkg::Vendor: Fix vendor file loading for vendors with special
1261       characters.
1262     - Dpkg::Vendor: Fix module loading for vendors with special characters.
1263       Reported by Niels Thykier <niels@thykier.net> (on IRC).
1264     - Dpkg::Vendor: Deprecate loading vendor files with no special character
1265       mapping.
1266     - Dpkg::Vendor: Deprecate loading vendor module names starting lower-cased.
1267       Reported by Niels Thykier <niels@thykier.net> (on IRC).
1268     - Test::Dpkg: Refactor test files search into _test_get_files function().
1269     - Dselect::Ftp: Declare %CONFIG with «our» instead of «my».
1270     - Dselect::Ftp: Conditionally load perl modules shipped in the perl
1271       package.
1272     - Test::Dpkg: Make test_get_temp_path() remove the path before creating it.
1273     - Dpkg::File: Add new file_dump() function.
1274     - Dpkg::File: Add new file_touch() function.
1275     - Dpkg::OpenPGP: Remove unused $exec_opts argument from _exec_openpgp().
1276     - Dpkg::OpenPGP: Pass opts as a hash ref on the first argument.
1277     - Dpkg::OpenPGP: Refactor _gpg_import_keys() out of import_key().
1278     - Dpkg::OpenPGP: Refactor GnuPG common options into functions.
1279     - Dpkg::OpenPGP: Require gpgv and do not fallback to gpg to verify
1280       signatures.
1281     - Dpkg::OpenPGP: Refactor _gpg_verify() out from verify_signature().
1282     - Dpkg::OpenPGP: Split verify_signature() into verify() and
1283       inline_verify().
1284     - Dpkg::OpenPGP: Rename keyrings option to certs.
1285     - Dpkg::OpenPGP: Rename and namespace GnuPG specific symbols.
1286     - Dpkg::OpenPGP: Refactor is_armored() out from openpgp_sig_to_asc().
1287     - Dpkg::OpenPGP: Refactor armoring code into an armor() function.
1288     - Dpkg::Source::Package: Add armor_original_tarball_signature() member.
1289     - Dpkg::OpenPGP: Merge ASCII armored key import into signature
1290       verification.
1291     - Dpkg::OpenPGP: Add native helpers for ASCII Armor.
1292       Thanks to Daniel Kahn Gillmor <dkg@fifthhorseman.net>.
1293       See https://salsa.debian.org/debian/devscripts/-/merge_requests/286.
1294     - Dpkg::OpenPGP: Switch armor() to use native OpenPGP armor functions.
1295     - Dpkg::OpenPGP: Add new dearmor() function.
1296     - Dpkg::OpenPGP: Use dearmor() instead of _gpg_import_keys() in
1297       _gpg_verify().
1298     - Dpkg::OpenPGP: Move status check from _gpg_exec() to _gpg_verify().
1299     - Dpkg::OpenPGP: Make it a class.
1300     - Dpkg::OpenPGP::KeyHandle: Refactor new key handle from dpkg-buildpackage.
1301     - Dpkg::OpenPGP: Pass an array instead of an arrayref to _gpg_exec().
1302     - Dpkg::OpenPGP::ErrorCodes: Add new module.
1303     - Dpkg::OpenPGP: Switch functions to return Dpkg::OpenPGP::ErrorCodes.
1304     - Dpkg::OpenPGP: Change inline_verify to take an output file.
1305       Requested by Daniel Kahn Gillmor <dkg@fifthhorseman.net>.
1306     - Dpkg::OpenPGP: Make armor idempotent.
1307     - Dpkg::Source::Package: Call armor() unconditionally for signature
1308       conversion.
1309     - Dpkg::OpenPGP: Remove now unnecessary is_armored() method.
1310       Prompted by Daniel Kahn Gillmor <dkg@fifthhorseman.net>.
1311     - Dpkg::OpenPGP: Call dearmor() unconditionally for GnuPG certificate
1312       imports.
1313     - Dpkg::OpenPGP: Reintroduce gpg fallback for signature verification.
1314     - Dpkg::OpenPGP: Automatically detect both cmd and cmdv.
1315     - Dpkg::OpenPGP: Refactor trusted keyrings from Dpkg::Source::Package.
1316     - Dpkg::OpenPGP: Refactor signing code from dpkg-buildpackage.
1317     - Dpkg::OpenPGP::KeyHandle: Add new needs_keystore() method.
1318     - Dpkg::OpenPGP::Backend: Refactor GnuPG functions from Dpkg::OpenPGP.
1319     - Dpkg::OpenPGP::Backend: Add new has_verify_cmd() method.
1320     - Dpkg::OpenPGP: Add multi-backend loading support.
1321     - Dpkg::OpenPGP: Add Sequoia backend support.
1322     - Dpkg::OpenPGP: Handle backend requiring a keystore daemon for signing.
1323     - Dpkg::Gettext: Fix typo in POD.
1324     - Dpkg::Changelog: Rename __sanity_check_range method to _sanitize_range.
1325     - Dpkg: Rename _sanity_check and _sanity_check_opts to _check_opts.
1326     - Dpkg::Source::Package: Rename _sanity_check to _check_workdir.
1327     - Dpkg::Shlibs::Objdump: Rename ELF constants to match more closely the
1328       spec.
1329     - Dpkg::Gettext: Add new gettext compatibility stub.
1330     - Dpkg::Shlibs: Handle unknown executable file formats.
1331       Reported by Helmut Grohne <helmut@subdivi.de> (on IRC).
1332     - Dpkg::OpenPGP: Add Stateless OpenPGP (SOP) backend support.
1333   * Make fragments:
1334     - Switch Fortran compiler variables to use gfortran.
1335       Spotted by Enrico Zini <enrico@debian.org>. Closes: #1024421
1336   * Documentation:
1337     - doc: Spell SELinux correctly.
1338     - man: Clarify how --build-by and --release-by get passed to
1339       dpkg-genchanges.
1340     - doc: Use https:// URLs instead of http:// when possible (round four).
1341     - doc: Switch releases download link from ftp.debian.org to deb.debian.org.
1342     - doc: Update git repo URL and mention it being the primary one.
1343     - doc: Fix typos.
1344     - man: Fix typo in markup.
1345     - man: Add description of bug closure Perl regex in deb-changelog(5).
1346       Based on a patch by Daniel Shahaf <danielsh@apache.org>.
1347       See #953911.
1348     - man: Clarify when package names get arch-qualified in dpkg-query output.
1349       Reported by Jakub Wilk <jwilk@jwilk.net> (on IRC).
1350     - doc: Do not use UTF-8 quotes in POD.
1351     - doc: Remove __END__ marker for ending POD documentation.
1352     - doc: Fix typos in coding-style.txt.
1353     - doc: Do not use «e.g.» outside parenthesis.
1354     - doc: Use US English spelling.
1355     - man: Switch debian-installer modules.txt reference to a git URL.
1356     - man: Clarify that dpkg-buildpackage --build components imply a single
1357       type. Closes: #927265
1358     - man: Clarify «hold» behavior with explicit actions in --force-hold
1359       text.
1360       See #985749.
1361     - man: Add references to deb-src-symbols(5) from deb-symbols(5).
1362     - doc: Fix «i.e.» usage.
1363     - man: Clarify dpkg-maintscript-helper switched symlinks/dirs need be
1364       shipped. Closes: #974053
1365     - man: Clarify Build-Profiles syntax in deb-src-control(5).
1366       Thanks to Christoph Berg <myon@debian.org>. Closes: #1022237
1367     - man: Clarify dpkg-buildpackage --sign-key description.
1368     - man: Mark «lto» as bold in list title in dpkg-buildflags(1).
1369     - man: Clarify PIE and ASLR acronyms and grammar in dpkg-buildflags(1).
1370     - man: Fix --depotdir default pathname in dpkg-split(1).
1371   * Code internals:
1372     - dpkg-genbuildinfo: Use Dpkg::Version to parse source version.
1373     - libdpkg: Fix type name for AIX dpkg_get_progname() implementation.
1374     - dpkg-deb: Move DPKG_DEB_THREADS_MAX parsing from libdpkg.
1375     - dpkg-deb: Refactor parse_compress_type() from set_compress_type().
1376     - dpkg: Remove redundant «continue» keyword at the end of a loop.
1377     - dpkg-fsys-usrunmess: Do not pass to print a ref to *STDERR.
1378     - update-alternatives: Call tzset() explicitly now that we use
1379       localtime_r().
1380     - dpkg-name: Use none() instead of ad-hoc comparisons.
1381     - dpkg: Rename struct relationinfo string member to op.
1382     - dpkg: Rewrite relationinfos array variable definition.
1383     - dpkg: Use explicit EXIT_SUCCESS/EXIT_FAILURE instead of 0/1 in
1384       relationinfos.
1385     - libdpkg, dselect: Reformat enum declarations.
1386     - libdpkg: Add new varbuf_add_dir() function.
1387     - libdpkg, dpkg: Use varbuf_add_dir() instead of _add_str() + _add_char().
1388     - libdpkg: Use updatesdir when using the updates directory.
1389     - libdpkg: Use pkg_infodb_get_dir() on opendir() instead of oldname.
1390     - libdpkg: Associate each varbuf_state to a varbuf.
1391     - libdpkg: Add new varbuf_rollback_len() and varbuf_rollback_start()
1392       functions.
1393     - libdpkg: Switch updatefn handling to use varbuf snapshots.
1394     - libdpkg: Rewrite fnis array variable definition.
1395     - libdpkg: Remove trailing «/» from UPDATESDIR definition.
1396     - dpkg-genchanges: Use intermediate variables to access fields.
1397     - dpkg-genchanges: Refactor $is_backport check into a boolean.
1398     - dselect: Unconditionally load perl modules included in perl-base.
1399     - dselect: Remove unused Net::FTP import from ftp method scripts.
1400     - scripts: Switch to use file_slurp() instead of open coding it.
1401     - scripts: Switch to use file_dump() instead of open coding it.
1402     - scripts: Switch to use file_touch() instead of open coding it.
1403     - dpkg-buildpackage: Rename $signkey to $signkeyid.
1404     - dpkg-buildpackage: Move error report into singfile().
1405     - dselect: Use %zd instead of %jd for pointer difference in format string.
1406     - libdpkg: Refactor system meminfo gathering into its own module.
1407     - libdpkg: Refactor meminfo gathering into a filename generic function.
1408     - libdpkg: Use an enum for meminfo return error codes.
1409     - libdpkg: Fix available memory computation for xz thread scaling.
1410       Closes: #1023870
1411     - dselect: Declare constructor with one argument as explicit.
1412     - libdpkg: Fix doxygen comment to match function argument.
1413     - libdpkg: Refactor database trigger await option parse/dump.
1414     - libdpkg: Parse and dump the explicit trigger await option on interest
1415       changes.
1416     - libdpkg: Switch trk_explicit_interest_change() to use
1417       pkg_spec_parse_pkg().
1418     - libdpkg: Add a new pnaw_same package name printing mode.
1419     - libdpkg: Remove unneeded intermediate variable in dpkg_fsys_set_dir().
1420     - dpkg-trigger: Refactor trigger activation into a new function.
1421     - dpkg-trigger: Turn do_check() into a cipaction function.
1422     - dpkg-trigger: Use ACTION macros and cipaction for CLI action selection.
1423     - dpkg-divert: Load database only from within relevant actions.
1424     - dpkg-statoverride: Load database only from within relevant actions.
1425     - src: Handle --help and --version as proper actions.
1426     - libdpkg: Refactor debug_parse_mask().
1427     - libdpkg: Add support for a new DPKG_DEBUG environment variable.
1428     - src: Make instdir static.
1429     - src: Avoid using instdir directly except for initialization.
1430     - libdpkg: Add new options-dirs module to handle directory option parsing.
1431     - libdpkg: Automatically initialize fsys and db dirs on demand.
1432       Reported by stackomatiker (on stackoverflow).
1433       See https://stackoverflow.com/questions/73529576.
1434   * Build system:
1435     - Add the author testing dependencies to Build-Depends under a profile.
1436     - Fully switch to libmd for MD5 implementation.
1437     - Simplify author testing.
1438     - Consider Dselect prefixes as perl modules too in gen-changelog.
1439     - Move authorcheck target to tap.am.
1440     - Sort test_data variables.
1441     - Use long options for lcov invocations.
1442     - Fix coverage reports after code restructuring.
1443     - Use long options for autotools commands.
1444     - Do not ignore Makefile under the functional test suite.
1445     - Consider src and scripts prefixes as internal in gen-changelog.
1446     - Consider scripts/mk prefixes as new «Make fragments» in gen-changelog.
1447   * Packaging:
1448     - Bump Standards-Version to 4.6.1 (no changes needed).
1449     - Properly install specs under /usr/share/doc/dpkg/spec/.
1450     - Do not compress spec files.
1451     - Update bogus lintian tag format.
1452     - Update debbugs usertags.
1453     - Switch from gpg to gnupg for author testing Build-Depends.
1454     - Add build dependencies for release process.
1455   * Test suite:
1456     - Do not use unportable -a option to cp.
1457     - Use «perl» instead of «stat -c '%s'».
1458     - Redirect dd stderr to /dev/null instead of using status=none argument.
1459     - Remove stray backslash before comma.
1460     - Add Dpkg::File unit tests.
1461     - Improve OpenPGP unit tests and check verification and signing.
1462     - Add unit tests for meminfo module.
1463     - Refactor total number of expected known architectures into a variable.
1464     - Use long options for aspell invocation.
1465     - Use --quiet instead of -q on cppcheck invocations.
1466     - Move active line-based cppcheck suppressions into inline comments.
1467     - Make cppcheck unknownMacro suppression more specific.
1468     - Tell cppcheck the C/C++ standards the code intends to comply with.
1469     - Remove unused cppcheck suppressions.
1470     - Use pkginstance in a new unit test.
1471     - Switch NULL to DPKG_NULL in header file.
1472     - Add functional tests for triggers database handling.
1473     - Fix typo in update-alternatives test comment.
1474     - Fix typo in DPKG_GEN_FSYS_LINK m4 macro.
1475     - Rename m4 variables that matched environment variable names.
1476     - Add functional tests for --root, --instdir and --admindir options.
1477   * Localization:
1478     - Fix typo in Japanese translation.
1479       Thanks to Kisaragi Marine <kisaragi.effective@gmail.com>.
1480       Closes: #1023376
1481     - Update Catalan translations.
1482     - Update Dutch translations.
1483       Thanks to Frans Spiesschaert <Frans.Spiesschaert@yucom.be>.
1484       Closes: #1021442, #1021443
1485     - Update Portuguese man pages translation.
1486       Thanks to Américo Monteiro <a_monteiro@gmx.com>. Closes: #1018682
1487     - Update Simplified Chinese programs translation.
1488       Thanks to Boyuan Yang <byang@debian.org>. Closes: #1021281
1489     - Update Swedish translations.
1490       Thanks to Peter Krefting <peter@softwolves.pp.se>. Closes: #1021091
1492   [ Helge Kreutzmann ]
1493   * Localization:
1494     - Update German man pages translation.
1495     - Update German scripts translation.
1497   [ Sven Joachim ]
1498   * Localization:
1499     - Update German programs translation.
1501  -- Guillem Jover <guillem@debian.org>  Thu, 01 Dec 2022 12:12:14 +0100
1503 dpkg (1.21.9) unstable; urgency=medium
1505   [ Guillem Jover ]
1506   * dpkg-deb: Add support for --threads-max and DPKG_DEB_THREADS_MAX.
1507     Prompted by vv221 on IRC.
1508   * Perl modules:
1509     - Dpkg::Source::Package::V2: Always fix the permissions for upstream
1510       tarballs. Closes: #1012195
1511     - Dpkg::BuildFlags: Document optimize feature area.
1512   * Documentation:
1513     - man: Clarify that statoverrides do not need to be known to dpkg.
1514       Closes: #1011510
1515     - man: Expand Protected and Essential field use cases. Closes: #1008780
1516     - doc: Rename frontend.txt to frontend-api.txt.
1517     - doc: Move specifications under doc/spec.
1518     - man: Add references to rootless-builds.txt spec.
1519   * Code internals:
1520     - libdpkg: Refactor command actions for compression.
1521   * Build system:
1522     - Split the test-runner into its own script.
1524   [ Helge Kreutzmann ]
1525   * Localization:
1526     - Update German man pages translation.
1527     - Update German scripts translation.
1529  -- Guillem Jover <guillem@debian.org>  Fri, 01 Jul 2022 11:25:58 +0200
1531 dpkg (1.21.8) unstable; urgency=medium
1533   [ Guillem Jover ]
1534   * dpkg-statoverride: Add support for --force-not-root. Closes: #1009069
1535     Based on a patch by John Spencer <maillist-dpkg@barfooze.de>.
1536   * dpkg: Fix «De-configuring» message to allow configuration to use new
1537     version.
1538   * Perl modules:
1539     - Dpkg::Source::Archive: Prevent directory traversal for in-place extracts.
1540       Reported by Max Justicz <max@justi.cz>. Fixes CVE-2022-1664.
1541     - Dpkg::Substvars: Add support for optional substvars assigned with ?=.
1542   * Documentation:
1543     - man: Reference deb-substvar(5) from dpkg-source(1) and dpkg-shlibdeps(1).
1544     - man: Structure and clarify deb-substvars(5).
1545       Prompted by Niels Thykier <niels@thykier.net>.
1546   * Build system:
1547     - Unhook dist-cpan from make dist target.
1548   * Packaging:
1549     - Silence warning about merged-usr-via-aliased-dirs on Ubuntu.
1550     - Remove useless [] around tr sets.
1551   * Localization:
1552     - Update Dutch translations. Closes: #1010031, #1010032, #1010033
1553       Thanks to Frans Spiesschaert <Frans.Spiesschaert@yucom.be>.
1554     - Update Portuguese man pages translations. Closes: #1011095
1555       Thanks to Américo Monteiro <a_monteiro@gmx.com>.
1557   [ Helge Kreutzmann ]
1558   * Localization:
1559     - Update German man pages translation.
1561  -- Guillem Jover <guillem@debian.org>  Wed, 25 May 2022 10:39:29 +0200
1563 dpkg (1.21.7) unstable; urgency=medium
1565   - The “Social Contract §3: We will not hide problems”
1566     and “Persuasion through bullying and abuse” release. -
1568   [ Guillem Jover ]
1569   * dpkg-fsys-usrunmess: Handle /lib/modules itself also being untracked.
1570     Closes: #1008764
1571   * Documentation:
1572     - man: Fix typo. Thanks to Peter Krefting <peter@softwolves.pp.se>.
1573       See #1008706.
1574   * Packaging:
1575     - Silence warning about merged-usr-via-aliased-dirs on Debian.
1576   * Localization:
1577     - Fix gettext parameter reordering syntax for German translation.
1578       Closes: #1008671
1579     - Update Swedish translations.
1580       Thanks to Peter Krefting <peter@softwolves.pp.se>. Closes: #1008706
1582   [ Helge Kreutzmann ]
1583   * Localization:
1584     - Update German man pages translation.
1586  -- Guillem Jover <guillem@debian.org>  Fri, 01 Apr 2022 02:27:33 +0200
1588 dpkg (1.21.6) unstable; urgency=medium
1590   - This also clears a bullying NMU. -
1592   [ Guillem Jover ]
1593   * Documentation:
1594     - man: Document untracked kernel module files handling in
1595       dpkg-fsys-usrunmess(8).
1597  -- Guillem Jover <guillem@debian.org>  Tue, 29 Mar 2022 11:56:58 +0200
1599 dpkg (1.21.5) unstable; urgency=medium
1601   [ Guillem Jover ]
1602   * dpkg-fsys-usrunmess: Explicitly set user/group and mode for created dirs.
1603     Closes: #1008478
1604   * dpkg-fsys-usrunmess: Set a known umask before starting. See #1008478.
1605   * dpkg-fsys-usrunmess: Special case untracked kernel module files.
1606     Closes: #1008316
1607   * Perl modules:
1608     - Dpkg::Control::Types: Use bit shifts instead of literals in enum.
1609     - Dpkg::Control::Fields: Fix field_register() to return nothing.
1610     - Dpkg::Control::Fields: Refactor manifest types into new
1611       ALL_FILE_MANIFEST.
1612     - Dpkg::Control::Fields: Fix POD to end sentences with a dot.
1613     - Dpkg::Control::Fields: Fix POD to add missing spaces and blank lines.
1614     - Dpkg::Control::Fields: Document and clarify return types and values in
1615       POD.
1616   * Code internals:
1617     - libdpkg: Rename f_revision() to f_obs_revision().
1618     - libdpkg: Warn when parsing obsolete Recommended/Optional/Class fields.
1619       Prompted by David Kalnischkies <donkult@debian.org>.
1620     - libdpkg: Add missing dependency type to obsolete dependency fields.
1621     - libdpkg: Update code comment for obsolete fields.
1622   * Test suite:
1623     - Add test cases for obsolete fields.
1625   [ Helge Kreutzmann ]
1626   * Localization:
1627     - Update German man pages translation.
1629  -- Guillem Jover <guillem@debian.org>  Tue, 29 Mar 2022 02:52:14 +0200
1631 dpkg (1.21.4) unstable; urgency=medium
1633   [ Guillem Jover ]
1634   * dpkg-shlibdeps: Require non-empty name and version in SONAME formats.
1635   * Perl modules:
1636     - Dpkg::Control::Fields: Remove duplicate *Built-Using from field order
1637       lists. Reported by David Kalnischkies <donkult@debian.org>.
1638   * Documentation:
1639     - man: Clarify uses cases for Static-Built-Using.
1640       Prompted by Shengjing Zhu <zhsj@debian.org>.
1641   * Test suite:
1642     - Use actual octal numbers for chmod() calls.
1643     - Do not use non-POSIX shell syntax for arithmetic expressions.
1644       Based on a patch by Sören Tempel <soeren@soeren-tempel.net>.
1646   [ Helge Kreutzmann ]
1647   * Localization:
1648     - Update German man pages translation.
1650  -- Guillem Jover <guillem@debian.org>  Sat, 26 Mar 2022 13:38:44 +0100
1652 dpkg (1.21.3) unstable; urgency=medium
1654   [ Helge Kreutzmann ]
1655   * Localization:
1656     - Update German man pages translation.
1657     - Update German scripts translation.
1659   [ Guillem Jover ]
1660   * dpkg-db-backup: Check for required commands before starting.
1661   * dpkg: Allow absolute pathnames for configurable external run-time tools.
1662     Based on a patch by Adrian Ho <the.gromgit@gmail.com>. Closes: #1007816
1663   * dpkg-fsys-usrunmess: Add options and prompt about regression prevention
1664     package. Prompted by Paul Wise <pabs@debian.org>.
1665   * dpkg-deb: Move duped control member check inside the detection conditional.
1666   * dpkg-deb: Fix movecontrol() to take a directory argument.
1667   * dselect: Remove non-multi-cd code from multi_cd method.
1668   * dselect: Rename multicd method to media.
1669   * dselect: Remove left overs for mount support from disk method.
1670   * dselect: Remove bogus quote escaping from method setup scripts.
1671   * dselect: Rename disk method to file.
1672   * scripts: Use backport-version-regex vendor hook instead of hardcoding the
1673     marker.
1674   * Perl modules:
1675     - Dpkg::Source::Package::V3::Git: Name bundle remote as bundle.
1676     - Dpkg::Source::Package::V3::Git: Set origin remote to Vcs-Git if present.
1677     - Dpkg::Path: Resolve /dev/null before comparing canonicalized pathnames.
1678     - Dpkg::Compression: Conditionally use the gzip --rsyncable option.
1679     - Dpkg::Compression: Use gzip -n instead of --no-name.
1680     - Dpkg::Vendor: Add a new backport-version-regex hook.
1681     - Dpkg::Control::Fields: Add Static-Built-Using field support.
1682   * Documentation:
1683     - man: Clarify Built-Using field purpose and format.
1684   * Code internals:
1685     - libdpkg: Refactor file_is_exec().
1686     - libdpkg: Check that executables are regular files.
1687     - dpkg-fsys-usrunmess: Refactor prompting into a new function.
1688     - dpkg: Rename r variable to remainder.
1689   * Packaging:
1690     - Clarify the merged-usr-via-aliased-dirs warning.
1691       Prompted by Paul Wise <pabs@debian.org>.
1692     - Sync original bug-script merged-usr warning with postinst updates.
1693   * Test suite:
1694     - Check deb format with duplicate debian-binary and control.tar members.
1695     - Add further deb-split format checks.
1696     - Place deb-old and deb checks on their own test groups.
1697     - Check all currently supported deb-old formats.
1698   * Localization:
1699     - Update Portuguese man pages translation.
1700       Thanks to Américo Monteiro <a_monteiro@gmx.com>. Closes: #1001915
1702  -- Guillem Jover <guillem@debian.org>  Thu, 24 Mar 2022 21:00:24 +0100
1704 dpkg (1.21.2) unstable; urgency=medium
1706   [ Guillem Jover ]
1707   * dpkg: Fix memory leak in remove-on-upgrade handling.
1708   * dpkg-deb: Fix unexpected end of file conditions on .deb extract.
1709   * Use anchor links for the dpkg FAQ URLs.
1710   * update-alternatives: Do not skip --config with a single entry.
1711     Reported by David Kalnischkies <donkult@debian.org>.
1712   * update-alternatives: Refactor alternative_install().
1713   * update-alternatives: Use intermediate variables when parsing actions.
1714   * update-alternatives: Clarify option parse errors by printing the wrong
1715     values.
1716   * update-alternatives: Clarify bad usage message by enclosing in angles and
1717     quoting arguments.
1718   * dpkg-buildpackage: Switch terse make from -s to --no-print-directory.
1719     Closes: #1003164
1720   * scripts: Unify deprecated command-line option warnings.
1721   * dpkg-source: Fix alternate changelog file usage with 2.0 and 3.0 formats.
1722     Reported by Umut <ue16@gmx.de> (on IRC).
1723   * update-alternatives: Use the target timestamp when the symlink does not
1724     exist. Closes: #1004557
1725   * dselect: Handle window resizes in help and menu screens. Closes: #382307
1726   * dselect: Do not beep on key press errors in method and package list
1727     windows. Closes: #533639
1728   * dselect: Add support for --instdir.
1729   * Perl modules:
1730     - Dpkg::Control::FieldsCore: Sort control type entries in %FIELD_ORDER.
1731     - Dpkg::Control::FieldsCore: Refactor Vcs fields into a common variable.
1732     - Dpkg::Control::FieldsCore: Refactor testsuite fields into a common
1733       variable.
1734     - Dpkg::Control::FieldsCore: Accept Architecture as a debian/tests/control
1735       field.
1736     - Dpkg::Control::FieldsCore: Add missing allowed fields for (In)Release
1737       files.
1738     - Dpkg::Control::FieldsCore: Add field order for all control types.
1739     - Dpkg::Index: Switch key function for control tests to be a stanza index.
1740       Reported by Paul Gevers <elbrus@debian.org>.
1741     - Dpkg::Source::Package: Only generate the patch header if needed.
1742       Prompted by Umut <ue16@gmx.de> (on IRC).
1743     - Dpkg::Source::Package: Use File::Spec instead of ad-hoc concatenation.
1744   * Documentation:
1745     - man: Mention on what actions triggers get processed in dpkg(1).
1746       Closes: #1001010
1747     - man: Clarify that dpkg-divert --list pattern is optional.
1748       Thanks to наб <nabijaczleweli@nabijaczleweli.xyz>. Closes: #1001761
1749     - man: Use «main» git branch in examples.
1750     - man: Markup each individual element independently.
1751     - man: Refer to the relevant maintscript actions explicitly.
1752     - man: Add a missing preposition to deb-preinst(5).
1753     - man: Do not hardcode DPKG_ADMINDIR in update-alternatives.
1754     - man: Document that update-alternatives honors DPKG_ROOT.
1755     - man: Clarify --admindir and --instdir default values.
1756       Reported by Johannes Schauer Marin Rodrigues <josch@debian.org>.
1757   * Code internals:
1758     - libdpkg: Check that cip is not NULL before dereferencing it.
1759     - libdpkg: Add missing symbols to the version map.
1760     - libdpkg: Use the amount of available memory instead phys_mem/2.
1761       Thanks to Sebastian Andrzej Siewior <sebastian@breakpoint.cc>.
1762     - libdpkg: Refactor liblzma memlimit and cputhreads getters.
1763     - libdpkg: Dynamically allocate the buffers for de/compression I/O.
1764     - libdpkg: Increase I/O memory buffers from 4 to 32 KiB.
1765     - libdpkg: Pass struct compress_params as the first argument.
1766     - libdpkg: Pass struct compress_params to decompressors.
1767     - libdpkg: Refactor pkg_format_print() out from pkg_format_show().
1768     - libdpkg: Do not restrict source:* virtual fields to installed packages.
1769       Closes: #1004372
1770     - libdpkg: Do not allow argv with no arguments.
1771     - update-alternatives: Refactor alternative_has_broken_symlink().
1772     - update-alternatives: Move symlink removal inside fsys_symlink().
1773     - update-alternatives: Move filename generation outside alternative setup.
1774     - dselect: Rework windows resize to be signal safe.
1775     - scripts: Expand long word list into one entry per line.
1776     - scripts/mk: Remove unneeded conditionals.
1777       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
1778     - scripts/mk: Indent code in Makefile fragments.
1779       Thanks to Nicolas Boulenguez <nicolas.boulenguez@free.fr>.
1780   * Build system:
1781     - Terminate lists in variables with «# EOL».
1782     - Move build helper tools into build-aux/.
1783     - Reorganize dpkg programs source code under src/.
1784     - Move autotest suite under src/.
1785     - Move C test suite machinery into lib/dpkg/.
1786     - Fix relocated autotest test suite runner.
1787     - Fix gitignore for build-aux/ directory.
1788     - Namespace Config variable usage.
1789       Reported by Павловец Сергей Николаевич
1790       <s.pavlovets@ivcmf.by>.
1791     - Add gitlab CI test for shared library building.
1792     - Link all programs against libcompat.
1793       Prompted by Jörg Sonnenberger <joerg@NetBSD.org>.
1794     - Remove unused TESTDATA variable from autotest suite.
1795     - Rework TAP check hooking into the autotools machinery.
1796     - Move EXTRA_DIST close to the files it is acting on.
1797     - Refactor autotest dependencies into a new variable.
1798     - Refactor autotest machinery into an automake include file.
1799     - Fold autotest test suite machinery into src/ from src/at/.
1800     - Rename do_path_subst to do_make_subst.
1801     - Factor out installation variable substitution into a new subst.am file.
1802     - Move shell scripts into src/.
1803     - Make AS_TR_* calls more clear.
1804     - Support compression library names with dashes.
1805     - Add zlib-ng support.
1806     - Rename HAVE_LZMA_MT to HAVE_LZMA_MT_ENCODER.
1807     - Move zsh completion under a subdirectory.
1808     - Switch sed pseudo-in-place replace invocations with copy then move.
1809     - Add comment about «sed -i» not being portable.
1810       Prompted by Nicolas Boulenguez <nicolas@debian.org>.
1811     - Mark libcompat and libdpkg as internal components in changelog.
1812     - Support specifying previous and next tags to gen-changelog.
1813     - Use non-capturing groups in regex in gen-changelog.
1814     - Do not hardcode «main» section for title check in gen-changelog.
1815     - Use sort flag instead of hardcoding the section in gen-changelog.
1816     - Do not put localization entries on their own changelog group.
1817   * Packaging:
1818     - Ignore directories for the alternatives state fixup. Closes: #1001695
1819     - Update bug-script to clarify usrmerge systems are unsupported.
1820     - Install aclocal m4 files into libdpkg-dev.
1821     - Install optional localized man pages with dh_installman.
1822     - Add a new not-installed file.
1823     - Switch to use the dh sequencer.
1824     - Make TESTSUITEFLAGS extensible.
1825     - Pass -jN to autotools autotest test suite via TESTSUITEFLAGS.
1826     - Update lintian overrides.
1827     - Use dpkg-error.sh in postinst.
1828     - Warn in postinst about merged-/usr-via-aliased-dirs breakage.
1829   * Test suite:
1830     - Move AT_TESTED to testsuite.at.
1831     - Run the tools with --version.
1832     - Rename DPKG_GEN_FILE to DPKG_GEN_CTRL_FILE.
1833     - Refactor control file template generation.
1834     - Rewrite dpkg-realpath test from TAP to autotest.
1835     - Rewrite dpkg-divert test from TAP to autotest.
1836     - Remove now unused TAP tests support from src/.
1837     - Print field type name instead of id in test case description.
1838     - Add new pkg-format unit tests.
1839     - Fix test_command_exec program invocation.
1840       Thanks to Sören Tempel <soeren+git@soeren-tempel.net>.
1841     - Use a temporary file instead of unportable «sed -i».
1842       Prompted by Nicolas Boulenguez <nicolas@debian.org>.
1843     - Add test case for SOURCE_DATE_EPOCH.
1844       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
1845     - Use «each» instead of «keys» and value fetching.
1846       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
1847   * Localization:
1848     - Remove previous msgid for non-fuzzy translations.
1849     - Update Catalan translations.
1850     - Update Dutch translation. Closes: #1003671, #1003672, #1003673
1851       Thanks to Frans Spiesschaert <Frans.Spiesschaert@yucom.be>.
1852     - Update Swedish translations. Closes: #1003799, #1007116
1853       Thanks to Peter Krefting <peter@softwolves.pp.se>.
1855   [ Sven Joachim ]
1856   * Localization:
1857     - Update German dselect translation.
1858     - Update German programs translation.
1860   [ Helge Kreutzmann ]
1861   * Localization:
1862     - Update German man pages translation.
1863     - Update German scripts translation.
1865  -- Guillem Jover <guillem@debian.org>  Sun, 13 Mar 2022 20:17:35 +0100
1867 dpkg (1.21.1) unstable; urgency=medium
1869   [ Guillem Jover ]
1870   * dpkg-buildpackage: Remove duplicate command print for dpkg-genchanges.
1871   * dpkg-buildpackage: Fix build description due to improper multiline match.
1872   * dpkg-realpath: Remove spurious heading space from --help output.
1873   * update-alternatives: When initializing admindir from DPKG_ADMINDIR append
1874     "/alternatives". Closes: #1001198
1875   * Code internals:
1876     - Remove <ar.h> inclusions.
1877   * Packaging:
1878     - Install deb-md5sums(5) into dpkg-dev package.
1880  -- Guillem Jover <guillem@debian.org>  Mon, 06 Dec 2021 21:04:18 +0100
1882 dpkg (1.21.0) unstable; urgency=medium
1884   [ Guillem Jover ]
1885   * dpkg-genchanges: Include orig tarball on source package renames.
1886     Closes: #980066
1887   * scripts: Consider SHA-1 and RIPEMD-160 weak algorithms in OpenPGP
1888     signatures.
1889   * dpkg: During unpack print a removal message due to Conflicts.
1890     Closes: #985401
1891   * scripts: Add zsh completions for dpkg-parsechangelog.
1892     Thanks to Daniel Shahaf <danielsh@apache.org>. Closes: #986103
1893   * dpkg-buildpackage: When printing build type match the extension exactly.
1894     Closes: #989824
1895   * dpkg-maintscript-helper: Use xargs -I argument instead of deprecated -i.
1896   * dpkg-maintscript-helper: Quote variable inside ${} to avoid pattern match.
1897   * libdpkg: Fix dpkg_fsys_get_path() to always strip leading / and ./.
1898   * libdpkg: Set the default database directory relative to the system root.
1899   * dpkg-divert, dpkg-statoverride: Set admindir after instdir.
1900   * update-alternatives: Fix admindir setting.
1901     Prompted by Johannes Schauer Marin Rodrigues <josch@debian.org>.
1902   * dselect: Honor DPKG_ADMINDIR environment variable.
1903   * dpkg-query, dpkg-trigger, dselect: Add support for setting the root
1904     directory.
1905   * dpkg-fsys-usrunmess: Move forced reconfiguration to the last step.
1906     See #991190.
1907   * dpkg-fsys-usrunmess: Install a local policy-rc.d to ignore service
1908     restarts. Closes: #991190
1909   * dpkg-fsys-usrunmess: Do not fail when removing lingering directories.
1910   * dpkg-fsys-usrunmess: Generate a regression prevention package.
1911   * dpkg-fsys-usrunmess: Fix typo in debug message.
1912   * dpkg: Distinguish deconfiguration message for installation and multi-arch
1913     syncs.
1914   * dpkg-buildpackage: Add new --changes-file option.
1915     Prompted by Niels Thykier <niels@thykier.net>.
1916   * dpkg-buildpackage: Add new --buildinfo-file option.
1917   * dpkg: Rework --assert-<feature> logic to be more robust.
1918     Prompted by Helmut Grohne <helmut@subdivi.de>.
1919     Prompted by David Kalnischkies <donkult@debian.org>.
1920   * dpkg: Improve --assert-<feature> descriptions.
1921   * dpkg: Add a new --assert-help option.
1922   * scripts/mk: Pass DEB_BUILD_PATH to dpkg-buildflags. See #985553.
1923   * dpkg-db-backup: New program factored out from Debian-specific daily cron.
1924   * dpkg-db-backup: Accept an option to override the number of rotation cycles.
1925   * dpkg-db-backup: Honor the admindir set at configure time.
1926   * update-alternatives: Fix --auto and --set-selections output progress.
1927   * update-alternatives: Print defaults for configuration and database
1928     pathnames.
1929   * scripts: Replace shebang in dpkg-error shell library with shellcheck
1930     directive.
1931   * dpkg-buildpackage: Add support for terse DEB_BUILD_OPTIONS.
1932   * dpkg-mergechangelogs: Add new --merge-unreleased option. Closes: #582921
1933   * dpkg: Restore fallback to "new-prerm failed-upgrade" for downgrades.
1934     Analysis by Ian Jackson <ijackson@chiark.greenend.org.uk>. Closes: #996959
1935   * dselect: Use safe temporary file creation in methods setup.
1936   * dselect: Remove bashism from update script in multicd method.
1937   * dpkg: Fix --verify to handle missing or inaccessible pathnames.
1938     Closes: #963087
1939   * dpkg: Add partial --verify support for mode checks.
1940   * Use «digest» instead of «hash» in output messages.
1941     Reported by Sven Joachim <svenjoac@gmx.de>.
1942   * dselect: use `grep -E` instead of `egrep`.
1943     Thanks to Ville Skyttä <ville.skytta@iki.fi>. Closes: #999600
1944   * libdpkg: Fix memory leak on End Of Tape condition in tar parser.
1945   * dpkg: Fix short lived memory leak with --recursive.
1946   * dpkg: Fix conffile removal-on-upgrade handling. Closes: #995387
1947   * dpkg-deb: Fix conffile name length tracking on remove-on-upgrade parsing.
1948     Reported by uau on IRC.
1949   * Architecture support:
1950     - Clarify that the regex columns need to be ordered to match first.
1951     - Add support for ARCv2 CPU. Closes: #980963
1952       Based on a patch by Alexey Brodkin <Alexey.Brodkin@synopsys.com>.
1953   * Portability:
1954     - start-stop-daemon: Define SOCK_NONBLOCK to 0 if not defined.
1955     - libdpkg: Add support for AIX to dpkg_get_progname().
1956   * Perl modules:
1957     - Dpkg::Source::Quilt: Add hint to check missing files on patch apply
1958       failures.
1959       Reported by Joseph Nahmias <jello@debian.org>.
1960     - Dpkg::Changelog::Parse: Require format plugins to inherit from
1961       Dpkg::Changelog.
1962     - Dpkg::OpenPGP: Refactor openpgp implementation execution into a new
1963       function.
1964     - Dpkg::Vendor::Debian: Refactor compiler flag names into an array.
1965     - Dpkg::Vendor::Debian: Add new lto feature in new optimize area.
1966       Closes: #940571
1967     - Test::Dpkg: Print actual error messages in test_neutralize_checksums().
1968     - Dpkg::Deps: Use current_sub feature for __SUB__.
1969     - Dpkg::BuildFlags: Add support for ASFLAGS.
1970       See https://salsa.debian.org/debian/debhelper/-/merge_requests/50.
1971     - Dpkg::Compression: Use gzip --rsyncable unconditionally.
1972     - Dpkg::Changelog::Entry::Debian: Fix full month misuse warning.
1973     - Dpkg::Shlibs::Symbol: Emit a warning on fully qualified symver patterns.
1974       Closes: #993991
1975     - Dpkg::Control::HashCore: Add new keep_duplicate option.
1976     - Dpkg::Control::FieldsCore: Add new field_parse_binary_source().
1977       Closes: #980527
1978     - Dpkg::Control::FieldsCore: Fix types allowed for
1979       field_parse_binary_source().
1980       Reported by Johannes Schauer Marin Rodrigues <josch@debian.org>.
1981     - Dpkg::Shlibs::Objdump: Fix apply_relocations to work with versioned
1982       symbols. Closes: #1000421
1983     - Dpkg::Vendor::Ubuntu: Update Maintainer field logic to include
1984       “canonical”. Based on a patch by
1985       William 'jawn-smith' Wilson <william.wilson@canonical.com>.
1986       Closes: #1000557
1987     - Dpkg::Source::Package::V2: Add hint about version matching source tree.
1988       Based on a patch by Samuel Henrique <samueloph@debian.org>.
1989       Closes: #996044
1990   * Documentation:
1991     - man: Itemize dpkg-gensymbols -c levels.
1992     - man: Add man page for deb-md5sums(5).
1993       Reported by Maxim Cournoyer (on IRC).
1994     - man: Switch the Architecture field in deb-control(5) to required.
1995       Reported by Maxim Cournoyer (on IRC).
1996     - man: Make clear that dpkg-query arguments accept multiple values.
1997       Prompted by Rémi Rampin <remirampin@gmail.com>. See #913781.
1998     - man: Document dpkg-query --search and --listfiles output formats.
1999     - doc: Fix incorrect use of ‘an’ article.
2000     - doc: Update coding style to document POD instead of troff.
2001     - doc: Update THANKS file.
2002     - doc: Annotate current maintainer start year.
2003     - doc: Sort maintenance information chronologically.
2004     - man: Add versions since features where introduced.
2005     - man: Further clarify when re-inclusions of excluded pathnames happen.
2006       Closes: #871420
2007     - doc: Update Doxygen configuration from version 1.9.1.
2008     - doc: Improve description of dpkg suite.
2009       Prompted by Fabrice Bauzac-Stehly <noon@mykolab.com>.
2010     - man: Add a reference to where the Installed-Size algorithm is described.
2011     - man: Improve dpkg --verify-format rpm format documentation.
2012     - man: Document in deb-substvars(5) what ${} is good for.
2013       Prompted by Paul Wise <pabs@debian.org>.
2014     - man: Document in dpkg-architecture(1) target being useful for emulators
2015       too. Prompted by Helmut Grohne <helmut@subdivi.de>.
2016     - man: Document in dpkg-query(1) full --search and --listfiles output
2017       format. Prompted by Johannes Schauer Marin Rodrigues <josch@debian.org>.
2018   * Code internals:
2019     - Remove irrelevant or obsolete FIXME markers.
2020     - Turn FIXME markers denoting pending actions into TODO markers.
2021     - Turn FIXME markers giving historic information into simple Notes.
2022     - update-alternatives: Turn FIXME for explicit behavior choice into an XXX.
2023     - Use localtime_r() instead of localtime().
2024     - libdpkg: Remove MDEBUG support from m_malloc() implementation.
2025     - libdpkg: Mark dpkg_arch_unmark() arch_remove argument as const.
2026     - libdpkg: Mark treewalk_open() func argument as const.
2027     - dpkg: Mark ignore_depends() pkg argument as const.
2028     - dpkg: Mark deb_parse_conffiles() pkg argument as const.
2029     - libcompat: Remove local setexecfilecon() and require libselinux 2.3.
2030     - libdpkg: Add missing DPKG_{BEGIN,END}_DECLS in header files.
2031     - dpkg: Move SELinux function declarations into its own header file.
2032     - dpkg: Move the command action enum to its own header file.
2033     - dpkg: Switch from including "main.h" to "force.h".
2034     - dselect: Rename dme() to display_menu_entry().
2035     - dpkg: Split function handling deconfiguration due to install and removal.
2036     - libdpkg: Add new ACTION_MUX macro for continued options.
2037     - dpkg: Refactor --assert-<feature> handling to be data driven.
2038     - dpkg-fsys-usrunmess: Do not use interpolated strings for literals.
2039     - dpkg-db-backup: Add a license header comment.
2040   * Build system:
2041     - Fallback to $^X and 'perl' if $Config{perlpath} is unset or empty.
2042     - Bump minimal Perl version to 5.28.1.
2043     - Remove redundant localedir and pkgconfdir initializations.
2044     - Check for libsocket.
2045     - Do not set have_libmd on the found branch in AC_SEARCH_LIBS.
2046     - Switch DPKG_FUNC_C99_SNPRINTF from AC_LANG_SOURCE to AC_LANG_PROGRAM.
2047     - Check whether fsync(3) works on directories.
2048     - Remove obsolete AC_HEADER_STDC.
2049     - Detect appropriate sed program at configure time.
2050     - Rename DPKG_DEB_PROG_TAR to DPKG_PROG_TAR.
2051     - Parametrize the backups directory with a configure option.
2052     - Add a check for symlinks in the git repository.
2053     - Rename shell scripts to .sh.
2054     - Switch from hardcoded /run to parametrized runstatedir.
2055     - Use new Dpkg::Control keep_duplicate option in gen-changelog.
2056     - Use title-case for field in gen-changelog.
2057     - Execute run-script via CONFIG_SHELL.
2058       Reported by Larkin Nickle <me@larbob.org>.
2059     - Quote variables containing pathnames in m4 macros.
2060     - Add support for commit message fix up machinery in gen-changelog.
2061   * Packaging:
2062     - Use absolute pathnames in .install debhelper fragments.
2063     - Remove unused dh_installcron call for arch-indep targets.
2064     - Add support for a native systemd timer. Closes: #985444
2065     - Create auotpkgtest installation directory.
2066     - Bump Standards-Version to 4.6.0 (no changes needed).
2067   * Test suite:
2068     - Pass --ignore-builtin-builddeps to dpkg-buildpackage.
2069     - Use can_run() instead of find_command().
2070     - Add descriptions to makefile test runners.
2071     - Add unit tests for architecture bijective mapping property.
2072     - Suppress cppcheck constParameter check.
2073     - Suppress bogus cppcheck for nullPointerRedundantCheck.
2074     - Mark external sourced shell files for checking.
2075     - Ignore new shellcheck checks.
2076     - Remove shipped dpkg database.
2077     - Add re-inclusion of symlink case to t-filtering. See #871420.
2078     - Generate symlink during test build time.
2079     - Remove superfluous long filename.
2080     - Refactor parse_ctrl() from parse_dsc().
2081     - Update codespell stopwords.
2083   [ Helge Kreutzmann ]
2084   * deb-md5sums.pod: Fix typo.
2086   [ Add programs translations ]
2087   * Occitan (Quentin PAGÈS).
2089   [ Update dselect translations ]
2090   * German (Sven Joachim).
2092   [ Update man pages translations ]
2093   * German (Helge Kreutzmann).
2095   [ Update programs translations ]
2096   * German (Sven Joachim).
2097   * Polish (Marcin Owsiany, Łukasz Dulny).
2099   [ Update scripts translations ]
2100   * German (Helge Kreutzmann).
2102  -- Guillem Jover <guillem@debian.org>  Sun, 05 Dec 2021 16:32:45 +0100
2104 dpkg (1.20.8) unstable; urgency=medium
2106   [ Guillem Jover ]
2107   * start-stop-daemon: Open the --output file in append mode.
2108   * dpkg: Fix --auto-deconfigure for essential and protected during
2109     installation. Reported by Julian Andres Klode <jak@debian.org>.
2110     See #983014.
2111   * dpkg-realpath: Fix resolution for absolute symlinks on «/».
2112     Closes: #983855
2113   * dpkg-realpath: Fix symlink loop tracker.
2114   * Perl modules:
2115     - Test::Dpkg: Fix test data path fetching on CPAN.
2116     - Dpkg::Exit: Preserve exit code in END block.
2117   * Build system:
2118     - Group Test::Dpkg changelog entries into “Perl modules” section.
2119   * Packaging:
2120     - Run autopkgtest test suites in verbose mode.
2121   * Test suite:
2122     - Set PERL in the perl test suite.
2123     - Use gunzip instead of zcat and assume it might not be present.
2124     - Mock dpkg and gcc for architecture detection code.
2125     - Initialize DEB_BUILD_ARCH and DEB_HOST_ARCH to avoid computing them.
2126     - Update suppressions for cppcheck 2.4.
2128   [ Update man pages translations ]
2129   * Dutch (Frans Spiesschaert). Closes: #981884
2130   * German (Helge Kreutzmann).
2131   * Portuguese (Américo Monteiro). Closes: #980018
2133   [ Update programs translations ]
2134   * Dutch (Frans Spiesschaert). Closes: #981882
2136   [ Update scripts translations ]
2137   * German (Helge Kreutzmann). Closes: #983865
2139  -- Guillem Jover <guillem@debian.org>  Tue, 13 Apr 2021 22:17:05 +0200
2141 dpkg (1.20.7) unstable; urgency=medium
2143   [ Guillem Jover ]
2144   * libdpkg: Do not consider the database locked with a missing lock file.
2145     Reported by David Kalnischkies <donkult@debian.org>.
2146   * Documentation:
2147     - man: Clarify and expand information on dpkg-realpath(1) man page.
2148       Closes: #979564
2149   * Packaging:
2150     - Update copyright notices in debian/copyright.
2151     - Bump Standards-Version to 4.5.1 (no changes required).
2152   * Test suite:
2153     - On as-root mode do not use sudo if already running as root.
2154     - Print WARN instead of FAIL for maintscript fd leaks.
2156   [ Update man pages translations ]
2157   * German (Helge Kreutzmann).
2159   [ Update programs translations ]
2160   * German (Sven Joachim).
2162  -- Guillem Jover <guillem@debian.org>  Sat, 09 Jan 2021 00:59:45 +0100
2164 dpkg (1.20.6) unstable; urgency=medium
2166   [ Guillem Jover ]
2167   * libdpkg: Fix undefined behavior in varbuf functions.
2168     Reported by KOLANICH <kolan_n@mail.ru>.
2169   * libdpkg: Fix memory leaks in tar_extractor().
2170   * libdpkg: Fix memory leak in trigger deferred processing.
2171     Reported by KOLANICH <kolan_n@mail.ru>.
2172   * libdpkg: Fix memory leak in filesystem treewalk node free function.
2173   * libdpkg: Fix memory leak in filesystem treewalk iterator.
2174   * libdpkg: Fix single-instance memory leak with fsys dir.
2175   * libdpkg: Fix short-lived memory leaks.
2176   * libdpkg: Reset error context errmsg after free().
2177   * dpkg: Fix memory leak for cidir.
2178     Reported by KOLANICH <kolan_n@mail.ru>.
2179   * dpkg: Fix short-lived memory leak in --force-help output.
2180     Based on a patch by KOLANICH <kolan_n@mail.ru>.
2181   * dpkg-deb: Fix single-instance memory leak on missing conffiles control
2182     file.
2183   * dpkg-divert: Fix short-lived memory leaks.
2184   * dpkg-realpath: Add new -z, --zero option.
2185     Requested by Johannes Schauer <josch@debian.org>.
2186   * dpkg-deb: Make decompression error message more descriptive.
2187     Closes: #968442
2188   * dpkg-architecture: Add a --print-format option.
2189     Prompted by #968963.
2190   * dpkg-buildpackage: Warn on known R³ values in uppercase.
2191     Reported by Niels Thykier <niels@thykier.net>.
2192   * dpkg-buildpackage: Error out on R³ "yes" value.
2193     Requested by Niels Thykier <niels@thykier.net>.
2194   * dpkg-buildpackage: Clarify R³ keyword diagnostic messages.
2195   * dpkg-deb, dpkg-split: Fix time handling to support 64-bit time.
2196   * libdpkg: Check that the ar archive time is within bounds.
2197   * libdpkg: Ignore not-installed packages for source related virtual fields.
2198     Closes: #972580
2199   * libdpkg: Make source version parsing more robust on missing data.
2200     See #972580.
2201   * libdpkg: Do not forget not-installed packages that are set on hold.
2202     Reported by David Kalnischkies <donkult@debian.org>.
2203   * update-alternatives: Fix memory leaks for alternative database context on
2204     load errors.
2205   * update-alternatives: Fix short-lived memory leaks for alternative structs.
2206   * update-alternatives: Fix memory leaks with new_choice.
2207   * update-alternatives: Fix short-lived memory leaks for log_file and admdir.
2208   * dpkg-buildflags: Add support for DFLAGS. Closes: #975896
2209   * dpkg-parsechanaglog: Document --file in --help output.
2210   * libdpkg: Fix allocation size wrap around when growing a varbuf.
2211   * dpkg-query: Do not print database loading progress. Closes: #977240
2212   * Rename taint tag to merged-usr-via-aliased-dirs.
2213   * dpkg-buildflags: Enable reproducible=fixfilepath by default.
2214     Thanks to Vagrant Cascadian <vagrant@reproducible-builds.org>.
2215     See https://lists.debian.org/debian-devel/2020/10/msg00222.html.
2216     Closes: #974087
2217   * start-stop-daemon: Move umask setup before any file has been created.
2218   * start-stop-daemon: Add a new --output option to redirect stderr and stdout.
2219   * dpkg-maintscript-helper: Do not pass DPKG_ROOT prefixed pathmames to
2220     dpkg-realpath.
2221   * dpkg: When removing old files check the pathname with diversion and
2222     instdir.
2223   * dpkg-realpath: Make 'link includes root prefix' error more verbose.
2224   * libdpkg: Make sure we do not walk on rootless trees.
2225   * dpkg: Fix incorrect logic around printing dependency warnings.
2226     Thanks to Jessica Clarke <jrtc27@debian.org>.
2227     Reported by Helmut Grohne <helmut@subdivi.de>.
2228   * Support remove-on-upgrade conffile flag via DEBIAN/conffiles.
2229     Based on a patch by Niels Thykier <niels@thykier.net>. Closes: #822462
2230   * dpkg-fsys-usrunmess: New program.
2231   * Perl modules:
2232     - Dpkg::Index: Add new item_opts option.
2233     - Dpkg::Exit: Fix exit handler on program termination. Closes: #966083
2234     - Dpkg::Changelog::Entry::Debian: Fix format string.
2235       Prompted by #967911.
2236     - Dpkg::Changelog::Parse: Add new verbose option.
2237       Prompted by #967911.
2238     - Dpkg::Changelog::Parse: Document 'label' option.
2239     - Dpkg::Source::Package::V1: Print a message when verifying tarball
2240       signatures.
2241     - Dpkg::Path: Fix pathname traversal check for symlinks. Closes: #971203
2242     - Dpkg::Source::Package: Honor no_check for directory traversal checks.
2243       See #971203.
2244     - Dpkg::Source::Package: Call syserr() instead of syserror().
2245       Reported by Drew Parsons <dparsons@debian.org>.
2246       See #849752. Closes: #976249
2247     - Dpkg::Path: Check first whether the files are the same by comparing
2248       string-wise. Closes: #849752
2249     - Dpkg::OpenPGP: Refactor gpg armor code into its own function.
2250   * Documentation:
2251     - man: Fix typo in --print-unset option reference.
2252       Reported by Ferenc Wágner <wferi@debian.org>. Closes: #966110
2253     - man: Clarify that dpkg-architecture uses some of its own variables.
2254       Closes: #966111
2255     - man: Fix casing and namespacing in VARIABLES definitions.
2256     - man: Fix typo in dpkg-source(1).
2257       Thanks to Paul Wise <pabs@debian.org>.
2258     - man: Add a reference to deb-symbols(5) in deb-src-symbols(5) DESCRIPTION.
2259       Prompted by #970083.
2260     - man: Specify that symbol, version and id are separated by a single
2261       whitespace. Closes: #970083
2262     - man: Clarify day-of-month format in deb-changelog(5).
2263       Reported by Axel Beckert <abe@debian.org>.
2264       See #971977.
2265     - man: Update update-alternatives maintainer script usage information.
2266       Prompted by Niels Thykier <niels@thykier.net>.
2267     - man: Switch to use L<> markup for URLs instead of B<>.
2268     - doc, man: Clarify that R³ values are case sensitive.
2269       Prompted by Niels Thykier <niels@thykier.net>.
2270     - man: Add references to deb822(5) to file formats based on it.
2271       Prompted by Niels Thykier <niels@thykier.net>.
2272     - man: Clarify config-files state in dpkg(1).
2273       Prompted by Stuart Prescott <stuart@debian.org>.
2274     - man: Fix typos.
2275     - man: Hyphenate multiple words in deb-override(5) format description.
2276     - man: Uppercase acronyms and logic operators.
2277     - man: Empty or whitespace-only lines in deb-conffiles(5) are not accepted.
2278   * Code internals:
2279     - libcompat, dpkg: Stop using deprecated security_context_t data type.
2280     - update-alternatives: Refactor alternative database context freeing into a
2281       new function.
2282     - libdpkg: Do not define the clamp macro when compiling C++ code.
2283       Reported by Helmut Grohne <helmut@subdivi.de>.
2284     - libdpkg: Replace FSF address by pointing to the gnu.org URL.
2285     - libdpkg: Initialize pkgbin's newhash to NULL.
2286       Prompted by Steinar H. Gunderson <sesse@debian.org>.
2287     - libdpkg: Use memset() instead of open-coding struct blanking.
2288       Prompted by Steinar H. Gunderson <sesse@debian.org>.
2289     - Do not call fsys_hash_init() before command actions.
2290       Prompted by Steinar H. Gunderson <sesse@debian.org>.
2291     - libdpkg: Fix m_pipe() function definition prototype to match declaration.
2292     - libdpkg: Refactor new str_rtrim_spaces().
2293       Based on a patch by Niels Thykier <niels@thykier.net>.
2294     - dpkg: Call fsys_hash_find_node() outside tar_fsys_namenode_queue_push().
2295     - Use a conffilename variable to track the actual conffile name in the
2296       buffer.
2297       Thanks to Niels Thykier <niels@thykier.net>.
2298   * Build system:
2299     - Add new gen-changelog tool.
2300     - Pre-process the curses header before parsing it. Closes: #970545
2301     - Fix variable substitution in man pages.
2302       Reported by Niels Thykier <niels@thykier.net>. Closes: #978983
2303     - Add a README.cpan to be installed as README in the CPAN distribution.
2304     - Do not try to use <sys/sysctl.h> on GNU/Linux.
2305     - Fix «make distcheck» for man pages.
2306     - Update GitLab CI configuration to use built-in functional test suite.
2307     - Make it possible to override PKGDATADIR on built scripts too.
2308     - Disable umask to 0 for Docker executor in GitLab CI.
2309     - Disable functional test suite debug mode on GitLab CI.
2310     - Sort po4a entries in po4a.cfg.
2311   * Packaging:
2312     - Do not fail the bug-script if readlink fails. Closes: #968397
2313     - Improve cron file robustness on missing or empty backup files.
2314       Closes: #969472
2315     - Use AUTOPKGTEST_TMP instead of writing into the source tree.
2316     - Hook the functional test suite into autopkgtest.
2317     - Remove trailing comma from lintian profile file.
2318     - Do not hardcode libdpkg-perl dependency on perl:any.
2319       Thanks to Sven Joachim <svenjoac@gmx.de>.
2320   * Test suite:
2321     - Fix short lived memory leaks in unit tests.
2322     - Print the ehandle unit test error output on verbose mode.
2323     - Improve dpkg-divert test to output stdout and stderr.
2324     - Use intermediate variable for directory traversal item iteration.
2325     - Refactor root handling in Dpkg::Path unit tests.
2326     - Refactor test verbose check into an inline function.
2327     - Make it possible to include test.h from benchmarks.
2328     - Disable hash reports in benchmark tests unless verbose.
2329     - Add support for basic test try/catch/finally keywords.
2330     - Merge the dpkg-tests.git repository into tests/.
2331     - Update merged functional test suite assumptions.
2332     - Remove redundant test cases from the functional test suite.
2333     - Remove source package building support from functional test suite.
2334     - When using DPKG_BUILDTREE add scripts/ to DPKG_PATH.
2336   [ Add man pages translations ]
2337   * Portuguese (Américo Monteiro). Closes: #964751
2339   [ Update dselect translations ]
2340   * Dutch (Frans Spiesschaert). Closes: #968294
2341   * French (Didier Vidal). Closes: #964749
2343   [ Update man pages translations ]
2344   * Dutch (Frans Spiesschaert). Closes: #968743
2345   * German (Helge Kreutzmann).
2347   [ Update programs translations ]
2348   * Dutch (Frans Spiesschaert). Closes: #968744
2349   * German (Sven Joachim).
2351   [ Update scripts translations ]
2352   * German (Helge Kreutzmann).
2354  -- Guillem Jover <guillem@debian.org>  Fri, 08 Jan 2021 04:39:40 +0100
2356 dpkg (1.20.5) unstable; urgency=medium
2358   [ Guillem Jover ]
2359   * Revert change to prefix the specs file spec string self_spec with +
2360     instead of *. The prefix is supposed to go in the text itself
2361     instead of the spec name, which already had it. This change only
2362     apparently fixed the issue at hand because gcc started parsing it as
2363     the «[SUFFIX]:» case, completely disabling the PIE handling.
2364     Thanks to Thorsten Glaser <tg@mirbsd.de>.
2365   * Perl modules:
2366     - Dpkg::Source::Package::V1: Explicitly initialize constructor options to
2367       their implicit values, otherwise other code end up assuming different
2368       defaults. This is required here too as this class does not call the
2369       initialization from its parent.
2370   * Build system:
2371     - Detect the GNU program variants for make, patch and tar in the CPAN
2372       distribution to replace in the Dpkg module.
2373     - Set DEB_BUILD_ARCH to a dummy “amd64” in the CPAN distribution tests
2374       to not require a dpkg(1) in the system.
2375   * Test suite:
2376     - Only print the Dpkg::Path::check_directory_traversal() error on failure.
2378   [ Updated scripts translations ]
2379   * German (Helge Kreutzmann).
2381  -- Guillem Jover <guillem@debian.org>  Wed, 08 Jul 2020 05:40:39 +0200
2383 dpkg (1.20.4) unstable; urgency=medium
2385   [ Guillem Jover ]
2386   * Improve PIE flags support:
2387     - Prefix the specs file spec string self_spec with + instead of *.
2388       This way we do not override any previous setting, otherwise when
2389       passing the -specs options twice (f.ex. to compile and link), only the
2390       last one will take effect, which can break the build. Closes: #870383
2391   * Perl modules:
2392     - Dpkg::Source::Package: Explicitly initialize constructor options to
2393       their implicit values, otherwise other code end up assuming different
2394       defaults. Closes: #964017
2395     - Dpkg::OpenPGP: Use a temporary directory for the GnuPG homedir in
2396       verify_signature(), to make sure we do not write to the user home
2397       directory, except for the trustkeys.db file if present.
2398     - Dpkg::Path: Refactor new check_directory_traversal() function out of
2399       Dpkg::Source::Package->extract().
2400     - Dpkg::Path: Do not do partial matches for directory traversal checks,
2401       expect a trailing slash after the base directory name.
2402     - Dpkg::Path: Catch uncanonicanizable pathnames with a proper error.
2403       Closes: #964111
2404     - Dpkg::Path: Do not consider missing symlink targets a directory
2405       traversal attempt. Closes: #964234
2406     - Dpkg::Path: Allow /dev/null for directory traversals.
2407       Reported by Holger Levsen <holger@layer-acht.org>.
2408   * Build system:
2409     - Add Module::Signature as configure recommends for CPAN.
2410   * Test suite:
2411     - Use File::Path::make_path() instead of chained mkdir() in Dpkg_Path.t.
2412     - Add unit tests for Dpkg::Path::check_directory_traversal().
2414   [ Updated programs translations ]
2415   * German (Sven Joachim).
2417  -- Guillem Jover <guillem@debian.org>  Tue, 07 Jul 2020 07:57:48 +0200
2419 dpkg (1.20.3) unstable; urgency=medium
2421   [ Guillem Jover ]
2422   * Perl modules:
2423     - Dpkg::OpenPGP: Pass --no-options to gpg in verify_signature().
2424       Reported by Bertrand Marc <bmarc@debian.org>. Closes: #963839
2425     - Dpkg::Build::Info: Clarify by giving context to the
2426       get_build_env_whitelist() deprecation warning. Closes: #963844
2427       Reported by Sven Joachim <svenjoac@gmx.de>.
2428     - Dpkg::Source::Package: Fix check_original_tarball_signature() to make
2429       import_key() honor require_valid_signature, which should default to
2430       false. Reported by Mattia Rizzolo <mattia@debian.org>.
2431     - Dpkg::OpenPGP: Use a temporary directory for the GnuPG homedir in
2432       import_key(), to make sure we do not write to the user home directory,
2433       which might be read-only or non-existent. Closes: #963944
2434       Reported by Mattia Rizzolo <mattia@debian.org>.
2435   * Code internals:
2436     - libdpkg: Print a notice if we cannot write to the log file.
2437   * Build system:
2438     - Improve error diagnosis for configure version fetching script.
2439       Prompted by Norbert Preining <norbert@preining.info>.
2441   [ Updated programs translations ]
2442   * German (Sven Joachim).
2444  -- Guillem Jover <guillem@debian.org>  Mon, 29 Jun 2020 12:37:51 +0200
2446 dpkg (1.20.2) unstable; urgency=medium
2448   * dpkg: Do not include the architecture with --robot --version.
2449   * update-alternatives: Create alternatives directory (/etc/alternatives)
2450     if it is missing, to help with installation bootstrapping.
2451     Reported by Johannes Schauer <josch@debian.org>.
2452   * update-alternatives: Create the log directory if it is missing.
2453   * Perl modules:
2454     - Dpkg::Source::Package: Turn the missing expected tarball signature
2455       error into a warning for now, as it is causing unintended fallout,
2456       and does not play nice (yet) with tarballs repackaged by uscan(1).
2457       Closes: #963821
2458   * Code internals:
2459     - update-alternatives: Move log_msg() after make_path() so that we can use
2460       the latter.
2461     - update-alternatives: Add new xstrndup() and xdirname() functions.
2462   * Build system:
2463     - Set SHELL in the test environment.
2464     - Do not fail if po4a is not found, and search for it just once.
2465     - Fix name and section generation for translated man pages. This caused
2466       pod2man to get an empty --name argument and not output anything,
2467       resulting in generating empty man pages. Closes: #963794
2468   * Packaging:
2469     - Sort debian/dpkg-dev.manpages.
2470     - Install deb-src-symbols(5) in dpkg-dev package.
2472  -- Guillem Jover <guillem@debian.org>  Sun, 28 Jun 2020 00:42:11 +0200
2474 dpkg (1.20.1) unstable; urgency=medium
2476   [ Guillem Jover ]
2477   * Fix dpkg logging regression introduced in 1.20.0:
2478     - libdpkg: Use varbuf member .used instead of .size in log_message(),
2479       to avoid printing garbage.
2480     - libdpkg: Open the log file as write-only instead of read-only.
2481     Thanks to Roderich Schupp <roderich.schupp@gmail.com>. Closes: #953684
2482   * Unify and cleanup Makefile fragment files comments, including information
2483     about version of introduction.
2484   * Add new buildopts.mk Makefile fragment to support parsing DEB_BUILD_OPTIONS
2485     options with arguments, such as “parallel” as DEB_BUILD_OPTION_PARALLEL.
2486   * dpkg-genchanges: Handle empty Date fields from parsed debian/changelog.
2487     Based on a patch by Baptiste BEAUPLAT <lyknode@cilg.org>. Closes: #956321
2488   * dpkg-source: Check that debian/tests/control has the required fields.
2489     Prompted by Felix Lechner <felix.lechner@lease-up.com>.
2490   * dpkg-deb, dpkg: Do not accept relative pathnames in DEBIAN/conffiles.
2491     Reported by Niels Thykier <niels@thykier.net>.
2492   * dpkg-split: Fix off-by-one check in ar header padding, that was making
2493     parsing error out on valid archives. Regression introduced in dpkg 1.18.8.
2494   * libdpkg: Fix error message for ending version character in dependency
2495     parser:
2496     - Move the version unterminated case before the catchall.
2497     - Print the actual wrong character and print what is expected.
2498   * libdpkg: Do not use econtext->errmsg on out of context abort, as it might
2499     be uninitialized.
2500   * update-alternatives: Set the umask to 022 on program start.
2501     Reported by Paul Wise <pabs@debian.org>.
2502   * dpkg-parsechangelog: Fix --show-field for multiline fields. We were not
2503     stripping trailing whitespace, and were not prefixing empty lines with
2504     a ‘.’, like when printing with the field names.
2505     Reported by Paul Wise <pabs@debian.org>.
2506   * dpkg: Add a new --robot option to be used with --version.
2507   * dpkg, dpkg-query: Document missing options in --help output.
2508   * Unify ellipsis formatting in programs --help output.
2509   * Add Protected field support.
2510   * dpkg-realpath: New program, to be used by dpkg-maintscript-helper, and
2511     any maintainer script that needs a realpath that can handle pathnames
2512     relative to the dpkg root directory.
2513   * dpkg-realpath: Add support for DPKG_ROOT.
2514     Thanks to Helmut Grohne <helmut@subdivi.de>.
2515   * dpkg-realpath: Add support for --root and --instdir options.
2516   * dpkg-maintscript-helper: Add support for DPKG_ROOT:
2517     - Add DPKG_ROOT support for conffiles.
2518       Thanks to David Kalnischkies <david@kalnischkies.de>.
2519     - Add DPKG_ROOT support for symlink to and from directory switches.
2520       Based on a patch by Bastien ROUCARIÈS <roucaries.bastien@gmail.com>.
2521     Closes: #832176
2522   * update-alternatives: Add DPKG_ROOT support, and new --root and --instdir
2523     options. Closes: #871808
2524   * Portability:
2525     - libdpkg: When using uselocale(), include <xlocale.h> for locale_t if
2526       the header is available. Needed on BSDs.
2527       Reported by Sirio Balmelli <sirio@b-ad.ch>.
2528   * Perl modules:
2529     - Dpkg: Add a LICENSE section to the POD.
2530     - Dpkg::Source::Package: Add new get_upstream_signing_key() method.
2531     - Dpkg::Source::Package: Check missing expected tarball signatures.
2532     - Dpkg::Source::Package::V1: Check version format matching source format.
2533     - Dpkg::Vendor::Debian: Add debian-nonupload.gpg keyring.
2534       Thanks to Taowa Munene-Tardif <taowa@debian.org>. Closes: #956055
2535     - Dpkg::Vendor::Debian: Detect merged-usr-via-symlinks also with absolute
2536       pathnames. Reported by Adam Borowski <kilobyte@angband.pl>.
2537     - Dpkg::Build::Info: Avoid whitelist in function name.
2538     - Dpkg::Shlibs::SymbolFile: Avoid blacklist and whitelist terms.
2539   * Documentation:
2540     - man: Fix misused two-fonts macros.
2541       Thanks to Bjarni Ingi Gislason <bjarniig@rhi.hi.is>. Closes: #955028
2542     - man: Trim trailing whitespace from output.
2543       Thanks to Bjarni Ingi Gislason <bjarniig@rhi.hi.is>. Closes: #955030
2544     - man: Mention that dpkg(1) does not provide all back-end interfaces.
2545       Prompted by Elana Hashman <ehashman@debian.org>.
2546     - man: Clarify and fix file formats SYNOPSIS.
2547     - man: Clarify that deb-control(5) is a subset of deb-src-control(5).
2548       Closes: #958229
2549     - man: Unify warning and note admonitions formatting.
2550     - man: Remove useless commented out macros.
2551     - man: Fix unbalanced quotes in macro arguments.
2552     - man: Specify the indentation level for all following .IP macros, not
2553       just the first one.
2554     - man: Use .TP macros instead of hand-crafted formatting.
2555     - man: Fix font markup for some variable and literal strings.
2556     - dpkg-maintscript-helper: Add -?, --help and --version to --help output.
2557     - man: Fix apt and aptitude references.
2558       Reported by Helge Kreutzmann <debian@helgefjell.de>.
2559     - man: Mark commands (eval) in bold and quote library names (libgcc).
2560       Reported by Helge Kreutzmann <debian@helgefjell.de>.
2561     - man: Use UTF-8 quotes instead of ancient groff register variables.
2562     - man: Use literal double quotes instead of groff escape sequences.
2563     - man: Clarify that we resolve bug reports not bug report numbers.
2564       Reported by Helge Kreutzmann <debian@helgefjell.de>.
2565     - man: Clarify POSIX shell eval command usage in dpkg-architecture(1).
2566     - man: Use item lists instead of verbatim or hand-crafted formatting.
2567     - man: Do not use verbatim formatting for text that is not an example.
2568     - man: Markup examples explicitly with .EX/.EE.
2569     - man: Fix indentation for a note admonition in dpkg-scansources(1).
2570     - man: Document that a 3.0 (quilt) patch cannot create or modify symlinks.
2571       Thanks to Johannes Schauer <josch@debian.org>.
2572     - man: Reword text to reduce length in verbatim code block.
2573     - man: Add semicolons before verbatim code blocks.
2574     - man: Update dselect methods provided. Several got removed in 1.20.0.
2575     - man: The Installed-Size field does not get its value from du(1) since
2576       1.18.0.
2577     - man: Fix dpkg-gencontrol -P description to not refer to dpkg-source.
2578       Reported by Jakub Wilk <jwilk@jwilk.net>.
2579     - man: Place description of override value column on its own paragraph.
2580     - man: Surround markup within verbatim blocks with .nf/.fi.
2581     - man: Balance font markup.
2582     - man: Do not nest font markup.
2583     - man: Use .ig/.. macros to disable text instead of commenting it out.
2584     - man: Do not mark end of sentence period with bold.
2585     - man: Add a missing comma after man page reference in SEE ALSO section.
2586     - man: Convert man pages from roff to POD.
2587     - man: Clarify the dpkg --no-act admonition.
2588     - man: Avoid whitelist term in dpkg-source man page.
2589   * Code internals:
2590     - Use $() in shell or qx() in perl instead of ``.
2591     - dpkg-split: Switch part number variables from unsigned int to int.
2592     - scripts: Refactor shell error handling into a shell library
2593     - Reformat shell code to follow the coding style.
2594     - update-alternatives: Parametrize option names in output strings.
2595     - update-alternatives: Move logging function close to output functions.
2596     - update-alternatives: Move argument parsing functions close to main().
2597     - update-alternatives: Add general purpose non-failing functions for
2598       administrative directory access.
2599     - update-alternatives: Add filesystem abstraction functions.
2600   * Build system:
2601     - Handle .git being a plain file when getting the dpkg tree version.
2602     - Add debian/changelog as a Changes file to the CPAN distribution.
2603     - Set DPKG_SERIES to 1.20.x when running the functional test suite.
2604     - When using po4a require at least po4a 0.59. Change the po4a --porefs
2605       argument from no longer supported “noline,wrap” to “file”, as wrapping
2606       is the default since po4a 0.58. We require po4a 0.59 as 0.58 had a
2607       regression in its --srcdir support.
2608     - Switch to set the po4a addendum in the po4a_paths section instead of
2609       repeating it for each man page.
2610     - Use po4a conditional addendum support, and remove empty addenda.
2611     - Use po4a mode=eof support in addenda.
2612     - Do not use make prerequisites on suffix rule definitions.
2613       Closes: #961850
2614     - Add man page number suffixes to the automake SUFFIXES variable.
2615     - Update false positive suppressions for cppcheck 2.1.
2616     - Install specifications and API contracts in docdir.
2617     - Add support for switching man pages from roff to POD format.
2618     - Fix shell files substitution for version variable.
2619   * Packaging:
2620     - Switch to debhelper compatibility level 13.
2621     - Remove debian/tmp prefix from manpages debhelper fragment files.
2622     - Handle missing localized man pages gracefully.
2623     - Install AUTHORS, THANKS, usertags, README.api and
2624       README.feature-removal-schedule only in dpkg.deb.
2625     - Rename debian/usertags to debian/README.bug-usertags.
2626     - Install specifications to /usr/share/doc/dpkg/ in the dpkg-dev package.
2627     - Detect merged-usr-via-symlinks also with absolute pathnames in
2628       bug-script. Reported by Adam Borowski <kilobyte@angband.pl>.
2629   * Test suite:
2630     - Rename deb-content test cases to make them more descriptive.
2631     - Skip autogenerated files from codespell.
2633   [ Updated programs translations ]
2634   * German (Sven Joachim).
2635   * Simplified Chinese (Boyuan Yang). Closes: #958437
2637   [ Updated scripts translations ]
2638   * German (Helge Kreutzmann).
2640   [ Updated man pages translations ]
2641   * German (Helge Kreutzmann).
2643  -- Guillem Jover <guillem@debian.org>  Sat, 27 Jun 2020 02:41:48 +0200
2645 dpkg (1.20.0) experimental; urgency=medium
2647   [ Guillem Jover ]
2648   * libdpkg: Do not generate a backup file for the available database.
2649     Closes: #343578
2650   * perl: Switch Getopt::Long from bundling to bundling_values. This means
2651     the few scripts using Getopt::Long will stop accepting options in the
2652     form «-ab» for «-a -b», which is not future-proof, as it does not allow
2653     these options to get new arguments without making them ambiguous.
2654   * dpkg-buildpackage: Remove transient backwards R³ compatibility code.
2655   * buildtools.mk: Add support for nostrip in DEB_BUILD_OPTIONS when setting
2656     the STRIP variable.
2657   * dpkg-genbuildinfo: Do not include irrelevant packages in the Binary field.
2658   * dpkg: Do not clear selections for unknown packages. Closes: #927752
2659   * dpkg-shlibdeps: Add support for new Build-Depends-Packages, to be able
2660     to specify multiple packages. Closes: #926669
2661     Based on a patch by Frank Schaefer <kelledin@gmail.com>.
2662   * perl: Remove support for versioned GnuPG 2 program and packages.
2663   * libdpkg: Clarify lock contender error message. Print the PID of the lock
2664     contender, and add a warning explaining that removing the lock file is
2665     never the correct solution.
2666   * dpkg-genchanges, dpkg-mergechangelogs: Remove support for ~vola
2667     versioning, as volatile.debian.org was decommissioned some time ago.
2668   * dpkg-genchanges, dpkg-mergechangelogs: Match ~deb also as a backport
2669     marker in versions. Closes: #934980
2670   * libdpkg, dpkg: Use new versiondescribe_c() for non-localizable call sites,
2671     such as when writing to a log, which should not be localized.
2672     Reported by Julien Cristau <jcristau@debian.org>.
2673   * dpkg-query: Try to use the package synopsis from the available file if
2674     not installed. Closes: #43573
2675   * dpkg-gencontrol: Take into account hardlinks when computing the
2676     Installed-Size substvar. Closes: #923475
2677     Patch co-authored with Sven Joachim <svenjoac@gmx.de>.
2678   * dpkg: Fix and clarify behavior for packages marked to be on “hold”. These
2679     need to be processed for configuration and triggers. Closes: #926472
2680   * dpkg: Use DPKG_ADMINDIR to set the admindir. Closes: #900071
2681   * dpkg-source: Remove backwards compatibility code for legacy build-profiles.
2682   * perl: Give more context on field parsing errors. Closes: #637060
2683   * dpkg-buildpackage: Add option to sanitize environment. Closes: #843776
2684   * update-alternatives: Cope with a missing administrative directory.
2685   * update-alternatives: Create the administrative directory on demand.
2686   * dpkg-split: Cope with a missing parts/ database directory.
2687   * dpkg-split: Create the parts/ database directory on demand.
2688   * libdpkg: Consider msdbrw_needsuperuser equivalent to msdbrw_write, so
2689     the same checks are performed on normal non --force-not-root operation.
2690   * libdpkg: Add support for bootstrapping the installation of dpkg:
2691     Closes: #914515
2692     - Create the logfile with correct permissions, and remove the code
2693       setting up the logfile from the dpkg postinst.
2694     - Allow missing status and available databases, so that they get created
2695       on write, and remove the code setting them up from the dpkg postinst.
2696       Closes: #647911
2697     - Do not change the ownership of the triggers database directory. Either
2698       we are running as root:root which means the ownership should be correct
2699       already, or we are not which means we cannot change it anyway.
2700     - Create the dpkg database directory on demand.
2701     - Create the updates/ database directory on demand.
2702     - Create the info/ database directory on demand.
2703   * dpkg-architecture: Fix handling of exec failing in --command.
2704     Reported by Helmut Grohne <helmut@subdivi.de>.
2705   * dpkg-buildpackage: Do not accept equal signs as part of the hook names.
2706     Reported by Daniel Shahaf <danielsh@apache.org>. Closes: #948291
2707   * dselect: Mark a string for translation.
2708   * dselect: Cleanup access methods:
2709     - Remove harddisk methods, as they were non-functional due to fdisk
2710       interface changes, and do not make sense anymore as we can expect users
2711       to mount any such filesystem on their own, to then use a filesystem
2712       method instead. Prompted by Helmut Grohne <helmut@subdivi.de>.
2713     - Remove cdrom method superseded by the multi_cd method.
2714     - Remove nfs methods, as there is nothing special about NFS, and mounting
2715       these should just be left to the local admin, who can mount any other
2716       remote filesystem too.
2717     - Remove multi_mount method, as the multi_cd method can take care of
2718       mounting the necessary images or devices.
2719     - Replace changelog with correct copyright in file header.
2720   * dpkg, dselect: Stop using first-person singular in output messages.
2721   * libdpkg: Fix memory leak in parsedb context close.
2722   * buildtools.mk: Add QMAKE variable. Closes: #920878
2723   * po: Fix translation of --compare-versions. Closes: #951614
2724     Thanks to Boyuan Yang <byang@debian.org>.
2725   * Perl modules:
2726     - Dpkg::Source::Package: Verify original tarball signatures at build time.
2727     - Dpkg::BuildFlags: Add new unset() method.
2728       Requested by Daniel Schepler <dschepler@gmail.com>.
2729     - Dpkg::Source::Package::V2: Emit a special patch header on
2730       single-debian-patch. Closes: #933152
2731     - Dpkg::Vendor::Debian: Only scan /usr/local/ directories that exist.
2732       Closes: #932967
2733     - Dpkg::Vendor::Debian: Do not set -Werror=implicit-function-declaration
2734       for C++. Closes: #939969
2735     - Dpkg::Deps: Check for valid virtual package version relations. Do not
2736       allow non-equal version relations in virtual provides. Closes: #930317
2737     - Dpkg: Remove internal lowercase variables $version, $progname,
2738       $admindir, $dpkglibdir and $pkgdatadir.
2739     - Dpkg::Changelog: Remove obsolete methods dpkg() and rfc822().
2740     - Dpkg::Changelog::Entry::Debian: Remove obsolete methods check_header()
2741       and check_trailer(). Hide variables $regex_header and $regex_trailer.
2742     - Dpkg::Changelog::Parse: Remove warnings of obsolete options forceplugin
2743       and libdir. Remove obsolete functions changelog_parse_debian() and
2744       changelog_parse_plugin().
2745     - Dpkg::Compression: Hide internal lowercase variables
2746       $default_compression, $default_compression_level and
2747       $compression_re_file_ext.
2748     - Dpkg::Deps::KnownFacts: Remove obsolete check_package() method.
2749     - Dpkg::Exit: Hide internal lowercase @handlers variable.
2750     - Dpkg::Gettext: Remove obsolete _g() function.
2751     - Dpkg::Source::Package: Hide internal lowercase variable
2752       @tar_ignore_default_pattern. Remove internal lowercase variable alias
2753       $diff_ignore_default_regexp.
2754     - Dpkg::Substvars: Remove obsolete no_warn() method.
2755     - Dpkg::Index: Change default value for unique_tuple_key to 1.
2756     - Dpkg::Version: Remove deprecation warning from semantic change in
2757       bool overload.
2758     - Dpkg::Checksums: Remove obsolete 'program' property warning.
2759     - Dpkg::Conf: Remove obsolete methods and obsolete croak for method option.
2760     - Dpkg::Vendor: Remove obsolete 'keyrings' hook.
2761     - Dpkg::Exit: Unregister all signal handlers once we have executed them.
2762       Closes: #932841
2763     - Dpkg::Exit: Register exit handlers also for __DIE__.
2764     - Dpkg::Source::Package::V3::Native: Do not say v1.0 for 3.0 formats.
2765     - Dpkg::Dist::Files: On filename parse error say file instead of package.
2766     - Dpkg::Substvars: Add new vendor:Name and vendor:Id substvars.
2767     - Dpkg::Source::Package: Detect directory traversals under debian
2768       directory. Reported by Felix Lechner <felix.lechner@lease-up.com>.
2769   * Documentation:
2770     - man: Fix uncommon wording constructs.
2771     - man: Use a minus sign for a literal string.
2772     - man: Clarify that the pager is called via «$SHELL -c».
2773     - dpkg-shlibdeps: Document split_soname() function.
2774       Prompted by Christopher Crim <christopher.crim@quoininc.com>.
2775     - Dpkg::Changelog: Document methods provided by subclasses.
2776       Reported by Felix Lechner <felix.lechner@lease-up.com>.
2777     - man: Globally adjust left and disable hyphenation.
2778     - man: Split dselect(1) --color from --colour option items.
2779     - man: Describe the SONAME formats supported in deb-shlibs(5).
2780     - man: Move template symbol documentation into new deb-src-symbols(5).
2781     - Dpkg::Changelog::Parse: Remove $ sigil from option names in POD.
2782     - Dpkg: Say class instead of object when appropriate.
2783     - Dpkg::Changelog: Clarify that these classes inherit from some other
2784       base class, which will contain the missing documentation.
2785       Prompted by intrigeri <intrigeri@debian.org>.
2786     - man: Clarify deb-changelog(5) format. Closes: #946780
2787     - man: Clarify debian/source/include-binaries format in dpkg-source(1).
2788       Prompted by Felix Lechner <felix.lechner@lease-up.com>.
2789     - man, doc: Clarify that the postinst "triggered" argument gets the
2790       trigger-name(s) as a space-separated list in the second argument.
2791       Prompted by Michael Biebl <biebl@debian.org>.
2792     - dselect: Update the multicd README file.
2793     - doc, man: Mark T and I package instances to avoid misreadings.
2794   * Code internals:
2795     - Dpkg::Source::Package: Refactor original tarball handling.
2796     - perl: Use File::Copy instead of spawning mv/cp commands.
2797     - Dpkg::OpenPGP: Refactor signature verification into a new function.
2798     - Dpkg::OpenPGP: Make it possible to verify detached signatures.
2799     - Dpkg::OpenPGP: Add support for importing an OpenPGP key into a keyring.
2800     - Dpkg::BuildFlags: Remove unused hash keys.
2801     - libdpkg: Use the variable instead of a type as sizeof() argument.
2802     - libdpkg: Use the totalwritten variable for a consistency check.
2803     - dselect: Reduce scope of variable, to avoid it being unused in a branch.
2804     - dpkg-deb: Fold two adjacent if conditionals into a single one.
2805     - dpkg: Initialize flagdeppossi in check_conflict().
2806     - libdpkg: Add new C locale switch over support.
2807     - libdpkg: Add new versiondescribe_c() to force a C locale.
2808     - dselect: Make baselist::draw_column_*() col arguments const.
2809     - libdpkg: Use p instead of name in dpkg_arch_name_is_illegal().
2810     - dpkg: Remove redundant condition for sourcefile in updateavailable().
2811     - dpkg, update-alternatives: Make variables static.
2812     - libdpkg: Add missing symbols to the version map.
2813     - libdpkg: Fix fiemap memory layout usage that confuses gcc 10 to emit a
2814       warning.
2815     - libdpkg: Only use varbuf_printf() in pkg_format_show() when necessary.
2816       This should speed up «dpkg-query --show» formatting.
2817     - libdpkg: Fix package format string to be a string literal.
2818       This suppresses a gcc warning.
2819     - dpkg: Fix short lived memory leak in --force-help handling.
2820     - dpkg-split: Fix short lived file descriptor leak in --auto.
2821     - start-stop-daemon: Explicitly ignore unimportant function return values.
2822     - start-stop-daemon: Fix memory leak on multiple --chuid arguments.
2823     - start-stop-daemon: Close the notification socket in the child.
2824     - libdpkg: Fix memory leaks in zlib and bz2 decompression functions.
2825     - libdpkg: Add new dir_make_path() and dir_make_path_parent() functions.
2826     - libdpkg: Add new atomic file flag to create the base path when missing.
2827     - libdpkg: Fix modstatdb_rw enum comments.
2828     - libdpkg, dpkg-query: Optimize db-fsys:Files virtual variable loading.
2829       We load either the entire db-fsys for all packages, possibly optimized
2830       per platform (such as by using fiemap), or the specific ones for the
2831       requested packages. This also fixes a problematic cast removing the
2832       constness of a variable.
2833     - Dpkg::Dist::Files: Document the two filename pattern formats.
2834     - update-alternatives: Remove redundant condition in argument parser.
2835     - update-alternatives: Move error context setup before calling setjmp(),
2836       so that cppcheck stops being confused.
2837     - test: Reformat 200_Dpkg_Shlibs.cpp for coding style conformance.
2838     - dpkg: Make it possible for the compiler to check printf() format
2839       string arguments on dependency printer.
2840     - dselect: Reorder branches in packagelist::deselect_one_of so that they
2841       are not duplicated.
2842     - dselect: Use nullptr instead of NULL.
2843     - dselect: Use static_cast<> instead of old-style type qualifier cast.
2844     - dselect: Do not use unnecessary old-style casts.
2845     - dselect: Fix variable types to avoid needing old-style casts.
2846     - libcompat: Disarm libselinux setexecfilecon() declaration for
2847       libcompat-test.
2848     - libdpkg: Define new VARBUF_OBJECT macro.
2849     - libdpkg: Add new ATOMIC_FILE_NORMAL enum value to avoid a cast in C++.
2850     - libdpkg: Use a new DPKG_NULL macro that works in C and C++.
2851     - libdpkg: Use a new DPKG_STATIC_CAST macro that works in C and C++.
2852     - libdpkg: Move printing of errno into dpkg_error_set().
2853     - libdpkg: Use a varbuf to store the problem messages per parsedb context.
2854     - libdpkg: Fix Doxygen comments.
2855   * Build system:
2856     - Bump minimal Perl version to 5.24.1.
2857     - Add a serial versioning to the m4 files.
2858     - Install m4 files into system aclocal directory.
2859     - Bump minimal gettext version to 0.19.8, to get the m4 files that can
2860       cross-build for musl-based systems.
2861     - Enable more compiler warnings.
2862     - Update Doxygen configuration from version 1.8.16.
2863   * Packaging:
2864     - Remove obsolete Breaks satisfied since oldstable.
2865     - Replace custom rule for 'configure' with call to dh_autoreconf.
2866       Thanks to Dan Streetman <ddstreet@canonical.com>. Closes: #939516
2867     - dselect: Remove methods state files on purge.
2868       Spotted by Sven Joachim <svenjoac@gmx.de>.
2869     - Switch to debhelper compatibility level 12.
2870     - Switch from debian/compat to debhelper-commpat in Build-Depends.
2871     - Bump Standards-Version to 4.5.0 (no changes required).
2872   * Test suite:
2873     - Remove perlcritic Documentation::RequirePodLinksIncludeText suppression.
2874     - Clarify cppcheck va_list_usedBeforeStarted suppression.
2875     - Skip build directories from codespell check.
2876     - Update stopwords for codespell 1.16.0.
2877     - Suppress new bogus cppcheck 1.90 false positives.
2878     - libdpkg: Remove redundant assignment in t-ehandle unit test.
2879     - Skip backup files from codespell check.
2880     - Ignore python-3.8 runtime warnings in codespell.
2882   [ Updated programs translations ]
2883   * German (Sven Joachim).
2884   * Portuguese (Miguel Figueiredo). Closes: #935695
2885   * Simplified Chinese (Mo Zhou). Closes: #942195, #945776
2887   [ Updated dselect translations ]
2888   * German (Sven Joachim).
2890   [ Updated scripts translations ]
2891   * German (Helge Kreutzmann).
2893   [ Updated man pages translations ]
2894   * German (Helge Kreutzmann). Closes: #931135
2896  -- Guillem Jover <guillem@debian.org>  Sun, 08 Mar 2020 03:31:40 +0100
2898 dpkg (1.19.7) unstable; urgency=medium
2900   [ Guillem Jover ]
2901   * dpkg: Fix off-by-one error in dpkg --abort-error. Closes: #924886
2902     Thanks to Tom Goulet <tomg@sentex.ca>.
2903   * dpkg: Set the force defaults before loading the config file, otherwise we
2904     incorrectly override them. Regression introduced in dpkg 1.19.5.
2905     Closes: #928671
2906   * dpkg: Split the trigger dependtry into two, the second of which will be
2907     the one checking trigger cycles when deferring trigger processing due to
2908     unsatisfiable dependencies. Closes: #928429
2909   * dpkg-deb: Validate ar member magic before normalizing any of its fields.
2910   * dpkg-deb: Honor --nocheck when building packages with newlines in
2911     filenames. Regression introduced in dpkg 1.18.1. Closes: #929727
2912   * Documentation:
2913     - rootless-builds.txt: Expand what the builder means. Mention the
2914       dpkg-deb option to use to set the owner and group to root. And reword
2915       the prototyping section to be less confusing with what is currently
2916       implemented. Closes: #929019
2917     - README: Clarify when autopoint is needed. Closes: #929601
2918     - Fix typos in docs and output strings. Warned by codespell.
2920   [ Updated programs translations ]
2921   * Catalan (Guillem Jover).
2923   [ Updated dselect translations ]
2924   * Catalan (Guillem Jover).
2926   [ Updated scripts translations ]
2927   * Catalan (Guillem Jover).
2929   [ Updated man pages translations ]
2930   * Dutch (Frans Spiesschaert). Closes: #926665
2931   * French (Jean-Pierre Giraud). Closes: #929664
2933  -- Guillem Jover <guillem@debian.org>  Mon, 03 Jun 2019 23:22:35 +0200
2935 dpkg (1.19.6) unstable; urgency=medium
2937   [ Guillem Jover ]
2938   * libdpkg: Add a new TAR_FORMAT_UNKNOWN enum value.
2939   * libdpkg: Set tar_entry to zero on tar_entry_destroy(), to avoid double
2940     free()s and the subsequent crashes.
2941   * libdpkg: Handle non end-of-tape errors from tar_header_decode().
2942   * libdpkg: Use ERANGE instead of EINVAL for tar_atol8() out-of-range error.
2943   * dpkg-gencontrol: Check presence of package build dir before traversing it.
2944   * Perl modules:
2945     - Dpkg::Source::Package::V1: Change default build option style to -sa.
2946       Using -sA by default means the user might lose data on overwrite if
2947       there is already a directory with the same name laying around.
2948       Closes: #910737
2949     - Dpkg::Source::Package: Handle Format field being undefined. On source
2950       format 1.0, the default is for the debian/source/format file not being
2951       present, which means we'll start with an empty Format field name.
2952       Regression introduced in dpkg 1.19.3.
2953   * Packaging:
2954     - Update usertags.
2955     - Install a lintian profile for dpkg based on the debian profile, so that
2956       we can suppress Debian-specific tags, such as the controversial one on
2957       vendor-specific patch series files.
2958     - Add Breaks on lsb-base due to start-stop-daemon exposing breakage in
2959       the killproc function from /lib/lsb/init-functions. Closes: #923861
2960   * Test suite:
2961     - Stop requiring (pseudo-)root in the functional test suite.
2962     - Export and move TESTDATA definition close to the PATH definition.
2963     - Quote the 'yes' command to make a comment clearer.
2965   [ Updated programs translations ]
2966   * Dutch (Frans Spiesschaert). Closes: #924776
2968   [ Updated scripts translations ]
2969   * German (Helge Kreutzmann).
2971   [ Updated man pages translations ]
2972   * Dutch (Frans Spiesschaert). Closes: #924777
2973   * German (Helge Kreutzmann).
2975  -- Guillem Jover <guillem@debian.org>  Mon, 25 Mar 2019 15:08:26 +0100
2977 dpkg (1.19.5) unstable; urgency=medium
2979   [ Guillem Jover ]
2980   * start-stop-daemon: Make sure that we get a meaningful errno on
2981     parse_unsigned(), so that the error messages always make sense.
2982   * start-stop-daemon: Add new fatalv() and fatale() functions and use the
2983     latter for system errors, so that we are explicit on whether we want to
2984     use errno for error reporting or not.
2985   * start-stop-daemon: Always refuse to parse a world-writable pidfile,
2986     except when that is /dev/null.
2987   * dpkg: Print the current set of enabled force options on --force-help.
2988   * dpkg: Parse and set new DPKG_FORCE environment variable for subprocesses.
2989     Closes: #666147
2990   * dpkg-statoverride: Add support for --force-* options.
2991   * dpkg-statoverride: Switch from --force option to new --force-<thing>
2992     options. Deprecate --force option which will be considered an alias for
2993     --force-all for now.
2994   * dpkg, dpkg-statoverride: Add new option --refuse-security-mac to control
2995     SELinux. See #811037.
2996   * dpkg: Clarify error on unknown system user/group in statoverride database.
2997     Closes: #920880
2998   * dpkg-buildpackage: Clarify the warning/error on short OpenPGP key IDs.
2999     Closes: #922039
3000   * dpkg-maintscript-helper: Restrict find for dir-to-symlink move to
3001     -maxdepth 1. Thanks to Ralf Treinen <treinen@free.fr>. Closes: #922799
3002   * dpkg-genbuildinfo: Add support for a new Build-Tainted-By field in
3003     .buildinfo files. Suggested by Alexander E. Patrakov <patrakov@gmail.com>.
3004   * libdpkg: Clarify field names in error and warning messages.
3005   * libdpkg: Optimize error handling. Move the error reporting outside the
3006     involved functions so that we do not need to call gettext if there is no
3007     error, which has a significant performance cost.
3008   * libdpkg: Merge nicknames table into fieldinfos, to stop penalizing the
3009     lookup of non-obsolete fieldnames.
3010   * libdpkg: Print a more accurate warning for Revision nicknames.
3011   * libdpkg: Increase the pkg-hash bins size to 65521, to improve hash table
3012     performance at the cost of a bit more memory usage.
3013   * libdpkg: Blank packages that are not-installed with unknown selection.
3014     Closes: #922410
3015   * libdpkg, dpkg: Print the dpkg database directory on access errors.
3016     Closes: #883700
3017   * Perl modules:
3018     - Dpkg::Vendor::Debian: Add support for merged-usr-via-symlinks tainted
3019       tag. Suggested by Alexander E. Patrakov <patrakov@gmail.com>.
3020     - Dpkg::Vendor::Debian: Add support for usr-local-has-* tainted tags.
3021     - Dpkg::Source::Package: Add a missing use Dpkg::Source::Format.
3022       Diagnosed by Ian Jackson <ijackson@chiark.greenend.org.uk>.
3023       Closes: #921031
3024   * Documentation:
3025     - start-stop-daemon(1): Document behavior of --pidfile security checks.
3026       Closes: #921557
3027     - dpkg(1): Document the unknown selection state. Closes: #922407
3028   * Code internals:
3029     - dpkg: Move SELinux fallback label to the SELinux specific code path.
3030     - dpkg: Simplify maintscript_set_exec_context().
3031     - dpkg: Move force options support into its own file.
3032     - dpkg: Do not hardcode the program name in the --force-help output.
3033     - dpkg: Switch force options from individual variables to bit fields.
3034     - dpkg: Switch from a char to an enum to track the force options types.
3035     - dpkg: Switch to set the default force option from the forceinfos array.
3036     - libdpkg: New benchmark programs and infrastructure.
3037     - libdpkg: Add new dpkg_error_move() function.
3038     - libdpkg: Add new dpkg_has_error() function.
3039     - libdpkg: Move status names from parse errors to arguments.
3040     - libdpkg: Use va_arg copy instead of the original on a vasprintf() call.
3041     - libdpkg: Include <string.h> in pager.c.
3042       Reported by Y <sevener@cock.li>. Closes: #922212
3043     - libdpkg: Use pkg_set_want() instead of a direct assignment.
3044   * Build system:
3045     - Check whether this dist is a release, based only on the version format.
3046       This will avoid having to do a two staged release to get a proper perl
3047       distribution tarball.
3048   * Packaging:
3049     - autopkgtest: Add file to Depends fields.
3050     - autopkgtest: Clarify behavior on root/non-root requirement.
3051     - Bump Standards-Version to 4.3.0 (no changes required).
3052     - Remove now unused assert usertag description.
3053     - Remove trailing whitespace from changelog.
3054     - Remove Origin and Bugs fields from control file.
3055     - Include a bug-script to report on tainted merged-usr-via-symlinks.
3056   * Test suite:
3057     - libdpkg: Fix unit test for file_slurp(). Closes: #920974
3058       Diagnosed by Frank Schaefer <kelledin@gmail.com>.
3060   [ Updated programs translations ]
3061   * Dutch (Frans Spiesschaert). Closes: #921942
3062   * German (Sven Joachim).
3063   * Simplified Chinese (Zhou Mo). Closes: #920972
3065   [ Updated scripts translations ]
3066   * German (Helge Kreutzmann).
3068   [ Updated man pages translations ]
3069   * Dutch (Frans Spiesschaert). Closes: #921943
3070   * French (Jean-Pierre Giraud). Closes: #920905
3071   * German (Helge Kreutzmann).
3073  -- Guillem Jover <guillem@debian.org>  Sat, 23 Feb 2019 18:00:54 +0100
3075 dpkg (1.19.4) unstable; urgency=medium
3077   * start-stop-daemon: Do not sanity check the pidfile when it is specified as
3078     /dev/null, as that implies the caller wants to start the program no matter
3079     what. Closes: #920242
3080   * Portability:
3081     - start-stop-daemon: Only use SO_PASSCRED if defined. Fixes build failure
3082       at least on GNU/Hurd.
3083   * Packaging:
3084     - autopkgtest: Pass --disable-nls and --disable-dselect to configure.
3085     - autopkgtest: Change Depends to «build-essential, autoconf, pkg-config».
3087  -- Guillem Jover <guillem@debian.org>  Wed, 23 Jan 2019 13:06:39 +0100
3089 dpkg (1.19.3) unstable; urgency=medium
3091   [ Guillem Jover ]
3092   * dpkg-source: Stop filtering @builddeps@ from Testsuite-Triggers field.
3093     Closes: #910734
3094   * dpkg-genchanges: Only reference binary packages being uploaded, which
3095     means that for a source-only upload, the Binary and Description fields
3096     should be empty. Closes: #818618
3097   * dpkg-scanpackages: Do not compute unnecessary checksums when using the
3098     --hash argument. Based on a patch by Chris Lamb <lamby@debian.org>.
3099     Closes: #916456
3100   * dpkg-scanpackages: Emit a warning with the list of repeat packages.
3101     Prompted by Johannes Schauer <josch@debian.org>.
3102   * start-stop-daemon: Check whether standalone --pidfile use is secure.
3103     Prompted by Michael Orlitzky <michael@orlitzky.com>.
3104   * start-stop-daemon: Print complete verbose lines, instead of partial lines
3105     with no newlines and a final print with a newline.
3106   * start-stop-daemon: Add new --notify-await and --notify-timeout options,
3107     which implement the systemd readiness protocol for services.
3108     Closes: #910707
3109   * update-alternatives: Add new --debug option.
3110   * update-alternatives: Fix removal of obsolete slaves from the linked list.
3111     Reported by Andreas Beckmann <anbe@debian.org>. Closes: #916799
3112   * vendor.mk: Fix dpkg_vendor_derives_from macro documentation.
3113     Thanks to Colin Watson <cjwatson@debian.org>. Closes: #913816
3114   * vendor.mk: Add support for an improved dpkg_vendor_derives_from macro.
3115     Version the macros so that both can be used, and default the unversioned
3116     one to the version 0 macro.
3117   * dpkg: Mark the package we are giving up on a trigger cycle as "istobe"
3118     normal, so that the dependency checks know they cannot expect this package
3119     to be processed anymore. Otherwise we ended up never detecting that we
3120     were not making progress, as we expected to process this package at a later
3121     point, when that would never happen anymore. This then was causing asserts
3122     in the process queue loop. Closes: #901127, #910819
3123   * dpkg: Reset progress_bytrigproc once we have injected it into the current
3124     package process queue iteration, so that we do not keep trying to process
3125     it, which might end up generating artificial trigger cycles, if
3126     dependencies are not satisfied yet.
3127   * dpkg: Convert one trigger processing required type into the new try-queued
3128     one, so that we stop skipping unsatisfiable dependency checks.
3129   * dpkg: Move trigproc cycle reset inside try-deferred conditional. We should
3130     only reset the cycle detection in case we are not bailing out from the
3131     processing with an error, otherwise we could come back to this package and
3132     detect an artificial trigger cycle.
3133   * dpkg: Introduce a new dependency try level for trigger processing. This
3134     completely defers trigger processing until after the dependency cycle
3135     breaking level, so to avoid generating artificial trigger cycles, when we
3136     end up trying to process triggers with yet unsatisifiable dependencies.
3137     Closes: #810724, #854478, #911620
3138   * dpkg: Fix --help output, to clarify which arguments are optional.
3139   * libdpkg: Add proper tar error handling. This makes the tar extractor
3140     track and report back parse errors, so that we can give more descriptive
3141     messages.
3142   * libdpkg: Detect unsupported tar entry types to give better error messages.
3143   * libdpkg: Add new db-fsys:Files and db-fsys:Last-Modified virtual fields.
3144   * Perl modules:
3145     - Dpkg::Changelog::Debian: Preserve modelines at EOF. Closes: #916056
3146       Thanks to Chris Lamb <lamby@debian.org> for initial test cases.
3147     - Dpkg::File: Make file_slurp() also accept pathnames in addition to
3148       filehandles.
3149     - Dpkg::Vendor::Ubuntu: Fix buildflags override after default setting move.
3150       Based on a patch by Iain Lane <laney@ubuntu.com> and
3151       Adam Conrad <adconrad@ubuntu.com>. Closes: #915881
3152     - Dpkg::Shlibs::Objdump: Remove unused Dpkg::IPC import.
3153     - Dpkg::Shlibs::Objdump: Only select objdump program when going to use it.
3154     - Dpkg::Source::Package: Do not reinitialize fields member in constructor.
3155     - Dpkg::Source::Patch: Do not recommend --include-removal when not
3156       supported. Closes: #913012
3157     - Dpkg::Source::Package::V3::Bzr: Fix format name in output message.
3158     - Dpkg::Source::Package: Add a new format option to the new constructor.
3159       Prompted by James McCoy <jamesan@debian.org>.
3160     - Dpkg::Source::Package: Improve debian/source/format parsing and
3161       validation.
3162     - Dpkg::Source::Format: New public module.
3163       Prompted by Mattia Rizzolo <mattia@debian.org>.
3164   * Documentation:
3165     - dpkg(1): Clarify --remove action. Closes: #914478
3166     - dpkg-query(1): Clarify --list option behavior when no arguments are
3167       specified. Closes: #917098
3168     - deb-control(5): Clarify by adding a reference to deb-src-control(5) and
3169       removing an invalid comment in the example.
3170       Prompted by Helmut Grohne <helmut@subdivi.de>.
3171     - dpkg(1): Clarify databases used by --yet-to-unpack and --predep-package.
3172       Prompted by Johannes Schauer <josch@debian.org>.
3173     - Clarify character classes for various formats in man pages, by
3174       explicitly listing the character ranges within parenthesis.
3175       Prompted by Ian Jackson <ijackson@chiark.greenend.org.uk>.
3176     - dpkg-query(1): Document the version introducing the -f option.
3177     - dpkg-architecture(1): Add reference to the TERMS section in the
3178       VARIABLES section. Prompted by Axel Beckert <abe@debian.org>.
3179     - Fix POD for Dpkg::Interface::Storable derived method implementations.
3180     - Dpkg::Deps::Simple(3): Fix POD signature for new constructor.
3181   * Code internals:
3182     - dpkg-maintscript-helper: Use an explicit escape instead of a literal
3183       backslash.
3184     - Quote shell variables. Reported by Johannes Schauer <josch@debian.org>.
3185     - Switch perl code to use the new Dpkg::Source::Format module.
3186     - dpkg-source: Move source format selection earlier in the build.
3187     - dpkg-source: Use new format argument for Dpkg::Source::Package->new().
3188     - dpkg-shlibdeps: Remove unused variable.
3189     - dpkg-scanpackages: Unroll a single iteration loop.
3190     - start-stop-daemon: Compare foundany against 0 instead of treating it
3191       like a boolean.
3192     - start-stop-daemon: Switch code to use new info() and debug() functions.
3193     - update-alternatives: Use enums for actions instead of strings.
3194     - update-alternatives: Switch verbose selection into an enum.
3195     - dpkg: Negate tortoise_not_in_hare() function name and return value.
3196     - dpkg: Initialize trigcyclenode's next member once.
3197     - dpkg: Use common pattern of assigning as an iterator.
3198     - dpkg: Factor trigproc_new_cyclenode() out from check_trigger_cycle().
3199     - dpkg: Switch dependtry from an int to an enum.
3200     - dpkg: Move dependtry description from deferred_configure() to its
3201       declaration.
3202     - dpkg: Split trigger processing types into required, try-queued and
3203       try-deferred.
3204     - dpkg-query: Rename variable to avoid shadowing a local function.
3205     - When allocating use the variable instead of the type in sizeof().
3206     - dselect: Rename variable r to pkgbin.
3207     - libdpkg, dpkg: Rename r variables to fnn.
3208     - libdpkg: Rename ret variable to next.
3209     - libdpkg: Cleanup fsys module symbol names.
3210     - libdpkg: Rename pkg_db symbols to pkg_hash.
3211     - libdpkg: Add new warning printer setter function.
3212       Prompted by Julian Andres Klode <jak@debian.org>.
3213     - libdpkg: Add new DPKG_ERROR_OBJECT macro.
3214   * Build system:
3215     - get-version: Use a format string with printf.
3216     - run-script: Use $() instead of deprecated ``.
3217     - run-script: Remove unused PERL_PROFILE variable, PERL5OPT can be used
3218       instead, and does not require leaving an unquoted variable around.
3219     - run-script: Add «set -e».
3220     - Build.PL: Set environment variables only for CPAN tests.
3221     - Build.PL: Set locale for CPAN tests to C. Fixes CPAN#127314.
3222     - configure: Split AM_INIT_AUTOMAKE arguments into different lines.
3223   * Packaging:
3224     - Bump Standards-Version to 4.2.1 (no changes needed).
3225     - Switch to debhelper compatibility level 11.
3226     - Create the log file in postinst only if it does not exist.
3227       Prompted by Johannes Schauer <josch@debian.org>.
3228     - Add superficial autopkgtest functional tests.
3229   * Test suite:
3230     - Add new shellcheck author test.
3231     - Add descriptions for the shellcheck exclude codes.
3232     - Update cppcheck suppressions.
3234   [ Updated programs translations ]
3235   * Dutch (Frans Spiesschaert). Closes: #912023
3236   * German (Sven Joachim).
3237   * Italian (Milo Casagrande). Closes: #915610
3238   * Portuguese (Miguel Figueiredo). Closes: #917813
3239   * Simplified Chinese (Zhou Mo). Closes: #919040
3241   [ Updated scripts translations ]
3242   * German (Helge Kreutzmann).
3244   [ Updated man pages translations ]
3245   * Dutch (Frans Spiesschaert). Closes: #912024
3246   * German (Helge Kreutzmann).
3248  -- Guillem Jover <guillem@debian.org>  Tue, 22 Jan 2019 14:26:04 +0100
3250 dpkg (1.19.2) unstable; urgency=medium
3252   [ Guillem Jover ]
3253   * dpkg: Fix --force-not-root for chown() and chmod() based syscalls, and
3254     give a more meaningful error message on chroot(). Closes: #614126
3255   * dpkg-divert, dpkg-statoverride: Add new --instdir and --root options,
3256     and make the commands honor the DPKG_ROOT environment variable.
3257     Closes: #487108
3258   * libdpkg: Call the pager with «$SHELL -c» to respect POSIX. Closes: #910009
3259   * libdpkg: Do not spawn a pager if we are going to call «cat».
3260   * libdpkg: Honor DPKG_PAGER when spawning a pager.
3261     Suggested by Craig Sanders <cas@taz.net.au>.
3262   * libdpkg: Set LESS to “-FRSXMQ” if not already set, when spawning a pager.
3263   * libdpkg: Ignore SIGPIPE when setting up a pager, and then ignore EPIPE
3264     errors when writing to stdout, otherwise if we quit the pager early, the
3265     program will exit with an error code.
3266   * libdpkg: Set stdout to be fully buffered when using a pager.
3267   * dpkg, dpkg-query: Add new --no-pager option. For dpkg this is also a
3268     configuration option. Closes: #909754
3269   * Perl modules:
3270     - Dpkg::OpenPGP: Ignore Version field in enarmored output.
3271       Fixes CPAN#127217.
3272     - Dpkg::OpenPGP: Do not read the gpg user configuration file.
3273     - Dpkg::Source::Functions: Reimplement is_binary() w/o using diff(1).
3274     - Dpkg::Source::Package::V2: Split the BinaryFiles module into its own
3275       file, and give it a more generic name (Dpkg::Source::BinaryFiles).
3276     - Dpkg::Source::Package::V2: Move binary file detection to BinaryFiles
3277       module.
3278   * Documentation:
3279     - dpkg-buildpackage(1): Clarify --build=source explanation.
3280     - dsc(5): Clarify what “flattened” means in Testsuite-Triggers.
3281       Prompted by Mattia Rizzolo <mattia@debian.org>.
3282     - dsc(5): Add a reference to where the source formats are described.
3283       Prompted by Manuel A. Fernandez Montecelo <mafm@debian.org>.
3284     - dpkg-source(1): Improve documentation on vendor-specific series files.
3285     - deb-control(5): Document Build-Ids field.
3286       Prompted by Stuart Prescott <stuart@debian.org>.
3287     - dpkg(1): Clarify which fields are affected by dependency options.
3288       Prompted by James Clarke <jrtc27@debian.org>.
3289     - dpkg-query(1): Document the PAGER environment variable usage.
3290     - Dpkg(1): Add POD documentation about the module hierarchy and API.
3291   * Code internals:
3292     - dpkg-split: Use nfstrnsave() instead of nfmalloc() + memcpy().
3293     - libdpkg: Add new fsys-dir module.
3294     - libdpkg: Pass the file contents to the pager instead of the filename.
3295     - libdpkg: Add a pager kill switch, so that it can be forcefully disabled.
3296   * Build system:
3297     - Distribute a LICENSE file on CPAN.
3298     - Do not make the Build.PL script executable.
3299     - Generalize PACKAGE_CPAN_SIGN by setting PACKAGE_DIST_IS_RELEASE instead.
3300     - Add a release_status key to the CPAN metadata.
3301     - Fix typo in CPAN recommends key.
3302     - Improve test and author CPAN dependencies.
3303   * Packaging:
3304     - Break libapt-pkg5.0 instead of apt. Closes: #909959
3305       Analysis by Sven Joachim <svenjoac@gmx.de>.
3306   * Test suite:
3307     - Skip version checks involving «dpkg --compare-versions» if not available.
3308       This is relevant on CPAN or on non-dpkg-based systems.
3310   [ Updated programs translations ]
3311   * Polish (Łukasz Dulny).
3313   [ Updated man pages translations ]
3314   * German (Helge Kreutzmann).
3316  -- Guillem Jover <guillem@debian.org>  Mon, 08 Oct 2018 11:43:48 +0200
3318 dpkg (1.19.1) unstable; urgency=medium
3320   [ Guillem Jover ]
3321   * Fix logic in dpkg-buildpackage to decide whether to run build targets,
3322     which broke tons of packages that are violating Debian policy MUSTs.
3323     Thanks to James Clarke <jrtc27@debian.org>. Closes: #878899
3324   * Do not try to recompute hashes for the .dsc file when signing binary-only
3325     builds in dpkg-buildpackage. Reported by Ximin Luo <infinity0@debian.org>.
3326   * Pass the correct source stanza to the dpkg-buildpackage code parsing the
3327     Rules-Requires-Root field. This meant the field was being ignored.
3328   * Run dpkg-source directly from the current working directory in
3329     dpkg-buildpackage, instead of changing directory back and forth.
3330   * Setup and check rootcommand in dpkg-buildpackage only if it is going to
3331     be needed. Reported by Niels Thykier <niels@thykier.net>.
3332   * Add color support to dpkg-maintscript-helper (a shell script).
3333   * Fix warning by including <sys/sysmacros.h> for makedev() in libdpkg.
3334   * Fix directory traversal with dpkg-deb --raw-extract, by guaranteeing
3335     that the DEBIAN pathname does not exist. Closes: #879982
3336     Reported by Jakub Wilk <jwilk@jwilk.net>.
3337   * Add new AS, STRIP, OBJCOPY, OBJDUMP, NM, AR and RANLIB buildtools
3338     variables to buildtools.mk. Prompted by Helmut Grohne <helmut@subdivi.de>.
3339   * Restore rejecting negated architectures in Architecture field in
3340     dpkg-gencontrol and dpkg-genchanges. Regression introduced in dpkg 1.18.5.
3341   * Fix dpkg-gensymbols to print "error" instead of "warning" when these
3342     are fatal. Closes: #881488
3343   * Rename DPKG_GAIN_ROOT_CMD to DEB_GAIN_ROOT_CMD in the R³ support, as
3344     the variable is expected to be set by any builder, not just dpkg. And
3345     introduce ephemeral backwards compatibility even though there are no
3346     known users.
3347   * Do not set DEB_GAIN_ROOT_CMD in dpkg-buildpackage when the R³ value is
3348     <implementations-keywords>, following the specification.
3349   * Specify that DEB_GAIN_ROOT_CMD in R³ should preserve the environment.
3350     Proposed by Josh Triplett <josh@joshtriplett.org>.
3351   * Specify new DEB_RULES_REQUIRES_ROOT variable for R³ support.
3352   * Add new --rules-requires-root option to dpkg-buildpackage.
3353   * Declare R³ specification as "recommendation, stable" with version 1.0.
3354   * Export architecture variables by default from architecture.mk, as
3355     documented in dpkg-architecture(1). Closes: #888964
3356     Thanks to Jack Bates <wdz7eo@nottheoilrig.com>
3357   * Increment the line number on dpkg --set-selections on unknown packages.
3358     Reported by Heinz Repp <heinz.repp@arcor.de>. Closes: #888983
3359   * Switch a DEBIAN/conffile parsing assert() in dpkg due to empty lines
3360     into an ohshit(), because this is really a run-time error.
3361   * Fix assert() in dselect to expect the method lock file descriptor to be
3362     initialized, instead of non-zero.
3363   * Switch a fatal() call in start-stop-daemon into the new BUG() macro,
3364     because it is really an internal error.
3365   * Switch all assert() calls (except in update-alternatives) into internerr()
3366     or BUG() calls, to get way better reporting with variable contents and
3367     descriptions, and to make them always present independent of NDEBUG.
3368   * Add a new --no-rename option to dpkg-divert. This is the current default
3369     behavior, but it will make it possible to do a default switch in 1.20.x.
3370   * Warn when using dpkg-divert --add or --remove w/o --rename or --no-rename.
3371   * Warn when using dpkg-divert --rename on a file from an Essential package.
3372   * Use a single “struct filenamenode” definition for the entire code base.
3373     Closes: #746766
3374   * Add support for frontend locking. This makes it possible for frontends
3375     using this new protocol, to safely lock the dpkg database w/o risk of
3376     race conditions with other dpkg instances or frontends supporting the
3377     same protocol. Thanks to Julian Andres Klode <jak@debian.org>.
3378     Closes: #850417, #851984
3379   * Do not emit perl warnings in dpkg-source --help on source formats w/o
3380     options.
3381   * Make dpkg-buildpackage validate OpenPGP signing key IDs length. Error out
3382     for short key IDs and warn for long key IDs.
3383   * On the dpkg conffile prompt, print the set of environment variables setup
3384     for the conffile shell, for easier discoverability.
3385   * Fix dpkg-buildpackage option --rules-file parsing. It was trying to parse
3386     it as --rules-target, which due to the ordering was a no-op.
3387   * Only check for fallback build targets presence on binary builds in
3388     dpkg-buildpackage.
3389   * Only check required build dependencies for known targets specified with
3390     dpkg-buildpackage --rules-target option.
3391     Reported by Johannes Schauer <josch@debian.org>.
3392   * Track package status dirtiness in dpkg to only log and report in status-fd
3393     when it has changed, removing duplication in output. Closes: #365921
3394   * Use Synopsis instead of Summary for the short Description, to unify the
3395     nomenclature and to make it more descriptive. Add a new binary:Synopsis
3396     virtual field to dpkg-query show format.
3397   * Add new dpkg-buildpackage --no-post-clean option, to be able to explicitly
3398     select the current default behavior.
3399   * Dump database package records in alphabetical order. This will give
3400     reproducible status and available database files, and make it possible
3401     to output other deb822 formatted data in a deterministic way.
3402   * Require both standard input and output to be connected to a terminal to
3403     use a pager.
3404   * Run dpkg-query --list output through a pager if we are on a terminal,
3405     instead of truncating it, to avoid data loss. Closes: #898603
3406   * Fix use after free in dpkg maintainer script handling. Regression
3407     introduced in dpkg 1.19.0.
3408   * Flush output for dpkg-query --status, --print-avail and --listfiles at
3409     the end, instead of after each stanza.
3410   * Add support for dumping all dpkg-query --status and --print-avail records
3411     from the database when no arguments are specified. Closes: #616342
3412   * Add new dpkg-gensymbols -l option to avoid having to abuse LD_LIBRARY_PATH
3413     for cross-build paths.
3414   * Check that DPKG_MAINTSCRIPT_PACKAGE is defined in dpkg-maintscript-helper.
3415     Closes: #907772
3416   * Switch dpkg-gencontrol and dpkg-genchanges to track automatically
3417     generated artifacts by using the Auto-Built-Package field from the binary
3418     package instead of hardcoding package name patterns (such as «-dbgsym$»).
3419   * Add new --reverse option to dpkg-parsechangelog, to list the changelog
3420     entries in reverse order.
3421   * Architecture support:
3422     - Add support for riscv64 CPU. Closes: #822914
3423       Thanks to Manuel A. Fernandez Montecelo <mafm@debian.org>
3424     - Document the purpose and columns in the tupletable file.
3425   * Portability:
3426     - Add libcompat md5 module to the libcompat-test library, so that we
3427       always make sure it builds, even when we use an external implementation.
3428     - Convert libcompat md5 module to use C99 int types, instead of mapping
3429       them from the BSD types at configure time.
3430     - Use MD5_CTX instead of struct MD5Context, as the prevalent more portable
3431       type on system's <md5.h> headers.
3432     - Check for ldconfig command in dpkg only on platforms that do have it.
3433     - Fix file descriptor leak in start-stop-daemon on AIX.
3434     - libcompat: Add new strchrnul() implementation.
3435   * Perl modules:
3436     - Dpkg::Source::Package::V1: Check that $tarname is defined before use.
3437       Thanks to Christoph Biedl <debian.axhn@manchmal.in-ulm.de>.
3438       Closes: #879124
3439     - Dpkg::Vendor::Debian: Use proper %use_feature key. This was causing perl
3440       errors on paths not accepted for fixdebugpath.
3441       Reported by Mattia Rizzolo <mattia@debian.org>, on IRC. Closes: #881051
3442     - Dpkg::Changelog: Print versions for incorrect changelog range warnings.
3443       Thanks to Paul Wise <pabs@debian.org>.
3444     - Dpkg::Shlibs::SymbolFile: Check that $state->{seen} exists instead of
3445       $state being just defined. Fixes regression in dpkg-gensymbols symbols
3446       output. Thanks to Dmitry Shachnev <mitya57@debian.org>. Closes: #880166
3447     - Dpkg::Arch: Add new positive options argument to arch validators.
3448     - Dpkg::Vendor::Debian: Mark hurd-i386 as having gcc builtin PIE.
3449       Requested by Samuel Thibault <sthibault@debian.org>.
3450     - Dpkg::Source::Package::V2: Print one building line per existing tarball.
3451     - Dpkg::Source::Package: Print building lines for upstream tarball
3452       signatures. Closes: #888787
3453     - Dpkg::Deps: Turn virtualpkg tracking from an arrayref into a hashref.
3454     - Dpkg::Vendor::Debian: Mark riscv64 as having gcc builtin PIE.
3455     - Dpkg::Shlibs::Objdump: Fix ELF program detection, for PIE binaries and
3456       executable libraries.
3457     - Dpkg::Version: Fix bool overload behavior back to be an is_valid()
3458       alias. Emit a specific perl warning until 1.20.x so that users can check
3459       whether the semantic change has any impact on the code, which can then
3460       be quiesced. Closes: #895004
3461     - Dpkg::Changelog::Parse: When detecting the changelog format, read the
3462       last 4KiB of the file instead of using «tail -n40», which should be
3463       both faster and more portable, as the default tail(1) is not POSIX
3464       compliant on all systems (c.f. Solaris).
3465     - Dpkg::Build::Types: Add new set_build_type_from_targets() function.
3466     - Dpkg::Shlibs::SymbolFile: Always assign a proper Dpkg::Version to the
3467       deprecated variable, otherwise the scalar value 0 can get confused
3468       on scalar context to denote it is *not* deprecated instead of being
3469       version 0.
3470     - Dpkg::Shlibs: Disable bool overload Dpkg::Version warnings.
3471     - Dpkg::Vendor::Debian: Inline _parse_feature_area() into
3472       _add_build_flags(), for a small speed up and line count reduction.
3473     - Dpkg::BuildFlags: Move default flags setting into the Dpkg::Vendor
3474       modules.
3475     - Dpkg::Gettext: Fix fallback textdomain() to honor its expected interface.
3476     - Dpkg::Deps: Split subpackages into their own separate modules.
3477     - Dpkg::Source: Do not change patch permissions if not necessary.
3478       Closes: #898010
3479     - Dpkg::Substvars: Reword used/unused warnings to clarify their meaning.
3480       Closes: #904258
3481     - Dpkg::Shlibs: Warn when using LD_LIBRARY_PATH with a private library
3482       directory which is a descendent of the current working directory.
3483     - Dpkg::Source::Package::V3::Quilt: Print series file used when applying
3484       patches.
3485     - Dpkg::OpenPGP: Return the destination path on successful ASCII armor
3486       conversion.
3487     - Dpkg::Control::Fields: Do not use & sigil for function calls.
3488     - Dpkg::Shlibs: Ignore nonexistent directories present in LD_LIBRARY_PATH.
3489     - Dpkg::Deps::KnownFacts: Satisfy :native with arch:all packages too.
3490       These are treated as native packages everywhere else in the multi-arch
3491       design, this was the only exception, which has become a source of
3492       packaging problems as of late. This was apparently an oversight in
3493       the original implementation. Closes: #854438
3494     - Dpkg::Vendor::Debian: Add fixfilepath support to reproducible feature.
3495     - Dpkg::Dist::Files: Add support for file attributes.
3496   * Documentation:
3497     - Update gettext minimal version in README.
3498     - Add a missing dot on the dpkg-buildflags(1) «lfs» feature paragraph.
3499       Spotted by Helge Kreutzmann <debian@helgefjell.de>.
3500     - Document DPKG_COLORS environment variable for all programs using it.
3501     - Document DPKG_NLS environment variable for all programs using it.
3502     - Document the Testsuite and Testsuite-Triggers fields in
3503       deb-src-control(5). Prompted by Mattia Rizzolo <mattia@debian.org>.
3504     - Update git URLs for move away from alioth.debian.org.
3505     - Fix set_build_type_from_options() description in Dpkg::Build::Types.
3506     - Clarify PIE build flag feature semantics. Closes: #900088
3507     - Clarify dpkg-buildpackage pre and post-clean options and their default
3508       state.
3509     - Add --build option equivalents for dpkg-buildpackage short build type
3510       options in --help output.
3511     - Fold dpkg-buildpackage --[no-]check-builddeps in --help into both -D
3512       and -d option descriptions.
3513     - Mark profiles as a replaceable item in dpkg-buildpackage --help output.
3514     - Update test suite requirements in README.
3515     - Document textdomain() and ngettext() replacement functions in
3516       Dpkg::Gettext POD.
3517     - Clarify arch-qualified dependency simplification in Dpkg::Deps POD.
3518     - Improve Dpkg::Deps modules and methods documentation.
3519     - Fix typo in deb-changes(5). Closes: #902616
3520     - Clarify awaiting state for interest and activate directives.
3521       Closes: #904060
3522     - Fix man page markup. Closes: #900033, #900035, #900040
3523       Thanks to Bjarni Ingi Gislason <bjarniig@rhi.hi.is>.
3524     - Fix Doxygen comment for libdpkg dpkg_arch_find() function.
3525     - Document the dangers of using start-stop-daemon(8) only with --pidfile
3526       as matching option with the pid file owned by a non-privileged user.
3527   * Code internals:
3528     - Do not use stringy eval to define different sub implementations,
3529       just assign an anonymous sub to the typeglob.
3530     - Use memccpy() instead of strncpy() to quiesce a gcc-8 warning.
3531     - Change pkgbin_name_needs_arch() to never arch-qualify packages that
3532       have an empty or no architecture, which was already handled as part
3533       of varbuf_add_archqual().
3534     - libdpkg: Factor out cached arch-qualified package name generation into
3535       new pkgbin_name_archqual() function.
3536     - libdpkg: Add new pkg_name() and pkgbin_name() const variants.
3537     - libdpkg, dselect: Use new pkg_name_const() and pkgbin_name_const().
3538     - libdpkg: Rename struct pkginfo files member to archives.
3539     - dpkg: Call ensure_package_clientdata() defensively.
3540     - dpkg: For read-only state functions, check that clientdata is allocated
3541       before using it.
3542     - libdpkg: Move files list information from dpkg clientdata to pkginfo.
3543     - dpkg: Move ensure_package_clientdata() into its own file.
3544     - libdpkg: Move db-fsys code from src to lib/dpkg.
3545     - libdpkg: Rename pkg-db module to pkg-hash.
3546     - libdpkg: Simplify pkg_files_blank() by using a pointer to pointer to
3547       track the previous entry.
3548     - libdpkg: Factor out package files handling into its own module.
3549     - libdpkg: Switch to a new tiny struct to track file on-disk identity.
3550       This should reduce the run-time memory used.
3551     - libdpkg: Reset nfiles in files_db_reset().
3552     - libdpkg: Split push_cleanup() into push_cleanup_fallback().
3553     - Switch from strchr() + strlen() to strchrnul().
3554     - libdpkg: Change dpkg_error to track errno values.
3555     - libdpkg: Add new varbuf_new() and varbuf_free() functions.
3556     - libdpkg: Add new file_slurp() function.
3557     - libdpkg: Switch db-fsys to use the new file_slurp() function.
3558     - libdpkg: Add new pkg_infodb_reset_dir().
3559     - libdpkg: Add new m_dup() function.
3560     - libdpkg: Factor out package stanza printing into its own function.
3561     - libdpkg: Split pager specific code into its own module.
3562     - libdpkg: Add pager spawning and reaping support.
3563     - Use new pager spawning support instead of open-coding it, or piping it
3564       via a shell invocation, which required metacharacter escaping.
3565     - dpkg-query: Split enqperpackage() into each different action.
3566   * Build system:
3567     - Set distribution tarball format to ustar, instead of default v7 format.
3568     - Mark PO4A and POD2MAN as precious variables.
3569     - Automatically replace -Wno- with -W when testing compiler flags,
3570       instead of passing the positive form manually.
3571     - Enable clang -Wdocumentation warning if available.
3572     - Enable gcc-7 -Wregister warning if available.
3573     - Add CPAN distribution machinery for the perl modules. Closes: #821177
3574     - Add an autogen script to help people bootstrap the project.
3575     - Distribute the man.stamp from VPATH.
3576     - Preserve timestamps when distributing man pages.
3577     - Add a GitLab CI configuration file.
3578     - Disable C optimization levels when configuring for code coverage.
3579   * Packaging:
3580     - Install update-alternatives policykit-1 file.
3581     - Add Breaks to libdpkg-perl against pkg-kde-tools (<< 0.15.28~), as
3582       that package is using private modules with no API guarantees, that
3583       obviously broke due to recent changes in 1.19.0. Closes: #878919
3584     - Add Breaks on debhelper << 10.10.1~ to dpkg-dev, so that debhelper users
3585       wanting to use R³ support do not need a versioned dependency on dpkg-dev.
3586     - Add Breaks dgit << 3.13~ to libdpkg-perl, as older dgit versions assumed
3587       that Dpkg::Compression::Process was available, via implicit import
3588       from Dpkg::Source::Package.
3589       Reported by Ian Jackson <ijackson@chiark.greenend.org.uk>.
3590     - Bump Standards-Version to 4.1.1 (no changes needed).
3591     - Add bzip2 and xz-utils to Build-Depends, required by the functional test
3592       suite, but shadowed by dpkg-dev from the build system pulling those in.
3593     - Add versioned libncurses-dev as the first Build-Depends alternative.
3594       Thanks to Sven Joachim <svenjoac@gmx.de>.
3595     - Do not pass VERBOSE to test suite, as we are not using any automake
3596       test driver, so it does not get honored.
3597     - Rename maintainer-build DEB_BUILD_OPTIONS to new standardized terse.
3598     - Enable verbose test suite only in non-terse builds.
3599     - Add a Suggests on sensible-utils to libdpkg-perl.
3600     - Switch libdpkg-perl again to depend on perl:any, now that debootstrap
3601       in stable (stretch) supports arch-qualified dependencies.
3602     - Update libdpkg-perl public module list in package description.
3603     - Add Breaks on apt (<< 1.7~b) for --status-fd duplicate removals.
3604   * Test suite:
3605     - Skip Dpkg::OpenPGP test if gpg is not present.
3606     - Check POD in all perl scripts.
3607     - Consider *.PL also to be perl files.
3608     - Infer automatically the unit test data directory.
3609     - Infer automatically the unit test temp directory.
3610     - Add new po author test case (use i18nspector if available).
3611     - Add new test cases to clarify arch-qualified dependency simplification.
3612     - Add several TODO tests cases for dependency simplification.
3613     - Add new cppcheck author test.
3614     - Add support for new test_get_srcdir() test_get_builddir().
3615     - Add new unit tests for namevalue, fsys-hash and pkg-hash libdpkg modules.
3616     - Improve coverage of perl unit tests.
3617     - Delete fixup lines from i18nspector output instead of emptying them.
3618     - Add new codespell author test.
3619     - Add new test that the public libdpkg headers can be compiled with C++.
3621   [ Josh Triplett ]
3622   * Perl: Replace all calls to Cwd::cwd with Cwd::getcwd; the former calls
3623     /bin/pwd, while the latter uses the getcwd() syscall directly.
3625   [ Updated programs translations ]
3626   * Dutch (Frans Spiesschaert). Closes: #881401
3627   * German (Sven Joachim).
3628   * Italian (Milo Casagrande). Closes: #883085
3629   * Polish (Łukasz Dulny).
3630   * Simplified Chinese (Zhou Mo, Boyuan Yang). Closes: #900547, #890806
3631   * Spanish (Javier Fernández-Sanguino).
3632   * Traditional Chinese (Buo-ren Lin). Closes: #905887
3633   * Turkish (Mert Dirik). Closes: #886252
3635   [ Updated scripts translations ]
3636   * German (Helge Kreutzmann).
3638   [ Updated man pages translations ]
3639   * Dutch (Frans Spiesschaert). Closes: #881403
3640   * German (Helge Kreutzmann).
3641   * Simplified Chinese (Zhou Mo).
3643  -- Guillem Jover <guillem@debian.org>  Wed, 26 Sep 2018 15:13:22 +0200
3645 dpkg (1.19.0) unstable; urgency=medium
3647   [ Guillem Jover ]
3648   * Remove an unused variable in dpkg-shlibdeps.
3649     Thanks to Niels Thykier <niels@thykier.net>.
3650   * Parse start-stop-daemon usernames and groupnames starting with digits in
3651     -u and -c correctly. Reported by Bodo Eggert <7eggert@online.de>.
3652   * Cache the result of «dpkg-query --control-path» calls in dpkg-shlibdeps.
3653     Based on a patch by Niels Thykier <niels@thykier.net>. Closes: #846405
3654   * Always use the binary version for the .buildinfo filename in
3655     dpkg-genbuildinfo. Reported by Raphaël Hertzog <hertzog@debian.org>.
3656     Closes: #869236
3657   * Fix integer overflow in deb(5) format version parser.
3658     Closes: #868356
3659   * Re-enable upstream tar signatures when building source format 1.0.
3660   * Make dpkg-deb --build sanity check the config maintainer script file type
3661     and permissions.
3662   * Add support to dpkg-deb for rootless builds, by setting the owner and
3663     group for the control.tar entries to root:root, and making it possible to
3664     do the same for the data.tar entries via the new --root-owner-group option.
3665     Based on a patch by Niels Thykier <niels@thykier.net>. Closes: #291320
3666   * Make dpkg-buildpackage error out if --as-root is passed without
3667     --rules-target.
3668   * Add support for rootless builds in dpkg-buildpackage by honoring the
3669     Rules-Requires-Root (R³) field.
3670   * Add new dpkg-buildflags --query command, which is like --status but in
3671     deb822 format.
3672   * Remove long obsolete dselect floppy method.
3673   * Remove traces of non-US support from dselect methods.
3674   * Add support for a new Build-Kernel-Version field in .buildinfo files,
3675     that can be emitted with a new dpkg-genbuildinfo --always-include-kernel
3676     option. Closes: #873937
3677   * Make dpkg-genchanges honor substvars in .changes Description field.
3678     Closes: #856547
3679   * Add support for source package Description and substvars. This new
3680     field in the debian/control source stanza will be copied into the .dsc
3681     file, and will also be used to initialize the new source:Synopsis and
3682     source:Extended-Description substvars that will be available when
3683     generating the DEBIAN/control and .changes files. Closes: #555743
3684   * Add new “future” feature area in dpkg-buildflags:
3685     - Add new «lfs» feature, to be used instead of the getconf(1) interface
3686       which cannot support cross-building.
3687   * Add new buildtools.mk make fragment to support build tools variable
3688     setup, for both TOOL and TOOL_FOR_BUILD variables. Not included by
3689     default from default.mk.
3690   * Make --uniform-compression the new default dpkg-deb behavior. Add support
3691     for negating the option via --no-uniform-compression.
3692   * Clarify subprocess error message by shuffling words around.
3693   * Print the package name on maintainer script errors. Closes: #877521
3694   * Fix capitalization of Debian in dpkg-deb output messages.
3695   * Add a policykit file for running update-alternatives via pkexec.
3696     Propose by Boyuan Yang <073plan@gmail.com>.
3697   * Perl modules:
3698     - Switch from Dpkg::Util to List::Util, now that the module in the
3699       new required Perl contains the needed functions.
3700     - Add a new "unique_tuple_key" option to Dpkg::Index set_options() to
3701       set better default "get_key_func" options, which will become the default
3702       behavior in 1.20.x. Prompted by Johannes Schauer <josch@debian.org>.
3703     - Mark ppc64 and powerpc as having gcc builtin PIE in Dpkg::Vendor::Debian.
3704     - Make the Dpkg::Substvars warnings output deterministic.
3705       Thanks to Chris Lamb <lamby@debian.org>. Closes: #870221
3706     - Remove unused POSIX module imports.
3707     - Use Errno module instead of the slow to import POSIX.
3708     - Remove unused Dpkg::Path from Dpkg::Vendor::Ubuntu.
3709     - Only load POSIX from Dpkg::Compression::FileHandle if we are going to
3710       use signal definitions, reducing the load time of many other modules.
3711     - Only load Dpkg::BuildOptions and Dpkg::Arch from Dpkg::Vendor-specific
3712       modules if we are going to use them, reducing the load time of many
3713       other modules.
3714     - Only load Term::ANSIColor from Dpkg::ErrorHandling if we are going to
3715       use colors, reducing the load time of many other modules.
3716     - Move color setup into report_pretty in Dpkg::ErrorHandling.
3717     - Move printforhelp initialization into usageerr() in Dpkg::ErrorHandling.
3718     - Avoid many function arguments in Dpkg::Shlibs::SymbolFile parse().
3719     - Avoid many function arguments in Dselect::Ftp do_connect().
3720     - Add new Dpkg::Interface::Storable option to disable compression support,
3721       so that we can load Dpkg::Compression::FileHandle only when enabled.
3722     - Disable decompression support for Dpkg::Vendor origin files.
3723     - Move file_lock() function into a new Dpkg::Lock module, to reduce the
3724       module load chain for several Dpkg modules.
3725     - Add support for new DPKG_NLS environment variable in Dpkg::Gettext,
3726       that when set to 0 will disable NLS (i18n) support in the Dpkg modules,
3727       and reduce the load chain.
3728     - Disable compression when using the default file in
3729       Dpkg::Changelog::Parse.
3730     - Mark all missing CTRL_INDEX_SRC and CTRL_INDEX_PKG fields as allowed
3731       in Dpkg::Control::FieldsCore.
3732     - Complete field order for CTRL_PKG_DEB and CTRL_FILE_STATUS types in
3733       Dpkg::Control::FieldsCore.
3734     - Switch to use lowercase field names for all internal field name
3735       handling in Dpkg::Control::FieldsCore, giving a significant speed up.
3736     - Remove dependency on Dpkg::Checksums from Dpkg::Control::FieldsCore.
3737     - Do not execute code when importing Dpkg::Control::FieldsCore.
3738     - Use substr instead of a regex to match the first line characters in
3739       when parsing control files in Dpkg::Control::HashCore.
3740     - Merge build flag methods into a single _add_build_flags private method
3741       in Dpkg::Vendor::Debian.
3742     - Do not use an intermediate variable in Dpkg::Control::HashCore::Tie
3743       STORE method.
3744     - Expect deb822 stanza delimiters more often than OpenPGP Armor Headers
3745       in Dpkg::Control::HashCore parse method.
3746     - Optimize trailing space matching on Dpkg::Control::HashCore parse
3747       method, by trimming it just once at the beginning of the iteration.
3748     - Optimize trailing space trimming on Dpkg::Control::HashCore parse
3749       method, by requiring that at least one whitespace is present.
3750     - Optimize first character matching in Dpkg::Control::HashCore parse
3751       method, by storing the first character in a variable.
3752     - Optimize field/value parsing in Dpkg::Control::HashCore parse method,
3753       by switching from a capturing regex to split() plus a checking regex.
3754     - Auto-convert binary signatures to OpenPGP ASCII Armor in
3755       Dpkg::Source::Package when building source packages.
3756     - Switch Dpkg::Source::Package::V3 modules to use find_command() instead
3757       of ad-hoc code.
3758     - Call source format prerequisites Dpkg::Source::Package method if
3759       present. Addresses: #877688
3760     - Unify Dpkg::ErrorHandling subprocess errors with the ones from libdpkg.
3761     - Do not emit a perl warning if gcc or dpkg is not found from Dpkg::Arch,
3762       the code already handles the commands not being present.
3763     - Do not unnecessarily require setting the host_arch in Dpkg::Deps.
3764       Closes: #856396
3765     - Do not normalize args past a passthrough stop word in Dpkg::Getopt.
3766       Some commands pass some arguments through to another command, and
3767       those must not be normalized as that might break their invocation.
3768       Reported by Helmut Grohne <helmut@subdivi.de>.
3769   * Documentation:
3770     - Document currently accepted syntax for changelogs in deb-changelog(5).
3771       Closes: #858579
3772     - Mark source:Version substvar in bold in deb-substvars(5).
3773     - Clarify behavior for dpkg-maintscript-helper. Closes: #857852
3774     - Use <command-string> instead of <command> for -c argument value in
3775       dpkg-architecture(1). Reported by Johannes Schauer <josch@debian.org>.
3776     - Itemize the CTRL_* constants in the Dpkg::Index POD.
3777     - Update buildinfo information in dpkg-buildpackage man page to match
3778       the current implementation.
3779     - Add all source files to POTFILES.in files.
3780     - Move deb-version man page to section 7.
3781     - Remove reference to obsolete dpkg-cross(1).
3782     - Sort control field export markers by tool order in deb-src-control(5).
3783     - Document Package-Type and Enhances fields in deb-control(5).
3784     - Write the actual glyphs used to delimit dependency restrictions in
3785       deb-src-control(5).
3786     - Move Package-Type description just after the Package field in
3787       deb-src-control(5).
3788     - Move udeb-specific fields to the end of the list of fields in
3789       deb-src-control(5), and mention these are really udeb-specific.
3790     - Document that dependency fields in binary stanza can have restrictions
3791       in deb-src-control(5).
3792     - Clarify that the Testsuite field is comma-separarted.
3793     - Fix update-alternatives man page section in alternatives/README file
3794       reference. Closes: #872309
3795     - Use correct name for archname validator value in dpkg(1) man page.
3796       Reported by Niels Thykier <niels@thykier.net.
3797     - Add new deb-src-rules(5) man page.
3798     - Document that trailing commas are valid in debian/control dependency
3799       fields, which get stripped when generating output files.
3800       Prompted by Mattia Rizzolo <mattia@debian.org>.
3801     - Clarify that sanitize options should not be used for production builds.
3802     - Remove recommendation to use Pre-Depends for trigger directives from
3803       deb-triggers(5). Closes: #864882
3804     - Add new rootless build experimental draft specification.
3805       Initial proposal by Niels Thykier <niels@thykier.net>, wording fixes
3806       and spec clarifications by Guillem Jover <guillem@debian.org>.
3807     - Fix several function signature documentation.
3808   * Code internals:
3809     - Switch perl code to use -> operator for function variables.
3810     - Switch perl code from split() with /\s+/ to ' '.
3811   * Build system:
3812     - Require Perl 5.20.2, the version in Debian oldstable (jessie).
3813     - Use new gcc-7 -Wrestrict and -Wshift-negative-value warnings if
3814       available.
3815     - Do not override the default DEPENDENCIES for libdpkg, extend it instead.
3816     - Install perl man pages in section 3perl.
3817   * Packaging:
3818     - Remove preinst maintainer scripts for dselect and dpkg-dev, for an
3819       ancient /usr/share/doc symlink to directory switch. Closes: #867327
3820     - Remove now unused libio-string-perl Build-Depends, and versioned
3821       dpkg-dev as we do not use build profiles any more.
3822     - Set Rules-Requires-Root field to no.
3823     - Do not set redundant source compression to xz.
3824     - Bump Standards-Version to 4.1.0 (no changes needed).
3825     - Switch to debhelper compatibility level 10.
3826     - Split alternatives logrotate into its own configuration file to help
3827       downstreams and derivatives.
3828     - Remove ancient code recompressing the alternatives database backups
3829       from xz to gzip in the dpkg daily cron job.
3830     - Remove Replaces and Breaks for ancient transitions.
3831     - Remove workaround for ancient gcc lacking stackprotectorstrong support.
3832     - Remove maintainer script code to handle downgrades to pre-triggers and
3833       pre-multiarch dpkg versions.
3834     - Remove alternative logs when purging dpkg (!?).
3835     - Add support for DPKG_ROOT in dpkg maintainer scripts.
3836     - Add git and bzr to libdpkg-perl Suggests. Closes: #877688
3837   * Test suite:
3838     - Enable perlcritic Documentation::RequirePodSections and
3839       Miscellanea::ProhibitTies.
3840     - Disable perlcritic ValuesAndExpressions::ProhibitEscapedCharacter.
3841     - Add a new all_perl_modules function to Test::Dpkg.
3842     - Add a new module-version unit test to check that module $VERSION
3843       matches the newest entry in the CHANGES section.
3844     - Use Module::Metadata instead of grepping for $VERSION in pod-coverage.
3845     - Avoid many function arguments in Dpkg_Changelog.t check_options().
3846     - Add a new unit test for Dpkg::Control::FieldsCore.
3847     - Switch from IO::String to native open() scalar support.
3848     - Use UTC0 when setting TZ.
3850   [ Updated programs translations ]
3851   * German (Sven Joachim).
3852   * Italian (Pietro Battiston). Closes: #864509
3853   * Portuguese (Miguel Figueiredo). Closes: #868800
3854   * Simplified Chinese (Zhou Mo, Boyuan Yang). Closes: #867133, #877929
3856   [ Updated scripts translations ]
3857   * German (Helge Kreutzmann).
3859   [ Updated man pages translations ]
3860   * Dutch (Frans Spiesschaert). Closes: #862924
3861   * German (Helge Kreutzmann).
3863  -- Guillem Jover <guillem@debian.org>  Tue, 17 Oct 2017 01:51:16 +0200
3865 dpkg (1.18.24) unstable; urgency=medium
3867   [ Guillem Jover ]
3868   * Add missing symbols to the libdpkg map file.
3869   * Fix dpkg-shlibdeps to preserve the Dpkg::Shlibs::find_library() order
3870     when scanning symbols/shlibs files. This was causing generation of bogus
3871     dependencies when multiple packages provide the same SONAME on different
3872     directories. Regression introduced in dpkg 1.18.17. Closes: #860979
3873   * Make dpkg-maintscript-helper print all unowned files from a directory
3874     when printing the error message, to ease debugging those problems after
3875     the fact. Closes: #813454, #860238
3876     Based on a patch by Bastien ROUCARIÈS <roucaries.bastien@gmail.com>.
3877   * Add duplicate prevention code for debian/files to dpkg-genbuildinfo, so
3878     that successive runs with different versions and equivalent build types
3879     do not generate multiple .buildinfo entries to be uploaded, which is
3880     similar to what dpkg-gencontrol is doing for .deb files.
3881   * Fix conffile takeover handling during unpack in dpkg on --root or
3882     on diversions. Closes: #837051, #858004
3883   * Fix digest inference for shared conffiles, causing bogus takeover
3884     unpack errors. Regression introduced in dpkg 1.16.9. Closes: #861217
3885   * Improve tar entry metadata parsing in dpkg:
3886     - Do not parse device numbers for non block nor char tar entry objects.
3887     - Make the existing octal parser more robust, by checking for the
3888       expected format of leading zeros or spaces, followed by any ASCII
3889       octal characters (0-7), followed by zero or more space or NULs.
3890     - Add support for base-256 encoded numeric fields, to support large
3891       values, for UID/GID, device number, size and even signed timestamps.
3892       This is necessary not only to be able to store larger values, but to
3893       cover packages that can already be generated by dpkg-deb, given that
3894       it uses the system GNU tar when building. Closes: #850834
3895   * Architecture support:
3896     - Add support for ARM64 ILP32. Closes: #824742
3897       Thanks to Wookey <wookey@wookware.org>.
3898   * Perl modules:
3899     - Remove obsolete hardening-wrapper support from Dpkg::Vendor::Ubuntu.
3900       Thanks to Adam Conrad <adconrad@0c3.net>.
3901     - Bump $Dpkg::Deps::VERSION to match the one documented in CHANGES.
3902     - Ignore by default debian/files.new and debian/files for all source
3903       formats in Dpkg::Source::Package, because these are generated files
3904       with well known pathnames, part of the public interface, and with
3905       dpkg-genbuildinfo always injecting .buildinfo entries into
3906       debian/files, this meant this could disrupt previous workflows based
3907       on not cleaning the source tree.
3908   * Documentation:
3909     - Many spelling fixes. Thanks to Josh Soref <jsoref@gmail.com>.
3910     - Do not include misspellings in changelogs, as that makes detecting them
3911       more difficult.
3912   * Build system:
3913     - Use libexec variable for auxiliary internal programs, and set it to
3914       /usr/lib on Debian and derivatives.
3915     - Check that the detected tar is a GNU tar.
3916     - Check that the detected patch is a GNU patch, so that we get a directory
3917       traversal resistant patch implementation. This fixes CVE-2017-8283 by
3918       delegating those checks to patch(1), so that we trap blank-indented
3919       diff hunks trying to escape from the source tree.
3920   * Test suite:
3921     - Add a test case for blank-indented patches which were the cause for
3922       CVE-2017-8283.
3923     - Handle files with non-zero sizes in c-tarextract libdpkg test code.
3925   [ Updated programs translations ]
3926   * Catalan (Guillem Jover).
3927   * Czech (Miroslav Kure).
3929   [ Updated dselect translations ]
3930   * Catalan (Guillem Jover).
3932   [ Updated scripts translations ]
3933   * Catalan (Guillem Jover).
3935   [ Updated man pages translations ]
3936   * German (Helge Kreutzmann, David Rabel). Closes: #857449
3937   * Spanish (Javier Fernández-Sanguino).
3939  -- Guillem Jover <guillem@debian.org>  Wed, 17 May 2017 13:16:25 +0200
3941 dpkg (1.18.23) unstable; urgency=medium
3943   [ Guillem Jover ]
3944   * Handle unmatched arch-qualified virtual packages in dpkg-genbuildinfo,
3945     instead of letting perl die. Closes: #849944
3946   * Declare .buildinfo format as stable with version 1.0.
3947   * Do not depend on cxxabi.h to have declared __cxa_pure_virtual, use
3948     the same “__cxxabiv1” namespace as specified in the C++ ABI, instead
3949     of using the “abi” alias intended for use by userland.
3950     Thanks to Jörg Sonnenberger <joerg@netbsd.org>.
3951   * Add a comment on any C code switch case that falls through. Fixes new
3952     gcc-7 warnings.
3953   * Use snprintf() instead of sprintf() in libdpkg when constructing the ar
3954     member header, as we might overflow depending on the input data.
3955   * Portability:
3956     - Do not redeclare sys_siglist in libcompat when the system does so.
3957       Thanks to Thomas Klausner <wiz@NetBSD.org>.
3958     - Rename err variable to ret in start-stop-daemon as the former is a
3959       function on BSDs.
3960     - Use 5-argument kvm_getprocs() call form on OpenBSD in start-stop-daemon.
3961     - Use correct struct kinfo_proc ruid submember name on NetBSD in
3962       start-stop-daemon.
3963     - Define _KMEMUSER for NetBSD to get declarations for various
3964       struct kinfo_proc members in start-stop-daemon.
3965   * Perl modules:
3966     - Do not special case EM_SPARC32PLUS for NetBSD in Dpkg::Shlibs::Objdump,
3967       the code has been fixed in NetBSD as that situation could not happen.
3968     - Fix read() error handling in Dpkg::Shlibs::Objdump::get_format() to
3969       gracefully ignore non-ELF files again. Closes: #854536
3970     - Emit an explicit warning from Dpkg::Shlibs::Objdump::Object::analyze()
3971       for unknown executable formats instead of relying on objdump doing so.
3972     - Do not parse bogus ELF binaries in Dpkg::Shlibs::Objdump::get_format().
3973       Reported by Niels Thykier <niels@thykier.net>.
3974     - Add ‘.mnt-ignore’ to the default ignore lists in Dpkg::Source::Package,
3975       as we were already ignoring the ‘_MTN’ pathnames. Closes: #855450
3976       Thanks to Nicolas Boulenguez <nicolas@debian.org>.
3977     - Mark kfreebsd-amd64, kfreebsd-i386, sparc and sparc64 architectures as
3978       having gcc builtin PIE in Dpkg::Vendor::Debian.
3979     - Switch PIE handling in Dpkg::Vendor::Debian to have no default (!) and
3980       delegate the setting to gcc or an explicit request by a user. This is
3981       needed to cope with the general PIE brokenness situation in Debian, and
3982       the current specific brokenness of a Debian gcc patch mangling the dpkg
3983       build flags. Closes: #848129, #845550
3984   * Documentation:
3985     - Clarify the requirements for deb-conffile(5) pathnames. Closes: #854417
3986       Proposed by Dieter Adriaenssens <dieter.adriaenssens@gmail.com>.
3987     - Document dpkg-source --before-build and --after-build in --help output.
3988     - Document dpkg-buildpackage --ignore-builtin-builddeps in --help output.
3989   * Build system:
3990     - Check <sys/proc.h> by also including <sys/param.h>, on several BSD
3991       systems the header is not self-contained.
3992     - Handle libmd implementations built into system libc, as found on some
3993       BSD systems.
3994     - Do not fail on missing compression libraries or headers on automatic
3995       detection mode. Regression introduced in dpkg 1.18.14.
3996   * Test suite:
3997     - Use the detected perl interpreter instead of a random one from PATH.
3999   [ Updated programs translations ]
4000   * Dutch (Frans Spiesschaert). Closes: #856325
4002   [ Updated scripts translations ]
4003   * German (Helge Kreutzmann).
4005   [ Updated man pages translations ]
4006   * Dutch (Frans Spiesschaer). Closes: #856326
4008  -- Guillem Jover <guillem@debian.org>  Mon, 06 Mar 2017 05:41:11 +0100
4010 dpkg (1.18.22) unstable; urgency=medium
4012   [ Guillem Jover ]
4013   * Turn status file parser errors on bogus field blank lines into warnings,
4014     otherwise the system cannot be easily recovered from. Regression
4015     introduced in dpkg 1.16.1. Reported by Jay Freeman <saurik@saurik.com>.
4016   * Perl modules:
4017     - Mask ARM ABI bits in the ELF processor flags in Dpkg::Shlibs::Objdump.
4018       These are too unreliable to be used for exact matching. Closes: #853793
4020   [ Updated programs translations ]
4021   * Turkish (Mert Dirik). Closes: #853202
4023   [ Updated scripts translations ]
4024   * German (Helge Kreutzmann).
4026   [ Updated man pages translations ]
4027   * German (Helge Kreutzmann).
4029  -- Guillem Jover <guillem@debian.org>  Wed, 01 Feb 2017 05:48:58 +0100
4031 dpkg (1.18.21) unstable; urgency=medium
4033   [ Guillem Jover ]
4034   * Revert "Generate Testsuite-Restrictions fields from the test restrictions
4035     in dpkg-source into .dsc files". This change is contentious and should
4036     have been discussed more widely. Given that this has been live only for
4037     a couple of days, the impact should be minimal, but still something to
4038     take into account once and if this gets reintroduced. Closes: #852820
4039   * Perl modules:
4040     - Map alternative or old ELF machine types to canonical ones. We need
4041       those to match on the encoded ABI, otherwise dpkg-shlibdeps will not
4042       be able to find the objects.
4044   [ Updated man pages translations ]
4045   * German (Helge Kreutzmann).
4047  -- Guillem Jover <guillem@debian.org>  Sun, 29 Jan 2017 20:29:58 +0100
4049 dpkg (1.18.20) unstable; urgency=medium
4051   [ Guillem Jover ]
4052   * Add a new --no-sign option to dpkg-buildpackage, to make it possible to
4053     disable all signing in a future-proof way.
4054   * Make dpkg-buildpackage --unsigned-changes not sign .buildinfo either.
4055     This breaks the expectations of users and tools, because there was no
4056     way previously to request no signing at all. Closes: #852822
4057   * Perl modules:
4058     - Mask the machine bits for SH and MIPS in the ELF processor flags in
4059       Dpkg::Shlibs::Objdump. These do not define the ABI, and make the
4060       objects not match when they should, when looking for shared libraries
4061       from dpkg-shlibdeps.
4062     - Encode the ELF ABI as a big-endian byte stream, so that decoding for
4063       output gives meaningful results.
4064     - Disable the NFS-unsafe warning on Linux, as using flock() on NFS has
4065       been safe for some time now. Addresses: #677865 (on Linux)
4066   * Documentation:
4067     - Document the Built-For-Profile field in deb-changes(5).
4069   [ Updated scripts translations ]
4070   * German (Helge Kreutzmann).
4072   [ Updated man pages translations ]
4073   * German (Helge Kreutzmann).
4075  -- Guillem Jover <guillem@debian.org>  Sat, 28 Jan 2017 06:32:53 +0100
4077 dpkg (1.18.19) unstable; urgency=medium
4079   [ Guillem Jover ]
4080   * Stop emitting Built-For-Profiles from dpkg-gencontrol. The information
4081     is already provided in .buildinfo and .changes files, and including it
4082     in the binary packages makes them unreproducible even when the profile
4083     used would not alter its contents. Closes: #831524
4084   * Do not allow empty epochs and revisions in versions. When there's at
4085     least one colon or one dash, we should expect epoch and revision numbers.
4086   * Always set SOURCE_DATE_EPOCH in dpkg-buildpackage and dpkg-source. Use
4087     the current date if the changelog does not have one. Closes: #849081
4088   * Refactor update-alternatives pathname existence check into a new function.
4089   * Avoid useless repeated lstat()s in update-alternatives.
4090   * Only check for debian/tests/control file once in dpkg-source.
4091   * Generate Testsuite-Restrictions fields from the test restrictions in
4092     dpkg-source into .dsc files. Closes: #847926
4093     Based on a patch by Iain Lane <laney@debian.org>.
4094   * Improve the ELF ABI mismatch detector in dpkg-shlibdeps, by parsing the
4095     ELF header ourselves. While still not perfect (things like linux-i386 and
4096     hurd-i386 will still match), it will filter lots of previously matching
4097     objects that should have been ignored, and will work even when objdump
4098     does not know about the specific object details. Closes: #849913
4099   * Add initial support for DEB_BUILD_OPTIONS to dpkg-genbuildinfo. This will
4100     make it possible to enable or disable specific features that should be
4101     recorded in the .buildinfo file. For now only “all” and “path” are
4102     supported. Closes: #848705
4103   * Add again the architecture from the filename to .changes files for any
4104     artifact with one. This reverts the change introduced in dpkg 1.18.11.
4105   * Fold the filtering and checksumming of files to distribute in a .changes
4106     file in dpkg-genchanges into the initial loop. This way we do not include
4107     architectures for artifacts we are not going to distribute, and do not
4108     unnecessarily recompute the checksums for artifacts like the sources.
4109   * Do not compute the architecture list twice in dpkg-genchanges.
4110   * Include .buildinfo files also for source-only uploads in dpkg-genchanges.
4111     Closes: #846164
4112   * Fix check for expected number of binary artifacts in dpkg-genchanges, to
4113     only take into account the artifacts that we are distributing.
4114   * Fix parsing of Pre-Depends and Depends in dpkg-genbuildinfo, so that
4115     the code parses both and not just the first to appear in the stanza.
4116     Based on a patch by Johannes Schauer <josch@debian.org>.
4117   * Add support for signed .buildinfo files to dpkg-buildpackage. Add new
4118     -ui and --unsigned-buildinfo options. Closes: #843925
4119   * Portability:
4120     - On GNU/Hurd try to use the new process executable name attribute from
4121       libps, to properly match on start-stop-daemon --exec.
4122   * Perl modules:
4123     - Fix Debian architecture wildcard parsing so that matching four-tuple
4124       matchings work. Missed in dpkg 1.18.11.
4125       Reported by Julian Andres Klode <jak@debian.org>.
4126     - Add new import tags for Dpkg::Arch.
4127     - Abort on EOF in patch name prompt in Dpkg::Source::Package::V2,
4128       instead of getting into an infinite loop. Closes: #851441
4129     - Call anonymous subs via -> operator instead of casting with &, and fix
4130       bogus POD documentation to match the code.
4131     - Add new Auto-Built-Package field to Dpkg::Control::Fields.
4132     - Add a new debug() reporting function, and switch code to use it.
4133     - Add new Dpkg::BuildOption parse_features() method refactored from
4134       Dpkg::Vendor::Debian.
4135   * Documentation:
4136     - Cleanup software requirements in README.
4137     - Move control member file references from dpkg(1) to deb(5).
4138     - Fix typos in docs and code comments.
4139     - Document Auto-Built-Package field in deb-control(5).
4140   * Build system:
4141     - Disable disk pre-allocation by default, but let the builder re-enable
4142       it via a new configure option. This has been causing major performance
4143       issues on "modern" filesystems.
4144   * Packaging:
4145     - Add debsig-verify to dpkg Suggests. The code optionally supports this
4146       specific signed .deb verification program.
4147       Prompted by Stuart Prescott <stuart@debian.org>.
4148   * Test suite:
4149     - Generate and check all currently possible architecture wildcards.
4150     - Correctly iterate over all default and passed .dsc template substvars.
4152   [ Updated programs translations ]
4153   * Dutch (Frans Spiesschaert). Closes: #851889
4154   * German (Sven Joachim).
4156   [ Updated scripts translations ]
4157   * German (Helge Kreutzmann).
4159   [ Updated man pages translations ]
4160   * Dutch (Frans Spiesschaer). Closes: #851891
4161   * German (Helge Kreutzmann).
4163  -- Guillem Jover <guillem@debian.org>  Fri, 27 Jan 2017 05:43:36 +0100
4165 dpkg (1.18.18) unstable; urgency=medium
4167   [ Guillem Jover ]
4168   * Documentation:
4169     - Document DPKG_DATADIR in an ENVIRONMENT section in dpkg-architecture(1).
4170     - Add a rationale for the purpose of Testsuite-Triggers in dsc(5).
4171       Prompted by Mattia Rizzolo <mattia@debian.org>.
4172   * Packaging:
4173     - Revert the perl to perl:any dependency change in libdpkg-perl, as that
4174       breaks debootstrap in stable (jessie), testing (stretch) and unstable,
4175       which do not support arch-qualified dependencies. We'll have to live
4176       with the Multi-Arch hinter being unhappy for now.
4178   [ Updated man pages translations ]
4179   * German (Helge Kreutzmann).
4181  -- Guillem Jover <guillem@debian.org>  Tue, 20 Dec 2016 13:53:12 +0100
4183 dpkg (1.18.17) unstable; urgency=medium
4185   [ Guillem Jover ]
4186   * Handle empty versions on validation in dpkg-maintscript-helper as they
4187     are optional. Regression introduced in dpkg 1.18.16. Closes: #848422
4188   * Validate versions too in dpkg-maintscript-helper symlink_to_dir and
4189     dir_to_symlink commands.
4190   * Improve logic to identify packages owning a library in dpkg-shlibdeps,
4191     by handling the same library appearing more than once on the filesystem
4192     Thanks to Raphaël Hertzog <hertzog@debian.org>. Closes: #843073
4193   * Documentation:
4194     - Clarify that dpkg-buildpackage does not run «dpkg-source --before-build»
4195       when using the -T option. Closes: #649531
4196     - Document that dpkg sets DPKG_ADMINDIR on maintainer script environment.
4197   * Packaging:
4198     - Do not let dh_perl insert a dependency for libdpkg-perl, because it
4199       emits perl instead of perl:any. Instead hardcode a perl:any dependency
4200       to comply with the perl policy and make the Multi-Arch hinter happy.
4202   [ Updated scripts translations ]
4203   * German (Helge Kreutzmann).
4205   [ Updated man pages translations ]
4206   * German (Helge Kreutzmann).
4208  -- Guillem Jover <guillem@debian.org>  Mon, 19 Dec 2016 02:43:10 +0100
4210 dpkg (1.18.16) unstable; urgency=medium
4212   [ Guillem Jover ]
4213   * Add support for specifying multiple targets on «dpkg-buildpackage -T»
4214     which will be run successively. Closes: #671074
4215   * Reject empty upstream versions in C and perl code. These are not permitted
4216     by deb-version(5), but the code was letting those through.
4217   * Use lzma_cputhreads() instead of sysconf(_SC_NPROCESSORS_ONLN) as the
4218     former is way more portable.
4219   * Automatically decrease xz encoder threads to try to not exceed available
4220     memory limits. This should alleviate the insane requirements of memory
4221     needed on 32-bit architectures with many cores, which results in more
4222     than the userspace addressable memory, when using settings such as
4223     -z9 and/or -Sextreme in dpkg-deb. Closes: #846564
4224   * Add new dpkg --validate-<thing> commands to validate the syntax of
4225     various <thing>s, where the current list is «pkgname», «trigname»,
4226     «archname» and «version».
4227   * Use the new dpkg --validate-version command in dpkg-maintscript-helper,
4228     instead of abusing the --compare-versions command to perform version
4229     validation. Closes: #844701
4230   * Allow readlink(2) to return a size smaller than stat(2) in dpkg. Some
4231     bogus filesystems do not return the actual symlink size in st_size,
4232     which contradicts POSIX. But allowing the case where the returned size
4233     is smaller than the one used to allocate memory is harmless, although
4234     suspect. Let it through, but still print a warning so that users can
4235     install stuff but are reminded they need to get a fixed filesystem in
4236     place. This has affected at least ecryptfs in the past and now
4237     file-based encryption support in ext4 on Android N.
4238   * Add new dpkg-query virtual field source:Upstream-Version. Closes: #844348
4239   * Perl modules:
4240     - Whitelist DPKG_GENSYMBOLS_CHECK_LEVEL, DPKG_ROOT, DPKG_ADMINDIR and
4241       DPKG_DATADIR environment variables in Dpkg::Build::Info.
4242   * Documentation:
4243     - State the current working directory used when running dpkg-buildpackage
4244       hooks.
4245     - Add a new ENVIRONMENT section to dpkg-gensymbols(1) and document
4246       DPKG_GENSYMBOLS_CHECK_LEVEL there.
4247     - Fix bogus description of --force-confmiss in dpkg(1). Regression
4248       introduced in 1.16.4. Reported by Sven Joachim <svenjoac@gmx.de>.
4249       Closes: #846395
4250     - Update dpkg-parsechangelog parser options. The options specific to
4251       the changelog parser program did not get updated when the parser got
4252       switched to be a perl module. Missed in dpkg 1.18.8. Closes: #848189
4253   * Build system:
4254     - Enable compression libs also in automatic check mode in configure.
4255     - Honor DPKG_DATADIR again in the installed Dpkg modules. This was an
4256       explicit public interface, documented in the man page.
4258   [ Updated programs translations ]
4259   * Dutch (Frans Spiesschaert). Closes: #848378
4260   * Simplified Chinese (Zhou Mo). Closes: #844955
4262   [ Updated scripts translations ]
4263   * German (Helge Kreutzmann).
4264   * Swedish (Martin Bagge). Closes: #847220
4266   [ Updated man pages translations ]
4267   * Dutch (Frans Spiesschaert). Closes: #848379
4268   * German (Helge Kreutzmann).
4270  -- Guillem Jover <guillem@debian.org>  Sat, 17 Dec 2016 00:25:53 +0100
4272 dpkg (1.18.15) unstable; urgency=medium
4274   [ Guillem Jover ]
4275   * Improve PIE flags support:
4276     - Do not enable PIE when linking static programs. glibc-based systems
4277       do not support this combination and produce very bogus output.
4278       Proposed by Szabolcs Nagy <nsz@port70.net>. Closes: #843714
4279   * On source builds add 'source' to the Architecture field in the
4280     .buildinfo file in dpkg-genbuildinfo.
4281   * Add new Build-Date field to .buildinfo files.
4282   * Generate deterministic .buildinfo filenames in dpkg-genbuildinfo,
4283     following the same pattern as used for .changes files.
4284   * Bump .buildinfo Format to version 0.2.
4285   * Change dpkg-buildpackage -j and -J on “auto” mode to fallback to serial
4286     execution when we cannot infer the number of online processors on
4287     unsupported or exotic systems. This should be a safer mode of operation.
4288     Proposed by Simon McVittie <smcv@debian.org>.
4289   * Only preallocate disk size in dpkg for unpacked files bigger than 16 KiB.
4290     Closes: #824636
4291   * Perl modules:
4292     - Validate architecture arguments in Dpkg::Deps deps_parse().
4293       Prompted by Johannes Schauer <josch@debian.org>.
4294   * Documentation:
4295     - Escape dashes in field names in dpkg-buildinfo(1).
4296   * Test suite:
4297     - Mark partially documented POD modules as TAP TODO.
4299   [ Updated man pages translations ]
4300   * German (Helge Kreutzmann).
4302  -- Guillem Jover <guillem@debian.org>  Wed, 16 Nov 2016 03:28:05 +0100
4304 dpkg (1.18.14) unstable; urgency=medium
4306   [ Guillem Jover ]
4307   * Improve PIE flags support:
4308     - Rename the spec name cc1_options to self_spec.
4309       Suggested by James Clarke <jrtc27@jrtc27.com>
4310     - Do not set PIE options if they have been negated, and do not reset
4311       them if they have been requested.
4312     Closes: #843791, #843826
4313   * Fix use after free error in dpkg. It was trying to print messages that
4314     had already been freed as part of the database memory pool, causing in
4315     some cases segfaults when reporting the error summary at the end.
4316     Regression introduced in dpkg 1.18.11. Closes: #843874
4317   * Change default color behavior to auto.
4318   * Perl modules:
4319     - Fix confusing date parse error message in Dpkg::Changelog::Entry::Debian
4320       when the date contains “May”. Closes: #843829
4321       Thanks to Nishanth Aravamudan <nish.aravamudan@canonical.com>.
4322     - New module Dpkg::Build::Info module refactored from dpkg-genbuildinfo.
4323       Requested by Johannes Schauer <josch@debian.org>.
4324   * Documentation:
4325     - Improve the DEB_BUILD_OPTIONS description in dpkg-buildpackage(1).
4326       And mention the parallel option there.
4327     - Explicitly mention in dpkg-buildpackage(1) that setting the number
4328       of parallel jobs to 1, restores the serial behavior.
4329       Prompted by Thorsten Glaser <t.glaser@tarent.de>.
4330   * Packaging:
4331     - List public Dpkg::Control::Tests module in libdpkg-perl description.
4332   * Test suite:
4333     - Do not fail tests on missing fakeroot, just skip them.
4334   * Build system:
4335     - Fix inversion logic in libmd configure check when requested explicitly.
4336     - Do not consider the compressor libraries available in configure if the
4337       headers are not usable.
4338     - Fix DPKG_BUILD_RELEASE_DATE to require DPKG_PROG_PERL, as it uses perl.
4339     - Change DPKG_BUILD_RELEASE_DATE to use perl instead of date(1) to
4340       format the timestamp, as the former is more portable.
4342   [ Updated man pages translations ]
4343   * German (Helge Kreutzmann).
4345  -- Guillem Jover <guillem@debian.org>  Fri, 11 Nov 2016 02:26:08 +0100
4347 dpkg (1.18.13) unstable; urgency=medium
4349   * Improve PIE flags support:
4350     - Retroactively document in the changelog that PIE is enabled by default
4351       on all supported architectures regardless of gcc doing so itself on a
4352       subset of them.
4353     - When emitting PIE flags on architectures where gcc does not inject
4354       those itself, do it via a specs file too, so that maintainers can
4355       use them unconditionally regardless of the object being compiled
4356       or linked.
4357     - When injecting -no-pie for linking via the gcc specs file also
4358       inject -fno-PIE.
4359     - Update the documentation.
4360   * Perl modules:
4361     - Do not try to load non-files in Dpkg::Dist::Files load_dir method.
4362       Fixes test failures on non-Linux architectures. Closes: #843436
4363   * Packaging:
4364     - Add missing Breaks on old libdpkg-perl to dpkg. Closes: #843429
4365       Thanks to Sven Joachim <svenjoac@gmx.de>.
4366     - Ship deb-src-files(5) man page in dpkg-dev.
4367   * Build system:
4368     - Use deterministic dates for generated man pages. Closes: #843469
4369       Thanks to Reiner Herrmann <reiner@reiner-h.de>.
4371  -- Guillem Jover <guillem@debian.org>  Mon, 07 Nov 2016 03:28:42 +0100
4373 dpkg (1.18.12) unstable; urgency=medium
4375   * Build system:
4376     - Set umask to 0022 for functional test suite.
4377   * Documentation:
4378     - Rename FILE FORMATS section to FILES in dpkg-source(1).
4379     - Use "dpkg suite" as the manual item in man pages .TH macro.
4380     - Use %VERSION% in dpkg-statoverride(1) source item in man page .TH macro.
4381     - Document environment variables used by source format modules in
4382       dpkg-source(1).
4384  -- Guillem Jover <guillem@debian.org>  Sun, 06 Nov 2016 05:36:20 +0100
4386 dpkg (1.18.11) unstable; urgency=medium
4388   [ Guillem Jover ]
4389   * Make dpkg-maintscript-helper conffile commands more robust. Check that
4390     conffile pathname arguments are absolute paths and verify version number
4391     to be valid. Thanks to David Kalnischkies <david@kalnischkies.de>.
4392   * Add support to dpkg-scanpackages for scanning a single binary file.
4393     Thanks to Javier Serrano Polo <javier@jasp.net>. Closes: #833964
4394   * Obsolete dpkg-deb bzip2 and lzma compression methods by emitting errors.
4395   * Remove obsolete dpkg-deb --old and --new options.
4396   * Remove obsolete dpkg --print-installation-architecture option.
4397   * Fix dpkg error messages when parsing md5sum files to include the package
4398     name affected.
4399   * Do not emit epochs for unambiguous versions in deb-split package header.
4400     Regression introduced in dpkg 1.18.0.
4401   * Make the deb-split(5) generation in dpkg-split reproducible, by using the
4402     timestamp from SOURCE_DATE_EPOCH.
4403   * Generate reproducible file modes for the .deb control member contents.
4404     Closes: #787980
4405   * Switch from non-freeing malloc to m_malloc on statdb slurping.
4406   * Switch from non-freeing malloc to m_malloc for invoke hooks.
4407   * Always reset the package in-core database when shutting down the package
4408     database journal.
4409   * Do not crash if we pass a NULL cip argument to setaction() in libdpkg.
4410   * Shutdown the package database journal in dpkg --get-selections.
4411   * Fix (deactivated) dpkg --command-fd to initialize and reset the files
4412     database on each action.
4413   * Implement source stanza substvars prefixed with S: in dpkg-gencontrol.
4414     These auto-generated variables map each source stanza field into an
4415     output substvar prefixed with “S:”.
4416   * Make dpkg-source generate reproducible source packages when run
4417     standalone, by honoring SOURCE_DATE_EPOCH.
4418   * Fix several short-lived memory leaks in update-alternatives.
4419     Reported by Helmut Grohne <helmut@subdivi.de>.
4420   * Only set the error context message in libdpkg if it has been formatted
4421     correctly.
4422   * Return error in error_context_errmsg_format() only if the error message
4423     gets truncated. In case we have to use the emergency buffer because the
4424     previous vasprintf() call failed, we should only return an error code if
4425     the vsnprintf() call on the emergency buffer truncates the output.
4426   * Fix free() on uninitialized pointer in error_context_errmsg_format() in
4427     libdpkg. Regression introduced in dpkg 1.18.7. Closes: #842004
4428   * Move C++ support code into its own file.
4429   * Add replacement new and delete array operators to C++ support code.
4430   * Implement local abi::__cxa_pure_virtual. When using g++ if we provide our
4431     version of this function we can avoid the dependency on either libstdc++
4432     or libsup++.
4433   * Include missing <new> for new and delete operator declarations.
4434   * Do not log nor print duplicate dpkg removal action. We print
4435     “Removing <package> (<version>)” lines and log remove action twice
4436     when purging a package from frontends, because they usually first call
4437     --remove and then --purge sequentially. When purging a package which is
4438     already in config-files (i.e. it has been removed before), do not print
4439     nor log the remove action.
4440   * Remove default «.» from @INC before loading perl modules in perl code.
4441     Fixes CVE-2016-1238.
4442   * Give more information on --set-selections warnings. Closes: #842230
4443   * Add new DEB_*_ARCH_ABI and DEB_*_ARCH_LIBC variables to dpkg-architecture
4444     and architecture.mk Makefile fragment.
4445   * Do substvar instantiation just once in dpkg-gencontrol.
4446   * Fix dpkg-gencontrol to not update the files list file (debian/files)
4447     when printing to STDOUT (via -O).
4448   * Do not add architectures to .changes Architecture field for artifacts
4449     that are not a .deb or .udeb in dpkg-genchanges.
4450   * Add support for .buildinfo files:
4451     - Add new dpkg-genbuildinfo command.
4452     - Hook it into the dpkg-buildpackage machinery.
4453     Based on a patch by Jérémy Bobbio <lunar@debian.org>. Closes: #138409
4454   * Enable dpkg-buildpackage -Jauto by default. Closes: #842845
4455   * Fix dpkg to not fail when removing non-existent backup files on read-only
4456     filesystems. Closes: #838877
4457   * Enable PIE on all supported architectures and handle PIE enabled by
4458     default in gcc. On architectures where gcc enables them by default,
4459     stop setting -fPIE and -pie, and set -fno-PIE and -no-pie when disabling
4460     «pie» via gcc specs files, so that we do not emit them on situations
4461     where it would be inappropriate. Closes: #835149
4462     Based on a patch by Bálint Réczey <balint@balintreczey.hu>.
4463   * Architecture support:
4464     - Add support for AIX operating system.
4465     - Add a version pseudo-field to the arch tables.
4466     - Internally represent Debian architectures as quadruplets.
4467   * Portability:
4468     - Cast off_t variables to intmax_t when printing them with "%jd".
4469     - Add missing <string.h> include in libdpkg.
4470     - Cast strlen() return value to ssize_t to match write() return type.
4471     - Use underscore-prefixed system preprocessor symbols instead of namespace
4472       polluting ones (such as “linux”, “OPENBSD” or “hpux”).
4473     - Handle _POSIX_PRIORITY_SCHEDULING being defined to -1 or 0 in
4474       start-stop-daemon. This affects Mac OS X.
4475     - On FreeBSD return STATUS_UNKNOWN instead of false in start-stop-daemon
4476       do_procinit().
4477     - Port start-stop-daemon process handling to Mac OS X.
4478       Based on a patch by Mo McRoberts <mo@nevali.net>.
4479     - Port start-stop-daemon process handling to AIX.
4480     - Fix lookup by name on update-alternatives --config. The code was wrong
4481       and not working at least on Mac OS X, making the test suite to fail.
4482     - Only use gzip --rsyncable in Dpkg::Compression on Debian and hopefully
4483       derivatives, by using perl's $Config{cf_by} variable to key on. The
4484       Debian-specific --rsyncable option should have never been accepted for
4485       use in dpkg to begin with.
4486     - Use our own dpkg_ar_hdr struct instead of relying on the system
4487       ar_hdr struct, as the ar format is not standardized and does vary
4488       across systems, for example on AIX.
4489     - Add <sys/sysmacros.h> on AIX for major() and minor().
4490     - Add missing <errno.h> in libcompat.
4491     - Include libcompat getopt module when we need getopt_long.
4492     - Disable gettext support in libcompat getopt module. We do not carry
4493       translations for this module, and it makes it pull libintl for programs
4494       that might not use it otherwise.
4495   * Perl modules:
4496     - Obsolete Source-Version substvar in Dpkg::Substvars by emitting errors.
4497     - Rework keyring hooks in Dpkg::Vendor. Deprecate the keyrings hook, and
4498       add package-keyrings, archive-keyrings and archive-keyrings-historic
4499       hooks. Prompted by Johannes Schauer <josch@debian.org>.
4500     - Make the Dpkg::Substavars parse() method return the number of substvars
4501       parsed.
4502     - Add new set_field_substvars() method to Dpkg::Substvars.
4503     - Fix reproducible source package support in Dpkg::Source::Archive, by
4504       sorting the tar contents with --sort=name.
4505     - Prefix private Dpkg::Source::Package::* functions with _.
4506     - Defer filehandle closures in Dpkg::IPC::spawn() to avoid double-close.
4507       Closes: #839905, #840293
4508     - Always map the build type to the shortest string form in
4509       Dpkg::Build::Type::get_build_options_from_type().
4510     - Change Dpkg::Compression::FileHandle to inherit directly from IO::File
4511       instead of FileHandle.
4512     - Add new Dpkg::PROGTAR variable to store GNU tar command name.
4513     - Add new Dpkg::PROGMAKE variable to store GNU make command name.
4514     - Add new CTRL_FILE_BUILDINFO type to Dpkg::Control.
4515     - Add new .buildinfo fields to Dpkg::Control::Fields.
4516     - Add new builtin-system-build-paths Dpkg::Vendor hook.
4517     - Cope gracefully with changelogs missing a timestamp trailer.
4518       Based on a patch by Ian Jackson <ijackson@chiark.greenend.org.uk>.
4519       Regression introduced in dpkg 1.18.8. Closes: #843248
4520   * Packaging:
4521     - Add liblocale-gettext-perl to libdpkg-perl Recommends.
4522     - Wrap and document dependency relationships.
4523     - Remove obsolete dependency relationships, since Debian oldstable.
4524     - Remove update-alternatives, dpkg-divert and dpkg-statoverride
4525       compatibility symlinks, again.
4526     - Use perl:Depends via dh_perl instead of a hardcoded perl in Depends.
4527     - Add perl:Depends to dpkg-dev Depends.
4528     - Remove unused dh_strip from binary_indep target.
4529     - Remove ancient upgrade code from maintainer scripts (before 1.15.x).
4530     - Stop compressing the dpkg.deb package with gzip.
4531     - Move dpkg to be the first binary package stanza in debian/control, as
4532       debhelper assigns special meaning by considering it the main package.
4533     - Set MAKEFLAGS to -jN from parallel=N in DEB_BUILD_OPTIONS.
4534   * Documentation:
4535     - Update custom changelog parser API support status in README.api.
4536     - Fix typos in docs and man pages. Thanks to Jakub Wilk <jwilk@debian.org>
4537       Closes: #834584
4538     - Fix formatting in SOURCE_DATE_EPOCH description in dpkg-deb(1).
4539     - Improve dpkg-deb --build arguments documentation in dpkg-deb(1).
4540       Prompted by Johannes Schauer <josch@debian.org>.
4541     - Document the .changes filename that dpkg-buildpackage generates in
4542       dpkg-buildpackage(1). Prompted by Johannes Schauer <josch@debian.org>.
4543     - Add basic maintainer script man pages: deb-postinst(5), deb-postrm(5),
4544       deb-preinst(5) and deb-prerm(5).
4545     - Add new deb-src-files(5) man page.
4546       Prompted by Johannes Schauer <josch@debian.org>.
4547     - Add man page references to other binary control files in dpkg(1).
4548     - Add version when "new" substvars were introduced in deb-substvars(5).
4549     - Switch deb-triggers(5) types into a proper list.
4550     - Itemize --log format entries in dpkg(1).
4551     - Turn the update-alternatives(1) --query example item into a sub-section.
4552     - Turn the Multi-Arch values into a list in deb-control(5).
4553     - Improve user-defined field export marker documentation in
4554       deb-src-control(5); clarify that X can be followed by zero or more
4555       (instead of one or more) letters and turn the items into a proper list.
4556     - Generate the man pages at build time. This makes it possible to process
4557       them and update several variable strings such as system and package
4558       pathnames, the release date and the dpkg suite version. And makes it
4559       possible to use UTF-8 in the source and convert to the more conservative
4560       groff escape sequences on the output.
4561     - Switch from groff escape sequences to UTF-8 in man pages sources.
4562     - Disable hyphenation in man pages globally, because it performs very
4563       poorly on many technical terms.
4564     - Append the German man pages addendum at the end of the translation,
4565       instead of assuming that every page has the SEE ALSO section.
4566     - Explicitly mention that Dpkg::Checksums::add_from_file() is used to
4567       verify digests too. Prompted by Johannes Schauer <josch@debian.org>.
4568     - Document the behavior for consecutive calls to Dpkg perl module parse()
4569       methods. Prompted by Johannes Schauer <josch@debian.org>.
4570     - Document obsolete functions in Dpkg::Conf.
4571   * Test suite:
4572     - Make test main function a TEST_ENTRY macro. This avoids confusing
4573       coverage programs, as the file that actually contains the main function
4574       is the test itself.
4575     - Rename test suite commands to be prefixed with «c-» instead of «t-».
4576     - Add new dpkg-source functional tests.
4577     - Add new dpkg-buildpackage functional tests.
4578     - Add an initial functional test suite for dpkg-deb and dpkg-split.
4579     - Skip the involved tests if IO::String is missing.
4580     - Add new unit test for libdpkg error handling.
4581     - Delete MAKEFLAGS environment variable when testing make invocations.
4582     - Pass -q to grep command to suppress matched output in pod-coverage.t.
4583     - Ignore POD coverage for partially private modules.
4584   * Build system:
4585     - Add support for profiling perl modules.
4586     - Clean up compiler and linker automatic flag usage in configure.
4587     - Fix the __progname check to avoid the optimizer discarding the symbol.
4588     - Fix M4sh/Autoconf coding style. Add a new section to coding-style.txt
4589       describing M4sh/Autoconf.
4590     - Disable C++ exceptions for dselect.
4591     - Fix typo in SELinux library detection code, only affecting static
4592       mode (not used in Debian). Regression introduced in dpkg 1.18.8.
4593     - Change --with-* option logic to default to check.
4594     - Disable -Wtautological-constant-out-of-range-compare (for clang).
4595     - Check the availability of -W<warning> variant instead of -Wno-<warning>.
4596       As at least gcc and clang do not warn on -Wno-* warning flags, only
4597       when some unrelated warning needs to be emitted.
4598     - Bump po4a version to 0.43 (we are using --porefs wrap option).
4599     - Add support for running the test suite in parallel.
4600     - Specify exec argument for TAP::Harness to gracefully handle non-perl
4601       executables with older versions of the module.
4602     - Require libselinux 2.0.99 for baseline API, remove static linking
4603       support, use pkg-config unconditionally, and perform refinement checks
4604       only if available.
4605     - Check for the required minimal perl version.
4606     - Use builddir instead of CURDIR in man Makefile.am.
4607     - Use cp with -R instead of -r (the former is more portable and not
4608       marked as deprecated by POSIX).
4609     - Print an actual newline instead of a literal \n in lcov output.
4610     - Do not honor DPKG_DATADIR on the installed Dpkg module.
4611     - Pass --as-needed to the linker for dselect to avoid libstdc++ dependency.
4612       Which makes of dselect the only front-end not pulling the C++ run-time.
4614   [ Updated programs translations ]
4615   * Dutch (Frans Spiesschaert). Closes: #841117
4616   * German (Sven Joachim).
4618   [ Updated scripts translations ]
4619   * German (Helge Kreutzmann).
4621   [ Updated man pages translations ]
4622   * Dutch (Frans Spiesschaert). Closes: #842187
4623   * German (Helge Kreutzmann).
4625  -- Guillem Jover <guillem@debian.org>  Sun, 06 Nov 2016 03:09:02 +0100
4627 dpkg (1.18.10) unstable; urgency=medium
4629   [ Guillem Jover ]
4630   * Fix a short-lived memory leak in dpkg archive argument parsing.
4631   * When activating file triggers on conffile purge, use the conffile name
4632     instead of the real pathname it might refer to. This fixes a segfault
4633     when using --instdir, or when the conffile has been moved around and
4634     replaced with a symlink to the target.
4635     Regression introduced in dpkg 1.18.8. Closes: #830267
4636   * Perl modules:
4637     - Disable fixdebugpath feature on unsafe characters in the path.
4638     - Generate reproducible source tarballs by using the new GNU tar
4639       --clamp-mtime option in Dpkg::Source::Archive, to make sure no file
4640       in source packages has an mtime later than the changelog entry time.
4641     - Enable fixdebugpath build flag feature by default.
4642       Thanks to Mattia Rizzolo <mattia@debian.org>. Closes: #832179
4643     - Rename various private methods and functions with an underscore prefix
4644       and unified names.
4645     - Refactor perl modules directory list into a new function in Test::Dpkg.
4646   * Test suite:
4647     - Add new POD coverage author test for public perl modules.
4648   * Documentation:
4649     - Document Testsuite-Triggers in dsc(5).
4650     - Fix deb-changes(5) description to talk about .changes instead of .dsc.
4651       Reported by HW42 <hw42@ipsumj.de>.
4652     - Use debian/control as the SYNOPSIS in deb-src-control(5).
4653     - Add new deb-conffiles(5) man page.
4654     - Add references to deb-control(5) and deb-triggers(5) in dpkg(1).
4655     - Fix typos for repeated “the” word.
4656       Prompted by Valentin Samir <valentin.samir@crans.org> in #830989.
4657     - Fix misspelled -fdebug-prefix-map flag in dpkg-buildflags(1).
4658       Reported by Mattia Rizzolo <mattia@debian.org>.
4659     - Remove mention of source format 1.0 supporting building with upstream
4660       tarball signatures from dpkg-source(1), as this was disabled in 1.18.8.
4661     - Document all public methods in Dpkg::Changelog::Entry::Debian.
4662     - Escape dashes in deb-changes(5) and dsc(5) man pages.
4663     - Fix typos in dpkg-shlibdeps(1). Closes: #832434
4664       Thanks to Carsten Leonhardt <leo@debian.org>.
4666   [ Updated programs translations ]
4667   * German (Sven Joachim).
4668   * Turkish (Mert Dirik). Closes: #832070
4670   [ Updated scripts translations ]
4671   * German (Helge Kreutzmann).
4673   [ Updated man pages translations ]
4674   * German (Helge Kreutzmann).
4676  -- Guillem Jover <guillem@debian.org>  Sun, 31 Jul 2016 12:57:02 +0200
4678 dpkg (1.18.9) unstable; urgency=medium
4680   * Require Dpkg::Control::Info in dpkg-buildpackage.
4681     Initially reported by Helmut Grohne <helmut@subdivi.de>.
4682     Regression introduced in dpkg 1.18.8. Closes: #829542
4683   * Documentation:
4684     - Fix user configuration filename in dpkg-buildpackage(1).
4685       Thanks to Sven Joachim <svenjoac@gmx.de>. Closes: #829546
4687  -- Guillem Jover <guillem@debian.org>  Mon, 04 Jul 2016 09:23:13 +0200
4689 dpkg (1.18.8) unstable; urgency=medium
4691   [ Guillem Jover ]
4692   * Do not disable PIE buildflags on */kFreeBSD anymore. Closes: #823877
4693     Thanks to Steven Chamberlain <steven@pyro.eu.org>.
4694   * Add new long options in dpkg-buildpackage for any short option that is
4695     a useful configurable candidate.
4696   * Add configuration file support to dpkg-buildpackage, as buildpackage.conf
4697     under either the dpkg system or user configuration directories.
4698     Closes: #539692, #765494
4699   * Check that debian/tests/control is a regular file before parsing it.
4700   * Generate Testsuite-Triggers field from test dependencies in dpkg-source
4701     into .dsc files. Based on a patch by Martin Pitt <martin.pitt@ubuntu.com>.
4702     Closes: #779559
4703   * Add new dpkg-source --no-overwrite-dir extraction option. Closes: #826334
4704   * Fix number of entries computation returned by sysctl() on */kFreeBSD in
4705     start-stop-daemon.
4706   * Set return buffer length for sysctl(2) calls on */kFreeBSD in
4707     start-stop-daemon.
4708   * Abstract ar archive handling behind a new struct dpkg_ar and functions.
4709   * On dpkg --force-chrootless only set changedir to instdir if defined.
4710     Thanks to Niall Walsh <niallwalsh@celtux.org>. Closes: #824542
4711   * Set primary group to 0 in dpkg when running as root.
4712     Reported by Stuart Prescott <stuart@debian.org>.
4713   * Activate file triggers for conffiles on purge, which has never happened
4714     before. Before dpkg 1.17.0, conffiles were triggered on removal, which
4715     was obviously wrong. Reported by Helmut Grohne <helmut@subdivi.de>.
4716   * Fix strtol() errno check when parsing the COLUMNS envvar in dpkg-query.
4717     Thanks to Sven Joachim <svenjoac@gmx.de>. Closes: #827265
4718   * Use new GNU tar --clamp-mtime option in dpkg-deb to make sure no file in
4719     binary packages has an mtime later than the given time. Closes: #759886
4720   * Use the same timestamp for the ar container as for tarball mtime clamping
4721     in dpkg-deb.
4722   * Set ar timestamp and tar mtime clamping to SOURCE_DATE_EPOCH if defined
4723     in dpkg-deb. Based on a patch by Jérémy Bobbio <lunar@debian.org>.
4724   * Preset build timestamp to latest changelog entry in dpkg-buildpackage,
4725     by setting SOURCE_DATE_EPOCH environment variable if it is not already
4726     defined. Based on a patch by Jérémy Bobbio <lunar@debian.org>.
4727     Closes: #759999
4728   * Do not use the debian/rules build target fallback when building both
4729     architecture independent and dependent packages in dpkg-buildpackage.
4730   * Use architecture «all» as part of the .changes filename when building
4731     architecture independent binaries and no architecture dependent binaries.
4732     Closes: #826161
4733   * Do not emit warnings from dpkg-genchanges for automatic debug symbol
4734     packages that are not found in debian/control.
4735   * Export SOURCE_DATE_EPOCH from pkg-info.mk makefile snippet.
4736     Closes: #824572
4737   * Architecture support:
4738     - Add TILE-Gx support to cputable. Closes: #823167
4739       Thanks to Helmut Grohne <helmut@subdivi.de>.
4740   * Perl modules:
4741     - Use warnings::warnif() instead of carp() for deprecated warnings.
4742     - Add new format_range() method and deprecate dpkg() and rfc822() methods
4743       in Dpkg::Changelog.
4744     - Replace changelog program parsers with perl modules.
4745     - Add a getter for the Time::Piece object in Dpkg::Changelog.
4746     - Add new Timestamp field to Dpkg::Changelog output, which ends up on
4747       dpkg-parsechangelog's output.
4748     - Validate source version in set_version_substvars()'s Dpkg::Substvars
4749       method.
4750     - Revert "Dpkg::Conf: Switch implementation to be hash based", as this
4751       change broke backwards compatibility in multiple ways. The format_argv
4752       option was set by default, the order was not preserved, which was
4753       important for dpkg.cfg files, and duplicate option names stopped being
4754       supported. Add regression tests to avoid similar changes in the future.
4755       Closes: #824938
4756     - Add support for system and user config loading in Dpkg::Conf.
4757     - Add support for autopkgtest control files, with new CTRL_TESTS control
4758       type, new recognized fields to Dpkg::Control::Fields, and new modules
4759       Dpkg::Control::Tests and Dpkg::Control::Tests::Entry. Also update
4760       Dpkg::Index to support these.
4761     - Fix Dpkg::Deps so that architecture qualifiers only imply one another
4762       if they are the same. Closes: #745366, #827628
4763     - Add support for new environment variable DEB_BUILD_PATH to be able to
4764       control the path in the fixdebugpath feature in Dpkg::Vendor::Debian.
4765     - Preserve order when prepending shared library paths in Dpkg::Shlibs.
4766       This fixes the order of paths passed via dpkg-shlibdeps -l option.
4767       Closes: #823805
4768     - Check whether dependency restrictions are implied in Dpkg::Deps::Simple.
4769       Thanks to Ben Hutchings <ben@decadent.org.uk>. Closes: #827633
4770     - Disable upstream tar signature when building format 1.0 source packages
4771       in Dpkg::Source::Package::V1, as the current stable dpkg series do not
4772       support extracting them.
4773     - Preset Last-Update field in patch header template with current time in
4774       Dpkg::Source::Package::V2. Thanks to Daniel Shahaf <danielsh@apache.org>.
4775       Closes: #828146
4776   * Packaging:
4777     - Disable libmd usage in Debian and derivatives for now.
4778   * Build system:
4779     - Stop allowing to set deprecated bzip2 compressor as dpkg-deb default.
4780     - Use libmd automatically if available.
4781     - Uniformize library build options, from --with-zlib to --with-libz,
4782       --with-bz2 to --with-libbz2 and --with-selinux to --with-libselinux.
4783   * Test suite:
4784     - Bump perlcritic ValuesAndExpressions::RequireNumberSeparators minimum
4785       to 99999.
4786     - Add new pod-spell unit test.
4787     - Refactor common unit test checks for needed things into Test::Dpkg.
4788     - Accept perl's Lancaster Consensus AUTHOR_TESTING variable.
4789     - Add new minimum perl version unit test.
4790     - Add new synopsis unit test.
4791     - Add unit tests for dependency simplification with build profiles.
4792   * Documentation:
4793     - Improve dpkg-buildpackage(1) on environment expectations.
4794     - Clarify the format of the db:Status-Abbrev virtual field in
4795       dpkg-query(1). Closes: #824515
4796     - Document the tar entry size limitation for deb(5) format.
4797     - Document interaction between PIE and libraries in dpkg-buildflags(1).
4798       Based on text by Christian Seiler <christian@iwakd.de>.
4799     - Merge ENVIRONMENT sections in dpkg-buildflags(1).
4800     - Document various long options in dpkg-source --help output.
4801     - Move dpkg-source -q option from “Build options” to “General options”
4802       section in --help output.
4803     - Clarify shared library search order in dpkg-shlibdeps(1).
4804     - Remove most remaining AUTHOR sections from man a POD, as they are
4805       strongly discouraged, for being redundant, tending to get out-of-sync,
4806       and their format being inconsistent. In addition most got already
4807       removed in the past for the man pages.
4808     - Mark perlcritic as an optional author test dependency in the README.
4809     - Fix example code in Dpkg::Compression::FileHandle SYNOPSIS.
4811   [ Updated programs translations ]
4812   * German (Sven Joachim).
4813   * Simplified Chinese (Zhou Mo). Closes: #824873
4815   [ Updated scripts translations ]
4816   * German (Helge Kreutzmann).
4818   [ Updated man pages translations ]
4819   * German (Helge Kreutzmann).
4821  -- Guillem Jover <guillem@debian.org>  Sun, 03 Jul 2016 19:01:56 +0200
4823 dpkg (1.18.7) unstable; urgency=medium
4825   [ Guillem Jover ]
4826   * Add new dpkg-source --require-strong-checksums option and change default.
4827     There is no point in erroring out on this condition when signature issues
4828     are only warnings, because we cannot guarantee we have functional keys
4829     for old signatures. Regression introduced in dpkg 1.18.5. Closes: #823428
4830   * Stop using several fixed sized buffers for program reporting, which in
4831     many cases could cause confusing truncation of long messages. Use heap
4832     allocated formatted strings instead:
4833     - In start-stop-daemon to report what to stop.
4834     - In dselect to print main and access methods menu entries.
4835     - In libdpkg command-line option parsing errors.
4836     - In libdpkg warning, notice and info reporting.
4837     - In libdpkg ohshit, ohshitv, ohshite and internerr. But in this case
4838       fallback to a fixed-size emergency buffer in case of allocation or
4839       formatting error, so that we can at least print something, even if
4840       truncated.
4841     Prompted by Manuel A. Fernandez Montecelo <mafm@debian.org>.
4842   * Colorize all fatal-error printing codepaths in libdpkg.
4843   * Architecture support:
4844     - Bump the GNU triplet cpu from i386 to i686 to match toolchain changes.
4845       Thanks to Ben Hutchings <ben@decadent.org.uk>. Closes: #823619
4846     - Clarify column descriptions in architecture table files.
4847   * Perl modules:
4848     - Relax dependency restrictions parsing to allow again sloppy spaces
4849       around versions, architectures and profile restrictions.
4850       Regression introduced in 1.18.5. Closes: #823431
4851     - Add new require_strong_checksums option to Dpkg::Source::Package.
4852     - Add new tests_dep option to Dpkg::Deps deps_parse() to allow the
4853       otherwise invalid ‘@’ character in dependencies. To be used when
4854       parsing the debian/tests/control file.
4855   * Documentation:
4856     - Shorten example symbol names in dpkg-gensymbols to avoid a mandb
4857       warning due to unwrappable lines in translations.
4859   [ Updated scripts translations ]
4860   * German (Helge Kreutzmann).
4862   [ Updated man pages translations ]
4863   * German (Helge Kreutzmann).
4865  -- Guillem Jover <guillem@debian.org>  Mon, 09 May 2016 03:19:52 +0200
4867 dpkg (1.18.6) unstable; urgency=medium
4869   [ Guillem Jover ]
4870   * Fix file queue tail assignment on file queue pop during unpack. This
4871     could mess up the file queue in some circumstances and leave behind
4872     files in the filesystem as «pathname».dpkg-new after configuration
4873     and without traces of the files in the dpkg database. Closes: #823288
4874   * Use m_strdup() instead of strdup() in dpkg recursive installation code.
4875   * Fix off-by-one array allocation in dpkg recursive installation code that
4876     can cause segfaults.
4877   * Rename sysctl() “name” variable to “mib”, to avoid a clash with the
4878     call site function argument with the same name in start-stop-daemon.
4879     This fixes a build failure on */kFreeBSD systems.
4880   * Initialize number of entries on initial process scan in start-stop-daemon
4881     on */kFreeBSD.
4882   * Packaging:
4883     - Bump Standards-Version to 3.9.8 (no changes needed).
4885   [ Updated programs translations ]
4886   * German (Sven Joachim).
4888  -- Guillem Jover <guillem@debian.org>  Tue, 03 May 2016 20:17:05 +0200
4890 dpkg (1.18.5) unstable; urgency=medium
4892   [ Guillem Jover ]
4893   * Print correct integer parse error for short-only command-line options.
4894     This affects «dpkg-deb -z». Closes: #809174
4895   * Do not abort when traversing symlinks to directories in dpkg-scanpackages
4896     and dpkg-scansources. Closes: #809219
4897   * Implement delete operator with size argument in dselect, required by the
4898     C++14 spec when the size-less delete operator is defined.
4899   * Use EACCES instead of EWOULDBLOCK for fcntl(2) F_SETLK in dselect.
4900   * Print the archive filename when dpkg cannot access it.
4901   * Check that all passed archive filenames to dpkg exist before queuing them.
4902     Closes: #809963
4903   * Use ohshit() instead of internerr() for unhandled dpkg-split exit codes.
4904     (i.e. do not abort). Closes: #812679
4905   * Detect non-regular file archive arguments earlier in dpkg.
4906   * Switch URLs in docs, code comments and packaging, from http:// or git://
4907     to https:// if the latter is available (round three). This includes the
4908     dpkg git repository, copyright format URL and examples in man pages among
4909     others.
4910   * Clarify where to find the GPL-2 license in debian/copyright.
4911   * Do not enable stack-protector on nios2 in Debian and derivatives (it is
4912     not supported by gcc yet).
4913   * Check first for build type to short-circuit boolean expressions in
4914     dpkg-genchanges.
4915   * Add source format backend-specific --help options support to dpkg-source.
4916   * Add MIPS R6 architectures to arch tables. Closes: #807340
4917     Thanks to YunQiang Su <wzssyqa@gmail.com>.
4918   * Fix memory leak when unpacking conffiles.
4919   * Use fixed string matching for pathnames in dpkg-maintscript-helper.
4920     Thanks to Carsten Hey <carsten@debian.org>.
4921   * Quote shell variables in dpkg-maintscript-helper.
4922     Thanks to Carsten Hey <carsten@debian.org>.
4923   * Anchor pathnames in sed and grep regexes in dpkg-maintscript-helper.
4924     Thanks to Carsten Hey <carsten@debian.org>.
4925   * Allow broken versions starting with a dash in dpkg-maintscript-helper.
4926     Thanks to Carsten Hey <carsten@debian.org>.
4927   * Add a new treewalk module in libdpkg, with the nice properties of avoiding
4928     duplicate stat(2) calls, not calling find(1), and sorting the output w/o
4929     stalling on the entire input being slurped and sorted.
4930     - Use it to build the .deb data member in dpkg-deb.
4931     - Use it to build the .deb control member in dpkg-deb.
4932     Closes: #719845
4933     - Use it with dpkg --recursive option.
4934   * Unify start-stop-daemon --help output with the rest of the tools.
4935   * Search for debsig-verify in PATH instead of using an absolute path.
4936   * Do not error out when failing to open the SE label db on permissive mode.
4937     Closes: #811037
4938   * Rewrite the trigger deferred file parser from flex to manual. The format
4939     is very simple, and a simple hand-written parser is smaller and avoids a
4940     build dependency.
4941   * Be more strict when parsing the COLUMNS environment variable in dpkg-query.
4942   * Make the Architecture field mandatory on package builds.
4943   * Use new Dpkg::Arch functions to validate and parse architectures when
4944     building source packages. Closes: #784808
4945   * Do safe matching of directories containing conffiles in
4946     dpkg-maintscript-helper, instead of using a variable pathname as a regex
4947     with grep, which is susceptible to metacharacters acting as part of the
4948     regex. Proposed by Carsten Hey <carsten@debian.org>.
4949   * Decouple local keyword declaration from command assignment in
4950     dpkg-maintscript-helper, which masks the command return value when
4951     using «set -e».
4952   * Make dpkg pass <new-version> to maintscript actions that cannot get it
4953     otherwise. These actions are now:
4954     - <new-postrm> failed-upgrade <old-version> <new-version>
4955     - <new-postrm> abort-install <old-version> <new-version>
4956     - <new-postrm> abort-upgrade <old-version> <new-version>
4957     - <new-preinst> install <old-version> <new-version>
4958     - <new-preinst> upgrade <old-version> <new-version>
4959     - <new-prerm> failed-upgrade <old-version> <new-version>
4960     Prompted by Andrey Utkin <andrey.krieger.utkin@gmail.com>.
4961   * Promote a print to a warning for missing control files in dpkg-deb.
4962   * Use info() instead of print in dpkg-buildpackage and dpkg-genchanges.
4963   * Add very basic color support to all dpkg namespaced programs, enabled by
4964     setting the environment variable DPKG_COLORS to “auto”, “always” or
4965     “never”, the latter being the default.
4966   * Add support for a new --build option to define build type by a
4967     comma-separated list of components (“source”, “any”, “all”, “binary” or
4968     “full”) in dpkg-genchanges and dpkg-buildpackage.
4969   * Add new -I option to dpkg-shlibdeps to ignore package build directories.
4970     Closes: #821025
4971   * Add new -O option to dpkg-genchanges.
4972   * Make dpkg export variable DPKG_ROOT in maintainer scripts. Closes: #804624
4973     Thanks to Helmut Grohne <helmut@subdivi.de>.
4974   * Add new --force-script-chrootless option to dpkg.
4975     Thanks to Helmut Grohne <helmut@subdivi.de>.
4976   * Portability:
4977     - Move DPKG_ADMINDIR environment variable name out from update-alternatives
4978       code, to make life easier for non-dpkg-based systems.
4979     - Move alternatives temporary extension out from update-alternatives code,
4980       to make life easier for non-dpkg-based systems.
4981     - Switch start-stop-daemon on */kFreeBSD to use the low-level sysctl(3)
4982       interface instead of libkvm-dev.
4983   * Perl modules:
4984     - Add new CTRL_REPO_RELEASE control block type to Dpkg::Control.
4985     - Add new CTRL_COPYRIGHT_HEADER, CTRL_COPYRIGHT_FILES and
4986       CTRL_COPYRIGHT_LICENSE control block types to Dpkg::Control.
4987     - Make patching a file multiple times fatal for the first quilt patch in
4988       Dpkg::Source. Reported by Apollon Oikonomopoulos <apoikos@debian.org>.
4989       Closes: #810720
4990     - Only warn once when a diff patches a file multiple times in
4991       Dpkg::Source::Patch, and fix the warning message to make it clear that
4992       the diff might be patching the file more than once, not just twice.
4993     - Check existence of search criteria in Dpkg::Index when checking with a
4994       regex or a string match. Closes: #780906
4995       Base on a patch by Daniel Dehennin <daniel.dehennin@baby-gnu.org>.
4996     - Add new functions to validate and parse architecture names in Dpkg::Arch.
4997     - Make the dependency parser more strict in Dpkg::Deps. Closes: #784806
4998     - Add strong digest marking support to Dpkg::Checksums.
4999     - Error out on source packages without any strong digests in
5000       Dpkg::Source::Package, used by dpkg-source --extract, which can still
5001       be disabled with --no-check.
5002     - Switch Dpkg::Conf implementation to be hash based, add two new accessors
5003       and a new option to the filter method to use the old behavior.
5004     - Do not parse entry multiple times in Dpkg::Changelog::Entry::Debian.
5005       Add new parse_header() and parse_trailer() methods, and deprecate
5006       check_header() and check_trailer() ones.
5007     - Use “GnuPG” instead of “gpg” in error messages to refer to the software
5008       in Dpkg::Source::Package.
5009     - Handle undef versions in Dpkg::Changelog from empty versions in
5010       changelog entry header lines.
5011     - Allow detached upstream orig tarball signatures when extracting
5012       version 1.0 non-native source packages.
5013     - Include upstream orig tarball signatures in source packages.
5014       See #759478.
5015     - Add fixdebugpath to reproducible feature in Dpkg::Vendor::Debian.
5016       Thanks to Daniel Kahn Gillmor <dkg@fifthhorseman.net>. Closes: #819194
5017   * Build system:
5018     - Fix building development documentation.
5019     - Remove unused UA_LIBS variable.
5020     - Split libps and libkvm detection into their own macros and variables.
5021     - Make it possible to build without system libmd.
5022     - Add a configuration summary to configure output.
5023     - Make git log invocation immune to local configuration.
5024     - Do not require passing the perl interpreter to run-script.
5025     - Quote dirname argument in run-script, to handle spaces in pathname.
5026       Reported by Carsten Hey <carsten@debian.org>.
5027     - Use a single po4a opt argument instead of the same per language.
5028   * Packaging:
5029     - Enable all hardening flags, starting with gcc-5 there is no performance
5030       loss anymore when enabling PIE on i386.
5031   * Test suite:
5032     - Add a unit test to compile perl code with warnings.
5033     - Add a unit test for the trigger deferred parser.
5034   * Documentation:
5035     - Say value instead of option in deb-control(5).
5036     - Mark debian changelog format in bold in dpkg-parsechangelog(1).
5037     - Add references to man pages describing file formats.
5038     - Document missing Install-Size, Built-For-Profiles and Build-Profiles
5039       fields in man pages.
5040     - Add new dsc(5), deb-changelog(5) and deb-changes(5) man pages.
5041     - Remove Debian specific policy references.
5042     - Remove superfluous SEE ALSO references from dpkg-source(1).
5043     - Fix --remove and --purge summary formatting in dpkg(1).
5044     - Move --audit description just after --verify in dpkg(1).
5045     - Mark Maintainer field as bold in deb-src-control(5).
5046     - Fix reference to --record-avail instead of nonexistent --avail.
5047     - Add missing quotes in man pages.
5048     - Document Source field version in deb-control(5).
5049     - Add new deb822(5) man page.
5050     - Document and improve C/C++ programs exit codes in man pages.
5051     - Clarify dpkg --path-exclude/--path-include pathname filter behavior.
5052       Closes: #811267
5053     - Clarify that packages are only automatically forgotten by dpkg if they
5054       contain no user data, such as package selections. Closes: #813179
5055     - Fix documentation for package flags in dpkg(1).
5056     - Clarify that deb-symbols(5) documents the binary format subset, and
5057       the template symbol files are described in dpkg-gensymbols(1).
5058       Closes: #795163
5059     - Update field requirements of control file formats to match dpkg reality.
5060     - Document the format of the origins filename in deb-origin(5).
5061     - Add list of flags set by bug feature area to dpkg-buildflags(1).
5062     - Switch output encoding of man pages to UTF-8.
5063     - Move SEE ALSO section to the end of Dpkg::Changelog::Debian.
5064     - Clarify that i386 does not suffer performance loss due to PIE anymore
5065       since gcc >= 5 in dpkg-buildflags(1).
5066     - Document in deb822(5) that deb-origin(5) also supports comments.
5067     - Clarify which characters constitute the deb822(5) control files syntax
5068       by using Unicode code points and their printable characters.
5069       Based on a patch by Ben Finney <ben@benfinney.id.au>.
5070     - Remove wrong mention that deb-control(5) support comments.
5071     - Make explicit that deb-control(5) documents the binary control file.
5072     - Add missing value for Standards-Version field in dsc(5).
5073       Reported by Helge Kreutzmann <debian@helgefjell.de>.
5075   [ Updated programs translations ]
5076   * Dutch (Frans Spiesschaert). Closes: #822797
5077   * German (Sven Joachim).
5078   * Japanese (Takuma Yamada). Closes: #819939
5079   * Portuguese (Miguel Figueiredo).
5080   * Simplified Chinese (Zhou Mo). Closes: #809517
5081   * Vietnamese (Trần Ngọc Quân).
5083   [ Updated dselect translations ]
5084   * Japanese (Takuma Yamada). Closes: #819940
5086   [ Updated scripts translations ]
5087   * German (Helge Kreutzmann).
5089   [ New man pages translations ]
5090   * Dutch (Frans Spiesschaert). Closes: #822798
5092   [ Updated man pages translations ]
5093   * German (Helge Kreutzmann).
5095  -- Guillem Jover <guillem@debian.org>  Mon, 02 May 2016 04:14:57 +0200
5097 dpkg (1.18.4) unstable; urgency=medium
5099   [ Guillem Jover ]
5100   * Switch dpkg-scansources and dpkg-scanpackages to use File::Find instead
5101     of find(1), as the former is more portable with more consistent behavior,
5102     and always canonicalizes the pathnames. Closes: #800649
5103   * Initialize Config-Version also for packages previously in triggers-pending
5104     state, otherwise we end up not passing the previously configured version
5105     to «postinst configure», which might consider this a first install instead
5106     of an upgrade. Closes: #801156
5107   * Fix memory leaks in «dpkg --verify» and dpkg infodb format upgrade logic.
5108   * Merge all update-alternatives action handling into a single if-else-if
5109     block, to unify the code an allow a future switch into a shared library.
5110   * Perform any necessary cleanups on normal exit from dpkg-divert --add and
5111     --remove commands.
5112   * Make dpkg-architecture warning on non-matching GNU system type compiler
5113     agnostic.
5114   * Add ‘.gitreview’ to the default dpkg-source ignore lists.
5115   * Add support for DPKG_MAINTSCRIPT_DEBUG environment variable to dpkg.
5116   * Fix dpkg-checkbuilddeps exit code to be 1 instead of a random error value
5117     on unsatisfied dependencies. Regression introduced in dpkg 1.18.3.
5118   * Fix an off-by-one write access in dpkg-deb when parsing the old format
5119     .deb control member size. Thanks to Hanno Böck <hanno@hboeck.de>.
5120     Fixes CVE-2015-0860.
5121   * Fix an off-by-one read access in dpkg-deb when parsing ar member names.
5122     Thanks to Hanno Böck <hanno@hboeck.de>.
5123   * Add experimental multi-threaded xz compression support in libdpkg, which
5124     requires xz >= 5.2.0.
5125   * Fix physical file offset comparison in dpkg. Closes: #808912
5126     Thanks to Yuri Gribov <tetra2005@gmail.com>.
5127   * Fix usage of dpkg-architecture -s after other action options.
5128     Reported by Niels Thykier <niels@thykier.net>.
5129   * Add NIOS2 support to cputable. Thanks to Marek Vasut <marex@denx.de>.
5130   * On Debian and derivatives enable timeless build flag feature by default.
5131     Thanks to Paul Wise <pabs@debian.org>. Closes: #805872
5132   * Perl modules:
5133     - Add support for Build-Essential field. Closes: #806315
5134   * Test suite:
5135     - Improve perl code test coverage.
5136   * Build system:
5137     - Set PERL5LIB globally for the test suite to the local modules directory,
5138       to avoid using the system modules. Regression introduced in dpkg 1.17.8.
5139       Reported by Jérémy Bobbio <lunar@debian.org>. Closes: #801329
5140     - Use absolute buildir pathnames in PATH variable for the test suite.
5141     - Descend into scripts directory when cleaning up code coverage files.
5142     - Add new configure option --disable-devel-docs to select the kind of docs
5143       to generate, default for now is development documentation.
5144     - Try to use AM_GNU_GETTEXT_REQUIRE_VERSION to benefit from the latest
5145       installed gettext version, while guaranteeing a minimal required version.
5146   * Packaging:
5147     - Add missing Build-Depends for restriction formula support.
5148   * Documentation:
5149     - Move description for “target architecture” from the dpkg-architecture(1)
5150       ‘-A’ option to the TERMS section. Closes: #799046
5151     - Clarify that the md5sum check on «dpkg --verify» is performed on the
5152       file contents, and failures denote changed content. Closes: #760248
5153     - Document that dpkg-buildpackage -nc -S implies -d.
5154     - Clarify role of Build-Depends in deb-src-control(5).
5155       Prompted by Johannes Schauer <j.schauer@email.de>.
5156     - Document supported feature areas.
5157     - Clarify in dpkg-query(1) when binary:Package gets arch-qualified.
5158       Closes: #801958
5159     - Add a subsection separating external from internal environment variables
5160       in dpkg(1).
5162   [ Updated programs translations ]
5163   * Dutch (Frans Spiesschaert). Closes: #800513
5164   * Japanese (Kenshi Muto). Closes: #799432
5165   * Turkish (Mert Dirik). Closes: #799875
5167   [ Updated scripts translations ]
5168   * German (Helge Kreutzmann).
5170   [ Updated man pages translations ]
5171   * German (Helge Kreutzmann, Julian R). Closes: #807156
5173  -- Guillem Jover <guillem@debian.org>  Fri, 25 Dec 2015 13:20:26 +0100
5175 dpkg (1.18.3) unstable; urgency=medium
5177   [ Guillem Jover ]
5178   * Fix short-lived memory leaks in start-stop-daemon. As a side effect now
5179     a missing group after ‘:’ on --chuid is a fatal error.
5180   * Print the master and slave links in «update-alternatives --display».
5181   * Print the current best alternative in the head instead of the trail
5182     in «update-alternatives --display», with a two space indentation.
5183   * Reimplement «update-alternatives --all» as a fully built-in command
5184     instead of executing itself with --config per subtask.
5185   * Reimplement «update-alternatives --set-selections» as a fully built-in
5186     command instead of executing itself with --set or --auto per subtask.
5187   * Add kfreebsd-armhf support to ostable and triplettable. Closes: #796283
5188     Thanks to Steven Chamberlain <steven@pyro.eu.org>.
5189   * Fix «dpkg --verify» with --root.
5190   * Fix an off-by-one write access in dpkg-deb when parsing the .deb magic.
5191     Reported by Jacek Wielemborek <d33tah@gmail.com>. Closes: #798324
5192   * Split overlong perl regexes into multiline extended regexes.
5193   * Switch dselect multicd method license from GPL2 to GPL2+, with consent
5194     from all its authors.
5195   * Fix inadvertent license change for lib/dpkg/utils.c from GPL2 to GPL2+.
5196   * Fix segfault when using «dpkg --no-act» with a synthetic --admindir.
5197     Reported by David Kalnischkies <david@kalnischkies.de>.
5198   * Perl modules:
5199     - Only warn on invalid week days instead of aborting in
5200       Dpkg::Changelog::Entry::Debian. Regression introduced in dpkg 1.18.2.
5201       Reported by Jakub Wilk <jwilk@debian.org>.
5202     - Do not warn when removing an empty subdirectory on source package
5203       extraction in Dpkg::Source::Package::V2. Closes: #796671
5204     - Do not abort on parse errors from Time::Piece->strptime() for the
5205       changelog trailer date, just queue them so that the caller can decide
5206       if they should be warnings or actual errors. Closes: #795936
5207     - Validate the changelog trailer date, and catch and warn or error on
5208       bogus month names, such as unknown or unabbreviated ones.
5209   * Test suite:
5210     - Get the reference build flags from dpkg-buildflags.pl, instead of
5211       hardcoding them, which might not match depending on the architecture.
5212       Closes: #794694
5213     - Delete any environment variable starting with DEB_ in mk.t that might
5214       affect the test results.
5215   * Build system:
5216     - Add a new --with-devlibdir configure option for the C libdpkg library.
5217   * Packaging:
5218     - Remove unneeded --sourcedir options from dh_install calls.
5219     - Use the new --with-devlibdir configure option to only switch libdpkg-dev
5220       files to the multi-arch directory. Closes: #794977
5221   * Documentation:
5222     - Fix typos for --predep-package option name. Closes: #794688
5223     - Add missing dashes to package-list in deb-src-control(5).
5224     - Mark each individual required field as such, instead of using segregated
5225       sections.
5227   [ Updated programs translations ]
5228   * Catalan (Jordi Mallach).
5229   * French (Sébastien Poher). Closes: #798371
5230   * German (Sven Joachim).
5231   * Vietnamese (Trần Ngọc Quân).
5233   [ Updated dselect translations ]
5234   * French (Sébastien Poher). Closes: #798370
5236   [ Updated scripts translations ]
5237   * French (Sébastien Poher). Closes: #798369
5238   * German (Helge Kreutzmann).
5240   [ Updated man pages translations ]
5241   * German (Helge Kreutzmann).
5243  -- Guillem Jover <guillem@debian.org>  Mon, 21 Sep 2015 07:11:42 +0200
5245 dpkg (1.18.2) unstable; urgency=low
5247   [ Guillem Jover ]
5248   * Fix plural form translations for single plural languages. Closes: #790025
5249   * Add new dpkg-buildpackage -J option, which is a safe version of -j.
5250   * Fix dpkg-gencontrol to add correct binary filename to debian/files,
5251     even when overriding the Package field value with the -D option.
5252     Reported by Niels Thykier <niels@thykier.net>.
5253   * Move the implicit build-essential:native Build-Depends from
5254     dpkg-checkbuilddeps to a new vendor hook, as it is Debian-specific.
5255   * Add support for ignoring built-in build dependencies and conflicts
5256     with the new «dpkg-buildpackage --ignore-builtin-builddeps» and
5257     «dpkg-checkbuilddeps -I» options. Closes: #480638, #571671
5258   * When sys_siglist is defined in the system, try to use NSIG as we cannot
5259     compute the array size with sizeof(). If NSIG is missing fallback to 32
5260     items. Prompted by Igor Pashev <pashev.igor@gmail.com>.
5261   * Use string_to_security_class() instead of a literal SECCLASS value in
5262     the setexecfilecon() libcompat function, as <selinux/flask.h> is now
5263     deprecated.
5264   * Switch libdpkg xz compressor to use CRC64 for integrity checks, to match
5265     the default on the command-line tool, which should provide slightly better
5266     detection against damaged data, at a negligible speed difference.
5267   * Only use the SHELL environment variable for interactive shells.
5268     Closes: #788819
5269   * Move tar option --no-recursion before -T in dpkg-deb. With tar > 1.28 the
5270     --no-recursion option is now positional, and needs to be passed before
5271     the -T option, otherwise the tarball will end up with duplicated entries.
5272     Thanks to Richard Purdie <richard.purdie@linuxfoundation.org>.
5273   * Add an extra level of escaping for double $(evals) in architecture.mk
5274     and buildflags.mk, so that the variables are computed lazily again.
5275     Regression introduced in dpkg 1.16.2. Closes: #793330
5276   * Add binary packages Essential information to Package-List field in the
5277     .dsc file, as optional essential=yes entries. This allows precomputing
5278     the pseudo-essential set before starting an architecture bootstrap.
5279   * Perl modules:
5280     - Remove non-functional timezone name support from
5281       Dpkg::Changelog::Entry::Debian.
5282     - Use Time::Piece (part of the perl core distribution) instead of
5283       Date::Parse in Dpkg::Changelog::Entry::Debian. This reduces the build
5284       and run-time dependencies, and helps architecture bootstrapping.
5285     - Simplify distribution splitting in Dpkg::Changelog::Entry::Debian.
5286     - Add new function changelog_parse_plugin() in Dpkg::Changelog::Parse.
5287     - Add new function changelog_parse_debian() in Dpkg::Changelog::Parse, and
5288       use it in changelog_parse() instead of the external plugin parser when
5289       the input format is “debian”. This significantly speeds up the parsing.
5290     - Remove trailing space before handling blank line dot-separator in
5291       Dpkg::Control::HashCore. Regression introduced in dpkg 1.18.0.
5292       Reported by Jakub Wilk <jwilk@debian.org>. Closes: #789580
5293     - Allow the Maintainer field in CTRL_FILE_STATUS.
5294     - Import make_path from File::Path in Dpkg::Source::Package::V2.
5295       Regression introduced in dpkg 1.18.0. Closes: #789957
5296     - Make the BinaryFiles subpackage self-contained by explicitly importing
5297       File::Spec in Dpkg::Source::Package::V2.
5298     - Do not exclude pre-existing symlinks when unpacking the debian/ tarball
5299       in Dpkg::Source::Package::V2. Closes: #790073, #791535
5300     - Disable the thread sanitizer when the address sanitizer is enabled
5301       in Dpkg::Vendor::Debian as these are mutually incompatible, and make
5302       sanitize=+all not work at all.
5303     - Allow colons (:) in added filenames in Dpkg::Dist::Files, which can be
5304       present when the upstream version contains colons. Regression introduced
5305       in dpkg 1.18.0. Reported by Jakub Wilk <jwilk@debian.org>.
5306     - Future-proof tar invocations in Dpkg::Source::Archive for options that
5307       might become positional in the future, and by always placing function
5308       options first.
5309     - Make the dependency comparison deep by comparing not only the first
5310       dependency alternative, to get them sorted in a reproducible way.
5311       Based on a patch by Chris Lamb <lamby@debian.org>. Closes: #792491
5312     - Support spaces in symbol names in Dpkg::Shlibs::Objdump. This is
5313       required by Go shared libraries. Closes: #785344
5314       Based on a patch by Michael Hudson-Doyle <michael.hudson@canonical.com>.
5315   * Test suite:
5316     - Set SIGINT, SIGTERM and SIGPIPE to their default actions to get
5317       deterministic behavior.
5318     - Add test cases for the makefile snippets.
5319     - Delete DEB_VENDOR from the environment to get reliable results.
5320   * Packaging:
5321     - Make the libdpkg-dev package Multi-Arch:same.
5322     - Mark libio-string-perl as <!nocheck>.
5323   * Documentation:
5324     - Fix grammar in dpkg-architecture(1).
5325       Thanks to Chris Lamb <lamby@debian.org>. Closes: #787616
5326     - Use the feature area name in the dpkg-buildflags(1) subsection title.
5327     - Document DPKG_HOOK_ACTION also in dpkg(1) ENVIRONMENT section.
5328     - Clarify when some features where added in man pages.
5329     - Document --yet-to-unpack, --predep-package and all --assert-<feature>
5330       commands as supported in both «dpkg --help» and dpkg(1).
5331     - Document abitable in dpkg-architecture(1).
5332     - Clarify that an architecture wildcard is a Debian thing in
5333       dpkg-architecture(1).
5334     - Document multiarch triplet in dpkg-architecture(1) TERMS section.
5335     - Remove “my” keyword from Dpkg perl modules function prototypes.
5336     - Say FUNCTIONS instead of METHODS for Dpkg modules when appropriate.
5337     - Fix POD syntax inside verbatim paragraph in Dpkg::Changelog.
5338     - Document and mark Dpkg::Arch as a public module.
5339     - Fix Dpkg::Changelog::Parse::changelog_parse documentation.
5341   [ Updated programs translations ]
5342   * Dutch (Frans Spiesschaert). Closes: #789097
5343   * Simplified Chinese (Zhou Mo). Closes: #787986
5344   * Turkish (Mert Dirik). Closes: #788211
5345   * Vietnamese (Trần Ngọc Quân).
5347   [ Updated man pages translations ]
5348   * German (Helge Kreutzmann).
5350   [ Updated dselect translations ]
5351   * Dutch (Frans Spiesschaert). Closes: #789096
5353   [ Updated scripts translations ]
5354   * German (Helge Kreutzmann).
5356  -- Guillem Jover <guillem@debian.org>  Mon, 03 Aug 2015 15:40:21 +0200
5358 dpkg (1.18.1) unstable; urgency=low
5360   [ Guillem Jover ]
5361   * Cast c_isbits() c argument to an unsigned char when indexing the array.
5362     This fixes build failures on armel, armhf, ppc64el and s390x.
5363   * Do not allow pathnames with embedded newlines in dpkg-deb and dpkg.
5364     Closes: #720761
5365   * Fix setting the SELinux context when a file has a statoverride.
5366     Closes: #786435
5367   * Set the SELinux file context even when the file mode has no file type.
5368   * Make dpkg-buildpackage -j override any parallel option specified in
5369     DEB_BUILD_OPTIONS. Regression introduced in dpkg 1.14.15.
5370   * Honor Pre-Depends, Conflicts and Breaks for packages in unpacked and
5371     half states. Thanks to Ian Jackson <iwj@ubuntu.com>. Closes: #377860
5372   * Fix build failure on FreeBSD by actually using libmd if available.
5373   * Sort dpkg-scanpackages output by package name and version.
5374     Thanks to Maximilian Schwerin <maximilian.schwerin@tigris.de>.
5375   * Sort dpkg-scansources output by package name and version.
5376     Thanks to Maximilian Schwerin <maximilian.schwerin@tigris.de>.
5377   * Set the correct default compression value in dpkg-deb for control.tar.gz
5378     member. This meant using compression level 1 when using the zlib shared
5379     library to compress the control.tar member, and always failing when using
5380     the gzip command. Regression introduced in dpkg 1.17.6. Closes: #786654
5381   * Use the generated template file instead of the original one when looking
5382     for changes in dpkg-gensymbols. There's too much information not being
5383     preserved in the symbols files to be able to regenerate templates for
5384     them. Closes: #785937, #786840
5385   * Perl modules:
5386     - Add missing strict and warnings pragmas for submodules.
5387     - Use non-destructive substitutions inside map.
5388     - Use the state keyword to simplify the code.
5389     - Do not replace #PACKAGE# in template mode in Dpkg::Shlibs::SymbolFile.
5390   * Documentation:
5391     - Update current default source compressor from gzip to xz.
5392     - Remove spurious ‘=’ from parallel DEB_BUILD_OPTIONS without arguments
5393       in dpkg-buildpackage(1).
5395   [ Updated programs translations ]
5396   * German (Sven Joachim).
5397   * Simplified Chinese (Zhou Mo). Closes: #786377
5399   [ Updated man pages translations ]
5400   * German (Helge Kreutzmann).
5402   [ Updated dselect translations ]
5403   * German (Sven Joachim).
5405  -- Guillem Jover <guillem@debian.org>  Sat, 30 May 2015 03:00:21 +0200
5407 dpkg (1.18.0) unstable; urgency=low
5409   [ Guillem Jover ]
5410   * Only trim trailing “/” and “/.” from «dpkg-query --search» arguments if
5411     they are a pathname, and not a pattern or a substring match.
5412   * Switch C/C++ code to use a new set of C locale character type functions
5413     independent of the current locale.
5414   * Add support for arch-bits and arch-endian dpkg-gensymbols tags.
5415     Closes: #630342
5416   * Switch perl code from legacy File::Path functions to new ones.
5417   * Fix perl uninitialized value usage in dpkg-scansources when the Binary
5418     field is missing.
5419   * Use dpkg-query instead of dpkg for --search in dpkg-shlibdeps so that
5420     the subprocesses get the correct admindir. Closes: #775258
5421   * Rework the Installed-Size field default value computation to make it
5422     reproducible regardless of the build system filesystem, and document
5423     how the value is computed and that it is just an approximation.
5424     Closes: #650077
5425   * Use strftime() instead of «date -R» in dpkg-genchanges, as the latter
5426     is not specified by POSIX and is not widely portable.
5427   * Warn on obsolete '<' and '>' operators in dpkg --compare-versions.
5428   * Trim end of line whitespace from dpkg and dselect config file parsers.
5429     Reported by Christoph Biedl <debian.axhn@manchmal.in-ulm.de>.
5430   * Do not silently eat a standalone ‘-’ in the libdpkg command-line parser.
5431   * Fix short-lived memory leaks in dpkg-deb and libdpkg. Closes: #769515
5432   * Fix «dpkg-deb -b» filename generation when the package does not contain
5433     an Architecture field. Regression introduced in dpkg 1.16.2.
5434   * Fix «dpkg --audit» to report missing and empty architecture fields.
5435     Regression introduced in dpkg 1.16.2.
5436   * Add support to dpkg-deb for reading the archive from standard input,
5437     except for --raw-extract which does not yet support it. Closes: #616614
5438     Based on a patch by Johannes Schauer <j.schauer@email.de>.
5439   * Add ‘.mailmap’ to the default dpkg-source ignore lists.
5440   * Set the SELinux context on «dpkg-statoverride --update». Closes: #690361
5441   * Do not fail on dpkg-query -W and -l when multiple arguments match the
5442     same package. Closes: #588505
5443   * Change dpkg-maintscript-helper to handle symlinks and pathnames ending in
5444     slash. For the former error out, for the latter strip it. Closes: #771752
5445   * Support moving a conffile not being shipped anymore. Closes: #767003
5446     Thanks to Mathias Behrle <mathiasb@m9s.biz>.
5447   * Add a new dpkg-buildflags sanitize feature area:
5448     - Add new “address”, “thread”, “leak” and “undefined” features, all
5449       disabled by default. Closes: #760741
5450   * Do not accept unknown user or group names on «dpkg-statoverride --add».
5451     Regression introduced in dpkg 1.17.11. Closes: #775124
5452   * Normalize dpkg-parsechangelog command-line parsing, so that «-ovalue»,
5453     «-o value», «--option=value» and «--option value» will all be accepted.
5454     Closes: #693951
5455   * Add dpkg --ctrl-tarfile forwarding command for dpkg-deb.
5456   * Disable dependency checks on dpkg-buildpackage -S -nc.
5457   * Make dependency checks fatal for dpkg-buildpackage -S.
5458   * Update amd64 GNU cpu regex in cputable to match amd64 too, in addition
5459     to x86_64. This is required for FreeBSD.
5460   * Use badusage() instead of ohshit() for command-line errors.
5461   * Use the original template symbols file when diffing in dpkg-gensymbols.
5462     We should not create a new template symbols file, because the output
5463     might change (different sorting order for example) relative to the
5464     original. Closes: #773718
5465   * Do not leak kvm descriptors in start-stop-daemon on GNU/kFreeBSD systems.
5466     Based on a patch by Jeff Epler <jepler@unpythonic.net>. Closes: #779467
5467   * Switch start-stop-daemon to use a monotonic clock if available. This
5468     makes the timeout checks resilient to abrupt system clock changes.
5469     Suggested by Jose M Calhariz <jose.calhariz@hds.com>. Closes: #783014
5470   * Fix perl warning in dpkg-genchanges when parsing BY-HAND file entries.
5471     Regression introduced in dpkg 1.17.7. Closes: #781074
5472   * Use the checksums files list order when building the Files field to match
5473     the other Checksum fields in dpkg-genchanges.
5474   * Skip files based on the architecture from the filename in dpkg-genchanges.
5475   * Allow binary packages not found in debian/control in dpkg-genchanges,
5476     which could allow injecting debug .debs for example.
5477   * Annotate any non-deb binary descriptions (not just udebs) with their
5478     package type in dpkg-genchanges.
5479   * Remove outdated local copy of the Debian README.mirrors.txt file from
5480     dselect ftp access method, and print a message pointing to the current
5481     URL instead. Closes: #784966
5482   * Cleanup default dpkg-shlibdeps shared library directory search list:
5483     - Do not add cross-root directories (/<triplet>/ and /usr/<triplet>/).
5484     - Remove ancient multilib /emul/ia32-linux/ paths.
5485     - Reorder directory precedence to:
5486       «dpkg-shlibdeps -l» > ENV{LD_LIBRARY_PATHS} > cross-multiarch >
5487       DEFAULT_LIBRARY_PATH > ld.so.conf > DEFAULT_MULTILIB_PATH
5488   * When upgrading, copy over the cached arch-qualified package name. This
5489     fixes wrong output when cross-grading.
5490   * Consider foreign packages ambiguous in need of an arch-qualifier.
5491   * Perl modules:
5492     - Rename and deprecate Dpkg::Gettext _g function with new g_.
5493     - Assume in Dpkg::Arch that the abitable is always present, and bump
5494       libdpkg-perl Depends on dpkg to 1.16.3, the version introducing the file.
5495     - Remove support for GCC_TARGET environment variable from Dpkg::Shlibs.
5496       This was a temporary workaround for very old gcc toolchains. See #453267.
5497     - Prefer multiarch paths to multilib ones in Dpkg::Shlibs.
5498       Thanks to Helmut Grohne <helmut@subdivi.de>. Closes: #772184
5499     - Enable sub-second timestamps in Dpkg::Source::Patch by using Time::HiRes.
5500     - Use TMPDIR instead of manually setting DIR on tempfile() call in
5501       Dpkg::Source::Package::V2.
5502     - Switch Dpkg::Checksums from using checksum programs to the more portable
5503       Digest modules. Obsolete the 'program' property, and add a 'name' one.
5504     - Add support for $DEFAULT_TEXT_DOMAIN to Dpkg::Gettext, so that the Dpkg
5505       perl modules can always produce localized messages.
5506     - Fix OpenPGP Armor Header Line parsing in Dpkg::Control::Hash. We should
5507       only accept [\r\t ] as trailing whitespace, although RFC4880 does not
5508       clarify what whitespace really maps to, we should really match the GnuPG
5509       implementation anyway, as that's what we use to verify the signatures.
5510       Reported by Jann Horn <jann@thejh.net>. Fixes CVE-2015-0840.
5511     - Pass PATCH_GET environment variable instead of -g0 to the patch command
5512       in Dpkg::Source::Patch. This allows using non-GNU patch programs, like
5513       FreeBSD's patch.
5514     - Accept an %opts argument for the Dpkg::Control::Info constructor, and
5515       accept either passing a filename option as undef, or a scalar undef.
5516       Closes: #782019
5517     - Do not print on undef filehandle in Dpkg::Control::Info output().
5518       Thanks to Roderich Schupp <roderich.schupp@gmail.com>. Closes: #781887
5519     - Always sort the Dpkg::Dist::Files files list on output, instead of
5520       preserving the insertion order, which is not reproducible with parallel
5521       builds. Reported by Jérémy Bobbio <lunar@debian.org>.
5522     - Add new filter() method to Dpkg::Substvars.
5523     - Kill the process when reaching timeout in Dpkg::IPC::wait_child().
5524   * Test suite:
5525     - Check perl code compilation, warnings and strictness.
5526     - Fix dpkg-divert unit test to work on BSD «rm -rf» that cannot traverse
5527       directories with mode 000.
5528     - Fix dpkg-divert unit test to work when there is no /dev/full.
5529     - Skip test cases when there is no c++filt available.
5530     - Add test cases for Dpkg::Conf and Dpkg::Checksums.
5531     - Handle libtool executables in progname unit test.
5532     - Do not use a timeout when testing cat I/O, speeds up test suite by 5s.
5533     - Reduce timeout test from 5 seconds to 1, to speed up test suite by 4s.
5534   * Build system:
5535     - Bump gettext version to 0.19:
5536       + Use --add-location=file in msgmerge and xgettext commands.
5537       + Use --porefs=noline for po4a command.
5538     - Wrap file references in man page PO files with po4a --porefs=wrap.
5539     - Fix support for cross-building dpkg:
5540       + Assume a working C99 snprintf on SUS >= v3.
5541       + Do not try to run the va_copy configure check, just check that the
5542         symbol is available.
5543     - Check that HAVE_DECL_SYS_SIGLIST is 0 instead of undefined, to fix a
5544       build failure on uclibc based systems. Closes: #777044
5545       Based on a patch by Alex Potapenko <opotapenko@gmail.com>.
5546     - Use single suffix rules instead of non-portable %-pattern rules.
5547     - Pass CC to the test suite, so that we can use a non-gcc compiler.
5548     - Call AM_PROG_AR to detect the correct system archiver to use.
5549     - Pass -Wall to automake in AM_INIT_AUTOMAKE, not implied by foreign.
5550   * Packaging:
5551     - Remove old trigger related Breaks and Conflicts from dpkg.
5552     - Only use stackprotectorstrong when building dpkg with gcc >= 4.9.
5553     - Switch to debhelper compatibility level 9.
5554     - Name each public-domain license with a different name.
5555     - Add missing public modules to dpkg-dev package description.
5556     - Get rid of backward compatibility pseudo-tags from bug reports.
5557     - Install doc/README.feature-removal-schedule only on affected packages
5558       and debian/usertags everywhere.
5559   * Documentation:
5560     - Document arch-qualifiers for dependency fields in deb-control(5) and
5561       deb-src-control(5). Reported by Johannes Schauer <j.schauer@email.de>.
5562       Closes: #768842
5563     - Document versioned Provides in deb-control(5).
5564     - Document the version when dpkg-deb --raw-extract got introduced.
5565     - Document dpkg --log format, add missing actions and describe the startup
5566       messages. Closes: #773398
5567     - Document when and how the dpkg-maintscript-helper package name argument
5568       is or should be arch-qualified. Closes: #776072
5569     - Fix and update Arch substvar description in deb-substvars(5).
5570     - Document that current build flag feature areas only work on Debian and
5571       derivatives in dpkg-buildflags(1).
5572     - Use “wildcard characters” instead of “wildchars” in dpkg-query(1).
5573     - Document dpkg-query --search behavior in man page. Closes: #775379
5574     - Document postinst “triggered” argument in debian/dpkg.postinst comment
5575       header.
5576     - Document Dpkg::IPC function signatures.
5577     - Document the obsolete --compare-versions '<' and '>' operators in the
5578       dpkg(1) man page. Thanks to Tomas Pospisek <tpo_hp@sourcepole.ch>.
5579       Closes: #776551
5580     - Move dpkg-divert, dpkg-statoverride and update-alternatives man pages
5581       from section 8 to 1, to match their installation path.
5582     - Capitalize dpkg-parsechangelog(1) option descriptions.
5583     - Mark dpkg-parsechangelog(1) --format values in bold.
5584     - Place short options before long ones in dpkg-mergechangelogs(1) and
5585       dselect(1) man pages.
5586     - Properly terminate a bold marking in dpkg(1).
5587     - Document in man pages the dpkg version when new features were introduced.
5588     - Document that timestamps are reset for files patched with source format
5589       “3.0 (quilt)” too.
5590     - Document in dpkg-buildpackage(1) that using dpkg-source is sometimes
5591       better than -S. Suggested by Johannes Schauer <j.schauer@email.de>.
5592     - Document dselect -? option.
5593     - Document in dpkg-buildflags(1) that DEB_VENDOR influences the execution.
5594     - Document that dpkg performs sanity checks on PATH.
5595     - Mark some words and commands as non-hyphenable in man pages.
5596     - Separate multi-line hanging tag paragraphs with .TQ in man pages.
5597     - Mark field names in bold in man pages.
5598     - Use various groff escape sequences for quoting characters.
5599     - Lowercase warning and note admonitions in start-stop-daemon(8).
5600     - Mark dselect(1) color attributes in bold.
5601     - Say output instead of display for dpkg-deb tar-file option in dpkg(1).
5602     - Say archive instead of filename for dpkg-deb option in dpkg(1).
5603     - Say control-field-name instead of control-file-field in dpkg-deb(1).
5604     - Fix option values and pathname markup in dpkg-deb(1).
5605     - Use .TQ to separate different but related options in dpkg(1).
5606     - Clarify that dpkg-buildpackage -jN forces parallel builds, regardless of
5607       the packaging or upstream build systems supporting them. Closes: #780866
5608     - Remove unneeded update-alternatives references from options descriptions.
5609     - Document that apt might expect Packages.xz too in dpkg-scanpackages(1).
5610     - Say METHODS instead of FUNCTIONS or OBJECT FOO in POD section titles.
5611     - Document dpkg version when perl module versions got bumped.
5612   * Output message fixes and improvements:
5613     - Remove trailing newline from string literal in warning calls.
5614     - Say “execute” instead of “exec” in Dpkg::Changelog::Parse error message.
5615     - Say “package” instead of “it” in dpkg-name warning message.
5616     - Uppercase field names in error messages.
5617     - Expand EOF and eof into “end of file” in error messages.
5618     - Use “<enter>” instead of “return” or “enter” in input prompts.
5619     - Say directory instead of dir in output messages.
5620     - Merge the same dpkg-scanpackages warning messages into a single line.
5621     - Clarify dpkg-genchanges changes description open error.
5622     - Add missing preposition in Dpkg::Source::Patch error message.
5623     - Improve available state sorting order strings in dselect panel.
5624     - Say “changelog-file” instead of “changelogfile” in --help output.
5625     - Say “command” instead of “action” for dselect.
5626     - Improve commands listing in «dselect --help» output, by printing them
5627       before options and listing them one on each line with a description.
5628     - Improve dselect color-spec --help output.
5629     - Move "(default)" annotations in scripts --help output after option
5630       description.
5631     - Consistently use proper quotation marks ("" or '', and not the
5632       unbalanced `' pair) all over the place.
5633     - Use syserr() instead of an ad-hoc error message in dpkg-scansources.
5634     - Say substvars instead of varlist in dpkg-shlibdeps error messages.
5635     - Fix error messages on invalid uid/git/mode command-line syntax errors
5636       in dpkg-statoverride, to not say they are from the statoverride file.
5637     - Fix error message on empty dsc file in dpkg-genchanges.
5638     - Mention “(^Z)” instead of “char” for the MSDOS end of file character.
5640   [ Raphaël Hertzog ]
5641   * Drop myself from Uploaders.
5643   [ Updated programs translations ]
5644   * Simplified Chinese (Zhou Mo). Closes: #782326
5645   * Turkish (Mert Dirik). Closes: #785096
5646   * Vietnamese (Trần Ngọc Quân).
5648   [ Updated scripts translations ]
5649   * German (Helge Kreutzmann).
5651   [ Updated man pages translations ]
5652   * German (Helge Kreutzmann).
5654  -- Guillem Jover <guillem@debian.org>  Mon, 18 May 2015 15:08:31 +0200
5656 dpkg (1.17.23) unstable; urgency=low
5658   [ Guillem Jover ]
5659   * Use a matching group instead of ${^MATCH} in s/// in dselect build script.
5660   * Skip tar extractor tests if tar is not GNU tar >= 1.27.
5661   * Reset the trigger cycle tracking on unsatisfied dependencies during
5662     trigger processing. Closes: #771730
5663   * Fix out-of-bounds buffer read accesses when parsing field and trigger
5664     names or checking package ownership of conffiles and directories.
5665     Reported by Joshua Rogers <megamansec@gmail.com>.
5666   * Add versioned Breaks on packages creating trigger cycles. Namely auctex,
5667     apt-cudf, ccache, cups, distcc, fusionforge-plugin-mediawiki, gap-core,
5668     gxine, hoogle, icecc, libjs-protoaculous, mcollective, pypy, wordpress
5669     and xfonts-traditional.
5671   [ Updated programs translations ]
5672   * Basque (Iñaki Larrañaga Murgoitio). Closes: #771893
5673   * Catalan (Guillem Jover).
5674   * Czech (Miroslav Kure).
5675   * Esperanto (Felipe Castro).
5676   * French (Sébastien Poher).
5677   * Italian (Milo Casagrande).
5678   * Portuguese (Miguel Figueiredo).
5679   * Russian (Yuri Kozlov). Closes: #771691
5680   * Simplified Chinese (Zhou Mo). Closes: #771264
5681   * Spanish (Javier Fernández-Sanguino)
5682   * Swedish (Peter Krefting).
5683   * Thai (Theppitak Karoonboonyanan). Closes: #772965
5685   [ Updated scripts translations ]
5686   * Catalan (Guillem Jover).
5687   * Polish (Łukasz Dulny).
5688   * Russian (Yuri Kozlov). Closes: #772841
5690   [ Updated man pages translations ]
5691   * French (Sébastien Poher).
5692   * Italian (Beatrice Torracca). Closes: #771673
5694   [ Updated dselect translations ]
5695   * Catalan (Guillem Jover).
5696   * Czech (Miroslav Kure).
5697   * Norwegian Bokmål (Hans Fredrik Nordhaug).
5698   * Polish (Łukasz Dulny).
5699   * Portuguese (Miguel Figueiredo).
5700   * Russian (Yuri Kozlov). Closes: #771682
5701   * Spanish (Javier Fernández-Sanguino)
5702   * Vietnamese (Trần Ngọc Quân).
5704  -- Guillem Jover <guillem@debian.org>  Tue, 23 Dec 2014 17:45:44 +0100
5706 dpkg (1.17.22) unstable; urgency=low
5708   [ Guillem Jover ]
5709   * Add version introducing --ctrl-tarfile in dpkg-deb(1) man page.
5710   * Bump minimal version for dir_to_symlink and symlink_to_dir commands
5711     to 1.17.14 in dpkg-maintscript-helper(1) man page. Closes: #769843
5712   * Reintroduce update-alternatives, dpkg-divert and dpkg-statoverride
5713     compatibility symlinks under /usr/sbin/. There are still packages
5714     using those paths, but the relevant lintian check did not list any,
5715     so this got removed prematurely.
5716   * Add Breaks on old man-db, fontconfig and readahead-fedora packages using
5717     awaiting triggers, as they produce trigger cycles. Closes: #768599
5718   * Escape package and architecture names on control file parsing warning,
5719     as those get injected into a variable that is used as a format string,
5720     and they come from the package fields, which are under user control.
5721     Regression introduced in dpkg 1.16.0. Fixes CVE-2014-8625. Closes: #768485
5722     Reported by Joshua Rogers <megamansec@gmail.com>.
5723   * Do not match partial field names in control files. Closes: #769119
5724     Regression introduced in dpkg 1.10.
5725   * Fix build on Mac OS X. Regression introduced in dpkg 1.17.11.
5726     Reported by Dominyk Tiller <dominyktiller@gmail.com>.
5727   * Normalize tar entry uid and gid from the current system only in dpkg
5728     unpack. Regression introduced in dpkg 1.17.14. Closes: #769211
5729   * Restore multiple processing instances check for packages and archives
5730     specified on the command-line. Regression introduced in dpkg 1.17.20.
5731   * Fail on trigger processing when it is required to progress. Trigger
5732     processing is sometimes required and sometimes opportunistic, and we
5733     should only fail on the former but ignore the latter. Closes: #768852
5734   * Do not ignore trigger cycles for direct dependencies, these are just
5735     normal trigger cycles, and as such should not be special cased.
5736   * Register all pending triggers for deferred processing when being called
5737     as «dpkg --configure pkgname…». This is a mostly conformant workaround
5738     for frontends like apt that do not correctly call «dpkg --configure -a»
5739     or «dpkg --triggers-only -a» after their normal runs, and leave packages
5740     in triggers-pending and triggers-awaited states. Closes: #766758
5742   [ Updated programs translations ]
5743   * Catalan (Guillem Jover).
5744   * Danish (Joe Dalton).
5745   * French (Sébastien Poher).
5746   * German (Sven Joachim).
5747   * Japanese (Kenshi Muto). Closes: #771255
5748   * Polish (Łukasz Dulny).
5749   * Simplified Chinese (Zhou Mo). Closes: #766724, #770280
5750   * Swedish (Peter Krefting).
5751   * Turkish (Mert Dirik).
5752   * Vietnamese (Trần Ngọc Quân)
5754   [ Updated scripts translations ]
5755   * French (Sébastien Poher).
5756   * German (Helge Kreutzmann).
5757   * Swedish (Peter Krefting).
5759   [ Updated man pages translations ]
5760   * French (Sébastien Poher). Closes: #767934
5761   * German (Helge Kreutzmann). Closes: #752123
5762   * Simplified Chinese (Zhou Mo). Closes: #767573
5763   * Swedish (Peter Krefting).
5765   [ Updated dselect translations ]
5766   * Danish (Joe Dalton).
5767   * Dutch (Frans Spiesschaert). Closes: #771237
5768   * French (Sébastien Poher). Closes: #767918
5769   * Japanese (Kenshi Muto). Closes: #771256
5770   * Swedish (Peter Krefting).
5772  -- Guillem Jover <guillem@debian.org>  Fri, 28 Nov 2014 02:02:34 +0100
5774 dpkg (1.17.21) unstable; urgency=low
5776   [ Guillem Jover ]
5777   * Get consistent git-style diff support, by adding (>= 2.7) to the dpkg-dev
5778     patch Depends, and a Breaks patch (<< 2.7) to libdpkg-perl.
5779   * Error out on obsolete Build-Profiles field syntax.
5780   * Document -g and -G options in dpkg-genchanges(1). Closes: #766568
5781   * Do not accept values bundled with long options in dpkg-parsechangelog.
5782     The parser was accepting things like «--count10», which is just broken.
5783     Instead allow only «--count=10» in addition to «--count 10».
5784   * Accept «-S value» in addition to «-Svalue» in dpkg-parsechangelog.
5785     Closes: #766559
5786   * Add support for new interest-await and activate-await trigger directives.
5787     And a new --await option to dpkg-trigger. This might allow possibly
5788     switching the default meaning after a transition period no shorter than
5789     two minor versions, so in 1.19.x or 1.20.x. Perhaps.
5790   * Do trigger cycle detection after dependency checks in dependtry <= 1,
5791     and before dependency cycle breaking in dependtry > 1. This makes sure
5792     to always catch trigger cycles, but still gives the opportunity to try
5793     to process triggers for packages that are not yet ready in the first
5794     dependtry, but which might be a bit later on, without wrongly detecting
5795     avoidable and bogus trigger cycles. Closes: #766557
5796   * Update features removal schedule:
5797     - The -u, --udeb dpkg-scanpackages options got removed, state that.
5798     - Remove the entry about obsolete fields, as these need to be preserved
5799       for backward compatibility, they are part of the external interface to
5800       be able to handle ancient binary packages.
5802   [ Updated programs translations ]
5803   * Catalan (Guillem Jover).
5804   * German (Sven Joachim). Closes: #766311
5805   * Simplified Chinese (Zhou Mo).
5807   [ Updated scripts translations ]
5808   * Catalan (Guillem Jover).
5810  -- Guillem Jover <guillem@debian.org>  Sat, 25 Oct 2014 02:21:43 +0200
5812 dpkg (1.17.20) unstable; urgency=low
5814   [ Guillem Jover ]
5815   * Add a requeueing insertion protection for process_queue().
5816   * Make sure to always switch to the next dependtry after we have made no
5817     progress for a while. Regression stemming from non future proof changes
5818     introduced with the initial triggers implementation in dpkg 1.14.17
5819     combined with changes in dpkg 1.17.19. Closes: #766242, #766322
5820   * Make the initial dependtry be 1 instead of 0. This gets rid of an unused
5821     dependtry step, which got accidentally introduced when the perl dpkg was
5822     rewritten in C, ages ago.
5823   * Allow detached upstream signatures for upstream orig.tar files in the
5824     .dsc file. Suggested by Daniel Kahn Gillmor <dkg@fifthhorseman.net>.
5825     Closes: #759478
5826   * Inline alternative status description into translatable string in
5827     update-alternatives. Required-by: #766311
5828   * Reword description for installed status in dpkg(1) man page.
5830   [ Updated programs translations ]
5831   * German (Sven Joachim).
5832   * Simplified Chinese (Zhou Mo).
5833   * Vietnamese (Trần Ngọc Quân).
5835  -- Guillem Jover <guillem@debian.org>  Thu, 23 Oct 2014 00:43:05 +0200
5837 dpkg (1.17.19) unstable; urgency=low
5839   [ Guillem Jover ]
5840   * Bump the Breaks on devscripts to 2.14.10 due to the new dpkg-architecture
5841     command-line parsing strictness introduced in 1.17.17. Closes: #764965
5842   * Create pidfiles even when start-stop-daemon is not asked to background
5843     the process itself. Although a bit of a dubious usage, because any error
5844     before executing the program will not be properly reported to the caller.
5845     Regression introduced in dpkg 1.17.14. Closes: #765110
5846   * Add new --remove-pidfile option to start-stop-daemon.
5847   * Mention --pid and --ppid in start-stop-daemon(8) man page DESCRIPTION.
5848   * Add invoke hooks for dpkg --add-architecture and --remove-architecture.
5849     Prompted by Helmut Grohne <helmut@subdivi.de>.
5850   * Reverse --verify-format logic to actually accept 'rpm' as valid.
5851     Closes: #765907
5852   * Fix trigger dependency checks and cycle detection.
5853     Regression introduced in dpkg 1.17.17.
5854     Closes: #765434, #765668, #765734, #765781, #765789, #765952
5855   * Rework dependency problem debug and notice output on trigger processing.
5857   [ Updated programs translations ]
5858   * Italian (Milo Casagrande): Closes: #765748
5859   * Turkish (Mert Dirik). Closes: #764942
5860   * Simplified Chinese (Zhou Mo). Closes: #765693
5862   [ Updated scripts translations ]
5863   * German (Helge Kreutzmann).
5865   [ Updated man pages translations ]
5866   * German (Helge Kreutzmann).
5868  -- Guillem Jover <guillem@debian.org>  Mon, 20 Oct 2014 15:17:49 +0200
5870 dpkg (1.17.18) unstable; urgency=low
5872   [ Guillem Jover ]
5873   * Handle empty minimum versions when initializing dependency versions,
5874     as the code is mapping the minimum version 0 to '' to avoid outputting
5875     useless versions. Regression introduced in dpkg 1.17.17. Closes: #764929
5877   [ Updated programs translations ]
5878   * Catalan (Guillem Jover).
5880   [ Updated dselect translations ]
5881   * Catalan (Guillem Jover).
5882   * German (Sven Joachim).
5884  -- Guillem Jover <guillem@debian.org>  Sun, 12 Oct 2014 15:47:44 +0200
5886 dpkg (1.17.17) unstable; urgency=low
5888   [ Guillem Jover ]
5889   * Add dpkg-vendor, Dpkg/File.pm and Dpkg/Util.pm to the list of files with
5890     translatable strings, so that they can be translated.
5891   * Fix some typos for versioned and mentioned in comments and changelogs.
5892   * Mark for translation and unify "rm cleanup" string in dpkg.
5893   * Mark for translation and improve dselect method handling error messages.
5894   * Defer trigger processing if the package does not fulfill dependencies.
5895     Closes: #671711
5896   * Do not write to the database when changing selections with --dry-run.
5897     Closes: #764673
5898   * Add missing imports from Dpkg::BuildProfiles in dpkg-genchanges.
5899     Regression introduced in dpkg 1.17.14. Closes: #764216
5900     Reported by Johannes Schauer <j.schauer@email.de>.
5901   * Initialize dependencies with the correct minimum version from a symbols
5902     file with multiple SONAMEs in dpkg-shlibdeps.
5903     Thanks to Jérémy Bobbio <lunar@debian.org>. Closes: #764721
5904   * Perl modules:
5905     - Allow multiple whitespace in Dpkg::BuildProfiles::get_build_profiles()
5906       when parsing the DEB_BUILD_PROFILES environment variable.
5907       Thanks to Johannes Schauer <j.schauer@email.de>.
5908     - New Dpkg::Getopt private module.
5909     - Document public module Dpkg.
5910     - Document public module Dpkg::Gettext.
5911     - Mark Dpkg::BuildProfiles as a public module.
5912     - Document all public module versions in a CHANGES section.
5913     - Remove EXPORTED from POD section titles.
5914     - Document private modules as such in a CHANGES section.
5915   * Set the DEB_TARGET_* dpkg-architecture variables from architecture.mk.
5916     Missed in dpkg 1.17.14.
5917   * Initialize DEB_TARGET_ARCH variable without requiring DEB_HOST_ARCH,
5918     which is not being set at all when querying for DEB_TARGET_ variables.
5919   * Normalize dpkg-architecture command-line parsing, so that «--option=value»
5920     «--option value», «-ovalue» and «-o value» will all be accepted.
5921   * Add long option names for all dpkg-architecture short options.
5922   * Add support for --host-arch, --host-type, --target-arch and --target-type
5923     long options in dpkg-buildpackage. These will get passed through to
5924     dpkg-architecture. This restores the ability to specify the target
5925     architecture when building cross-compilers. Regression introduced in
5926     dpkg 1.17.14. Reported by Helmut Grohne <helmut@subdivi.de>.
5927   * Do not modify the topic variable values in list functions in perl code.
5928   * List Dpkg::Exit and Dpkg::Interface::Storable as public modules in
5929     libdpkg-perl package description.
5931   [ Updated programs translations ]
5932   * German (Sven Joachim).
5933   * Vietnamese (Trần Ngọc Quân).
5935   [ Updated scripts translations ]
5936   * German (Helge Kreutzmann).
5938  -- Guillem Jover <guillem@debian.org>  Sun, 12 Oct 2014 04:59:09 +0200
5940 dpkg (1.17.16) unstable; urgency=low
5942   * Set the copyright holder in the po4a calls for man pages.
5943   * Switch remaining topic to named variable in Dpkg::Source::Patch:analyze(),
5944     otherwise the loop was expecting values in one variable but storing them
5945     in another. Regression introduced in dpkg 1.17.14. Closes: #764206
5946   * Set umask to 0 when creating symlinks in tar test case, to normalize
5947     results. POSIX specifies that symlinks have undefined permissions in
5948     their mode, so their setting is system dependent. Linux does not honor
5949     the umask for symlinks, other systems like Hurd or kFreeBSD do.
5950     Regression introduced in dpkg 1.17.14. Closes: #764171
5952  -- Guillem Jover <guillem@debian.org>  Mon, 06 Oct 2014 13:29:17 +0200
5954 dpkg (1.17.15) unstable; urgency=low
5956   * Do not blacklist pie and stackprotector build flags on mips/mipsel.
5957     Thanks to Aurelien Jarno <aurelien@aurel32.net>. Closes: #763672
5958   * Fix build failures due to mismatched umask in libdpkg tar test case.
5959     Set it to a known value of 0022.
5961  -- Guillem Jover <guillem@debian.org>  Mon, 06 Oct 2014 03:21:58 +0200
5963 dpkg (1.17.14) unstable; urgency=low
5965   [ Guillem Jover ]
5966   * Fix '--' to '-' on translations for single character options.
5967   * Correct the copyright holder in the gettext Makevars files.
5968   * Switch debian/copyright to machine-readable format 1.0, and extensively
5969     update the information within.
5970   * Bump Standards-Version to 3.9.6 (no changes needed).
5971   * Disable unused run-time type information for dselect.
5972   * Fix compiler flag detection with non-GCC compilers in the build system.
5973   * Fix perl warning on dpkg-source when typing Ctrl-D on patch name prompt.
5974   * Add new dpkg-deb --ctrl-tarfile command.
5975   * dpkg-architecture:
5976     - Add support for target system information via the new DEB_TARGET_ family
5977       of variables, and new -A and -T options to override defaulting to the
5978       host system.
5979     - Clarify that -a, -t, -e and -i work with the host system.
5980   * Place 'Commands:' before 'Options:' sections on --help output in
5981     dpkg-architecture and dpkg-vendor.
5982   * Always warn in dpkg-genchanges on missing Section or Priority value,
5983     either empty or '-'.
5984   * Fix order of Files field on generated .changes file in dpkg-genchanges.
5985     Regression introduced in dpkg 1.17.7.
5986   * Stop warning on unknown arbitrary fields from dpkg-deb.
5987   * Remove unnecessary handling of obsolete Package_Revision field in dselect
5988     ftp method.
5989   * Fix the build system to parse the system curses.h header instead of
5990     dselect-curses.h, to not just default on the builtin and override keys
5991     for dselect key bindings support. Regression introduced in dpkg 1.15.1.
5992   * Emit a warning when using the obsolete Dpkg::Deps check_package() function.
5993   * Add support for versioned Provides to Dpkg::Deps::KnownFacts, missed in
5994     dpkg 1.17.11.
5995   * Man pages:
5996     - Add a mention of packaging helpers support in dpkg-maintscript-helper(1).
5997       Closes: #759754
5998     - Move dpkg-buildflags(1) generic feature area details to the section top.
5999     - Fix prerm invocation arguments in update-alternatives(8).
6000       Reported by jre <jre.winesim@gmail.com>. Closes: #761025
6001   * Add new deps_iterate() function to Dpkg::Deps. Closes: #759747
6002     Based on a patch by Dima Kogan <dima@secretsauce.net>.
6003   * Add support for relative symlinks to dpkg-maintscript-helper symlink_to_dir
6004     command. Suggested by Don Armstrong <don@debian.org>.
6005   * Add a new dpkg-buildflags qa feature area:
6006     - Add a new bug feature, disabled by default, which will enable fatal
6007       warnings for code that can pose actual problems. Closes: #682659
6008     - Add a new canary feature, disabled by default, which will allow tracking
6009       build flags propagation. Closes: #628516
6010   * Pass DEB_BUILD_OPTIONS to dpkg-buildflags in buildflags.mk, required to
6011     get noopt to work at all, for example.
6012   * Add a new dpkg-buildflags reproducible feature area:
6013     - Add a new timeless feature, disabled by default, which will add
6014       «-Wdate-time» to CPPFLAGS.
6015     Thanks to Paul Wise <pabs@debian.org>. Closes: #762683
6016   * Fix error message from buffer_copy() read and write functions. This
6017     affects error messages from partial or broken .deb packages for example.
6018     Regression introduced in dpkg 1.17.10. Closes: #759498
6019   * Remove lpia architecture support.
6020   * Improvements and portability fixes to start-stop-daemon:
6021     - Abort if the system or compatibility setsid() fails.
6022     - Do not exit from the first parent before the pidfile has been created,
6023       when using --background and --make-pidfile, to avoid the race condition.
6024       Based on a patch by Nir Soffer <nirs@hyperms.com>. Closes: #686420
6025     - Make sure the pidfile is always created with a 022 umask.
6026       Reported by Will Conley <willconley3@gmail.com>. Closes: #760222
6027     - Do not abort on --stop when only --pid or --ppid options are specified.
6028       Thanks to Christos Trochalakis <yatiohi@ideopolis.gr>. Closes: #763767
6029     - On kFreeBSD systems do not unnecessarily make kvm_openfiles() open
6030       /dev/mem. This causes issues on FreeBSD jails for example.
6031       Reported by Steven Chamberlain <steven@pyro.eu.org>.
6032     - On systems using libkvm, do not fail when kvm_getprocs() cannot find
6033       any process.
6034   * Map i786 to i386 also for the multiarch pathname in dpkg-architecture.
6035   * Handle omitted binary packages due to build profiles in dpkg-genchanges.
6036     Based on a patch by Johannes Schauer <j.schauer@email.de>. Closes: #758191
6037   * Update restriction formula syntax for build profiles:
6038     - Restriction lists are now restriction formulas.
6039     - Restriction formulas are given in disjunctive normal form expression:
6040       <foo> <bar baz> <blub>
6041     - Removal of the implicit prefix/namespace mechanic.
6042     - Construct the profiles entry of the Packages-List field by converting
6043       the "<bar baz> <blub>" syntax into "bar,baz+blub".
6044     - Include a temporary compatibility mapping with the old way to write
6045       the Build-Profiles field in binary packages which can be removed once
6046       all affected source packages have moved to the new syntax.
6047     Thanks to Johannes Schauer <j.schauer@email.de>. Closes: #760158
6048   * Normalize instdir in dpkg by removing trailing «/» and «/.». This gets
6049     rid of several inconsistencies and doubled «/» in syscalls and output
6050     messages.
6051   * Never try to remove the root directory or its backups. There's no point in
6052     it, and makes life more difficult for a read-only root with a read-write
6053     overlay or a symlink farm. Requested by sepero111@gmx.com.
6054   * Remove arbitrary filename limit from dpkg-deb, which was lifted some
6055     time ago when the code switched to a dynamic string via varbuf.
6056   * Do not pipe the files to sign from dpkg-buildpackage to GnuPG. When GnuPG
6057     uses the gpg-agent it is unable to detect the correct tty configuration
6058     if stdin is a pipe instead of the current terminal. Closes: #762391
6059   * Add a new --hash option to enable generating only specific file checksums
6060     in dpkg-scanpackages. Requested by Thorsten Glaser <tg@debian.org>.
6061   * Add architecture restriction options for dpkg-architecture -L. This allows
6062     selecting specific subsets of all valid known architectures, matching by
6063     wildcard (-W), endianness (-E) or bits (-B). The restricting options can
6064     be combined, or omitted altogether. Closes: #762635
6065   * Say arch-wildcard instead of arch-alias in dpkg-architecture --help output.
6066   * Test suite:
6067     - Do not leave temporary files behind on failure or when interrupted.
6068     - Add basic unit tests for the FNV hashing function.
6069     - Add unit tests for the libdpkg tar extractor.
6070   * Add --build and --extract command aliases to dpkg-source.
6071   * Print file or package names instead of pointers in dpkg debug output,
6072     to make it more meaningful and reproducible.
6073   * Fix off-by-one error in libdpkg command argv size calculation.
6074     Based on a patch by Bálint Réczey <balint@balintreczey.hu>. Closes: #760690
6075   * Switch the libdpkg string hashing function from FNV-1 to the recommended
6076     FNV-1a variant.
6077   * Switch the dpkg files database string hashing function from what appears
6078     to be a custom hash function to the libdpkg FNV-1a implementation. As a
6079     side effect this fixes an integer overflow. Addresses: #760741
6080   * Double the dpkg files database hash table size to the closest 2^18 prime.
6081     Times have changed, and it's common to have at least these many files.
6082     This reduces the amount of collisions.
6083   * Document optional dpkg -C argument in --help output. Closes: #763000
6084   * Consider a hardlink tar entry as a regular file for mode values, i.e.
6085     assign to it S_IFREG instead of 0.
6087   [ Raphaël Hertzog ]
6088   * Explain better in deb-triggers(5) why interest/activate-noawait should be
6089     favored.
6091   [ Updated programs translations ]
6092   * Catalan (Guillem Jover): Fix mismatched format string.
6093   * Czech (Miroslav Kure).
6094   * Polish (Łukasz Dulny).
6095   * Turkish (Mert Dirik). Closes: #763825
6097   [ Updated man pages translations ]
6098   * German (Helge Kreutzmann).
6099   * Italian (Guillem Jover): Swap order of some dpkg-deb arguments.
6100     Thanks to xor <xor@paranoici.org>. Closes: #759149
6102  -- Guillem Jover <guillem@debian.org>  Mon, 06 Oct 2014 00:11:08 +0200
6104 dpkg (1.17.13) unstable; urgency=low
6106   [ Guillem Jover ]
6107   * Remove unbalanced trailing single-quote in dpkg-deb error message.
6108     Reported by Trần Ngọc Quân <vnwildman@gmail.com>.
6109   * Remove architecture blacklist from hardening build flag option
6110     stackprotectorstrong. Thanks to Romain Francoise <rfrancoise@debian.org>.
6111   * Documentation:
6112     - Merge binary:Package descriptions in dpkg-query(1).
6113     - Split --remove and --purge options in dpkg(1). This also clarifies on
6114       which package states each option can operate. Closes: #576338
6115     - Remove duplicate “of the” in dpkg-maintscript-helper(1).
6116   * Fix dpkg-maintscript-helper dir_to_symlink to handle relative symlink
6117     targets. Thanks to Helmut Grohne <helmut@subdivi.de>.
6118   * Fix dpkg-maintscript-helper symlink_to_dir to assure absolute pathnames
6119     arguments.
6120   * Fix dpkg-source not detecting modified files during --commit or -b.
6121     Regression introduced in dpkg 1.17.11. Closes: #758426
6122     Reported by Neil Williams <codehelp@debian.org>.
6123   * Only test the strerror() compatible code if sys_errlist and sys_nerr
6124     are present. This fixes a build failure on GNU/Hurd. Closes: #758199
6125   * Switch start-stop-daemon on GNU/kFreeBSD systems to use libkvm, instead
6126     of relying on linprocfs which is not the native procfs on kFreeBSD, and it
6127     is usually not mounted as FreeBSD programs do not expect it to be present.
6129   [ Updated programs translations ]
6130   * Czech (Miroslav Kure).
6131   * German (Sven Joachim).
6132   * Vietnamese (Trần Ngọc Quân).
6134   [ Updated man pages translations ]
6135   * French (Jean-Pierre Giraud, Vincent Thomas, Raphaël Hertzog).
6137   [ Updated scripts translations ]
6138   * French (Raphaël Hertzog).
6139   * German (Helge Kreutzmann).
6141  -- Guillem Jover <guillem@debian.org>  Tue, 19 Aug 2014 20:14:45 +0200
6143 dpkg (1.17.12) unstable; urgency=low
6145   [ Guillem Jover ]
6146   * Only build the compatibility selinux code if libselinux is available or
6147     the user requested it. Also fixes build failures on non-Linux systems.
6148     Closes: #757637
6149   * Documentation:
6150     - Add a short description to each virtual field in dpkg-query(1), and
6151       mention the version they got introduced in dpkg.
6152     - Fix formatting of last paragraphs inside dselect(1) --color description.
6153   * Rework dselect columns code, to make it easier to maintain and read.
6154   * Add new architecture columns to dselect package list view. The new
6155     columns, shown by default, can be turned off with the new ‘A’ key,
6156     or bound to another key via the new “archdisplay” keybinding.
6157   * Fix a descriptor leak on dselect subprocesses when --debug is used.
6158   * Use «tar --format=gnu» when creating source archives. This makes sure we
6159     get a deterministic output format, regardless of what tar defaults to.
6160     Thanks to Jan Blunck <jblunck@infradead.org>..
6161   * Use perl's length instead of defined when checking some environment
6162     variables, if we require them to have content.
6163   * Allow specifying the same build type option multiple times in
6164     dpkg-buildpackage and dpkg-genchanges. There seems to be scripts with
6165     such invocations in the wild. Closes: #757795
6167   [ Updated programs translations ]
6168   * German (Sven Joachim).
6170   [ Updated scripts translations ]
6171   * German (Helge Kreutzmann).
6173   [ Updated man pages translations ]
6174   * German (Helge Kreutzmann).
6176  -- Guillem Jover <guillem@debian.org>  Fri, 15 Aug 2014 03:30:39 +0200
6178 dpkg (1.17.11) unstable; urgency=low
6180   [ Guillem Jover ]
6181   * Switch URLs in docs and code comments from http:// to https:// if the
6182     latter is available (round two). This includes the quilt patch header
6183     templates, and examples in man pages.
6184   * Update some dpkg git URLs to the new and newer (cgit switch) scheme.
6185   * Changes to libcompat:
6186     - Make the library testable.
6187     - Do not run qsort() over the scandir() list if it is NULL.
6188     - Add a setexecfilecon() compatibility function out from dpkg code.
6189   * Use SELinux setexecfilecon() if available in dpkg instead of ad-hoc code.
6190   * Replace obsolete <sys/fcntl.h> with <fcntl.h>, which fixes compilation on
6191     Android. Thanks to Fredrik Fornwall <fredrik@fornwall.net>. Closes: #752036
6192   * Fix file triggers/Unincorp descriptor leak on subprocesses. Regression
6193     introduced with the initial triggers implementation in dpkg 1.14.17.
6194     Closes: #751021
6195   * Do not disable the stack-protector build flags on arm64 in Debian and
6196     derivatives, the toolchain supports them now.
6197     Thanks to Adam Conrad <adconrad@debian.org>. Closes: #751032
6198   * When parsing the statoverride database from dpkg-statoverride do not
6199     consider it an error and refuse to operate at all if the user or group
6200     names are not known to the system, just preserve them. Closes: #563307
6201   * Do not write to the available file when unpacking binary packages. This
6202     information is not useful as dpkg has never recorded the archive path,
6203     so it has never been truly available for re-installation anyway.
6204     Closes: #241768
6205   * Add versioned Provides support:
6206     - Add a new dpkg --assert-versioned-provides command.
6207     - Packages can provide a specific version, “virtual (= 1.0)” which will
6208       be honored, previously it would just be accepted when parsing.
6209     - Non-versioned virtual packages will not satisfy versioned dependencies.
6210     - Versioned virtual packages will satisfy non-versioned dependencies.
6211     Based on skeletal code by Ben Collins <bcollins@debian.org>.
6212     Closes: #7330, #24934, #112131, #134582, #180316
6213   * On removal check Depends and Pre-Depends for packages in unpacked and
6214     half-configured states too.
6215   * Add support for new hardening build flag stackprotectorstrong in Debian
6216     and derivatives, enabled by default. It will fallback to stackprotector
6217     when the former is not functional or disabled by the user.
6218     Thanks to Romain Francoise <rfrancoise@debian.org>.
6219   * Change «dpkg-deb --field» code to use the libdpkg deb822 parser instead
6220     of an ad-hoc one. This makes sure any field fixup and sanity check is
6221     performed on the input, and gets reflected on the output.
6222   * Add new dpkg-query virtual fields db:Status-Want, db:Status-Status and
6223     db:Status-Eflag to allow fine-grained access to the Status values.
6224   * Automatically add the Testsuite field in dpkg-source to the .dsc file.
6225   * Spell nocheck option in dpkg-scanpackages wait_child() call correctly.
6226     Spotted by James McCoy <jamessan@debian.org> (in devscripts).
6227   * Move the explanation of functional checks from --verify-format to the
6228     --verify command in the dpkg(1) man page. Closes: #747264
6229   * Improve dpkg-buildpackage(1) man page:
6230     - Mark DEB_CHECK_COMMAND environment variable in bold.
6231     - Add final item for done hook in the actions sequence.
6232     - Mention that -nc does not apply either when -F is specified.
6233     - Mention that the --FOO-option options can be used multiple times.
6234     - Fix a typo in the BUGS section.
6235   * Mark the “and” between the filenames as regular format in dpkg-source(1).
6236   * Add --format and --ignore-bad-version to dpkg-source --help output.
6237   * Clarify error message in Dpkg::Source::Quilt when patches fail to apply,
6238     to note that the patch might be malformed (besides not accepting patches
6239     with fuzz).
6240   * Try to preallocate the disk size for extracted files on unpack. This
6241     might help in avoiding filesystem fragmentation, and possibly improve
6242     performance on some filesystems.
6243   * Print the correct removed binary filename when building a source package
6244     with dpkg-source --include-removal. Closes: #755166
6245   * Add powerpcel support to cputable. Thanks to Jae Junh <jaejunh@embian.com>.
6246   * Bump the i386 architecture GNU triplet to i586-linux-gnu to match the
6247     change in gcc. Somewhat reluctantly, as i386 wants to be its unique
6248     snowflake and use a GNU triplet not matching its baseline. This will
6249     cause problems when cross-building and using unmatched combinations of
6250     dpkg-dev and gcc. Closes: #751363
6251   * Update i386 architecture GNU cpu regex in cputable to match i786 too.
6252   * Remove unused pkglibdir variable from libdpkg.pc.in.
6253   * Perl modules:
6254     - Add new set_as_auto() method to Dpkg::Substvars.
6255     - Add support for sig and delete_sig spawn() options in Dpkg::IPC.
6256     - Add %opts to ensure_open() member in Dpkg::Compression::FileHandle.
6257     - Change find_command() to handle an empty or undef argument in Dpkg:Path.
6258   * Mark Format and Installed-Size as automatic substvars in dpkg-genchanges
6259     and dpkg-gencontrol respectively.
6260   * Warn on usage of deprecated Source-Version substvar.
6261   * Say OpenPGP instead of PGP when referring to the standard on code comments
6262     and output messages.
6263   * Add a hint to the “no dependency information found” error message in
6264     dpkg-shlibdeps, to check if the library is actually packaged.
6265     Thanks to Sylvestre Ledru <sylvestre@debian.org>. Closes: #756230
6266   * Delete the current compressor SIGPIPE disposition in Dpkg::Source::Archive,
6267     which fixes ignoring SIGPIPE from the calling process. Closes: #756526
6268   * Ignore DEB_CHECK_COMMAND in dpkg-buildpackage if the command is not found.
6269   * Emit a warning when using the deprecated -is/-ip/-isp/-ips options in
6270     dpkg-gencontrol.
6271   * Only print build type once in dpkg-genchanges, instead of once for each
6272     specified -A or -B option and then yet another time for the general build
6273     type description.
6274   * Unify build options description in --help output for dpkg-buildpackage
6275     and dpkg-genchanges.
6276   * Only allow one build type option in dpkg-genchanges and dpkg-buildpackage.
6277   * Correctly filter the host architecture on the Architecture field in the
6278     generated .changes file from dpkg-genchanges, when the debian/files
6279     contains arch-specific packages but dpkg-genchanges was called with
6280     one of the build types excluding them.
6281   * Add new -g and -G options to dpkg-genchanges and dpkg-buildpackage for
6282     source plus arch-indep/specific builds. Closes: #756975
6283   * Fix dpkg --add-architecture and --remove-architecture to check that they
6284     get exactly one argument. Closes: #757254
6286   [ Updated programs translations ]
6287   * Danish (Joe Dalton). Closes: #754127
6288   * French (Jean-Baka Domelevo Entfellner, Julien Patriarca).
6289   * Portuguese (Miguel Figueiredo). Closes: #756920
6290   * Spanish (Guillem Jover): Fix «dpkg-query -l» header. Closes: #756209
6291   * Swedish (Peter Krefting).
6293   [ Updated scripts translations ]
6294   * Swedish (Peter Krefting).
6296   [ Updated man pages translations ]
6297   * Swedish (Peter Krefting).
6299  -- Guillem Jover <guillem@debian.org>  Sat, 09 Aug 2014 17:16:27 +0200
6301 dpkg (1.17.10) unstable; urgency=medium
6303   [ Guillem Jover ]
6304   * Use libtool to build the static libraries, which makes it possible to
6305     embed libcompat inside libdpkg, as required by some external programs
6306     linking against the latter. Closes: #746122
6307   * Fix word wrapping logic in dselect. Regression introduced in dpkg 1.17.3.
6308   * Fix possible out of bounds buffer read access in the error output on
6309     bogus ar member sizes.
6310   * Fix memory leaks in buffer_copy() on error conditions.
6311   * Test suite:
6312     - Improve C code coverage.
6313     - Add template test cases for most perl modules.
6314     - Add test cases for Dpkg::Deps OR relationships.
6315     - Add minimal test case for Dpkg::Source::Quilt.
6316     - Add test cases for Dpkg::Source::Patch CVE-2014-0471 and CVE-2014-3127.
6317     - Add test case for patch disabling hunks; not security sensitive.
6318   * Fix non-security sensitive TOCTOU race in triggers database loading.
6319   * Fix non-security sensitive TOCTOU race in update-alternative alternative
6320     database loading.
6321   * Fix non-security sensitive TOCTOU race in update-alternative rename code.
6322   * Add a workaround to start-stop-daemon for bogus OpenVZ Linux kernels that
6323     prepend, instead of appending, the " (deleted)" marker in /proc/PID/exe.
6324     Closes: #731530
6325   * Move dpkg-architecture -L argument to the Commands --help output section.
6326   * Make dpkg-maintscript-helper print only once that we are moving a
6327     conffile, and not on every interim state transition. Closes: #747370
6328   * Do not use global match variables in perl code.
6329   * Man pages:
6330     - Attempt to clarify and improve wording of some strange or confused
6331       constructs. Reported by Helge Kreutzmann.
6332     - Expand Vcs-* field names into each supported field name in
6333       deb-src-control(5) to make it easier to search for them.
6334     - Change control.tar.gz reference to simply control.tar in deb(5).
6335     - Document in dpkg-deb(1) -Z option that bzip2 and lzma are deprecated.
6336     - Add notes in dpkg-gensymbols(1) about symbol backward-compatibility.
6337       Based on a patch by Bernhard R. Link <brlink@debian.org>.
6338       Closes: #746973
6339     - Document that dpkg-buildpackage(1) -j argument is optional.
6340     - Add current and deprecated media types to deb(5).
6341     - Document in dpkg(1) that --audit now does more than just searching for
6342       partially installed packages.
6343   * Add support for automatic parallel job selection in dpkg-buildpackage,
6344     matching currently active processors, when using -jauto. Closes: #748012
6345   * Perl modules:
6346     - Bump $VERSION for Dpkg::Patch, missed in 1.16.1.
6347     - Bump $VERSION for Dpkg::Deps, missed in 1.17.0.
6348     - Update and fix CHANGES POD sections for public modules.
6349     - Add missing Dpkg::Deps::Multiple profile_is_concerned() and
6350       reduce_profiles() methods, inherited by Dpkg::Deps::Union,
6351       Dpkg::Deps::AND and Dpkg::Deps::OR.
6352   * Do not mangle quilt series files with a missing newline on the last line.
6353     Closes: #584233
6354   * Quiesce tar warnings in cron job by redirecting stderr to /dev/null, as
6355     it seems --warning=none does not work correctly. Closes: #748544
6356   * Do not emit a trailing space from Dpkg::Control::Hash on a field's empty
6357     first line. Bump dpkg-dev Breaks on devscripts to 2.14.4, as previous
6358     versions expect a trailing space from dpkg-parsechangelog output.
6359     Based on a patch by Johannes Schauer <j.schauer@email.de>. Closes: #749044
6360   * Do not assume that sensible-editor is present on «dpkg-source --commit»,
6361     as that command is very Debian specific. Fallback to try VISUAL, EDITOR,
6362     or vi, if the previous commands are either unset or not found.
6363   * Use badusage() instead of ohshit() on dpkg --ignore-depends argument
6364     parsing errors.
6365   * Add per package dpkg --audit support.
6366   * Add support for DragonFlyBSD to ostable and triplettable.
6367     Thanks to Hleb Valoshka <375gnu@gmail.com>.
6368   * Add support for DragonFlyBSD to start-stop-daemon. Closes: #734452
6369     Based on a patch by Hleb Valoshka <375gnu@gmail.com>.
6370   * Correctly parse patch headers in Dpkg::Source::Patch, to avoid directory
6371     traversal attempts from hostile source packages when unpacking them.
6372     Reported by Javier Serrano Polo <javier@jasp.net> as an unspecified
6373     directory traversal; meanwhile also independently found by me both
6374     #749183 and what was supposed to be #746498, which was later on published
6375     and ended up being just a subset of the other non-reported issue.
6376     Fixes CVE-2014-3864 and CVE-2014-3865. Closes: #746498, #749183
6378   [ Updated programs translations ]
6379   * Catalan (Guillem Jover).
6380   * Italian (Milo Casagrande). Closes: #750105
6382   [ Updated scripts translations ]
6383   * German (Helge Kreutzmann).
6385   [ Updated man pages translations ]
6386   * German (Helge Kreutzmann).
6388   [ Raphaël Hertzog ]
6389   * Let dpkg-source unpack additional tarballs in a deterministic order.
6390     Thanks to Samuel Bronson for the report. Closes: #747148
6392  -- Guillem Jover <guillem@debian.org>  Thu, 05 Jun 2014 20:18:04 +0200
6394 dpkg (1.17.9) unstable; urgency=high
6396   [ Guillem Jover ]
6397   * Do not allow patch files with C-style encoded filenames. Closes: #746306
6398     Fixes CVE-2014-3127 and unconditionally fixes CVE-2014-0471.
6399     Reported by Javier Serrano Polo <javier@jasp.net>.
6400   * Switch alternative database backups from xz to gzip. Closes: #746354
6401   * Do not leak long tar names on bogus or truncated archives.
6402   * Do not leak the filepackages iterator when a directory is used by other
6403     packages.
6404   * Fix short lived memory leaks in «dpkg-split --split».
6405   * Fix memory leak in unused Keybindings screen in dselect.
6406   * Do not leak color string on «dselect --color».
6407   * Fix memory leaks when parsing alternatives.
6408   * Fix off-by-one stack buffer overrun in start-stop-daemon on GNU/Linux and
6409     GNU/kFreeBSD if the executable pathname is longer than _POSIX_PATH_MAX.
6410     Although this should not have security implications as the buffer is
6411     surrounded by two arrays (so those catch accesses even if the stack
6412     grows up or down), and we are compiling with -fstack-protector anyway.
6413   * Mark the command_get_pager() tests on a tty as TODO for now, so that
6414     we do not get failures on build daemons.
6415   * Make test suite errors abort the build again. Closes: #746331
6417   [ Updated scripts translations ]
6418   * French (Steve Petruzzello). Closes: #746350
6419   * German (Helge Kreutzmann).
6421   [ Updated man pages translations ]
6422   * German (Helge Kreutzmann).
6424  -- Guillem Jover <guillem@debian.org>  Wed, 30 Apr 2014 05:45:20 +0200
6426 dpkg (1.17.8) unstable; urgency=high
6428   [ Guillem Jover ]
6429   * Do not backup nonexistent database files from the cron.daily file.
6430     And stop emitting tar warnings. Closes: #745592, #745651
6431   * Test suite:
6432     - Improve Perl code coverage.
6433     - Improve C code coverage.
6434   * Handle space-only strings when parsing versions in libdpkg.
6435   * Document the environment requirements for the dpkg-maintscript-helper
6436     supports command in the man page. Closes: #739634
6437   * Improve wording for «dpkg --verify» and --verify-format in the man page.
6438     Closes: #733057
6439   * Switch test runner from Test::Harness to TAP::Harness.
6440   * Use the perl TAP::Harness for the C test suite instead of the automake
6441     tap-driver, to avoid requiring automake >= 1.12, currently not present
6442     in stable.
6443   * Enable failed test case reporting from the TAP::Harness, so that we get
6444     more meaningful reports on failure from the C test suite.
6445   * Correctly parse C-style diff filenames in Dpkg::Source::Patch, to avoid
6446     directory traversal attempts from hostile source packages when unpacking
6447     them. Reported by Jakub Wilk <jwilk@debian.org>. Fixes CVE-2014-0471.
6449   [ Updated programs translations ]
6450   * German (Sven Joachim).
6451   * Russian (Yuri Kozlov). Closes: #745869
6452   * Vietnamese (Trần Ngọc Quân).
6454  -- Guillem Jover <guillem@debian.org>  Mon, 28 Apr 2014 13:33:11 +0200
6456 dpkg (1.17.7) unstable; urgency=low
6458   [ Guillem Jover ]
6459   * Documentation:
6460     - Mention in deb-symbols(5), that the “main-dependency-template” is
6461       always used. Closes: #737731
6462     - Clarify in deb-control(5) «Multi-Arch: no» field omission.
6463     - Clarify in dpkg-buildpackage(1) --check-option description.
6464     - Document dpkg-query --control-path life expectancy. See: #699647
6465     - Fix indentation of “Extract options (with -x)” title in dpkg-source(1).
6466     - Improve symlink <-> directory switch information in
6467       dpkg-maintscript-helper(1). Closes: #739388
6468     - Add missing flags affected by hardening options to dpkg-buildflags(1).
6469   * Use exit instead of return to exit a subshell in dpkg-maintscript-helper.
6470     Thanks to Richard Levitte <richard@levitte.org>. Closes: #738957
6471   * Localize $_ in Perl functions with while (<$fh>) style loops.
6472   * Perl test suite cleanup:
6473     - Switch test suite runner from ExtUtils::Command::MM to Test::Harness.
6474     - Enable colors in test suite runner.
6475     - Remove sequence number prefixes from test case filenames.
6476   * Do not generate perl warnings on nonexistent fields with
6477     «dpkg-parsechangelog --show».
6478   * Fix bogus message on dependency parse errors in dpkg-checkbuilddeps.
6479     Closes: #736778
6480   * Document is_pgp_signed as a public Dpkg::Control::Hash option.
6481     Closes: #735975
6482   * Do not generate perl warnings on undef versions in
6483     Dpkg::Deps::deps_compare(). See: #737731
6484   * Clarify dpkg-genchanges error message on binary builds without any binary
6485     artifact built. Closes: #726520
6486   * Improve dpkg-source warning message when ignoring file removals,
6487     by adding a hint about the --include-removal option.
6488     Thanks to Moritz Muehlenhoff <jmm@debian.org>. Closes: #738310
6489   * Add a new dpkg-source extraction --ignore-bad-version option.
6490     Closes: #740883
6491   * Add Architecture and Build-Profiles information to Package-List field,
6492     as optional name=value1,value2 entries, with names «arch» and «profile».
6493     Use the now recognized field Build-Profiles from binary stanzas in the
6494     source control file to fill the «profile» value.
6495   * Do not interpret the .dsc filename as a regex when recomputing the
6496     md5sum for the .changes file after signing the .dsc. Closes: #742535
6497   * Cache vendor info Control::Hash objects in Dpkg::Vendor::get_vendor_info()
6498     when parsing the vendor file on each hook invocation.
6499   * If the vendor does not have a Dpkg::Vendor module, try loading a module
6500     from the parent vendors, before falling back to Dpkg::Vendor::Default.
6501     Closes: #735978
6502   * Set Ubuntu build flags for ppc64el instead of ppc64, as Ubuntu never ended
6503     up shipping a ppc64 architecture. Also honor noopt DEB_BUILD_OPTIONS flag.
6504     Thanks to Adam Conrad <adconrad@debian.org. Closes: #738691
6505   * Add OpenRISC or1k support to cputable.
6506     Thanks to Christian Svensson <christian@cmd.nu>. Closes: #736717
6507   * Add support for FCFLAGS, OBJCFLAGS and OBJCXXFLAGS build flags.
6508     Closes: #744326
6509   * Improvements and portability fixes to start-stop-daemon:
6510     - When using the Linux procfs switch to use /proc/PID/status instead of
6511       /proc/PID/stat to read the process name.
6512     - Add a generic KVM-based implementation to initialize the entire
6513       process list.
6514     - Fix FreeBSD KVM code to use current kinfo_proc layout.
6515     - Add a native FreeBSD pid_is_exec() method, which is more reliable than
6516       the KVM-based one, and means neither linprocfs nor procfs are required
6517       on such system anymore. Note that GNU/kFreeBSD is still using Linux
6518       procfs code (which ends up using linprocfs).
6519     - Fix OpenBSD KVM code to use current kinfo_proc layout.
6520     - Detect system specific headers at configure time instead of hardcoding
6521       their usage depending on system macros.
6522     - Add a new --ppid matching option to check for parent PID.
6523       Suggested by Alex Mestiashvili <mailatgoogl@gmail.com>.
6524     - On GNU/Hurd do not link unnecessarily against libshouldbeinlibc and
6525       libihash.
6526   * Set TAR preprocessor variable at build time instead of hardcoding it.
6527     This will allow non-GNU systems to easily use another value for their
6528     GNU tar, which is usually either gnutar or gtar.
6529   * Require compound literals support in the compiler at configure time.
6530   * Fix compound literals usage with compilers in C99 mode, by not assigning
6531     them to static variables.
6532   * Test suite cleanup:
6533     - Do not unnecessarily shut up stdout in t-subproc.
6534     - Test command_exec() exit code.
6535     - Test allocations with new test_alloc() instead of pass/fail macros.
6536     - Switch C test suite to use TAP.
6537   * Add support for Packages-files in dpkg --update-avail and --merge-avail
6538     from pipes, or standard input if the argument is omitted or is ‘-’.
6539     Closes: #357093, #367297
6540   * Error out on not-installed packages passed to «dpkg --verify».
6541   * Deprecate compressing .deb files with bzip2, by making dpkg-deb issue a
6542     warning, as the compressor has been superseded by xz when it comes to
6543     compression ratio, and in cases where higher compatibility or raw speed
6544     is desired gzip is still the better option. Although unpacking will be
6545     kept being supported to handle existing bzip2 compressed .deb files.
6546   * Use GNU tar's --no-unquote when using -T in dpkg-deb to avoid mangling
6547     filenames. Reported by Niels Thykier <niels@thykier.net>. Closes: #743687
6548   * Backup all databases with user data, not just the status database.
6549   * Add Conflicts to dpkg against packages using install-info that were
6550     removed after lenny or squeeze, but may have survived upgrades to wheezy.
6551     Thanks to Andreas Beckmann <anbe@debian.org>. Closes: #735159
6552   * Be verbose on «make check» errors by printing the test suite log.
6554   [ Updated programs translations ]
6555   * German (Sven Joachim).
6556   * Swedish (Peter Krefting).
6557   * Thai (Theppitak Karoonboonyanan). Closes: #745032
6558   * Vietnamese (Trần Ngọc Quân).
6560   [ Updated scripts translations ]
6561   * German (Helge Kreutzmann).
6562   * Swedish (Peter Krefting).
6564   [ Updated man pages translations ]
6565   * German (Helge Kreutzmann).
6566   * Italian (Beatrice Torracca). Closes: #742449
6567   * Swedish (Peter Krefting).
6569  -- Guillem Jover <guillem@debian.org>  Mon, 21 Apr 2014 05:03:52 +0200
6571 dpkg (1.17.6) unstable; urgency=low
6573   [ Guillem Jover ]
6574   * Move signing in dpkg-buildpackage to the end of the build.
6575   * Add new --check-command and --check-option options to dpkg-buildpackage,
6576     and DEB_CHECK_COMMAND environment variable as a default value, to
6577     specify a package checker to use before the signing process.
6578   * Detect a missing gain-root-command even if dpkg-buildpackage is running
6579     as root.
6580   * Detect a missing sign-command in dpkg-buildpackage, before starting the
6581     build, to avoid a failure at the end of the process.
6582   * Remove trailing newlines from dpkg-deb warning message.
6583   * Change dpkg-deb conffile name length warning into an error, as dpkg will
6584     reject those packages at install time anyway.
6585   * Unify and clarify dpkg-deb and dpkg conffile name length error message.
6586     Closes: #108196
6587   * Add new start-stop-daemon --pid option. Closes: #253265
6588   * Mention Multi-Arch: no value in man pages. Closes: #732648
6589   * Correctly hyphenate binary-only and source-only in dpkg-buildpackage
6590     output messages.
6591   * Use makedev(3) when extracting .deb archives rather than ad-hoc
6592     computations, to be able to support large major/minor device numbers,
6593     supported on at least Linux, NetBSD and OpenBSD based systems.
6594     Thanks to Peter Chang <dpf@google.com>.
6595   * Turn the ARM Embedded ABI symbols blacklist into a regex, to stop having
6596     to keep up with the GNU toolchain, or other toolchains emitting different
6597     symbols.
6598   * Blacklist GOMP critical section symbols. Closes: #708033
6599   * Add support for Ignore-Blacklist-Groups field in symbols files, with the
6600     two available group values aeabi and gomp. Closes: #694524
6601   * Allow updating checksums in Dpkg::Checksums without erroring out.
6602   * Add shell hooks support to dpkg-buildpackage, based on the debuild
6603     implementation in devscripts 2.13.9. Closes: #476221
6604   * Add support for Testsuite source field.
6605   * Clarify error message about missing revision in non-native source package.
6606     Closes: #719348, #733746
6607   * Set default compression options in source format specific modules instead
6608     of dpkg-source. This makes sure the correct compression level is set, even
6609     for “3.0 (native)” packages with non-default compressors. Closes: #733326
6610   * Change default source package compressor for new formats (>= 2.0) to xz.
6611   * Ignore the same packages in «dpkg-query --list» when computing the
6612     column width as when printing the entries. Closes: #734114
6613   * Do not produce .deb archives with uncompressed gzip members on
6614     «dpkg-deb -Zgzip -z0», instead create them as non-compressed members,
6615     as if -Znone had been passed, as documented. Closes: #718295
6616   * Add support for .deb archives with a control member not compressed
6617     (control.tar) or compressed with xz (control.tar.xz).
6618   * Add support for creating uniformly compressed .deb archive members,
6619     with the new dpkg-deb option --uniform-compression.
6620   * Fix file descriptor leaks in diversions and statoverride databases.
6621     Closes: #734783
6622   * Allow missing prior-version argument in dpkg-maintscript-helper
6623     dir_to_symlink and symlink_to_dir commands. Closes: #733980
6625   [ Updated programs translations ]
6626   * Swedish (Peter Krefting).
6627   * Vietnamese (Trần Ngọc Quân).
6629   [ Updated scripts translations ]
6630   * German (Helge Kreutzmann).
6631   * Swedish (Peter Krefting).
6633   [ Updated man pages translations ]
6634   * German (Helge Kreutzmann).
6635   * Swedish (Peter Krefting).
6637  -- Guillem Jover <guillem@debian.org>  Wed, 15 Jan 2014 05:29:45 +0100
6639 dpkg (1.17.5) unstable; urgency=low
6641   [ Guillem Jover ]
6642   * Switch non-tty output to be line buffered by default, and set it to fully
6643     buffered only for programs with precious and abundant output, not just
6644     progress reporting output (i.e. dpkg-query). This was causing out-of-order
6645     error and debug messages in relation to normal progress reporting, which
6646     could be very confusing. Regression introduced in dpkg 1.17.2.
6647   * Fix segfault in update-alternatives when adding or renaming slaves for
6648     an existing alternative. Regression introduced in dpkg 1.17.2.
6649     Closes: #731710
6650   * Fix dpkg-maintscript-helper symlink_to_dir and dir_to_symlink commands:
6651     - Always run postinst code regardless of prior-version, as the package
6652       might have been never configured before.
6653     - Be more strict when checking the expected state of paths.
6654     - Rename subcommand shell code to check-files-ownership.
6655     - Change dir_to_symlink switch code to use a staging empty directory,
6656       to avoid dpkg removing files from other packages, when removing the
6657       package old files during upgrade.
6658     - Bump minimal version in man page to 1.17.5.
6659     Closes: #731730
6660   * Mention gpg2 too as one of the default sign commands in dpkg-buildpackage.
6662   [ Updated programs translations ]
6663   * German (Sven Joachim).
6665   [ Updated scripts translations ]
6666   * German (Helge Kreutzmann).
6668   [ Updated man pages translations ]
6669   * German (Helge Kreutzmann).
6671  -- Guillem Jover <guillem@debian.org>  Thu, 12 Dec 2013 08:29:45 +0100
6673 dpkg (1.17.4) unstable; urgency=low
6675   * Keep the diversions and statoverride database files open during dpkg
6676     runs, to avoid eager inode number reuse by the filesystem if these files
6677     get replaced multiple times in maintainer scripts, as we rely on the
6678     inode numbers being different when checking if the databases need to
6679     be reloaded. Regression introduced in 1.17.2. Closes: #731524
6680   * Add debug output to diversions and statoverride database loading code.
6681   * Reset the statoverrides information from the in-core database when
6682     reloading it from disk, otherwise removals in maintainer scripts will
6683     not be seen during the current dpkg run.
6684   * Get rid of dpkg-split global partqueue queue variable.
6685   * Use warningv() in dpkg instead of ad-hoc printing message when
6686     overriding with --force option.
6687   * Switch URLs in docs and code comments from http:// to https:// if the
6688     latter is available.
6690  -- Guillem Jover <guillem@debian.org>  Sat, 07 Dec 2013 07:34:54 +0100
6692 dpkg (1.17.3) unstable; urgency=low
6694   [ Guillem Jover ]
6695   * Check availability of warning flags at build time. Fixes a build failure
6696     on systems with old g++ compilers not accepting -Wc++11-compat.
6697   * Move DPKG_C_C99 call just after AC_PROG_CC, so that subsequent checks
6698     can take advantage of the possibly set flags to enable C99 features.
6699   * Improve configure C99 compiler check output.
6700   * Use C++11 nullptr instead of 0 or NULL, which is way more descriptive
6701     and has a better type. Check for C++11 compiler support, and fallback
6702     nullptr to 0 if unavailable.
6704   [ Updated programs translations ]
6705   * Vietnamese (Trần Ngọc Quân). Closes: #731409
6707  -- Guillem Jover <guillem@debian.org>  Thu, 05 Dec 2013 10:19:38 +0100
6709 dpkg (1.17.2) unstable; urgency=low
6711   [ Guillem Jover ]
6712   * Make Dpkg::Arch debwildcard_to_debtriplet() more robust by matching
6713     on exact 'any' strings, instead of substrings.
6714   * Add manpages-it Replaces to dselect and dpkg-dev. Closes: #717983
6715     Reported by Andreas Beckmann <anbe@debian.org>.
6716   * Document default dpkg-deb compressor change to xz in man page.
6717     Thanks to Salvatore Bonaccorso <carnil@debian.org>. Closes: #718437
6718   * Version manpages-it in Replaces with (<< 2.80-4), now that the package
6719     does not ship the overlapping paths any more.
6720   * Automatically prepend needed spaces for continuation --force-help lines.
6721   * Be more precise on deb format errors with data member in dpkg-deb.
6722   * Do not allow deb packages with control and data members swapped.
6723   * Clarify «dpkg-deb --extract» bad usage error message on missing arguments
6724     by printing all required arguments at once. Closes: #718899
6725   * Clarify the insertion order of _ members in deb(5) man page.
6726   * Fix use after free in alternative_parse_fileset() on update-alternatives.
6727     Reported by Pedro Ribeiro <pedrib@gmail.com>.
6728   * Fix use after free in dpkg_arch_load_list() on libdpkg.
6729     Reported by Pedro Ribeiro <pedrib@gmail.com>.
6730   * Fix theoretical stack buffer overflow in w_dependency() on libdpkg, not
6731     currently applicable. Reported by Pedro Ribeiro <pedrib@gmail.com>.
6732   * Add ppc64el support to cputable. Closes: #718945
6733     Thanks to Jeff Bailey <jeffbailey@google.com>.
6734   * Use dpkg-gencontrol -c argument as a fallback lock file in case
6735     debian/control does not exist. Closes: #667008
6736   * Pass the package reference count (i.e. number of present instances) to
6737     maintainer scripts via the new variable DPKG_MAINTSCRIPT_PACKAGE_REFCOUNT.
6738     Closes: #681370
6739   * Fix field names on error messages in libdpkg, by either capitalizing them
6740     or by renaming them to match reality.
6741   * Do not capitalize error and warning messages.
6742   * When ignoring invalid remove requests in dpkg consider that progress,
6743     reset the loop detector and avoid the assert. Closes: #143307
6744   * Activate all path components for file triggers on removal.
6745     Regression introduced in 1.17.0. Closes: #725437
6746   * Activate file triggers on disappearance more accurately, only when we know
6747     we are inevitably removing things.
6748   * Fix «dpkg-query --list» output when using multibyte character strings,
6749     to avoid unaligned columns and mojibake. Closes: #257505, #718541
6750     Based on a patch by Changwoo Ryu <cwryu@debian.org>.
6751   * Use fully buffered output on non-tty stdout.
6752     Reported by Shawn Landden <shawnlandden@gmail.com>.
6753   * Recognize «start-stop-daemon -C» as documented. Closes: #719746
6754     Reported by Brian S. Julin <bri@abrij.org>.
6755   * When update-alternatives is told to change slave links, do not warn that
6756     the link group is broken, just print a notice that the alternative is
6757     being updated due to the changes.
6758   * Add a new «dpkg --verify» command to check the integrity of packages
6759     installed files. Add a --verify-format option to explicitly select the
6760     output format, currently only rpm compatible output is supported, but
6761     the default might change in the future. Closes: #187019
6762   * Improve dpkg “Preparing to replace” and “Unpacking” progress messages.
6763     Closes: #32427, #71106
6764   * Print the package version on main dpkg progress messages.
6765   * Do not store timestamps in gzip headers when using the command, to try to
6766     mimic the zlib behavior. This does not affect Debian as it's been using
6767     zlib for a very long time. Closes: #719844
6768   * Reset environment variables affecting compressor commands when not using
6769     the shared library implementations. Namely XZ_DEFAULTS, XZ_OPT, BZIP and
6770     BZIP2.
6771   * Use a simple list to track packages owning a file, instead of using a
6772     list of arrays of pointers which waste 10 pointers per non-shared file,
6773     instead of 1. This significantly reduces dpkg memory usage.
6774   * Honor new DEB_SIGN_KEYID environment variable in dpkg-buildpackage.
6775     Suggested by Harald Dunkel <harri@afaics.de>. Closes: #615813, #719418
6776   * Always check subprocess exit codes in Dpkg::Source::Package modules.
6777     Reported by Ian Jackson <ijackson@chiark.greenend.org.uk>.
6778   * Add support for pie and stack-protector options to dpkg-buildflags FFLAGS,
6779     and update the man page to mention FFLAGS are a subset of CFLAGS.
6780     Closes: #726932
6781   * Improve and unify -O option handling in dpkg-genchanges, dpkg-gensymbols
6782     and dpkg-shlibdeps, by always taking an optional filename argument and
6783     describing in the man page the default output files.
6784   * Use “hyphen” instead of “dash” when we mean the ‘-’ character in the
6785     documentation and code comments.
6786   * Do not NULL-terminate the list in the compat scandir(), as this might
6787     cause a segfault in case the function returns 0 entries.
6788   * Always return from ensure_statoverrides() if file is NULL, otherwise
6789     we might get us to read garbage from memory or segfault.
6790   * Add new symlink_to_dir command to dpkg-maintscript-helper. Closes: #720712
6791     Based on a patch by Bastien ROUCARIÈS <roucaries.bastien@gmail.com>.
6792   * Add new dir_to_symlink command to dpkg-maintscript-helper. Closes: #583585
6793   * Distinguish dpkg error reports between errors while processing packages
6794     and archives.
6795   * Fix crashes in the first call to gettext() after fork() on Mac OS X, by
6796     forcing the initialization at program start of the CoreFoundation cached
6797     values in libintl.
6798   * Set a default gettext domain for libdpkg code, so that other programs
6799     using a different domain can still get correct translations, like dselect.
6800   * Cleanup libdpkg-perl API:
6801     - Dpkg::Compression: Deprecate $default_compression_level,
6802       $default_compression and $compression_re_file_ext package variables.
6803     - Dpkg::Exit: Deprecate @handlers package variable.
6804     - Dpkg::Source::Package: Deprecate $diff_ignore_default_regexp and
6805       @tar_ignore_default_pattern package variables.
6806     - Dpkg::Changelog::Entry::Debian: Deprecate $regex_header and
6807       $regex_trailer package variables.
6808   * Add GnuPG 2.x support. Add gnupg2 and gpgv2 as alternative Recommends to
6809     gnupg and gpgv (to not pull them by default), but prefer gpgv2 over gpgv,
6810     and gpg2 over gpg at run-time if they are available.
6811   * Switch dpkg conflictor tracking from a fixed-size array to a queue,
6812     fixing several related issues, due to conflictors not being removed from
6813     the array after processing them. dpkg could fill it due to additions in
6814     previous package processing producing very confusing error messages; and
6815     a theoretical problem where a package could get appended to be removed,
6816     then reinstalled as a new version, to get removed again when revisiting
6817     the array in a subsequent package processing. Closes: #726112
6818   * Do not accept empty field names in dpkg.
6819   * Do not accept an initial hyphen in field names.
6820   * Add experimental build profiles support:
6821     - Add support for <!profile.name> build-time restrictions in dependencies.
6822     - Add support for DEB_BUILD_PROFILES environment variable.
6823     - Add new option -P to dpkg-buildpackage and dpkg-checkbuilddeps.
6824     - Add new Built-For-Profiles output field in .deb and .changes files.
6825     Based on a patch by Patrick "P. J." McDermott <pjm@nac.net>,
6826     Wookey <wookey@debian.org> and Johannes Schauer <j.schauer@email.de>.
6827     Closes: #661538
6828   * Bump Standards-Version to 3.9.5.
6829   * Document interactions of dpkg-source --extend-diff-ignore and -i in the
6830     man page. Closes: #729874
6832   [ Updated programs translations ]
6833   * German (Sven Joachim).
6834   * Vietnamese (Trần Ngọc Quân).
6836   [ Updated scripts translations ]
6837   * German (Helge Kreutzmann).
6839   [ Updated man pages translations ]
6840   * French (Christian Perrier): fix incorrectly translated sentence,
6841     thanks to Fabien Givors.
6842   * German (Helge Kreutzmann).
6844  -- Guillem Jover <guillem@debian.org>  Thu, 05 Dec 2013 04:56:31 +0100
6846 dpkg (1.17.1) unstable; urgency=low
6848   * Man pages cleanup:
6849     - Make explicit that dpkg-shlibdeps -e can be used multiple times.
6850     - Improve documentation on how to update the available database before
6851       setting package selections. Suggested by Klaus Ita <koki.eml@gmail.com>.
6852   * Add manpages-it Replaces to dpkg due to new translated man pages.
6853     Reported by Alessio Gaeta <alga777@gmail.com>. Closes: #717983
6854   * Reword libdpkg-perl description and only list public modules.
6855   * Remove space before value in dpkg-parsechangelog -S option on pkg-info.mk.
6856     Closes: #718014
6857   * Make the build system install start-stop-daemon directly under /sbin,
6858     instead of moving it around in debian/rules.
6860  -- Guillem Jover <guillem@debian.org>  Sun, 28 Jul 2013 14:44:50 +0200
6862 dpkg (1.17.0) unstable; urgency=low
6864   [ Guillem Jover ]
6865   * Switch update-alternatives back to a fatal error on out of range priority
6866     on --install.
6867   * Document dpkg-deb --debug in --help output.
6868   * Bump Standards-Version to 3.9.4 (no changes needed).
6869   * Use the new canonical dpkg git Vcs URLs.
6870   * Remove ancient version from zlibg1-dev Build-Depends.
6871   * Add compression development packages to libdpkg-dev Depends.
6872   * Man pages cleanup:
6873     - Disable justification and hyphenation in SEE ALSO sections.
6874     - Remove unneeded double quotes in .SH headings.
6875     - Do not use “header” when “format” or “field” is meant.
6876     - Move dangers of installing via dpkg-deb from BUGS to a NOTES section.
6877     - Remove BUGS sections containing obvious or misplaced information.
6878     - Move BUGS sections before EXAMPLES and SEE ALSO sections.
6879     - Place ENVIRONMENT and FILES sections contiguously.
6880     - Move EXIT STATUS section before ENVIRONMENT.
6881     - Rename CAVEATS sections to NOTES.
6882     - Fold BACKWARD COMPATIBILITY section into other sections.
6883     - Document since when DEB_*_MULTIARCH variables are supported.
6884     - Move compiler flags subsection from ENVIRONMENT to NOTES.
6885     - Unify WARNING and ERROR sections into DIAGNOSTICS.
6886     - Unify command-line options into a single OPTIONS section.
6887     - Mark programs, variables, fields and command-line options in bold.
6888     - Fold dpkg-architecture(1) DEBIAN/RULES section into EXAMPLES.
6889     - Fix dpkg-architecture(1) debian/rules usage documentation.
6890     - Move dpkg-buildflags(1) HARDENING into a new FEATURE AREAS subsection.
6891     - Improve dpkg-buildflags(1) usage documentation.
6892       Thanks to Matthijs Kooijman <matthijs@stdin.nl>. Closes: #657627
6893     - Clarify that DPKG_MAINTSCRIPT_PACKAGE is not arch-qualified.
6894     - Add triggers to the list of binary control information files.
6895       Thanks to Charles Plessy <plessy@debian.org>.
6896   * Use colon instead of dot for user:group in dpkg debug output.
6897   * Remove support for obsolete DM-Upload-Allowed from Dpkg::Vendor::Debian.
6898   * Fix update-alternatives to use the current alternative link as the first
6899     best value, to avoid flip-flops of alternatives with equal priority.
6900     Closes: #699807
6901   * Fix clang warnings due to change of alignment requirements.
6902   * Change copyright file to point to GPL-2 instead of GPL.
6903   * Do not pass -e in shell script shebangs, set it in the body.
6904   * Add new dpkg-parsechangelog --show-field option to print a field value.
6905     Closes: #284664
6906   * Add new dpkg-buildpackage --force-sign option.
6907   * By default do not sign builds for UNRELEASED uploads on dpkg-buildpackage.
6908     Closes: #635117
6909   * Also check Build-Depends-Arch for minimal versions in dpkg-shlibdeps.
6910     Closes: #681470
6911   * Document dpkg-buildflags export mode usage in man page. Closes: #691449
6912     Thanks to Jonathan Nieder <jrnieder@gmail.com>.
6913   * Rename dpkg-buildflags configure exporter to cmdline, but preserve
6914     configure as a legacy alias.
6915   * Mask fortify hardening option from dpkg-buildflags output on noopt.
6916     New glibc 2.16 and later, issue a warning on this condition.
6917     Closes: #691745
6918   * Refer to path instead of file on dpkg-statoverride.
6919   * Always print a descriptive architecture column, even for empty or missing
6920     architectures on «dpkg-query --list».
6921   * Rework SELinux code on unpack to reload the label database if it has
6922     changed, for example while upgrading the SELinux policy package.
6923   * Execute maintainer scripts in a new execution context, based on the
6924     current one and the specific maintainer script filename, and if it's
6925     not different to the current one, use "dpkg_script_t" as a fallback.
6926   * Do not unnecessarily create a dpkg update log record on remove or purge.
6927   * Always reset want status when removing or purging a package; so this
6928     now resets holds among others. Closes: #163763
6929   * Always reset want status when installing a package; so this now resets
6930     holds among others. Closes: #162541
6931   * Defer cleanup of .dpkg-new and .dpkg-tmp paths on removal to the point
6932     when we are definitely removing the main path.
6933   * Activate file triggers on removal more accurately, only when we know
6934     we are inevitably removing things.
6935   * Change dir to / before executing maintainer scripts. Closes: #686782
6936   * Add new dpkg-deb --deb-format option and base --new and --old on it,
6937     as the latter are not future-proof, and neither can be guaranteed to
6938     produce a reliable output file format.
6939   * Drop archtable. It serves no purpose, it's Debian specific, it's
6940     usually outdated, and everyone should be using dpkg-architecture anyway.
6941   * Add musl-linux support to ostable and triplettable.
6942     Requested-by Kevin Bortis <wermut@gmail.com>.
6943   * Remove update-alternatives, dpkg-divert and dpkg-statoverride
6944     compatibility symlinks under /usr/sbin/.
6945   * Remove install-info wrapper.
6946   * Only ignore older packages if the existing version is informative. This
6947     allows any program using libdpkg to parse the available file to see again
6948     packages with versions lesser than 0-0 (like 0~0-0). Closes: #676664
6949   * Fix Dpkg::Control::Hash set_options() to take a hash as argument instead
6950     of two scalars.
6951   * Add a new Dpkg::Vendor get_vendor_dir() function.
6952   * Print correct path to vendor directory on error message in dpkg-vendor.
6953   * Do not hardcode the dpkg system configuration directory in perl scripts,
6954     respect build time setting.
6955   * Deprecate Dpkg perl module lowercase and exported by default variables,
6956     replaced by new unified uppercase non-exported by default ones.
6957   * Do not set -fstack-protector in the default build flags on arm64 (it's
6958     not yet supported). Thanks to Matthias Klose <doko@ubuntu.com>.
6959     Closes: #711936
6960   * Add GCJFLAGS support to dpkg-buildflags. Closes: #708375
6961   * Clarify that dpkg --set-selections needs an up-to-date available db,
6962     by documenting it on the dpkg(1) man page, and warning whenever dpkg
6963     finds unknown packages while setting the selections. Closes: #703092
6964   * Print nicer error messages in perl scripts using Getopt::Long by trapping
6965     $SIG{__WARN__} to call usageerr() on option parse errors.
6966   * Move the exit call out from usage() in dpkg-scansources so that usageerr()
6967     gives a correct exit code. Thanks to Bernhard R. Link <brlink@debian.org>.
6968   * Print correct error message on unknown dpkg-name options before --.
6969   * Require at least one filename on dpkg-name after --.
6970   * Switch program usage errors to not print entire --help output.
6971     Closes: #681371
6972   * Document that «dpkg-parsechangelog -l-» can be used to read from stdin.
6973   * Support parsing compressed changelog files transparently. Closes: #684196
6974   * Sort files inside new diffs generated by dpkg-source lexicographically.
6975     Closes: #689193
6976   * Add support for a build_arch option in Dpkg::Deps deps_parse().
6977     Thanks to Colin Watson <cjwatson@ubuntu.com>. Closes: #697297
6978   * Move epoch-less or revision-less output logic to Dpkg::Version.
6979     Based on a patch by Bernhard R. Link <brlink@debian.org>.
6980   * Catch mismatches between version strings and format versions in
6981     dpkg-source. Ensure that a 3.0 (quilt) package has a non-native version
6982     and that a 3.0 (native) package has a native version. Closes: #700177
6983     Thanks to Bernhard R. Link <brlink@debian.org>.
6984   * Add support for mipsn32(el) and mips64(el) to arch tables.
6985     Thanks to YunQiang Su <wzssyqa@gmail.com>. Closes: #685096, #707323
6986   * Document --file and --label parser options in dpkg-parsechangelog(1).
6987   * Add a new configure --with-dpkg-deb-compressor option to allow selecting
6988     the default dpkg-deb compressor, mainly for downstreams.
6989   * Switch dpkg-deb default compressor from gzip to xz. Build dpkg.deb using
6990     gzip to make debootstrap life easier on non-Debian based systems.
6991   * Add support for gzip compression strategies to dpkg-deb. The new
6992     strategies are: filtered, huffman, rle and fixed.
6993   * Change dpkg and dpkg-deb help output to recommend apt instead of dselect
6994     as a user-friendly frontend.
6995   * Remove temporary file on error during «dpkg-divert --rename».
6996   * Fix value caching in Dpkg::Arch by not shadowing the variables.
6997   * Fix chmod() arguments order in Dpkg::Source::Quilt. Closes: #710265
6998     Thanks to Pablo Oliveira <pablo@sifflez.org>.
6999   * Add new dpkg-shlibdeps -l option to add private shared library directories.
7000     This should be used instead of abusing LD_LIBRARY_PATH to pass the paths,
7001     which might be problematic when cross-compiling. Closes: #698881
7002   * Only apply empty line and comma cleanups when doing substvar replacements
7003     on fields where those are relevant. Closes: #659814
7004   * Do not scan control files twice for PGP signature presence.
7006   [ Raphaël Hertzog ]
7007   * Fix dpkg-maintscript-helper rm_conffile and mv_conffile to do nothing
7008     when the conffile is no longer owned by the current (or named) package.
7009     Thanks to Steve Langasek for the patch. Closes: #716948
7010   * Improve dpkg-maintscript-helper behaviour in “Multi-Arch: same” packages
7011     by arch-qualifying package names read from the environment. Also add
7012     a warning about this potential problem in the manual page.
7013   * Fix usage of non-existent _() function in multiple places of the Perl
7014     code. Thanks to Lincoln Myers <lincoln@netapp.com> for the patch.
7015     Closes: #708607
7017   [ Updated programs translations ]
7018   * Fix typo in Spanish translation of update-alternatives.
7019     Thanks to Javier Fernandez-Sanguino <jfs@debian.org>. Closes: #713020
7021   [ Updated programs translations ]
7022   * Vietnamese (Trần Ngọc Quân). Closes: #715334
7024   [ Added man pages translations ]
7025   * Italian (Beatrice Torracca). Closes: #711647
7027   [ Updated man pages translations ]
7028   * Fix wrong translation of "fortify" in French dpkg-buildflags(1) man page.
7029     Thanks to Christian Perrier <bubulle@debian.org>. Closes: #712976
7030   * Fix typo in dpkg-source(1) man page French translation.
7031     Thanks to Cédric Boutillier <boutil@debian.org>. Closes: #708292
7032   * Japanese (TAKAHASHI Motonobu). Closes: #704240
7034  -- Guillem Jover <guillem@debian.org>  Fri, 26 Jul 2013 23:54:54 +0200
7036 dpkg (1.16.10) unstable; urgency=low
7038   [ Guillem Jover ]
7039   * Fix typos in 1.16.9 changelog entry. Closes: #691954
7040     Thanks to Nicolás Alvarez <nicolas.alvarez@gmail.com>.
7041   * Add missing @LIBLZMA_LIBS@ to Libs.Private in libdpkg.pc.in.
7042   * Do not use an undefined va_list variable in dpkg_put_errno().
7043   * Abort installation if we cannot set the security context for a file.
7044   * Fix OpenPGP armored signature parsing, to be resilient against doctored
7045     input, including source package control files. Closes: #695919
7046   * Make sure the OpenGPG armor contains a signature block, even on EOF.
7047   * Do not accept Armor Header Lines inside a paragraph.
7048   * Do not abort dselect when multiarch is detected, as that only makes
7049     users downgrade and hold on an older version w/ worse multiarch support.
7050   * Fix warning in Dpkg::Source::Archive with «perl -w» due to redefinition
7051     of getcwd() by removing unused POSIX modules usage. Closes: #700978
7053   [ Updated programs translations ]
7054   * Esperanto (Felipe Castro).
7055   * Spanish (Javier Fernández-Sanguino).
7056   * Vietnamese (Trần Ngọc Quân). Closes: #692100
7058   [ Updated scripts translations ]
7059   * Fix mistranslation in French translation of scripts.
7060     Thanks to Filipus Klutiero. Closes: #698530
7061   * Fix typos in French translation of scripts.
7062     Thanks to Sylvestre Ledru. Closes: #702627
7063   * Fix Russian translation (wrong order of parameters in a string).
7064     Thanks to Andrey Rahmatullin for noticing and Yuri Kozlov for fixing
7065     the translation. Closes: #698869
7067  -- Guillem Jover <guillem@debian.org>  Fri, 08 Mar 2013 04:41:26 +0100
7069 dpkg (1.16.9) unstable; urgency=low
7071   [ Raphaël Hertzog ]
7072   * Fix dpkg-source regression in "3.0 (quilt)" source packages while
7073     unapplying patches that remove all files in a directory. Closes: #683547
7074   * Fix segfault in field format parsing on empty strings, affecting
7075     «dpkg-query -W -f ''» and «dpkg-deb -W --showformat=''». LP: #1035512
7076   * Fix dpkg's French usage string which was missing the final “s“ in
7077     --print-foreign-architectures. Closes: #685863
7079   [ Guillem Jover ]
7080   * Use “statoverrides” instead of “statusoverrides” in dpkg-statoverride.
7081     Closes: #686995
7082   * Comment out dpkg(1) documentation about disabled --command-fd option.
7083     Closes: #685677
7084   * Cleanup dpkg-divert unit-test environment to avoid build failures.
7085     Closes: #687656
7086   * Fix update-alternatives test suite to behave correctly on non-Debian
7087     binary paths. Known to be affecting at least Gentoo and Mac OS X.
7088   * Do not leak subcall command arguments in update-alternatives.
7089   * Fix segfault on update-alternatives when passing --slave without any
7090     action at all. LP: #1037431
7091   * Fix memory leak in dpkg filesavespackage().
7092   * Do not print garbage (or worse) on dpkg shared conffile debug output.
7093   * Use a hash instead of a ref to a hash for keys() in Dpkg::BuildFlags
7094     get_feature_areas(). This causes compilation failures with older perl
7095     versions, which can be an issue with partial upgrades.
7096   * Fix filter subpattern debug output format string to print an actual
7097     value instead of just blanks.
7098   * Ignore trailing filter subpattern slashes on reinclusion comparison.
7099     This makes sure to reinclude directories previously excluded so that
7100     contained files marked for inclusion do not fail to unpack due to a
7101     missing directory. Closes: #688416
7102   * Do not consider obsolete conffiles as actively owned by the package.
7103     This ensures conffile entries are not mishandled nor mixed up when
7104     configuring packages owning the non-obsolete conffiles. Closes: #689836
7105     Based on a patch by Andreas Beckmann <debian@abeckmann.de>.
7106   * Properly mark in the database obsolete conffiles on package replaces.
7107   * Sync the Conffiles field values for all package instances. Because
7108     only the first package instance being configured will have a *.dpkg-new
7109     conffile available to be processed, the subsequent ones need to use the
7110     hash from the previously processed entries.
7111   * Fix logic for previously configured conffiles, so that the shared
7112     conffile checks actually work on reinstallation. Closes: #684776
7113   * Avoid info database corruption and bogus accesses on unknown format
7114     values, by always reading the format file and validating it.
7115   * Clarify that the most probable reason for multiarch database
7116     inconsistencies is due to upgrades from unofficial dpkg versions.
7117   * Only satisfy a dependency on a “Multi-Arch: foreign” if arch-unqualified.
7118   * Take architecture into account in virtual packages on remove and
7119     configure dpkg actions. Closes: #683411
7120   * Update update-alternatives --query format and examples in man page to
7121     match the implementation.
7122   * Add two missing 3rd person ‘s’ in dpkg-gensymbols(1). Closes: #689863
7123     Thanks to Paul Menzel <pm.debian@googlemail.com>.
7124   * Fix regression on old-style binNMUs for packages that specify an
7125     explicit binary version to dpkg-gencontrol, by always fixing up the
7126     source version. Closes: #690823
7128   [ Updated programs translations ]
7129   * Catalan (Guillem Jover).
7130   * Czech (Miroslav Kure).
7131   * Danish (Joe Dalton). Closes: #690808
7132   * French (Christian Perrier).
7133   * German (Sven Joachim).
7134   * Italian (Milo Casagrande).
7135   * Japanese (Kenshi Muto).
7136   * Polish (Michał Kułach). Closes: #690449
7137   * Portuguese (Miguel Figueiredo). Closes: #682582, #690431
7138   * Russian (Yuri Kozlov). Closes: #688050, #690415
7139   * Slovak (Ivan Masár). Closes: #690426
7140   * Swedish (Peter Krefting).
7141   * Thai (Theppitak Karoonboonyanan). Closes: #690678
7142   * Traditional Chinese (imacat). Closes: #687002
7144   [ Updated scripts translations ]
7145   * Polish (Michał Kułach). Closes: #683104
7146   * Spanish (Omar Campagne). Closes: #685297
7148   [ Updated dselect translations ]
7149   * Basque (Iñaki Larrañaga Murgoitio). Closes: #686421
7150   * Czech (Miroslav Kure).
7151   * Danish (Joe Dalton). Closes: #689820
7152   * Polish (Michał Kułach).
7154   [ Updated man pages translations ]
7155   * French (Thomas Vincent, Sylvestre Ledru, Christian Perrier).
7156     Closes: #682978, #683221
7157   * German (Helge Kreutzmann).
7158   * Japanese (Hideki Yamane). Closes: #685103
7159   * Polish (Michał Kułach).
7160   * Spanish (Omar Campagne, Guillem Jover). Closes: #683514
7161   * Swedish (Peter Krefting).
7163  -- Guillem Jover <guillem@debian.org>  Sat, 20 Oct 2012 05:59:50 +0200
7165 dpkg (1.16.8) unstable; urgency=low
7167   [ Updated programs translations ]
7168   * Esperanto (Felipe Castro).
7169   * French (Christian Perrier).
7170   * Polish (Michał Kułach). Closes: #680561
7171   * Russian (Yuri Kozlov). Closes: #677850, #680411
7172   * Slovak (Ivan Masár).
7173   * Spanish (Javier Fernández-Sanguino)
7175   [ Updated man pages translations ]
7176   * French (Christian Perrier).
7178   [ Updated scripts translations ]
7179   * French (Christian Perrier).
7180   * Russian (Yuri Kozlov).
7182   [ Updated dselect translations ]
7183   * Danish (Joe Dalton). Closes: #680108
7184   * Russian (Yuri Kozlov).
7185   * Traditional Chinese (Asho Yeh - 阿信).
7187  -- Guillem Jover <guillem@debian.org>  Sat, 21 Jul 2012 02:11:04 +0200
7189 dpkg (1.16.7) unstable; urgency=low
7191   [ Guillem Jover ]
7192   * Fix bogus dpkg-query --control-show badusage() strings.
7194   [ Raphaël Hertzog ]
7195   * Fix dpkg-gencontrol to correctly compute the source version
7196     in the case of "old-style" bin-nmus. Closes: #679959
7198   [ Updated dselect translations ]
7199   * Catalan (Guillem Jover).
7200   * French (Christian Perrier).
7201   * German (Sven Joachim).
7202   * Swedish (Peter Krefting).
7204   [ Updated programs translations ]
7205   * French (Christian Perrier).
7206   * German (Sven Joachim).
7207   * Italian (Milo Casagrande).
7208   * Swedish (Peter Krefting).
7210   [ Updated man pages translations ]
7211   * Swedish (Peter Krefting).
7212   * French (Christian Perrier).
7214   [ Updated scripts translations ]
7215   * Swedish (Peter Krefting).
7216   * French (Christian Perrier).
7218  -- Raphaël Hertzog <hertzog@debian.org>  Mon, 02 Jul 2012 21:16:12 +0200
7220 dpkg (1.16.6) unstable; urgency=low
7222   [ Guillem Jover ]
7223   * Do not translate SELinux context to human readable form while unpacking,
7224     as that might cause the operation to fail if the mcstransd daemon
7225     stopped running during the transaction. Closes: #679641
7226     Thanks to Russell Coker <russell@coker.com.au>.
7227   * Add --control-list and --control-show to dpkg-query --help output.
7229   [ Raphaël Hertzog ]
7230   * Fix import of error functions in dpkg-buildflags. Regression introduced
7231     in 1.16.5.
7233   [ Updated scripts translations ]
7234   * German (Helge Kreutzmann).
7236   [ Updated man pages translations ]
7237   * German (Helge Kreutzmann).
7239  -- Guillem Jover <guillem@debian.org>  Sat, 30 Jun 2012 21:45:10 +0200
7241 dpkg (1.16.5) unstable; urgency=low
7243   [ Raphaël Hertzog ]
7244   * dpkg-source will now clean up after a failed application of a quilt
7245     patch. Closes: #652970
7246     And it will display a message explaining the most likely cause of
7247     failure (patch applying with fuzz).
7248   * When dpkg-source regenerates the automatic patch (with formats "2.0"
7249     or "3.0 (quilt)") it will keep the current patch header to avoid
7250     losing changes made by the maintainer.
7251   * Modify dpkg-source --commit to auto-whitelist modified binary files.
7252     That way the same command can be used whatever kind of upstream files
7253     has been modified.
7254   * dpkg-source now supports a new option --no-unapply-patches to force
7255     patches to be kept applied after build (used by formats "2.0" and "3.0
7256     (quilt)"). Closes: #643043
7258   [ Guillem Jover ]
7259   * Add a dpkg-buildflags --status action to describe the flag settings.
7260     Thanks to Bernhard R. Link <brlink@debian.org>. Closes: #664058
7261   * Add support for “binary-only” key-value option in changelogs, to allow
7262     marking changelog entries as part of a binary only upload, having a
7263     different version from the source package. Closes: #440094, #672723
7264   * Minimize source architecture list on «dpkg-source -b» by removing
7265     architectures already covered by architecture wildcards. Closes: #675333
7266   * Do not assume $ENV{'HOME'} is defined in Dpkg::Source::Package.
7267     Thanks to Niels Thykier <niels@thykier.net>. Closes: #677631
7268   * Document in more detail in deb(5) the supported ar archive format.
7269   * Document in deb-src-control(5) the “Private-” field prefix.
7270   * Add new start-stop-daemon --no-close option to disable closing file
7271     descriptors on --background. Closes: #627333, #646425
7272   * Switch source compression to xz.
7273   * Detect ar header fields truncation due to too long member names or too
7274     large member sizes. Closes: #678933
7275   * Add new dpkg-query --control-list and --control-show commands, which
7276     replace the now deprecated --control-path.
7277   * Print master and slave alternative link names in update-alternatives
7278     --query and always print alternative link in --config. Closes: #679010
7279   * Cleanup and clarify buffer I/O error reporting. Closes: #621763
7280   * Avoid full stop and double newline at the end of errors and warnings.
7281     Thanks to Jonathan Nieder <jnieder@gmail.com>. Closes: #624000
7282   * Change all programs to accept -? instead of -h for help output.
7283   * Add support for specific arch-qualified dependencies. Closes: #676232
7284     Thanks to Thibaut Girka <thib@sitedethib.com>.
7285   * Accept “:native” arch-qualified Build-Dependencies. Closes: #558095
7286     Thanks to Thibaut Girka <thib@sitedethib.com>.
7287   * Do not use undefined values returned form deps_parse() in dpkg-shlibdeps.
7288     Closes: #640676
7289   * Add an Architecture column to «dpkg-query -l» before the Description
7290     column. Suggested by Jonathan Nieder <jnieder@gmail.com>. Closes: #673190
7292   [ Updated programs translations ]
7293   * Swedish (Peter Krefting).
7295   [ Updated dselect translations ]
7296   * Swedish (Peter Krefting).
7298   [ Updated scripts translations ]
7299   * German (Helge Kreutzmann).
7301   [ Updated man pages translations ]
7302   * German (Helge Kreutzmann).
7303   * Swedish (Peter Krefting).
7305  -- Guillem Jover <guillem@debian.org>  Sat, 30 Jun 2012 04:28:51 +0200
7307 dpkg (1.16.4.3) unstable; urgency=low
7309   * On «update-alternatives --install» only warn for now on out of range
7310     priorities and clamp the values, as there seems to be packages using
7311     priorities > INT_MAX, which although bogus as they were previously
7312     overflowing the int used to store them, that would cause installation
7313     failures when upgrading from squeeze. This will be reverted to an
7314     error after wheezy. Closes: #676874
7316  -- Guillem Jover <guillem@debian.org>  Sun, 17 Jun 2012 10:56:15 +0200
7318 dpkg (1.16.4.2) unstable; urgency=low
7320   * Check correctly for out of range negative field width values in dpkg-query
7321     --show format strings. Regression introduced in 1.16.4. Closes: #676796
7323  -- Guillem Jover <guillem@debian.org>  Sat, 09 Jun 2012 16:16:17 +0200
7325 dpkg (1.16.4.1) unstable; urgency=low
7327   * Fix explicit file trigger activation. Regression introduced in 1.16.4.
7328     Closes: #676684
7330  -- Guillem Jover <guillem@debian.org>  Fri, 08 Jun 2012 23:17:11 +0200
7332 dpkg (1.16.4) unstable; urgency=low
7334   [ Guillem Jover ]
7335   * Deprecate compressing .deb files with lzma, by making dpkg-deb issue a
7336     warning, as the format has several deficiencies that have been addressed
7337     by upstream in xz. Although unpacking will be kept being supported to
7338     handle existing lzma compressed .deb files.
7339   * Add alternative changelog formats documentation from the policy manual
7340     to dpkg-parsechangelog(1). Closes: #584141
7341   * Add MiNT support to ostable and triplettable.
7342     Requested by Thorsten Glaser <tg@mirbsd.de>.
7343   * Add new frontend.txt file to dpkg-dev documenting some public interfaces
7344     for dpkg frontends. Closes: #670897
7345   * Clarify in dpkg(1) when --force-conf* options cause action.
7346     Suggested by Sven Joachim <svenjoac@gmx.de>. Closes: #391818
7347   * Add “gcc | c-compiler” to libdpkg-perl Suggests, due to Dpkg::Arch usage.
7348     Closes: #671198
7349   * Do not mask PIE from dpkg-buildflags on m68k, it appears to work now.
7350     Requested by Thorsten Glaser <tg@mirbsd.de>.
7351   * Remove deprecated support for PGP style signing command interface from
7352     dpkg-buildpackage.
7353   * Remove obsolete --udeb dpkg-scanpackages option.
7354   * Add arm64 support to cputable. Closes: #672408
7355     Thanks Wookey <wookey@wookware.org>.
7356   * Check parsed integers for invalid or no digit errors in start-stop-daemon
7357     and update-alternatives.
7358   * Check all parsed integers for out of range errors; i.e. that no negative
7359     values are allowed if not appropriate, and that no overflows occur.
7360     Closes: #580038
7361   * Switch start-stop-daemon(8) man page examples from /var/run to /run.
7362   * Do not obscure Dpkg::Source::Package ‘require’ errors with custom
7363     error message. Thanks to Thomas Adam <thomas.adam@smoothwall.net> and
7364     Jonathan Nieder <jrnieder@gmail.com>.
7365   * Add new Dpkg::Substvars::set_as_used() member function.
7366   * Rename Dpkg::Substvars no_warn() member function to mark_as_used(), keep
7367     the old name aliased to the new one producing a deprecation warning.
7368   * Add support for Build-Depends-Arch and Build-Conflicts-Arch fields, and
7369     a new -A option to dpkg-checkbuilddeps. Closes: #629480
7370     Thanks to Roger Leigh <rleigh@debian.org>.
7371   * Add support for “none” as a valid dpkg-deb compression strategy value.
7372     Closes: #674711
7373   * Clarify in dpkg(1) that the «dpkg -l» example only lists installed
7374     packages, and that to list available packages «dpkg-query --load-avail»
7375     has to be used instead. Closes: #673305
7376   * Clarify also in the dpkg(1) man page (already present in the dpkg.cfg(5)
7377     man page) the valid filenames for /etc/dpkg/dpkg.cfg.d/ fragment files.
7378     Closes: #674674
7379   * Fix start-stop-daemon to not follow symlinks when creating pidfiles.
7380     Thanks to Carsten Hey <carsten@debian.org>. Closes: #675918
7381   * Refactor the file locking logic into a new Dpkg::File module, and move
7382     the libfile-fcntllock-perl dependency from dpkg-dev to libdpkg-perl.
7383   * Demote the libfile-fcntllock-perl Depends to a Recommends by falling back
7384     to use flock based locking, because it being an XS module makes building
7385     a new perl package bumping the perl ABI impossible, as both packages
7386     become uninstallable. Thanks to Dominic Hargreaves <dom@earth.li>.
7387     Closes: #675947
7388   * Put an & before field_capitalize() calls in Dpkg::Control::Fields to
7389     fix a usage before declaration warning with perl 5.16. Closes: #676262
7390   * Do not warn in dpkg-divert on missing files list file for packages never
7391     installed before. Closes: #673518
7392   * Add support for liblzma to handle .xz and .lzma compressed files, and
7393     switch to it instead of using xz-utils. This removes the xz-utils
7394     Pre-Depends from dpkg. Thanks to Jonathan Nieder <jrnieder@gmail.com>.
7395   * Always activate all path components for file triggers, this fixes file
7396     trigger handling for conffiles and dpkg-trigger invocations.
7397     Closes: #675613, #676061, #676062, #676107, #676118, #676122
7398   * Do not reset Multi-Arch field in the update log when removing the package.
7399     Closes: #676496
7400   * Fix dpkg-split to honor the DPKG_ADMINDIR environment variable.
7402   [ Updated man pages translations ]
7403   * German (Helge Kreutzmann).
7404   * French (Christian Perrier). Fixes a mistranslation and some
7405     inconsistencies reported by Vincent Danjean( thanks). Closes: #673158
7407  -- Guillem Jover <guillem@debian.org>  Thu, 07 Jun 2012 23:43:19 +0200
7409 dpkg (1.16.3) unstable; urgency=low
7411   [ Guillem Jover ]
7412   * Do not look for newline beyond the read buffer on dpkg-deb extract.
7413   * Check update-alternative name and link arguments for all commands.
7414     Closes: #665050
7415   * Check all dpkg-divert filename arguments to be absolute and to not
7416     contain newlines. Closes: #21722
7417   * Print errors while reading the file list files on a new line instead
7418     of just after the progress percentage. Closes: #552517
7419   * Document in dpkg-source(1) that patches for source format “3.0 (quilt)”
7420     are expected to apply without any fuzz. Closes: #666752
7421     Based on a patch by Luca Capello <luca@pca.it>.
7422   * Remove redundant -Wformat-security from default dpkg-buildflags, which
7423     is already implied by -Werror=format-security. Closes: #664964
7424     Suggested by Peter Eisentraut <petere@debian.org>.
7425   * Document in dpkg-query(1) that commands producing multiple paragraphs
7426     will preserve the order of the packages specified on the argument list.
7427   * Change start-stop-daemon --exec on GNU/Hurd, FreeBSD, NetBSD, OpenBSD
7428     and Solaris to check for executables matching device and inode numbers
7429     instead of filenames.
7430   * Change start-stop-daemon --name on GNU/Hurd to check the process' argv[1]
7431     in addition to argv[0], to handle both binaries and interpreted scripts.
7432     Reported by Mats Erik Andersson <mats.andersson@gisladisker.se>.
7433   * Handle deb format versions as major.minor integers instead of strings or
7434     floats, the latter being susceptible to parsing errors depending on the
7435     current locale (although this was only affecting the old deb format).
7436   * Ignore the minor format version number for deb-split format, unifying
7437     the behavior with the deb format.
7438   * Add support for an abitable containing arch attribute overrides.
7439   * Add x32 support to abitable, ostable and triplettable. Closes: #667037
7440   * Fix start-stop-daemon to work with relative --exec arguments and --chdir.
7441     Closes: #669047
7442   * Ignore request to rename a file owned by the diverting package on
7443     «dpkg-divert --add --rename». Closes: #588077
7444   * Clarify dpkg-gensymbols(1) by way of examples that architecture wildcards
7445     are supported in symbols files. Closes: #670048
7446   * Fix memory leak due to Dpkg::Control objects not being garbage-collected.
7447     Thanks to Ben Harris <bjh21@cam.ac.uk>. Closes: #669012
7448   * Compute the md5sum hash on unpack for empty files too, so that these
7449     can be checked correctly for matching content when installing multiple
7450     package instances.
7451   * Generate md5sums files automatically at unpack time if missing from the
7452     binary package. Closes: #155676, #155799
7453   * Add missing list and md5sums database file checks to «dpkg --audit».
7455   [ Helge Kreutzmann ]
7456   * Fix a typo in man/dpkg-buildflags.1.
7458   [ Updated programs translations ]
7459   * French (Christian Perrier).
7460   * German (Sven Joachim).
7461   * Swedish (Peter Krefting).
7463   [ Updated dselect translations ]
7464   * French (Christian Perrier).
7465   * German (Sven Joachim).
7466   * Swedish (Peter Krefting).
7468   [ Updated scripts translations ]
7469   * French (Christian Perrier).
7470   * Swedish (Peter Krefting).
7472   [ Updated man pages translations ]
7473   * French (Christian Perrier).
7474   * German (Helge Kreutzmann).
7475   * Swedish (Peter Krefting).
7477  -- Guillem Jover <guillem@debian.org>  Fri, 27 Apr 2012 10:10:10 +0200
7479 dpkg (1.16.2) unstable; urgency=low
7481   [ Guillem Jover ]
7482   * Move <config.h> and <compat.h> to the top of trigdeferred.l to properly
7483     use the configured features and compat code.
7484   * Honor --disable-nls when the system lacks obstack support, by updating
7485     the obstack compat module from gnulib.
7486   * Link the libdpkg unit tests with libcompat and libintl, so that systems
7487     needing them will compile correctly.
7488   * Check for the presence of the strnlen declaration and correctly provide
7489     the compat one in case the systems lacks it.
7490   * Do not assume existence of paths on the build system in the test suite.
7491   * Do not fail to link dselect on MacOS X when using --disable-nls.
7492   * Remove versioned coreutils Pre-Depends from dpkg due to the ancient
7493     md5sum transition. Reported by Bill Allombert <ballombe@debian.org>.
7494     Closes: #643746
7495   * Change dpkg-architecture to only compute the requested variables. This:
7496     - Fixes the bootstrapping problem, as the dpkg build system only needs
7497       the host architecture, for which dpkg itself is not required.
7498     - Reduces the amount of work performed, including loading and parsing
7499       unnecessary table files or calling either of gcc or dpkg programs.
7500   * Improve error message in dpkg-gencontrol and dpkg-gensymbols when
7501     debian/control does not have any package stanza. Closes: #642473
7502     Based on a patch by Kyle Willmon <kylewillmon@gmail.com>.
7503   * Add Pre-Depends on tar >= 1.23 (satisfied in stable) to dpkg due to it
7504     using the ‘--warning=no-timestamp’ option. Closes: #642802
7505   * Do not segfault on GNU/Linux when dpkg cannot retrieve the block size
7506     for the filesystem containing the info database. LP: #872734
7507   * Fix two memory leaks per tar entry in the tar extractor used on unpack.
7508   * Mark dpkg and dselect as Multi-Arch foreign.
7509     Reported by Steve Langasek <vorlon@debian.org>.
7510   * Mark dpkg-dev and libdpkg-perl as Multi-Arch foreign. Closes: #648217
7511     Thanks to Colin Watson <cjwatson@ubuntu.com>.
7512   * Add new deb-origin.5 man page. Closes: #608884
7513     Thanks to Matt Kraai <kraai@ftbfs.org>.
7514   * Return correct status on start-stop-daemon --status when using --pidfile.
7515   * Treat dpkg-deb compression level independently for each backend. This
7516     has the effect of changing the current behavior for level 0 on all
7517     compressors except gzip.
7518   * Add new dpkg-deb -S option to specify the compression strategy. The only
7519     currently supported value is “extreme” for xz. Closes: #647915
7520   * Stop using brace expansion to install man pages by using dh_installman
7521     instead of dh_install, the former does not abort on empty glob expansion.
7522   * Do not use absolute paths for programs in perl and shell code.
7523   * Add missing ‘*’ in asprintf() and vasprintf() compat declarations.
7524   * Add support for virtual output binary:Summary and db:Status-Abbrev fields.
7525     Closes: #192619, #427945
7526   * Add support for virtual output source:Package and source:Version fields.
7527     Closes: #653575
7528   * Use a different temporary file per process on libcompat's vsnprintf()
7529     function to avoid race conditions from children after fork(3).
7530     Reported by Daniel Ruoso <daniel@ruoso.com>. Closes: #655411
7531   * Fix start-stop-daemon --exec and --name options on FreeBSD, NetBSD and
7532     OpenBSD by swapping the process matching implementations.
7533   * Fix start-stop-daemon --name option on GNU/Hurd to match the process name.
7534   * Document in more detail the implications of start-stop-daemon matching
7535     options. Closes: #367608
7536   * Improve and clarify dpkg-shlibdeps superfluous linking warning messages.
7537     Based on a patch by Peter Eisentraut <petere@debian.org>. Closes: #656496
7538   * Relax --merge-avail Packages file parser, to not fail on bogus versions.
7539   * When building only arch-indep binaries with «dpkg-buildpackage -A», name
7540     the .changes file using ‘all’ as architecture. Closes: #661638
7541   * Handle unknown architectures gracefully in dpkg-buildflags.
7542     Closes: #663004
7543   * Add missing --status-logger to dpkg --help output.
7544   * Do not print bogus errno string for invalid package names in dpkg
7545     --ignore-depends option.
7546   * Change dpkg-query to not load the available file by default for --list
7547     and --show, add a new --load-avail option to expose the old behavior.
7548   * Only allow setting selections via «dpkg --set-selections» for known
7549     packages (i.e. those present in either the status or available files).
7550   * Always ignore older versions when parsing the available file, not only
7551     for --update-avail and --merge-avail.
7552   * Mark not-installed non-arch-qualified selections for removal.
7553   * Add new «dpkg --assert-multi-arch» command to allow checking for
7554     multi-arch support availability.
7555   * Bump Standards-Version to 3.9.3 (no changes needed).
7556   * Add architecture consistency checks to «dpkg --audit».
7557   * Add new dpkg --add-architecture and --remove-architecture commands to
7558     track supported architectures.
7560   [ Raphaël Hertzog ]
7561   * Update Dpkg::Shlibs to look into multiarch paths when cross-building
7562     too. Closes: #595144
7563   * Rewrite architecture.mk with explicit loops instead of duplicating many
7564     similar lines. Based on a patch by Thorsten Glaser <tg@mirbsd.de>.
7565   * Modify dpkg-gencontrol and dpkg-distaddfile to grab a write lock
7566     on debian/control before updating debian/files to avoid simultaneous
7567     updates. Closes: #642608
7568     Add libfile-fcntllock-perl to dpkg-dev's Depends since we use this module
7569     to handle the locking.
7570   * Update dpkg-gensymbols(1) to clarify that -e accepts shell patterns
7571     expansions and not regular expressions. And let dpkg-gensymbols output a
7572     warning when a pattern doesn't match any file. Closes: #649248
7573   * Add new option "-a <arch>" to dpkg-checkbuilddeps to check build
7574     dependencies for another architecture. This is really basic for now since
7575     it assumes all build dependencies must be satisfied on the listed
7576     architecture. Closes: #648180 Thanks to Colin Watson for the patch.
7577   * Error out if a dpkg database .list file is not a regular file. LP: #369898
7578   * Fix dpkg-mergechangelogs to not error out on invalid versions.
7579     Closes: #651993
7580   * Fix dpkg-source --commit on "3.0 (quilt)" when an explicit patch file
7581     is given with a relative filename. Closes: #652414
7582   * Further clarify in dpkg-source(1) the conditions under which it's possible
7583     to pass an explicit patch file to dpkg-source --commit.
7584   * Add new --query-features command to dpkg-buildflags. Thanks to Kees Cook
7585     for the patch. Closes: #651481
7586   * Fix description of Multi-Arch in deb-control(5). Closes: #654453
7587     Thanks to Jakub Wilk for spotting the mistake.
7588   * Drop misleading spaces in deb-symbols(5) in the format description.
7589   * Clean up dpkg-architecture(1) dropping useless information and
7590     adding a reference to /usr/share/dpkg/architecture.mk.
7591   * Update dpkg-buildpackage to use the "build-arch" (for -B) and
7592     "build-indep" (for -A) targets unless "make -qn" says that they do not
7593     exist. Closes: #229357
7594   * Improve deb-shlibs(5) to mention that the dependency field must
7595     use the same syntax as a Depends field. Closes: #658696
7596   * Update dpkg-maintscript-helper(1) to recommend usage of the version
7597     removing/renaming a conffile with a "~" suffix as "priorversion"
7598     parameter. Thanks to Sam Morris <sam@robots.org.uk> for the patch.
7599     Closes: #658854
7600   * Fix debug output of dpkg-maintscript-helper. LP: #936340
7602   [ Jonathan Nieder ]
7603   * Bump po4a version in Build-Depends to 0.41, since earlier versions do
7604     not handle --srcdir correctly. Closes: #644370
7606   [ Guillem Jover, Steve Langasek, Raphaël Hertzog ]
7607   * Add new dpkg --print-foreign-architectures command.
7608   * Add support for virtual output binary:Package field.
7609   * Implement Multi-Arch support.
7611   [ Helge Kreutzmann ]
7612   * Fix a typo in man/dpkg-deb.1.
7614   [ Updated programs translations ]
7615   * German (Sven Joachim).
7616   * Italian (Milo Casagrande). Closes: #627832, #657849
7617   * Swedish (Peter Krefting).
7618   * French (Christian Perrier)
7619   * Polish (Michał Kułach). Closes: #658126
7621   [ Updated scripts translations ]
7622   * German (Helge Kreutzmann).
7623   * Spanish (Omar Campagne). Closes: #636238
7624   * Swedish (Peter Krefting).
7626   [ Updated man pages translations ]
7627   * German (Helge Kreutzmann), including typo fix in dpkg-genchanges
7628     Closes: #646496, sub optimal translation of package states LP: #368783
7629     and a fix by Chris Leick
7630   * Japanese (TAKAHASHI Motonobu).
7631   * Spanish (Omar Campagne). Closes: #643969
7632   * Swedish (Peter Krefting).
7633   * Minor errors corrected in French (thanks to David Prévot)
7634   * Fix translation of -B and -A options of dpkg-buildpackage.
7635     Thanks to Vincent Danjean. Closes: #654626
7637   [ Updated dselect translations ]
7638   * Dutch (Jeroen Schot). Closes: #651813
7640  -- Guillem Jover <guillem@debian.org>  Mon, 19 Mar 2012 07:27:12 +0100
7642 dpkg (1.16.1.2) unstable; urgency=medium
7644   [ Raphaël Hertzog ]
7645   * Fix another typo to correctly set DEB_*_ARCH_BITS in architecture.mk.
7646   * Set urgency to medium as changes are minor, and it should migrate
7647     quickly in case 1.16.2 comes soon.
7649   [ Jonathan Nieder ]
7650   * Update dpkg-buildflags(1) to note that the processor option
7651     -D_FORTIFY_SOURCE=2 is set in CPPFLAGS now instead of CFLAGS and
7652     CXXFLAGS. Closes: #646073
7654  -- Raphaël Hertzog <hertzog@debian.org>  Fri, 25 Nov 2011 11:18:30 +0100
7656 dpkg (1.16.1.1) unstable; urgency=low
7658   [ Raphaël Hertzog ]
7659   * Fix dpkg-source to not ignore the automatic patch when checking
7660     for unrecorded changes. Closes: #643148
7661   * Let dpkg-source --commit create debian/patches when required.
7662     Closes: #643037
7663   * Fix dpkg-buildflags --dump to return 0 as exit code and not 1.
7664   * Update dpkg-buildflags(1) to not include quotes in the examples
7665     setting DEB_BUILD_MAINT_OPTIONS.
7666   * Stop outputting build flags in dpkg-buildpackage as it confuses
7667     maintainers who are overriding them in debian/rules and who
7668     are not seeing the expected value in the build log.
7669   * Fix trigger setup code to not reset the status of packages
7670     when they are in a status different from triggers-awaited,
7671     triggers-pending or installed. Closes: #644492
7672   * Fix dpkg-source to ignore changes on debian/patches/.dpkg-source-applied
7673     when building a "2.0" source package. Closes: #642656
7674   * Fix buildflags.mk to re-export the environment variables that
7675     the maintainer can use to change the build flags. Closes: #644412
7677   [ Guillem Jover ]
7678   * Change dpkg-buildflags to set preprocessor option -D_FORTIFY_SOURCE=2
7679     in CPPFLAGS, instead of CFLAGS and CXXFLAGS. Closes: #642521, #643632
7680   * Fix typo to correctly set DEB_*_ARCH_BITS instead of DEB_*_ARCH in
7681     architecture.mk. Thanks to Thorsten Glaser <tg@mirbsd.org>.
7682   * Make dpkg-buildflags disable full relro (bindnow) if relro is not enabled.
7684  -- Guillem Jover <guillem@debian.org>  Fri, 14 Oct 2011 07:08:31 +0200
7686 dpkg (1.16.1) unstable; urgency=low
7688   [ Raphaël Hertzog ]
7689   * Dpkg::Deps: Implement new "reset" method and bump module version to 1.01
7690     due to this.
7691   * Improved description of --search in dpkg-query(1). Closes: #621066
7692     Thanks to Lars Buitinck <larsmans@gmail.com> for the patch.
7693   * Let update-alternatives fsync() its administrative files before
7694     moving them in place to avoid empty files with some filesystems.
7695     LP: #344019
7696   * Tighten the regexp used by dpkg-source to ignore the .pc directory of
7697     quilt. Thanks to Mike Hommey for noticing the problem.
7698   * Change behaviour of dpkg-source's --extend-diff-ignore to also
7699     extend the current diff-ignore if it has already been set.
7700   * Fix dependency checking code to consider a dependency on a virtual
7701     package provided by a package in triggers-pending status as satisfied.
7702   * Do not fail when encountering a pre-dependency in triggers-awaited state,
7703     instead process the awaited triggers. Closes: #526774
7704   * "any" no longer hides "all" in the Architecture field of a .dsc.
7705   * Fix dpkg --remove to really remove the triggers from the various
7706     internal files in /var/lib/dpkg/info/triggers/. Closes: #525160
7707   * Avoid a perl warning in dpkg-gensymbols when no symbols file has been
7708     generated (because it would have been empty). Closes: #626684
7709   * Re-enable the Package-List field but drop the Architecture column since we
7710     have no clear use case yet. It can always be added later on.
7711     Also drop the source line since it duplicates other fields.
7712     Closes: #619131
7713   * Add the extraction part of Dpkg::Source::Package to the supported API.
7714     Useful to extract source packages without having to depend on dpkg-source
7715     (and hence dpkg-dev).
7716   * Add the Dpkg::Vendor module to the supported API. Useful for lintian
7717     when dpkg-dev is absent.
7718   * Check presence of required parameters in dpkg-vendor. Closes: #628726
7719     Thanks to Niels Thykier <niels@thykier.net> for the patch.
7720   * Avoid a Perl warning in dpkg-buildflags when HOME is not set.
7721     Closes: #635467
7722   * dpkg-source can now also use debian/source/local-patch-header (that is not
7723     included in the generated source package) instead of
7724     debian/source/patch-header. Closes: #629582
7725   * Changed dpkg-source --after-build to automatically unapply patches that it
7726     has applied during --before-build.
7727   * Fix two possible causes for the assertion failure "pigp->trigpend_head".
7728     LP: #798793, #424358 Closes: #560251
7729   * Use "special" instead of "particular" to qualify the "3.0 (custom)" format
7730     in dpkg-source(1). Closes: #631435
7731   * Add some supplementary checks to ensure debian/control has the required
7732     fields. Closes: #631439
7733   * dpkg-gensymbols(1): document syntax of comments. Closes: #630996
7734   * Allow empty lines in symbols files to better delimit multiple libraries.
7735     Thanks to Cyril Brulebois <kibi@debian.org> for the patch.
7736   * dpkg: if "prerm upgrade" fails when downgrading, do not try to run
7737     "prerm failed-upgrade" with the prerm of the oldest prerm, it can't work
7738     around a bug of a newer prerm anyway.
7739   * dpkg: support new "interest-noawait" and "activate-noawait" trigger
7740     directives.
7741   * dpkg-buildflags(1): make it clear that DEB_*_(SET|APPEND) environment
7742     variables are meant for users and should not be used by packages.
7743   * update-alternatives: do not allow reusing a slave link in another
7744     slave alternative. Closes: #631547
7745   * Improve dpkg-source's logic to identify ignored files. Closes: #632168
7746   * Fix a small typo in dpkg-source(1). Closes: #632937
7747   * Reword the description of dpkg-source --before-build and --after-build
7748     to be clearer. Closes: #608260
7749   * dpkg-buildpackage no longer exports the compiler flags. Closes: #560070
7750     Packages must directly call dpkg-buildflags to retrieve them.
7751   * dpkg-buildflags supports a prepend command to modify the build
7752     flags. Particularly useful for package maintainers who don't want
7753     their supplementary flags to take precedence over user submitted
7754     flags.
7755   * Add new --dump action to dpkg-buildflags and make it the default action.
7756     Closes: #603435
7757   * dpkg-mergechangelogs now checks the return value of the close() call.
7758     Thanks to Niels Thykier <niels@thykier.net> for the patch. Closes: #633539
7759   * Similar changes to dpkg-shlibdeps and dpkg-gencontrol, also by Niels.
7760   * Fix update-alternatives to not remove a real file when dropping a
7761     symlink for a slave that's not provided by the new current choice.
7762     Closes: #633627
7763   * Improve dpkg-source's error message complaining about the lack
7764     of the upstream tarball. Closes: #634510
7765   * Add some common makefile snippets for use in rules files in
7766     /usr/share/dpkg/: default.mk, architecture.mk, buildflags.mk, pkg-info.mk,
7767     vendor.mk Closes: #606839
7768   * Fix the dpkg-divert test-suite to also skip test that would fail if run
7769     under root. Closes: #634961
7770   * Change merge conflict separators created by dpkg-mergechangelogs to match
7771     the usual norm of being composed of 7 characters. LP: #815700
7772   * With source format 2.0 and 3.0 (quilt), dpkg-source now fails by default
7773     when upstream changes have not been recorded in a quilt patch. The new
7774     --commit operation can be used to properly record the changes before-hand.
7775     LP: #797839
7776     And it fails before installing the automatic patch in debian/patches/
7777     Closes: #615899
7778   * dpkg-buildflags now supports "--export=configure" to output compilation
7779     flags on a single line with double quotes as delimiter of the various
7780     values. It also uses DEB_<flag>_MAINT_<op> to let the maintainer
7781     extend the build flags to use. Last but not least, it can now also strip
7782     options from the returned build flags.
7783   * Fix possible segfault of dpkg in findbreakcycle(). LP: #733414
7784   * dpkg-source now properly cleans up the temporary tarball generated for
7785     native formats in case of unexpected interruption. Closes: #631494
7786   * Fix simplification logic of union dependencies. Closes: #637564
7787   * Fix dpkg's handling of a hardlink pointing to a conffile. Closes: #638291
7788   * Add example of extend-diff-ignore's usage in dpkg-source(1).
7789     Closes: #640198
7790   * dpkg-buildflags now returns hardening flags by default. Closes: #489771
7791     They can be individually enabled/disabled via DEB_BUILD_MAINT_OPTIONS,
7792     see dpkg-buildflags(1). Thanks to Kees Cook for his help.
7794   [ Guillem Jover ]
7795   * Install deb-src-control(5) man pages in dpkg-dev. Closes: #620520
7796   * Add ‘.gitmodules’ to the default dpkg-source ignore lists. Closes: #620490
7797   * Document in dpkg-query(1) man page that on --listfiles each list of
7798     files per package name is separated by a blank line. Same goes for
7799     --status and --print-avail.
7800   * Use execvp(3) unconditionally in command_exec(). Making the call always
7801     fallback to use the system shell in case of error, such as with empty
7802     maintainer scripts. Thanks to Jonathan Nieder <jrnieder@gmail.com>.
7803     Closes: #622094
7804   * Improve deb-split(5) format description by splitting debian-split
7805     member contents into a list.
7806   * Switch to debhelper compatibility level 7.
7807     - Use dh_prep instead of deprecated “dh_clean -k”.
7808   * Bump Standards-Version to 3.9.2 (no changes needed).
7809   * Generate filenames following current conventions on “dpkg-split --join”,
7810     by including the architecture in the debian-split member of a split
7811     package and using underscores to separate filename parts.
7812   * Support conffiles with spaces when diffing them. Closes: #147583
7813   * Allow installing packages with bogus versions with new
7814     --force-bad-version.
7815   * Do not fail when unpacking a diverted hardlink. Closes: #245322
7816     Based on a patch by Christopher Baines <cbaines8@gmail.com>.
7817   * Document in dpkg-deb(1) that --fsys-tarfile will always process the
7818     input archive sequentially. Closes: #616609
7819   * Remove long non-functional --new and --old dpkg-deb option handling
7820     from dpkg which were being treated as dpkg commands.
7821   * Remove reference to --nocheck dpkg-deb option from dpkg man page as
7822     the latter does not pass it to the former.
7823   * Clarify the current dpkg behavior when running the dpkg-deb and
7824     dpkg-query back-ends, of not passing through back-end specific options
7825     when running them from dpkg. Closes: #610940
7826   * Use “unselected” as an adjective in dpkg output messages instead of
7827     “deselected”. Closes: #231089
7828   * Clarify exit status in dpkg-split and start-stop-daemon --help output.
7829   * Clarify “EXIT STATUS” section in man pages by using a table.
7830   * Add a --status command to start-stop-daemon returning LSB Init Script
7831     status action exit codes.
7832   * Add start-stop-daemon process name kernel limits for Solaris, NetBSD,
7833     OpenBSD, FreeBSD and Darwin.
7834   * On package removal, keep only directories actually containing conffiles,
7835     and not directories just matching the substring in the conffile or the
7836     directory itself. Thanks to Ondřej Surý <ondrej@debian.org>.
7837   * On purge correctly remove symlinks acting as directories, when they are
7838     not being used by any other package's files.
7839   * Do not lose track of parent directories on removal so that they can
7840     be properly cleaned up on purge if not used by any other package.
7841     Based on a patch by Ondřej Surý <ondrej@debian.org>. Closes: #454694
7842   * Add ‘.hgsigs’ to the default dpkg-source ignore lists.
7843     Based on a patch by Jakub Wilk <jwilk@debian.org>. Closes: #627462
7844   * Do not allow blank lines in field values. Closes: #308082
7845   * Do not warn on missing architecture on packages in config-files state,
7846     but then make sure the architecture field is usable. Closes: #604241
7847   * Run du with --apparent-size when generating the Installed-Size field in
7848     dpkg-gencontrol to get consistent results independent of build system.
7849     Thanks to Ludovic Brenta <ludovic@ludovic-brenta.org>. Closes: #630533
7850   * Do not fail to unpack shared directories missing on the file system
7851     from packages being replaced by other packages. Closes: #631808
7852   * Do not require programs to define thisname, provide two new functions
7853     to handle the program name (dpkg_set_progname and dpkg_get_progname).
7854     Closes: #631757
7855   * Man pages cleanup:
7856     - Rename “USAGE” dselect(1) section to “ACTIONS” and clarify they can
7857       be performed interactively or from command line.
7858     - Add missing built-in methods to dselect(1).
7859     - Add missing escaping to field dashes in deb-control(5).
7860     - Use dashes instead of underscores for variable text.
7861     - Clarify that several front-end fields are not dselect specific in
7862       dpkg-query(1).
7863     - Use [option...] instead of [options] and friends.
7864     - Use italics or bold instead of surrounding the text with <>.
7865     - Correctly format text with bold and italics.
7866     - Use minus signs and hyphens consistently in man pages.
7867     - Fix reference to /etc/dpkg/dselect.cfg.d instead of dpkg.cfg.d in
7868       dselect(1).
7869     - Add missing optional group|gid --chuid argument in start-stop-daemon(8).
7870   * Refer to Sources and Packages files as part of a repository instead of
7871     as being of exclusive use or owned by APT, which has never been the case.
7872   * Unify somewhat dpkg-maintscript-helper --help output with other commands.
7873   * Add build-indep and build-arch targets as aliases for build in
7874     debian/rules.
7875   * Use the perl interpreter found by configure to call dpkg-architecture.pl
7876     in the m4 DPKG_ARCHITECTURE macro.
7877   * Add new --verbose option to dpkg-deb and change --extract to honor it.
7878     Closes: #293280
7879   * Add new --raw-extract option to dpkg-deb combining --control and
7880     --extract. Closes: #552123
7881   * Defer hardlink renames so that there's never a point were the new
7882     file contents are accessible from the final path before they have
7883     been fsync()ed and cannot be executed causing ETXTBSY when trying
7884     to open the to be installed paths for writing.
7885     Thanks to Jonathan Nieder <jrnieder@gmail.com>. Closes: #635683
7886   * Clarify the default dpkg-deb compression-levels on the man page.
7887   * Clarify dpkg --update-avail usage error message. Closes: #628055
7888   * Change Dpkg::Compression default values depending on the compressor
7889     used, and as such dpkg-source inherits this functionality.
7890     Prompted by Timo Juhani Lindfors <timo.lindfors@iki.fi>.
7891   * Print an actual error or warning message instead of assert()ing on
7892     readlink()/stat() size discrepancies. Closes: #639229
7893   * Update alternative links only if they change. This allows for a
7894     read-only file system and a writable database. Closes: #636700
7895     Based on a patch by Salvatore Bonaccorso <carnil@debian.org>.
7896   * Fix double “error:” string in dpkg missing PATH error output.
7897     Closes: #639997
7898   * Do not warn on strange timestamps when unpacking with dpkg-deb.
7899     Closes: #640298
7900   * Reduce dpkg-trigger binary size by refactoring libdpkg modules so that
7901     it does not end up pulling triglib.
7902   * Reduce dpkg-deb binary size by refactoring libdpkg modules so that it
7903     does not end up pulling triglib.
7904   * Do not fail on --compare-version when generating parse warnings.
7905     Existing packages with invalid versions should not fail on their
7906     maintainer scripts due to that.
7907   * Use the user name (instead of the user id) when setting the supplementary
7908     groups in start-stop-daemon. Closes: #641834
7909   * Use --srcdir and --destdir po4a options, and bump Build-Depends version
7910     to 0.36.4.
7912   [ Updated programs translations ]
7913   * German (Sven Joachim). Closes: #620312
7914   * Swedish (Peter Krefting).
7915   * French (Christian Perrier).
7917   [ Updated man pages translations ]
7918   * French (Christian Perrier).
7919   * German (Helge Kreutzmann) including improvement by "Flo".
7920   * Swedish (Peter Krefting).
7922   [ Updated scripts translations ]
7923   * French (Christian Perrier, Sylvestre Ledru). Closes: #637096
7924   * German (Helge Kreutzmann).
7925   * Swedish (Peter Krefting).
7927  -- Guillem Jover <guillem@debian.org>  Fri, 23 Sep 2011 06:00:11 +0200
7929 dpkg (1.16.0.3) unstable; urgency=medium
7931   * Allow again Priority field values not known to dpkg. Regression
7932     introduced in 1.16.0.
7934  -- Guillem Jover <guillem@debian.org>  Wed, 04 May 2011 10:01:30 +0200
7936 dpkg (1.16.0.2) unstable; urgency=high
7938   * Fix dpkg-split --auto to not fail when opening the new depot file.
7939   * Fix dpkg-split to correctly set the last part split size.
7940   * Fix build failure on DEB_BUILD_OPTIONS=noopt due to a missing <locale.h>
7941     include in gettext.h needed by the gettext context functions.
7943  -- Guillem Jover <guillem@debian.org>  Sat, 16 Apr 2011 00:14:15 +0200
7945 dpkg (1.16.0.1) unstable; urgency=low
7947   [ Raphaël Hertzog ]
7948   * Fix regression affecting dpkg -R. Closes: #620636
7949   * Don't fail during unpack if the system doesn't support changing timestamps
7950     of symlinks. Closes: #620679
7952  -- Guillem Jover <guillem@debian.org>  Tue, 05 Apr 2011 07:28:20 +0200
7954 dpkg (1.16.0) unstable; urgency=low
7956   [ Guillem Jover ]
7957   * Use DPKG_MAINTSCRIPT_PACKAGE environment variable as package name on
7958     dpkg-divert when no --package or --local options have been specified.
7959   * Do not allow versions starting with non-digit when doing strict parsing,
7960     warn otherwise.
7961   * Update dpkg(1) to note that --status-fd output does not contain newlines
7962     in error messages anymore (this was fixed in 1.15.0).
7963   * Add a new --status-logger option to dpkg, similar to --status-fd but
7964     instead invoke the command ourselves and feed the status information
7965     to its standard input. Suggested by Raphaël Hertzog.
7966   * Add missing space in update-alternative --set-selections output.
7967   * Add missing options to update-alternative --help output.
7968   * Count “conffile name is duplicated” for dpkg-deb warning count summary.
7969   * Improve and clarify strings for translation. Closes: #604914
7970   * Prefix all fatal error messages with “error: ”.
7971   * Do not check presence of update-rc.d in the PATH in dpkg, as it's not
7972     a program needed for dpkg correct operation.
7973   * Fix dpkg -GEO options on multiple versions of the same packages.
7974     Closes: #31141
7975   * Propagate --admindir to programs run from maintainer scripts.
7976     Closes: #97076
7977   * Do not fail when trying to remove the root directory. This will only
7978     happen either on distributions where dpkg is a foreign package manager,
7979     or on artificial dpkg databases.
7980   * Always warn when parsing any package control data which does not have
7981     an Architecture field except for status and status log files when
7982     packages are not-installed or half-installed.
7983   * By default reject installing packages w/o an Architecture field. They
7984     now need --force-architecture, dpkg will still warn about them though.
7985   * Fix build failure when passing --disable-nls to configure.
7986   * Do not segfault on “dpkg -i --no-act”.
7987   * Add missing semicolon to the vsnprintf() compat declaration.
7988     Thanks to Robert Millan. Closes: #612203
7989   * On install for Ubuntu adjust the i386 GNU cpu name in cputable.
7990     Thanks to Colin Watson <cjwatson@ubuntu.com>. Closes: #611741
7991   * Sync the info database directory on unpack instead of the temporary
7992     control information directory, and print the correct pathname on error
7993     instead of the last file acted on that directory.
7994   * Document in dpkg-query --help output and man page that --list and --show
7995     arguments are optional.
7996   * Do not read and write the available file unnecessarily.
7997     Thanks to Michel Lespinasse <walken@zoy.org>. Closes: #397121
7998   * Fix typo in «dpkg-name --overwrite» argument parsing so that it actually
7999     works at all. Thanks to Ivan Gagis <igagis@gmail.com>. LP: #728708
8000   * Add armhf support to ostable and triplettable. Closes: #594179
8001   * Set the modification time for unpacked symlinks on supported systems.
8002   * Fix undefined value usage in dpkg-genchanges when adding files w/o a
8003     matching architecture, because they are not present in debian/control,
8004     this is most commonly the case due to dpkg-distaddfile.
8005   * Terminate immediately on dpkg-divert rename errors instead of propagating
8006     up the error codes, this improves error reporting and avoids triggering
8007     leak detectors. Closes: #620380
8008   * When moving a diverted file across filesystems in dpkg-divert, remove
8009     the source file.
8010   * Fix large file support for .deb and split .deb in dpkg-deb, dpkg-split
8011     and dpkg on 32-bit architectures.
8013   [ Raphaël Hertzog ]
8014   * Fail properly when debian/source/format is empty. Closes: #600854
8015   * Add new deb-src-control(5) manual page documenting the debian/control
8016     file contained in source packages.
8017     - it documents the X[SBC]- prefix. Closes: #476335
8018     - it documents the VCS-* fields too. Closes: #483119
8019     Thanks to Oxan van Leeuwen <oxan@oxanvanleeuwen.nl> who wrote it
8020     as part of the Google Code In program.
8021   * Enhance dpkg-shlibdeps to not fail immediately when a library is not found.
8022     Instead continue and fail after all problems have been reported. Thanks
8023     to Chris Baines <cbaines8@gmail.com> for the patch. Closes: #596841
8024   * Fix dpkg-source to not list Debian packaging files as modified
8025     upstream files in Format "1.0" when unpacking to a non-standard
8026     directory.
8027   * Apply patch from Colin Watson to let dpkg-buildflags return -O3
8028     instead of -O2 when building ppc64 packages on Ubuntu. Closes: #612472
8029   * Add new function get_control_path() to Dpkg::Path, it wraps dpkg-query
8030     --control-path.
8031   * Update dpkg-shlibdeps to be multiarch-ready:
8032     - use get_control_path() to find symbols/shlibs files
8033     - parse correctly the output of dpkg --search
8034   * Small fix to support files >2GB in .deb on 64-bit systems. Closes: #616502
8035     Thanks to Martin Dorey <mdorey@bluearc.com> for the patch.
8036   * dpkg-source now keeps the file ordering in the autogenerated patch when
8037     regenerating it. Closes: #606080
8038     Thanks to Colin Watson for the patch.
8039   * dpkg-source now uses a timestamp retrieved from the filesystem when
8040     resetting the timestamp of patched files so that a time skew when using
8041     NFS doesn't introduce any inconsistency. Closes: #613023
8042     Thanks to Jonathan Nieder <jrnieder@gmail.com> for the patch and the
8043     diagnosis.
8044   * dpkg-source will now remove quilt's .pc directory when --unapply-patches
8045     is in use. Closes: #591858
8046   * dpkg-source is now a bit less strict when parsing patches:
8047     - it accepts seeing the same file twice; Closes: #608829
8048     - it doesn't match on the English text "No newline at end of file" as it
8049       might be translated in some cases. Closes: #612465
8050   * Improve parser in Dpkg::Control::Hash to not require an empty line
8051     before the PGP signature. Closes: #617923
8052     Thanks to Roger Leigh for the initial patch.
8053   * Fix a regression in dpkg-divert where using --rename led to a failure when
8054     the rename implies crossing file systems. Thanks to Durk Strooisma for
8055     spotting it.
8056   * Use the correct mtime when installing a file with statoverrides.
8057     Regression introduced in 1.16.0. LP: #739179
8058   * Remove duplicate word in german translation of dpkg(1). Closes: #616096
8059   * Strip repeated non-significant spaces before and after newlines
8060     in Uploaders. Closes: #598922
8061   * Ignore whitespaces after options in headers of changelog entries.
8062     Closes: #605719
8063   * Fix dpkg-source's regression with empty patches (introduced while fixing
8064     #613023). Closes: #619541
8066   [ Jonathan Nieder ]
8067   * Remove support for use of synchronous sync(2), due to its pernicious
8068     side-effects and to ease maintenance.
8069   * Clarify that an up-to-date dpkg only needs to be unpacked for
8070     dpkg-maintscript-helper to work.
8072   [ Steve Langasek ]
8073   * Add new variables to dpkg-architecture, DEB_HOST_MULTIARCH and
8074     DEB_BUILD_MULTIARCH, that return the "ideal" GNU triplet for each
8075     architecture which should be used as the path component for library
8076     installation.
8078   [ Mark Hymers ]
8079   * Add support for Built-Using field. Closes: #619311
8081   [ Updated programs translations ]
8082   * German (Sven Joachim).
8083   * Portuguese (Miguel Figueiredo).
8084   * Spanish (Javier Fernandez-Sanguino).
8085   * Swedish (Peter Krefting).
8087   [ Updated man pages translations ]
8088   * German (Helge Kreutzmann).
8089   * Swedish (Peter Krefting).
8091   [ Updated scripts translations ]
8092   * German (Helge Kreutzmann).
8093   * Swedish (Peter Krefting).
8095   [ Updated dselect translations ]
8096   * Spanish (Javier Fernandez-Sanguino).
8098  -- Guillem Jover <guillem@debian.org>  Fri, 01 Apr 2011 23:56:54 +0200
8100 dpkg (1.15.8.10) unstable; urgency=low
8102   * Do not segfault on “update-alternatives --auto” when the link group only
8103     has alternatives which are dangling symlinks. Closes: #611545
8105  -- Guillem Jover <guillem@debian.org>  Sun, 30 Jan 2011 20:28:27 +0100
8107 dpkg (1.15.8.9) unstable; urgency=low
8109   [ Raphaël Hertzog ]
8110   * Drop Breaks on konqueror to avoid some lenny -> squeeze upgrade
8111     problems. It was only needed to ensure install-info is installed
8112     even for partial upgrades. Closes: #610991
8113   * Do the same for all emacs/jed packages. For jed, the breaks has been
8114     rendered useless as the maintainers dropped the install-info dependencies
8115     anyway.
8117   [ Updated programs translations ]
8118   * Remove space before "…" in several Catalan strings (Jordi Mallach).
8119   * Romanian (Stan Ioan-Eugen).
8121  -- Raphaël Hertzog <hertzog@debian.org>  Mon, 24 Jan 2011 20:24:53 +0100
8123 dpkg (1.15.8.8) unstable; urgency=low
8125   [ Guillem Jover ]
8126   * Truncate the output part file on “dpkg-split -s”. Regression introduced
8127     with the C rewrite.
8129   [ Updated man pages translations ]
8130   * Two typos fixed in French (Christian Perrier, thanks to Julien
8131     Valroff).
8133   [ Raphaël Hertzog ]
8134   * Fix multiple security issues with dpkg-source (CVE-2010-1679):
8135     - Enhance checks to catch maliciously crafted patches which could modify
8136       files outside of the unpacked source package.
8137     - Do not consider a top-level symlink like a directory when
8138       extracting a tarball.
8139     - Exclude .pc while extracting the upstream tarball in 3.0 (quilt)
8140       as patch blindly writes in that directory during unpack (and would
8141       follow any existing symlink).
8143  -- Raphaël Hertzog <hertzog@debian.org>  Thu, 06 Jan 2011 21:04:33 +0100
8145 dpkg (1.15.8.7) unstable; urgency=low
8147   [ Guillem Jover ]
8148   * Defer symlink renames so that there's never a point were a symlink
8149     is broken, this is particularly important for shared libraries.
8150     Closes: #605536
8151   * On Linux use sync_file_range() to initiate asynchronous writeback
8152     of just unpacked files. Suggested by Ted Ts'o <tytso@mit.edu>.
8153     Thanks to Jonathan Nieder <jrnieder@gmail.com>. Closes: #605009
8154   * On non-Linux use posix_fadvise(POSIX_FADV_DONTNEED) to notify the kernel
8155     dpkg does not need the unpacked files any longer, and that it can start
8156     writeback to be able to evict them from the cache at a later point.
8157   * Fix stanza delimiting on -L, -s and -p output. This was making the output
8158     for multiple packages unrealiable to parse. Closes: #606315
8160   [ Updated programs translations ]
8161   * Basque (Iñaki Larrañaga Murgoitio). Closes: #607253
8162   * Catalan (Guillem Jover).
8163   * Czech (Miroslav Kure). Closes: #605099
8164   * Esperanto (Felipe E. F. de Castro). Closes: #607437
8165   * French (Christian Perrier).
8166   * German (Sven Joachim).
8167   * Indonesian (Arief S Fitrianto). Closes: #605248
8168   * Italian (Milo Casagrande). Closes: #607306
8169   * Japanese (Kenshi Muto). Closes: #607259
8170   * Norwegian Bokmål (Hans Fredrik Nordhaug).
8171   * Portuguese (Miguel Figueiredo). Closes: #605506
8172   * Russian (Yuri Kozlov). Closes: #607292
8173   * Simplified Chinese (Aron Xu).
8174   * Slovak (Ivan Masár). Closes: #607302
8175   * Spanish (Javier Fernandez-Sanguino).
8176   * Thai (Theppitak Karoonboonyanan). Closes: #607501
8178   [ Updated man pages translations ]
8179   * French (Christian Perrier).
8180   * German (Helge Kreutzmann).
8181   * Spanish (Omar Campagne).
8183   [ Updated dselect translations ]
8184   * Spanish (Javier Fernandez-Sanguino).
8186   [ Updated scripts translations ]
8187   * German (fix by Sven Joachim).
8188   * Spanish (Javier Fernandez-Sanguino).
8190  -- Guillem Jover <guillem@debian.org>  Mon, 20 Dec 2010 02:26:26 +0100
8192 dpkg (1.15.8.6) unstable; urgency=low
8194   [ Raphaël Hertzog ]
8195   * Ensure debian/source/local-options is always excluded from the source
8196     package even if the user provides customized -i or -I options.
8197     Closes: #597023
8198   * Fix Dpkg::Version's handling of version with a debian revision but an
8199     empty version (e.g. "-0.1"). Thanks to James Vega <jamessan@debian.org>
8200     for the patch. Closes: #597651
8201   * With "3.0 (quilt)" source package, create .pc/.quilt_series with the
8202     correct series file if the source package provides vendor specific patch
8203     sets.
8205   [ Guillem Jover ]
8206   * Disable by default usage of synchronous sync(2), as it causes undesired
8207     I/O on unrelated file systems. Closes: #588339, #595927, #600075
8208   * Add new --force-unsafe-io to disable safe I/O operations on unpack.
8209     Closes: #584254
8211   [ Updated man pages translations ]
8212   * French (Christian Perrier). Including a typo fix and a typographical
8213     change reported by Vincent Danjean. Closes: #601852
8214   * Spanish (Omar Campagne). Closes: #596519
8216   [ Updated programs translations ]
8217   * Basque (Iñaki Larrañaga Murgoitio). Closes: #599923
8218   * Catalan (Jordi Mallach).
8219   * Danish (Ask Hjorth Larsen). Closes: #600240
8220   * German (Sven Joachim). Improved by Holger Wansing.
8221   * Italian (Pietro Battiston). Fix translation of "however". Closes: #602518
8222   * Portuguese (Miguel Figueiredo). Closes: #596168
8223   * Romanian (Andrei Popescu). Closes: #604769
8224   * Russian (Yuri Kozlov). Closes: #595455
8225   * Vietnamese (Clytie Siddall). Closes: #598473
8227   [ Updated scripts translations ]
8228   * Catalan (Jordi Mallach).
8229   * German (Sven Joachim).
8231   [ Updated dselect translations ]
8232   * Catalan (Jordi Mallach).
8233   * German (Sven Joachim).
8235  -- Guillem Jover <guillem@debian.org>  Thu, 25 Nov 2010 07:10:48 +0100
8237 dpkg (1.15.8.5) unstable; urgency=low
8239   [ Guillem Jover ]
8240   * Do not print a warning when parsing status or status log files on
8241     half-installed packages w/o a Description or Maintainer field, as
8242     this happens normally when the package was never installed before.
8243     Closes: #594167
8244   * Improve git format documentation in dpkg-source(1).
8245     Thanks to Joey Hess, based on a patch by Tanguy Ortolo.
8246   * Clarify effect of “dpkg --purge” on homedir files in dpkg(1).
8247     Thanks to The Fungi <fungi@yuggoth.org>. Closes: #593628
8248   * Add gettext plurals infrastructure support.
8249   * Add gettext messages for plural forms. Closes: #594218
8250   * Fix possible but improbable segfault in update-alternatives in case
8251     the master file name contains a format string specifier. Reported by
8252     Sandro Cazzaniga.
8253   * Fix realloc usage on compat scandir() implementation.
8255   [ Raphaël Hertzog ]
8256   * Fix dpkg-genchanges to not split the short description in the middle of a
8257     UTF8 character. Closes: #593442
8258   * Drop -k parameter from the tar call used by dpkg-source to extract
8259     tarballs. Upstream binary files modified by the packager were not properly
8260     installed due to this. Thanks to James Westby for the report.
8261     Closes: #594440
8262   * Make dpkg Breaks: dpkg-dev (<< 1.15.8) so that older versions of dpkg-dev
8263     that did not depend on libdpkg-perl must be upgraded together with dpkg.
8264     Closes: #596417
8266   [ Helge Kreutzmann ]
8267   * Fix encoding of German addendum. Closes: #595643
8269   [ Updated programs translations ]
8270   * Esperanto (Felipe Castro). Closes: #596173
8271   * French (Christian Perrier).
8272   * German (Sven Joachim).
8273   * Indonesian (Arief S Fitrianto). Closes: #596657
8274   * Italian (Milo Casagrande). Closes: #592953, #595615
8275   * Japanese (Kenshi Muto). Closes: #595468
8276   * Korean (Changwoo Ryu). Closes: #595556
8277   * Norwegian Bokmål (Hans Nordhaug). Closes: #595208
8278   * Simplified Chinese (Aron Xu). Closes: #594513
8279   * Slovak (Ivan Masár). Closes: #595968
8280   * Swedish (Peter Krefting).
8281   * Thai (Theppitak Karoonboonyanan). Closes: #594011
8283   [ Updated man pages translations ]
8284   * French (Christian Perrier).
8285   * German (Helge Kreutzmann).
8286   * Swedish (Peter Krefting).
8288   [ Updated scripts translations ]
8289   * French (Christian Perrier). Includes a fix to a specific
8290     message translation that was imprecise. Closes: #596333
8291   * German (Helge Kreutzmann). Improved by Holger Wansing.
8292   * Norwegian Bokmål (Hans Fredrik Nordhaug). Closes: #595299
8293   * Spanish (Omar Campagne).  Closes: #596518
8294   * Swedish (Peter Krefting).
8295   * Russian (Yuri Kozlov). Closes: #595175
8297  -- Guillem Jover <guillem@debian.org>  Tue, 14 Sep 2010 01:26:21 +0200
8299 dpkg (1.15.8.4) unstable; urgency=low
8301   [ Guillem Jover ]
8302   * Fix use after free segfault on update-alternatives --remove-all.
8303     Closes: #591653, #591654
8304   * Always print a message on warning when parsing control files.
8305   * On database parsing only warn on bogus versions previously accepted,
8306     the other instances will keep producing errors, to avoid newly
8307     introduced bogosity. Closes: #590885, #590896, #591692, #591885
8308   * Fix compilation on Solaris and Darwin:
8309     - Link update-alternatives against libintl if libc does not have i18n
8310       support.
8311     - Include <limits.h> for _POSIX_MAX_PATH in update-alternatives.
8312     Thanks to Fabian Groffen <grobian@gentoo.org>.
8314   [ Raphaël Hertzog ]
8315   * Fix make -C man install so that it actually finds the manual pages
8316     to install. Closes: #591588
8317   * When analyzing the ELF format of a binary in dpkg-shlibdeps, fallback on
8318     usual objdump when the cross objdump failed. Closes: #591522
8320   [ Sven Joachim ]
8321   * Ensure removal of leftover backup .dpkg-tmp files after unpacking
8322     failures, when the backup is still a hard link to the original file.
8323     Closes: #591993
8325  -- Guillem Jover <guillem@debian.org>  Fri, 13 Aug 2010 06:02:10 +0200
8327 dpkg (1.15.8.3) unstable; urgency=low
8329   [ Raphaël Hertzog ]
8330   * Fix dpkg-divert test suite to cope with + and other special characters for
8331     regexps in the build directory name. Thanks to Jonathan Nieder for the
8332     patch and to Phil Kern for the report. Closes: #591182
8334   [ Guillem Jover ]
8335   * Fix buffer overflow in dpkg_ar_member_put_header causing it to write the
8336     header to fd 0 (instead of ar_fd) depending on the stack layout, affecting
8337     armel. Thanks to Phil Kern for the analysis and Reinhard Tartler for the
8338     initial patch. Closes: #591312
8340  -- Guillem Jover <guillem@debian.org>  Mon, 02 Aug 2010 10:38:07 +0200
8342 dpkg (1.15.8.2) unstable; urgency=low
8344   * Bump libdpkg-perl Depends on dpkg to 1.15.8, as it will break dpkg
8345     versions before that when installing and removing libdpkg-perl,
8346     because older update-alternatives and dpkg-divert require Dpkg.pm and
8347     Dpkg/Gettext.pm which will disappear due to the Replaces. Closes: #590867
8348     Thanks to Sven Joachim <svenjoac@gmx.de> for the analysis.
8349   * Allow specifying again absolute and relative paths for dpkg-buildpackage
8350     -r option. Closes: #591010
8352  -- Guillem Jover <guillem@debian.org>  Sat, 31 Jul 2010 04:20:01 +0200
8354 dpkg (1.15.8.1) unstable; urgency=low
8356   * Fix off-by-one error in update-alternatives that lead to an infinite loop
8357     while writing the administrative file. Closes: #590854
8359  -- Raphaël Hertzog <hertzog@debian.org>  Thu, 29 Jul 2010 21:18:16 +0200
8361 dpkg (1.15.8) unstable; urgency=low
8363   [ Raphaël Hertzog ]
8364   * Add new commands --before-build and --after-build to dpkg-source
8365     and modify dpkg-buildpackage to call them automatically at the
8366     start and at the end of the process. With "3.0 (quilt)" source packages
8367     this ensures patches are applied even in case of binary-only builds.
8368     Closes: #572526
8369   * Merge non-regression test for Ubuntu's specificities concerning
8370     changelog handling. Closes: #582389
8371   * Fix some copy-paste mistakes in dpkg-architecture(1). Thanks to Ian Fleming
8372     <iflema@yahoo.com.au> for the patch and Colin Watson for forwarding out of
8373     Launchpad. Closes: #582404 LP: #564308
8374   * Clarify description of dpkg --configure in dpkg(1). Thanks to Colin Watson
8375     for the patch and to Robert Persson for the report.
8376     Closes: #582406 LP: #77287
8377   * Fix the non-regression test lib/dpkg/test/t-ar.c by not overflowing the
8378     size of ar_name. Thanks to Colin Watson for the report, analysis and patch.
8379     Closes: #582401
8380   * Modify Dpkg::Shlibs::Objdump to use the cross objdump binary when cross
8381     compiling. Thanks to Loïc Minier for the initial patch. Closes: #578365
8382   * Make dpkg-maintscript-helper more robust when required parameters are
8383     missing. Closes: #582814
8384   * Clarify that dpkg-maintscript-helper rm_conffile needs the last version of
8385     the package that did not remove the obsolete conffile if this was not
8386     implemented at the time the file became obsolete. Closes: #582893
8387   * Enhance dpkg-maintscript-helper rm_conffile and mv_conffile to work
8388     properly when <lastversion> is not given (or is empty). Closes: #582819
8389   * Small fix in dpkg-gensymbols' handling of tags. Closes: #583656
8390     Thanks to Michael Tautschnig <mt@debian.org> for the report and the fix.
8391   * update-alternatives has been rewritten in C, the only feature change
8392     should be that it uses its own logfile /var/log/alternatives.log (rotated
8393     like dpkg.log).
8394   * Implement new --unapply-patches option for dpkg-source with source formats
8395     2.0 and 3.0 (quilt) that unapplies the patches after a successful build.
8396     This option can be put in debian/source/local-options in the package VCS
8397     repository for instance.
8398   * Implement new --abort-on-upstream-changes option for dpkg-source with
8399     source formats 1.0, 2.0 and 3.0 (quilt). It aborts every time that you try
8400     to build a source package which contains (unmanaged) changes to the
8401     upstream source code. Closes: #579012
8402   * dpkg-source now captures the output of patch and prints it on error so
8403     that the user can better diagnose what went wrong. Closes: #575304
8404   * Fix Dpkg::Changelog to cope properly with an entry of version "0".
8405     Add non-regression test for this. Closes: #587382
8406   * Add --export command to dpkg-buildflags to be used in shell with eval.
8407   * Modify source format "3.0 (git)" to use git bundles. Thanks to Joey Hess
8408     for the patch.
8409     The usage of git bundle avoids distributing cruft. Closes: #477954
8410     It's no longer needed to tell which branch contains the debian packaging,
8411     it uses automatically the one that was used at build-time. Closes: #534637
8412   * Pass --no-name option to gzip to avoid encoding the timestamp in the file
8413     so that the result is more predictable. Closes: #587724
8414     Also pass --rsyncable to make source packages more rsync friendly.
8415   * Replace dpkg-source's tar ignore pattern "*~" with "*/*~" to avoid
8416     matching on the top level directory. Closes: #588265
8417   * In source formats "2.0" and "3.0 (quilt)", make sure to remove the
8418     upstream-provided debian directory before copying the debian-provided
8419     version of that directory in place. Closes: #590297
8421   [ Guillem Jover ]
8422   * Require gettext 0.18:
8423     - Remove embedded gettext files from the repository, now properly
8424       installed by autopoint for all po/ directories.
8425     - Add versioned Build-Depends.
8426   * Fix variable usage after delete in dselect.
8427   * Change default configure admindir to LOCALSTATEDIR/lib/dpkg from
8428     LOCALSTATEDIR/dpkg, so that we can use a correct --localstatedir=/var.
8429   * Add two new dpkg options --path-exclude and --path-include for filtering
8430     files on package installation. This allows embedded systems to skip
8431     /usr/share/doc, manpages, etc. Based on work from Tollef Fog Heen and
8432     Martin Pitt, thanks! Closes: #68788, #68861, #497304, #525567, #583902
8433   * Remove obsolete internal status aliases “postinst-failed” for
8434     stat_halfconfigured and “removal-failed” for stat_halfinstalled.
8435   * Check version syntax when parsing it from libdpkg based programs.
8436     Closes: #574704
8437   * Rewrite mksplit in C, and merge it into dpkg-split.
8438   * Rewrite dpkg-divert in C.
8439   * Use linux-any wildcard for libselinux1-dev Build-Depends instead of
8440     using a list of negated architectures.
8441   * Use Breaks instead of Conflicts in dpkg, dpkg-dev and libdpkg-perl binary
8442     packages.
8443   * Move Dpkg.pm and Dpkg/Gettext.pm from dpkg to libdpkg-perl.
8444   * Bump Standards-Version to 3.9.1.
8445   * Detect when another process has locked the database, and mention that
8446     problematic dpkg --audit results might be due to ongoing operations.
8447     Closes: #80252
8448   * Add new dpkg --force-confask option that forces a conffile prompt when
8449     the conffile from the new package does not differ from the previous one.
8450     Thanks to Henning Makholm <henning@makholm.net>. Closes: #102609
8451   * On dpkg-divert --rename, check if the source file exists, and disable
8452     renaming if it does not. Closes: #550252
8453     As a side effect, this avoids useless errors when the destination
8454     directory is not existent or writable. Closes: #581544
8455   * Properly compute the longest package description from all to be displayed
8456     on “dpkg-query --list”, so that it does not get incorrectly trimmed.
8457   * Consistently use earlier/later instead of smaller/bigger when describing
8458     comparison relationships. Closes: #587641
8459   * Stop exporting DPKG_LIBDIR to maintainer scripts, no need for it anymore.
8460   * Assign correct SELinux label on non-regular files. Based on a patch by
8461     Russell Coker <russell@coker.com.au>. Closes: #587949
8462   * Add -F option to dpkg-buildpackage to be able to explicitly specify a
8463     normal full build and combine it with -nc. Closes: #547993
8464   * Add missing mentions of the Breaks field alongside the other fields
8465     sharing the same syntax in deb-control(5).
8466     Thanks to Osamu Aoki <osamu@debian.org>. Closes: #590472
8468   [ Updated programs translations ]
8469   * Catalan (Guillem Jover).
8470   * German (Sven Joachim).
8471   * Russian (Yuri Kozlov). Closes: #579149
8472   * Swedish (Peter Krefting).
8474   [ Updated man pages translations ]
8475   * German (Helge Kreutzmann).
8476   * Russian (Yuri Kozlov). Closes: #579149
8477   * Spanish (Omar Campagne).
8478   * Swedish (Peter Krefting).
8480   [ New scripts translation ]
8481   * Spanish (Omar Campagne).
8483   [ Updated scripts translations ]
8484   * French (Christian Perrier).
8485   * German (Helge Kreutzmann). Improved by Holger Wansing.
8486   * Russian (Yuri Kozlov). Closes: #579149
8487   * Swedish (Peter Krefting).
8489  -- Guillem Jover <guillem@debian.org>  Thu, 29 Jul 2010 09:37:35 +0200
8491 dpkg (1.15.7.2) unstable; urgency=low
8493   [ Raphaël Hertzog ]
8494   * Update dpkg-buildflags to respect $XDG_CONFIG_HOME and to use
8495     $XDG_CONFIG_HOME/dpkg/buildflags.conf by default.
8496   * Update deb-substvars(5) to codify how variables containing multiple
8497     lines must be managed.
8498   * Fix boolean evaluation of Dpkg::Version so that version 0 evaluates to
8499     false and dpkg-shlibdeps can strip the minimal version specification.
8500     Closes: #579724
8501     Document this behaviour in the API and add non-regression test to ensure
8502     it's kept.
8503   * Let dpkg-buildflags error out when a required parameter is missing.
8504     Closes: #579722
8505   * Add Bug-Ubuntu field in DEP-3 template provided in the automatic header
8506     of patches in 3.0 (quilt) source packages. Thanks to Benjamin Drung
8507     <bdrung@ubuntu.com> for the patch. Closes: #578002
8508   * Update deb-override(5) by removing references to usage of sections
8509     to place the packages on the mirrors and by indicating that the Debian
8510     policy offers a list of allowed values for section and priority.
8511     Closes: #575410
8512   * Update reference to triggers.txt.gz in dpkg-trigger(1) and deb-triggers(5)
8513     to match the new location. Closes: #580774
8514   * Drop mention of PKG_CONFIG_LIBDIR in dpkg-buildpackage(1), the feature has
8515     been removed in 1.15.6.
8516   * Rename /usr/lib/dpkg/maintscript-helper into
8517     /usr/bin/dpkg-maintscript-helper, it is a public interface even if working
8518     around known limitations.
8519   * Add "supports" command to dpkg-maintscript-helper to ensure the wanted
8520     command is supported before calling it.
8522   [ Guillem Jover ]
8523   * Add powerpcspe support to ostable and triplettable.
8524     Thanks to Sebastian Andrzej Siewior <sebastian@breakpoint.cc> and
8525     Kyle Moffett <Kyle.D.Moffett@boeing.com>. Closes: #568123, #575158
8526   * Fix dpkg --root by properly stripping again the root directory from the
8527     path of the maintainer script to execute. Closes: #580984
8528   * On Linux use sync() instead of an fsync() per file on deferred extraction,
8529     to workaround performance degradation on ext4. Closes: #578635
8531   [ Gerfried Fuchs ]
8532   * Fix syntax error in dpkg-name. Closes: #581315
8534  -- Guillem Jover <guillem@debian.org>  Wed, 19 May 2010 07:57:14 +0200
8536 dpkg (1.15.7.1) unstable; urgency=low
8538   * Fix dpkg-source -b (without -i) for source packages 1.0. Closes: #578693
8539     It was erroneously ignoring all changes because the ignore regex was
8540     wrong (due to the change to ignore debian/source/local-options).
8541   * Add missing call to textdomain() in dpkg-mergechangelogs to make
8542     translations work.
8544  -- Raphaël Hertzog <hertzog@debian.org>  Thu, 22 Apr 2010 08:05:20 +0200
8546 dpkg (1.15.7) unstable; urgency=low
8548   [ Raphaël Hertzog ]
8549   * Clarify the plan concerning dpkg-source, debian/source/format and
8550     the default source format in dpkg-source(1). Add a warning
8551     in dpkg-source to invite people to always create debian/source/format.
8552     We deprecate the fallback to "1.0" (it's there for backwards compatibility
8553     only) and debian/source/format is going to be mandatory at some point in
8554     the future. Closes: #553928
8555   * Add .gitattributes to list of files ignored by dpkg-source.
8556   * Document most common warnings and errors of dpkg-source in its manual
8557     page.
8558   * Let dpkg-source read options from debian/source/local-options as well but
8559     do not include that file in the generated source package.
8560   * Improve explanation of --all option in dpkg-parsechangelog(1). Thanks to
8561     Jari Aalto. Closes: #575706
8562   * Fix dpkg to not lose package metadata on filesystems where readdir()
8563     returns new files added after the opendir() call, btrfs in particular
8564     triggered the problematic behaviour. Closes: #575891
8565   * Tighten the regex used by dpkg-source to match the component name of
8566     supplementary tarballs so that underscore (_) are not allowed as it was
8567     supposed to be.
8568   * Introduce a new script called dpkg-buildflags: its purpose is to retrieve
8569     compilation flags and it should be used within debian/rules to pass
8570     the right compilation flags to the build process. dpkg-buildpackage still
8571     exports them to not break packages currently relying on them but packages
8572     should now start using dpkg-buildflags instead. Closes: #560070
8573   * For Ubuntu set default value of LDFLAGS to -Wl,-Bsymbolic-functions.
8574   * Cleanup some old Conflicts/Replaces, thanks to Helge Kreutzmann.
8575   * Modify dselect to treat all unknown package as known and marked for purge.
8576     This is a temporary work-around so that dselect doesn't try to reinstall
8577     packages of priority > standard that were removed or not installed. Thanks
8578     to Robert Luberda for the patch. Closes: #559519, #556889
8579   * dpkg now exports DPKG_MAINTSCRIPT_NAME to maintainer scripts with the
8580     type of maintainer script currently running (preinst, postinst, prerm,
8581     postrm). Closes: #546577
8582   * dpkg now exports DPKG_LIBDIR to maintainer scripts pointing to the
8583     private directory containing internal programs like the upcoming
8584     maintscript-helper.
8585   * Add $DPKG_LIBDIR/maintscript-helper program that can be used in
8586     maintainer scripts to perform common operations working around
8587     current dpkg limitations: first version supports removing obsolete
8588     conffiles and renaming conffiles. Closes: #514316
8589   * Fix "dpkg-scansources -e", it was calling a non-existing function.
8590     Closes: #578162
8591   * Add new script dpkg-mergechangelogs to do 3-way merges of Debian
8592     changelogs. Add libalgorithm-merge-perl to Recommends for the
8593     benefit of this script.
8595   [ Colin Watson ]
8596   * Modern tar files typically use NormalFile1 rather than NormalFile0 for
8597     file objects. A typo meant that the former never triggered rename
8598     deferral. Closes: #577756
8599   * Use the new list of files on rename deferral instead of old one, so that
8600     newly added files get installed.
8602   [ Guillem Jover ]
8603   * Report deferred trigger errors on status-fd. Closes: #574599
8604     Thanks to Michael Vogt <michael.vogt@ubuntu.com>.
8605   * When creating hard links to normal files on extraction use the .dpkg-new
8606     filename for source as the file is not yet in place due to the rename
8607     deferral. Thanks to Colin Watson for the initial patch.
8608   * Do not output the Package-Type field on udeb.
8609   * Fix versioned Replaces to not produce file overwrite errors on downgrades.
8610     Closes: #568566
8611   * Fix installation of replaced and replacing packages in reverse order
8612     (first the replacing then the replaced) for which the replaced package
8613     is supposed to get disappeared, to disappear the correct package and not
8614     lose track of the ownership of the replaced files.
8616   [ Updated programs translations ]
8617   * German (Sven Joachim).
8619   [ Updated dselect translations ]
8620   * German (Sven Joachim).
8622   [ Updated man pages translations ]
8623   * German (Helge Kreutzmann).
8625   [ Updated scripts translations ]
8626   * German (Helge Kreutzmann).
8628  -- Guillem Jover <guillem@debian.org>  Wed, 21 Apr 2010 04:05:55 +0200
8630 dpkg (1.15.6.1) experimental; urgency=low
8632   [ Guillem Jover ]
8633   * Fix two memory leaks introduced in 1.15.6.
8634   * Always use C99 variadic macros, as the build requires them anyway, we
8635     avoid exposing the configure variable HAVE_C99 on installed headers.
8636   * Use __attribute__ keyword depending on compiler support, we avoid
8637     exposing the configure variable HAVE_C_ATTRIBUTE on installed headers.
8638   * Do not allow a --retry schedule in start-stop-daemon where forever is
8639     the last item, as it needs something to repeat over. Closes: #570938
8640   * Show dselect dependency/conflicts resolution screen again, by switching
8641     the code to use STL's min() and max() instead of preprocessor macros, to
8642     avoid multiple evaluation of arguments. Regression introduced in 1.15.6.
8643     Based on a patch by Robert Luberda <robert@debian.org>. Closes: #574816
8644   * Defer the fsync and rename for normal files in tar extraction so that
8645     it's done in one pass afterwards, to avoid massive I/O degradation due to
8646     the serialization from each write + fsync. This restores extraction times
8647     to numbers closer to the ones before the fsync patch introduced in 1.15.6.
8649   [ Raphaël Hertzog ]
8650   * Accept source packages without "Format" field for compatibility with very
8651     old source packages. Thanks to Colin Watson for the report and the patch.
8652     Closes: #574097
8654   [ Updated programs translations ]
8655   * French (Christian Perrier).
8656   * Swedish (Peter Krefting).
8658   [ Updated scripts translations ]
8659   * Swedish (Peter Krefting).
8661  -- Guillem Jover <guillem@debian.org>  Wed, 24 Mar 2010 13:56:28 +0100
8663 dpkg (1.15.6) experimental; urgency=low
8665   [ Raphaël Hertzog ]
8666   * debian/control: Add the accent on my first name.
8667   * Perl API cleanup:
8668     - rename Dpkg::Deps dump() methods into output([$fh]), overload string
8669       representation ("$dep") to provide the result of $dep->output()
8670     - prefix public functions in Dpkg::Deps with deps_ and export them
8671       by default
8672     - rename Dpkg::Source::Compressor in Dpkg::Compression::Process
8673     - rename Dpkg::Source::CompressedFile in Dpkg::Compression::FileHandle
8674       and completely redesign its API
8675     - update Dpkg::Compression's API to use compression_* functions
8676       instead of granting direct access to variables, integrate
8677       there management of default compression
8678     - introduce Dpkg::Interface::Storable and update many modules
8679       to make use of it
8680     - update Dpkg::BuildOptions to provide an object-oriented interface
8681     - update Dpkg::Checksums to provide an object-oriented interface
8682   * Drop debian-maintainers from Suggests since it's obsolete, the
8683     corresponding keyring is in debian-keyring.
8684   * Merge support of symbol patterns in dpkg-gensymbols. Thanks to
8685     Modestas Vainius for his work (see further for more details).
8686   * Accept filename with spaces and colon in the output of objdump.
8687     Required so that dpkg-shlibdeps support such files properly.
8688     Thanks to Raphaël Geissert for the patch. Closes: #565712
8689   * When unpacking a "3.0 (quilt)" source package, tell quilt where
8690     patches are (to be) stored. Requires quilt >= 0.48-5 to work.
8691     Closes: #557619
8692   * Fix update-alternatives to not try to reinstall an unknown alternative
8693     when the link group is broken, instead switch to the best choice in
8694     automatic mode. Closes: #566406
8695   * Don't return duplicate bug numbers in Launchpad-Bugs-Fixed:.
8696     Thanks to Brian Murray <brian@ubuntu.com> for the report
8697     and the patch. Closes: #569618
8698   * Add $VERSION numbers to all perl modules. Closes: #465256
8699     1.00 and higher means that the API should be stable
8700   * While parsing diff's output, accept any sentence that contains the word
8701     differ (as specified by POSIX) to identify that binary files could not be
8702     compared. Closes: #570008
8703   * dpkg-gencontrol does no longer accept arch-specific dependencies in
8704     arch: all packages. Closes: #560071
8705   * dpkg-gencontrol no longer warns if a substitution variable provided by -V
8706     is not used (the warning is meant to catch unused substitutions coming
8707     from the file, those are package specific with debhelper). Closes: #557133
8708   * dpkg-gencontrol now indicates which package is concerned by the substvars
8709     warning that it displays. Closes: #566837
8710   * dpkg-buildpackage now supports options --source-option=<opt> and
8711     --changes-option=<opt> to forward arbitrary options to dpkg-source and
8712     dpkg-genchanges respectively. Closes: #566230
8713   * The -T option of dpkg-{source,gencontrol,genchanges} can now be used
8714     multiple times to read substitution variables from multiple files.
8715     Closes: #363323
8716   * dpkg-source now supports an option --create-empty-orig in formats
8717     "2.0" and "3.0 (quilt)" to auto-create the main original tarball when
8718     there are supplementary tarballs. This makes it easier to bundle
8719     multiple software together. Closes: #554488
8720   * dpkg-source supports long option names --diff-ignore and --tar-ignore for
8721     -i and -I. A new option --extend-diff-ignore is introduced. Those options
8722     can thus now be used in debian/source/options.
8723   * Generate manual pages for perl modules.
8724   * Introduce the libdpkg-perl package and clarify its status in README.api.
8725   * Update Standards-Version to 3.8.4 (no changes needed).
8726   * Drop unused lintian override for arch-dep-package-has-big-usr-share on
8727     dselect.
8728   * The rewritten Dpkg::Checksums deals properly with filenames with
8729     spaces. Closes: #572030
8730   * dpkg-source does no longer fallback to other source formats if the
8731     requested one is not usable. Closes: #557459
8732   * Modify dpkg-source to error out when it would apply patches containing
8733     insecure paths (with "/../") and also error out when it would apply a
8734     patch through a symlink. Those checks are required as patch will happily
8735     modify files outside of the target directory and unpacking a source package
8736     should not be able to have any side-effect outside of the target
8737     directory. Fixes CVE-2010-0396.
8738   * Also error out when the quilt series contains a path with "/../" as this
8739     can cause patch to create files outside of the source package due
8740     to the -B .pc/$path option that it gets.
8742   [ Guillem Jover ]
8743   * Handle argument parsing in dpkg-checkbuilddeps and dpkg-scanpackages
8744     in a way consistent with the rest of the tools.
8745   * Recognize --help in addition to -h in dpkg-checkbuilddeps.
8746   * Add a --version option to dpkg-checkbuilddeps.
8747   * Improve and mark more messages in writedb() to make translators lives
8748     easier. Closes: #408525
8749   * Improve update-alternatives --display output to use two leading spaces
8750     for current link and slave information. Use single quotes for both “best”
8751     and the alternative it's pointing to. Closes: #549167
8752   * Refer to “half configured” instead of “failed config” in «dpkg-query -l»
8753     header and dselect package status printing for consistency.
8754   * Make “dpkg-statoverride --quiet” actually do something, and quiesce
8755     most of the innocuous warning messages. Closes: #403211
8756   * Make “dpkg-statoverride --update --add” fail if it cannot update the
8757     mode and owner of the file. This would fail later on when dpkg itself
8758     applies the overrides, so better to signal this earlier.
8759   * Add sparc64 to cputable. Thanks to Aurelien Jarno <aurel32@debian.org>.
8760     Closes: #560010
8761   * Do not allow diverting a file to itself, which makes the file to get
8762     removed. Closes: #312206
8763   * Make the check for duplicate fields in a stanza in libdpkg actually work,
8764     which now makes it fatal, as was intended originally. This should not
8765     cause problems for anything using dpkg-dev to build packages as those
8766     are already fatal on that case.
8767   * Add new deb-split(5) man page.
8768   * Fix misspellings of “explicitly” all over the place.
8769   * Normalize ar member names when reading (removing trailing spaces and
8770     slash), this allows deb-split packages be created with GNU ar.
8771   * Validate compression level on dpkg-deb argument parsing.
8772   * Fix error handling, clean up and refactor compression code.
8773     Thanks to Jonathan Nieder for several of the patches.
8774   * Do not print unambiguous epoch on dpkg file overwrite error.
8775   * Rename Dpkg::IPC::fork_and_exec() to Dpkg::IPC::spawn().
8776   * Change dpkg-dev to Depend on perl instead of perl5 and perl-modules.
8777   * Fix small memory leaks related to scandir() in dpkg-deb and libdpkg.
8778   * Fix dpkg-query and dpkg-trigger to actually print a version on --version.
8779   * Always spawn a new shell on conffile prompt, instead of supporting
8780     self backgrounding, remove DPKG_NO_TSTP environment variable support.
8781     Closes: #38334
8782   * Set DPKG_SHELL_REASON, DPKG_CONFFILE_OLD and DPKG_CONFFILE_NEW environment
8783     variables when spawning a shell for conffile examination. Closes: #60329
8784     Thanks to Daniel Martin <Daniel.Martin@jhu.edu> for the idea.
8785   * Add support for disabling update-alternatives at configure time using
8786     --without-update-alternatives.
8787   * Add support for disabling install-info at configure time using
8788     --without-install-info.
8789   * Update debian/copyright.
8790   * Use Debian instead of ‘Debian GNU/Linux’ when referring to the
8791     distribution.
8792   * On dpkg --no-act with --install, --unpack or --record-avail, and
8793     dpkg-deb --info or --field use mkdtemp() to create a temporary directory
8794     instead of insecure tempnam() or tmpnam() functions.
8795   * Remove --license and --licence options from tools.
8796   * Securely remove newly installed files when rolling-back a failed unpack.
8797   * Change default lzma compression level from 9 to 6.
8798     Thanks to Jonathan Nieder for the initial patch.
8799   * Add support for xz compressed data.tar member of binary packages. Add
8800     xz-utils to dpkg's Pre-Depends. Closes: #542160
8801     Thanks to Jonathan Nieder for the initial patch.
8802   * Use xz command to handle lzma compressed files in dpkg and dpkg-dev.
8803     This removes the lzma package from both dpkg and dpkg-dev dependencies.
8804   * Do not set PKG_CONFIG_LIBDIR in dpkg-buildpackage when cross-building.
8805     The proper solution to this is to let the build system choose the
8806     appropriate pkg-config binary for the build or host system in the same
8807     way pkg.m4 is handling it now. Closes: #551118
8808   * Dynamically link against all external libraries. This includes libbz2
8809     and zlib for dpkg-deb and libselinux for dpkg on GNU/Linux.
8810   * Mark the libdpkg.a API as volatile and require any possible users to set
8811     LIBDPKG_VOLATILE_API to acknowledge that fact.
8812   * Add a new libdpkg-dev package with the headers and the static library,
8813     although its API should be considered volatile.
8814   * Reorganize the doc contents that goes into each package:
8815     - README.multicd only in dselect.
8816     - README.api only in development packages, dpkg-dev and libdpkg-dev.
8817     - triggers.txt only in dpkg-dev.
8818   * Move source.lintian-overrides to debian/source/lintian-overrides.
8819   * Switch SELinux support to explicitly set path context. This fixes the
8820     mislabeling of files under <admindir> on conffile extraction or on unpack
8821     errors, due to improper default context restoration. Closes: #498438
8822   * Use FIEMAP when available (on Linux based systems) to sort the .list
8823     files loading order. With a cold cache it improves up to a 70%.
8824     Thanks to Morten Hustveit <morten@debian.org>.
8825   * When FIEMAP is not available use posix_fadvise() to start preloading the
8826     .list files before loading them. With a cold cache it improves up to 40%.
8827     Thanks to Stefan Fritsch <sf@sfritsch.de>. Closes: #557560
8828   * Call fsync(2) after writing files on disk, to get the atomicity
8829     guarantees when doing rename(2). Based on a patch by
8830     Jean-Baptiste Lallement <jeanbaptiste.lallement@gmail.com>.
8831     Closes: #430958
8832   * Call fsync(2) on database directories after creating, renaming or
8833     unlinking files, to guarantee the new file entry is correctly listed
8834     in the directory. Base on a patch by
8835     Jean-Baptiste Lallement <jeanbaptiste.lallement@gmail.com>.
8836   * Document in the man page the effects of setting TMPDIR for dpkg and
8837     dpkg-deb, HOME for dselect and dpkg and PAGER for dpkg. Closes: #572836
8838   * Document the exit codes for dpkg-query. Closes: #571798
8839   * Document “dpkg-query -l” abbreviated state information in the man page.
8840     Based on a patch by Marc-Jano Knopp <pub_br_debian.org@marc-jano.de>.
8841     Closes: #383869
8842   * Honor LINGUAS environment variable when installing translated man pages.
8843   * Allow disabling at configure time Unicode ncurses support for dselect.
8844     Based on a patch by Yuri Vasilevski <yvasilev@gentoo.org>.
8846   [ Modestas Vainius ]
8847   * Implement symbol patterns (Closes: #563752). From now on, it is possible to
8848     match multiple symbols with a single entry in the symbol file template.
8849     While the concept is not new (wildcards also match multiple symbols),
8850     patterns cover much more ground and are a lot more flexible. Together with
8851     the framework, 3 basic pattern types are supported:
8852     - c++ - matching C++ symbols by their demangled name (as emitted by
8853       c++filt);
8854     - symver - matching by symbol version. It replaces the wildcards feature
8855       which is still supported for backwards compatibility but is reimplemented
8856       on top of the new framework;
8857     - regex - matching symbol names with perl regular expression.
8858     Basic patterns may be combined where it makes sense.
8859   * As a positive side effect of the new symbol patterns implementation,
8860     patterns are now treated like normal symbols whenever possible, e.g. a
8861     pattern is MISSING if it does not match anything. As a result,
8862     dpkg-gensymbols is now able to detect NEW/MISSING symbols when patterns are
8863     present in the symbol file (Closes: #541464). Please note, however, that
8864     there is no way to detect symbol changes in the pattern match sets.
8865   * Add source version to the dpkg-gensymbols diff label, reformat it according
8866     to the rules of dpkg-name.
8867   * Add -a<arch> option to dpkg-gensymbols.
8868   * Add -q option to dpkg-gensymbols. -c0 will never fail but still generate a
8869     diff. Use -c0 -q to keep dpkg-gensymbols completely quiet as before
8870     (Closes: #568228).
8872   [ Jonathan Nieder ]
8873   * Fix a file handle leak in “dpkg-deb --info”. Thanks to Raphael Geissert
8874     for the report and patch.
8876   [ Helge Kreutzmann ]
8877   * Add dpkg-gensymbols.1 to the translatable man page set.
8879   [ Updated programs translations ]
8880   * Catalan (Guillem Jover).
8881   * French (Christian PERRIER).
8882   * German (Sven Joachim).
8883   * Italian 'Milo Casagrande). Closes: #567531
8884   * Simplified Chinese (Aron Xua). Closes: #558794
8885   * Slovak (Ivan Masár). Closes: #559269
8886   * Swedish (Peter Krefting).
8888   [ Updated dselect translations ]
8889   * Catalan (Guillem Jover).
8890   * French (Christian Perrier).
8891   * German (Sven Joachim).
8892   * Spanish (Javier Fernández-Sanguino). Closes: #572861
8893   * Swedish (Peter Krefting).
8895   [ Updated man pages translations ]
8896   * French (Christian Perrier): correcting inconsistencies for the translation
8897     of "original" here and there. Thanks to Julien Valroff for pointing this.
8898   * German (Helge Kreutzmann).
8899   * Swedish (Peter Krefting).
8901   [ Updated scripts translations ]
8902   * Catalan (Guillem Jover).
8903   * French (Christian PERRIER).
8904   * German (Helge Kreutzmann).
8905   * Swedish (Peter Krefting).
8907  -- Guillem Jover <guillem@debian.org>  Fri, 12 Mar 2010 00:15:31 +0100
8909 dpkg (1.15.5.6) unstable; urgency=low
8911   * dpkg-source: with format "3.0 (quilt)" ensure quilt's .pc directory is
8912     created before trying to register a new patch in .pc/applied-patches.
8913     Thanks to Tommi Vainikainen <thv+debian@iki.fi> for the report and the
8914     patch. Closes: #561237
8915   * Fix dpkg-buildpackage to set "parallel=" in DEB_BUILD_OPTIONS instead of
8916     the invalid "parallel=-1" when option "-j" is given. Closes: #562038
8917   * Clarify how dpkg-source --print-format works and display messages on
8918     STDERR when the requested format is discarded. Closes: #560391
8919   * Add ${misc:Depends} in all Depends fields.
8921  -- Raphaël Hertzog <hertzog@debian.org>  Fri, 08 Jan 2010 17:57:43 +0100
8923 dpkg (1.15.5.5) unstable; urgency=low
8925   * Allow again new lines in dpkg-source and dpkg-genchanges on substvar and
8926     maintainer arguments.
8928  -- Guillem Jover <guillem@debian.org>  Tue, 22 Dec 2009 09:49:49 +0100
8930 dpkg (1.15.5.4) unstable; urgency=low
8932   * Fix Dpkg::Index::get() and remove(). Thanks to Roderich Schupp
8933     <roderich.schupp@googlemail.com> for the patch. Closes: #558595
8934   * Modify implementation of "3.0 (quilt)" source format to not be
8935     behave differently depending on whether quilt is installed or not.
8936     The option --without-quilt is thus gone and dpkg-source creates
8937     and relies on the .pc directory to know whether patches are applied
8938     or not. Closes: #557667
8939   * Add new dpkg-source option --single-debian-patch supported by the source
8940     format "3.0 (quilt)" so that it behaves more like 1.0 and its single diff
8941     that is constantly updated with all upstream changes. Useful if the
8942     workflow is VCS based and can't generate a full patch set.
8943   * dpkg-source now uses debian/source/patch-header as header of the automatic
8944     Debian patch in format "3.0 (quilt)".
8945   * Fix Debian changelog parser so that the trailer line is again checked.
8947  -- Raphaël Hertzog <hertzog@debian.org>  Mon, 07 Dec 2009 09:24:31 +0100
8949 dpkg (1.15.5.3) unstable; urgency=low
8951   [ Raphaël Hertzog ]
8952   * Avoid usage of IO::String in dpkg-scanpackages, rely on Dpkg::IPC
8953     instead to directly get a pipe file descriptor. Closes: #557013
8954   * Put "3.0 (quilt)" in the default list of formats tried by dpkg-source
8955     after "1.0" and before "3.0 (native)".
8956   * Let dpkg-source fail if several upstream orig.tar files are available
8957     (using different compression scheme) since we don't know which one
8958     to use.
8959   * Add missing "use Dpkg::Gettext" in Dpkg::Changelog::Entry::Debian.
8960     Closes: #557668
8961   * When building "3.0 (quilt)" source packages, use QUILT_PATCH_OPTS="-t -F 0
8962     -N -u -V never -g0" so that quilt is as strict as dpkg-source's internal
8963     implementation of quilt. Closes: #557664, #558233
8964   * Before accepting to build a 3.0 (quilt) source packages, ensure that
8965     debian/patches is a directory (or non-existing) and that
8966     debian/patches/series is a file (or non-existing). Closes: #557618
8967   * Dpkg::IPC::fork_and_exec() now includes the changed environment
8968     variables in the default error message displayed when the sub-process
8969     fails.
8971   [ Guillem Jover ]
8972   * Verify that the alternative used in update-alternatives --set has been
8973     registered instead of failing with an undefined value in the slave
8974     method. Closes: #554136
8975   * Strip leading spaces in the first line of a field's value in
8976     Dpkg::Control::Hash. Closes: #557547
8978  -- Guillem Jover <guillem@debian.org>  Fri, 27 Nov 2009 19:23:36 +0100
8980 dpkg (1.15.5.2) unstable; urgency=low
8982   * Change Dpkg::Version API to accept invalid versions by default and add
8983     is_valid() method. The boolean evaluation of a version object returns
8984     true if the version is valid, false otherwise.
8985   * Update dpkg-shlibdeps to always use Dpkg::Version now that it can
8986     contain the empty version string. Closes: #556786
8987   * Keep compatibility with perl 5.8 by avoiding the _ prototype.
8989  -- Raphaël Hertzog <hertzog@debian.org>  Wed, 18 Nov 2009 11:54:50 +0100
8991 dpkg (1.15.5.1) unstable; urgency=low
8993   * Fix build failures due to off_t type mismatch caused by not including
8994     <config.h> first on the unit tests. Suggested by Pierre Habouzit and
8995     Julien Cristau, thanks!
8997  -- Guillem Jover <guillem@debian.org>  Tue, 17 Nov 2009 16:42:00 +0100
8999 dpkg (1.15.5) unstable; urgency=low
9001   [ Guillem Jover ]
9002   * Remove obsolete conffiles on purge. Closes: #421367, #453005, #454628
9003   * Update list of binaries dpkg checks on the PATH.
9004     - Remove install-info, now a wrapper that will disappear soonish.
9005     - Add programs used by dpkg itself: sh, rm, find, tar and dpkg-deb.
9006   * Check and warn on duplicate conffiles in dpkg-deb. Closes: #131633
9007   * Make the upstream build system silent by default with automake 1.11 or
9008     newer, and always verbose when building the Debian packages.
9009   * Fix small leak when parsing ‘--ignore-depends’ option values.
9010   * Define compatibility WCOREDUMP only if the system does not have it.
9011   * When start-stop-daemon fails to set the io scheduling warn instead of
9012     finishing fatally. Closes: #553580
9013   * Update md5 file paths in debian/copyright.
9014     Thanks to Jonathan Nieder <jrnieder@gmail.com>.
9015   * On ‘dpkg-trigger --help’ print the default admindir instead of the one
9016     passed on the command line.
9017   * Abort on configure if the required C99 extensions are not supported.
9018   * Add C coding style document.
9019   * Make dpkg as strict as dpkg-statoverride on input when validating the
9020     parsed data from the statdb.
9021   * Rewrite dpkg-statoverride in C.
9022   * Use C99 snprintf function family semantics to avoid having to call them
9023     in a loop to grow the varbuf buffer. This should reduce memory usage and
9024     be slightly faster on varbufprintf calls.
9025   * Use the size from stat to allocate the buffers for readlink, instead of
9026     indefinitely calling readlink and growing the buffer. This should reduce
9027     memory usage when handling lots of symlinks, and be slightly faster.
9028   * Rework varbuf API to avoid increasing buffers indefinitely when adding
9029     content to them, regardless of space being already available.
9030   * Fix build macros to allow start-stop-daemon to use TIOCNOTTY.
9031   * Generate the autoconf version from git to make it easier to see when a
9032     snapshot version is being used.
9033   * Add infrastructure for doxygen, for now not installed anywhere.
9034   * Allow overriding the pkg-config path to ease cross-compilation.
9035     Suggested by Tollef Fog Heen <tfheen@err.no>.
9036   * Fix spelling errors in the Catalan translation. Closes: #553328
9037     Thanks to Robert Millan.
9038   * Update the FSF postal address in the source code license headers by
9039     replacing it with a URL to the gnu.org page.
9040   * Fix a file descriptor leak in dpkg-deb.
9041     Reported by Raphael Geissert <atomo64@gmail.com>.
9042   * Fix resource leaks on error conditions in compat scandir.
9043   * Add a new status-fd action when disappearing a package. Closes: #537338
9045   [ Raphaël Hertzog ]
9046   * Add versioned dependency on base-files (>= 5.0.0) to dpkg-dev to ensure
9047     that /etc/dpkg/origins/default exists. Closes: #545274
9048   * Update Standards-Version to 3.8.3 (no changes needed).
9049   * Major changes to the perl API:
9050     - Dpkg::Control is now Dpkg::Control::Info
9051     - Dpkg::Cdata is gone and is replaced by a new Dpkg::Control
9052     - Dpkg::Control::Fields contains authoritative information
9053       about fields allowed in various types of control information
9054       (and can be customized by each vendor). It also integrates
9055       information that was previously available through Dpkg::Deps.
9056     - Dpkg::Changelog has been split in multiple modules and largely
9057       modified to offer an interface that is now more in line with the
9058       other modules.
9059   * All dpkg-* perl programs that work with control information have been
9060     updated to use the new Dpkg::Control interface.
9061     In this process, dpkg-scanpackages has been fixed to not skip non-standard
9062     fields. Closes: #494136
9063   * Create Launchpad-Bugs-Fixed directly in the changelog parsing code thanks
9064     to a new vendor hook post-process-changelog-entry. Closes: #536066
9065   * Integrate dpkg-ftp into dselect. Add the required Replaces and Conflicts.
9066   * dpkg-scanpackages/dpkg-scansources now supports compressed override files.
9067   * dpkg-scanpackages now supports a new --medium option as needed to
9068     generate Packages.cd file for consumption by the multicd dselect access
9069     method. Closes: #402527
9070   * Integrate dpkg-multicd into dselect. Add the required Replaces and
9071     Conflicts. The dpkg-scanpackages fork is dropped. Closes: #516631
9072   * Fix bashisms in dselect multicd access method. Closes: #530070
9073   * Add support of "xz" compression method for source packages. Add dependency
9074     dpkg-dev → xz-utils to ensure xz and unxz are available.
9075   * Fix dpkg-source --include-binaries to correctly compute the path name of
9076     the discovered binary files. Closes: #554612
9077   * Remove extra quoting that should not be there while passing an exclude
9078     file to git ls-files during build of 3.0 (git) source package.
9079     Thanks to Courtney Bane for the patch. Closes: #551829
9080   * Optimize dpkg-source -b by avoiding many diff calls when not required.
9081     Thanks to Mike Hommey for the idea. Closes: #554689
9082   * Add new option --print-format to dpkg-source to be able to know by advance
9083     the source format that would be used during a build.
9084   * Modify dpkg-source -b to use default build options from
9085     debian/source/options. Thus it's now possible to have sticky options, for
9086     example for the choice of a compression method (--compression=<comp>).
9087   * dpkg-source outputs the list of upstream files modified by the diff.gz
9088     (applies only to source packages using format 1.0). Closes: #482166
9089     It also recommends usage of 3.0 (quilt) format during dpkg-source -b if it
9090     detects changes to upstream files that are stored in the .diff.gz.
9091   * Add DEP-3 compliant headers to automatic patches created by dpkg-source
9092     in 3.0 (quilt) source format. Closes: #543581
9093   * Switch dpkg to source format "3.0 (native)" with bzip2 compression.
9095   [ Updated programs translations ]
9096   * Czech (Miroslav Kure).
9097   * French (Christian Perrier).
9098   * German (Sven Joachim).
9099   * Italian (Milo Casagrande). Closes: #548615, #555806
9100   * Polish (Wiktor Wandachowicz). Closes: #548541
9101   * Swedish (Peter Krefting).
9103   [ Updated dselect translations ]
9104   * Czech (Miroslav Kure).
9105   * French (Christian Perrier).
9106   * German (Sven Joachim).
9107   * Polish (Wiktor Wandachowicz). Closes: #548541
9108   * Swedish (Peter Krefting).
9110   [ Updated man pages translations ]
9111   * French (Christian Perrier).
9112   * French translation error fixed (Christian Perrier)
9113     Thanks to Pietro Battiston for spotting it. Closes: #545446
9114   * German (Helge Kreutzmann).
9115   * Polish (Wiktor Wandachowicz). Closes: #548541
9116   * Swedish (Peter Krefting).
9118   [ Updated scripts translations ]
9119   * German (Helge Kreutzmann).
9120   * Polish (Wiktor Wandachowicz). Closes: #548541
9121   * Swedish (Peter Krefting).
9123  -- Guillem Jover <guillem@debian.org>  Tue, 17 Nov 2009 10:17:57 +0100
9125 dpkg (1.15.4.1) unstable; urgency=medium
9127   * Do not mark any package as unseen in dselect. This is a workaround
9128     until it learns how to store such information again. Closes: #545366
9130  -- Guillem Jover <guillem@debian.org>  Mon, 19 Oct 2009 15:15:17 +0200
9132 dpkg (1.15.4) unstable; urgency=low
9134   [ Guillem Jover ]
9135   * Call _g instead of g_ in dpkg-name.
9136   * Fix inverted logic when deciding to assume the architecture in dpkg-name
9137     when the package didn't have such field.
9138   * Do not take into account Revision and Package_Revision fields in dpkg-name
9139     and dpkg-scanpackages as they have been handled already by “dpkg-deb -I”.
9140   * Switch dpkg-scansources to use Dpkg::Cdata instead of duplicating the
9141     .dsc parsing code. As a side effect it now handles properly bogus files.
9142   * Do not remap obsolete fields in dpkg-scanpackages as they have been
9143     handled already by “dpkg-deb -I”.
9144   * Properly mark packages being purged for disappearance from the database.
9145     This will make the status database not be left behind with traces of old
9146     not-installed packages. Closes: #472208
9147   * On parse mark not-installed leftover packages for automatic removal from
9148     the database on next dump. This obsoletes the --forget-old-unavail option,
9149     thus making it now a no-op. Closes: #33394, #429262
9150   * Document “hold” under package selection states instead of flags in dpkg(1).
9151   * Remove trailing ‘/’ and ‘/.’ from the directory name to be used as the
9152     package name on “dpkg-deb -b”. Closes: #218018, #373602
9153   * Remove obsolete ‘hold’ and ‘hold-reinstreq’ internal status flags.
9154   * Add fakeroot to dpkg-dev Recommends. Closes: #536821
9155   * Fix an always false test when trying to decide which package to deselect
9156     to resolve a dependency problem in dselect.
9157   * Add uClibc Linux support to ostable and triplettable. Closes: #455501
9158   * Add uClinux support to ostable and triplettable.
9159     Thanks to Simon Richter <sjr@debian.org>.
9160   * When aborting due to file conflicts print the version of the conflicted
9161     package. Closes: #540019
9162   * Remove double slash in database path visible to the user in some error
9163     conditions.
9164   * Stop matching sparc64-*-* GNU triplets with sparc Debian architecture.
9165   * Add support for config.d style directories in dpkg and dselect,
9166     (/etc/dpkg/dpkg.cfg.d and /etc/dpkg/dselect.cfg.d respectively).
9167   * Define DPKG_MAINTSCRIPT_ARCH on the maintainer script environment to the
9168     architecture the package got built for.
9169   * Document DPKG_MAINTSCRIPT_PACKAGE maintainer script environment variable
9170     in dpkg man page.
9171   * Document DPKG_RUNNING_VERSION maintainer script environment variable
9172     in dpkg man page.
9173   * Change po4a usage to not create unwanted changes depending if doing out or
9174     in-tree builds.
9175   * Use po4a “--previous” support when updating the man pages.
9176     Suggested by Christian Perrier <bubulle@debian.org>.
9177   * On configuration error print file name and line number.
9178   * Allow quoting values in configuration file options.
9179   * Add new --pre-invoke and --post-invoke hooks in dpkg.
9180   * Add new --control-path command to dpkg-query.
9181   * Use ohshit on bad version syntax in --compare-versions.
9182   * Add Multi-Arch to the list of known binary package fields for dpkg-dev.
9183     Thanks to Steve Langasek <vorlon@debian.org>.
9185   [ Raphaël Hertzog ]
9186   * Replace install-info by a wrapper around GNU's install-info. The wrapper
9187     will be dropped in squeeze+1. dpkg now Breaks: old versions of
9188     info-browsers that do not depend on the new install-info package
9189     that provides the real functionality. Closes: #9771, #523980
9190     See https://wiki.debian.org/Transitions/DpkgToGnuInstallInfo for details.
9191   * Fix dpkg's preinst in case /var/lib/dpkg/alternatives contains unexpected
9192     sub-directories. Closes: #535138
9193     And also when one of the file doesn't contain correct alternatives
9194     information (improper number of lines). Closes: #537558
9195   * Upgrade Standards-Version to 3.8.2 (no changes).
9196   * Update deb-substvars(5) to list fields that do not support substvars.
9197     Closes: #535353
9198   * Fix dpkg-parsechangelog to include all entries with -v0 parameter.
9199     Closes: #537800
9200   * Fix update-alternatives to mention the correct slave link that can't
9201     be installed due to a conflicting file instead of quoting the master link.
9202   * Add support for extra override file in dpkg-scanpackages. Thanks to Robert
9203     Millan for the patch. Closes: #537559
9204   * Add support for extra override file in dpkg-scansources.
9205   * Document format of extra override file in a new manual page
9206     deb-extra-override(5).
9207   * Update sample in dpkg-gensymbols(1) to give an accurate listing of
9208     64 bit arches. Thanks to Julien Cristau for the patch. Closes: #540382
9209   * Create /etc/cron.daily/dpkg to handle the backup of
9210     /var/lib/dpkg/status in /var/backups. This is taken out of the cron
9211     package and need no conflicts/breaks as the code does nothing if
9212     the current status file is already backuped. Thanks to Leo 'costela'
9213     Antunes <costela@debian.org> for the patch. Closes: #541412
9214   * Change behaviour of dpkg --merge-avail to not update a package's
9215     information if the version provided is older than the one already listed
9216     in the available file. Thanks to Ian Jackson
9217     <ian@davenant.greenend.org.uk> for the patch. Closes: #496114
9218   * dpkg-architecture can now export DEB_{HOST,BUILD}_ARCH_{BITS,ENDIAN}
9219     (pointer size and endianness):
9220     - cputable (in dpkg) modified to contain those information
9221     - dpkg-dev depends on dpkg (>= 1.15.4) to ensure that we have an updated
9222       cputable (and so that a versioned build-dependency on dpkg-dev is enough
9223       to use this new feature)
9224     Closes: #531307
9225   * Split overly long Binary: field values over multiple lines. This is
9226     allowed since policy 3.8.3. Closes: #494714
9227   * Improve performance of dpkg-shlibdeps by caching minimal version
9228     associated to each library in Dpkg::Shlib::SymbolFile. Thanks to
9229     Jiří Paleček <jpalecek@web.de> for the patch.
9230   * Slightly improve dpkg-source(1) by giving the section name that we're
9231     referring to. Closes: #544037
9232   * Fix translation error in German manpage of dpkg-buildpackage. Thanks
9233     to Joachim Breitner <nomeata@debian.org>. Closes: #541829
9235   [ Modestas Vainius ]
9236   * Provide a meaningful label for dpkg-gensymbols diff.
9238   [ Updated programs translations ]
9239   * Asturian (Marcos Alvarez Costales). Closes: #535327
9240   * French (Christian Perrier).
9241   * German (Sven Joachim).
9242   * Italian (Milo Casagrande). Closes: #536538
9243   * Russian (Yuri Kozlov). Closes: #542254
9244   * Slovak (Ivan Masár). Closes: #537742
9245   * Swedish (Peter Krefting).
9247   [ Updated dselect translations ]
9248   * Russian (Yuri Kozlov). Closes: #542254
9249   * Slovak (Ivan Masár). Closes: #537741
9251   [ Updated man pages translations ]
9252   * French (Christian Perrier).
9253   * German (Helge Kreutzmann), proofread by Jens Seidel.
9254   * Swedish (Peter Krefting).
9256   [ Updated scripts translations ]
9257   * French completed (Christian Perrier).
9258   * German (Helge Kreutzmann).
9259   * Russian (Yuri Kozlov). Closes: #542254
9260   * Swedish (Peter Krefting).
9262  -- Guillem Jover <guillem@debian.org>  Sun, 06 Sep 2009 09:37:45 +0200
9264 dpkg (1.15.3.1) unstable; urgency=low
9266   [ Modestas Vainius ]
9267   * Fix wildcard support in symbol files. Closes: #536034
9269  -- Guillem Jover <guillem@debian.org>  Wed, 08 Jul 2009 11:26:36 +0200
9271 dpkg (1.15.3) unstable; urgency=low
9273   [ Guillem Jover ]
9274   * Unset TAR_OPTIONS when extracting .deb archives.
9275   * Use default compressor values in dpkg-source from Dpkg::Source::Compressor.
9276   * Fix dpkg-scanpackages to properly detect spurious overrides.
9277   * Rewrite dpkg-name in perl.
9278   * Do not close already closed files in some error conditions in libdpkg.
9279   * Use the correct units (KiB) in dpkg-split when referring to partsize.
9280   * Document in dpkg-statoverride(8) that mode needs to be specified in
9281     octal. Closes: #534551
9282   * Mark argument names in dpkg-statoverride.1 in italic.
9283   * Explicitly pass field argument to Dpkg::ErrorHandling::unknown().
9284   * Move unknown() from Dpkg::ErrorHandling to Dpkg::Fields.
9286   [ Raphaël Hertzog ]
9287   * Unset TAR_OPTIONS when creating/extracting tar archives for source
9288     packages. Closes: #530860
9289   * Add cleanup of all invalid (master) alternatives in preinst script.
9290     Closes: #530633, #531611, #532739, #521760
9291   * Let update-alternatives fix a manual alternative with a dangling symlink
9292     by switching it to automatic mode. Closes: #529999
9293   * Add missing paragraph separator in dpkg-buildpackage(1). Thanks to Per
9294     Andersson <avtobiff@gmail.com>. Closes: #532769
9295   * Fix English mistake (“as you request” → “as you requested”) in several
9296     places. Thanks to David Stansby for the patch. Closes: #533171
9297   * Support tags before symbols in symbols file contained in source packages.
9298     The first two tags are "optional" (use it to not fail if the symbol might
9299     disappear from the library without breaking the ABI) and "arch" to
9300     restrict the set of architectures where the symbol is supposed to exist.
9301     Thanks to Modestas Vainius <modestas@vainius.eu> for the patch.
9302     See dpkg-gensymbols(1) for more information. Closes: #521551
9303   * Do not include #MISSING lines in symbols files integrated in binary
9304     packages. Closes: #526251
9305   * Assume an implicit version of "Base" for all unversioned symbols
9306     that are merged into a SymbolFile. Closes: #533181
9307   * Add new tag "ignore-blacklist" to force-include symbols which are
9308     normally blacklisted. This can be useful for libgcc to include symbols
9309     that the toolchain allows being shared but that are often static (and
9310     hence are blacklisted for this reason). Closes: #533642
9311   * In dpkg-source, explicitly pass --keyring ~/.gnupg/trustedkeys.gpg to
9312     gpgv as it does not use it if other --keyring parameters are given.
9313     Closes: #530769
9314   * In dpkg-vendor, allow using dashes instead of spaces in vendor
9315     filenames. Closes: #532222
9316   * Skip dpkg-genchanges' warning about lower version numbers for backports
9317     (recognized by ~bpo or ~vola in their version number). Closes: #525115
9318   * Support all checksum algorithms in dpkg-scanpackages/dpkg-scansources.
9319     Closes: #533828
9320   * Fix dependency parsing code in Dpkg::Deps to not accept "foo\nbar"
9321     even if foo is valid. Closes: #534464
9322     Thanks to Andrew Sayers for spotting the problem.
9324   [ Joachim Breitner ]
9325   * Warn about unused substvars in dpkg-gencontrol. Closes: #532760
9327   [ Updated programs translations ]
9328   * Catalan (Jordi Mallach). Closes: #532109
9329   * Czech (Miroslav Kure).
9330   * German (Sven Joachim). Closes: #534831
9331   * Simplified Chinese (Deng Xiyue). Closes: #531387
9332   * Swedish (Peter Krefting).
9334   [ Updated dselect translations ]
9335   * Czech (Miroslav Kure).
9337   [ Updated man pages translations ]
9338   * German (Helge Kreutzmann).
9339   * Swedish (Peter Krefting).
9341   [ Updated scripts translations ]
9342   * German (Helge Kreutzmann).
9343   * Swedish (Peter Krefting).
9345  -- Guillem Jover <guillem@debian.org>  Sat, 27 Jun 2009 19:06:43 +0200
9347 dpkg (1.15.2) unstable; urgency=low
9349   [ Guillem Jover ]
9350   * Fix FTBFS on GNU/Hurd due to a mismatched define usage in
9351     start-stop-daemon. Closes: #530446
9352   * Remove obsolete priorities support from dselect.
9353     Thanks to Sven Joachim <svenjoac@gmx.de>.
9354   * Fix bashism (“echo -e”) in dselect disk setup method. Closes: #530071
9355   * Properly parse fdisk output in dselect disk setup method.
9356   * Fix memory leaks due to not destroying some pkg iterators.
9358   [ Updated programs translations ]
9359   * Asturian (Marcos Alvarez Costales). Closes: #529889
9360   * Basque (Piarres Beobide). Closes: #529857
9361   * French (Christian Perrier).
9362   * German (Sven Joachim).
9364   [ Updated man pages translations ]
9365   * German (Helge Kreutzmann).
9367   [ Updated dselect translations ]
9368   * French (Christian Perrier).
9370   [ Updated scripts translations ]
9371   * French (Christian Perrier).
9372   * German (Helge Kreutzmann).
9374  -- Guillem Jover <guillem@debian.org>  Tue, 26 May 2009 01:00:36 +0200
9376 dpkg (1.15.1) unstable; urgency=low
9378   [ Raphaël Hertzog ]
9379   * Fix dpkg-genchanges to not include the additional upstream tarballs
9380     when they are not desired (specific to source packages using format 3.0
9381     quilt).
9382   * Call quilt only once to apply all patches instead of once per patch
9383     when building 3.0 (quilt) source packages. Closes: #518453
9384   * Fix dpkg-shlibdeps so that it works again when analyzing binaries
9385     outside of package's directory. Closes: #518687
9386   * Modify dpkg-shlibdeps to let shlibs.local override symbols files too.
9387   * Drop support of debian/control's “Format” field used by dpkg-source while
9388     it's not too late. Instead debian/source/format should be used to indicate
9389     the desired source package format.
9390   * Update deb-triggers(5) and dpkg-trigger(1) to add a reference to
9391     /usr/share/doc/dpkg/triggers.txt.gz. Closes: #519717
9392   * Avoid perl warnings in dpkg-gencontrol and dpkg-genchanges when the
9393     Architecture field is missing in a binary package. Closes: #510282
9394   * Modify Dpkg::Version::check_version() to not die by default.
9395     Closes: #510615
9396   * dpkg-source now ignores all possible vi swap file extensions (and not
9397     only .swp). The corresponding exclude pattern for -I also got tightened to
9398     only catch filenames starting with a dot. Closes: #515540
9399   * dpkg-gencontrol displays a better error message when an ORed dependency
9400     is used in a union field like Conflicts, Replaces or Breaks.
9401     Closes: #489238
9402   * dpkg-source's signature check is now done with gpgv if possible and
9403     timeouts if not completed within 10 seconds. Closes: #490929
9404     When using gpg, use --no-default-keyring to be consistent with gpgv's
9405     behaviour to not use the user's keyring. Closes: #440841
9406   * Update dpkg-dev dependencies: Closes: #472942
9407     - Move gnupg to Recommends. It's needed to sign .dsc and .changes.
9408     - Add gpgv to Recommends. Useful to check signatures of extracted packages.
9409     - Add debian-maintainers to Suggests. Together with debian-keyring they
9410     contain all the GPG keys required to verify official Debian packages.
9411   * Drop /etc/dpkg/origins as it's taken over by base-files (see #487437).
9412   * Fix dpkg-shlibdeps to properly initialize a symbol-based dependency
9413     even when some symbols are associated with a (fake) version "0". Such a
9414     version means that the symbol has always existed in all versions of the
9415     package.
9416   * When dpkg delegates to dpkg-query or dpkg-deb to do the actual work, add
9417     the "--" marker to explicitly document the end of options so that
9418     arguments starting with a dash are not interpreted as options.
9419     Closes: #293163
9420     Thanks to Bill Allombert for the patch.
9421   * dpkg now correctly refuses empty parameters when an integer value is
9422     wanted. Closes: #386197 Based on a patch by Bill Allombert.
9423   * Fix a mistake in the french translation of dpkg's manual page.
9424     Thanks to Jonathan Gibert. Closes: #522032
9425   * Fix dpkg-source to not die when uncompressor processes are killed by
9426     SIGPIPE due to tar closing the pipe without exhausting all the data
9427     available. Closes: #523329
9428   * dpkg-gencontrol now handles properly (empty) dependencies which contain
9429     only spaces. Closes: #522787
9430   * dpkg-source now accepts additional tarballs (in format "3.0 (quilt)")
9431     with a "component" name containing dashes. Closes: #524376
9432   * Fix dpkg-source to not complain on binary files that are ignored and are
9433     not going to be included in the debian tarball of a "3.0 (quilt)" source
9434     package. Closes: #524375
9435   * Bump Standards-Version to 3.8.1 (no change required).
9436   * Do not store usernames and group names in tarballs created by dpkg-source,
9437     they are anyway ignored at unpack time. Closes: #523184
9438   * Fix update-alternatives to not remove real files installed in place of
9439     an alternative link when the corresponding alternative is fully removed.
9440     Closes: #526538
9441   * Add a new dpkg-vendor tool to query vendor information stored in
9442     /etc/dpkg/origins. It can be used in debian/rules to enable different
9443     behaviour depending on the current vendor at the time of the build.
9444     Closes: #498380
9445     Modify dpkg-buildpackage to not set the DEB_VENDOR environment variable,
9446     packages should use the dpkg-vendor program instead.
9447   * Ensure that the automatic patch created in format "3.0 (quilt)" is always
9448     well registered with quilt even when it's updated by a new call to
9449     dpkg-source. Thanks to Goswin von Brederlow for the initial patch.
9450     Closes: #525858
9451   * Do not update/create debian/patches/.dpkg-source-applied during build,
9452     it's only meant to document what patches have been applied at extraction
9453     time. Closes: #525835
9454   * Let dpkg-buildpackage add the missing execute right on debian/rules if
9455     needed. Display a warning when it happens. Closes: #499088
9456   * Allow combining -nc and -S in dpkg-buildpackage but display a warning
9457     saying that it's not advised. Closes: #304404
9458   * Let dpkg-buildpackage error out with subprocerr() when dpkg-checkbuilddeps
9459     is interrupted/killed by a signal. Closes: #498734
9460   * Fix dpkg-buildpackage/dpkg-genchanges to properly interpret option -v0.
9461     Closes: #475916
9462   * Improves how dpkg-parsechangelog handles non-existing versions
9463     in its --since, --until, --to, --from options. Approximate the intent
9464     by selecting the nearest version instead. Closes: #477638
9465   * Update dpkg-parsechangelog's documentation to make it clearer that spaces
9466     are not allowed between single characters options and their values.
9467     Closes: #494883
9468   * Don't let dpkg-scanpackages complain about missing overrides when
9469     no overrides file has been given. Closes: #468106
9470     Thanks to Piotr Engelking for the patch.
9472   [ Guillem Jover ]
9473   * Fix typo in dpkg output (for ‘unexpected’). Closes: #519082
9474     Thanks to Ivan Masár.
9475   * Sync archtable with architectures currently present in Debian sid.
9476     - Remove m68k.
9477     - Add kfreebsd-i386 and kfreebsd-amd64.
9478   * Add avr32 to cputable. Closes: #523456
9479   * Detect the curses headers to use instead of hardcoding them.
9480   * Make dpkg-source do not set arch:any in .dsc on arch-restricted packages.
9481     Thanks to Philipp Kern <pkern@debian.org>. Closes: #526617
9482   * Add '.hgtags' to the default dpkg-source -i regex and -I pattern.
9483     Closes: #525854
9484   * Use backticks instead of non-portable make $(shell) function in automake.
9485   * Do not install dselect and start-stop-daemon man pages when the programs
9486     have been disabled from configure.
9487   * Move Debian specific keyrings to the Debian vendor class and change the
9488     Ubuntu vendor class to inherit from it.
9489   * Do not set the Arch substvar in dpkg-source, avoiding generating warnings
9490     when there's no compiler present. Closes: #526132
9491   * Preserve faulting errno when printing reason in start-stop-daemon fatal
9492     function.
9493   * Only print fatal errno string in start-stop-daemon if it was non-zero.
9494   * Print the valid values for the IO scheduler class in start-stop-daemon
9495     --help output.
9496   * Print a warning when using obsolete '--print-installation-architecture'.
9497     Closes: #528171
9498   * Remove obsolete --largemem and --smallmem dpkg options.
9499   * Remove obsolete --force-auto-select dpkg option.
9500   * Remove obsolete priorities support from dpkg.
9501   * Remove obsolete 822-date program.
9502   * Do not right justify the database reading progress percent counter.
9503   * Remove deprecated status on substvars for dpkg-source dpkg-genchanges,
9504     and stop producing warnings.
9505   * Make deprecated dpkg-scanpackages --udeb option produce a warning.
9506   * Change dpkg-source --help output to state there's no default substvar
9507     file to match reality.
9508   * Warn in start-stop-daemon if the argument to --name is longer than the
9509     supported kernel process name size. Closes: #353015, #519128
9510   * Do not warn in dpkg-deb when parsing unknown fields with the “Private-”
9511     prefix. Based on a patch by Nils Rennebarth. Closes: #353040
9513   [ Frank Lichtenheld ]
9514   * Dpkg::Version: Remove unnecessary function next_elem which just
9515     replicates the standard shift behaviour.
9517   [ Colin Watson ]
9518   * Add "keyrings" vendor hook, used by dpkg-source to allow vendors to
9519     supply additional keyrings against which source package signatures will
9520     be verified. Implement this for Ubuntu. Closes: #525834
9522   [ Updated dselect translations ]
9523   * German (Sven Joachim).
9524   * Swedish (Peter Krefting).
9526   [ Updated scripts translations ]
9527   * French (Christian Perrier).
9528   * German (Helge Kreutzmann).
9529   * Swedish (Peter Krefting).
9531   [ Added programs translations ]
9532   * Asturian (Marcos Alvarez Costales). Closes: #519478, #519813, #519998
9533   * Esperanto (Felipe Castro). Closes: #523023
9535   [ Updated programs translations ]
9536   * French (Christian Perrier).
9537   * German (Sven Joachim).
9538   * Slovak (Ivan Masár). Closes: #519084
9539   * Swedish (Peter Krefting).
9540   * Russian (Yuri Kozlov). Closes: #526659
9542   [ Updated man pages translations ]
9543   * German (Helge Kreutzmann).
9544   * Swedish (Peter Krefting).
9546  -- Guillem Jover <guillem@debian.org>  Thu, 21 May 2009 06:45:45 +0200
9548 dpkg (1.15.0) experimental; urgency=low
9550   [ Guillem Jover ]
9551   * Do not suggest manually changing the alternative symlinks on
9552     update-alternative's verbose mode. Closes: #412487
9553   * Refactor subprocess signal setup.
9554   * Mark and coalesce similar strings for translation.
9555   * Add '.be' to the default dpkg-source -i regex. Closes: #481716
9556     Based on a patch by Ben Finney.
9557   * Fix link order when using libcompat.a and libintl.a by placing them after
9558     libdpkg.a. Based on a patch by Martin Koeppe. Closes: #481805
9559   * Remove duplicate program name from dpkg-trigger badusage output.
9560   * Trim trailing slash and slash dot from 'dpkg -S' arguments when those
9561     are path names, but not on patterns. Closes: #129577
9562   * Fix the support for passing more than one --status-fd option to dpkg.
9563     Until now only the last one was being used.
9564   * Replace realloc plus error checking usage with m_realloc.
9565   * Add '.hgignore' to the default dpkg-source -i regex and -I pattern.
9566     Closes: #485365
9567   * Support diverting files when origin and destination are on different file
9568     systems. Based on a patch by Juergen Kreileder. Closes: #102144, #149961
9569   * Do not silently enable --rename on dpkg-divert --remove. Closes: #160848
9570   * Do not allocate memory when lstat fails during package upgrade.
9571   * Properly lstat the correct file when using --root on package upgrade.
9572     Thanks to Egmont Koblinger. Closes: #281057
9573   * Print a longer string when a disallowed field value is found when parsing.
9574   * Use $(filter ...) instead of $(findstring ...) to extract space separated
9575     options from DEB_BUILD_OPTIONS in debian/rules.
9576   * Do not leave new conffile as .dpkg-new when it has been diverted, also
9577     properly activate the file trigger for the diverted conffile.
9578     Based on a patch by Timothy G Abbott. Closes: #58735, #476899
9579   * Improve comment on BUGS section in dpkg-deb.1 about lack of authentication
9580     and checksum support in .deb files. Closes: #492052
9581   * Use a troff special character for the copyright symbol on man pages.
9582   * Mark program names in dpkg-trigger.1 in bold.
9583   * Unmark dselect debug messages for translation.
9584   * Use a the warning function to uniformly print all warning messages.
9585   * Properly use internerr to report about programming bugs.
9586   * Do not log repeated strings when the write call wrote partial data.
9587   * Change dir to / after chroot when using --instdir.
9588     Thanks to Colin Watson <cjwatson@ubuntu.com>. Closes: #509578
9589   * Make dpkg log files user readable. Closes: #480556
9590   * Clarify in the start-stop-daemon man page that the signal sent by default
9591     is TERM not KILL. Closes: #507568
9592   * Warn in dpkg-deb man page that -x will modify the extraction directory
9593     permissions. Closes: #502496
9594   * Make start-stop-daemon behave the same way whether --chuid gets a user
9595     name or a uid. Closes: #368000
9596   * Add new option --procsched to start-stop-daemon to be able to set the
9597     process scheduling policy and priority. Closes: #175740
9598   * Add initial C unit test suite for libdpkg.
9599   * Sanitize --status-fd output by replacing newlines with spaces.
9600     Closes: #505172
9601   * Remove unneeded cpio dependency from dpkg-dev.
9602   * Add kopensolaris support to ostable and triplettable. Closes: #509312
9603   * Document in deb.5 in detail the currently supported format, ar member
9604     names, types of tar archives and data.tar members.
9605   * Print correct feature name on «dpkg --assert-*» failures.
9606   * Add progress reporting to dpkg while reading the file list database.
9607     Based on a patch by Romain Francoise.
9608   * Add new option --iosched to start-stop-daemon to be able to set the
9609     IO scheduling class and priority. Closes: #443535
9610     Thanks to Chris Coulson <chrisccoulson@googlemail.com>.
9611   * Add tar format detection support to the internal extractor.
9612   * Add support for ustar long names using the prefix field. Closes: #474092
9613   * Code refactoring and cleanup, some of the major changes include:
9614     - Use standard interfaces instead of ad-hoc ones.
9615     - Fix memory leaks.
9616     - Fix compilation warnings.
9617     - Constify string members in structures and arguments in functions.
9618     - Make local functions static.
9619     - Remove unused functions, macros and variables.
9620     - Fix and cleanup libcompat broken replacement implementations.
9621     - Reduction of module interdependencies.
9622     - Rename function and variable names to make them more clear.
9623     - Cleanup and split of header files.
9625   [ Raphaël Hertzog ]
9626   * Enhance dpkg-shlibdeps' error message when a library can't be found to
9627     include the ELF format of the desired library. Closes: #474671
9628   * dpkg-gensymbols now refuses empty values for the -v -P and -e
9629     parameters.
9630   * Update dpkg(1) to refer to conffile whenever we speak of configuration
9631     file handled by dpkg. Thus harmonize vocabulary with the policy. Thanks
9632     to Helge Kreutzmann <debian@helgefjell.de>. Closes: #381219
9633   * Improve error message stating that dpkg is unable to create a file so that
9634     it also refers to the real filename instead of the non-diverted name only.
9635     Thanks to Daniel Hahler for the patch. Closes: #457135
9636   * dpkg-gencontrol can now again read the control file from its standard
9637     input with "-c-". Closes: #465340
9638   * Add DEB_VENDOR environment variable in the build environment to be able
9639     to change behaviour dynamically depending on the vendor of the current
9640     system (or target system when the user overrides DEB_VENDOR by setting
9641     it himself). Closes: #457371
9642   * dpkg-shlibdeps give less strong warnings for symbols not found in NEEDED
9643     libraries when the shared library is a non-public directory and is likely
9644     to be a plugin. Closes: #481165
9645   * Clarify list of packages displayed by dpkg --get-selections and
9646     dpkg-query -l. Thanks to Jidanni. Closes: #487455
9647   * Document -A option in dpkg-buildpackage(1). Closes: #482834
9648   * Add some warning concerning the available file and the related commands.
9649     They are mostly obsolete for APT users. Closes: #481185
9650   * Add new option --listpackage to dpkg-divert. Thanks to Timothy G Abbott
9651     <tabbott@MIT.EDU> for the patch. Closes: #485012
9652   * Add new option --require-valid-signature to dpkg-source. Closes: #390282
9653   * In dpkg-query(1) document the origin of the various fields and warn that
9654     they are not always available. Closes: #488293
9655   * Improve error message in install-info when the file doesn't exist.
9656     Thanks to Thomas Hood <jdthood@yahoo.co.uk>. Closes: #107098
9657   * Use description of installed package as fallback in dselect.
9658     Based on a patch from Bruce Sass <bmsass@shaw.ca>. Closes: #21659
9659   * Reduce memory usage of dselect by avoiding usage of a big infopad.
9660     Thanks to Michel Lespinasse <walken@zoy.org> for the patch.
9661     Closes: #395140
9662   * Largely improve and update dpkg-buildpackage's manual page.
9663   * Clarify two points in dpkg-source(1). Closes: #490693
9664   * Support RUNPATH exactly like RPATH in dpkg-shlibdeps. Closes: #502258
9665     Thanks to Javier Serrano Polo <jasp00@terra.es>.
9666   * Set Standards-Version to 3.8.0 (no changes needed).
9667   * Drop some unneeded lintian overrides.
9668   * Fix a chmod call in dpkg-source to not fail when POSIXLY_CORRECT is set.
9669     Closes: #506028
9670   * Optimize dpkg-shlibdeps by caching parsed symbols files and
9671     objdump objects. Thanks to Modestas Vainius <modestas@vainius.eu> for the
9672     patch. Closes: #503954
9673   * Add new framework to hook vendor-specific logic (see
9674     module Dpkg::Vendor::Default).
9675   * Add Ubuntu vendor object implementing lookup of launchpad bugs in
9676     changelogs and a safety-check for Maintainer fields of forked packages
9677     (launched during source build). Closes: #426752, #499924
9678   * Improve behaviour of update-alternatives --config. Thanks to
9679     Osamu Aoki <osamu@debian.org> for the initial patch. We can know
9680     select between manual and auto in --config and --all. Closes: #392430
9681   * Fix update-alternatives to not switch to manual mode an alternative
9682     with a broken symlink (instead let the current action fix it).
9683     Also ensure that a message is displayed by default when such a switch is
9684     made. Closes: #141325, #87677
9685   * Fix update-alternatives' logic to rename files. It failed to ignore errors
9686     in some cases where it wanted to when the source file didn't exist.
9687     Closes: #99870
9688     This also makes update-alternatives less noisy when this happens since we
9689     don't call mv when we know that it's going to fail.
9690     Closes: #98822
9691   * Properly remove inappropriate slave links in update-alternatives even when
9692     we switch to manual mode with --set or --config. Closes: #388313
9693   * Modify update-alternatives to always remove the alternative group when the
9694     last alternative is removed (even in manual mode).
9695   * Ensure that update-alternative --install fix the links if the alternative
9696     installed is the one currently selected. Closes: #100135
9697   * Let update-alternatives deal with empty files in its administrative
9698     directory by ignoring them. Closes: #457863
9699   * Add new --target and --as-root options to dpkg-buildpackage to call
9700     any debian/rules target with the proper build environment.
9701     Closes: #477916
9702   * Move update-alternatives, dpkg-divert and dpkg-statoverride to /usr/bin
9703     but keep compatibility symlinks in /usr/sbin for the squeeze release
9704     until all maintainer scripts are fixed (see
9705     https://lintian.debian.org/tags/command-with-path-in-maintainer-script.html).
9706     Closes: #216606
9707   * Use dh_lintian to install lintian overrides. Build-Depends on debhelper
9708     (>= 6.0.7) for this. Update debhelper compatibility level to 6 at the same
9709     time.
9710   * Drop cleanup-info script.
9711   * Reset umask to 0022 in dpkg-gencontrol and dpkg-gensymbols to ensure that
9712     files created in the DEBIAN directory have sane permissions.
9713     Closes: #516481
9714   * Rewrite update-alternatives (so that we can understand it again) and
9715     implement new features on top of it:
9716     - the --config output is now sorted. Closes: #437060
9717     - it now logs information to /var/log/dpkg.log. Closes: #445270
9718     - it forbids reusing master alternative as slave and vice-versa.
9719       Closes: #342566
9720     - it forbids reusing alternative links managed by other alternatives
9721     - new sanity checks on --install parameters. Closes: #423176
9722     - install slave link only if the corresponding slave file is available.
9723       Closes: #143701
9724     - new option --get-selections to export the configuration of all
9725       alternatives. It's a simple way to discover the name of all available
9726       alternatives. Closes: #273406, #392429
9727     - new option --set-selections to reconfigure a set of alternatives in
9728       a single command.
9729   * Document in update-alternatives(8) how one can repair all broken
9730     alternatives with a single command. Closes: #250258, #395556
9731   * Modify dpkg-gensymbols to replace #PACKAGE# on the fly while installing
9732     symbols files so that package having libraries whose name varies between
9733     architectures do not need to hardcode the package name. Closes: #517264
9735   [ Pierre Habouzit ]
9736   * Add a --query option to update-alternatives. Closes: #336091, #441904
9738   [ Updated scripts translations ]
9739   * Polish (Wiktor Wandachowicz). Closes: #514106
9741   [ Updated man pages translations ]
9742   * Polish (Wiktor Wandachowicz). Closes: #514106
9744   [ Updated programs translations ]
9745   * Portuguese (Miguel Figueiredo).
9746   * Korean (Changwoo Ryu).
9747   * Romanian (Eddy Petri?or)
9748   * Slovak (Ivan Masár). Closes: #514490
9750  -- Guillem Jover <guillem@debian.org>  Mon, 02 Mar 2009 06:13:53 +0200
9752 dpkg (1.14.25) unstable; urgency=low
9754   [ Guillem Jover ]
9755   * Fix typo in package description (for 'provides').
9756     Thanks to Pascal De Vuyst <pascal.devuyst@gmail.com>. Closes: #510755
9757   * Do not lose conffiles while replacing them from another package on the
9758     same install run. Closes: #513857
9759     As a side effect this fixes the following symptoms:
9760     - Do not do unneeded conffile prompts when it wasn't locally changed.
9761     - Do not ensure (and thus do not output debug information) that the
9762      .dpkg-new and .dpkg-tmp directories for an existing directory do not
9763       exist. Closes: #80416
9765   [ Raphaël Hertzog ]
9766   * dpkg-deb now always produces GNU tarballs inside .deb and ignores
9767     TAR_OPTIONS. Closes: #513863
9769   [ Updated programs translations ]
9770   * Basque (Piarres Beobide). Closes: #506092, #509851
9771   * Simplified Chinese (Deng Xiyue). Closes: #506177
9772   * Traditional Chinese (Tetralet). Closes: #513312
9774   [ Updated dselect translations ]
9775   * Basque (Piarres Beobide). Closes: #509852
9776   * Norwegian Bokmål (Hans F. Nordhaug).
9777   * Portuguese (Miguel Figueiredo). Closes: #509904
9779   [ Updated scripts translations ]
9780   * Add missing space in French translation.
9781     Thanks to Cyril "Oeil de lynx" Brulebois.
9783  -- Guillem Jover <guillem@debian.org>  Tue, 03 Feb 2009 00:00:41 +0200
9785 dpkg (1.14.24) unstable; urgency=low
9787   [ Raphaël Hertzog ]
9788   * Fix parsing of objdump output (by dpkg-shlibdeps) in a special case where
9789     the symbol name is separated only with a single space. Closes: #506139
9790   * Fix dpkg-shlibdeps behaviour when Build-Depends-Package is used in the
9791     symbols file. It was merging all dependency templates into the generated
9792     dependency instead of simply modifying the minimal version. Thanks to
9793     Modestas Vainius <modestas@vainius.eu>. Closes: #507346
9794   * Fix dpkg-source to correctly extract a source package even when called
9795     from a non-writable directory when a target directory has been specified
9796     on the command line. Closes: #507217, #507219
9798   [ Guillem Jover ]
9799   * Do not allow installing packages with non-obsolete conffiles owned by
9800     other packages without a proper Replaces field. Closes: #508392
9802   [ Updated dselect translations ]
9803   * Galician (Marce Villarino). Closes: #509887
9805   [ Updated programs translations ]
9806   * Galician (Marce Villarino). Closes: #509150
9807   * Vietnamese (Clytie Siddall). Closes: #509424
9809   [ Updated scripts translations ]
9810   * Improve German translation.
9812  -- Guillem Jover <guillem@debian.org>  Mon, 29 Dec 2008 05:38:31 +0100
9814 dpkg (1.14.23) unstable; urgency=low
9816   [ Raphaël Hertzog ]
9817   * Blacklist "__gnu_local_gp" symbol for dpkg-gensymbols. Closes: #500188
9818     Thanks to Thiemo Seufer <ths@debian.org>.
9819   * Important bugfix in dpkg-gensymbols for people using includes in symbol
9820     files: the current object didn't flow back from the included file to
9821     the including file.
9822   * Fix Dpkg::Version comparison code. Closes: #504135
9824   [ Guillem Jover ]
9825   * Untangle fatal abort condition from the “too many errors” one in the
9826     archives and packages processing loop. Closes: #367226
9827   * Abort on unrecoverable fatal errors instead of continuing execution, as
9828     the recovery code assumed the execution would not be reaching it again
9829     and some times bogus update files were created either with incompletely
9830     written content or with '#padding' lines. Closes: #497041, #499070
9832   [ Updated programs translations ]
9833   * Brazilian Portuguese (Felipe Augusto van de Wiel).
9834   * Catalan (Jordi Mallach).
9835   * Czech (Miroslav Kure). Closes: #505910
9836   * French (Christian Perrier)
9837   * German (Sven Joachim).
9838   * Greek (Emmanuel Galatoulas). Closes: #498585
9839   * Japanese (Kenshi Muto).
9840   * Korean (Changwoo Ryu). Closes: #505777
9841   * Norwegian Bokmål (Hans F. Nordhaug).
9842   * Polish (Wiktor Wandachowicz).
9843   * Portuguese (Miguel Figueiredo). Closes: #505869
9844   * Russian (Yuri Kozlov). Closes: #499028, #505735
9845   * Romanian (Eddy Petri?or).
9846   * Slovak (Ivan Masár). Closes: #506024
9847   * Spanish (Javier Fernandez-Sanguino). Closes: #505836
9848   * Swedish (Peter Krefting).
9850   [ Updated scripts translations ]
9851   * Fix typo in Russian. Closes: #499736
9852   * Fix wrong translation in French. Closes: #504123
9853   * French (Christian Perrier).
9855   [ Updated man pages translations ]
9856   * German (Helge Kreutzmann).
9858  -- Guillem Jover <guillem@debian.org>  Tue, 18 Nov 2008 11:50:56 +0200
9860 dpkg (1.14.22) unstable; urgency=low
9862   [ Raphaël Hertzog ]
9863   * The last "small fix" actually broke conversion of source packages to
9864     "3.0 (quilt)" format when they have local changes and no pre-existing
9865     quilt series file. Now always provide a valid name in QUILT_SERIES.
9866     Closes: #496920
9867   * Fix permissions of the automatically generated patch in "2.0" and "3.0
9868     (quilt)" format. They were improperly set to 0600 due to tempfile()
9869     and were not reset to a sane value. Closes: #496925
9870   * Fix dpkg-gensymbols to not scan (real) directories accessed through a
9871     symlink contained in the build tree as they may well not be part of
9872     the package (with absolute symlinks). It was already skipping symlinks
9873     (since 1.14.16.6) for similar reasons.
9875   [ Updated programs translations ]
9876   * Basque (Piarres Beobide). Closes: #496753
9877   * Brazilian Portuguese (Felipe Augusto van de Wiel).
9878   * Galician (Jacobo Tarrio).
9879   * Norwegian Bokmal (Hans Fredrik Nordhaug). Closes: #497309
9880   * Swedish (Daniel Nylander and Peter Krefting).
9881   * Vietnamese (Clytie Siddall). Closes: #497893
9883   [ Updated man pages translations ]
9884   * Swedish (Peter Krefting).
9886   [ Updated scripts translations ]
9887   * Swedish (Peter Krefting).
9889  -- Raphaël Hertzog <hertzog@debian.org>  Fri, 05 Sep 2008 16:54:45 +0200
9891 dpkg (1.14.21) unstable; urgency=low
9893   [ Raphaël Hertzog ]
9894   * Small fix in "3.0 (quilt)" source format when using non-standard name
9895     of the quilt series.
9896   * Handle debian.tar.gz files like diff.gz in dpkg-buildpackage and
9897     dpkg-genchanges to detect the kind of upload.
9898   * Add "armel" to /usr/share/dpkg/archtable. Closes: #487768
9899   * Modified Dpkg::BuildOptions to recognize and use spaces as separator
9900     in DEB_BUILD_OPTIONS (in order to conform with the Debian policy
9901     ruling established in #430649). Closes: #486937
9902   * Fix dpkg-source to not use -i and -I by default with "1.0" source
9903     packages. Closes: #495138
9905   [ Guillem Jover ]
9906   * When loading the status file fix up any inconsistent package in state
9907     triggers-awaited w/o the corresponding package with pending triggers.
9908     Closes: #487637, #486843, #489068
9909   * Fix --no-act in triggers related code. Closes: #495097
9910   * Do not assert when dpkg stops processing packages due to too many
9911     errors occurred while configuring or removing packages.
9912     Thanks to Ian Jackson <ian@davenant.greenend.org.uk>. Closes: #483655
9913   * Move lzma from dpkg Suggests to Pre-Depends. Closes: #456332
9914   * Match description of -si option in dpkg-buildpackage to the one in
9915     dpkg-genchanges. Closes: #493743
9916   * Close --status-fd file descriptors on exec, so that they are not
9917     inherited by the children. Closes: #471488, #487684
9918   * State that the preferred front-end is aptitude and replace one instance
9919     of dselect usage with apt-get. Closes: #483785
9921   [ Updated man pages translations ]
9922   * French (Florent Usseil).
9923   * German (Helge Kreutzmann).
9925   [ Updated scripts translations ]
9926   * Russian (Yuri Kozlov). Closes: #490076
9927   * German (Helge Kreutzmann).
9929   [ Updated programs translations ]
9930   * Basque (Piarres Beobide). Closes: #490905
9931   * Czech (Miroslav Kure).
9932   * French (Christian Perrier).
9933   * German (Sven Joachim).
9934   * Korean (Changwoo Ryu).
9935   * Romanian (Eddy Petri?or).
9936   * Russian (Yuri Kozlov). Closes: #488689
9937   * Simplified Chinese (Deng Xiyue). Closes: #496176
9938   * Slovak (Ivan Masár). Closes: #488903, #495505
9939   * Thai (Theppitak Karoonboonyanan). Closes: #488090
9941   [ Added programs translations ]
9942   * Lithuanian (Gintautas Miliauskas). Closes: #493326
9944   [ Updated dselect translations ]
9945   * Romanian (Eddy Petri?or).
9947  -- Guillem Jover <guillem@debian.org>  Tue, 26 Aug 2008 05:32:39 +0300
9949 dpkg (1.14.20) unstable; urgency=low
9951   [ Guillem Jover ]
9952   * Change UTF-8 '©' to '(C)' in deb-version.5 (unfuzzy translations).
9953   * Document --force-breaks in 'dpkg --force-help' output.
9954   * Document triggers --debug values in dpkg.1. Thanks to Sven Joachim.
9955   * Improve package descriptions for dpkg, dpkg-dev and dselect.
9956     Thanks to Justin B Rye for the review and corrections. Closes: #484002
9957   * When dpkg-divert does renames do no check the target file if the source
9958     does not exist and the rename is thus being disabled. This also allows
9959     removing bogus diversions. Closes: #476973, #469033
9960   * Properly close triggers 'File' file, so it does not get leaked to children.
9962   [ Raphaël Hertzog ]
9963   * Add missing 'use File::Path' in Dpkg::Source::Package::V3::quilt.
9964   * Use debian/patches/debian-changes-<version> (without the trailing ".diff")
9965     as default name for the automatic patch created by the format "3.0
9966     (quilt)". This ensures a saner cohabitation with patch systems that
9967     apply all of debian/patches/*.{diff,patch}.
9968   * Improve patch parser to accept more patches that are accepted by patch
9969     itself.
9970   * Correctly skip comments in quilt series files (concerns "3.0 (quilt)" source
9971     packages). Closes: #486323
9972   * The automatically created patches (in source package formats "2.0" and
9973     "3.0 (quilt)") will now contain "/dev/null" as previous filename when the
9974     patch creates a new file (instead of putting the same name).
9975   * Set PERL_DL_NONLZY to 1 in perl scripts that are likely to be called in
9976     package's configuration scripts to work around the perl bug #479711.
9978   [ Helge Kreutzmann ]
9979   * Fix a typo in dselect.1.
9981   [ Updated programs translations ]
9982   * Basque (Piarres Beobide). Closes: #481043
9983   * Brazilian Portuguese (Felipe Augusto van de Wiel).
9984   * Catalan (Jordi Mallach). Closes: #383448
9985   * Czech (Miroslav Kure).
9986   * French (Christian Perrier).
9987   * Galician (Jacobo Tarrio). Closes: #483441
9988   * German (Sven Joachim).
9989   * Norwegian Bokmal (Hans Fredrik Nordhaug). Closes: #480626
9990   * Polish (Wiktor Wandachowicz).
9991   * Simplified Chinese (Deng Xiyue). Closes: #483143
9992   * Swedish (Peter Karlsson).
9993   * Vietnamese (Clytie Siddall). Closes: #481199
9995   [ Updated man pages translations ]
9996   * German (Helge Kreutzmann).
9997   * Polish (Wiktor Wandachowicz).
9998   * Swedish (Peter Karlsson).
10000   [ Updated scripts translations ]
10001   * French (Christian Perrier).
10002   * German (Helge Kreutzmann).
10003   * Polish (Wiktor Wandachowicz).
10004   * Russian (Yuri Kozlov).
10005   * Swedish (Peter Karlsson).
10007   [ Updated dselect translations ]
10008   * Brazilian Portuguese (Felipe Augusto van de Wiel).
10009   * Polish (Wiktor Wandachowicz).
10011  -- Raphaël Hertzog <hertzog@debian.org>  Wed, 18 Jun 2008 09:33:54 +0200
10013 dpkg (1.14.19) unstable; urgency=low
10015   [ Guillem Jover ]
10016   * Fix a double-free by setting scontext to NULL after calling freecon.
10017     Based on a patch by Russell Coker. Closes: #474339
10018   * Add missing import of internerr in Dpkg::Source::Patch.pm.
10019     Thanks to Marco d'Itri. Closes: #479205
10020   * Consider also custom Package-Type fields when printing warnings in
10021     dpkg-gencontrol. Closes: #452273
10023   [ Raphaël Hertzog ]
10024   * Add missing import of subprocerr in Dpkg::Source::Package. Thanks to Sven
10025     Joachim for the patch.
10026   * Handle symlinks better when deciding if dpkg-source has to copy the
10027     original tarball in the current extraction directory. Closes: #475668
10028   * Fix the dpkg-source error message about unrepresentable changes to
10029     source because the type of a file changed (new and old were inverted).
10030   * Fix dpkg-genchanges to detect udeb based on Package-Type control
10031     header instead of file extension analysis on uploaded files.
10032     Closes: #476113
10033   * Fix dpkg-source to grant correct permissions to tarballs of native
10034     source packages. Closes: #477784
10035   * Add Conflicts: devscripts (<< 2.10.26) to ensure that people are
10036     using versions of debsign/mergechanges that support the Checksums fields
10037     in *.dsc and *.changes.
10038   * Cleanup the various Conflicts/Replaces fields to remove references
10039     to package that have disappeared before sarge (this includes dpkg-doc-ja,
10040     dpkgname, and dpkg-static which has never officially been built).
10041     dpkg-iasearch has been kept as popcon still reports a few installations.
10042   * Collapsed multiple conflicts of dpkg with old versions of dpkg-dev
10043     in a single Conflicts: dpkg-dev (<< 1.14.16).
10044   * The "3.0 (quilt)" source package format now parses correctly series files
10045     with patch options and warn if something else than -p1 is used.
10046   * Change the way dpkg-source finds the perl object to use to unpack/build
10047     a source package to ignore the minor part of the Format: version.
10048     For example "1.0" and "1.1" would both map to Dpkg::Source::Package::V1
10049     instead of ::V1_0 and ::V1_1 before. Similarly "3.0 (quilt)" now maps to
10050     ::V3::quilt instead of ::V3_0::quilt.
10051   * Fix changelog parser to not fail when an unexpected changelog entry
10052     appears without the preceding heading line. Closes: #478925
10053   * Change the "2.0" and "3.0 (quilt)" source packages to refuse by default
10054     binary files in the debian sub-directory. They have to be whitelisted
10055     through debian/source/include-binaries. Closes: #473041
10056   * Make sure triggers are activated when a file is removed in a directory
10057     shared by multiple packages. Closes: #479850
10059   [ Helge Kreutzmann ]
10060   * Minor fixes and clarifications to man pages.
10062   [ Updated programs translations ]
10063   * Brazilian Portuguese (Felipe Augusto van de Wiel). Closes: #480579
10064   * Czech (Miroslav Kure).
10065   * French (Florent Ussel).
10066   * Galician (Jacobo Tarrio).
10067   * German (Sven Joachim).
10068   * Polish (Wiktor Wandachowicz).
10069   * Portuguese (Miguel Figueiredo).
10070   * Russian (Yuri Kozlov). Closes: #478827
10071   * Slovak (Ivan Masár). Closes: #478897
10072   * Swedish (Peter Karlsson).
10074   [ Updated man pages translations ]
10075   * German (Helge Kreutzmann).
10076   * Polish (Wiktor Wandachowicz).
10077   * Swedish (Peter Karlsson).
10079   [ Updated scripts translations ]
10080   * German (Helge Kreutzmann).
10081   * Polish (Wiktor Wandachowicz).
10082   * Russian (Yuri Kozlov). Closes: #479142
10083   * Swedish (Peter Karlsson).
10085   [ Updated dselect translations ]
10086   * Brazilian Portuguese (Felipe Augusto van de Wiel).
10087   * Czech (Miroslav Kure).
10088   * French (Christian Perrier).
10089   * German (Sven Joachim).
10090   * Russian (Yuri Kozlov). Closes: #478802
10091   * Slovak (Ivan Masár). Closes: #479007
10093  -- Guillem Jover <guillem@debian.org>  Mon, 12 May 2008 08:33:07 +0300
10095 dpkg (1.14.18) unstable; urgency=low
10097   [ Guillem Jover ]
10098   * Bump po4a version in Build-Depends to 0.33.1-1, as usage of UTF-8
10099     in original man pages was causing build failures. Closes: #473498
10100   * Add triggers documentation to dpkg-dev. Closes: #473449
10101   * Add deb-triggers.5 and dpkg-trigger.1 man pages, and document new
10102     statuses and options in dpkg.1.
10104   [ Raphaël Hertzog ]
10105   * When dpkg-source builds a source package of Format: 2.0 or 3.0 (quilt) it
10106     applies the patches before the build if
10107     debian/patches/.dpkg-source-applied doesn't exist. This file is created
10108     during extraction if patches are applied, and is auto-excluded from the
10109     debian tarball. This enables on-the-fly conversion of source packages from
10110     Format: 1.0 to Format: 3.0 (quilt) without manual intervention of the
10111     user. This feature can be disabled with the option --no-preparation.
10112   * The dpkg-source option --skip-patches disables application of patches
10113     during extraction of source packages using Format: 2.0 or Format: 3.0
10114     (quilt).
10115   * Ensure the Files field is last in *.dsc and *.changes. This is a
10116     work-around for some braindead dsc parsers (dupload and sbuild for
10117     instance, see #473518 and #470440).
10118   * Initialize dependencies for libraries having symbols files with the
10119     smallest minimal version listed in the symbols file instead of using
10120     an unversioned dependency. It's the only way to ensure the library
10121     presence if it wasn't available in all versions of the package that ever
10122     existed. Closes: #474079
10123   * Don't use the -p option of diff for Format: 1.0 source packages.
10124     dpkg-source of sarge doesn't accept data after @@. Closes: #474417
10126   [ Updated dselect translations ]
10127   * German. (Sven Joachim).
10128   * Swedish (Peter Karlsson).
10130   [ Updated programs translations ]
10131   * Portuguese (Miguel Figueiredo).
10132   * Simplified Chinese (Deng Xiyue). Closes: #473523
10133   * Swedish (Peter Karlsson).
10134   * Vietnamese (Clytie Siddall). Closes: #473726
10136   [ Updated man pages translations ]
10137   * German (Helge Kreutzmann).
10138   * Swedish (Peter Karlsson).
10140   [ Updated scripts translations ]
10141   * German (Helge Kreutzmann).
10142   * Swedish (Peter Karlsson).
10144  -- Guillem Jover <guillem@debian.org>  Tue, 08 Apr 2008 07:00:10 +0300
10146 dpkg (1.14.17) experimental; urgency=low
10148   [ Guillem Jover ]
10149   * Replace strdup plus error checking usage with a new m_strdup function.
10150     Closes: #379028
10151   * Add new keybinding in dselect to restore all selections back to
10152     whatever's currently installed. Closes: #151540
10153     Thanks to Colin Watson.
10154   * Use system timersub and fix timeval normalization in multiplication in
10155     start-stop-daemon. Thanks to Andreas Påhlsson. Closes: #462225
10156   * Cosmetic fixes to start-stop-daemon output and man page. Document that
10157     --chuid will change the group even if it has not been specified. Add
10158     EXIT STATUS and EXAMPLE sections to man page. Thanks to Justin Pryzby.
10159   * Add Raphaël Hertzog to Uploaders, and remove Brendan O'Dea and
10160     Christian Perrier with their permission.
10161   * Use functions from libcompat when those are not provided by the system.
10162     - Add strnlen to libcompat.
10163     - Link programs against libcompat which provides obstack. Closes: #142042
10164   * Change dpkg-gencontrol to not output the Homepage field on udeb.
10165   * Reintroduce 'no-debsig' back in dpkg.cfg to avoid failing to install any
10166     package when debsig-verify is installed. Closes: #311843
10167   * Fix some small memory leaks. Closes: #469520
10168     Thanks to Sean Finney.
10169   * Correct broken dselect logic for self-conflicting packages.
10170     Thanks to Ian Jackson.
10171   * Implement 'Breaks' properly in dselect. Closes: #448946
10172     Thanks to Ian Jackson.
10173   * Fix erroneous description of Breaks in dselect output.
10174     Thanks to Ian Jackson.
10175   * Allow compilation with --disable-nls on systems without libintl.h where
10176     a non glibc claims to be glibc. Closes: #465420
10177   * Fix crash when a .deb file becomes unreadable while dpkg is starting.
10178     Thanks to Ian Jackson. Closes: #255882
10179   * Few file descriptor cleanup and error handling fixes.
10180     Thanks to Ian Jackson. Closes: #443338
10181   * Move test suite invocation to a new check target in debian/rules.
10182   * Add support for nocheck DEB_BUILD_OPTIONS in debian/rules, so that the
10183     dpkg test suite can be skipped if desired.
10184   * Improve log and status-fd output by printing more status change updates
10185     and actions. Thanks to Ian Jackson.
10186   * Implement triggers support. Thanks to Ian Jackson.
10187     Closes: #17243, #68981, #215374, #217622, #248693, #308285
10189   [ Raphaël Hertzog ]
10190   * Add a warning displayed by dpkg-genchanges if the current version is
10191     smaller than the previous one. Closes: #4655
10192   * Add -d and -c options in dpkg-checkbuilddeps to override
10193     build-depends/conflicts. Closes: #114774
10194   * Include list of libraries in dpkg-gensymbols' warning about new/lost
10195     libraries.
10196   * Add -R option to dpkg-buildpackage so that one can replace the usual
10197     "debian/rules" by something else. Closes: #355654
10198   * Always list all binary packages in the Description: field of .changes
10199     files. It's nice for reviewers and mentors.debian.net was using this field
10200     on source only uploads to display short description of what the package is
10201     about.
10202   * Handle the case when the library has a different SONAME than the one used
10203     to find it. Closes: #462413
10204   * Fix Dpkg::Version and Dpkg::Fields::Object to import _g() from
10205     Dpkg::Gettext. Thanks to Adam Heath and Olivier Berger for spotting
10206     this. Closes: #465651
10207   * Change PATH during make check to look into build directories containing
10208     dpkg and the related scripts. Thanks to Mike Frysinger. Closes: #466957
10209   * Some lintian cleanup:
10210     - add overrides for some useless I: tags
10211     - drop unused overrides
10212     - updated several manual pages to fix hyphen-used-as-minus-sign
10213     - fixed manpage-has-errors-from-man in several manual pages
10214     - removed empty debian/dpkg.prerm
10215   * Removed old upgrade code from dpkg's preinst and postinst which only
10216     concerns upgrading from dpkg version older than the one in oldstable
10217     already. And thus we get rid of old the last usage of read in those
10218     scripts (fixes lintian's warning read-in-maintainer-script).
10219   * Removed sorting of dependencies in dpkg-gencontrol and dpkg-source. But
10220     kept it for all other fields (Enhances, Conflicts, Replaces, Breaks,
10221     Build-Conflicts and Build-Conflicts-Indep).
10222   * Instead changed dpkg-shlibdeps to sort the dependencies generated in
10223     ${shlibs:*} variables.
10224   * Changed the logic of simplification of dependencies: if any dependency
10225     must be discarded due to another dependency appearing further
10226     in the field, the superseding dependency will take the place of the
10227     discarded one. Added a test case for this.
10228   * dpkg-shlibdeps properly accounts usage of symbols provided by private
10229     libraries without SONAME. Closes: #469838
10230   * Add a new warning to dpkg-shlibdeps when a library NEEDED is in fact
10231     not used by any of the binaries analyzed. Closes: #472332
10232   * Add a new --warnings=<value> option to select the set of warnings to
10233     activate. By default, do not activate the warning about useless
10234     libraries at the binary level (instead the new warning above is activated
10235     by default: it's less strict and more useful).
10236   * dpkg-source has been heavily refactored to make it easier to support
10237     multiple source package formats. Several new source package formats have
10238     been added:
10239     - the format "2.0" is the original wig&pen
10240     - the format "3.0 (quilt)" is based on 2.0. It uses a tarball for the
10241       debian directory and can thus include binary files. Binaries
10242       outside of the debian directory can be also included if they
10243       are listed in debian/source/include-binaries (and option
10244       --include-binaries will generate this file automatically).
10245       Closes: #4588, #4628
10246     - thus it will also preserve timestamps on Debian-provided
10247       documentation like README.Debian. Closes: #366555
10248     - it handles an explicit series of patches and the patch can thus be
10249       named without constraints. Patches can contain arbitrary
10250       headers/comments between file chunks. Closes: #363018
10251     - it ignores changes on a number of temporary and VCS-specific files
10252       by default. Closes: #203792, #323909
10253     - the patches in debian/patches can remove files. Closes: #12564
10254     - the patches are applied at unpack time. Closes: #463048
10255     - the formats "3.0 (quilt/native)" don't include VCS directories by
10256       default. Closes: #435126
10257     - the format "3.0 (custom)" can be used to create a source package
10258       containing arbitrary files. It's useful for helper tools that can
10259       generate the files by themselves in a more efficient way
10260       (like all the *-buildpackage tools). Closes: #246918
10261     - the formats "3.0 (git/bzr)" are experimental formats based
10262       on corresponding VCS repositories. Thanks to Joey Hess and Colin Watson
10263       respectively.
10264   * dpkg-source has a new --no-check option. It disables GPG check and
10265     checksums checks. Closes: #220758
10266   * dpkg-shlibdeps is now able to look into directories containing libraries
10267     used by cross-built binaries provided that the right environment variable
10268     are set. Closes: #453267
10269   * Change default value of LDFLAGS (set by dpkg-buildpackage) to ''
10270     instead of '-Wl,-Bsymbolic-functions'. It's safer at this point of the
10271     release cycle.
10272   * dpkg-buildpackage will set PKG_CONFIG_LIBDIR (but not override an existing
10273     value) in case of cross-compilation so that pkgconfig finds .pc files
10274     in the directory specific to the target architecture. Closes: #439979
10276   [ Frank Lichtenheld ]
10277   * Add a warning in dpkg-buildpackage if the build-dependencies are not
10278     satisfied during -S. Closes: #445552
10279   * Add a missing space in the German scripts translation. Closes: #463398
10280   * Add improved deb-shlibs.5 manual page by Zack Weinberg. Closes: #466135
10281   * dpkg-buildpackage exports some build related environment variables
10282     now. Based on a patch by Matthias Klose. Closes: #465282
10283     (See dpkg-buildpackage(1) and https://wiki.ubuntu.com/DistCompilerFlags
10284      for details)
10285   * Add support for use of SHA1 and SHA256 checksums in .dsc and
10286     .changes files. Information will be available in Checksums-Sha{1,256}
10287     fields. .changes format version increased to 1.8.
10288   * Link dselect against libncursesw. Closes: #466321
10289   * Forward port a patch from the old changelog parser to the new
10290     one that got lost during the transition. '+' and '.' can now
10291     be used in distribution names yet again. Reported by dann frazier.
10292     Closes: #467470
10294   [ Updated programs translations ]
10295   * Korean (Changwoo Ryu).
10296   * Polish (Robert Luberda).
10297   * Romanian (Eddy Petrişor).
10298   * Slovak (Ivan Masár). Closes: #471342
10299   * Swedish (Peter Karlsson).
10300   * Thai (Theppitak Karoonboonyanan). Closes: #468916
10302   [ Updated man pages translations ]
10303   * German (Helge Kreutzmann).
10304   * Polish (Robert Luberda).
10305   * Swedish (Peter Karlsson).
10307   [ Updated dselect translations ]
10308   * Basque (Piarres Beobide). Closes: #462403
10310   [ Updated scripts translations ]
10311   * German (Helge Kreutzmann).
10312   * Polish (Robert Luberda).
10313   * Swedish (Peter Karlsson).
10315   [ Updated dselect translations ]
10316   * Polish (Robert Luberda).
10317   * Romanian (Eddy Petrişor).
10319  -- Guillem Jover <guillem@debian.org>  Sun, 30 Mar 2008 12:48:22 +0300
10321 dpkg (1.14.16.6) unstable; urgency=medium
10323   * Let dpkg-gensymbols skip directories which are just symlinks when scanning
10324     the package build dir.
10325   * Bump urgency to medium to compensate lost days in testing migration due to
10326     the two last uploads.
10328  -- Raphaël Hertzog <hertzog@debian.org>  Sat, 26 Jan 2008 19:20:40 +0100
10330 dpkg (1.14.16.5) unstable; urgency=low
10332   * Fix dpkg-gensymbols handling of #include so that one can include multiple
10333     times the same file and have it properly taken into account.
10334   * Add many armel-specific symbols to dpkg-gensymbols' blacklist.
10335     Closes: #462318
10337  -- Raphaël Hertzog <hertzog@debian.org>  Thu, 24 Jan 2008 14:20:10 +0100
10339 dpkg (1.14.16.4) unstable; urgency=low
10341   * Import capit in Dpkg::Cdata from Dpkg::Fields. Closes: #462172
10343  -- Guillem Jover <guillem@debian.org>  Wed, 23 Jan 2008 08:44:32 +0200
10345 dpkg (1.14.16.3) unstable; urgency=low
10347   [ Raphaël Hertzog ]
10348   * Remove the ":utf8" layer that utf8-encodes already valid utf8.
10349     Closes: #462098
10350   * Disable variable substitution in dpkg-genchanges. Closes: #462079, #462089
10352   [ Guillem Jover ]
10353   * Make start-stop-daemon set the supplementary groups if the real user or
10354     group are different than the ones we should switch to. Closes: #462075
10355   * Fix segfault in start-stop-daemon when using --group w/o --chuid (as
10356     a side effect, using --group alone works for the first time in years).
10357     Closes: #462072
10358   * Fix timeout computations for start-stop-daemon --retry option. This has
10359     not worked properly for a long time (maybe never), but came to light
10360     due to #460903's fix. Closes: #462104
10362  -- Guillem Jover <guillem@debian.org>  Tue, 22 Jan 2008 23:39:59 +0200
10364 dpkg (1.14.16.2) unstable; urgency=low
10366   * Change uid after changing gid and initializing supplementary groups in
10367     start-stop-daemon. Closes: #462018
10368   * Change temporary dpkg Breaks on dpkg-dev (= 1.14.13) and (= 1.14.14)
10369     to Conflicts, so that users from etch can upgrade to sid (or lenny
10370     once dpkg has migrated).
10372  -- Guillem Jover <guillem@debian.org>  Tue, 22 Jan 2008 13:05:22 +0200
10374 dpkg (1.14.16.1) unstable; urgency=low
10376   * Add libtimedate-perl to dpkg-dev's Depends and to Build-Depends.
10377     Reported by Aurelien Jarno. Closes: #461875
10379  -- Frank Lichtenheld <djpig@debian.org>  Mon, 21 Jan 2008 12:48:51 +0100
10381 dpkg (1.14.16) unstable; urgency=low
10383   [ Guillem Jover ]
10384   * Add build-essential as an implicit Build-Depends in dpkg-checkbuilddeps.
10385     Closes: #402901
10386   * Add build-essential to dpkg-dev Recommends.
10387   * Do not warn about unrecognized Homepage field in binary package stanzas
10388     in dpkg-genchanges and dpkg-source. Closes: #460309
10389   * Do not use the enoent helper binary, and use perl POSIX module instead.
10390   * Keep checking for the process when start-stop-daemon is called with
10391     --retry even if the daemon removed the pidfile. Closes: #460903
10392     Thanks to Justin Pryzby for the analysis.
10393   * Make --quiet silence --test in start-stop-daemon. Closes: #367998
10394   * Check current uid and gid in start-stop-daemon before calling setuid,
10395     setgid and initgroups. Closes: #222524
10396     Based on a patch by Samuel Thibault.
10397   * Remove unimplemented --test option from update-alternatives.
10398     Closes: #392432, #461247
10399   * Additionally check if errno is EEXIST after rmdir(2), as SUSv3 specifies
10400     that on non-empty directories it can either return that or ENOTEMPTY.
10401     This fixes run time problems on Solaris.
10402   * Fix start-stop-daemon --help output to state that --name is one of the
10403     possible required options to use. Closes: #354999
10404   * Demote dselect from priority important to optional. Closes: #461327
10405   * Fix portability issues on HP-UX, by not using backticks inside double
10406     quotes in m4 files. Closes: #24514
10407   * Switch Maintainer address to <debian-dpkg@lists.debian.org> from
10408     <team@dpkg.org>.
10409   * Add README.feature-removal-schedule describing the features to be removed
10410     and README.api describing the provided APIs.
10412   [ Frank Lichtenheld ]
10413   * Make the -L option of dpkg-parsechangelog actually work (it's
10414     only been eleven years...)
10415   * Import the code from my external Parse::DebianChangelog as
10416     Dpkg::Changelog and Dpkg::Changelog::Debian. Using this
10417     from parsechangelog/debian adds the following requested
10418     features:
10419      - Option to use a non-lossy format. Closes: #95579
10420      - Various options to better control how many entries
10421        should be displayed. Closes: #226932
10423   [ Raphaël Hertzog ]
10424   * Replaced all the remaining code in controllib.pl by new modules. All
10425     scripts have been adjusted to use the new modules and controllib.pl has
10426     been removed.
10427   * The code to parse debian/control is available in a perl module
10428     Dpkg::Control. Closes: #26554
10429   * Temporarily add a Breaks: dpkg-dev (= 1.14.13), dpkg-dev (= 1.14.14) on
10430     dpkg for the convenience of sid users. Closes: #459815
10431   * Update dpkg-source(1) to explain better what the directory after -b is.
10432     Closes: #323606
10433   * Also force version in ${binary:Version} if dpkg-gencontrol -v<version>
10434     is used. That way we're consistent with the definition of that variable
10435     in deb-substvars(5). Closes: #433477
10436   * Add support of Dm-Upload-Allowed field. Closes: #453400
10437   * Fix dpkg-shlibdeps' filtering of duplicated dependencies in fields of
10438     lesser priority (when -d is used).
10439   * Fix behaviour of dpkg-shlibdeps when the same binary was passed multiple
10440     times for use in different dependency fields (-d option).
10441   * Change logic of -si option of dpkg-genchanges to include the original
10442     tarball only if the current upstream version differs from the upstream
10443     version of the previous changelog entry. Replaces the heuristic based
10444     on revision number (-0, -0.1 or -1). Closes: #28701
10445   * Some code refactoring on dpkg-genchanges and bug fixes in the generation
10446     of the Description: field. As a result, source only uploads will no more
10447     have Description fields.
10448   * Add support of wildcard entries in symbols files. This makes it much
10449     simpler to write symbols files for well managed libraries but in that case
10450     dpkg-gensymbols can't check any more if symbols have disappeared.
10451     Closes: #459359
10453   [ Updated man pages translations ]
10454   * Fix typo in French. Closes: #460021
10455   * German (Helge Kreutzmann).
10457   [ Updated programs translations ]
10458   * Basque (Piarres Beobide). Closes: #459565
10459   * French (Christian Perrier).
10460   * German, Basque, Norwegian Bokmål, Swedish, Vietnamese, Simplified Chinese,
10461     Galician unfuzzied.
10462   * Russian (Yuri Kozlov). Closes: #460708
10464   [ Updated scripts translations ]
10465   * Russian (Yuri Kozlov). Closes: #460709
10466   * Swedish (Peter Karlsson).
10468  -- Guillem Jover <guillem@debian.org>  Mon, 21 Jan 2008 10:00:45 +0200
10470 dpkg (1.14.15) unstable; urgency=low
10472   [ Raphaël Hertzog ]
10473   * Make sure {dpkg-dev,dselect}.preinst are included in the source tarball.
10474     Closes: #452730
10475   * Blacklist armel-specific symbols in dpkg-gensymbols. Reported by Riku
10476     Voipio. Closes: #457964
10477   * Fix typos in various manpages. Patch from A. Costa. Closes: #458276
10478   * Make dpkg-shlibdeps choose the right symbols files when we have several
10479     debian/*/DEBIAN/symbols for a given soname. Closes: #458860
10480   * Add a -S<pkgbuilddir> option to dpkg-shlibdeps to indicate a package build
10481     tree to scan first when trying to find a needed library.
10482   * Change dpkg-gensymbols to mark symbols that disappeared with #MISSING
10483     instead of #DEPRECATED, it's clearer for people.
10484   * Fix Dpkg::Shlibs::Objdump to properly take into account R_*_COPY
10485     relocations. Closes: #454036
10486   * Explain better the order in which postinst/prerm scripts are called
10487     between a package and its dependencies. Thanks to Nicolas François and
10488     Helge Kreutzmann for their suggestions. Closes: #379641
10489   * Fix Dpkg::BuildOptions so that dpkg-buildpackage doesn't double all
10490     options in DEB_BUILD_OPTIONS when called with the -j parameter.
10491     Closes: #453656
10493   [ Guillem Jover ]
10494   * Move compression related variables to a new Dpkg::Compression module.
10495   * Remove disabled, obsolete and quite incomplete Hebrew translations.
10496   * Revert dpkg-dev versioned dependency bump on dpkg >= 1.14.13 back to
10497     >= 1.14.6, as the compression variables are now in a module in dpkg-dev.
10498   * Do not display garbage in dselect on monochrome terminals, by setting
10499     a missing ncurses character attribute. Closes: #155741, #157093
10500     Thanks to Sven Rudolph.
10501   * Do not loop endlessly in dselect with very long package descriptions.
10502     Closes: #179320, #342495
10503     Thanks to John Zaitseff.
10504   * Ignore wrapped lines in install-info when matching section titles.
10505     Closes: #214684
10506     Thanks to Andreas Metzler and Ian Zimmerman.
10507   * Do not use strdup for execvp arguments. Closes: #379027
10508   * Do not print 'failed to kill' warning in start-stop-daemon when polling
10509     the pid. Closes: #157305, #352554
10510     Thanks to Samuel Thibault.
10511   * Properly print build message in dpkg-buildpackage for lzma and bzip2
10512     compressed sources. Closes: #458519
10513   * Promote bzip2 Recommends to Depends for dpkg-dev. Closes: #458521
10514   * Add lzma to dpkg-dev Depends.
10515   * Do not automatically enable -j if DEB_BUILD_OPTIONS contains parallel=n,
10516     and allow overriding its value from the environment. Closes: #458589
10517   * Fix Dpkg::BuildOptions to parse all options in DEB_BUILD_OPTIONS, so
10518     that dpkg-buildpackage called with -j preserves unrecognized options.
10519   * Fix several signed vs unsigned value comparisons that were making some
10520     code to never be executed.
10522   [ Updated programs translations ]
10523   * French (Christian Perrier).
10524   * German (Sven Joachim). Closes: #459223
10525   * Norwegian Bokmål (Hans Fredrik Nordhaug). Closes: #457918, #458732
10526   * Simplified Chinese (Deng Xiyue). Closes: #459018
10527   * Swedish (Peter Karlsson).
10528   * Vietnamese (Clytie Siddall). Closes: #459016
10530   [ Updated scripts translations ]
10531   * French (Christian Perrier).
10532   * Swedish (Peter Karlsson).
10534   [ Updated man pages translations ]
10535   * Swedish (Peter Karlsson).
10537  -- Guillem Jover <guillem@debian.org>  Mon, 07 Jan 2008 12:12:16 +0200
10539 dpkg (1.14.14) unstable; urgency=low
10541   * Fix override disparity: set priority of dselect to important.
10542   * Add libio-string-perl to Build-Depends as it's needed by a non-regression
10543     test (fix FTBFS, thus a quick upload).
10544   * Make dpkg-dev depend on dpkg (>= 1.14.13) as the latest Dpkg.pm is needed
10545     for dpkg-source.
10547  -- Raphaël Hertzog <hertzog@debian.org>  Thu, 27 Dec 2007 11:20:38 +0100
10549 dpkg (1.14.13) unstable; urgency=low
10551   [ Frank Lichtenheld ]
10552   * Add an own manpage for Dpkg's version format. Mostly stolen
10553     from policy. Closes: #373003
10554   * Fix control file parsing for field values starting with a colon.
10555     Apparently nobody ever needed this until Vcs-Cvs came along.
10556     Closes: #453364
10557   * Copy the usr/share/doc directory to dpkg-dev and dselect (Instead
10558     of using symlinks). The space requirements are minimal and adding
10559     the needed dependencies to comply with policy would be way more
10560     inconvenient. Pointed out by Rene Engelhard. Closes: #452730
10561   * Allow more than one arch and more than one type of a package
10562     in debian/files. Parts of the patch by Goswin von Brederlow
10563     and Bastian Blank. Closes: #356299, #377400, #229143
10564   * Allow building only architecture independent packages (-A).
10565     Closes: #109794, #200454
10566   * Bump Standards-Version to 3.7.3 (no changes)
10568   [ Raphaël Hertzog ]
10569   * When dpkg-shlibdeps finds a lib in a directory which is just a symlink to
10570     another directory that is also considered, remember the other directory
10571     name as the canonical one. Closes: #453885
10572   * dpkg-shlibdeps doesn't warn any more about libm.so.6 being unused if the
10573     binary is also linked against libstdc++ since g++ always add an implicit
10574     -lm. Closes: #454616
10575   * Included files in symbols files (via #include) do no more need to repeat
10576     the header line. Closes: #455260
10577   * Tweak the sort algorithm between dependencies so that intervals
10578     are displayed as "a (>= 1), a (<< 2)" instead of the opposite.
10579     Closes: #455520
10580   * Extend format of symbols files to support arbitrary fields of
10581     meta-information. First field is Build-Depends-Package used to extract the
10582     version requirement possibly encoded in the Build-Depends field and make
10583     sure that the generated dependency is at least as strict as this one.
10584   * Fix dpkg-gensymbols to not update version info of a deprecated symbol.
10585     Closes: #457739
10586   * Fix dpkg-source's behaviour with options -sk -sK -sp -sP. Closes: #457784
10588   [ Guillem Jover ]
10589   * Ignore the man pages when building without NLS support. Closes: #457673
10590   * Fix perl warnings:
10591     - Check for undefined values when reading from the alternative db.
10592   * Properly handle symlinks for alternatives with nonexistent slave links.
10593     Closes: #76295, #246906, #433567, #451872, #220044, #392440, #441021
10594     Closes: #443241
10595     Based on a patch by Daniel Leidert <daniel.leidert@wgdd.de>.
10596   * Fail when diverting to a non existent directory. Closes: #245562
10597     Thanks to Flavio Stanchina <flavio@stanchina.net>.
10598   * Refactor update-alternatives.
10600   [ Updated programs translations ]
10601   * French (Christian Perrier, as this was trivial).
10602   * Spanish (Javier Fernández-Sanguino Peña). Closes: #456984
10603   * Swedish (Peter Karlsson).
10605   [ Updated man pages translations ]
10606   * German (Helge Kreutzmann).
10607   * Swedish (Peter Karlsson).
10609   [ Updated scripts translations ]
10610   * French (Frédéric Bothamy).
10611   * German (Helge Kreutzmann).
10612   * Japanese (Kenshi Muto). Closes: #455841
10613   * Swedish (Peter Karlsson).
10615  -- Guillem Jover <guillem@debian.org>  Thu, 27 Dec 2007 09:16:45 +0200
10617 dpkg (1.14.12) unstable; urgency=low
10619   [ Raphaël Hertzog ]
10620   * Add -I<file> option to dpkg-gensymbols to force the usage of a specific
10621     symbols file.
10622   * Dpkg::Shlibs::find_library() now returns canonicalized paths.
10623   * dpkg-shlibdeps always tries the realpath() of a lib as fallback when
10624     trying to identify the package of a lib (and not only for symlinks).
10625   * dpkg-shlibdeps doesn't fail any more if it can't find unversioned
10626     libraries on the presumption that they are just private libraries. Outputs
10627     a warning instead.
10628   * Expand the dpkg-shlibdeps manual page with explanations concerning
10629     failures.
10630   * The environment variable DPKG_GENSYMBOLS_CHECK_LEVEL can be used to force
10631     dpkg-gensymbols to use a precise level of checks. Closes: #452022
10633   [ Guillem Jover ]
10634   * Define several private functions and variables as static.
10635   * Move extern declarations to header files and stop defining them as extern.
10636   * Unify parsing of Section and Priority in dpkg-gencontrol with Homepage.
10637   * Switch dpkg-scanpackages to use the new Dpkg::ErrorHandling and
10638     Dpkg::Versions modules.
10640  -- Guillem Jover <guillem@debian.org>  Thu, 29 Nov 2007 06:14:09 +0200
10642 dpkg (1.14.11) unstable; urgency=low
10644   [ Raphaël Hertzog ]
10645   * dpkg-shlibdeps now ignores the lack of dependency information in some
10646     specific cases (instead of failing):
10647     - when the library is in the same package than the binary analyzed
10648     - when the library is not versioned and can't have a shlibs file
10649   * dpkg-shlibdeps now only displays 10 warnings about symbols not found for
10650     each binary and a count of skipped warnings. Closes: #452318
10651   * dpkg-shlibdeps: optimize "dpkg -S" lookups by caching results, patch
10652     from Aaron M. Ucko <ucko@debian.org>. Closes: #452577
10654   [ Guillem Jover ]
10655   * Fix dpkg-scanpackages to properly support an optional override file.
10656     Closes: #452621
10658  -- Guillem Jover <guillem@debian.org>  Sat, 24 Nov 2007 07:19:02 +0200
10660 dpkg (1.14.10) unstable; urgency=low
10662   [ Raphaël Hertzog ]
10663   * dpkg-shlibdeps now correctly identify private libraries (avoid many
10664     warnings with perl/python modules). Closes: #452338
10665   * Move capit() to a Dpkg::Fields module and use it in dpkg-shlibdeps.
10666     Closes: #452262
10667   * Add more debug messages to dpkg-shlibdeps to ease collecting information
10668     in case of problems.
10669   * dpkg-shlibdeps now accepts again empty dependencies in shlibs files.
10670   * dpkg-shlibdeps will try harder to identify packages providing a library
10671     by looking up dpkg -S on the realpath of any symlink to a library.
10672     Closes: #452339
10673   * dpkg-source now correctly identifies the extension of the
10674     orig.tar.{gz,bz2,lzma} file and won't unexpectedly create "Format: 2.0"
10675     .dsc files.
10677   [ Guillem Jover ]
10678   * Add support for Package-Type in dpkg-name.
10679   * Restore cross compilation support by honoring the environment host and
10680     arch variables to override the default values on the dpkg-dev scripts.
10682   [ Updated man pages translations ]
10683   * Swedish (Peter Karlsson)
10685   [ Added scripts translations ]
10686   * Swedish (Peter Karlsson)
10688  -- Guillem Jover <guillem@debian.org>  Fri, 23 Nov 2007 06:32:27 +0200
10690 dpkg (1.14.9) unstable; urgency=low
10692   [ Raphaël Hertzog ]
10693   * Fix bad behaviour of Dpkg::Path::get_pkg_root_dir() and adjust
10694     dpkg-shlibdeps accordingly. Closes: #452012
10695   * Fix Dpkg::Deps to accept empty fields. Closes: #452013
10697   [ Updated man pages translations ]
10698   * German (Helge Kreutzmann).
10700  -- Guillem Jover <guillem@debian.org>  Tue, 20 Nov 2007 07:15:41 +0200
10702 dpkg (1.14.8) unstable; urgency=low
10704   [ Raphaël Hertzog ]
10705   * Heavy rework of dpkg-shlibdeps:
10706     - Support "symbols" files to generate finer-grained dependencies.
10707       Those files can be created by the new dpkg-gensymbols command.
10708       Closes: #430367
10709     - Uses now all paths in RPATH (instead of only the first).
10710       Closes: #395942
10711     - Support parsing include directives in /etc/ld.so.conf. Closes: #431597
10712     - Libraries are also searched in the public directories of packages
10713       being built and thus debian/shlibs.local can effectively define
10714       dependencies for libraries that are being built. Closes: #80340
10715     - "symbols" files use the full SONAME as key instead of splitting it in
10716       (name, version) like in the "shlibs" format. This allows binaries to
10717       be linked with unversioned libraries and not fail. Note that
10718       unversioned libraries are still a very bad idea.  Closes: #48208
10719     - dpkg-shlibdeps now supports '-x<package>' options that can be used to
10720       exclude packages from generated dependencies (use with care though).
10721       Closes: #41907, #109954
10722     - If dpkg-shlibdeps doesn't find any dependency information for a
10723       shared library that is actively used, then it will fail. This can be
10724       disabled with the option '--ignore-missing-info'. Closes: #10807
10725   * Switch perl programs to use the new Dpkg::Deps module. This changes the
10726     behaviour of dpkg-gencontrol and dpkg-source which will rewrite and
10727     simplify dependencies and build dependencies as possible. Multiple
10728     dependencies on the same package are replaced by their intersection.
10729     Closes: #178203, #186809, #222652
10731   [ Frank Lichtenheld ]
10732   * Add $(MAKE) check to build target
10733   * Allow using other compressions than gzip on dpkg-source -b
10734     (NOTE: this will result in a Format: 2.0 source package!).
10735     Closes: #382673
10736   * Various small fixes to the manpages suggested by Helge Kreutzmann.
10737     Closes: #445858
10738   * Fix Dpkg::BuildOptions (and thereby dpkg-buildpackage) to really
10739     set DEB_BUILD_OPTIONS. Found by Daniel Shepler. Closes: #446119
10740   * Change some ' in shell code in dpkg-source.1 and dpkg-query.1 to
10741     proper \(aq. Reported by Daniel van Eeden. Closes: #447476
10743   [ Guillem Jover ]
10744   * Use shipped perl modules when calling perl programs at build time.
10745   * Switch perl programs to use the new Dpkg::ErrorHandling and Dpkg::Arch
10746     perl modules.
10747   * Add support for format strings in Dpkg::ErrorHandling functions.
10748   * Move build and host arch detection code from dpkg-architecture to
10749     Dpkg::Arch.
10750   * Add initial udeb support:
10751     - Support new fields Package-Type, Subarchitecture, Kernel-Version
10752       and Installer-Menu-Item. Closes: #383916
10753     - New '--type' option for dpkg-scanpackages.
10754   * Make dpkg-dev Conflict on dpkg-cross << 2.0.0 which was sourcing
10755     dpkg-buildpackage expecting it to be a shell script. Closes: #445852
10756   * Get rid of undefined macros from man pages. Thanks to Colin Watson
10757     for the analysis.
10759   [ Updated dselect translations ]
10760   * Czech (Miroslav Kure).
10762   [ Added programs translations ]
10763   * Thai (Theppitak Karoonboonyanan). Closes: #446501
10765   [ Updated programs translations ]
10766   * Czech (Miroslav Kure).
10767   * Galician (Jacobo Tarrio). Closes: #446624
10768   * Polish (Robert Luberda).
10769   * Russian (Yuri Kozlov). Closes: #446278
10771   [ Updated man pages translations ]
10772   * German (Helge Kreutzmann). Closes: #448354
10773   * Polish (Robert Luberda).
10774   * Swedish (Peter Karlsson).
10776   [ Added scripts translations ]
10777   * German (Helge Kreutzmann). Closes: #448353
10779   [ Updated scripts translations ]
10780   * Polish (Robert Luberda).
10781   * Swedish (Peter Karlsson).
10783  -- Guillem Jover <guillem@debian.org>  Mon, 19 Nov 2007 10:36:30 +0200
10785 dpkg (1.14.7) unstable; urgency=low
10787   [ Guillem Jover ]
10788   * Add back $dpkglib into @INC, needed by the controllib.pl require in
10789     822-date. Closes: #440962
10790   * Document in dpkg-scanpackages that apt now requires Packages.bz2 in
10791     preference to Packages.gz. Closes: #440973
10792   * Stop recognizing the obsolete Optional field when building packages.
10793   * Use fakeroot, if present, by default to gain root privileges in
10794     dpkg-buildpackage.
10795   * Fix typos in dpkg-deb.1 and start-stop-daemon.8. Closes: #441051
10796     Thanks to A. Costa.
10797   * After '<prerm> remove' fails and while doing the error unwinding, if
10798     the '<postinst> abort-remove' call succeeds, preserve the old status
10799     instead of unconditionally setting it to 'Installed'. Closes: #432893
10800     Thanks to Brian M. Carlson.
10801   * Add Vcs-Browser and Vcs-Git fields to debian/control.
10802   * Add a Homepage field to debian/control (to be changed later when
10803     there's a more formal site).
10804   * Allow comparing unsupported architectures for equality and identity.
10805     Based on a patch by Frank Lichtenheld. Closes: #427210
10806   * Document Origin and Bugs fields in deb-control.5. Closes: #173463
10807   * Do not replace substvars for build dependencies (it was not supported
10808     anyway).
10810   [ Frank Lichtenheld ]
10811   * Add _MTN to dpkg-source -i default regex. Suggested by Jari Aalto.
10812   * Convert dpkg-buildpackage to a Perl script.
10813     Fix some bugs in the new script detected in experimental:
10814     Closes: #444362
10815   * dpkg-buildpackage accepts a -j<n> option now which will set
10816     MAKEFLAGS(-j<n>) and DEB_BUILD_OPTIONS(parallel=<n>) accordingly.
10817     parallel=<n> in DEB_BUILD_OPTIONS will be passed to MAKEFLAGS as
10818     well. Based on an idea by Robert Millan. Closes: #440636
10819   * Allow dpkg-source -I without a pattern which will load a default
10820     list of pattern similar to -i without regexp. Patch by
10821     Jari Aalto. Closes: #440972
10822   * Rework documentation of dpkg-source's -i and -I options.
10823     Closes: #323911, #440956
10824   * Add --utf8-strings to gpg call in dpkg-buildpackage since
10825     that seems to be the better default. Suggested by Székelyi Szabolcs.
10826     Closes: #379418
10827   * Let dpkg-buildpackage error out early if the version number from
10828     the changelog is not a valid Debian version. Closes: #216075
10829   * Fix dpkg-source to create correct diffs for files with spaces in
10830     their name (apparently we don't have many of those ;).
10831     Based on a patch by Marcel Toele. Closes: #445380
10833   [ Updated programs translations ]
10834   * Basque (Piarres Beobide). Closes: #440859
10835   * Danish (Claus Hindsgaul). Closes: #441106
10836   * French (Frédéric Bothamy).
10837   * German (Sven Joachim). Closes: #440537
10838   * Nepali (Shiva Prasad Pokharel). Closes: #437825
10839   * Portuguese (Miguel Figueiredo). Closes: #441113
10840   * Romanian (Eddy Petrişor).
10841   * Vietnamese (Clytie Siddall). Closes: #440502
10842   * Korean (Sunjae Park). Closes: #443190
10844   [ Updated man pages translations ]
10845   * German (Helge Kreutzmann).
10846   * Swedish (Peter Karlsson).
10847   * Korean (Sunjae Park). Closes: #443191
10849   [ Updated scripts translations ]
10850   * Correct a typo in the French translation. Closes: #443276
10851   * Swedish (Peter Karlsson).
10853  -- Guillem Jover <guillem@debian.org>  Mon, 08 Oct 2007 07:31:34 +0300
10855 dpkg (1.14.6) unstable; urgency=low
10857   [ Frank Lichtenheld ]
10858   * Synchronise usage information of dpkg, dpkg-deb, and
10859     dpkg-query man pages. This fixes some small mistakes
10860     and also Closes: #321520
10862   [ Guillem Jover ]
10863   * Man pages cleanup:
10864     - Some italics and bold fixes.
10865     - Unify ellipsis, argument separator, and remove redundant program name
10866       preceding the options.
10867     - Substitute 'FILES' header with 'SEE ALSO' in dpkg-buildpackage(1),
10868       and remove leftover string from man page split. Closes: #439306
10869     - Split option descriptions so that it gets easier to distinguish.
10870     - Unify author and copyright information formatting.
10871   * Move variables automatically modified at build time for the perl scripts
10872     to a new style perl module (Dpkg) and make all programs use it.
10873   * Switch 'dpkg-gettext.pl' to a new style perl module (Dpkg::Gettext).
10874   * Implement support for Breaks field. Closes: #379140
10875     Thanks to Ian Jackson.
10876   * Run the deconfiguration of each package to be deconfigured once, instead
10877     of once per each conflicting package being removed. Closes: #378003
10878     Thanks to Ian Jackson.
10879   * Do not segfault when the result from a 'dpkg-query -l' is bigger than
10880     the total number of current packages, and do not produce repeated
10881     results with overlapping patterns on 'dpkg-query -W'. Closes: #428427
10882   * Tightening dpkg-dev versioned Depends to dpkg 1.14.6, and dpkg Conflicts
10883     against << dpkg-dev 1.14.6, where the perl modularization started.
10884   * Do not print empty lines after 'Setting up ...' output. Closes: #392317
10885   * When a slave alternative is inapplicable do not attempt to create the
10886     slave link before removing it again. Closes: #411699
10887     Thanks to Ian Jackson.
10888   * Do not consider it a file conflict if the package contains a symlink
10889     to a directory where the existing symlink on-disk points to the
10890     same place. Closes: #377682
10891     Thanks to Ian Jackson.
10892   * Fix perl warnings:
10893     - When removing a non diverted file with dpkg-divert. Closes: #438416
10894   * Implement support for Homepage field. Closes: #142324
10895   * Ignore XB- fields instead of XC- fields from control file binary package
10896     stanzas in dpkg-genchanges.
10897   * Explicitly ignore all known fields from the control file source package
10898     stanza in dpkg-genchanges, instead of leaving unknown fields unwarned.
10899   * Implement support for Vcs-Browser, Vcs-Arch, Vcs-Bzr, Vcs-Cvs, Vcs-Darcs,
10900     Vcs-Git, Vcs-Hg, Vcs-Mtn and Vcs-Svn fields in control file source
10901     package stanza.
10902   * Implement support for Tag field.
10904   [ Updated scripts translations ]
10905   * French (Frédéric Bothamy, Christian Perrier).
10906   * Swedish (Peter Karlsson).
10908   [ Updated programs translations ]
10909   * Dzongkha (Tshewang Norbu). Closes: #430931
10910   * Nepali (Shiva Prasad Pokharel). Closes: #435353
10911   * Polish (Robert Luberda).
10912   * Russian (Yuri Kozlov). Closes: #436147
10913   * Swedish (Peter Karlsson).
10915   [ Updated dselect translations ]
10916   * Russian (Yuri Kozlov). Closes: #436149
10917   * Swedish (Peter Karlsson).
10919   [ Updated man pages translations ]
10920   * German (Helge Kreutzmann).
10921   * Polish (Robert Luberda).
10922   * Swedish (Peter Karlsson).
10924  -- Guillem Jover <guillem@debian.org>  Wed, 05 Sep 2007 07:36:02 +0300
10926 dpkg (1.14.5) unstable; urgency=low
10928   [ Guillem Jover ]
10929   * Add lpia support to ostable and triplettable.
10930   * Fix dpkg-source to not emit duplicated entries for the Architecture field
10931     in the .dsc file.
10932   * Fix dpkg-scanpackages to load the override file after having filled the
10933     packages information. Closes: #428169, #428470
10934   * Add '.shelf' to the default dpkg-source -i regex. Closes: #427827
10935     Thanks to Adeodato Simó.
10936   * Support a colon separated list of paths from the ELF RPATH field in
10937     dpkg-shlibdeps. Thanks to Jiří Paleček. Closes: #427988
10938   * Man pages cleanup:
10939     - Reference deb-substvars(5) instead of dpkg-substvars(5). Closes: #429182
10940     - Mark dpkg-* commands in bold.
10941     - Unify title header.
10942     - Remove an additional space in install-info(8) and mark gzip in bold
10943       and remove redundant reference to GNU.
10944     - Fix explanation of dpkg-source '-b' option, remove a reference to
10945       checking for a missing empty string argument, and add a reference
10946       to '-sX' arguments affecting the behavior. Closes: #428167
10947     - Remove documented dpkg-gencontrol options in dpkg-source left over
10948       from the man pages split.
10950   [ Frank Lichtenheld ]
10951   * Fix typo in German translation of start-stop-daemon(8).
10952     Noted by Joachim Breitner. Closes: #430008
10953   * Correct permission and owner/group handling when extracting
10954     tar balls to match more the user's preferences instead of
10955     ours or the ones from the originator of the tar ball. Patch
10956     by Ian Jackson. Closes: #390915, #207289
10957   * dpkg-source warns now about new empty files since those will
10958     not be represented in the diff. Closes: #383394
10960   [ Updated dselect translations ]
10961   * French (Christian Perrier).
10962   * Romanian (Eddy Petrişor).
10964   [ Updated programs translations ]
10965   * Estonian (Ivar Smolin). Closes: #427589
10966   * Portuguese (Miguel Figueiredo).
10967   * Romanian (Eddy Petrişor).
10968   * Spanish (Javier Fernandez-Sanguino). Closes: #429958
10970   [ Updated man pages translations ]
10971   * German (Helge Kreutzmann).
10973  -- Frank Lichtenheld <djpig@debian.org>  Tue, 03 Jul 2007 00:27:07 +0200
10975 dpkg (1.14.4) unstable; urgency=low
10977   [ Guillem Jover ]
10978   * Fix perl warnings:
10979     - When unpacking a source package with -sp from a different directory
10980       than the one containing the tarball. Closes: #424998
10981   * Remove an unused variable in dpkg-statoverride by renaming it to the
10982     initially intended name. Closes: #425041
10983   * Fix loose regex in dpkg-source (/\.debian.tar/ -> /\.debian\.tar/).
10984     Thanks to Kylan Robinson. Closes: #425629
10985   * Revert change on 1.14.0 from Aaron M. Ucko. Trim down duped entries only
10986     when passing them to dpkg-query instead. Closes: #425641
10987   * Recognize again architecture wildcards. Closes: #424670
10989   [ Updated programs translations ]
10990   * Basque (Piarres Beobide). Closes: #425776
10991   * French (Frédéric Bothamy).
10992   * Galician (Jacobo Tarrío).
10994  -- Guillem Jover <guillem@debian.org>  Thu, 24 May 2007 19:30:26 +0300
10996 dpkg (1.14.3) unstable; urgency=low
10998   [ Guillem Jover ]
10999   * Fix perl warnings:
11000     - In dpkg-genchanges when called with -S. Closes: #423193
11001     - In architecture comparison operations. Closes: #423452
11002     - Fill slavepaths undefined entries with an empty string to guarantee
11003       they are always defined. Closes: #423140, #423451, #423544, #423555
11004   * Include the new split man pages deb-substvars.5, deb-override.5 and
11005     deb-shlibs.5 in dpkg-dev.
11006   * Fix deb-substvars.5 section to match reality.
11007   * Refactor update-alternatives.
11008   * Fix dpkg-divert to work again w/o specifying the '--divert' and
11009     '--package' or '--local' options. Closes: #423864
11010   * Document in install-info.8 that when no '--section' option is specified,
11011     install-info will try to use the INFO-DIR-SECTION entry from the info
11012     file. Add missing commas. Thanks to Kurt B. Kaiser. Closes: #397737
11013   * Disambiguate in install-info.8 the use of 'Info directory' with
11014     'Info dir file'. Closes: #420766
11015   * Document in deb-control.5 that the control file can have '#'-style
11016     comments. Closes: #406481
11017   * Make start-stop-daemon fork twice while daemonizing.
11019   [ Updated scripts translations ]
11020   * French (Frédéric Bothamy). Closes: #423392
11022   [ Updated programs translations ]
11023   * French (Christian Perrier).
11024   * German (Sven Joachim). Closes: #423401
11026   [ Updated dselect translations ]
11027   * German (Sven Joachim). Closes: #423403
11029  -- Guillem Jover <guillem@debian.org>  Tue, 15 May 2007 16:02:59 +0300
11031 dpkg (1.14.2) unstable; urgency=low
11033   [ Guillem Jover ]
11034   * Remove bashisms in dpkg-buildpackage. Closes: #422239
11035   * Handle case in update-alternatives when there's no existing alternative
11036     to configure. Closes: #260987, #353252, #367717, #392431
11037   * Add solaris support to ostable and triplettable. Closes: #361866
11038   * Properly create the generic name symlink in update-alternatives for new
11039     alternatives. Closes: #422979
11040   * Include translations again, which disappeared due to a dirty source tree
11041     and a bogus Makefile.am for the man pages. Closes: #423029, #423085
11043  -- Guillem Jover <guillem@debian.org>  Wed, 09 May 2007 22:22:45 +0300
11045 dpkg (1.14.1) unstable; urgency=low
11047   [ Guillem Jover ]
11048   * Fix partial upgrades by tightening dpkg-dev versioned Depends to
11049     dpkg 1.14.0, and dpkg Conflicts against << dpkg-dev 1.14.0, where
11050     the triplettable support first appeared. Closes: #422848
11052  -- Guillem Jover <guillem@debian.org>  Tue, 08 May 2007 18:23:49 +0300
11054 dpkg (1.14.0) unstable; urgency=low
11056   [ Guillem Jover ]
11057   * Make the copyright information in dpkg-deb.1 and dpkg-split.1 match the
11058     one in the source. Thanks to Nicolas François. Closes: #379320
11059   * Allow dpkg-buildpackage to properly override '-b' when passed after '-B'.
11060     Thanks to Julian Gilbey. Closes: #397479
11061   * Move retrieval of uid and gid information from controllib.pl into a
11062     function, so that scripts not needing it do not execute that code.
11063     Based on a patch by Riku Voipio. Closes: #396884
11064   * Do not bail out in dpkg when building without start-stop-daemon support,
11065     by checking if the macro value is true instead of it being defined.
11066     Thanks to Mark Rosenstand.
11067   * Make all perl scripts use strict and warnings, to ease catching errors.
11068   * Refactor update-alternatives code, with the side effect that now commands
11069     on non existing link group files will return an error code (except
11070     for --remove, now). Closes: #273407
11071   * Add a missing newline to a warning message in dpkg. Closes: #390914
11072     Thanks to Ian Jackson.
11073   * Fix typo in variable name in dpkg-source which was causing it to not
11074     create directories when extracting the diff. Closes: #374645
11075   * Fix up and down keystrokes in the dselect help message. Closes: #383438
11076     Thanks to Sven Joachim.
11077   * Convert 822-date to be a simple wrapper around 'date -R'. 822-date is
11078     now deprecated and should not be used anymore. It might be removed
11079     sometime in the future. Closes: #31634, #367712, #314462
11080     Thanks to Frank Lichtenheld.
11081   * Add '.gitignore' to the default dpkg-source -i regex. Closes: #409566
11082     Thanks to Julien Cristau.
11083   * Add '.hg' to the default dpkg-source -i regex. Closes: #414794
11084   * Use l10n-friendlier strings to describe dependencies. Closes: #390916
11085     Thanks to Ian Jackson.
11086   * Change priority for dpkg-dev from standard to optional to match the
11087     override.
11088   * Do not use a build-stamp in debian/rules.
11089   * Fix confusing bottom status lines in dselect, unifying them by removing
11090     the method or package name and capitalizing. Closes: #9085
11091   * Check proper error value returned by BZ2_bzerror. Closes: #410605
11092   * Exit with an error instead of an assert if a file name is too long when
11093     building a .deb package. Closes: #393069
11094   * Exit with an error instead of an assert if the number of conflictors is
11095     exceeded. Remove bogus comments. Closes: #377855
11096   * Fix regular expression special-casing Origin, Bugs and Maintainer fields
11097     which was making X[SBC]- fields containing such strings to propagate into
11098     the .deb control file unprocessed. Thanks to Colin Watson.
11099   * Add support for '--admindir' in dpkg-buildpackage, dpkg-checkbuilddeps
11100     and dpkg-shlibdeps. Closes: #162348
11101   * Cleaning and format unification of manual pages.
11102   * Make the override-file argument to dpkg-scanpackages optional.
11103   * Refactor compression filtering code.
11104   * Split override file information from dpkg-scanpackages.1 into
11105     deb-override.5 manual page.
11106   * Split dpkg-source.1 into independent man pages, namely deb-substvars.5,
11107     deb-shlibs.5, dpkg-buildpackage.1, dpkg-distaddfile.1, dpkg-genchanges.1,
11108     dpkg-gencontrol.1, dpkg-parsechangelog.1 and dpkg-shlibdeps.1.
11109   * Support building binary packages with the member data.tar.lzma compressed
11110     with lzma.
11111   * Require gettext 0.16.1.
11112   * Show the epoch (if present) when displaying package versions.
11113     Closes: #107449, #179913, #345594, #393924, #405668
11114     Based on a patch by Jeffrey W. Baker.
11115   * Switch from pseudo-tags to usertags, and update the documentation.
11116   * Fix typo in German dpkg man page. Closes: #416167
11117     Thanks to Martin Weis.
11118   * Properly sort Uploaders field in generated .dsc files.
11119   * Reorder a bit the fields in output files.
11120   * Speed up dpkg-shlibdeps by avoiding doing a dpkg-query for duped
11121     libraries. Thanks to Aaron M. Ucko. Closes: #421290
11122   * Generalize source architecture handling by abstracting it through the new
11123     Debian triplet and the new triplettable.
11124   * Add armel support to ostable and triplettable. Closes: #414087
11126   [ Updated programs translations ]
11127   * Dutch (Bart Cornelis).
11128   * French (Frédéric Bothamy).
11129   * Polish (Robert Luberda).
11130   * Romanian (Eddy Petrişor).
11131   * Simplified Chinese (Anthony Wong). Closes: #415320
11132   * Traditional Chinese (Anthony Wong). Closes: #415230
11134   [ Added programs translations ]
11135   * Estonian added (Ivar Smolin). Closes: #422404
11136   * Kurdish added (Erdal Ronahi). Closes: #418154
11137   * Marathi added (Priti Patil). Closes: #416810
11139   [ Updated man pages translations ]
11140   * German (German l10n team). Closes: #418528
11141   * Polish (Robert Luberda).
11143   [ Updated dselect translations ]
11144   * Dutch (Bart Cornelis).
11145   * Polish (Robert Luberda).
11147  -- Guillem Jover <guillem@debian.org>  Tue, 08 May 2007 11:11:50 +0300
11149 dpkg (1.13.25) unstable; urgency=low
11151   [ Guillem Jover ]
11152   * Fix year 2018 in changelog for Michael Alan Dorman's upload in 1998,
11153     which was confusing the changelog parsers. Closes: #402526
11154   * Document in its man page that update-alternatives requires cooperation
11155     from all packages dealing with the specific file. Closes: #396338
11156     Thanks to Tomas Pospisek <tpo_deb@sourcepole.ch>.
11157   * Require POSIX inside subprocerr in controllib.pl. Closes: #390636
11158     Thanks to Brendan O'Dea <bod@debian.org>.
11159   * Support extracting lzma compressed source and binary packages,
11160     and add a Suggests on package lzma. Closes: #347715
11161   * Add '/emul/ia32-linux' biarch paths to dpkg-shlibdeps. Closes: #403216
11162   * Remove non-modified /etc/dpkg/dpkg.cfg configuration file when upgrading
11163     from versions 1.9.21 through 1.10.28, to avoid getting prompted about
11164     conffile changes. Closes: #398061
11166   [ Updated programs translations ]
11167   * Chinese (Traditional, Asho Yeh).
11168   * Korean (Sunjae Park). Closes: #394135, #404938
11169   * Norwegian Bokmal (Hans Fredrik Nordhaug). Closes: #391143
11170   * Nepali (Shiva Prasad Pokharel).
11171   * Romanian (Eddy Petrişor).
11172   * Catalan (Jordà Polo).
11173   * Swedish (Peter Karlsson).
11174   * Vietnamese (Clytie Siddall). Closes: #399343
11176   [ Added programs translations ]
11177   * Punjabi (A S Alam).
11179   [ Updated scripts translations ]
11180   * Catalan (Jordi Mallach).
11182   [ Updated dselect translations ]
11183   * Korean (Sunjae Park). Closes: #404943
11185  -- Guillem Jover <guillem@debian.org>  Tue,  2 Jan 2007 00:23:57 +0200
11187 dpkg (1.13.24) unstable; urgency=low
11189   [ Guillem Jover ]
11190   * Fix dselect segfault by adding a field description matching the
11191     dependency field enum position. Closes: #392731, #392724
11193   [ Updated programs translations ]
11194   * Nepali (Shiva Prasad Pokharel). Closes: #373728
11196  -- Guillem Jover <guillem@debian.org>  Fri, 13 Oct 2006 16:34:39 +0300
11198 dpkg (1.13.23) unstable; urgency=low
11200   [ Guillem Jover ]
11201   * Add initial support for the Breaks field, by parsing but rejecting it.
11202     Thanks to Ian Jackson <iwj@ubuntu.com>. Closes: #375703
11203   * Use dpkg-architecture from the source tree to get the target Debian
11204     architecture, instead of duplicating the logic in the m4 files.
11205   * Remove comment headers in dselect/helpmsgs.{cc,h} about the files being
11206     autogenerated, replace them with a proper license and copyright comment.
11207     Closes: #382308
11208   * Add a new line at the end of m4/compiler.m4 file, to cope with an
11209     autoreconf failure due to the new m4 1.4.7.
11211   [ Nicolas François ]
11212   * Specify --null before the -T tar's option to avoid the "tar: -: file name
11213     read contains nul character" warning.
11214     Closes: #376351, #375749, #376724, #377279
11216   [ Added programs translations ]
11217   * Dzongkha (Kinley Tshering).
11219   [ Updated programs translations ]
11220   * Basque (Piarres Beobide). Closes: #375118
11221   * Brazilian Portuguese (Andre Luis Lopes).
11222   * Catalan (Robert Millan, Jordi Mallach). Closes: #383448
11223   * Czech (Miroslav Kure).
11224   * Danish (Claus Hindsgaul).
11225   * Dutch (Bart Cornelis).
11226   * Dzongkha (Tenzin Dendup). Closes: #388192
11227   * French (Frédéric Bothamy).
11228   * Galician (Jacobo Tarrio).
11229   * German (Sven Joachim). Closes: #381409, #381740
11230   * Hungarian (SZERVÁC Attila).
11231   * Italian (Stefano Canepa, Davide Viti). Closes: #387821
11232   * Japanese (Kenshi Muto). Closes: #386963
11233   * Khmer (Khoem Sokhem). Closes: #375099
11234   * Portuguese (Miguel Figueiredo, Rui Branco).
11235   * Romanian (Eddy Petrişor).
11236   * Russian (Yuri Kozlov). Closes: #376746, #391143
11237   * Slovak (Peter Mann). Closes: #387282
11238   * Spanish (Javier Fernandez-Sanguino). Closes: #386759
11239   * Swedish (Daniel Nylander). Closes: #383643
11240   * Vietnamese (Clytie Siddall). Closes: #383588
11242   [ Added scripts translations ]
11243   * Catalan (Jordi Mallach).
11244   * French (Philippe Batailler).
11246   [ Updated dselect translations ]
11247   * Brazilian Portuguese (Andre Luis Lopes).
11248   * Catalan (Robert Millan, Jordi Mallach).
11249   * Danish (Claus Hindsgaul).
11250   * German (Sven Joachim). Closes: #384843
11251     (Sven is now the new German translation maintainer for dpkg and dselect).
11252   * Hungarian (SZERVÁC Attila).
11253   * Indonesian (Arief S Fitrianto). Closes: #391144
11254   * Italian (Stefano Canepa).
11255   * Japanese (Kenshi Muto).
11256   * Norwegian Bokmål (Hans Fr. Nordhaug).
11257   * Russian (Yuri Kozlov).
11258   * Slovak (Peter Mann).
11259   * Spanish (Javier Fernández-Sanguino Peña). Closes: #391144
11260   * Swedish (Daniel Nylander).
11261   * Vietnamese (Clytie Siddall).
11263   [ Updated man pages translations ]
11264   * French (Philippe Batailler).
11265   * German (Helge Kreutzmann). Closes: #379030
11267   [ Added man pages translations ]
11268   * German (Helge Kreutzmann).
11269     Closes: #379286, #379298, #379417, #379433, #379661, #379798, #379825
11270     Closes: #379985, #380130, #380239, #380365, #381047, #380660, #380443
11271     Closes: #381349, #381488
11272   * Japanese (KISE Hiroshi).
11273     Closes: #381141, #381865, #384768, #385675, #386965, #388837
11275  -- Guillem Jover <guillem@debian.org>  Thu, 12 Oct 2006 02:56:09 +0300
11277 dpkg (1.13.22) unstable; urgency=low
11279   [ Guillem Jover ]
11280   * Version the po4a Build-Depends to >= 0.23 as we are using options
11281     introduced in that version. Thanks to Sergio Gelato. Closes: #370536
11282   * Add '.bzrtags' directory to default dpkg-source -i regex.
11283     Suggested by Adeodato Simó. Closes: #370392
11284   * Print update-alternatives '--config' listing layout evenly spaced.
11285     Closes: #325895
11286   * Clarify the legend in update-alternatives '--help' (Andrew Ferrier).
11287     Closes: #305318
11288   * Add the source version inside parenthesis to the Source field in the
11289     generated .changes and binary packages if the binary package version
11290     differs (like in binNMUs). Closes: #62529
11291   * Add missing comment serving as documentation about abort-remove on
11292     removal in dpkg.postinst (Justin Pryzby). Closes: #372145
11293   * Fix typo in dpkg-deb manpage (Robert Luberda). Closes: #373999
11294   * Clarify dpkg-architecture new options '-e' and '-i' in man page, add
11295     backward compatibility information and give some examples.
11296     Thanks for the initial suggestions to Junichi Uekawa. Closes: #370830
11297   * Modified some strings to be able to merge them in the .pot files.
11298   * Add new '--umask' option to start-stop-daemon. Closes: #368003
11300   [ Frank Lichtenheld ]
11301   * dpkg-source issued spurious warnings about fields defined with
11302     XB-. They now get correctly suppressed. Closes: #374154
11303   * Give a correct warning when the user requested an unknown
11304     sign command that we will default to a pgp style interface.
11305     Closes: #133470
11307   [ Updated programs translations ]
11308   * Romanian (Eddy Petrişor).
11309   * Galician (Jacobo Tarrio).
11310   * French (Christian Perrier).
11311   * Swedish (Peter Karlsson).
11312   * Basque (Piarres Beobide). Closes: #373107
11313   * Polish (Robert Luberda).
11314   * Catalan (Guillem Jover).
11316   [ Added programs translations ]
11317   * Nepali (Paras Pradhan). Closes: #373728
11319   [ Updated dselect translations ]
11320   * Simplified Chinese (Kov Tchai). Closes: #366260
11322   [ Updated man pages translations ]
11323   * Polish (Robert Luberda).
11325   [ Christian Perrier ]
11326   * Typo fix in update-alternatives ("alternativse"). Thanks to Eddy Petrisor
11327     for spotting it. Translations unfuzzied.
11328   * Make similar messages in dpkg-statoverride and dpkg-divert exactly similar
11329     Thanks to Eddy Petriso for spotting them, again.
11331  -- Guillem Jover <guillem@debian.org>  Wed, 21 Jun 2006 18:03:29 +0300
11333 dpkg (1.13.21) unstable; urgency=low
11335   [ Guillem Jover ]
11336   * Disambiguate error message about conflicting command line actions by
11337     providing both long and short option names. Based on a suggestion by
11338     Josip Rodin. Closes: #45575
11339   * Add '/lib32' and '/usr/lib32' to the dpkg-shlibdeps library path search
11340     list. Closes: #367892
11341   * Revert usage of English perl non-essential module from install-info.
11342     Closes: #369928, #369958, #370157, #370174, #370210
11343   * Print the correct file being parsed by dpkg-parsechangelog's debian
11344     parser. Closes: #368961
11345   * Fix dependency cycle breaking in the case when every link involves
11346     a Provides (Ian Jackson). This is a proper fix for #349442.
11347     Closes: #370017
11349   [ Updated programs translations ]
11350   * Czech (Miroslav Kure).
11351   * Vietnamese (Clytie Siddall).
11353  -- Guillem Jover <guillem@debian.org>  Sun,  4 Jun 2006 19:02:44 +0300
11355 dpkg (1.13.20) unstable; urgency=low
11357   [ Frank Lichtenheld ]
11358   * Add gettext support for the Perl scripts. Based on a patch by
11359     Nicolas François. Closes: #165843
11360   * Only print usage information of dpkg-scanpackages on stdout
11361     if requested explicitly. Use stderr in case of error.
11362     Closes: #366659
11363   * Add remarks to dpkg-scansources and dpkg-scanpackages
11364     man pages about the need to compress the generated files
11365     to be able to access them via apt. Closes: #65839
11366   * Allow '+' and '.' in distribution names in Debian changelogs.
11367     Based on a patch by John Wright.
11368     Closes: #361171
11369   * Use the Debian keyring in dpkg-source when checking signatures
11370     of .dsc files, if available. Closes: #364726
11371   * Let dpkg-buildpackage pass through all remotely sensible
11372     -sX options to dpkg-source (-s[nsAkurKUR] currently).
11373     Closes: #36586
11374   * Improve the description of --showformat in dpkg-deb
11375     man page and add a pointer to the complete description
11376     of the option in dpkg-query.
11377   * Don't spew out garbage from dpkg-deb, if the second argument
11378     to -I is a absolute filename. Based on a patch by Ian Eure.
11379     Closes: #35573
11380   * Fix --ignore-depends argument value parsing. Closes: #169125
11381   * Completely remove md5sum diversion madness.  Instead, we Pre-Depend
11382     on a version of textutils which provides /usr/bin/md5sum.  We rely on
11383     the logic in coreutils to remove our diversions. Patch by
11384     Ian Jackson. Closes: #315784, #313605
11385   * Try harder to detect dependency cycles that contain Provides
11386     links. Closes: #349120, #349442
11387   * Update archtable to reflect current archive: Add amd64 and remove
11388     sh. Closes: #367329
11389   * Don't claim in dpkg man page that we set DPKG_OLD_CONFFILE and
11390     DPKG_NEW_CONFFILE on sub shells since we actually don't.
11391   * Fix printing of user defined fields with --showformat and
11392     document the existence of this feature in dpkg-query man page.
11393   * Make --forget-old-unavail more reliable by deleting architecture
11394     information of removed packages. Patch by Piotr Engelking.
11395     Closes: #208532
11396   * When building packages with dpkg-deb give a more useful error
11397     message in case a conffile entry has leading whitespace. Patch
11398     by David Lopez Moreno. Closes: #281562
11399   * Don't drop directories that contain our conffiles too early from
11400     our file listing. Otherwise we might leave them behind on purge
11401     if we share them with other packages.
11402     Closes: #174180, #198128, #198522, #318825, #366178
11404   [ Nicolas François ]
11405   * Fix typos in the Russian man pages. Thanks to Stepan Golosunov.
11406     Closes: #366587
11407   * Honour tabbing requested via --showformat even if the field to
11408     be printed is empty. Closes: #361671
11409   * Flush the terminal's input before prompting what to do with a
11410     configuration file. Closes: #316551
11411   * Fix the --force-depends-version option. Closes: #57104
11413   [ Guillem Jover ]
11414   * Standardize scripts usage output format and at the same time make
11415     the strings easier for the translators. Add '--help' and '--version'
11416     for most of the scripts. Print the usage and version to stdout.
11417   * Do not strip the epoch from the source:Upstream-Version substvar.
11418     Closes: #366351
11419   * Properly check and report lock file existence in install-info.
11420     Based on patch by Ben Pfaff. Closes: #368874
11421   * Correct default info directory for '--infodir' in install-info man
11422     page (Ben Pfaff). Closes: #368875
11423   * Print the bogus version and prefix the error message with 'dpkg: '
11424     when using '--compare-versions'. Closes: #369177
11425   * Remove duplicated string " , at changelog " in dpkg-parsechangelog's
11426     debian style parser (Julian Gilbey). Closes: #369205
11427   * Update the Section and Priority fields in the status file from the
11428     new packages. We assume that the information from the binary package
11429     is correct, otherwise it should be fixed there to match the archive
11430     override file (Koblinger Egmont).
11431     Closes: #54529, #58106, #81171, #230610, #237622, #237626
11432   * Bump Standards-Version to 3.7.2 (no changes needed).
11433   * Add lintian overrides for dpkg, dpkg-dev, dselect and sources.
11434   * Replace logrotate installation logic with dh_installlogrotate.
11436   [ Updated programs translations ]
11437   * Portuguese (Miguel Figueiredo).
11438   * Polish (Robert Luberda).
11439   * Hungarian (SZERVÁC Attila).
11440   * Romanian (Eddy Petrişor).
11441   * Russian (Yuri Kozlov). Closes: #366353
11442   * Czech (Miroslav Kure).
11443   * Simplified Chinese (Kov Tchai). Closes: #366985
11444   * Swedish (Peter Karlsson).
11445   * Galician (Jacobo Tarrio).
11446   * Slovak (Peter Mann).
11447   * Dutch (Bart Cornelis).
11448   * Basque (Piarres Beobide). Closes: #366185
11450   [ Updated dselect translations ]
11451   * Polish (Robert Luberda).
11452   * Basque (Piarres Beobide). Closes: #366187
11453   * Czech (Miroslav Kure).
11454   * Romanian (Eddy Petrişor).
11456   [ Updated man pages translations ]
11457   * Polish (Robert Luberda).
11459  -- Guillem Jover <guillem@debian.org>  Wed, 31 May 2006 07:43:16 +0300
11461 dpkg (1.13.19) unstable; urgency=low
11463   [ Frank Lichtenheld ]
11464   * Add -follow (back) to find call in dpkg-scanpackages.
11465     Closes: #358011
11466   * Fix error in archive.c that lead to a infinite loop when
11467     installing files with long, non-ASCII filenames in
11468     certain locales. Closes: #346436
11470   [ Updated programs translations ]
11471   * French (Christian Perrier).
11472   * Galician (Jacobo Tarrio).
11473   * Romanian (Eddy Petrişor).
11474   * Dutch (Bart Cornelis).
11475   * Swedish (Peter Karlsson).
11476   * Danish (Claus Hindsgaul). Closes: #362317
11477   * Czech (Miroslav kure).
11478   * Vietnamese (Clytie Siddall). Closes: #363264
11479   * Spanish (Javier Fernández-Sanguino Peña). Closes: #357911
11480   * Basque (Piarres Beobide). Closes: #363683, #363679
11481   * Japanese (Kenshi Muto). Closes: #365334
11483   [ Updated dselect translations ]
11484   * Romanian (Eddy Petrişor).
11485   * Galician (Jacobo Tarrio).
11486   * French (Christian Perrier).
11487   * Dutch (Bart Cornelis).
11489   [ Nicolas Francois ]
11490   * Generate the Russian man pages in the KOI8-R charset. Closes: #361987
11491   * Document the shlibs.local format in dpkg-source(1). Closes: #316485
11492   * Fix a typo in an error message. Thanks to Justin Pryzby. Closes: #364539
11494   [ Guillem Jover ]
11495   * Fix strings so that they can be more easily translated. Closes: #134358
11496   * Add new substvars source:Version, source:Upstream-Version and
11497     binary:Version so packages will be able to avoid breaking on binNMUs.
11498     Based on a patch by Ken Bloom and Jeroen van Wolffelaar. Closes: #358530
11499   * Support binNMU safe packages even when source and binary differ in
11500     version.
11501   * Rename dpkg:UpstreamVersion to dpkg:Upstream-Version. Make dpkg:Version
11502     and dpkg:Upstream-Version get the current dpkg versions instead of the
11503     ones from the package being built.
11504   * Split usage strings to make it easier for translators when those change.
11505     Closes: #323957
11506   * Standardize start-stop-daemon usage output format.
11507   * Make install-info '--dir-file' option compatible with GNU install-info
11508     by renaming the infodir variable to dirfile and not appending the
11509     '/dir' string except when initializing from '--info-dir' or
11510     '--infodir' (Wayne Davison). Closes: #61640, #67237, #286275
11511   * Make install-info add a new line after adding the last entry at the
11512     end of the dir file, which makes the info readers able to see those
11513     last entries (Nicolas François). Closes: #164495
11514   * Use the numerical value of errno instead of a string in install-info
11515     when checking if the locking error was due to an already existing
11516     file, which is locale dependent, and die accordingly. Based on a patch
11517     by Nicolas François. Closes: #199204, #210781
11518   * Escape hyphens in man pages.
11519   * Bump Standards-Version to 3.7.1.
11520   * Wrapped debian/control fields except Uploaders given current policy.
11522  -- Guillem Jover <guillem@debian.org>  Thu,  4 May 2006 14:05:21 +0300
11524 dpkg (1.13.18) unstable; urgency=low
11526   [ Updated programs translations ]
11527   * Romanian (Sorin Batariuc). Closes: #356664
11528   * Danish (Claus Hindsgaul). Closes: #356188
11529   * Polish (Robert Luberda).
11530   * Dutch (Bart Cornelis).
11532   [ Updated dselect translations ]
11533   * Spanish (Javier Fernández-Sanguino Peña). Closes: #357912
11534   * Danish (Claus Hindsgaul). Closes: #356188
11535   * Polish (Robert Luberda).
11536   * Russian (Yuri Kozlov). Closes: #361415
11538   [ Updated man pages translations ]
11539   * Typos corrected in French dpkg-source man page
11540     Thanks to Nicolas Bonifas who spotted them
11541   * Russian completed. Thanks to Yuri Kozlov.
11542     Closes: #361415
11544   [ Christian Perrier ]
11545   * Correct typos in man pages. Thanks to A. Costa for spotting them
11546     Closes: #358091, #358092, #358093, #358094, #358095
11548   [ Guillem Jover ]
11549   * Add a '[!]' in --force-all help denoting that it is a dangerous option.
11550     Closes: #359935
11551   * Prefix any chroot path to the exec file name when stating it in
11552     start-stop-daemon. Closes: #318771, #333066
11553   * Add '-r' to the help output of start-stop-daemon (Jared Spiegel).
11554     Closes: #354869
11555   * Use mustsetvar when setting the value of the sversion variable in
11556     dpkg-buildpackage (Andrew Suffield). Closes: #158953
11557   * Pass '--admindir' option over to dpkg-query when passing '--admindir' or
11558     '--root' to dpkg (initial patch by Branden Robinson).
11559     Closes: #153305, #271041, #282853, #307715, #355915
11560   * Support system library directories in dpkg-shlibdeps symlinked from
11561     '/lib/ldconfig'. Closes: #356452
11562   * Document that 'dpkg --get-selections' and 'dpkg-query -l' without a
11563     pattern will not list packages in state purge. Closes: #355633
11564   * Obsolete force/refuse 'auto-select' dpkg option.
11565   * Add new '--clear-selections' option to dpkg (Andrew Suffield).
11566     Closes: #112388
11567   * Use '--clear-selections' in the dpkg man page example on how to transfer
11568     the status to another installation. Closes: #137442
11570  -- Guillem Jover <guillem@debian.org>  Mon, 10 Apr 2006 06:40:22 +0300
11572 dpkg (1.13.17) unstable; urgency=low
11574   [ Frank Lichtenheld ]
11575   * Fix handling of -DArchitecture=foo in dpkg-gencontrol. Closes: #251911
11576   * Handle architectures in all dependency fields in debian/control,
11577     even those of binary packages. Closes: #252657, #324741, #347819
11578   * More dpkg-scanpackages fixes (--arch option handling). Closes: #353506
11580   [ Guillem Jover ]
11581   * Add missing parentheses surrounding a man page section reference
11582     in the dpkg-source man page (Matt Kraai). Closes: #353731
11583   * Fix misspelling of "occurred" in dpkg-gencontrol and dpkg-source
11584     (Matt Kraai). Closes: #353949
11585   * Major cleanup of manpages, by using properly the bold and italic
11586     attributes and other embellishments.
11587   * Add dpkg-query(1) in the SEE ALSO section in dpkg(1). Closes: #354643
11588   * Don't try to compile in SELinux support on GNU/kFreeBSD amd64.
11589   * Add new quiet option to dpkg-source to suppress warnings. Closes: #355065
11590   * Do not expand architecture aliases anymore in .dsc files.
11591   * Change start-stop-daemon's --exec behavior again on GNU/Linux to compare
11592     the referred file pointed by the '/proc/<pid>/exe' symlink, stripping
11593     any ' (deleted)' string and stating the result. Closes: #354867
11595   [ Updated man pages translations ]
11596   * Polish (Robert Luberda). Closes: #353782
11597   * French (Philippe Batailler).
11599   [ Updated dselect translations ]
11600   * Hungarian (Szervác Attila).
11601   * Dutch (Bart Cornelis).
11602   * Czech (Miroslav Kure).
11604   [ Updated programs translations ]
11605   * Italian (Lele Gaifax)
11606   * Simplified Chinese (Carlos Z.F. Liu).
11607   * Portuguese (Miguel Figueiredo).
11608   * Dutch (Bart Cornelis).
11609   * Hungarian (Szervác Attila).
11610   * Czech (Miroslav Kure).
11611   * Russian (Yuri Kozlov). Closes: #357724
11613  -- Guillem Jover <guillem@debian.org>  Mon, 20 Mar 2006 03:33:03 +0200
11615 dpkg (1.13.16) unstable; urgency=low
11617   * The "not really a brown paper bag needed but it's close" release
11619   [ Guillem Jover ]
11620   * Move auxiliary autotools scripts to config/.
11621   * Require gettext 0.14.5.
11622   * Move the methods directory to dselect/methods, so the contents will not
11623     be installed if dselect is not to be built.
11624   * Move dselect gettext strings to its own domain provided now by the
11625     dselect package.
11627   [ Frank Lichtenheld ]
11628   * Fix override handling in dpkg-scanpackages which was broken in
11629     1.13.14 and .15. Closes: #353305
11630   * Make -isp the default behaviour of dpkg-gencontrol as it is
11631     always used anyway these days. Suggested by Matthew Vernon.
11632     Closes: #215233
11633   * Typo fixes in man pages by A. Costa:
11634     - dpkg-deb.1 Closes: #353424
11635     - dpkg-statoverride.8 Closes: #353425
11636     - install-info.8 Closes: #353426
11637     - start-stop-daemon.8 Closes: #353427
11638     - update-alternatives.8 Closes: #353428
11639     - dpkg.1, dpkg.cfg.5 Closes: #353429
11641  -- Frank Lichtenheld <djpig@debian.org>  Sat, 18 Feb 2006 17:59:00 +0100
11643 dpkg (1.13.15) unstable; urgency=low
11645   [ Guillem Jover ]
11646   * Add a missing closing parenthesis in a dpkg string (Jordi Mallach).
11648   [ Christian Perrier ]
11649   * Updated translations:
11650     - Brazilian Portuguese (Andre Luis Lopes). Closes: #352432
11651     - Galician (Jacobo Tarrio). Closes: #352443
11653   [ Updated translations ]
11654   * Catalan (Jordi Mallach).
11655   * Portuguese (Miguel Figueiredo).
11656   * Swedish (Daniel Nylander).
11658   [ Added translations ]
11659   * Hungarian (Szervác Attila).
11661   [ Added man pages translations ]
11662   * Hungarian (Szervác Attila): dpkg.cfg.5 and dselect.cfg.5.
11664  -- Frank Lichtenheld <djpig@debian.org>  Wed, 15 Feb 2006 23:37:40 +0100
11666 dpkg (1.13.14) experimental; urgency=low
11668   [ Guillem Jover ]
11669   * Make start-stop-daemon print the proper version instead of 'VERSION'.
11670   * Set the HOME environment variable when using the --chuid switch in
11671     start-stop-daemon. Closes: #295169, #267784
11672   * Cleanup and unify program usage and version output, make it more i18n
11673     friendly. Fix wrong gettext usage with interparsed macros.
11674     Thanks to Changwoo Ryu for noticing. Closes: #237915
11675   * Mark some strings as translatable (Changwoo Ryu). Closes: #256387
11676   * Remove a trailing 'C' character from update-alternatives manpage.
11677   * Use pkg-config to get the proper flags to link against libselinux.
11678     Add a Build-Dependency on pkg-config, tighten libselinux1-dev to
11679     at least version 1.28-4 which provides a .pc file, and remove
11680     libsepol1-dev as libselinux1-dev is Depending on it.
11681   * Add command descriptions in the synopsis, and add a usage example for
11682     -f in the dpkg-query manpage. Thanks for the initial patch to
11683     Philippe Batailler. Closes: #352091
11684   * Document about the default log file, the behavior in case of multiple
11685     --log options and add a reference to dpkg.cfg manpage in the dpkg manpage.
11686     Thanks to James R. Van Zandt. Closes: #350440
11687   * Escape ` and ' in manpages otherwise they are converted to quotation
11688     marks, which makes cut and paste not work. Thanks to Denis Barbier.
11689     Closes: #349925
11691   [ Frank Lichtenheld ]
11692   * Let dpkg-source ignore comments in the hunk header as used by
11693     diff -p (Anand Kumria). Closes: #344880
11694   * Let dpkg-buildpackage create a .changes file even if signing the
11695     .dsc file failed. This makes it easier to just sign the package
11696     later (Julian Gilbey). Closes: #217963
11697   * Change heuristics of dpkg-buildpackage's gpg check to allow for
11698     more complex setups (Julian Gilbey). Closes: #163061
11699   * Add files and dirs used by bzr to default dpkg-source -i regex
11700     (maximilian attems). Closes: #345164
11701   * Add .git directory to default dpkg-source -i regex.
11702     Suggested by Hans Ulrich Niedermann. Closes: #351885
11703   * dpkg-scanpackages can now output Packages files with multiple
11704     versions of a single package (Don Armstrong). Closes: #229589.
11705   * dpkg-scanpackages outputs help when given the --help or -h option
11706     (Don Armstrong). Closes: #319541
11707   * Document dpkg-scanpackage -m in man page.
11708   * Let warn dpkg-source if more than one -sX option was given and
11709     document the behaviour in this case in the man page.
11710     Closes: #246637
11711   * Make dpkg-source -b more robust regarding to existing symlinks
11712     by creating new files in a secure manner. Closes: #178839, #338591
11713   * Fix some semantic errors in dpkg-shlibdeps due to typos in used
11714     variables.
11715   * On package configuration, differentiate between modified and
11716     deleted configuration files (Ian Jackson). Closes: #351361
11717   * Improve processing of disappearing conffiles (Ian Jackson).
11718     This is part of the fix for #108587.
11719   * Let dpkg-source -x touch all patched files to have the same
11720     timestamp to mitigate time-skew problems (Denis Barbier).
11721     Closes: #105750
11722   * Strip any newlines from Uploaders field on dpkg-source -b.
11723     Closes: #254449
11725   [ Christian Perrier ]
11726   * Switch to po4a for manpages translation. Closes: #320122
11727     This adds a Build-Depends on po4a.
11728   * Add Vietnamese to po/LINGUAS as it was previously missing.
11729   * Updated translations:
11730     - Catalan (Jordi Mallach). Closes: #351587
11731     - French (Christian Perrier): 1011t.
11732     - Galician (Jacobo Tarrio): 1002t. Closes: #351795
11733     - Basque (Piarres Beobide): 1002t. Closes: #351845
11734     - Slovak (Peter Mann): 1002t. Closes: #352087, #352311
11735     - Vietnamese (Clytie Siddall): 1011t. Closes: #352307
11737  -- Frank Lichtenheld <djpig@debian.org>  Sun, 12 Feb 2006 02:32:12 +0100
11739 dpkg (1.13.13) unstable; urgency=low
11741   [ Frank Lichtenheld ]
11742   * dpkg and dselect are now in section admin, not section base.
11743     Correct info in the control file.
11744   * Bump Standards-Version to 3.6.2 (no changes).
11745   * Fix typo in dpkg-architecture man page. Closes: #334330
11746   * Honor LD_LIBRARY_PATH in dpkg-shlibdeps. Fixes a regression
11747     from 1.13.11 to .12.
11748   * Don't recurse into package directories to search for local
11749     shlibs files since it is obviously a waste of time. Based
11750     on a suggestion by Steve Langasek. Closes: #338725
11752   [ Christian Perrier ]
11753   * Updated translations:
11754     - Dutch (Bart Cornelis). Fix error mentioned in #323908 by
11755       Stephan Kramer.
11756     - Japanese (Kenshi Muto). Closes: #349808
11758   [ Guillem Jover ]
11759   * Fix typo in dpkg-statoverride manpage. Closes: #348113
11760     Thanks to Marc Haber <mh+debian-packages@zugschlus.de>.
11761   * Document the --no-debsig option in dpkg manpage. Closes: #316367
11762     Thanks to Bastian Kleineidam <calvin@debian.org>.
11763   * Fix typos in dselect manpage. Closes: #310358
11764     Thanks to A Costa <agcosta@gis.net>.
11765   * Fix typo in start-stop-daemon's help output. Closes: #333673
11766     Thanks to Christoph Maser <cm@financial.com>.
11767   * Document the correct format string for dpkg-query --showformat option.
11768     Update -l example and lower case the program name in the title header.
11769     Thanks to Zefram <zefram@fysh.org>. Closes: #174976
11770   * Make dpkg-architecture not print the warning about a mismatch between
11771     gcc target machine type and GNU target system type if the actions are
11772     '-e' or '-i'.
11774  -- Frank Lichtenheld <djpig@debian.org>  Sat, 28 Jan 2006 13:04:16 +0100
11776 dpkg (1.13.12) experimental; urgency=low
11778   * Due to the changes in dpkg-shlibdeps it is not recommended
11779     to use this version for building packages intended to be
11780     uploaded into an official archive, yet.
11782   [ Frank Lichtenheld ]
11783   * Update AUTHORS and debian/copyright for new maintainer team.
11785   * Don't use the ldd output in dpkg-shlibdeps. Search for the
11786     matching libraries ourself. This fixes problems with both
11787     symlinked directories, Closes: #103024, #145714, #164020, #285857
11788     and biarch builds. Closes: #317082
11789   * Let dpkg-gencontrol bail out with an error if parsedep
11790     found an error while parsing a dependency field. Closes: #228125
11791   * dpkg-source -x now tries to chown all files extracted from
11792     tar files. The temporary directory is now created with mode
11793     0700, too. Together this should make it safer to run
11794     dpkg-source -x as root. Based on suggestions by Marcus
11795     Brinkmann and Colin Watson. Closes: #144571, #238460
11796   * Let dpkg-source -b check the build relation fields before
11797     putting them into the .dsc. As a side effect they also
11798     get normalized. Closes: #254449
11799   * Check the gpg signatures of .dsc files before unpacking. See
11800     the upstream changelog for a full description of the semantics.
11801     Based on a patch by Matt Zimmerman. Closes: #48711
11802   * Let dpkg-source ensure (as good as possible) that all
11803     build source packages can also be unpacked.
11804     Closes: #6820, #7014
11805     Also fixed handling of md5sum -b output in dpkg-source on
11806     the way. Based on a patch by Ingo Saitz. Closes: #316123
11807   * Check for illegal architecture strings in dpkg-gencontrol and
11808     dpkg-source. dpkg-gencontrol will only issue a warning while
11809     dpkg-source will error out. Closes: #96920
11810   * Add support "package types" to dpkg-shlibdeps. Patch by Joey Hess.
11811     Closes: #335056, #345475
11812   * Fix man page references to dpkg and dselect man pages. Many
11813     of them still had a wrong section.
11814     Closes: #332826
11815   * Let dpkg-source -b warn about special permissions of files added
11816     in the diff since these will get lost. Closes: #306125
11817   * dpkg-source -x didn't work in case the upstream version or
11818     the Debian version ended with ~. Fixed.
11820   [ Christian Perrier ]
11821   * Updated translations:
11822     - French (Christian Perrier).
11823     - Polish (Bartosz Fenski). Closes: #314237
11824     - Norwegian Bokmal (Hans F. Nordhaug). Closes: #315548, #315990
11825     - Czech (Miroslav Kure). Closes: #323775, #345347
11826     - Russian (Yuri Kozlov). Closes: #323821, #335170
11827     - Japanese (Kenshi Muto). Closes: #323938
11828     - Brazilian Portuguese (Andre Luis Lopes). Closes: #325224, #332872
11829     - Russian (Yuri Kozlov). Closes: #335170, #349151
11830     - Swedish (Peter karlsson). Closes: #325990, #344058, #337164, #334063
11831     - Norwegian Nynorsk (Håvard Korsvoll). Closes: #315987
11832     - Portuguese (Miguel Figueiredo).
11833       Closes: #315461, #323674, #323642, #330021
11834     - Spanish (Javier Fernández-Sanguino Peña). Closes: #323662, #315253
11835     - Danish (Claus Hindsgaul). Closes: #348575, #323779, #337948, #325687
11836     - Dutch (Bart Cornelis). Closes: #323908
11837     - German (Michael Piefel). Closes: #323964
11838     - Italian (Stefano Canepa). Closes: #324114, #344671, #347225
11839     - Catalan (Jordi Mallach). Closes: #324456
11840     - Basque (Piarres Beobide). Closes: #342089, #332698
11841     - Tagalog (Eric Pareja). Closes: #337307
11842     - Simplified Chinese (Tchaikov). Closes: #338268
11843     - Galician (Jacobo Tarrío). Closes: #338904
11844     - Romanian (Eddy Petrişor). Closes: #340674
11845     - Vietnamese (Phan Vinh Thinh, Clytie Siddall).
11846     - Indonesian (Parlin Imanuel). Closes: #344513
11847     - Greek (Galaxico). Closes: #344646
11848     - Czech (Miroslav Kure). Closes: #345347
11849   * Fixed broken translation:
11850     - Brazilian Portuguese (James Troup). Closes: #332872
11851   * Fix Russian man page for start-stop-daemon(8)
11852     Closes: #325804
11853   * Fix German man page for update-alternatives(8)
11854     Closes: #329908
11855   * Fix typo in dpkg online help message. Unfuzzy translations
11856     Closes: #349299
11858   [ Guillem Jover ]
11859   * Add armeb to cputable. Closes: #331232
11860     Thanks to Lennert Buytenhek <buytenh+debian@wantstofly.org>.
11861   * Don't try to compile in SELinux support on GNU/kFreeBSD.  Closes: #313300
11862     Thanks to Aurelien Jarno <aurel32@debian.org>.
11863   * When linking statically, explicitly add libsepol, even if its only a
11864     transitive library. The proper fix should come with a pkg-config file.
11865     Based on a patch by Bart Martens <bart.martens@advalvas.be>.
11866     Closes: #347744, #348659
11867   * Add support for architecture wildcards, but for now they will only be
11868     exposed in debian/control files, not in binary nor source packages.
11869     Closes: #291939
11870   * Change start-stop-daemon's --exec option behavior on GNU/Linux to
11871     compare the filename pointed by '/proc/<pid>/exe' instead of the inode
11872     and device numbers. Thanks to Vasilis Vasaitis <v.vasaitis@sms.ed.ac.uk>.
11873     Closes: #337942
11875  -- Frank Lichtenheld <djpig@debian.org>  Tue, 24 Jan 2006 11:15:36 +0100
11877 dpkg (1.13.11.1) unstable; urgency=low
11879   * Change maintainers to new team.
11881  -- Scott James Remnant <scott@netsplit.com>  Thu, 12 Jan 2006 07:56:49 +0000
11883 dpkg (1.13.11) unstable; urgency=low
11885   The "Good, clean fun" Release.
11887   * Fixed the always broken error handling so that only the intended
11888     cleanup handlers are run, rather than ones that we didn't expect.
11889     This corrects the bug when a package's postrm fails and the package is
11890     left in an installed state with no files; the package will now be left
11891     in a half-installed state, as originally intended.  Found by Marga
11892     Manterola while documenting the maintainer scripts.  Closes: #296026.
11893   * Fixed removal of files involved in diversions during upgrade, caused by
11894     checking whether the "directory" was in use by another package without
11895     actually checking whether or not it was a directory.  Closes: #310390.
11896   * Fixed package saving to not disappear packages who divert anything from
11897     the installing package out of the way.  Closes: #113626.
11898   * Improved clean-up of unpack failure during install or upgrade, to leave
11899     the system in exactly the same state as it started in.
11900     Closes: #47404, #82407, #121173, #170869, #201848, #236733, #268639.
11901   * Fixed crash when unpacking a package which has an unversioned Replaces
11902     declared on it by another package previously unpacked in the same run
11903     (Colin Watson).  Closes: #322595.
11905   * New install unwinding fixed to ensure we don't leave a version in the
11906     status db for a not-installed package.
11907   * Corrected error call when encountering a corrupted filesystem tarfile
11908     to not print "Success".  Closes: #95570.
11909   * Fixed castration of potentially unsafe devices to not follow symlinks.
11910     Closes: #169928.
11911   * Marked log file descriptor as close-on-exec.  Closes: #320925.
11912   * Re-worked dpkg-source -x to allow all manner of strange things maintainers
11913     seem to do, unpacking isn't the right place to enforce sanity; we'll
11914     do it in -b later on >:-).  Closes: #316470, #317760, #318473, #318745,
11915     #322359, #322361, #322362.
11917   * Corrected dselect synopsis line to match consensus.  Closes: #318659.
11918   * Changed dpkg-name to use a shell redirect rather than the /dev/stderr
11919     device that may not be writable.  Closes: #318376.
11920   * Adjusted various dpkg-query options to avoid outputting a trailing
11921     newline.  Closes: #151651, #319781.
11922   * Changed references to "statusoverride" file to just "statoverride"
11923     to make it match reality.  Closes: #320952.
11924   * Fixed several bugs with the default diff ignore list used by dpkg-source.
11925   * Added ,,* to the list of default diff ignore list.  Closes: #322917.
11927   * Fixes to dpkg-dev (Frank Lichtenheld):
11928     - dpkg-checkbuilddeps will now exit with an error if it is unable to
11929       parse a dependency field.  Closes: #171762, #302229.
11930     - dpkg-genchanges will now output a warning if given -sd for a native
11931       package, as it's going to ignore it.  Closes: #5571.
11932     - dpkg-source fixed to give a more meaningful error message if given
11933       a directory as the first argument.  Closes: #306874.
11934     - dpkg-source fixed to handle being given an absolute path to -b.
11935       Closes: #147574.
11936     - Fix controllib.pl to allow whitespace before version operators.
11937       Closes: #273489, #310306.
11938     - Fix architecture dependency parsing that sometimes generated wrong
11939       list of requirements.  Closes: #319816.
11940     - Make the default control field name mangling behaviour "nicer" by
11941       upper-casing all letters that come after a dash.  Closes: #306474.
11942     - Ignore trailing newlines in single paragraph control files.
11943       Closes: #57194, #156319
11944   * Documentation:
11945     - Fixed typo in dpkg-architecture man page.  Closes: #317770.
11946     - Documented dpkg-deb -W/--show and --showformat.  Closes: #319784.
11948  -- Scott James Remnant <scott@netsplit.com>  Wed, 17 Aug 2005 04:44:44 +0100
11950 dpkg (1.13.10) unstable; urgency=low
11952   The "Bully's Special Prize" Release.
11954   * Removed /usr/sbin/start-stop-daemon.  Closes: #313400.
11955   * Fixed md5sum diversion removal.  Closes: #313415.
11956   * Fixed dpkg-source to handle native tarballs with a Debian revision.
11957     Closes: #313381, #313433.
11958   * Fixed upgrade from pre-sarge dpkg outside of dselect.  Closes: #314575.
11959   * Changed log times to be local rather than UTC.  Closes: #313347.
11960   * Changed log writing to be line-buffered.  Closes: #314550.
11961   * Moved log creation to postinst, and don't fail if base-passwd hasn't
11962     been configured yet.  Closes: #316084.
11963   * Don't try to compile in SELinux support on Hurd.  Closes: #313398.
11964   * Place code for SELinux support in the right place so it will actually
11965     get compiled in and used (Manoj Srivastava).  Closes: #314886.
11967   * Documentation:
11968     - Added missing word to dpkg-architecture manpage.  Closes: #313554.
11969     - Reference to dpkg manpage in dpkg.cfg corrected.  Closes: #314262.
11970   * Updated translations (Christian Perrier):
11971     - Basque (Piarres Beobide Egana).  Closes: #313474.
11972     - Catalan (Jordi Mallach).  Closes: #313288.
11973     - Czech (Miroslav Kure).  Closes: #314431.
11974     - Danish (Claus Hindsgaul).
11975     - French (Christian Perrier).
11976     - German (Jens Seidel).  Closes: #314125.
11977     - Greek (Greek team).  Closes: #314828.
11978     - Italian (Lele Gaifax).
11979     - Japanese (Kenshi Muto).  Closes: #313330.
11980     - Russian (Yuri Kozlov).  Closes: #313620.
11981   * Hebrew translation de-activated on request of the translator until there
11982     is better support for RTL languages.  Closes: #313282.
11984  -- Scott James Remnant <scott@netsplit.com>  Tue, 28 Jun 2005 14:19:06 +0100
11986 dpkg (1.13.9) unstable; urgency=low
11988   The "On like Donkey Kong" Release.
11990   * Only open the log file when we first need to write to it, this avoids
11991     the need to suppress errors when not root which fakeroot defeated anyway.
11992   * Stop dpkg-source clobbering an existing .orig directory during unpacking.
11993     Closes: #21236.
11994   * Allow an alternate output directory to be specified to dpkg-source by
11995     giving a second argument to -x.  Closes: #246802, #282323.
11996   * Added .arch-inventory to default diff ignore regexp.  Closes: #304297.
11998   SELinux support (Manoj Srivastava):
11999   * On SELinux-enabled systems, try to set the security context when the
12000     package is unpacked.  Closes: #193653, #249496, #307139.
12001   * Added build-dependency on libselinux1-dev.
12003   Improvements to dpkg-source (Brendan O'Dea):
12004   * Support unpacking of "Wig And Pen" (Format 2.0) source packages.
12005   * Multiple pristine upstream tarballs allowed.
12006   * Native and upstream tarballs may be bzip2-compressed instead of gzip,
12007     as may the debian diff or tarball.
12008   * Unsupported format error fixed to output the unsupported format
12009     rather than the supported one.  Closes: #156317.
12011  -- Scott James Remnant <scott@netsplit.com>  Sun, 12 Jun 2005 15:52:43 +0100
12013 dpkg (1.13.8) experimental; urgency=low
12015   The "In like Flynn" Release.
12017   * Linux 2.6.12 changed the behaviour of mmap to fail and set EINVAL when
12018     given a zero length, rather than returning NULL.  This is POSIXly
12019     correct, so handle zero-length package control files (like available).
12021  -- Scott James Remnant <scott@netsplit.com>  Fri, 10 Jun 2005 07:39:44 +0100
12023 dpkg (1.13.7) experimental; urgency=low
12025   The "Maidenhead Creeping Water Plant" Release.
12027   * Reduced inability to open a log file to a warning, suppressed for
12028     non-root operations.  Closes: #312383.
12030  -- Scott James Remnant <scott@netsplit.com>  Thu,  9 Jun 2005 06:12:56 +0100
12032 dpkg (1.13.6) experimental; urgency=low
12034   The "Just kidding about the God part" Release.
12036   * Fixed incorrect installation location of /etc/logrotate.d/dpkg caused
12037     by a mis-understanding of dh_install's abilities.
12039  -- Scott James Remnant <scott@netsplit.com>  Mon,  6 Jun 2005 05:58:36 +0100
12041 dpkg (1.13.5) experimental; urgency=low
12043   The "Flatulent Elm of West Ruislip" Release.
12045   * Actions and package states are now logged by default in the
12046     /var/log/dpkg.log file.  This file is rotated monthly and can be
12047     disabled by commenting the line in /etc/dpkg/dpkg.cfg.
12048   * User decisions about conffiles are now logged.
12049   * dpkg-source no longer complains about Enhances field.  Closes: #159642,
12050     #159745, #159746.
12051   * preinst no longer relies on procps being installed.  Closes: #311808.
12053   * Architecture Support:
12054     - Change DEB_*_GNU_CPU from i386 to i486, to reflect reality.
12055       DEB_*_ARCH_CPU remains at i386, you should be checking against that.
12056       Closes: #310394.
12057     - Fixed order ostable is read to prevent Linux becoming the Hurd.
12058       Closes: #309603.
12059   * Updated man page translations (Christian Perrier):
12060     - Syntax error corrected in Swedish man page for dpkg-deb.
12061       Closes: #300980.
12062     - Syntax error corrected in Spanish man page for dpkg-scanpackages.
12063       Closes: #300981
12065  -- Scott James Remnant <scott@netsplit.com>  Mon,  6 Jun 2005 05:34:21 +0100
12067 dpkg (1.13.4) experimental; urgency=low
12069   The "Or the Wabbit gets it" Release.
12071   * Add -L option to dpkg-architecture to list architecture strings
12072     we can accept.
12074  -- Scott James Remnant <scott@netsplit.com>  Tue, 29 Mar 2005 13:31:15 +0100
12076 dpkg (1.13.3) experimental; urgency=low
12078   The "Paying off Karma at a vastly accelerated rate" Release.
12080   * Missing newline added to warning output function.  Closes: #283798.
12081   * Fixed prototype warning in dpkg-scansources.  Closes: #213577, #219760,
12082     #267505.
12083   * Removed trailing line from debian origins file.  Closes: #264904.
12084   * Changed dpkg-buildpackage to say "source changed by" rather than
12085     "source maintainer is".  Closes: #247313.
12086   * Fixed dpkg-gencontrol to allow '-' in architecture names.  Closes: #274677.
12087   * Fixed "unknown information field" error to report field that it doesn't
12088     know about.  Closes: #275243.
12090   * Documentation:
12091     - Remove "medium-level" from description of dpkg.  Closes: #292454.
12092     - Harmonised argument names in update-alternatives(8).
12093       Closes: #267095, #284941
12094     - Documented what the '+' and '*' mean in update-alternatives --config
12095       output.  Closes: #270486.
12096     - Mention aptitude alongside dselect in 'dpkg --usage' and
12097       'dpkg-deb --help', fix quote style of mention in 'dpkg --help'.
12098       Closes: #274800, #278118.
12099     - Associate --truename with the description of what it does in
12100       dpkg-divert(8).  Closes: #277076.
12101     - Removed last remaining references to the packaging manual, replacing
12102       with better references.  Closes: #262775.
12103     - Documented format of file dpkg --set-selections takes.  Closes: #270043.
12105  -- Scott James Remnant <scott@netsplit.com>  Mon, 21 Mar 2005 03:10:27 +0000
12107 dpkg (1.13.2) experimental; urgency=low
12109   The "Mysteriously Unnamed" Release.
12111   * md5sum has been removed, the coreutils or textutils version will be
12112     diverted to /usr/bin/md5sum.  Closes: #6633, #136110.
12113     The following bugs are filed against the dpkg md5sum, so no longer apply.
12114     Closes: #95755, #193877, #223381, #264195, #270241, #286632,
12115   * Take Replaces into account when installing packages; don't issue a
12116     "trying to overwrite" error if the file that already exists is in
12117     a package that Replaces the one being installed.
12118     Closes: #164595, #184635, #277890.
12119   * Allow actions and status changes to be logged to a file.  Disabled by
12120     default, uncomment line in /etc/dpkg/dpkg.cfg to enable.
12121     Closes: #957, #53376, #77109, #143882, #284499.
12122   * Don't truncate output of 'dpkg -l' when stdout is not a tty.
12123     Closes: #92263, #253860, #258608, #261822, #282790.
12124   * Fix further compilation problems with gcc 4.0.  Closes: #299699
12125   * Handle tar files without trailing slash in directory names.
12126     Closes: #287152.
12127   * Output arguments to maintainer scripts with -D2.  Closes: #237684,
12128     #296030.
12130   * Architecture Support:
12131     - Added ppc64.  Closes: #263743.
12132     - Split archtable into cputable and ostable, archtable is retained
12133       for compatibility with other packages that might use it only.
12134     - dpkg-architecture no longer canonises -t argument.  Closes: #173205.
12135     - dpkg-architecture output includes new DEB_*_ARCH_OS and
12136       DEB_*_ARCH_CPU variables that contain the Debian system and CPU
12137       names respectively.
12138     - dpkg-architecture outputs (mostly) correct GNU system names now,
12139       in particular this means that it will output "linux-gnu" instead
12140       of "linux".  You should use the new _ARCH_OS variables instead.
12141   * Documentation:
12142     - Add examples to dpkg-divert(8).  Closes: #291816.
12143     - Correct typo in dpkg-architecture(1).  Closes: #299090.
12145  -- Scott James Remnant <scott@netsplit.com>  Fri, 18 Mar 2005 16:21:32 +0000
12147 dpkg (1.13.1) experimental; urgency=low
12149   The "Livin' like a good boy oughta" Release.
12151   * Removed dpkg --print-gnu-build-architecture option.  Use variables
12152     defined by dpkg-architecture instead.
12153   * Soft-deprecated dpkg --print-installation-architecture.  Use
12154     dpkg --print-architecture instead, which now does the same thing.
12155   * dpkg --print-architecture no longer calls c-compiler.  Closes: #164863.
12156   * Removed third field from /usr/share/dpkg/archtable.
12158   * Now we no-longer pre-depend on dselect, check the upgrade will work
12159     in preinst and give the user a chance to abort if they haven't yet
12160     installed dselect and need to.  Closes: #282335.
12161   * Fix handling of GNU longname and longlink when a tarfile entry has
12162     both.  Closes: #128388.
12163   * md5sum no longer outputs "-" when no argument is supplied.
12164     Closes: #164591, #164889.
12165   * Add darcs metadirectory to dpkg-source diff ignore list.  Closes: #289760.
12166   * Add new '-f' short option to dpkg-query as equivalent to --showformat.
12167     Closes: #281627.
12168   * Report conffile conflicts and per-package errors on the status-fd.
12169     Closes: #297880.
12170   * Correct typo in dpkg-architecture.  Closes: #282701.
12171   * Fix start-stop-daemon's support for GNU/kFreeBSD.  Closes: #258051.
12173   * Architecture Support:
12174     - Added kfreebsd-amd64.  Closes: #280963.
12175     - Added m32r.  Closes: #280710.
12176     - Clean up of archtable.  Closes: #118910, #286898.
12177     - Clean up of dpkg-architecture.  Closes: #256323.
12178   * Updated translations (Christian Perrier):
12179     - French (French Team).
12180     - Greek (Konstantinos Margaritis).  Closes: #295922.
12182  -- Scott James Remnant <scott@netsplit.com>  Thu,  3 Mar 2005 12:09:07 +0000
12184 dpkg (1.13.0) experimental; urgency=low
12186   The "Three banana strategy" Release.
12188   * Remove the /usr/info or /usr/info/dir symlinks we used to create.
12189     Closes: #206063, #288415.
12190   * Fix cast in lvalue assignment that gcc 4.0 doesn't like.
12191     Closes: #282669, #284797.
12192   * Correct bashism in disk method update script.  Closes: #260568.
12194   * Scorched-earth reimplementation of the build process and control files
12195     with debhelper and automake.  Closes: #200683, #217946, #229629, #260568,
12196     #266995, #279701, #283640, #292973, #293041.
12197   * Remove SGML and POD documentation formats due to both licensing and
12198     sanity issues.  Closes: #285806.
12199   * The dpkg-doc and dpkg-static packages are no more.
12200   * dpkg.cfg cleaned up to remove useless examples.
12201     Closes: #169618, #305192.
12203  -- Scott James Remnant <scott@netsplit.com>  Fri, 14 Jan 2005 19:28:00 +0000
12205 dpkg (1.10.28) unstable; urgency=low
12207   The "Awh, yeah?  Ripper!" Release.
12209   * New translations (Christian Perrier):
12210     - Romanian (Eddy Petrisor).  Closes: #309714.
12211     - Tagalog (Eric Pareja).  Closes: #296407.
12212   * Updated translations (Christian Perrier):
12213     - French (Christian Perrier).
12214     - Greek (Konstantinos Margaritis).  Closes: #295922
12215     - Indonesian (Arief S Fitrianto).  Closes: #296733
12216   * Updated man page translations (Christian Perrier):
12217     - French (Philippe Batailler).
12218     - Syntax error corrected in Brazilian Portuguese man page for
12219       update-alternatives.  Closes: #300646
12221  -- Scott James Remnant <scott@netsplit.com>  Thu, 26 May 2005 18:18:10 +0100
12223 dpkg (1.10.27) unstable; urgency=low
12225   The "Grab your gun and bring in the cat" Release.
12227   * New Translations (Christian Perrier):
12228     - Indonesian (Arief S Fitrianto).
12229     - Norwegian Bokmål (Bjorn Steensrud).
12230   * Updated Translations (Christian Perrier):
12231     - Dutch (confusing option corrected by Christian Perrier).
12232     - Galician (Jacobo Tarrio).
12233     - Korean (Seo Sanghyeon).
12234     - Simplified Chinese (Carlos Liu).
12235     - Traditional Chinese (Asho Yeh).
12237  -- Scott James Remnant <scott@netsplit.com>  Thu, 10 Feb 2005 15:10:22 +0000
12239 dpkg (1.10.26) unstable; urgency=low
12241   The "Captain Tight-Pants" Release.
12243   * Fix incorrect claim that 'Q' in dselect quits without saving changes
12244     (really 'X').
12245   * Revert to current 'stable' behaviour of Space/Enter/'Q' in the dselect
12246     help screen, Space leaves the help screen and Enter and 'Q' do nothing.
12247     It's dangerous to encourage users to press Enter or 'Q' since they
12248     commit changes in the package selection screen.
12250   * New Translations (Christian Perrier):
12251     - Basque (Piarres Beobide Egaña).  Closes: #281245.
12252       (Was really added in 1.10.24, but forgotten from ALL_LINGUAS.)
12253     - Bosnian (Safir Šećerović).
12254     - Slovak (benco).  Closes: #284896, #289341
12255     - Traditional Chinese (Asho Yeh).  Closes: #287375.
12256   * Updated Translations (Christian Perrier):
12257     - Brazilian Portuguese (André Luís Lopes).  Closes: #281228.
12258     - Catalan (Jordi Mallach).  Closes: #281333.
12259     - Czech (Miroslav Kure).  Closes: #281231.
12260     - Danish (Claus Hindsgaul).  Closes: #281103.
12261     - Dutch (Christian Perrier).  Closes: #282087.
12262     - Galician (Héctor Fernéndez López).
12263     - German (Michael Piefel).  Closes: #281503.
12264     - Italian (Stefano Canepa). Closes: #282543.
12265     - Japanese (Kenshi Muto).  Closes: #281144.
12266     - Korean (Changwoo Ryu).  Closes: #282246.
12267     - Norwegian Nynorsk (Håvard Korsvoll).  Closes: #281456.
12268     - Polish (Bartosz Feñski).
12269     - Portuguese (Miguel Figueiredo).  Closes: #281122, #289359.
12270     - Russian (Yuri Kozlov).  Closes: #281166.
12271     - Simplified Chinese (Tchaikov, Carlos Liu).
12272     - Spanish (Javier Fernández-Sanguino Peña).  Closes: #281117.
12273     - Swedish (Peter Karlsson).  Closes: #281165.
12275  -- Scott James Remnant <scott@netsplit.com>  Tue, 11 Jan 2005 16:26:51 +0000
12277 dpkg (1.10.25) unstable; urgency=low
12279   The "你他媽的天下所有的人都該死" Release.
12281   This release is to correct the mangled Simplified Chinese translation
12282   included in 1.10.24 caused by rebellion of the translator's mail client.
12284   * Updated Translations (Christian Perrier):
12285     - Dutch (Bart Cornelis).  Closes: #278700.
12286     - Polish (Bartosz Fenski).  Closes: #280406.
12287     - Simplified Chinese (Tchaikov, Carlos Liu).  Closes: #278676.
12289  -- Scott James Remnant <scott@netsplit.com>  Thu, 11 Nov 2004 20:06:57 +0000
12291 dpkg (1.10.24) unstable; urgency=low
12293   The "Donald, where's your troosers?" Release.
12295   * Add support for uncompressed data.tar archive members and bzip2-
12296     compressed data.tar.bz2 members of binary packages.  Closes: #34727.
12298   * New Translations (Christian Perrier):
12299     - Basque (Piarres Beobide).  Closes: #265491.
12300     - Greek (George Papamichelakis).  Closes: #260809.
12301     - Hebrew (Lior Kaplan).  Closes: #275267.
12302     - Simplified Chinese (Tchaikov, Carlos Liu).  Closes: #265197.
12303   * Updated Translations (Christian Perrier):
12304     - Brazilian Portuguese (Andre Luis Lopes).  Closes: #260964, #273947,
12305       #278063.
12306     - Czech (Miroslav Kure).  Closes: #255904, #278178.
12307     - Catalan (Jordi Mallach).  Closes: #278098.
12308     - Danish (Claus Hindsgaul).  Closes: #278097.
12309     - Dutch (Bart Cornelis).  Closes: #268271, #268886, #274366, #278061.
12310     - Galician (Hector Fernandez).
12311     - German (Michael Piefel).  Closes: #276462, #278168.
12312     - French (Christian Perrier).
12313     - Japanese (Kenshi Muto).  Closes: #272456, #278141.
12314     - Italian (Lele Gaifax).
12315     - Korean (Changwoo Ryu).  Closes: #261528, #278142.
12316     - Norwegian Nynorsk (Håvard Korsvoll).  Closes: #275387, #278286.
12317     - Polish (Bartosz Fenski).  Closes: #268452, #278064.
12318     - Portuguese (Miguel Figueiredo).  Closes: #268266, #261424, #261519,
12319       #278294.
12320     - Russian (Yuri Kozlov).  Closes: #268452, #278154.
12321     - Spanish (Javier Fernández-Sanguino Peña).  Closes: #277173, #278117.
12322     - Swedish (Peter Karlsson).
12323   * Updated Manpage Translations (Christian Perrier):
12324     - French (Philippe Batailler).  Closes: #268048.
12325     - Spanish (Ruben Porras).  Closes: #261807.
12326     - Swedish (Peter Karlsson).
12328  -- Scott James Remnant <scott@netsplit.com>  Wed, 27 Oct 2004 09:25:58 +0100
12330 dpkg (1.10.23) unstable; urgency=low
12332   The "Let the Wookie win" Release.
12334   * Updated hurd start-stop-daemon support.  Closes: #133640, #254180.
12335   * Removed usage of non-POSIX test options.  Closes: #256302.
12337   * Architecture Support:
12338     - Renamed x86-64 to amd64.  Closes: #252346, #254598.
12339   * Documentation:
12340     - Correct typo in dpkg-divert(8).  Closes: #254175.
12341   * New Translations:
12342     - Korean (Changwoo Ryu).  Closes: #254590.
12343   * Updated Translations:
12344     - Catalan (Jordi Mallach).
12345     - Danish (Claus Hindsgaul).  Closes: #252407.
12346     - French (Christian Perrier).  Closes: #252586.
12347     - Italian (Lele Gaifax).
12348     - Polish (Bartosz Fenski).  Closes: #254209.
12349     - Spanish manpages (Ruben Porras).  Closes: #246158, #246159, #246160,
12350       #246161, #246162, #246163, #246164.
12352  -- Scott James Remnant <scott@netsplit.com>  Mon, 19 Jul 2004 19:52:14 +0100
12354 dpkg (1.10.22) unstable; urgency=low
12356   The DebConf4 Release.
12358   This release is mostly intended to mop up the minor and trivial bug
12359   fixes in the list and clear out the documentation changes.  As such,
12360   it should be treated with even more suspicion than is normal.
12362   * Use colouring to break cycles earlier to avoid long loops whilst
12363     installing or configuring packages.  Closes: #232445, #246857.
12364   * Don't try to configure packages that disappeared in the same
12365     run.  Closes: #202997.
12366   * Fix segfault when "gcc -dumpmachine" returns a non-matching triplet.
12367     Closes: #211850.
12368   * Remove restriction that package names be at least two characters long.
12369     Closes: #237734.
12370   * Fix dpkg-source (actually controllib.pl) to output the field name
12371     properly again.  Closes: #226931, #246595.
12372   * Make dpkg-scanpackages output Origin and Bugs fields with proper
12373     casing.  Closes: #154422.
12374   * Add support for DOS line-endings to md5sum.  Closes: #246103.
12375   * Fix start-stop-daemon segfault on Hurd.  Closes: #133640.
12376   * Allow dpkg-shlibdeps to run as non-root users.  Closes: #96881.
12377   * Correct various compiler warnings.  Closes: #229766.
12379   * Architecture Support:
12380     - Added x86-64 (x86_64 / amd64).  Closes: #238483, #241938.
12381     - Added i?86-gnu (Hurd).  Closes: #216695, #236331.
12382     - Added i386-kfreebsd-gnu and i386-knetbsd-gnu.  Closes: #250176.
12383   * Packaging:
12384     - Create $(docdir) even when --without-sgml-doc is passed so the
12385       ChangeLog can be installed.  Closes: #137719.
12386     - Stop hardcoding the list of manual page languages in debian/rules,
12387       so we include Spanish, Russian and Brazilian Portuguese.  Closes: #245994.
12388     - Quote LDFLAGS in debian/rules to allow multiple options.
12389       Closes: #230242.
12390   * Documentation:
12391     - Move dpkg-scanpackages and dpkg-scansources to section 1 as they
12392       are user tools.  Closes: #114946.
12393     - Correct hyphen characters in manpages.  Closes: #212284, #247086, #226800.
12394     - Remove obsolete references to the Debian Packaging Manual.
12395       Closes: #122910, #140695.
12396     - Correct 'n' and 'p' key descriptions in dselect help message.
12397       Closes: #120562.
12398     - Add --force-bad-verify to dpkg manpage.  Closes: #192812.
12399     - Correct dpkg manpage to refer to --force-remove-reinstreq instead of
12400       non-existent --force-reinstreq option.  Closes: #232831.
12401     - Correct documentation of --compare-versions arguments.  Closes: #232317.
12402     - Correct usage of "et al" to "et al.".  Closes: #230751.
12403     - Add dpkg-reconfigure(8) to SEE ALSO section of dpkg(8).  Closes: #233282.
12404     - Suggest packages that provide additional functionality in the dpkg
12405       manpage.  Closes: #81355.
12406     - Suggest dselect update in description of dpkg --update-avail.
12407       Closes: #206163.
12408     - Suggest aptitude as well as dselect.  Closes: #217042.
12409     - Suggest fakeroot for dpkg-source -r.  Closes: #175897.
12410     - Correct documentation of start-stop-daemon.  Closes: #41554, #211856.
12411     - Correct documentation of start-stop-daemon manpage to refer to --retry
12412       alongside --stop.  Closes: #204691.
12413     - Add note that start-stop-daemon will chdir("/") unless -d is specified.
12414       Closes: #217823, #218060.
12415     - Correct documentation of dpkg-query --list.  Closes: #232639.
12416     - Correct invalid use of &quot; within update-alternatives(8) with .BR.
12417       Closes: #244624.
12418     - Rewrite description of dpkg-source -i to indicate the intent of the
12419       default setting rather than the exact exclusions.  Closes: #227169.
12420     - Correct documentation of dpkg-statoverride --update.  Closes: #85079.
12421     - Correct documentation of update-alternatives --install.  Closes: #179648.
12422     - Documented dpkg:Version and dpkg:UpstreamVersion substvars.
12423       Closes: #85815, #85818.
12424     - Fix spelling error in utils/md5sum.1.  Closes: #250281.
12425     - Replace "&c." with the slightly clearer "etc.".  Closes: #235773.
12426     - Correct various typos.  Closes: #219623, #221235.
12427   * Updated Translations:
12428     - Catalan (Jordi Mallach).
12429     - French (Christian Perrier).  Closes: #246359.
12430     - Italian (Lele Gaifax).
12431     - Japanese manpages (KISE Hiroshi).  Closes: #248483.
12432     - Russian (Nikolai Prokoschenko).  Closes: #249254.
12433     - Spanish manpages (Ruben Porras).  Closes: #246158, #246159, #246160,
12434       #246161, #246162, #246163, #251830.
12435   * New Translations:
12436     - German start-stop-daemon and update-alternatives manpages
12437       (Helge Kreutzmann).  Closes: #247116, #249454.
12438     - Spanish dpkg-scansources manpage (Ruben Porras).  Closes: #246164.
12440  -- Scott James Remnant <scott@netsplit.com>  Tue,  1 Jun 2004 18:21:40 -0300
12442 dpkg (1.10.21) unstable; urgency=low
12444   * Fix incorrect linked list node removal code that caused every second
12445     shared or diverted conffile to be deleted by dpkg.
12446     Closes: #10879, #33046, #47267, #90623, #98210, #109691, #146167.
12447     Closes: #155456, #204275.
12448   * Call mknod with the required device type.  Closes: #158916.
12449   * Correct the default query output format to be consistent with
12450     what the underlying library expects.  Closes: #174973.
12451   * Fix missing NULL-termination in dpkg-query -W display of dependency
12452     fields.  Closes: #174978
12453   * Strip output from md5sum(1) after the first whitespace character.
12454     Closes: #200763.
12455   * Output a warning if we cannot open a configuration file instead of
12456     treating it as a fatal error, in case our home directory is not readable
12457     by root.  Closes: #200701.
12458   * Set LC_ALL to C before spawning off dpkg --search, to avoid searching
12459     on localized strings.  Closes: #244316.
12460   * Don't require argument for start-stop-daemon -V.  Closes: #237589.
12461   * Correct use of @ARGV within dpkg-scanpackages, allowing -u to work
12462     once again.  Closes: #225086, #241503.
12463   * Make sure file permissions passed to dpkg-statoverride are numeric.
12464     Closes: #161156.
12465   * Correctly break out of the loop in install-info.
12466     Closes: #124225, #160761.
12467   * Add --dir-file option to install-info for GNU install-info
12468     compatibility.  Closes: #179192
12469   * Refer to debian-policy in dpkg-doc's description instead of the
12470     non-existent packaging-manual.  Closes: #120970.
12471   * Remove incorrect mention of build-essential from dpkg-checkbuilddeps
12472     manpage.  Closes: #219210.
12473   * Add a note about diverting shared libraries to the dpkg-divert
12474     manpage.  Closes: #214699.
12475   * Updated Translations:
12476     - Brazilian Portuguese (Andre Luis Lopes).  Closes: #237864.
12477     - Catalan (Jordi Mallach).
12478     - Danish (Claus Hindsgaul).  Closes: #237624.
12479     - Dutch (Pieter-Paul Spiertz, Bart Cornelis, Erwin).
12480       Closes: #102094, #151799, #207758.
12481     - French (Sam Hocevar).  Closes: #243191.
12482     - German (Florian Ernst).  Closes: #109669, #115352, #187952, #244098.
12483     - Japanese manpages (KISE Hiroshi).  Closes: #220776.
12484     - Polish (Bartosz Fenski).  Closes: #242870.
12485     - Spanish (Javier Fernández-Sanguino Peña).  Closes: #166052.
12486     - Swedish (Peter Karlsson).
12487   * New Translations:
12488     - Japanese dpkg-source manpage (KISE Hiroshi).  Closes: #239000.
12489     - Norwegian Nynorsk (Gaute Hvoslef Kvalnes).  Closes: #233614.
12490     - Portuguese (Miguel Figueiredo).  Closes: #240081.
12491     - Spanish dpkg-source manpage (Ruben Porras).  Closes: #171489.
12493  -- Scott James Remnant <scott@netsplit.com>  Sun, 25 Apr 2004 18:55:10 +0100
12495 dpkg (1.10.20) unstable; urgency=high
12497   * Update Japanese translation.  Closes: #224616
12498   * Update French translation.  Closes: #218713
12499   * Fix spelling error in German md5sum man page.  Closes: #230750
12500   * Fix typo in pt_BR po file.  Closes: #192102
12501   * Revert fix for #232916, this turns out to be a bug in the pgpgp
12502     wrapper, dpkg worked fine with pgp itself.
12504  -- Scott James Remnant <scott@netsplit.com>  Thu, 11 Mar 2004 11:24:54 +0000
12506 dpkg (1.10.19) unstable; urgency=high
12508   * Distinguish unmet build dependencies from build conflicts.
12509     Closes: #217943, #235266.
12510   * Force NULL-termination of all tar file entry names.  Closes: #232025.
12511   * Allow dselect to use the full window width.  Closes: #139781.
12512   * Pass correct number of arguments for format string when out of disk
12513     space.  Closes: #213038, #217286, #213543, #213846.
12514   * Remove duplicated entries from ChangeLog.  Closes: #157437.
12515   * Fix dpkg-buildpackage when used with PGP.  Closes: #232916.
12516   * Update support for Debian FreeBSD.  Closes: #211566.
12517   * Store Architecture in the status file.  Closes: #228253.
12518   * Don't print offending lines in md5sum.  Closes: #170953.
12519   * Check bounds of md5sum lines.  Closes: #168443, #199489, #199693.
12521  -- Scott James Remnant <scott@netsplit.com>  Mon,  8 Mar 2004 19:05:32 +0000
12523 dpkg (1.10.18.1) unstable; urgency=medium
12525   * Non-maintainer upload to fix release-critical bugs.
12526   * Terminate string buffer in main/remove.c.  Closes: #228379.
12527   * Prevent stashing of hardlinked devices and setuid or setgid binaries
12528     by removing permissions on upgrade as well as on remove.
12529     Closes: #225692.
12530   * Update dpkg conflicts to << 1.10, instead of 1.9.
12531     Closes: #190611, #221989, #222760.
12533  -- Scott James Remnant <scott@netsplit.com>  Thu, 26 Feb 2004 01:17:27 +0000
12535 dpkg (1.10.18) unstable; urgency=medium
12537   * Rebuild, tagging and releasing correctly from cvs this time.
12539  -- Adam Heath <doogie@debian.org>  Mon, 27 Oct 2003 13:39:56 -0600
12541 dpkg (1.10.17) unstable; urgency=medium
12543   * Make dselect do conflict resolution when dealing with automatically
12544     selected recommended package. Thanks to Colin Watson for the analysis
12545     and patch. Closes: Bug#151663
12546   * Branden Robinson <branden@debian.org>:
12547     s/dpkg-checkbuild/dpkg-checkbuilddeps/ in usage.
12548   * dpkg-checkbuilddeps now sets $reduce_arch.  Closes: #212796.
12549   * Goswin Brederlow <brederlo@informatik.uni-tuebingen.de>:
12550     Add -u in dpkg-scanpackages.  Closes: #214123.
12551     Add -a<arch> command to dpkg-scanpackages.
12552   * Add .#* to dpkg-source's default ignore filter.  Closes: #217380.
12553   * Matthias Urlichs <smurf@smurf.noris.de>:
12554     Don't assume /usr/info/dir exists if /usr/info does.  Closes: #165770.
12555   * Jordi Mallach <jordi@debian.org>:
12556     Update Catalan translation.
12557   * Fix errors with dependency fields that reference ${dpkg:Version}.
12558     Closes: #213108.
12560  -- Adam Heath <doogie@debian.org>  Mon, 27 Oct 2003 13:04:57 -0600
12562 dpkg (1.10.16) unstable; urgency=low
12564   * Almost *EVERY* damn file was including config.h in the wrong spot.
12565     After making it the first include, then off_t/size_t/etc could actually
12566     be redefined to be 64-bit compatible.
12567   * Jordi Mallach <jordi@debian.org>:
12568     Fix configure to set HAVE_SETLOCALE.  Closes: #211816
12569   * "Loïc Le Loarer" <lll_deb@m4x.org>:
12570     Add a -d|--chdir option to start-stop-daemon.  Closes: #151802
12571   * Split the background block into 2 parts: one that does the fork, and
12572     opens /dev/tty and /dev/null, and one that does everything else.  The
12573     second block is then moved to be run right before the exec.  This
12574     allows error messages to be seen from the child(previously, they were
12575     lost), and allows for the chroot to not require the device files.
12576     These changes based on the bugs filed by:
12577     Marc Herbert <Marc.Herbert@ens-lyon.fr>: Closes: #155219
12578     Loïc Le Loarer <lll_deb@m4x.org>: Closes: #151800
12579   * Mario Lang <mlang@debian.org>:
12580     When --start, --startas and --pidfile are given, print 'process'
12581     instead of '(null)' for the process name, if it's already running.
12582     Closes: #209355
12583   * Imported several translated manpages, from debian-doc cvs:
12584     * Spanish: 822-date.1 cleanup-info.8 deb-control.5 deb-old.5
12585       deb.5 dpkg-checkbuilddeps.1 dpkg-deb.1 dpkg-divert.8 dpkg-name.1
12586       dpkg-scanpackages.8 dpkg-split.8 dpkg-statoverride.8 dpkg.8
12587       dselect.8 md5sum.1 start-stop-daemon.8 update-alternatives.8
12588       "Esteban Manchado Velázquez" <zoso@debian.org>: Closes: #171489
12589     * French: deb.5
12590       Julien Louis <arthur51@ifrance.com>: Closes: #164906
12591     * Portuguese: dpkg.8 dselect.8
12592   * Matt Zimmerman <mdz@debian.org>
12593     In dpkg's manpage, -O had an inverted word.  Closes: #111711
12594   * Marcin Owsiany <porridge@debian.org>:
12595     Fix Polish translation of 'conflicts with'  Closes: #112057
12596   * Jiri Masik <masik@darbujan.fzu.cz>:
12597     Improve Czech translation of: "dpkg - warning: ignoring request to
12598     remove %s which isn't installed."  Closes: #117518
12599   * Marco Nenciarini <mnencia@prato.linux.it>:
12600     Fix missing space in Italian translation when listing files, and the
12601     file is diverted.  Closes: #138244
12602   * Piotr Roszatycki <Piotr_Roszatycki@netia.net.pl>:
12603     Update Polish translation.  Closes: #142370
12604   * Martin Quinson <mquinson@ens-lyon.fr>:
12605     Fix missing space in French translation of: "%s - warning: downgrading
12606     %.250s from %.250s to %.250s.\n"  Closes: #149142
12607   * Hidetaka Iwai <tyuyu@sings.jp>:
12608     Fix typo in Japanese translation of dpkg --force-help; downgrade ->
12609     downgrade:  Closes: #157819
12610   * Martin Quinson <mquinson@ens-lyon.fr>:
12611     Fix French translation when listing files, and the file is diverted.
12612     Closes: #162154
12613   * Rune Schjellerup <olberd@odense.kollegienet.dk>:
12614     Fix Danish translation of(was missing the leading space): " does not
12615     appear to be available\n"  Closes: #192972
12616   * Fix md5sum when handling large files.  Closes: #162691
12617   * Fix dpkg-checkbuilddeps calling of parsedep.  It wasn't setting
12618     use_arch.  Closes: #212796.
12619   * Joey Hess <joeyh@debian.org>:
12620     Change formatting of info.dir.  Closes: #167379.
12622  -- Adam Heath <doogie@debian.org>  Sat, 25 Oct 2003 15:46:16 -0500
12624 dpkg (1.10.15) unstable; urgency=low
12626   * Fix detection of va_copy.
12627   * Back out debian/rules build-arch detection.  It is *not* possible *at
12628     all* to detect available targets in a rules file.  Period.
12630  -- Adam Heath <doogie@debian.org>  Fri, 19 Sep 2003 20:02:19 -0500
12632 dpkg (1.10.14) unstable; urgency=low
12634   * controllib.pl:
12635     * Rewrote the parsedep stuff, so that it wasn't done during control
12636       file parsing.  Scripts that need the internal parsed format should
12637       call parsedep on the field's value.
12638     * Split the substvars parsing into a separate function.
12639     * No longer validate dependency fields when reading the control file.
12640       Some fields may have vars in them, which breaks the validation.
12641     * dpkg-gencontrol calls substvars after parsing the control file, and
12642       then validates the substituted depends lines.  Originally,
12643       substitution occurred only during writing of the final output file.
12644     * Andreas Barth <aba@not.so.argh.org>:
12645       Fix bad regex that didn't allow spaces in dependency field parsing.
12646       It now directly matches what the c code expects.  It previously was
12647       allowing all of \S, which matched on '('.
12648       Closes: #211660.
12649   * Remove stale debug in debian/control that would have broken
12650     installation on s390.
12651   * We were calling our own local copy of dpkg-gencontrol, but the
12652     system-installed copy of dpkg-shlibdeps.  Now, both are called from
12653     the build directory.
12655  -- Adam Heath <doogie@debian.org>  Fri, 19 Sep 2003 12:29:34 -0500
12657 dpkg (1.10.13) unstable; urgency=low
12659   * Fix parsing of deps when both () and [] are specified.
12660   * Set $host_arch in controllib.pl:parsedep.
12661   * dpkg-checkbuilddeps doesn't output the [] stuff when finding invalid
12662     deps.
12664  -- Adam Heath <doogie@debian.org>  Wed, 17 Sep 2003 13:23:15 -0500
12666 dpkg (1.10.12) unstable; urgency=low
12668   * Fix dpkg-source output of build-depends lines.
12670  -- Adam Heath <doogie@debian.org>  Tue, 16 Sep 2003 13:43:45 -0500
12672 dpkg (1.10.11) unstable; urgency=low
12674   * dpkg no longer provides any BYHAND files.  If you need the source
12675     tarball, use the orig.tar.gz file available in the pool.  The
12676     precompiled tars were hold-overs from when debs were not standard
12677     ar/tar files.
12678   * Install /usr/share/doc/dpkg/pseudo-tags, which talks about the bug
12679     titling we use to mark bugs for filtering in the Debian bts.
12680   * Updated ca.po.
12681   * Teach dpkg-source that ~ is legal in version numbers
12682   * Add build-depends on sgml-base, and increase gettext build-depends to
12683     0.12.1-3.
12684   * Updated config.sub and config.guess in cvs.
12685   * Change use of strncpy in parsedb to memcpy.  Closes: #160447
12686   * No longer generate helpmsgs.{cc,h}.
12687   * several controllib changes:
12688     * Moved dependency parsing logic from dpkg-checkbuilddeps.
12689       The dpkg-checkbuilddeps parser didn't support empty fields, while
12690       the controllib parser did.
12691     * All dependency fields parsed by controllib.pl support [arch]
12692       specifiers.  If the arch specifier doesn't apply for the current
12693       arch, then the item will not be added to the internal list structure.
12694     * Comment lines(that begin with '#') are removed during parsing.
12695     * Store the original casing of field names, for use in error reporting.
12696     * Store the original field's casing with 'o:' prepended in %fi.
12697       * ballombe@merulo.debian.org:
12698         dpkg-checkbuilddeps now handles empty fields.  Closes: #111562
12699       * Branden Robinson <branden@debian.org>:
12700         support comments(first char on line begins with '#') in
12701         debian/control.  Closes: #191810
12702       * Bastian Blank <waldi@debian.org>:
12703         Allow for per-arch generated dependency fields.  Closes: #170575
12704       * Branden Robinson <branden@debian.org>:
12705         Report the original casing of field names when they are unknown.
12706         Closes: #177753
12707   * Patch dpkg-buildpackage to call debian/rules -qn build-arch, and if
12708     it's available, modify -B handling appropriately.  If build-arch is not
12709     available, then when -B was called, do *not* pass -B on to
12710     dpkg-checkbuilddeps.  Closes: #203097
12711   * Frank Lichtenheld <frank@lichtenheld.de>:
12712     Apply patch, to handle missing infodir.bak, and empty files.  Closes:
12713     #196361
12714   * Change standard_startup and standard_shutdown into macros.  Closes:
12715     #200351.
12716   * Andrew Suffield <asuffield@debian.org>:
12717     Fix inverted test of eof in parsedb, while looking for eof after
12718     field name.  Closes: #198218
12719   * Yann Dirson <dirson@debian.org>
12720     Add set -e to dpkg-doc.postinst.  Closes: #191261
12721   * Michael Weber <michaelw@debian.org>:
12722     dpkg --print-architecture now does gcc -dumpmachine instead of
12723     --print-libgcc-file-name.  Closes: #131893, #8241, #106793, #210285
12724   * Daniel Silverstone <dsilvers@digital-scurf.org>:
12725     Apply patch to change hashing function, and increase bin size, for
12726     the package database.  Closes: #206416
12727   * Paul Eggert <eggert@CS.UCLA.EDU>:
12728     Apply patch to make dpkg work with POSIX 1003.1-2001.  Closes:
12729     #204894
12730   * Joey Hess <joeyh@debian.org>:
12731     Fix "stripping trailing /" message from dpkg-statoverride.  Closes:
12732     #203782
12733   * Sami Liedes <sliedes@cc.hut.fi>:
12734     Increase filesdb bin size, and alter hashing function.  Closes:
12735     #179385
12736   * Anthony Towns <aj@azure.humbug.org.au>:
12737     Retry removing empty dirs during purge.  Closes: #112386
12738   * Darren Salt <linux@youmustbejoking.demon.co.uk>:
12739     Add .cvsignore to dpkg-source's default diff ignore regex.  Also fix
12740     missing \ escape for .deps.  Closes: #174013
12741   * Koblinger Egmont <egmont@uhulinux.hu>:
12742     Fix segfault with --status-fd.  Closes: #173618
12743   * Colin Watson <cjwatson@debian.org>,
12744     Andrew Suffield <asuffield@debian.org>:
12745     Add .svn, {arch}, and .arch-ids to dpkg-source -i default regex.
12746     Closes: #169359
12747   * Falk Hueffner <falk@debian.org>:
12748     Added alphaev68-linux-gnu to archtable.  Closes: #199360
12749   * Elie Rosenblum <fnord@debian.org>:
12750     Apply patch to support OpenBSD.  Closes: #154277
12751   * Geoff Richards <qef@laxan.com>:
12752     Add --config to action section, and add as EXAMPLES section.  Closes:
12753     #208014, #115759
12754   * Yann Dirson <dirson@debian.org>:
12755     install-info --version and --help now display on stdout.  Closes:
12756     #154633
12757   * Dan Jacobson <jidanni@dman.ddts.net>:
12758     Mention what dpkg and dpkg-query -S will not find.  Closes: #153096
12759   * Sebastian Leske <sleske@enterprise.mathematik.uni-essen.de>:
12760     Mention in dpkg(8) that downgrading a package can have serious
12761     consequences.  Closes: #61156
12762   * Dan Jacobson <jidanni@dman.ddts.net>:
12763     In dpkg-scanpackages(8), including small note that other tools might
12764     use the generated Packages file.  Closes: #208894
12765   * Warren Turkal <wturkal@cbu.edu>:
12766     Fix some typos in dpkg-source(1).  Closes: #207259, #204123, #167426
12767   * Dan Jacobson <jidanni@dman.ddts.net>:
12768     Alter text in dselect(8), implying that other interfaces are available
12769     for installing packages.  Closes: #206164.
12770   * Daniel Bonniot <bonniot@users.sourceforge.net>:
12771     Note in start-stop-daemon(8) that --nicelevel takes an argument.
12772   * Ruben Porras <nahoo82@telefonica.net>:
12773     Remove duplicate 'can' in deb-control(5).  Closes: #183840
12774   * Dan Jacobson <jidanni@dman.ddts.net>:
12775     Fix short description in dpkg-scansources(8).  Closes: #175770
12776   * Zefram <zefram@fysh.org>:
12777     In dpkg(8), move dpkg-query options to their own subsection, like
12778     dpkg-deb.  Closes: #174971
12779   * Thomas Hood <jdthood@yahoo.co.uk>
12780     Add --dry-run and --simulate as synonyms to --no-act.  Closes:
12781     #165099
12782   * Junichi Uekawa <dancer@netfort.gr.jp>:
12783     Fix wrong reference to DEB_BUILD_GNU_SYSTEM on --host in
12784     dpkg-architecture(1).  Closes: #163621
12785   * Michael Klein <michael.klein@puffin.lb.shuttle.de>:
12786     s/Usuaully/Usually/ in deb-control.5.  Closes: #161819
12787   * Joey Hess <joeyh@debian.org>:
12788     Removed reference in dselect(8) about recommends not being handled
12789     well.  Closes: #157973
12790   * Andrew Suffield <aps100@doc.ic.ac.uk>:
12791     s/dpkg-source/dpkg-parsechangelog/ in dpkg-parsechangelog -h.
12792     Closes: #155822
12793   * Matej Vela <vela@debian.org>:
12794     Unhighlight "May be repeated multiple times." in dpkg-source(1).
12795     Closes: #151845
12796   * Jordi Mallach <jordi@debian.org>:
12797     Make all actions in dpkg-deb -h lower case.  Closes: #150642
12798   * Alexander Hvostov <root@aoi.dyndns.org>:
12799     Add -g|--group to start-stop-daemon, and document properly.  Closes:
12800     #127342
12801   * Szerb Tamas <toma@mlf.linux.rulez.org>:
12802     s/THANKS/THANKS.gz/ in dpkg(8).  Closes: #91348
12803   * "James R. Van Zandt" <jrv@vanzandt-pc.mitre.org>:
12804     In dpkg(8), mention running dselect, install after --set-selections.
12805     Closes: #175236
12806   * Yann Dirson <dirson@debian.org>:
12807     Remove disabled --command-fd from help.  Closes: #169619
12808   * Tobias Burnus <tburnus@physik.fu-berlin.de>:
12809     Apply patch to update-alternatives that provides --set and --remove-all
12810     commands.  Closes: #133745.
12811   * Osamu Aoki <debian@aokiconsulting.com>:
12812     Add --all to update-alternatives, that calls --config on all
12813     alternatives.  Closes: #126621
12814   * Dan Jacobson <jidanni@jidanni.org>:
12815     Alter --config prompt, to be more clear, that one must 'press' enter to
12816     accept the default.  Closes: #203557
12817   * Peter Moulder <pmoulder@bowman.csse.monash.edu.au>:
12818     Fix some -w issues in update-alternatives.  Closes: #137313
12819   * Eduard Bloch <edi@gmx.de>:
12820     Apply patch to check whether the target path exists on removing.
12821     Closes: #37254
12822   * Colin Walters <walters@debian.org>:
12823     After opening files, set binmode.  Closes: #175363
12825  -- Adam Heath <doogie@debian.org>  Tue, 16 Sep 2003 12:52:11 -0500
12827 dpkg (1.10.10) unstable; urgency=low
12829   * Update archtable for hurd.  Closes: #187509.
12830   * Make the dpkg-iasearch conflicts versioned.  Closes: #170698.
12831   * Surround sed call with '' in Makefile.in.  Closes: #187534.
12832   * Strip trailing / from the file args in dpkg-statoverride.  Closes:
12833     #184239.
12834   * Modified to use autotools-dev.  Closes: #179656.
12835   * Add netbsd support.  Closes: #179658, #179659.
12836   * Support hyphenated values in dpkg-architecture. Closes: #179661
12837   * No longer managed the /usr/doc symlinks.
12839  -- Adam Heath <doogie@debian.org>  Sat, 26 Apr 2003 15:10:24 -0500
12841 dpkg (1.10.9) unstable; urgency=low
12843   * Fix dereference in main/help.c:cu_closefd(), which was the cause of
12844     close(random number) on most arches, but close(0) on s390x.
12845   * Add s390x to archtable.  Closes: #160976.
12847  -- Adam Heath <doogie@debian.org>  Sun, 15 Sep 2002 13:21:38 -0500
12849 dpkg (1.10.8) unstable; urgency=low
12851   * Make the multiline regex have an upper bound, instead of being
12852     unbounded, as newer perls have a larger stack frame, which cause them
12853     to segfault quicker with larger inputs.  Closes: #159756.
12855  -- Adam Heath <doogie@debian.org>  Thu,  5 Sep 2002 16:32:01 -0500
12857 dpkg (1.10.7) unstable; urgency=low
12859   * Fix double free in modstatdb_init, in the case that modstatdb_shutdown
12860     was called previously.  Closes: #159515.
12862  -- Adam Heath <doogie@debian.org>  Tue,  3 Sep 2002 18:59:19 -0500
12864 dpkg (1.10.6) unstable; urgency=low
12866   * Don't call nffreeall, in any of the c/c++ programs.  It appears dselect
12867     slightly corrupts it's memory enough that it can't be freed without
12868     segfaulting.  Closes: #159023.
12870  -- Adam Heath <doogie@debian.org>  Sun,  1 Sep 2002 00:19:18 -0500
12872 dpkg (1.10.5) unstable; urgency=low
12874   * Fix segfault in md5sum if the file being checked doesn't exist.
12875     Closes: #154503.
12876   * Fix extraction of md5sum in dpkg-scanpackages.  Closes: #153769.
12877   * Handle directories better in md5sum.  Closes: #157453.
12878   * Fix read past buffer in lib/nfmalloc.c.  Closes: #157304.
12879   * Fix several read pass buffer bugs, and a memleak.  Closes: #155362.
12880   * Fix segfault when --auto-deconfigure is given.  Closes: #157762.
12881   * Allow spaces between the end of a version, and the trailing ')'.
12882     Closes: #154898.
12883   * Fixes for HURD:  Closes: #156545
12884     * Add i386-gnu0.3 to archtable.
12885     * Fix handling of static compiles, with regard to zlib.
12886   * Previous install-infos(before 1.10) handled multiple dir file entries,
12887     because they would copy the entire stanza unmodified.  The newest
12888     version does not do this, as it reformats the options, and thereby
12889     only takes the first line.  So, we now split all the lines from the
12890     stanza, and process them all.  Closes: #147492.
12891   * Fix corruption of available file, caused by use of memory that was
12892     previously freed.  Closes: #154257.
12893   * Fix several minor memleaks.
12894   * Remove /usr/sbin/start-stop-daemon.  Closes: #156437.
12896  -- Adam Heath <doogie@debian.org>  Thu, 29 Aug 2002 16:43:15 -0500
12898 dpkg (1.10.4) unstable; urgency=low
12900   * Remove -ffunction-sections and -fdata-sections.  Closes: #152130.
12901   * Install archtable into /usr/share/dpkg/.
12903  -- Adam Heath <doogie@debian.org>  Sun, 14 Jul 2002 15:17:56 -0500
12905 dpkg (1.10.3) unstable; urgency=low
12907   * Move dselect.cfg to dselect package. Closes: Bug#152132
12908   * Install methods into /usr/lib/dpkg/methods, not /usr/lib/dpkg.  Closes:
12909     #152161.
12910   * Fix test inversion in start-stop-daemon, when checking the pid given in
12911     a pid file.  Thanks Thomas Morin <thomas.morin@enst-bretagne.fr>.
12912     Closes: #152270.
12913   * If in --test mode, and --stop is given, increment n_killed, so that
12914     start-stop-daemon returns the proper exit value.  Thanks Thomas Morin
12915     <thomas.morin@enst-bretagne.fr>.  Closes: #151992.
12917  -- Adam Heath <doogie@debian.org>  Thu, 11 Jul 2002 22:58:43 -0500
12919 dpkg (1.10.2) unstable; urgency=low
12921   * Make configuration files in $HOME work again
12922   * dpkg + dpkg-static conflict with dpkg-dev << 1.9, to fix md5sum error
12923     in dpkg-source.  Closes: #151691.
12924   * Remove -Z from patch call, in dpkg-source, as it makes patch warn about
12925     missing timestamps.  Closes: #151965
12926   * Install debian/dselect.conffiles.
12928  -- Adam Heath <doogie@debian.org>  Thu,  4 Jul 2002 21:08:09 -0500
12930 dpkg (1.10.1) unstable; urgency=low
12932   * Add conflict with dpkg-iasearch which intruded on our namespace.
12933   * Replace manpages-de which includes one of our manpages.  Closes: #151485
12934   * Don't always call autoheader when building. Closes: #151471
12935   * Fix double conflict in dpkg. Closes: Bug#151581
12936   * Move dselect methods to dselect package.
12937   * dpkg-checkbuilddeps no longer checks for build-essential. dpkg should
12938     not hardcode Debian policy.
12939   * Make dpkg-genchanges accept ~ as part of a package filename.
12940     Closes: Bug#150739
12941   * Move dpkg.cfg and dselect.cfg manpages into dpkg package. Closes: Bug#132901
12943  -- Wichert Akkerman <wakkerma@debian.org>  Tue,  2 Jul 2002 12:34:07 +0200
12945 dpkg (1.10) unstable; urgency=low
12947   * dpkg now reorders symlinks when extracting debs.  However, this is also
12948     still done when building debs.  After a stable release of Debian has
12949     occurred with this modified dpkg, the reordering when building can be
12950     removed.
12951   * Fixed upper/lowercase problems with package names. Closes: Bug#58091
12952     (and 3 others).
12953   * Add Russian manual pages
12954   * Fix n in dselect package list (performs searchagain now)
12955   * Fix layout problem in dpkg-divert manpage. Closes: Bug#103667
12956   * When a package is set to hold, and a reinstallation is requested,
12957     -E will not properly skip it.  Closes: #45787.
12958   * Make dpkg-checkbuilddeps use dpkg-architecture. Closes: Bug#104230
12959   * Improve dpkg-architecture documentation. Closes: Bug#104232
12960   * Update German translation. Closes: Bug#97239
12961   * Update Polish translation. Closes: Bug#115783
12962   * Update French translation.
12963   * Update Brazilian translation.
12964   * Update Danish translation.
12965   * Update Galician translation.
12966   * Update Portuguese translations.
12967   * Add Catalan translation
12968   * Add German md5sum manpage
12969   * Add Brazilian update-alternatives manpage. Closes: Bug#122132
12970   * Improve dselect manpage. Closes: Bug#103839
12971   * dpkg-name(1) no longer mentions the non-existing dpkg(5) manpage.
12972     Closes: Bug#104214
12973   * Improve handling of Recommends and Suggests in dselect. Closes: Bug#34942
12974   * Add per-user configuration files. Closes: Bug#103845
12975   * Split dselect into its own package. dpkg Pre-Depends on it
12976     to make sure no weird things happen during an upgrade but this
12977     will allow us to make dselect option at some point in the future.
12978     Closes: #114249.
12979   * Make colours in dselect user-configurable. Closes: Bug#103994
12980   * Make Q do an abort in the method selection menu to make things more
12981     consistent with the package list
12982   * Fix test for nice(2) failure in start-stop-daemon. Closes: Bug#104561
12983   * Improve the dselect helpscreen a bit. Closes: Bug#72634
12984   * New version comparison routine that can handle arbitrarily large numbers
12985     and accepts `~' as a low-sorting character. Closes: Bug#93386
12986   * dselect now accepts regular expressions when searching for packages
12987     and can search in package descriptions as well.
12988     Closes: Bug#81009,#83139
12989   * Move query commands into a separate dpkg-query command. For the old options
12990     (-L,-l,-s,-S) dpkg will still call it for you.
12991   * Add configurable package listing support to dpkg-query
12992   * Handle window resize in dselect main menu. Closes: Bug#98275
12993   * update-rc.d moved to the sysvinit package. Closes: Bug#108887,#109282
12994   * Add --showformat and --show options to dpkg-deb and dpkg-query to
12995     allow one to customize the output format
12996   * several install-info cleanups:
12997     * Move /usr/info/dir to /usr/share/info/dir.  Closes: #67174.
12998     * If /usr/share/info doesn't exist, print a message saying so,
12999       instead of the confusing "couldn't lock" error.  Closes: #2531.
13000     * If /usr/share/info/dir doesn't exist, or is empty, try to copy the
13001       backup from /var/backups/infodir.bak.  Closes: #121309.
13002     * Add a --remove-exactly option, and allow for relative filenames.
13003       Closes: #92650.
13004     * Use the section from the .info file if --section is not given.
13005       Closes: #76100.
13006     * Error messages now include the filename being processed.
13007       Closes: #66735
13008     * /usr/share/info/dir now has it's entries formatted to even widths.
13009       Closes: #11228
13010     * --calign|--align|--maxwidth are now ignored.
13011   * strip enoent as well. Closes: Bug#112378
13012   * Fix format error in Dutch translation. Closes: Bug#113120
13013   * When parsing stdin, md5sum now displays '-' as the filename, to match
13014     textutils md5sum.  Closes: #121489.
13015   * Apply patch from bug, to give update-alternatives a --list command.
13016     Closes: #120924.
13017   * Make dpkg-checkbuilddeps always check for build-essential.
13018     Closes: Bug#118420.
13019   * Use space separated output instead of comma separated in
13020     dpkg-checkbuilddeps
13021   * Update default ignore expression in dpkg-source to also match *~ and
13022     *.swp in subdirs. Closes: Bug#127458
13023   * Handle errors when verifying md5sums. Closes: Bug#102367
13024   * dpkg-source now uses reliable timestamps for changed files.
13025     Closes: Bug#105750
13026   * Fix typo in start-stop-daemon help message. Closes: Bug#131439
13027   * update-alternative exits with a non-zero exit code when displaying
13028     a non-existing alternative. Closes: Bug#131496
13029   * Use gzip -c in install-info. Closes: Bug#131758
13030   * start-stop-daemon works on HP-UX now. Closes: Bug#130130
13031   * Fix dselect spin when run without input. Closes: Bug#132476
13032   * Update-alternatives now correctly restores an alternative to auto mode
13033     when removing a manually selected alternative. Closes: Bug#132632
13034   * Copy bugs and origin information into status file. Closes: Bug#132714
13035   * Improve wording of update-alternatives --config text. Closes: Bug#133035
13036   * Add manpages for dpkg.cfg and dselect.cfg. Closes: Bug#132901
13037   * Improve test for illegal packagename for dpkg-gencontrol -p option
13038   * Fix segfault when getenv("PATH") returns null.  Closes: Bug#136349
13039   * Add Large File Summit extensions. Closes: Bug#130509
13040   * Fix typo in dpkg-source manpage. Closes: Bug#141906
13041   * Re-fix handling of multiple blank lines in control. Closes: Bug#143117
13042   * Document --force-confmiss and --force-bad-verify. Closes: Bug#146855
13043   * Drop upgrade compat stuff in dpkg postinst for ancient versions (over
13044     5 years old)
13045   * Always set CLOEXEC on the lock fd.  Closes: Bug#147872
13046   * Clean up tmp files when ctrl-c is sent to dpkg-source.  Closes:
13047     Bug#58653.
13048   * dpkg-source no longer requires exact case matches for fields in
13049     debian/control.  Closes: Bug#139159.
13050   * dpkg-scanpackages now gives proper case for Source and Installed-Size.
13051     Closes: Bug#119532.
13052   * dpkg-architecture: s/build on/built on/; same for 'build for'.
13053     Closes: Bug#140441.
13054   * cl-debian.pl now recognizes emergency as valid in changelogs.
13055     Closes: Bug#138013.
13056   * Properly count recursive expansion of variables, instead of just
13057     counting all variable expansions.  Closes: #144121.
13058   * Add -I<filename> to dpkg-buildpackage and dpkg-source, to excludes
13059     files from tar, when building a native package.  Closes: Bug#75947.
13060   * Close the old debian/files file, before doing a rename.  Closes:
13061     Bug#111503.
13062   * Fix documentation of -v<version> for dpkg-parsechangelog, removing the
13063     requirement that the version has to be in the changelog.  Closes:
13064     Bug#117968.
13065   * Fix typo in dpkg-source(1), for '-sU'.  Closes: Bug#126340.
13066   * Add dpkg-scansources to dpkg-scanpackages(8).  Closes: Bug#147924.
13067   * Change /usr/info into a symlink to /usr/share/info if possible
13069  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 21 Jun 2002 21:53:15 +0200
13071 dpkg (1.9.21) unstable; urgency=low
13073   * Fix corrupt Swedish translations that would some error messages display
13074     incorrectly.
13075   * Enable --force-overwrite by default in /etc/dpkg/dpkg.cfg
13076   * dpkg.cfg is now no longer a conffile. This means the installer can
13077     change defaults depending on how an install is done
13078   * Detect truncated debs, and abort the unpack.  Closes: #138569.
13079   * Improve dpkg(8) --force documentation
13080   * Fix error in Russian dselect translation
13082  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 16 May 2002 19:42:29 +0200
13084 dpkg (1.9.20) unstable; urgency=medium
13086   * Fix assertion when --auto-deconfigure is set.  Closes: #137765.
13087   * Fix segfault discovered by fixing the above.
13088   * Fix segfault when getenv("PATH") returns null.  Closes: #136349
13089   * Recompiled against updated zlib, to fix possible security issue.  Also
13090     bumped build-depends to match.  Closes: #137931(grave)
13092  -- Adam Heath <doogie@debian.org>  Sun, 17 Mar 2002 02:52:44 -0600
13094 dpkg (1.9.19) unstable; urgency=medium
13096   * install-info continues to read all data from a pipe, until EOF.
13097     Closes: #99816(grave).
13098   * Add Catalan translation
13099   * Update Danish translation. Closes: Bug#131869
13100   * Update French translation.
13101   * update-alternative exits with a non-zero exit code when displaying
13102     a non-existing alternative. Closes: Bug#131496
13103   * Changed Maintainer to debian-dpkg@lists.
13104   * Fix "Up to date installed packages" for polish translation.  Closes:
13105     #116398.
13106   * Swap updated/up-to-date polish translations(they were reversed).
13107     Closes: #117583, #102961.
13108   * Mark /etc/alternatives/README as a conffile.
13109   * Strip .note, .comment, and /usr/lib/dpkg/enoent.
13110   * Make dpkg-gencontrol not warn about Uploaders.  Closes: #111090.
13112  -- Adam Heath <doogie@debian.org>  Sat,  2 Feb 2002 11:47:34 -0600
13114 dpkg (1.9.18) unstable; urgency=low
13116   * Fix MD5Sum corruption when upgrading a package.  Closes: Bug#113961.
13117   * Add Wichert and I to debian/control:Uploaders.
13119  -- Adam Heath <doogie@debian.org>  Sat,  3 Nov 2001 00:31:00 -0600
13121 dpkg (1.9.17) unstable; urgency=low
13123   * updated-rc.d moved to the sysvinit package. Closes: Bug#108887,#109282
13125  -- Wichert Akkerman <wakkerma@debian.org>  Wed, 22 Aug 2001 01:24:52 +0200
13127 dpkg (1.9.16) unstable; urgency=low
13129   * Revert architecture-change to dpkg-source from 1.9.11, see ChangeLog
13130     for details.
13132  -- Wichert Akkerman <wakkerma@debian.org>  Thu,  5 Jul 2001 22:42:11 +0200
13134 dpkg (1.9.15) unstable; urgency=low
13136   * Change policy of handling dscformat in dpkg-source
13137   * Fix the arglist construction for maintainer scripts
13138   * Revert dscformat to 1.0 since older dpkg-source versions do not have
13139     the new policy. In the future (starting at format 2.0 to maintain
13140     compatibility with old dpkg-source implementations) minor changes to
13141     the dscformat have to be fully backward and forward compatible.
13143  -- Wichert Akkerman <wakkerma@debian.org>  Sat, 30 Jun 2001 16:41:43 +0200
13145 dpkg (1.9.14) unstable; urgency=low
13147   * Make the Uploaders field in a .dsc file optional.
13148   * Disabled sanity checking of source packages.
13150  -- Adam Heath <doogie@debian.org>  Mon, 25 Jun 2001 02:22:40 -0500
13152 dpkg (1.9.13) unstable; urgency=medium
13154   * Add a -W option to dpkg-source(and the other utils, where it is just
13155     passed thru), to turn certain errors into warnings(of which, only
13156     one is changed, namely, the 'tar doesn't contain preceding directory'
13157     error).  Closes: #101813, and partially 101845.
13158   * Don't error out if the files in the tar have leading './', for
13159     dpkg-source.  (another partial close of 101845).
13160   * Handle the case where a single directory exists in the orig.tar.gz, but
13161     it is NOT of the form <pkg>-<ver>.  Closes: #101845.
13162   * Set LC_ALL in dpkg-source when we call external programs when we are
13163     going to parse their output.  Another bug from 101845.
13164   * Handle stating of truncated cpio filenames(100 char limit, bah), in
13165     dpkg-source.  Another bug from 101845.
13166   * Add support for an Uploaders field, which is read from the first
13167     paragraph of debian/control, and propagated to the .dsc.  This lists
13168     the people allowed to upload a package.  If it is not set, then the
13169     value of the Maintainer is placed into this field of the .dsc.  This
13170     bumps the .dsc format to 1.1.  Closes: #101815.
13171   * Handle symlinks in the tarball, and don't error out if found.
13172   * in controllib, make warnerrors default to warnings.  Affects
13173     dpkg-source.  This will be changed to be errors in the future.
13175  -- Adam Heath <doogie@debian.org>  Sun, 24 Jun 2001 13:48:52 -0500
13177 dpkg (1.9.12) unstable; urgency=medium
13179   * Fix do_script() bug. Closes: Bug#101552
13180   * Fix building and extracting of certain kinds of source packages.
13181     Closes: #101684.
13182   * Added Colin Watson to THANKS.
13184  -- Adam Heath <doogie@debian.org>  Wed, 20 Jun 2001 18:27:03 -0500
13186 dpkg (1.9.11) unstable; urgency=low
13188   * The "Hang on to your hats, it gets bumpy from here." release.
13189   * Trim trailing spaces from package names when checking builddeps.
13190     Closes: #101304.
13191   * Apply patch from bug to fix logic error that kept everything but
13192     Build-Deps from working in checkbuilddeps.  Closes: #101511.
13193   * Apply patch to correctly check the output of gcc on hurd, for
13194     dpkg-architecture. Closes: #99874.
13195   * The internal pod docs in dpkg-architecture were updated to reflect
13196     that -f was no longer implied when -q was given, but the build system
13197     wasn't generating new documentation.  Closes: #100997.
13198   * deb(5) now has a see-also for deb-old(5).  Closes: #99620.
13199   * Fix dpkg-shlibdeps infinite directory recursion thru symlinks.
13200     Closes: #97622.
13201   * Set the Architecture to 'source' only when doing source only uploads
13202     in the generated changes files.  Closes: #100144.
13203   * Document -nc in the dpkg-buildpackage manpage.  Closes: #101038.
13204   * Make dpkg-source work with GNU md5sum.  Closes: #97666.
13205   * in dpkg-source, when both arch: all and arch: <arch> packages exist in
13206     debian/control, don't promote the source arch: to any, but only list
13207     all and <arch>.  Closes: #94608
13208   * Apply patch from Colin Watson:  Closes: #89679
13209     * Reset SIGPIPE to DEFAULT when forking gzip.
13210     * set LANG to C before execing cpio, as we parse its output.
13211     * In checktarcpio() and checktarsane(), use the previously open pipes,
13212       instead of the opening files on disk(which was the old, ancient way).
13213     * Improve the output parsing of tar in checktarsane().
13214   * warn instead of die when find returns an error(which happens if there
13215     is a dangling symlink, because we use -follow).  Closes: #51479.
13216   * Change list of allowed urgencies in debian/changelog to: low, medium,
13217     high, and critical.  Closes: #94475.
13218   * Error out if an illegal package name is used in dpkg-gencontrol.pl.
13219     Closes: #61211
13220   * Apply patch from Marcus Brinkmann to dpkg-buildpackage:  Closes:
13221     #98201.
13222     * Option -a implies option -d.
13223     * Set ARCH correctly to host architecture, rather than build arch.
13225  -- Adam Heath <doogie@debian.org>  Tue, 19 Jun 2001 22:15:25 -0500
13227 dpkg (1.9.10) unstable; urgency=low
13229   * Fix [arch] parsing, and handle extra spaces better.  Closes: #100512,
13230     #101031.
13231   * Apply patch from bug, to fix cleanup of dpkg-divert temp files.
13232     Closes: #100474.
13233   * Swap j/k keys on the main menu, so they function like the package
13234     selection screen(and like vi).  Closes: #100502.
13235   * Multiple fixes in bug: Closes: #99892.
13236     * s/DEAD_JOE/DEADJOE/ in dpkg-source.
13237     * Switch to auto mode if alternative symlink is missing.
13238   * Update Spanish translation
13240  -- Adam Heath <doogie@debian.org>  Sat, 16 Jun 2001 14:57:45 -0500
13242 dpkg (1.9.9) unstable; urgency=low
13244   * The leading and trailing spaces patch in the last upload had some
13245     issues with trailing spaces.  This fixes them.  No bug to close, as the
13246     bts is still down.
13248  -- Adam Heath <doogie@debian.org>  Wed,  6 Jun 2001 22:36:57 -0500
13250 dpkg (1.9.8) unstable; urgency=low
13252   * Remove leading and trailing spaces from versions, and check for
13253     embedded spaces, inside dpkg.  Closes: #99186.
13254   * Handle varied use of spaces in dpkg-checkbuilddeps.  Closes: #98899.
13255   * Reset SIGPIPE back to default, in dpkg-source.  Closes: #98563.
13256   * Remove bogus $! check from dpkg-architecture.  Closes: #99428.
13258  -- Adam Heath <doogie@debian.org>  Sat,  2 Jun 2001 15:15:04 -0500
13260 dpkg (1.9.7) unstable; urgency=low
13262   * If a new file doesn't exist on disk, but is a going to be installed as
13263     a directory, then don't error out.  Closes: Bug#17381.
13264   * Update japanese manpages.  Closes: Bug#97831.
13265   * Update it.po.  Closes: Bug#98273.
13266   * Fix bad cleanup in dpkg-divert.  Closes: Bug#98578,#98828,#98831.
13268  -- Adam Heath <doogie@debian.org>  Mon, 28 May 2001 18:59:03 -0500
13270 dpkg (1.9.4) unstable; urgency=low
13272   * Oops.  EOF_mmap incorrectly detecting the end of the data block.
13273     Closes: Bug#95981.
13274   * After fixing the above bug, and using debootstrap to build a sid
13275     chroot, I discovered that my previous dependency cycle fix could cause
13276     segfaults in some situations.
13278  -- Adam Heath <doogie@debian.org>  Tue,  1 May 2001 23:04:46 -0500
13280 dpkg (1.9.3) unstable; urgency=low
13282   * Fix compiles on ppc. Closes: Bug#95918.
13284  -- Adam Heath <doogie@debian.org>  Tue,  1 May 2001 00:29:45 -0500
13286 dpkg (1.9.2) unstable; urgency=low
13288   * Recompile, to fix incorrect path 1.9.1/dpkg-divert. Closes: Bug#95845
13290  -- Adam Heath <doogie@debian.org>  Mon, 30 Apr 2001 14:21:28 -0400
13292 dpkg (1.9.1) unstable; urgency=low
13294   * Fix segfault with empty status and available, and when missing a
13295     trailing new line.  Closes: Bug#95496
13296   * Make dpkg-shlibdeps not care if dpkg --search return with an error.
13297     Closes: Bug#95568
13298   * Fix corruption of user-defined fields in status and available.
13299     Closes: Bug#95567.
13300   * Changed dpkg.cfg to include no-debsig by default, as no debs are
13301     currently signed, and we get false errors when debsig-verify is
13302     installed.  This will be removed in the future, when the archive tools
13303     support package signatures.  Closes: Bug#95573
13304   * dpkg-buildpackage should only check for valid signinterface if the
13305     user specifies one. Closes: Bug#95598
13306   * Fix removing of diversions.  Closes: Bug#95655
13307   * Fix md5sum -c. Closes: Bug#95586
13309  -- Adam Heath <doogie@debian.org>  Sat, 28 Apr 2001 16:28:21 -0500
13311 dpkg (1.9.0) unstable; urgency=low
13313   * Things should mostly work OpenBSD 2.8 as well now
13314   * Added a --status-pipe option.
13315   * Fixed several memleaks.
13316   * Profiled dpkg.
13317     * Reworked lib/parse.c:parsedb().  Instead of using getc(), then
13318       calling varbufaddc(), it now reads the entire file at once into a
13319       huge buffer, then moves pointers around, to do the parsing.  This
13320       gave a speedup of 33% on a dual celeron 333, when reading status and
13321       available.
13322     * various other speedups.
13323   * Removed all --smallmem code, as smallmem and largemem now actually
13324     use about the same amount of memory, and largemem is faster.  Both
13325     --largemem and --smallmem are now obsolete options, and will print
13326     a warning if used. Closes: Bug#84905, #67528
13327   * Initialize uninitialized variables.  This should solve several
13328     segfaults. Closes: Bug#25317(plus 9 others, thru the beauty of
13329     merges)
13330   * Found that when working with dependency cycles, and part of the cycle
13331     was a provide, the provider was not being considered, so the cycle
13332     could not be broken. Closes: Bug#87985(and 3 others)
13333   * Update German translation, Closes: Bug#80529,#80532,#87581
13334   * Update French translation, Closes: Bug#65284,#85035,#87238
13335   * Update Japanese translation, Closes: Bug#93873
13336   * Updated all other translations (but no bugs filed)
13337   * Add Danish translation
13338   * Remove spurious '%s' in Polish translation, Closes: Bug#74814
13339   * Add French manpages, courtesy of Philippe Batailler
13340   * Ignore vim swapfiles in dpkg-source, Closes: Bug#81630
13341   * remove --import option from dpkg-statoverride, Closes: Bug#81358
13342   * Replace nfmalloc implementation with obstack. Added obstack.[ch] to
13343     optlib, for non-GNU systems.
13344   * dpkg-divert only allows absolute filenames now. Closes: Bug#82419
13345   * Handle diffs from non-existing files to existing files. Closes: Bug#82708,
13346     #90982.
13347   * Small fixes to the buildsystem. Closes: Bug#84361
13348   * Fix dpkg-statoverride --update for things other then plain files.
13349     Closes: Bug#84449
13350   * Fix race with source directory disappearing in dpkg-source.
13351     Closes: Bug#45511
13352   * Fix manpage for dpkg-gencontrol. Closes: Bug#84625
13353   * Add -n option for dpkg-gencontrol to specify a filename. Closes: Bug#75796
13354   * Use POSIX glob instead of regexp in debian/rules. Closes: Bug#83042,
13355     #84582
13356   * fix typo in usage message for dpkg-divert, Closes: Bug#85977
13357   * Use full path for argv[0] when calling scripts. Closes: Bug#68783
13358   * Add ia64 support to dpkg-architecture.
13359   * Minor script changes, Closes: Bug#87485
13360   * Stop dpkg-genchanges from complaining about missing packages
13361     when doing a source-only build. Closes: Bug#87571,#15644,#25496
13362   * Various dpkg-architecture cleanups. Closes: Bug#87505
13363   * Modify dpkg-architecture to handle gcc versions containing letters.
13364     Closes: Bug#83083
13365   * dpkg-buildpackage updates: Closes: Bug#87572,#85847
13366     + make -C work properly
13367     + fix test for gpg secret keyring
13368     + improve source messages
13369     + skip signing pause when building unsigned packages
13370     + test for invalid signinterface. Closes: Bug#87579
13371     + remove debsign support, it's useless and doesn't work
13372     + Use correct architecture when naming .changes file. Closes: Bug#88015
13373   * Fix wording in dpkg-statoverride manpage for --add. Closes: Bug#85080
13374   * Fix typo in start-stop-daemon manpage. Closes: Bug#88225
13375   * Add dpkg-checkbuilddeps to check if build dependencies are satisfied
13376     and modify dpkg-buildpackage to call it if wanted.
13377     Closes: Bug#86453,#83812,#60717,#74372,#67896,#60717,#13961
13378   * dpkg-parsechangelog can read a changelog from stdin now. Closes: Bug#80142
13379   * Fix confusing wording for dpkg-buildpackage -uc option in manpage.
13380     Closes: Bug#83468
13381   * dpkg-statoverride now exits with exitcode 1 if we do a --list but don't
13382     output anything. Closes: Bug#84328
13383   * Remove Linux reference from all scripts, they should run fine on
13384     other OSes as well.
13385   * Mark last argument in dpkg-scanpackages usage info as optional.
13386     Closes: Bug#86658
13387   * Fix cache in dpkg-scanpackages version comparison. Closes: Bug#90722
13388   * Fix formatting error in dpkg-source.1. Closes: Bug#82723
13389   * Change dpkg-gencontrol to fix comma-related syntax errors after
13390     processing substvars. Closes: Bug#92908
13391   * Verify package signatures if debsig-verify is installed. Closes: Bug#37017
13392   * Handle window resize in dselect main menu. Closes: Bug#93559
13393   * Initialize all parts of the package record.  This should fix several
13394     segfaults people have been seeing in dpkg.  Closes: Bug#90328.
13395   * Apply patch from bug#86847, that escapes intl chars in filenames.
13396     Closes: Bug#83752, #85040, #86847, #89000.
13397   * Errors during dpkg -s(and other similar commands) are now printed
13398     on stderr.  Closes: Bug#88987.
13399   * Add a --retry option to start-stop-daemon. Closes: Bug#75139
13400   * Fix regeps to extract Closes magic from a changelog so the #
13401     is really optional. Closes: Bug#94474
13402   * Remove useless statement from dpkg-shlibdeps. Closes: Bug#90516
13403   * Make the debian changelog parser identify itself with $progname.
13404     Closes: Bug#89409
13405   * Give a syntax error when we get an unexpected PGP signature in control
13406     files. Closes: Bug#75562
13407   * Change dpkg manpage to reflect that --force-statoverride is no enabled
13408     by default. Closes: Bug#95023
13409   * Handle dangling symlinks, by ignoring error code 1 from find, when
13410     processing --recursive. Closes: Bug#4784
13411   * dpkg -L, -S, -l, -s, and -p now return an error code if any package
13412     does not exist. Closes: Bug#4974, #72406
13413   * dselect has a configuration file as well now
13414   * Get ENOENT value at runtime in dpkg-divert instead of hardcoding it.
13415     Closes: Bug# 31620
13416   * Fix wrong ENOENT test in dpkg-divert. Closes: Bug#95088
13417   * Add support for more SuperH variants (sh[34]{,eb}-linux-gnu)
13418   * Fix formatting and a typo in the dpkg manpage
13419   * Document the dpkg.cfg configuration file in dpkg(8)
13421  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 26 Apr 2001 12:39:16 +0200
13423 dpkg (1.8.3.1) unstable; urgency=low
13425   * Revert change to nfmalloc.c that was causing SIGBUS on sparc.
13427  -- Ben Collins <bcollins@debian.org>  Sat, 13 Jan 2001 08:52:11 -0500
13429 dpkg (1.8.3) unstable; urgency=low
13431   * Do chown before chmod in dpkg-statoverride, Closes: Bug#81943
13432   * Fix recursion in dpkg-shlibdeps, Closes: Bug#81322
13433   * Really completely revert dpkg-source patches which broke backwards
13434     compatibility
13436  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 12 Jan 2001 00:02:22 -0800
13438 dpkg (1.8.2) unstable; urgency=low
13440   * Don't attempt to read from an input source when we only want 0 bytes.
13441     Also handle buggy systems that return EAGAIN instead of EINTR.  Closes:
13442     #81881.
13444  -- Adam Heath <doogie@debian.org>  Thu, 11 Jan 2001 00:43:50 -0600
13446 dpkg (1.8.1.1) unstable; urgency=low
13448   * Apply patch from bug to fix badly generated diffs(in some
13449     circumstances).  Closes: #81152
13451  -- Adam Heath <doogie@debian.org>  Sat,  6 Jan 2001 16:07:33 -0600
13453 dpkg (1.8.1) unstable; urgency=low
13455   * Make --name a valid option.  Closes: #31206, #51953.
13456   * dpkg-deb -I <pkg> <control> works again
13457   * Update Swedish translation
13459  -- Wichert Akkerman <wakkerma@debian.org>  Thu,  4 Jan 2001 19:31:13 +0100
13461 dpkg (1.8.0) unstable; urgency=low
13463   * Add -k|--symlink option to dpkg-name.  Closes: #35040
13464   * Made the accelerator keys in dselect's main menu separate options, so
13465     that they can be translated separately.  Closes: #50955.
13466   * Added depends on sysvinit (>= 2.72), so that we can make sure that
13467     /etc/rcS.d exists.  Closes: #55037.
13468   * update-rc.d: Changed documentation and help, as -f only applies during
13469     remove.  Closes: #55049.
13470   * Added a --force-all option.  Closes: #61354.
13471   * Format help string for --abort-after like other option help strings.
13472     Closes: #62464.
13473   * Fix dselect methods to pass admindir to dpkg from dselect.
13474   * Minor tweak so that when patch 2.5.4 is manually used to apply a diff,
13475     it doesn't get applied multiple times.  Closes: #65021
13476   * Add --nicelevel to start-stop-daemon, to alter a programs priority
13477     before starting.  Closes: #65191.
13478   * Document that --largemem is the default, and that the test point is
13479     24 megs.  Closes: #65607.
13480   * Document that --set-selections does not actually install any
13481     packages.  Closes: #65340.
13482   * Fix typo in dpkg-deb.1.  Closes: #65945.
13483   * Add --truename option to dpkg-divert.  Closes: #68489.
13484   * Documented COLUMNS in dpkg(8).  Closes: #77001.
13485   * Modified DPKG_C_GCC_TRY_WARNS() to call AC_SUBST, so that we can
13486     use the result of the test during build time.  Closes: Bug#75138
13487   * Added description for "suggests" in main/depcon.c:describedepcon().
13488     Closes: Bug#74113
13489   * Removed bashing from dpkg.postinst.
13490   * Make '#' optional in Closes: tags.  Closes: Bug#63137.
13491   * Add -t to -h output in dpkg-buildpackage:  Closes: Bug#49598.
13492   * Fix typo in --compare-versions error message.  Closes: Bug#66474.
13493   * -R doesn't mean --root.  Closes: Bug#66068, #72013
13494   * Add armv3l to archtable.  Closes: Bug#72125
13495   * Fix two memory leaks, and lesson the memory foot print a tad.  Hints
13496     taken from 74259.
13497   * Fix some things perl5.6 complains about. Closes: Bug#77337
13498   * Fix references to dpkg-deb manpage. Closes: Bug#77855
13499   * Update Galish translation
13500   * Add new --import option to dpkg-statoverride to make it easy to
13501     import suidmanager settings.
13502   * Speedup patches by Adam Heath
13503   * statoverride fixes by Robert Luberda, Closes: Bug#78436
13504   * Add Linux S/390 support. Closes: Bug#79063
13505   * Using libz to decompress data instead of calling gzip.
13506     Closes: Bug#49581
13507   * Add gettext to build-depends
13508   * Fix warning when trying to remove a non-existing statoverride.
13509     Closes: Bug#79352
13510   * Be more paranoid with file permissions when extracting files
13511   * Apply statoverrides to more then just files
13512   * Update update-alternatives manpage to use FHS instead of FSSTND.
13513     Closes: Bug#80237
13514   * List descriptions for udebs in .changes
13516  -- Wichert Akkerman <wakkerma@debian.org>  Mon, 25 Dec 2000 17:19:31 +0100
13518 dpkg (1.7.2) unstable; urgency=low
13520   * Fix parsing of configuration files
13521   * Add new powerpc-linux-gnu entry to archtable. Closes: Bug#76522
13522   * No longer bother to install emacs things. I don't use emacs myself
13523     and can't support that properly.
13524   * scripts/dpkg-shlibdeps.pl: Make it parse soname's in the format of
13525     "libfoo-X.X.so" (e.g. libdb-3.1.so) and use it. Also make it give a
13526     warning if there is a NEEDED line in the objdump output that we cannot
13527     grok.
13528   * scripts/dpkg-shlibdeps.pl: resolve library paths using a combination
13529     of the libc major version, and ldconfig -p output. Solves problems
13530     with errant libc5 deps.
13531   * Correct name of .changes file when doing source-only builds
13532   * Fix -ap option for dpkg-buildpackage. Closes: Bug#77305
13533   * Fix typo in update-alternatives manpage. Closes: Bug#77829
13534   * Fix typo in script-regexp update-rc.d. Closes: Bug#76029
13536  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 23 Nov 2000 18:55:50 +0100
13538 dpkg (1.7.1) unstable; urgency=medium
13540   * Fix a typo in the dpkg-statoverride manpage
13541   * dpkg-statoverride reads and writes the right file now
13542   * Make update-alternatives use the right dir for alternatives again
13544  -- Wichert Akkerman <wakkerma@debian.org>  Tue,  7 Nov 2000 01:16:39 +0100
13546 dpkg (1.7.0) unstable; urgency=low
13548   * Allow the administrator to override file mode and ownership using the
13549     new dpkg-statoverride tool.
13550   * Use objdump instead of ldd in dpkg-shlibdeps
13551   * Fix logic in dpkg-shlibdeps so it looks for dependencies as specified
13552     in its documentation
13553   * Make update-alternatives update slave links with --config and properly
13554     switch the alternative to manual mode
13555   * HURD updates, Closes: Bug#57753,#57754,#57755
13556   * dpkg-architecture: -q should not imply -f, Closes: Bug#57761
13557   * add dpkg:UpstreamVersion and dpkg:Version substvars in dpkg-genchanges
13558     and dpkg-gencontrol.  Closes: Bug#62069,#64774
13559   * dpkg-genchanges: add new Changed-By field to .changes with the last
13560     person who made a change, and modify the Maintainer-field to be the
13561     actual maintainer. Update the format-version to 1.7 to reflect this.
13562   * dpkg-genchanges: allow a space between # and a to-be-closed bugnumber
13563   * dpkg-deb: reorder files when building a package
13564   * dpkg-statoverride: new tool to override ownership and modes for files
13565   * Check COLUMNS environment for dpkg -l output. Closes: Bug#65536
13566   * Add Origin and Bugs fields to the control file
13567   * Install new /etc/dpkg/origins/debian file
13568   * Corrections and updates to Swedish translation.
13569   * Add Galician, German, Dutch and Brazilian translations
13570   * archtable: add ia64 and sh; revert sparc64 so that it turns into sparc.
13571     There won't be a full binary-sparc64 port. Closes: Bug#70788
13572   * dselect/main.cc: small fixups to get it to compile with gcc-2.96
13573   * Clean up fd handling in some places. Closes: Bug#69359,#69360,#69361
13574   * Document -k option for dpkg-buildpackage. Closes: Bug#71808
13575   * Install commented dummy shlibs.default and shlibs.override files
13576   * Give dpkg a configurationfile
13577   * dpkg-scanpackages now uses the most recent version if multiple versions
13578     of a package are found.
13579   * don't rename a file to itself in dpkg-source. Closes: Bug#75060
13580   * Fix buffer overflow in cmdname handling in start-stop-daemon.
13581     Closes: Bug#75103
13582   * Don't abort if start-stop-daemon tries to read a non-existing pidfile.
13583     Closes: Bug#75105
13584   * Update formatting of start-stop-daemon manpage. Closes: Bug#75110
13585   * Make a missing package a warning instead of an error in dpkg-genchanges
13587  -- Wichert Akkerman <wakkerma@debian.org>  Sun,  5 Nov 2000 17:28:39 +0100
13589 dpkg (1.6.13) frozen unstable; urgency=low
13591   * Add Format-flag to .dsc format: we know we are going to change the
13592     format in the next release, this change will make dpkg-source abort
13593     with a reasonable error instead of doing unexpected things.
13594   * Fix error in gettext'ized string
13595   * Updated Czech, French, Polish and Spanish translations. Closes: Bug#63663
13596   * debian-changelog-mode.el: fix documentation string for
13597     debian-changelog-finalise-last. Closes: Bug#63003
13599  -- Wichert Akkerman <wakkerma@debian.org>  Mon,  8 May 2000 16:08:53 +0200
13601 dpkg (1.6.12.99) frozen unstable; urgency=low
13603   * Pre-release for 1.6.13. which will only feature translation updates
13604   * Fix typo in dpkg-divert, Closes: Bug#60243
13605   * dpkg-genchanges: recognize non-deb packages (tarballs, such as
13606     dpkg-non-deb and boot-floppies disk tarballs). This makes sure that we
13607     include them when figuring out the Arch field in the .changes
13608   * mark another string as translateable, Closes: Bug#62543
13609   * fix location of --abort-after in --help output, Closes: Bug#62464
13610   * fix allocation error in checkpath(), Closes: Bug#62364
13611   * add Hold to list of desired package states in -l output, Closes: Bug#58765
13613  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 21 Apr 2000 11:52:59 +0200
13615 dpkg (1.6.12) frozen unstable; urgency=high
13617   * Fix test for gpg/pgp in dpkg-buildpackage. You can now build
13618     unsigned packages again. Closes: Bug#60395
13619   * Updated Spanish and Swedish translations. Closes: Bug#41735
13620   * Merge patch from Joel Klecker to remove emacsen-common stuff from dpkg-dev
13622  -- Wichert Akkerman <wakkerma@debian.org>  Mon,  3 Apr 2000 16:50:02 +0200
13624 dpkg (1.6.11) frozen unstable; urgency=high
13626   * Oops, missed one case where the libc/ncurses conflict reared its
13627     ugly head and broke dselect miserably.
13628   * fix syntax error in dpkg-divert. Closes: Bug#60050
13630  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 10 Mar 2000 11:52:07 +1100
13632 dpkg (1.6.10) frozen unstable; urgency=low
13634   * The `it rains in Sydney' release
13635   * Mark another string in dselect as translateable, Closes: Bug#58618
13636   * Fix typos, Closes: Bug#58619
13637   * Change dselect keybindings slightly so `n' really does searchagain
13638   * Updated Czech and Spanish translations, Closes: Bug#58617
13639   * dpkg-divert.pl: reinstate last writeability-patch. Modified
13640     to not abort on ENOENT: this indicates a directory does not (yet)
13641     exist. If this happens don't try to rename. This should fix all
13642     current dpkg-divert problems. Closes: Bug#59207,#58596
13643   * update-alternatives: switch back to auto-mode when manually selected
13644     alternative is removed, Closes: Bug#54933
13645   * dselect no longer segfaults on SIGWINCH but does The Right Thing
13646     instead. Closes: Bug#54303,#58697,#59419
13648  -- Wichert Akkerman <wakkerma@debian.org>  Tue,  7 Mar 2000 15:09:47 +1100
13650 dpkg (1.6.9) frozen unstable; urgency=low
13652   * Fix typo in update-alternatives manpage
13653   * dpkg-architecture: -q should not imply -f, Closes: Bug#57761
13654   * Cleanup bits of install-info to make it more stable
13655   * Fix Build-Dependency for ncurses, Closes: Bug#58073
13656   * Some more documentation updates, Closes: Bug#57985
13657   * Revert patch to check for writeable filesystems in dpkg-divert,
13658     Closes: Bug#57840
13660  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 18 Feb 2000 12:11:58 +0100
13662 dpkg (1.6.8) frozen unstable; urgency=low
13664   * Turn --force-overwrite on by default
13665   * Fix a couple of small buildsystem errors
13666   * Support multiple adjacent newlines in control-style files, Closes: Bug#56056
13667   * Updated Czech and Swedish translations
13668   * Revert patch to change order of things when purging a package,
13669     Closes: Bug#56374
13670   * Handle failed open of /dev/tty in dpkg -l, Closes: Bug# 55041
13671   * Update Japanese translations, Closes: Bug# 56641, #57494, #57595
13672   * Update extended description for dpkg-dev, Closes: Bug# 56675
13673   * Implement verbose option for update-alternative
13674   * Fix conflicts handling
13676  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 10 Feb 2000 15:31:31 +0100
13678 dpkg (1.6.7) frozen unstable; urgency=low
13680   * dpkg compiles on HP-UX, Solaris and IRIX now
13681   * start-stop-daemon can chroot now, Closes: Bug#54513
13682   * Allow space between # and the bugnumber in the changelog
13683   * Display package description with waddnstr, Closes: Bug#54313
13684   * Updated Japanese manpages, Closes: Bug#54690, #55080
13685   * Upload full source for packages with version *-0.1, Closes: Bug#54651
13687  -- Wichert Akkerman <wakkerma@debian.org>  Sun, 16 Jan 2000 18:36:10 +0100
13689 dpkg (1.6.6) unstable; urgency=low
13691   * dpkg-buildpackage supports debsign, Closes: Bug#58333
13692   * fix update-alternatives manpage, Closes: Bug#53859
13693   * Updated Polish translation
13694   * Pass admindir to dpkg, Closes: Bug#54039
13695   * Fix dpkg -l output
13696   * Remove dpkg-safelist again, it had issues
13698  -- Wichert Akkerman <wakkerma@debian.org>  Fri,  7 Jan 2000 19:51:45 +0100
13700 dpkg (1.6.5) unstable; urgency=low
13702   * Update Spanish translation
13703   * Don't strip 8th bit in dselect packagelists, Closes: Bug# 49061
13704   * Don't use \z in dpkg-scansources, Closes: Bug# 53182
13705   * Correctly unregister internals manual, Closes: Bug# 53200
13706   * dselect helpessages can be translated now, Closes: Bug# 51381
13707   * dselect UI tweaks, including a new --expert mode
13708   * Added build-depends, Closes: Bug# 53394
13709   * Added THANKS-file with people who have contributed to the code
13710   * Use full width of tty in packagelisting, Closes: Bug# 53395
13711   * Add -z option to dpkg-deb to set compressionlevel when building
13712     packages, Closes: Bug# 53398
13713   * Fix segfaults when producing a diff between current and new conffile,
13714     Closes: Bug# 52197
13716  -- Wichert Akkerman <wakkerma@debian.org>  Sat, 25 Dec 1999 04:47:09 +0100
13718 dpkg (1.6.4) unstable; urgency=low
13720   * No longer byte-compile for emacs
13721   * Add Swedish translation
13722   * start-stop-daemon: honour --oknodo if we fail to kill a process
13723     Closes: Bug#52580,#52185,#52457
13724   * Fix dselect program description, Closes: Bug#52328
13725   * Fix architecture-detection in dpkg-gencontrol, Closes: Bug#52616
13726   * Accept single-number values in update-rc.d, Closes: Bug#46810
13728  -- Wichert Akkerman <wakkerma@debian.org>  Sun, 19 Dec 1999 16:27:48 +0100
13730 dpkg (1.6.3) unstable; urgency=high
13732   * Comment dselect changes from 1.6.2, they seem to have a problem
13733     Closes: #52043,52058,52088,51437
13734   * Really fix emacs-stuff. Hopefully. Closes: #51919,51525
13735   * Fix copyright display in dselect menu, Closes: #52093
13736   * Fix uid/gid-changes in start-stop-daemon, Closes: #52081
13738  -- Wichert Akkerman <wakkerma@debian.org>  Tue,  7 Dec 1999 17:06:00 +0100
13740 dpkg (1.6.2) unstable; urgency=low
13742   * New dpkg-scansources, Closes: #51888
13743   * Fix default for elispdir, Closes: #51919,51525
13744   * New manpages for cleanup-info and dpkg-divert, Closes: #51539, 46657
13745   * Buildsystem updates, Closes: #51525, 51855, 51914
13746   * Modify dselect behaviour for suggests and recommends
13748  -- Wichert Akkerman <wakkerma@debian.org>  Sun,  5 Dec 1999 19:29:50 +0100
13750 dpkg (1.6.1) unstable; urgency=low
13752   * Fix some slight packaging errors
13754  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 26 Nov 1999 20:18:48 +0100
13756 dpkg (1.6) unstable; urgency=low
13758   * Major overhaul of the buildsystem
13759   * Update Standards-Version to 3.1.0
13760   * Move to version 1.6 to reflect the amount of changes made
13761   * Fix mixup with Czech and Polish translations, Closes: Bug# 48986
13762   * utils/start-stop-daemon.c: Added ability for user.group arg to
13763     --chuid. Also, always call initgroups() when using --chuid.
13764   * utils/start-stop-daemon.8: Document above change, also add note to the
13765     --make-pidfile option concerning its problem with daemons that fork
13767  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 25 Nov 1999 04:30:01 +0100
13769 dpkg (1.4.1.19) unstable; urgency=low
13771   * Fix replaces for dpkg-dev
13772   * Add gettext-support to dselect
13773   * Added Czech and Polish translations for dpkg
13774   * Fixed incorrect patch for --print-architecture (oops, oh well
13775     it was already broken when there was no gcc anyway :)
13776   * Fixed missing mipseb that was supposed to be in the archtable
13777   * Better output in update-alternatives --config, now shows the
13778     current, and the preferred choices.
13779   * dpkg-name: ignore epoch when getting version
13780   * 50dpkg-dev.el: add it as a conffile for dpkg-dev
13781   * internals.sgml: Removed references to the versions of build tools,
13782     they date the document.
13783   * debian-changelog-mode.el: added hint for better log-email handling
13784   * Added recognition for new source-depends fields for policy
13785     referenced in bug #41232
13786   * dpkg-buildpackage: add -ap option to force a pause prior to starting
13787     the sign process. This helps for people who don't keep their signatures
13788     on the filesystem (on a floppy perhaps, then mount as needed).
13789   * minor script corrections
13790   * dpkg-dev control: Change gcc to c-compiler in the recommends field, and
13791     move cpio, patch and make to the depends line
13792   * Leave file info intact in available when installing packages. MD5sum,
13793     Filename, and MSDOS-Filename used to get lost when installing a
13794     package.
13795   * Added armv4l to archtable
13796   * Added 'D' to the list of choices for conffile handling, closes: #48137
13797   * Converted internals.sgml to debiandoc format. Also added a dpkg-doc
13798     package that contains the generated output from this file (.ps, .html
13799     and .info), includes doc-base support. Internals.sgml is also not
13800     generated on the binary-arch target, and is no longer "byhand"
13801   * dpkg-gencontrol: add "Source" to the fields placed in the control file
13802   * dpkg-parsechangelog: fixed loop for parsepath (#48526)
13803   * main/{processarc.c,depcon.c}: added new structure for conflictors,
13804     which contains a struct for conflicts. This is used to create an array
13805     of conflicting packages, which are going to be replaced. Allows for
13806     multiple conflicts and replaces. All conflictor handlers were
13807     converted to loops to handle each one (processarc.c).
13808   * dpkg-divert: Fix check for writable filesystem, closes: #48646
13810  -- Wichert Akkerman <wakkerma@debian.org>  Sat, 30 Oct 1999 15:14:40 +0200
13812 dpkg (1.4.1.18) unstable; urgency=low
13814   * Backout dep check patch
13816  -- Ben Collins <bcollins@debian.org>  Sat, 23 Oct 1999 00:39:24 -0400
13818 dpkg (1.4.1.17) unstable; urgency=low
13820   * Add support for long filenames, along with --assert-longfilenames
13821   * Added --chuid option to start-stop-daemon to allow switching to
13822     a different uid when starting a process
13823   * Add mipseb and mipsel to the archtable too, since mips and mipseb are
13824     both viable names for the mips big endian arch, and mipsel is also needed
13825   * Update dpkg-architecture's archtable
13826   * Added --config option to update-alternatives to allow easy changing
13827     of the registered alternatives for a specific name
13828   * Updated the deb-control(5) man page with all the current fields
13829     and uses
13830   * Made the large info screen show 5 lines of the pkglist so that
13831     it scrolled properly, and still showed the cursor in dselect
13832   * Removed references to dpkg(5) which seems to not exist anymore
13833   * Fixed `dpkg-deb --help' and dpkg-deb(1) from reporting --no-check
13834     when it's actually --nocheck (went with the hardcoded option, so
13835     this is just a documentation fix).
13836   * Added better check in disk.setup for a working NFS server. Makes
13837     it compatible with other non-Linux servers.
13838   * Corrected dpkg(8)'s example of using dpkg -i (showed it used with
13839     a .tar.gz instead of a .deb)
13840   * Applied patch to correct improper TMPDIR handling in dpkg-deb
13841   * When encountering an error in extracting the tar archives in the
13842     packages, we should abort the install, not simply give an error
13843     and continue.
13844   * Make dpkg give the builtin arch if there was an error while exec()'ing
13845     the C compiler with --print-architecture. We still fail if the
13846     output from gcc was bad in some way, since they may be of importance.
13847   * Removed the maintainer-configure portion in debian/rules, since
13848     we should be shipping the source with all the auto* stuff
13849     already generated anyway
13850   * Removed the ltconfig patch, and resort to a debian/rules fix
13851     to libtool itself after running configure
13852   * Removed shlibs.default.i386. It's now a template for arch porting to
13853     Debian/dpkg, we install it still, if there exists a file matching the
13854     arch
13855   * Reimplemented a better *stat cache for the removal checking code,
13856     this helps a lot when doing upgrades where the packages are a lot
13857     different in layout
13858   * Increased largemem auto detection to >= 24megs, since it's not uncommon
13859     for dpkg to actually use 16megs of ram all on its own when using the
13860     largemem setting (old minimum was 16megs)
13861   * debian/rules: chmod -x everything in /usr/lib to make lintian happy.
13862     in the clean phase just rm -rf $(BUILD), we don't need to run
13863     distclean and all that other stuff. Don't run "make dist", we
13864     simply copy the .tar.gz that dpkg-source creates for the byhand
13865     source.
13866   * Make start-stop-daemon exit(1) when we don't find one of the
13867     pid's we are trying to kill, in accordance with the man page.
13868   * When running --configure on an already installed package, just
13869     say it's installed, and not that it is in an unconfigurable
13870     state
13871   * Fixed some compiler warnings
13872   * Make dpkg check for uid 0 requirement, before checking the path
13873     since not being root, is probably the reason that the PATH is
13874     borked in the first place
13875   * Make -p short for --print-avail, and -P short for --purge
13876   * Fix typo in md5sum(1) man page
13877   * start-stop-daemon: Add --background and --make-pidfile options
13878   * update-alternatives: make sure we remove "old" symlinks when they
13879     are no longer pertinent. Add /etc/alternatives/README that refers
13880     to the update-alternatives(8) man page.
13881   * dpkg-divert: Add check for being able to write to the old/new
13882     destination before doing a rename. We fail on this, without
13883     changing the diversion registry
13884   * Fix bad regex in update-rc.d
13886  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 21 Oct 1999 17:49:03 +0200
13888 dpkg (1.4.1.16) unstable; urgency=medium
13890   * Hardcode ENOENT again since the errno-part of the POSIX module
13891     isn't in perl-*-base. sigh.
13893  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 15 Oct 1999 04:01:14 +0200
13895 dpkg (1.4.1.15) unstable; urgency=low
13897   * non-maintainer release.
13898   * Move dselect into its own package
13899   * Remove conffiles before directories when purging
13900   * Check if integrity from other packages will broken when processing
13901     an archive
13902   * dpkg-deb can handle package made with Linux ar.
13903   * Add check to update-alternatives to see if the sequencecode is between
13904     0 and 99
13905   * Fix failed assertion, which was actually two bugs: a logic error in
13906     checkforremoval and a wrong assumption in findbreakcycle
13907   * dselect doesn't die when you resize the terminal
13908   * check if a file is also in a new package before removing it when upgrading
13909   * offer to show a diff between the old and new conffile
13910   * dpkg-scanpackages: don't abort but only skip a package if we can't
13911     open it
13912   * Add HURD-support to  start-stop-daemon
13913   * Reinstate patch to not read available when doing --list-files
13914   * Add a couple of --force options to handle changed conffiles
13916  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 14 Oct 1999 04:20:56 +0200
13918 dpkg (1.4.1.14) unstable; urgency=low
13920   * non-maintainer release.
13921   * dpkg-source works again on empty diffs, Closes: Bug# 46159
13922   * Install locale-files in /usr/share, Closes: Bug# 46631
13923   * Make /usr/share/doc/dpkg-dev a symlink to /usr/share/doc/dpkg
13924   * Actually include fix to make update-alternatives works filesystems (oops!)
13925   * Check if codenumber is between 0 and 99, Closes: Bug# 46810
13927  -- Wichert Akkerman <wakkerma@debian.org>  Tue,  5 Oct 1999 19:19:05 +0200
13929 dpkg (1.4.1.13) unstable; urgency=low
13931   * Non-maintainer release.
13932   * NMU number 13, lets see what breaks :)
13933   * update-alternatives works across filesystems now
13934   * Make -sgpg work in dpkg-buildpackage (typo)
13936  -- Wichert Akkerman <wakkerma@debian.org>  Tue, 28 Sep 1999 01:26:19 +0200
13938 dpkg (1.4.1.12) unstable; urgency=low
13940   * Non-maintainer release.
13941   * Fix typo in chmodsafe_unlink that made dpkg chmod files that
13942     weren't setuid or setgid
13944  -- Wichert Akkerman <wakkerma@debian.org>  Sun, 26 Sep 1999 02:41:30 +0200
13946 dpkg (1.4.1.11) unstable; urgency=low
13948   * Non-maintainer release.
13949   * Added sparc64 to archtable
13950   * Added entries for newer alpha architectures to the archtable
13951   * Always run patch and diff with LANG set to C.
13952   * Handle diff warning for files with no newline at the end of file
13953     Closes: Bug#45642
13955  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 24 Sep 1999 03:23:54 +0200
13957 dpkg (1.4.1.10) unstable; urgency=low
13959   * Non-maintainer release.
13960   * Build dpkg-scansources manpages using pod2man
13961   * dpkg-buildpackage changes:
13962     + fix signinterface-detection
13963     + use gpg by default if $HOME/.gnupg/secring.gpg exists
13965  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 16 Sep 1999 15:36:43 +0200
13967 dpkg (1.4.1.9) unstable; urgency=low
13969   * Non-maintainer release.
13970   * Updated dpkg-scansources to current version from Roderick Schertler
13971   * Update location of GPL in internals-manual
13972   * Update location of GPL and dpkg copyright in all manpages
13973   * Include patch from Roman Hodek for dpkg-source to handle diffs of files
13974     with lines that begin with two dashes.
13975   * Move dpkg-scansources to dpkg-dev package
13976   * Move dpkg-scansources manpage to section 8
13977   * Fix error that moved a lot of manpages to the dpkg package.
13978   * It looks like not reading the available-file for listfiles was not greeted
13979     with much enthiousiasm, so reverse the change.
13981  -- Wichert Akkerman <wakkerma@debian.org>  Wed, 15 Sep 1999 03:45:07 +0200
13983 dpkg (1.4.1.8) unstable; urgency=low
13985   * Non-maintainer release.
13986   * Merge dpkg-doc-ja
13987   * Add patch from Raphaël Hertzog <rhertzog@hrnet.fr> for dpkg-scansources
13988     to skip comments in signatures. This allows packages to also use GnuPG.
13990  -- Wichert Akkerman <wakkerma@debian.org>  Mon, 13 Sep 1999 04:16:33 +0200
13992 dpkg (1.4.1.7) unstable; urgency=low
13994   * Non-maintainer release.
13995   * Use /usr/share/doc
13996   * Merge changes from dpkg-iwj tree:
13997     + change section in dpkg-deb.1 to 1
13998     + Use COPYINGFILE instead of hardcoded GPL-location in showcopyright()
13999     + varbufprintf (used for some error messages) vsnprintf return value
14000       assumption changed to correspond to reality rather than glibc-doc.
14001     + Don't read available-info when not needed (slightly improved from
14002       dpkg-iwj: don't read for listfiles either :)
14003     + Cleanup --assert-* code
14004     + Assume largemem on systems without sysinfo(2).
14005     + modify preexec-script for easier script execution
14006     + Do not chmod(".../path/to/symlink",0600) causing many bad perms.
14007     + Sanity-check numbers for parameters
14008     + Move some logic from process_archive into wantinstall
14009     + Print '0' in dpkg-scanpackages if no packages found.
14011  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 10 Sep 1999 04:06:32 +0200
14013 dpkg (1.4.1.6) unstable; urgency=low
14015   * Non-maintainer release.
14016   * scripts/dpkg-architecture.pl: Update to latest version.
14017   * scripts/dpkg-architecture.1: Likewise.
14019  -- Marcus Brinkmann <brinkmd@debian.org>  Sat, 24 Jul 1999 18:24:21 +0200
14021 dpkg (1.4.1.5) unstable; urgency=low
14023   * Non-maintainer release.
14024   * (dpkg-dev): Use emacsen-common for debian-changelog-mode.el
14025     (closes:Bug#20776,#31030).
14026   * Removed references to the packaging and policy manuals from debian/control.
14027   * Put debian-changelog-mode.el in dpkg-dev and remove from dpkg (closes:Bug#29271).
14028   * Fix paths in 50dpkg-dev.el using Roderick Schertler's patch
14029     (closes:Bug#28270,#29702,#26876,#29184,and others).
14030   * Note that bug number 17367 was fixed in 1.4.0.26.
14031   * Add Zack Weinberg's install-info patch for GNU install-info
14032     compatibility (closes:Bug#28965).
14033   * Add dpkg-architecture stuff from Marcus Brinkmann.
14034   * Remove debian-keyring suggests from dpkg.
14035   * Add -k<keyid> flag to dpkg-buildpackage.
14036   * --textmode works in gpg, remove kluge from dpkg-buildpackage.
14037   * Cleanup configure.in slightly (stop using tl_ macros, fix gettext stuff).
14038   * Attempt to make Debian source useful for non-Debian systems
14039     (i.e. distclean tree instead of maintainer-clean tree).
14040   * Sync with wichert's 1.4.1.4.
14041   * Add my ltconfig-1.3.2.diff (RPATH workaround).
14042   * Add dpkg-scansources program and man page.
14043   * Man pages in /usr/share/man.
14045  -- Joel Klecker <espy@debian.org>  Tue, 13 Jul 1999 18:12:15 -0700
14047 dpkg (1.4.1.4) unstable; urgency=low
14049   * Also change developer-keyring to debian-keyring for dpkg-dev package
14050   * Include spanish translation from Nicolás Lichtmaier <nick@debian.org>
14051   * Depend on perl5 instead of perl
14053  -- Wichert Akkerman <wakkerma@debian.org>  Mon,  5 Jul 1999 00:04:14 +0200
14055 dpkg (1.4.1.3) unstable; urgency=low
14057   * Modify tarobject() so it does not complain if we are creating a
14058     directory that replaces a removed file. This works around the
14059     problem that the filedatabase doesn't remember what filetype a
14060     file was by assuming it already was a directory
14062  -- Wichert Akkerman <wakkerma@debian.org>  Mon, 31 May 1999 23:49:23 +0200
14064 dpkg (1.4.1.2) unstable; urgency=low
14066   * Non-maintainer upload
14067   * Rebuild, so this is glibc2.1 (unless you're on m68k), which is rumoured
14068     to also fix the i8n-problems.
14069   * Incorporate 1.6 format of .changes, patch from Guy Maor
14070   * Fix bug in section-handling of dpkg-scanpackages, patch from Guy Maor
14071   * Disable force-overwrites again, since we're in unstable
14072   * Assume largemem on systems for which sysinfo is not available, Bug# 33658
14074  -- Wichert Akkerman <wakkerma@debian.org>  Wed, 26 May 1999 15:50:17 +0200
14076 dpkg (1.4.1.1) unstable; urgency=low
14078   * Non-maintainer upload
14079   * Install emacs-startup scripts with mode 0644 (lintian)
14080   * Incorporate changes in NMU 1.4.0.32 made by Vincent Renardias
14081     <vincent@waw.com> for slink:
14082     + Apply patch from Jim Pick for update-alternatives.pl to
14083       fix 'Important' bugs #30891 in dpkg and (#27382, #27383, #27696,
14084       #27703, #27736, #27097(merged bugs)) in jdk1.1.
14085   * Incorporate changes in NMU 1.4.0.33 made by me for slink:
14086     + Fix illegal perl construct (Bug# 30985)
14087     + Initialize oialtname->useinstead and oicontest->camefrom to 0 (Bug# 30397)
14088     + Update shlibs.default for libncurses 4 (Bug# 30332)
14089     + Suggest debian-keyring instead of developer-keyring (Bug# 27376, 30248)
14090     + Abort dpkg-divert when attempting to divert a directory (Bug# 30126)
14091     + Make dpkg-deb.1 aware that it is in section 1, not 8
14092     + Fix section in reference to dpkg-deb in dpkg.8 (Bug# 29740)
14093     + Fix typo in --force-help (Bug# 26193)
14094     + Correct path for debian-changelog-mode.el (Bug# 24606)
14095     + Make disk-method for dpkg use /var/run instead of /tmp to fix
14096       symlink-attacks (Bug# 21399)
14097     + Document -n and -f options for update-rc.d in manpage (Bug# 15913)
14098     + Add --abort-after option to change after how many errors we abort and
14099       change the default to 50 (Bug# 22940)
14100     + Fix controllib.pl: don't check debian/substvars unless needed, and
14101       don't depend on language settings (Bug# 31508)
14102     + Allow a - in the architecture-field (Bug# 25537)
14104  -- Wichert Akkerman <wakkerma@debian.org>  Mon,  1 Feb 1999 00:44:01 +0100
14106 dpkg (1.4.1) unstable; urgency=low
14108   * Maintainer release by IWJ.
14109   * Changed Maintainer: field description.
14110   * Various changes to make the damn thing build.
14111   * Add .cvsignore files.
14113  -- Ian Jackson <ian@davenant.greenend.org.uk>  Sun,  1 Nov 1998 17:33:38 +0000
14115 dpkg (1.4.0.31) unstable; urgency=low
14117   * dpkg/processarc.c: Make newfileslist static like the other arguments
14118     for register_cleanup's cu_* functions.
14119   * N-th fix for controllib.pl (simulate old behavior by trying stdin,
14120     stdout, and stderr for getlogin()).
14121   * Enable --force-overwrite for slink release, and comment where to do
14122     so (dpkg/main.c).
14123   * Recompile against ncurses4.
14125  -- Daniel Jacobowitz <dan@debian.org>  Thu, 22 Oct 1998 17:37:23 -0400
14127 dpkg (1.4.0.30) unstable; urgency=low
14129   * dpkg-dev isn't allowed to have a Recommends: debian-keyring (as that's
14130     in contrib), so it's now lowered to a Suggests: . Thanks to James Troup
14131     for pointing this out.
14133  -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl>  Sat, 26 Sep 1998 13:59:23 +0200
14135 dpkg (1.4.0.29) unstable; urgency=low
14137   * For now, prefer PGP over GPG.
14139  -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl>  Tue, 22 Sep 1998 09:38:09 +0200
14141 dpkg (1.4.0.28) unstable; urgency=low
14143   * Added gpg (GNU Privacy Guard) support:
14144     * scripts/buildpackage.sh: default to GPG (unless no GPG, but only a PGP
14145       secret key file is found), as GPG, unlike PGP, is DFSG-free.
14146     * Updated dpkg-source(1), and added gpg(1) and pgp(1) to the SEE ALSO
14147       section.
14148     * Worked around broken textmode implementation in GPG.
14149     * dpkg-dev now Suggests: gnupg .
14150   * No longer includes developer-keys.pgp . Instead, dpkg now Suggests: and
14151     dpkg-dev now Recommends: developer-keyring.
14152   * Compiled with latest libstdc++ (2.9).
14154  -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl>  Mon, 21 Sep 1998 13:17:14 +0200
14157 dpkg (1.4.0.27) unstable; urgency=low
14159   * REALLY fixed dpkg-dev, and new attempt to placate installer on internals.
14161  -- Daniel Jacobowitz <dan@debian.org>  Fri, 27 Jul 1998 15:58:04 -0400
14163 dpkg (1.4.0.26.0.1) unstable; urgency=low
14165   * Binary-only upload for x86 and fixed dpkg-dev
14167  -- Daniel Jacobowitz <dan@debian.org>  Fri, 24 Jul 1998 15:58:04 -0400
14169 dpkg (1.4.0.26) unstable; urgency=low
14171   * Non-maintainer upload.
14173   * Make --root work with maintainer scripts (Patch by Scott Barker,
14174     bugs #4863 and #3170).
14175   * Fix $(lispdir) bug if compiling without emacs (noticed by Joey Hess).
14177  -- Daniel Jacobowitz <dan@debian.org>  Thu, 23 Jul 1998 12:02:04 -0400
14179 dpkg (1.4.0.25) unstable; urgency=low
14181   * Non-maintainer upload.
14183   * Add the requested -nc option to dpkg-buildpackage (Do
14184     not clean source tree, useful in debugging cycles).
14185   * controllib.pl: Again by popular acclamation, fix the getlogin() warnings.
14186     I redirected STDERR onto fd 0 before calling getlogin().
14187   * tools.m4: Fix display of whether c++ works.
14188   * dpkg-deb/extract.c: glibc 2.1 and some kernels want to make
14189     fflush() move the current fpos.  Until someone can fix that,
14190     protect with seek.
14191   * Add an extra 0, to dselect/{pkg,meth}keys.cc so it compiles again.
14192   * Start using lchown() if available.
14193   * Really fix #20353. (aclocal.m4 was the wrong place; that's a generated
14194     file.  The correct place is in tl_canon.m4.)
14196  -- Daniel Jacobowitz <dan@debian.org>  Tue, 21 Jul 1998 03:14:14 -0400
14198 dpkg (1.4.0.24) unstable; urgency=low
14200   * Non-maintainer upload.
14202   * dpkg/main.c: Turn --force-overwrite off as default.
14203   * dpkg/main.c: don't list --force-overwrite as default in --force-help,
14204     noticed by Peter Weiss <Peter.Weiss@Informatik.Uni-Oldenburg.DE> and
14205     others. [#23542, part of #17409].
14206   * dpkg/dpkg.8: replaced with a newer version from Jim Van Zandt
14207     <jrv@vanzandt.mv.com>. [#21061]
14209   * dpkg-deb/build.c (do_build): add missing \n and improve error message
14210     when conffile name is too long. [#7057]
14212   * scripts/update-alternatives.8: replaced with better man page from
14213     Charles Briscoe-Smith <cpb4@ukc.ac.uk>. [#17283]
14214   * scripts/dpkg-source.1: corrected logic error in documentation for
14215     dpkg-gencontrol's -p option, as noticed by Oliver Elphick
14216     <olly@linda.lfix.co.uk>. [#14655]
14217   * scripts/controllib.pl (findarch): correct typo in error message,
14218     noticed by Yann Dirson <ydirson@a2points.com>. [#22106]
14219   * scripts/dpkg-buildpackage.sh: fix typo for 'source maintainer',
14220     noticed by Joey Hess <joey@kite.ml.org>, Adam P. Harris
14221     <apharris@onshore.com> and others. [#10175, #15559]
14222   * scripts/dpkg-genchanges.pl: applied patch from Roman Hodek
14223     <Roman.Hodek@informatik.uni-erlangen.de> which solves problems with
14224     architecture specific packages in mostly architecture independent
14225     multi-binary source packages. [#14341, #20192].
14227   * doc/Makefile.am: remove any reference to the packaging manual, as it is
14228     now provided by the separate "packaging-manual" package.
14229   * doc/packaging.sgml: removed.
14230   * doc/developer-keys.pgp: updated to the current debian keyring.
14232   * aclocal.m4: applied patch from Joel Klecker <jk@espy.org> to handle
14233     egcs' --print-libgcc-file-name output. [#20353]
14235   * debian/copyright: correct FSF address.
14236   * debian/rules: add code from lesstif's debian/rules to make libtool
14237     less of a fool (i.e. not use -rpath and to link shared libraries
14238     against libraries it depends on).  Code by Richard Braakman
14239     <dark@xs4all.nl> and Yann Dirson <dirson@debian.org>.
14240   * debian/rules: remove all reference to the packaging manual as it is
14241     now provided by the separate "packaging-manual" package. [#21581,
14242     #21186, #22698, #23342]
14243   * debian/rules: link dpkg-divert.1.gz to undocumented.7.gz as the lack
14244     of a real manpage has been reported in #11093.
14245   * debian/README.compile: removed gawk and bogus comment about gettext
14246     being in experimental, as reported by Santiago Vila <sanvila@unex.es>
14247     [#23344].  Added libpaperg (debiandoc2ps needs paperconf).
14248   * debian/shlibs.default.i386: updated for glibc, reported by Herbert Xu
14249     <herbert@gondor.apana.org.au>. [#13140]
14250   * debian/control (dpkg-dev): depend on perl as POSIX (not a part of
14251     perl-base) is needed by most of the perl dpkg-* scripts, noticed by
14252     Joel Klecker <jk@espy.org>. [#22115]
14254  -- James Troup <jjtroup@comp.brad.ac.uk>  Wed, 24 Jun 1998 14:38:52 +0200
14256 dpkg (1.4.0.23.2) frozen unstable; urgency=low
14258   * Non-maintainer upload.
14259   * dpkg/main.c: Turn --force-overwrite back on as default.
14261  -- James Troup <jjtroup@comp.brad.ac.uk>  Tue, 23 Jun 1998 22:19:26 +0200
14263 dpkg (1.4.0.23.1) frozen unstable; urgency=low
14265   * No real changes, only a new version code to make this go to frozen too.
14267  -- Nils Rennebarth <nils@debian.org>  Wed, 10 Jun 1998 17:29:58 +0200
14269 dpkg (1.4.0.23) frozen unstable; urgency=low
14271   * Non-maintainer bug-fix release
14272   * Update the disk method to the hamm directory structure (Bug#21000)
14274  -- Nils Rennebarth <nils@debian.org>  Sun,  7 Jun 1998 19:14:51 +0200
14276 dpkg (1.4.0.22) frozen unstable; urgency=medium
14278   * Non-maintainer bug-fix release
14279   * Install main changelog file as `changelog.gz' instead of
14280     `changelog.dpkg.gz' (Debian Policy, section 5.8) (Bug#6052,15157)
14281   * Avoid use of /tmp/*.$$ in preinst and postinst (Bug#19712)
14282   * Make sure diversions file is always created with mode 0644 (Bug#19494)
14283   * When removing a file, chmod it to 000 if it's a char or block
14284     device or remove its s[ug]id bits, if any (Bug#6006)
14285   * Minor fixes in the programmer's manual (Bug#6206)
14286   * Always create readable status and available files
14287     (Bug#9869,11887,14636,15786,19146)
14288   * Make dpkg-gencontrol honour -DArchitecture=xxxx (Bug#9893)
14289   * Allow different archs for the same binary in debian/files (Bug#9894)
14290   * Added workaround in /usr/lib/dpkg/methods/disk/setup
14291     to avoid bash warning (Bug#10111,10131)
14292   * Recognize old .deb packages with other locales (Bug#12232)
14293   * Added `SHELL=bash' to debian/rules: it uses bash-specific structs
14294   * Move some files from dpkg to dpkg-dev (part of Bug#13295)
14295   * Minor fix in packaging manual regarding to Standards-Version (Bug#14696)
14296   * Fixed --altdir and --admindir in update-alternatives (Bug#15332)
14297   * Strip /usr/lib/libdpkg* (Bug#15671)
14298   * dpkg: send output of --help, --force-help and -Dhelp to stdout
14299     (Bug#16051,18574)
14300   * send correct signals with start-stop-daemon (Bug#17258)
14301   * Make `dpkg-divert --test --remove' work as expected (Bug#19531)
14302   * Determine properly the architecture if gcc is egcs (Bug#20353)
14304  -- Juan Cespedes <cespedes@debian.org>  Sun,  5 Apr 1998 17:37:01 +0200
14306 dpkg (1.4.0.21) unstable; urgency=low
14308   * Non-maintainer release to include a new update-rc.d
14309   * Fixed date on files in the archive from 2017 and 2018 by running
14310     touch foo; find . -newer foo | xargs -r touch; rm foo
14311   * Changed start-stop-daemon message "No <program> found; none killed." to
14312     "No <program> found running; none killed."
14314  -- Miquel van Smoorenburg <miquels@cistron.nl>  Thu,  5 Mar 1998 14:19:46 +0100
14316 dpkg (1.4.0.20) unstable; urgency=low
14318   * Disabled --force-overwrites.
14319   * Removed core file from source
14321  -- Michael Alan Dorman <mdorman@debian.org>  Tue,  9 Jan 1998 03:34:28 -0500
14323 dpkg (1.4.0.19) unstable; urgency=low
14325   * Changed methods/disk.setup to use output of
14326     'dpkg --print-installation-architecture' instead of hard-coded
14327     '1386' (fixes #10995).
14328   * Patched dpkg-source to properly quote metacharacters in strings
14329     before using them in pattern-matching expressions (fixes #10811).
14330   * Fixed several documentation typos (fixes #10764).
14331   * dpkg-source now works around 100-character filename limitation of cpio
14332     (fixes #10400).
14333   * dpkg-source now properly handles '\ no newline in source' message from
14334     patch (fixes #5041).
14336  -- Klee Dienes <klee@debian.org>  Sun, 13 Jul 1997 19:28:22 -0700
14338 dpkg (1.4.0.18) unstable; urgency=low
14340   * dpkg-source now uses new -z option to GNU patch (still needs to be
14341     changed to detect and use old version as well) (fixes #9904, #10005, #10007).
14342   * Added i686 to archtable.
14343   * shlibs.default now uses xlib6 instead of elf-x11r6lib (fixes #9926).
14344   * debian-changelog-mode now uses interruptible completing type-in fields
14345     instead of the previous 'select-a-letter method'.  I consider this
14346     better and more standard than the previous way, but I'd welcome
14347     opinions to the contrary.  Consider this a 'probationary' change for
14348     now (fixes #9873, #9874).
14350  -- Klee Dienes <klee@debian.org>  Sun, 25 May 1997 09:56:08 -0400
14352 dpkg (1.4.0.17) unstable; urgency=low
14354   * All of the dpkg binaries (but not dpkg-dev or dselect) now speak
14355     french, thanks to patches from Christophe Le Bars <clebars@teaser.fr>
14356   * Fix leading spaces before day in 822-date.
14357   * Changes from Tom Lees <tom@lpsg.demon.co.uk> to better support
14358     building on non-Debian systems; minor Makefile fixes.
14359   * Added 'ppc powerpc powerpc' to archtable.
14360   * Changed documentation paper size to US/Letter instead of A4 (A4
14361     may be better, but it's easier to print US/Letter on A4 than it is
14362     to print A4 on US/Letter).
14364  -- Klee Dienes <klee@debian.org>  Tue,  13 May 1997 15:24:31 -0400
14366 dpkg (1.4.0.16) experimental; urgency=low
14368   * Added generated sources to GNU-format source archive so it no longer
14369     requires perl to build.
14371  -- Klee Dienes <klee@debian.org>  Sat, 10 May 1997 17:34:29 -0400
14373 dpkg (1.4.0.15) experimental; urgency=low
14375   * Changed dpkg-genchanges to check for ($arch == $substvar{'Arch'}), not
14376     ($arch ne 'all') (fixes #9688).
14377   * Fixed bug in start-stop-daemon.c (was using optarg after argument
14378     parsing was over) (fixes #9597, #9603, #9364).
14379   * Provide 50dpkg-dev.el for xemacs as well as emacs.
14380   * Explicitly provide path for debian-changelog-mode in 50dpkg-dev to use
14381     .el file as workaround until xemacs can read emacs19 .elc files.
14382   * Pass top_distdir explicitly to 'make dist' to accommodate bug in
14383     automake_1.1o-1.
14384   * Fix debian/build to make html documentation without including
14385     directories in tar archives (fixes #9348).
14387  -- Klee Dienes <klee@debian.org>  Fri,  9 May 1997 13:17:18 -0400
14389 dpkg (1.4.0.14) experimental; urgency=low
14391   * Fixed buglet in install-info.pl (fixes #9438).
14392   * Re-write of update-rc.d.pl, primarily by Miquel van Smoorenburg
14393     <miquels@cistron.nl> (fixes #9434, #9436).
14394   * Renamed "dpkg Programmer's Manual" to "dpkg Internals Manual".
14396  -- Klee Dienes <klee@debian.org>  Tue,  6 May 1997 22:01:07 -0400
14398 dpkg (1.4.0.13) experimental; urgency=low
14400   * Fix to start-stop-daemon so that it still takes numeric arguments (had
14401     been broken in 1.4.0.12) (fixes #9598).
14402   * Fix 822-date to sanity-check localtime() output (seconds must be the
14403     same as GMT).
14404   * Patch from Guy Maor <maor@ece.utexas.edu> to dpkg-source.pl to support
14405     pristine (MD5-equivalent) upstream sources.
14406   * Patch from Michael Alan Dorman <mdorman@calder.med.miami.edu> to
14407     update-rc.d.pl to fix handling multiple start/stop entries on a single
14408     line.
14409   * Several fixes to dpkg-genchanges to support -B option (added in
14410     1.4.0.12) (fixes #9340).
14411   * Handle errors from 822-date in debian-changelog-mode.el.
14412   * Changed cl-debian.pl to correctly handle extra whitespace in changelog
14413     datestamps.
14415  -- Klee Dienes <klee@debian.org>  Mon,  5 May 1997 18:12:43 -0400
14417 dpkg (1.4.0.12) experimental; urgency=low
14419   * Re-wrote 822-date for clarity and to support timezone offsets >= 12h
14420     (New Zealand in DST is +1300, for example) (fixes #7130).
14421   * Patch from Juergen Menden <menden@morgana.camelot.de> to support
14422     archdependent-only builds (fixes #8912, #9245, #5359).
14423   * Fix archtable entry for powerpc (fixes #8794).
14424   * Strip /sbin/* and /usr/sbin/* in debian/rules (fixes #8853).
14425   * Moved start-stop-daemon to /sbin (fixes #8669).
14426   * Set sharedstatedir and localstatedir for $(MAKE) install in
14427     debian/rules (fixes #8852).
14428   * Fixes for update-rc.d(8) from Jim Van Zandt <jrv@vanzandt.mv.com>
14429     (fixes #8576).
14430   * No longer do variable substitutions when generating change file (fixes
14431     #5862).
14432   * Support symbolic signal names in start-stop-daemon (fixes #7715).
14433   * Add autoload for debian-changelog-mode to /etc/emacs/site-start.d
14434     (fixes #4519, #5841).
14435   * Add recommendation for gcc and make in dpkg-dev (gcc is needed for dpkg
14436     --print-architecture, used by dpkg-gencontrol; make is needed for any
14437     debian/rules file) (fixes #8470).
14438   * Minor changes to packaging manual section on source package
14439     conversion (fixes #6801).
14440   * Renamed "programmer's manual" to 'packaging manual'.
14441   * Start of new "programmer's manual" containing information on dpkg
14442     internals and build information.  This manual uses the new
14443     TeXinfo-SGML format, currently included in doc/.
14444   * dselect/pkgdepcon.cc now checks for debug not NULL, not just depdebug.
14445   * Changed makefiles to support building outside of source directory.
14446   * Include GNU-format source distribution with other non-debian packages.
14448  -- Klee Dienes <klee@debian.org>  Sun,  4 May 1997 11:08:19 -0500
14450 dpkg (1.4.0.11) experimental; urgency=low
14452   * Patches for alpha and libc6 from Michael Alan Dorman
14453     <mdorman@calder.med.miami.edu>.
14454   * Fixed minor problems in dpkg-shlibdeps regular expressions for libc6.
14455   * Fix regex to detect directory creation in dpkg-source.pl.
14456   * Minor changes for automake-1.1n.
14458  -- Klee Dienes <klee@debian.org>  Sun, 23 Mar 1997 18:09:33 -0500
14460 dpkg (1.4.0.10) unstable; urgency=medium
14462   * Fixed bug in controllib.pl (@fowner was entire passwd entry,
14463     not just [uid, gid] as it should have been).
14465  -- Klee Dienes <klee@debian.org>  Thu, 20 Mar 1997 13:06:52 -0500
14467 dpkg (1.4.0.9) unstable; urgency=low
14469   * Check fputs() return values for (ret >= 0), not (ret != 0) (fixes #7522).
14470   * dpkg-shlibdeps no longer gives error for Java and statically linked
14471     binaries (fixes #4988).
14472   * Change 'details of the old format' to 'details of the new format' in
14473     deb-old.5 (fixes #7605).
14474   * dpkg-source -b now warns (was previously silent) if maintainer changes
14475     create new subdirectories.  dpkg-source -x now warns (previously gave
14476     error) if maintainer changes create new subdirectories (partially
14477     fixes #6866, #6671, #5045, #6482).
14478   * Added manual page for start-stop-daemon (8).
14479   * Added C version of start-stop-daemon by
14480     Marek Michalkiewicz <marekm@i17linuxb.ists.pwr.wroc.pl> (fixes #1670).
14481   * Converted to use GNU automake for the build process by Tom Lees
14482     <tom@lpsg.demon.co.uk>.<
14483   * Preliminary support for dpkg functions as a shared library (now
14484     provides libdpkg.so, but much work needs to be done in better
14485     segregating and defining the interface).
14486   * Preliminary internationalization support by Galen Hazelwood
14487     <galenh@debian.org>.  Only the library, dpkg-deb, md5sum, and dpkg
14488     have been converted so far.  No translations have yet been
14489     constructed.
14490   * Handle 'libc.so.6 => /lib/libc.so.6 (0x40010000)' format from libc6
14491     ldd (fixes #7603, #7926, #8688, #9179, #9134, #8516).
14492   * Removed policy.sgml (it has been moved to the debian-policy package).
14493   * Include patch from Darren Stalder <torin@daft.com> for
14494     dpkg-buildpackage to choose PGP key based on Maintainer: field of
14495     package being built (or -m<maintainer> option, if present) (fixes
14496     #7898).
14497   * Changed controllib.pl to use $ENV{LOGNAME}, getlogin(), and $<
14498     (in that order) to determine the intended ownership of
14499     debian/{files,substvars},  (fixes #7324, #6823, #5659, #5965, #5929,
14500     #9239, #5366).
14501   * Don't sign .dsc file in dpkg-buildpackage if building a binary-only
14502     release (fixes #7260).
14503   * Updated developer-keys.pgp to latest revision (fixes #6134).
14505  -- Klee Dienes <klee@debian.org>  Mon, 17 Mar 1997 16:11:24 -0500
14507 dpkg (1.4.0.8) unstable; urgency=medium
14509   * Corrected update-rc.d for bash 2.0
14510   * Updated developer-keys.pgp from
14511     http://www.iki.fi/liw/debian/debian-keyring.tar.gz
14513  -- Guy Maor <maor@ece.utexas.edu>  Mon, 3 Feb 1997 04:05:01 -0600
14515 dpkg (1.4.0.7) stable unstable; urgency=HIGH
14517   * Fixed --assert-support-predepends failing between unpack & configure.
14518   * Added --assert-working-epoch option.
14520  -- Guy Maor <maor@ece.utexas.edu>  Sat, 25 Jan 1997 23:02:11 -0600
14522 dpkg (1.4.0.6) stable unstable; urgency=high
14524   * Patched lib/vercmp.c to hopefully fix dselect epoch processing
14525     (Bug#6204), (Bug#4590).
14526   * Patched scripts/dpkg-buildpackage, scripts/dpkg-genchanges,
14527     scripts/dpkg-gencontrol for epoch processing, courtesy of Loic Prylli
14528     <lprylli@graville.fdn.fr> (Bug#6138, Bug#5225).
14529   * Patched dpkg-genchanges to actually honor the -u switch to specify
14530     directory (Bug#5564).
14531   * Applied patch to main/archive.c to correct problems setting set[gu]id
14532     binaries, courtesy of Herbert Xu <herbert@greathan.apana.org.au>
14533     (Bug#5479).
14534   * Applied patch to dpkg-source to correct debian-only package names,
14535     courtesy of Guy Maor <maor@ece.utexas.edu> (Bug#5355).
14537  -- Michael Alan Dorman <mdorman@calder.med.miami.edu>  Thu, 2 Jan 1997 11:36:09 -0500
14539 dpkg (1.4.0.5) stable frozen unstable; urgency=medium
14541   * Distribution for frozen too.
14543  -- Heiko Schlittermann <heiko@lotte.sax.de>  Thu, 5 Dec 1996 09:13:42 +0100
14545 dpkg (1.4.0.4) stable unstable; urgency=medium
14547   * Bug2962 fixed: patch from Ian Jackson applied
14548     (cursor keys won't work after search)
14549   * Manuals 2.1.2.2
14551  -- Heiko Schlittermann <heiko@lotte.sax.de>  Fri, 15 Nov 1996 20:21:18 +0100
14553 dpkg (1.4.0.3) unstable; urgency=medium
14555   * dpkg-source -x: created bad permissions (set x-bit for
14556     all files pointed to by a symlink)
14558  -- Heiko Schlittermann <heiko@lotte.sax.de>  Fri, 18 Oct 1996 18:32:06 +0200
14560 dpkg (1.4.0.2) unstable; urgency=medium
14562   * dpkg-buildpackage.sh: reverted the quoting change -- (you
14563     should use super, sudo, really, but not su.  Or write a wrapper
14564     around su)
14565   * dpkg-buildpackage.sh: passing -m, -C, -v options to dpkg-genchanges
14566     more the way Ian likes ;-)
14567   * dpkg-source.pl: new function deoctify() as replacement for eval()
14568     (turn \ddd into the corresponding character) [rem: probably better
14569     solution would be to convert cpios output names into complete \ddd
14570     representation as well tars output names]
14571   * dpkg-source.pl: fixed 2 typos in failure message on creating
14572     $origtargz.tmp-nest.
14573   * main/main.c: typo for `treat'
14574   * main/enquiry.c: fixed the ignorance for some relations in --compare-versions
14575   * main/enquiry.c: missing version is now handled as described in `dpkg --help'
14576     (or at least as I understood `dpkg --help' PLEASE TRY IT)
14577   * lib/parsehelp.c: fixed parsing of epoch information
14579  -- Heiko Schlittermann <heiko@lotte.sax.de>  Sun, 6 Oct 1996 23:27:47 +0200
14581 dpkg (1.4.0.1) unstable; urgency=medium
14583   * dpkg-source: doesn't get screwed up from hardlinks
14584     in the archive now
14585   * dpkg-source: doesn't get screwed up from `unprintable' characters
14586     in file names (e.g. from the kbd package)
14587   * controllib.pl: $varlistvile -> $varlistfile (thanx Karl Sackett)
14588   * dpkg-buildpackage: quoting for $rootcommand (thanx  Michael Meskes)
14589     and `eval' as default $rootcommand
14590   * dpkg-*, controllib.pl: created debian/files and debian/substvars
14591     are chown'ed to `getlogin()' and its group
14592   * doc/: mv changed to mv -f
14593   * dpkg-buildpackage: added an option -a for overriding the
14594     architecture in the changes _file_name_
14595   * dpkg-buildpackage: pass -m* -v* .. options to dpgk-genchangelog
14596   * dpkg-name moved to dpkg-dev
14598  -- Heiko Schlittermann <heiko@lotte.sax.de>  Sat, 21 Sep 1996 22:06:01 +0200
14600 dpkg (1.4.0) unstable; urgency=low (HIGH for new source format)
14602   * Corrected buffer overrun when dpkg-deb generates filename.  (Bug#4467.)
14603   * dpkg-shlibdeps works with DEBIAN/shlibs (thanks Heiko Schlittermann).
14604   * Added libm.so.5 to shlibs.default for i386/m68k.
14606   * Split binary package into two: dpkg and dpkg-dev.
14607   * dpkg-source(1) documents mode and ownership setting during extraction.
14609   * dpkg-scanpackages moved to /usr/bin.
14610   * Include /usr/bin/dpkg-deb, not dpkg-deb.dist; don't rename in scripts.
14611   * Copyright file changed slightly.
14612   * debian-changelog-mode uses magic key substitution strings.  (Bug#4419.)
14613   * Changed email address in control file to <ian@chiark.greenend.org.uk>.
14614   * Manuals and own Standards-Version: updated to 2.1.1.0.
14616  -- Ian Jackson <ian@chiark.greenend.org.uk>  Thu, 12 Sep 1996 01:13:33 +0100
14618 dpkg (1.3.14) unstable; urgency=low
14620   * dpkg-buildpackage new -tc (clean source tree) option.
14622   * Formatted documentation removed by `make clean' and so not in source.
14623   * Manuals and own Standards-Version: updated to 2.1.0.0.
14624   * Distribute {policy,programmer}.{html.tar,ps}.gz with each upload.
14626  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sun, 1 Sep 1996 20:43:40 +0100
14628 dpkg (1.3.13) unstable; urgency=low (HIGH for building new src X programs)
14630   * X shared libraries added to shlibs.default (=> `elf-x11r6lib').
14631   * dpkg-source tar invocation fixed so that TAPE env var doesn't break it.
14632   * dpkg-source copes better with missing final newline messages from diff.
14634   * dpkg-buildpackage usage message fixed: -si is the default.  (Bug#4350.)
14635   * dpkg-source error message about src dir mismatch typo fixed.  (Bug#4349.)
14637   * dpkg-source(1) has suggestions for dpkg-buildpackage -r option.
14638   * dpkg-source change date fixed.  (Bug#4351.)
14639   * More developers' keys.
14640   * Manual updates, own Standards-Version updated.
14642  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 31 Aug 1996 20:08:18 +0100
14644 dpkg (1.3.12) unstable; urgency=medium
14646   * dpkg prints old version number when upgrading.  (Bug#4340.)
14647   * dpkg-deb tries to detect and flag corruption by ASCII download.
14649   * dpkg-genchanges and dpkg-buildpackage say what source is included.
14651   * dpkg-buildpackage passes +clearsig=on to PGP (or pgpcommand).  (Bug#4342.)
14653   * dpkg-source prints better error for cpio not honouring -0t.
14654   * control file Suggests cpio >= 2.4.2, rather than just cpio.
14656  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Fri, 30 Aug 1996 15:31:51 +0100
14658 dpkg (1.3.11) unstable; urgency=low
14660   * EBUSY when dpkg removes a directory is only a warning.
14662   * dpkg-genchanges generates sensible warning (not confusing error
14663     about mismatch) for missing Section/Priority in binary packages.
14665   * Added dpkg --print-gnu-build-architecture option.
14666   * shlibs.default for m68k provided, as a copy of i386 version.
14668  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 29 Aug 1996 14:05:02 +0100
14670 dpkg (1.3.10) unstable; urgency=medium
14672   * dpkg-source(1) manpage alias symlinks are not dangling.
14673   * dselect selects things by default if they are installed.
14674   * Added `pentium' as alias for `i386' architecture.
14675   * Added `Suggests: cpio, patch' and explanatory text to Description.
14676     (Bugs #4262, #4263.)
14678   * More developers' PGP keys.
14679   * Manual updates, new source format released.
14681  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 26 Aug 1996 14:30:44 +0100
14683 dpkg (1.3.9) unstable; urgency=low (high for new source format)
14685   * dpkg --get-selections and --set-selections added.
14686   * New dpkg --force-not-root flag.
14688   * Don't replace directory with another package's file.  (Bug#4202.)
14690   * All manpages now installed compressed.
14691   * Copyright file moved to /usr/doc/dpkg/copyright.
14692   * Standards-Version updated (0.2.1.1).
14694  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 24 Aug 1996 19:09:30 +0100
14696 dpkg (1.3.8) unstable; urgency=low (high for new source format)
14698   * dpkg-buildpackage -sa, -si options work correctly.
14700   * update-rc.d(8) updated to reflect design and reality.
14701   * Programmers' and policy manual updates.
14703  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Fri, 23 Aug 1996 12:48:26 +0100
14705 dpkg (1.3.7) unstable; urgency=low (medium for source pkg docs)
14707   * dselect +/-/_/= on lines for all broken, new, local or whatever
14708     packages do not affect _all_ packages.  (Bug#4129.)
14710   * Support for diff-only uploads in source packaging tools.
14711   * dpkg-genchanges -d<descripfile> option renamed to -C.
14712   * dpkg-buildpackage understands -m, -v, -C (for dpkg-genchanges).
14713   * Support for debian/shlibs.local added to dpkg-shlibdeps.
14714   * Shared library files' search order defined in dpkg-source(1), and
14715     relevant files added to the FILES section.
14717   * Programmers' manual describes source packaging tools.
14718   * Policy manual mentions shared library control area file.
14719   * dpkg-source manpage includes dpkg-shlibdeps in title line.
14720   * Manuals have changelog and automatic version numbering.
14721   * changelogs (for dpkg and for manuals) installed.
14722   * binary target split into binary-arch and binary-indep in manual.
14723   * Manpages should be compressed.
14724   * Copyright file is moved to /usr/doc/<package>/copyright.
14725   * Changelogs must be installed in /usr/doc/<package>.
14727   * dpkg-deb(8) moved to dpkg-deb(1).
14729   * binary target split into binary-arch and binary-indep in source.
14730   * changelog entry for 1.2.14 copied from that (forked) release.
14732  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 22 Aug 1996 15:36:12 +0100
14734 dpkg (1.3.6) experimental; urgency=low (HIGH for new source format)
14736   * dpkg-source now has broken argument unparsing for tar.  (Bug#4195.)
14738   * dpkg-gencontrol writes to debian/tmp/DEBIAN/control by default.
14739   * dpkg-shlibdeps script added.
14741   * Back to old sh update-rc.d, and removed manpage, because new Perl
14742     version and the manpage have different syntax and semantics.
14743   * update-rc.d prints usage message for missing terminal `.'.  (Bug#4122.)
14745   * Use rm -rf instead of just rm -r in dpkg-deb --info &c.  (Bug#4200.)
14747   * Added support for Installed-Size to dpkg-gencontrol, and documented.
14748   * Source packaging substitution variables and name syntax rationalised.
14749   * dpkg-source scripts' usage messages improved slightly.
14750   * dpkg-source works with non-empty second (orig dir) argument.
14752   * Added rationale for copyright policy to manual.
14753   * More developers' PGP keys.
14754   * Control database handling cleanups (usu. Source field blanked).
14756  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 20 Aug 1996 15:39:58 +0100
14758 dpkg (1.3.5) experimental; urgency=low (high for debian-changelog-mode)
14760   * 822-date script included.  (Bug#4136.)
14761   * debian-changelog-add-version works on empty file.
14762   * debian-changelog-mode mode-help works properly.
14764   * dpkg-source tells patch not to make numbered backups.  (Bug#4135.)
14766   * More developers' PGP keys.
14767   * Paragraph on uucp -a and -g options removed from policy manual.
14769  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 14 Aug 1996 14:46:47 +0100
14771 dpkg (1.3.4) experimental; urgency=low
14773   * Removed debugging output from dpkg-source -x.  Oops.
14774   * Removed section on source package permissions from policy manual -
14775     dpkg-source now sorts these out.
14777  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sun, 11 Aug 1996 13:25:44 +0100
14779 dpkg (1.3.3) experimental; urgency=low
14781   * Programmers' & policy manuals in source tree; HTML in /usr/doc/dpkg.
14782   * Old guidelines.info and text files in /usr/doc/dpkg removed.
14784   * dpkg-source sets permissions on extracted debianized source tree
14785     and does not copy ownerships out of archive even if running as root.
14787   * Emacs mode `dpkg changelog' renamed to `Debian changelog'.
14788   * Default changelog format renamed from `dpkg' to `debian'.
14790   * debian-changelog-mode sets fill-prefix correctly.
14791   * debian-changelog-mode urgencies except HIGH lowercase by default.
14792   * debian-changelog-mode displays keymap in doc string and so mode help.
14794   * More maintainers' PGP keys.
14796   * Remove built changelog parsers with `clean' target in source.
14798  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 10 Aug 1996 23:35:51 +0100
14800 dpkg (1.3.2) experimental; urgency=LOW (MEDIUM for dpkg-source)
14802   * Faster update-rc.d written in Perl by Miquel van Smoorenburg.
14803   * install-info --test doesn't lock dir.  (Bug#3992, thanks Darren).
14805   * dpkg-source doesn't break in the presence of any symlinks.
14807   * More developers' keys added to doc/developer-keys.pgp.
14808   * Install developers' keys in /usr/doc/dpkg/developer-keys.pgp.
14809   * dpkg-source documents undefined substvar behaviour.
14810   * minor debian/rules cleanups.
14812  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 10 Aug 1996 02:13:47 +0100
14814 dpkg (1.3.1) experimental; urgency=LOW
14816   * manpage for dpkg-source et al now available.
14817   * dpkg-changelog-mode.el installed in site-lisp, but still no autoload.
14819   * dpkg-source prints correct string for not-understood tar -vvt output.
14820   * dpkg-source parsing of tar -vvt output made more robust.
14822   * dpkg-buildpackage prints usage message on usage error.
14823   * dpkg-gencontrol can print usage message.
14824   * -T<varlistfile> option added to dpkg-source.
14825   * Description of -f<fileslistfile> corrected in dpkg-distaddfile usage.
14826   * -m<maintainer> synopsis changed in dpkg-genchanges usage.
14827   * debian/substvars may now contain blank lines.
14829  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 8 Aug 1996 02:36:04 +0100
14831 dpkg (1.3.0) experimental; urgency=LOW
14833   * dpkg can install named pipes.
14834   * dpkg-deb supports directory for destination, generates filename.
14835   * dpkg-{source,gencontrol,genchanges,parsechangelog,buildpackage},
14836     dpkg-distaddfile scripts to support new source package format.
14837   * a.out build no longer supported.
14838   * Changed to new source package format.
14840  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 6 Aug 1996 02:31:52 +0100
14843 dpkg (1.2.14) stable unstable; urgency=MEDIUM
14845   * dselect +/-/_/= on lines for all broken, new, local or whatever
14846     packages do not affect _all_ packages.  (Bug#4129.)
14848   * NOTE - THE HISTORY FORKS HERE.  1.2.14's change appears in 1.3.7.
14850  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 22 Aug 1996 00:39:52 +0100
14853 dpkg (1.2.13) unstable; urgency=LOW
14855   * dpkg --search produces correct output for diversions.
14856   * dpkg-name remove unnecessary arch missing warning.  (Bug#3482.)
14858   * dpkg-deb --build warns about uppercase chars in package name.
14860   * dpkg-scanpackages error messages updated and manpage provided
14861     (thanks to Michael Shields).
14862   * dpkg-scanpackages warns about spurious entries in override file.
14863   * dpkg-scanpackages `noverride' renamed to `override' everywhere.
14864   * dpkg-scanpackages field ordering to put Architecture higher.
14865   * dpkg-scanpackages field names capitalised appropriately.
14866   * dpkg-scanpackages invokes find with -follow.  (Bug#3956.)
14868   * guidelines say #!/usr/bin/perl everywhere, not #!/bin/perl.
14869   * Many developers' PGP keys added.
14871   * configure script uses ${CC} instead of $(CC) (again :-/).
14872   * developers' keys included in dpkg source tree and /usr/doc.
14873   * configure remade using autoconf 2.10-3 (was 2.4-1).
14875  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 1 Aug 1996 02:46:34 +0100
14877 dpkg (1.2.12); priority=LOW
14879   * dpkg --search and --list understand and comment on diversions.
14880   * dpkg-divert displays diversions more intelligibly.
14882   * Guidelines are somewhat clearer about descriptions.
14883   * deb(5) describes new format; old moved to deb-old(5).  (Bug#3435.)
14884   * deb-control(5) carries a warning about being out of date.
14886   * Added 1996 to dselect version/copyright.
14888  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 4 Jul 1996 15:04:49 +0100
14890 dpkg (1.2.11); priority=MEDIUM
14892   * dselect had dependency bug if installed package newer than avail.
14893   * Added `replaces' to dselect's list of package relationship strings.
14895  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 1 Jul 1996 02:51:11 +0100
14897 dpkg (1.2.10); priority=MEDIUM
14899   * Fixed bug in old-style version/revision number parsing.  (Bug#3440.)
14901  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 29 Jun 1996 03:32:45 +0100
14903 dpkg (1.2.9); priority=MEDIUM
14905   * Fixed status database updates reading bug.
14906   * `Setting up' message includes version number.
14907   * `existence check' message changed to say `cannot access archive'.
14909  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 27 Jun 1996 13:39:36 +0100
14911 dpkg (1.2.8); priority=LOW
14913   * dpkg --record-avail puts data in Size field.
14914   * strip / for rmdir(2) in cleanup to work around kernel bug.  (Bug#3275.)
14915   * dpkg-split --msdos no longer allows `-' and other chars in filenames.
14917   * manual dpkg-split(8) written.
14918   * dpkg-split minor typo in --auto usage error message fixed.
14919   * dpkg-deb(8) very minor cosmetic fix to --build option.
14921  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 25 Jun 1996 03:00:14 +0100
14923 dpkg (1.2.7); priority=LOW
14925   * dpkg-scanpackages syntax errors fixed.
14927  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Fri, 21 Jun 1996 04:10:38 +0100
14929 dpkg (1.2.6); priority=MEDIUM
14931   * NFS, CDROM and partition dselect methods include mountpoint
14932     in paths given to dpkg in [I]install, so they should now work.
14934   * Removed some leftover files from source tree.
14936  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 12 Jun 1996 14:35:19 +0100
14938 dpkg (1.2.5); priority=MEDIUM
14940   * Allow, but do not create, packages in half-installed state
14941     with no version number.  (Aargh.)
14943  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 10 Jun 1996 04:55:43 +0100
14945 dpkg (1.2.4); priority=MEDIUM
14947   * New dpkg-name from Erick (<pkg>_<version>_<arch>.deb convention).
14948   * Disappeared packages can't own conffiles any more !  (Bug#3214.)
14949   * install-info creates Miscellaneous sections with a newline
14950     following the heading.  (Bug#3218.)
14951   * cleanup-info script installed in /usr/sbin; called as appropriate
14952     by postinst.  Thanks to Kim-Minh Kaplan.  (Bug#3125.)
14953   * Allow superseded Essential packages to be purged after they've
14954     been removed (clear the Essential flag on removal, and ignore it
14955     on packages that are in stat_configfiles).
14957   * dselect disk methods understand `y' as well as `yes' for using
14958     development tree.
14959   * dselect doesn't make packages appear as `new' again if update
14960     of available packages fails.
14961   * dselect places method selection cursor over option last selected.
14963   * dpkg-scanpackages doesn't die when repeated packages are found.
14964   * dpkg-scanpackages allows many old maintainers (`//'-separated).
14966   * `Version' field is now mandatory (some operations already
14967     wouldn't work right anyway if it wasn't there).
14969   * update-rc.d(8) now says you must remove the script.  (Bug#3215.)
14970   * dpkg --force-help says that --force-overwrite is on by default.
14971   * dpkg-deb manpage rewritten.
14972   * debian.README (= /usr/doc/copyright/dpkg) edited slightly.
14974   * Some database parsing grunge removed (pdb_preferversion, &c).
14975   * Source tree doc/sgml contains some embryonic manuals.
14976   * Leftover files in lib directory in source tree deleted.
14978  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 10 Jun 1996 03:52:01 +0100
14980 dpkg (1.2.3); priority=HIGH
14982   * install-info doesn't replicate section headings (Bug#3125, #2973).
14983   * New dpkg-name manpage broken off from script (oops!).
14984   * dselect help screens made consistent with new strings, flags, &c.
14985   * dselect error flag column labelled E (Error), not H (Hold).
14986   * `Escape' no longer bound to `exit list without saving' in dselect.
14988  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 28 May 1996 02:14:57 +0100
14990 dpkg (1.2.2); priority=MEDIUM
14992   * Fixed dselect coredump found by Erick Branderhorst (thanks).
14993   * Sort obsolete removed packages separately, not under Available.
14995  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 23 May 1996 21:31:05 +0100
14997 dpkg (1.2.1); priority=MEDIUM
14999   * `=' key in dselect really does `hold' rather than `unhold'.
15000   * dselect dependency processing now interacts better with `hold'.
15001   * dselect `I' key (not `i') modifies display of the info window.
15002   * dselect shows unavailable packages as being unavailable.
15003   * dselect main menu headings and many other strings changed to try to
15004     discourage people from deselecting every package and using [R]emove.
15005     Notably, `select' changed to `mark' throughout.
15007   * dselect disk methods now print a few fewer double slashes.
15008   * dselect disk access methods will offer to use dpkg --record-avail
15009     to scan the available packages, if no Packages file is found.
15011   * New dpkg --compare-versions option, for the benefit of scripts &c.
15012   * New dpkg --clear-avail option forgets all available packages info.
15013   * New dpkg --print-avail option, prints `available' data (from Packages, &c).
15014   * dpkg usage message is more informative, but no longer fits on screen.
15015   * dpkg --avail option renamed --record-avail.
15017   * Latest dpkg-name from Erick Branderhorst.
15018   * dpkg-scanpackages has more sensible problem reporting.
15019   * postinst configure now gets null argument (not <unknown> or <none>)
15020     when there is no previously configured version.
15022   * Guidelines say that postinst configure is given previous version.
15023   * Guidelines don't refer to maintainer-script-args.txt in main text.
15024   * Guidelines (Texinfo source) uploaded separately.
15026   * Own version of strcpy (used for debugging) removed.
15027   * Interface to access methods document in source (doc/dselect-methods.txt).
15028   * debian.buildscript moves changes file into parent directory.
15030  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 22 May 1996 01:26:31 +0100
15032 dpkg (1.2.0); priority=MEDIUM
15034   * dselect can sort packages by available and installed states, and
15035     display their version numbers.  (Use O, o and V.)
15036   * Hold is properly integrated as a real `wanted state', rather than
15037     a separate flag.
15038   * Epochs in version numbers implemented, using the syntax
15039     <epoch>:<version>-<revision>.  (Epoch not usually displayed.)
15040   * dselect disk method is architecture-independent (uses dpkg's
15041     installation architecture, and looks in the right part of the tree).
15043   * dselect disk method doesn't try to satisfy the predependencies of
15044     packages which are on hold.
15045   * Fixed conflict-related assertion failure.  (Bug#2784.)
15046   * conffiles do not cause file conflicts if the conflicting package
15047     is in the `configuration only' state.  (Bug#2720.)
15048   * Fixed messages where available version number was reported as installed
15049     version in conflict and dependency messages.  (Bug#2654, Bug#2974.)
15051   * New format .deb files are default even for a.out compiles (but
15052     a.out version of dpkg is in old format).
15053   * Characters @:= (at colon equals) in package names now strictly
15054     forbidden everywhere (_ is still allowed in existing packages).
15055   * New dpkg --print-installation-architecture option prints installation
15056     architecture (compiled in), rather than build architecture (determined
15057     from gcc -print-libgcc-file-name).
15059   * Version messages show whether compiled a.out or ELF (i386 only).
15060   * Fixed missing space in version syntax error messages.
15061   * Manpage dpkg.8 installed with warning about inaccuracy.
15063   * Guidelines don't say to stop and restart daemons in runlevels 2345;
15064     instead they say to start in 2345 and stop in 016.
15065   * Guidelines and version messages say just Debian Linux.
15066   * Guidelines typo fix for '"stop"'.  (Bug#2867.)
15068   * doc/Makefile.in clean properly deletes various guidelines.info* files.
15070  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 16 May 1996 00:01:21 +0100
15072 dpkg (1.1.6); priority=MEDIUM
15074   * Check virtual dependencies when removing (ouch! - thanks SDE.)
15075   * Fixed bug in internal database validity management that could
15076     make dselect and dpkg dump core.  (Bug#2613.)
15077   * Fixed two coredumping bugs when using local diversions.  (Bug#2804.)
15078   * Fixed disappearance of overwritten packages.  (Bug#2696.)
15079   * install-info won't modify dir file before start of menu.
15080   * install-info will create Miscellaneous heading if no sections yet.
15082   * Only alphanums and +-. allowed in package names - enforced by
15083     dpkg-deb --build and documented in Guidelines.
15084   * dselect doesn't display packages unless they are installed, selected
15085     or available.
15086   * dselect doesn't show spurious section and priority headings.
15087   * dselect has a few extra keybindings (from Lee Olds).
15088   * --force message changed to `--force enabled' so that default is OK.
15090   * dpkg-name now includes architecture component in .deb filename,
15091     and translates - in package name to _.
15092   * .deb file has architecture component in filename.
15094   * Guidelines changed to say Pre-Depends is for experts only.
15095   * Guidelines say to provide a unidiff (-u) rather than an old context diff.
15096   * Guidelines say 755 root.root for shared libraries.
15098  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 1 May 1996 00:47:22 +0100
15100 dpkg (1.1.5); priority=MEDIUM (HIGH for diversions users)
15102   * Fixed coredump when using diversions.  (Bug#2603.)
15103   * Fixed typo in dpkg-divert which could lose diversions.  (Bug#2662.)
15105   * --force-overwrite is the default.
15106   * diversions.text provides better examples.
15108  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 10 Apr 1996 13:59:30 +0100
15110 dpkg (1.1.4); priority=MEDIUM
15112   * Allow overwriting of conflicting packages being removed.  (Bug#2614.)
15114   * a.out control file says Pre-Depends: libc4 | libc.  (Bug#2640.)
15115   * ELF control file and libc dependencies changed to use finalised scheme.
15116   * ELF control file and libc dependencies for i386 only.  (Bug#2617.)
15118   * Guidelines say use only released libraries and compilers.
15119   * Install wishlist as /usr/doc/dpkg/WISHLIST.
15120   * Remove spurious entries for Guidelines in info dir file.
15122   * dpkg-deb --build checks permissions on control (DEBIAN) directory.
15124   * Spaces in control file fields not copied by dpkg-split.  (Bug#2633.)
15125   * Spaces in split file part control data ignore.  (Bug#2633.)
15127   * Portability fixes, including patch from Richard Kettlewell.
15128   * Fixed minor configure.in bug causing mangled GCC -W options.
15130  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 4 Apr 1996 01:58:40 +0100
15132 dpkg (1.1.3); priority=LOW
15134   * dselect disk methods support Pre-Depends installation ordering.
15135   * When dpkg fails and --auto-deconfigure would help it says so.
15136   * dpkg --search output lists several packages with same file on one line.
15137   * Improved dpkg usage message somewhat.
15139   * dpkg-deb --build checks permissions and types of maintainer scripts.
15140   * dpkg-deb --build treats misspecified conffiles as error, not warning.
15141   * dpkg --print-architecture prints compiler's architecture while
15142     dpkg --version (&c) print system's arch (this to help cross-compiling).
15143   * More minor guidelines changes, including dir entry fixup.
15145   * configure script caches more values.
15146   * Changed maintainer email address to ian@chiark.chu.cam.ac.uk.
15148  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 16 Mar 1996 19:18:08 +0000
15150 dpkg (1.1.2); priority=LOW
15152   * Packaging guidelines installed properly (and as guidelines
15153     rather than debian-guidelines).
15154   * ELF version has more checks to stop you wrecking your dpkg installation.
15155   * dselect disk methods now look for a `local' tree as well, for
15156     people who want locally-available software of various kinds.
15157   * dpkg-divert has debugging message removed.
15158   * Minor guidelines changes.
15160   * Various makefile cleanups, mainly to do with ELF vs. a.out support.
15161   * debian.rules cleans out ~ files itself, as well as calling make clean.
15162   * debian.rules names .nondebbin.tar.gz file ELF too, if appropriate.
15164  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 14 Mar 1996 03:38:29 +0000
15166 dpkg (1.1.1elf); priority=LOW
15168   * Added /usr/lib/dpkg/elf-executables-ok and elf-in-kernel.
15169   * Replaces field now allows automatic removal of conflicting packages.
15170   * Replaces field now required to overwrite other packages' files.
15171   * Architecture field, and dpkg --print-architecture, supported.
15172   * build new format archives by default when compiled with ELF compiler.
15174   * symlinks are now installed atomically (good for shared libraries).
15175   * create /var/lib/dpkg/diversions in postinst if necessary (Bug#2465.)
15176   * Pre-Depends now correctly fails if package never configured.
15177   * dselect disk methods mount with -o nosuid,nodev.
15178   * update-rc.d defaults doesn't add both K and S in any one runlevel;
15179     dpkg postinst fixes up this situation if it sees it.
15181   * Assorted fixups to the Guidelines, which are now in one piece.
15182   * dpkg --list prints version string in one piece.
15183   * dpkg-scanpackages doesn't produce notice on output with list of
15184     packages with Section and/or Priority control file fields.
15186   * control file and debian.rules work both for ELF and non-ELF compiles.
15187   * most files compiled with -O2 (-O3 only for some critical files) -
15188     this fixes ELF build.
15190  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 11 Mar 1996 04:25:28 +0000
15192 dpkg (1.1.0); priority=LOW
15194   * dpkg supports Pre-Depends.
15195   * postinst script gets most-recently-configured version as $2.
15197   * lib/tarfn.c #includes <errno.h> (portability fix).
15199  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 11 Feb 1996 21:07:03 +0000
15201 dpkg (1.0.17); priority=LOW
15203   * dpkg --recursive follows symlinks (useful for devel tree).
15205  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 10 Feb 1996 15:58:46 +0000
15207 dpkg (1.0.16); priority=LOW
15209   * dpkg-deb much faster reading new format archives.  (Bug#2256.)
15210   * Developers' documentation in /usr/doc/dpkg/, /usr/info/.
15212   * Fixed typo in control file Description.
15214   * configure script tries to improve matters wrt sysinfo.
15215   * any debian-tmp.deb is deleted by `./debian.rules clean'.
15217  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 4 Feb 1996 15:51:59 +0000
15219 dpkg (1.0.15); priority=LOW
15221   * dselect disk methods should never unmount things they didn't mount.
15222   * debian.README aka /usr/doc/copyright updated.
15224  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 30 Jan 1996 15:05:39 +0000
15226 dpkg (1.0.14); priority=MEDIUM
15228   * fixed file descriptor leak in dpkg introduced in 1.0.11.
15229   * included dpkg-name in this package (conflicts with dpkg-name).
15231   * redraw in dselect main menu changed to use clearok (like in lists).
15232   * sa_restorer in struct sigaction no longer used (portability fix).
15233   * removed Guidelines from source package.
15235  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 30 Jan 1996 02:52:29 +0000
15237 dpkg (1.0.13); priority=MEDIUM
15239   * dselect partition and mounted methods work again.
15240   * dpkg-deb --no-act in usage message.
15242  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 26 Jan 1996 18:37:03 +0000
15244 dpkg (1.0.12); priority=MEDIUM (HIGH for users of 1.0.11)
15246   * Fixed frequent dpkg coredump introduced in 1.0.11.  (Bug#2219.)
15247   * dpkg-deb ensures version numbers start with alphanumerics.
15249  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 24 Jan 1996 00:42:31 +0000
15251 dpkg (1.0.11); priority=MEDIUM
15253   * corrected potentially serious problem with dpkg low-memory in-core
15254     files database.
15255   * dpkg-split --msdos puts output files in right directory.  (Bug#2165.)
15257   * diversions implemented - see `dpkg-divert --help'.
15259   * dselect shows and uses (for dependencies) currently installed
15260     version of a package if that is more recent.
15261   * dpkg --force-... options are in separate help screen.
15262   * better error messages for corrupted .deb archives.  (Bug#2178.)
15263   * dselect NFS method will unmount correct copy of NFS area if mounted
15264     twice.
15266   * removes some ELF compilation warnings.
15268  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 19 Jan 1996 02:41:46 +0000
15270 dpkg (1.0.10); priority=MEDIUM
15272   * dpkg-deb option parsing unmuddled (-I option was removed
15273     in 1.0.9 and broke dpkg-deb).  (Bug#2124.)
15275   * dpkg-split will work when ELF `ar' is installed, and is faster.
15277   * nfs dselect method now available.
15278   * disk methods don't prompt spuriously for Packages files.
15279   * cdrom+harddisk methods can find Packages files.
15281   * dpkg-scanpackages (creates Packages files) now in /usr/sbin.
15283   * various changes to help compilation of dpkg-deb, dpkg-split
15284     and md5sum on non-Debian systems.
15285   * <sys/fcntl.h> replaced by <fcntl.h> throughout.
15287  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 14 Jan 1996 02:55:19 +0000
15289 dpkg (1.0.9); priority=MEDIUM
15291   * dselect uninitialized variable coredump fixed (thanks Carl).
15293   * version numbers printed by --version fixed.  (Bug#2115.)
15294   * disk method problem with missing Packages files fixed.  (Bug#2114.)
15295   * dependency version relationships now <= >= << >> =.  (Bug#2060.)
15297   * install-info is in /usr/sbin, not /usr/bin.  (Bug#1924.)
15298   * dpkg regards Revision field as obsolete.
15300   * <asm/unistd.h> changed to <linux/unistd.h> (for m68k port).
15301   * scripts/Makefile.in `clean' target deletes scripts.
15303  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 11 Jan 1996 20:51:20 +0000
15305 dpkg (1.0.8); priority=LOW
15307   * update-alternatives slightly more helpful message.  (Bug#1975.)
15308   * cosmetic improvements to disk installation method.  (Bug#1970,1956.)
15309   * mounted filesystem and unmounted partition separate methods.  (Bug#1957.)
15311  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 12 Dec 1995 04:07:47 +0000
15313 dpkg (1.0.7); priority=MEDIUM (HIGH to upgrade syslogd)
15315   * dselect harddisk/CDROM method script handles multiple package
15316     areas.
15317   * Everything has a manpage, though many are very unhelpful indeed.
15319  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 30 Nov 1995 03:59:14 +0000
15321 dpkg (1.0.6); priority=MEDIUM (HIGH to upgrade syslogd)
15323   * conffiles can now be taken over properly from one package by
15324     another which replaces it.  (Bug#1482.)
15325   * dpkg will not deconfigure essential packages when --auto-deconfigure
15326     is set (this bug was fairly unlikely ever to be exercised).
15328   * dpkg checks for the presence of certain important programs on the PATH.
15329   * dselect is now more informative when a dependency is missing, saying
15330     "<package> does not appear to be available".  (Bug#1642, 1705).
15332   * `make distclean' fixed; config.* &c removed from source archive.
15333   * lib/lock.c now uses fcntl rather than flock, for better portability.
15335   * `Package_Revision: 0' removed from control file.
15336   * Some inaccuracies and bad formatting in various messages corrected.
15338  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 21 Nov 1995 20:15:18 +0000
15340 dpkg (1.0.5); priority=LOW
15342   * dpkg-split allows some space for the header.  (Bug#1649.)
15343   * dpkg-split now has --msdos option for 8.3 filenames.
15344   * dpkg-split --join &c will not complain about trailing garbage.
15346   * dselect & dpkg will no longer ignore SIGHUP will running subprocesses.
15348  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 13 Oct 1995 13:59:51 +0100
15350 dpkg (1.0.4); priority=MEDIUM (HIGH for dselect users with 1.0.3)
15352   * fixed bug which prevented dselect from displaying the bottom line of
15353     any listing screen.  This was introduced in 1.0.3, sorry !
15355   * a conffile will never cause a prompt if the package maintainer
15356     distributes a file identical to the user's, even if the file has
15357     been edited by both the user and the maintainer or is a
15358     newly-registered conffile.  (Bug#1639.)
15360   * dselect disk/cdrom method script says where to get Packages file.
15361   * dselect help has better descriptions of the functions of Return and Q.
15363   * postinst now warns about some problems with /usr/lib/dpkg/methods/hd.
15365  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 12 Oct 1995 01:45:38 +0100
15367 dpkg (1.0.3); priority=MEDIUM
15369   * dselect: fixed segfault when doing some multiple (de)selections.
15371  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 10 Oct 1995 03:21:12 +0100
15373 dpkg (1.0.2); priority=MEDIUM
15375   * problem with screen refresh after `o' (change order) corrected.
15377  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 9 Oct 1995 13:11:04 +0100
15379 dpkg (1.0.1); priority=LOW
15381   * much better dpkg performance on low-memory systems.
15382   * start-stop-daemon --name should now work. (oops!)
15383   * fixed typo which could turn into memory overwriting bug sometime.
15385  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 8 Oct 1995 20:12:29 +0100
15387 dpkg (1.0.0); priority=LOW
15389   * Version 1.0.0: dpkg is no longer beta.
15391   * tar extractor no longer looks up an empty string using getgrnam
15392     (this causes the libc to coredump when using NIS).
15394  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 1 Oct 1995 13:07:36 +0100
15396 dpkg (0.93.80); priority=LOW
15398   * dselect help screen intro changed to remove `much' before `help'.
15400   * update-alternatives.pl contains hardcoded ENOENT value, instead
15401     of requiring POSIX.pm to be present.
15403   * Makefiles changed to strip when installing instead of when building.
15405  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 30 Sep 1995 01:44:12 +0100
15407 dpkg (0.93.79) BETA; priority=LOW
15409   * DPKG_NO_TSTP environment variable which stops dpkg sending the
15410     process group a SIGTSTP (Bug#1496).
15411   * End key should work in dselect lists (Bug#1501).
15412   * various message typos (missing \n's) fixed (Bug#1504).
15414  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 29 Sep 1995 03:27:01 +0100
15416 dpkg (0.93.78) BETA; priority=LOW
15418   * dselect keystrokes help file typo fix.
15420  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 28 Sep 1995 20:31:02 +0100
15422 dpkg (0.93.77) BETA; priority=MEDIUM
15424   * dpkg --remove --pending will purge things when appropriate.
15426   * fixed failure to null-terminate dpkg conflict problem messages.
15427   * fixed bug in formatting of dependency version problem messages.
15429   * Conffiles resolution prompt for new conffile: typo fixed.
15430   * Changed dpkg usage error to suggest `-Dhelp' instead of `--Dhelp'.
15432  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 20 Sep 1995 23:44:35 +0100
15434 dpkg (0.93.76) BETA; priority=MEDIUM
15436   * dpkg --auto-deconfigure option (used automatically by dselect) allows
15437     `important' packages which many others depend on to be split.
15438   * dpkg should no longer fail an assertion during complicated
15439     multiple configurations involving packages which are on hold.
15441   * update-alternatives supports negative priorities.
15442   * /etc/alternatives is included in the .deb archive.
15444   * Package priorities changed: Required (Req), Important (Imp), Standard (Std),
15445     Optional (Opt) and Extra (Xtr).  For backward compatibility Base is an
15446     alias for Required, and Recommended is kept as a level just below Standard.
15448   * dselect shows introductory help screen when entering package lists (both
15449     main and recursive).
15450   * dselect help messages made more friendly.
15451   * dselect package list `quit, confirm, and check dependencies' key is
15452     now Return rather than lowercase `q'; likewise method list `select this
15453     one and configure it' key.
15454   * dselect selects packages with priority `standard' or better by default.
15455   * dselect `v=verbose' becomes `v=terse' when in verbose mode.
15457   * hard disk method unmounts /var/lib/dpkg/methods/mnt on failure.
15458   * disk methods' install message uses `stty' to find out what the
15459     interrupt character is, and uses that in the prompt (rather than ^C).
15460   * dpkg now tolerates ^Z characters in Packages files.
15461   * harddisk method doesn't display extra slash when updating packages file.
15462   * harddisk method burbles less if it doesn't have a good default.
15464   * dpkg-deb now supports new flexible format, but old format still default.
15466  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 20 Sep 1995 02:49:41 +0100
15468 dpkg (0.93.75) BETA; priority=MEDIUM
15470   * dselect no longer segfaults when you try to modify the last item.
15472   * dselect Makefile compiles with -g, and links without -s, but installs
15473     with -s, so that built source directory has debugabble binary.
15475  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 12 Sep 1995 02:59:29 +0100
15477 dpkg (0.93.74) BETA; priority=LOW
15479   * dpkg-split implemented and installed in /usr/bin/dpkg-split.
15480     (NB this is not compatible with Carl Streeter's old dpkg-split script.)
15481   * dpkg uses dpkg-split.
15482   * floppy disk method available - NB this is a first attempt only.
15484   * hard disk method uses --merge-avail rather than --update-avail.
15485   * installation by default of `standard' packages removed again.
15486     (I don't think this is the right place to do this.)
15487   * update-alternatives --remove correctly deletes all slave links;
15488     minor cosmetic improvements.
15490  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 11 Sep 1995 02:06:05 +0100
15492 dpkg (0.93.73) BETA; priority=LOW
15494   * dselect multi-package selection now done by `divider' lines
15495     actually in the package list, rather than horizontal highlight
15496     movement.
15497   * dselect help available, and keybindings rationalised.
15499   * postinst removes /usr/lib/dpkg/methods/hd if upgrading from
15500     0.93.42.3 or earlier.
15501   * `hold' flag changed to be settable by the user only, and
15502     made orthogonal to the `reinstallation required' flag.
15503   * dpkg will install by default any packages with priority of
15504     `standard' or better unless they're explicitly deselected.
15506   * dselect dependency/conflict resolution will suggest marking absent
15507     packages for `purge' rather than `deinstall'.
15508   * disk method script produces message about invoking dpkg.
15509   * dpkg produces warning, not error, when it gets EPERM trying to
15510     remove a directory belonging to a package being removed.
15511   * dpkg, dpkg-deb usage error reporting improved.
15512   * dselect detects too-dumb terminals and stops.
15513   * dpkg-deb(8) updated a little (thanks to Bill Mitchell).
15515   * dselect debugmake script uses -O0.
15517  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 10 Sep 1995 12:23:05 +0100
15519 dpkg (0.93.72) BETA; priority=MEDIUM
15521   * /usr/sbin/update-alternatives added.
15523   * New names for certain control file fields (old names work
15524     as aliases): Optional -> Suggests, Recommended -> Recommends,
15525     Class -> Priority.
15527  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 3 Sep 1995 16:37:41 +0100
15529 dpkg (0.93.71) BETA; priority=LOW
15531   * dpkg doesn't silently overwrite `new' conffiles (Bug#1283).
15532   * case now not significant in Essential, Status and Class (Bug#1280).
15533   * dselect checks method scripts for execute, not for write.
15535   * spelling fixes in lib/dbmodify.c and dselect/helpmsgs.src.
15537   * dselect `clean' target deletes helpmsgs.cc and helpmsgs.cc.new.
15539  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 31 Aug 1995 13:56:08 +0100
15541 dpkg (0.93.70) BETA; priority=MEDIUM
15543   * dselect unmounted harddisk method has many silly bugs fixed.
15545   * dpkg --root option restored (was removed by mistake in 0.93.68).
15546   * minor cosmetic change to dselect subprocess failure message.
15548  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 9 Aug 1995 22:18:55 +0100
15550 dpkg (0.93.69) BETA; priority=MEDIUM
15552   * dpkg --configure and --remove should work properly when
15553     they have to defer processing (this tends to happen when many
15554     packages are processed at once).  (Bug#1209.)
15556   * dpkg --configure and --remove work better when `processing'
15557     several related packages with --no-act.
15559   * dpkg --auto is now two options, --pending or -a (for configure,
15560     remove, &c) and --recursive or -R (for install, unpack, &c).
15562   * dpkg debug options in usage message, and values available (-Dh).
15564  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 9 Aug 1995 22:18:55 +0100
15566 dpkg (0.93.68) BETA; priority=MEDIUM
15568   * dpkg won't get an internal error if you try to use the default
15569     conffiles response (ie, if you just hit return).  (Bug#1208.)
15571   * dselect hard disk and CD-ROM methods - the real thing, but ALPHA.
15573   * dselect allows you to go straight to `update' or `install' if
15574     you have already set up an access method.
15575   * new dpkg options --yet-to-unpack, --merge-avail and --update-avail.
15576   * dpkg -G is an abbreviation for dpkg --refuse-downgrade.
15577   * dpkg -R alias for --root withdrawn, pending reuse with different meaning.
15578   * dpkg --help message rationalised somewhat.
15580   * Obsolete `examples' and `dpkg-split' directories removed from
15581     source tree.  The `hello' package is a better example.
15583  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 7 Aug 1995 02:16:25 +0100
15585 dpkg (0.93.67) BETA; priority=LOW for C dpkg alpha testers, HIGH for others
15587   * dpkg no longer statically linked and -g.
15588   * calls to abort() changed to print string, file and line number first.
15589   * removed unused variable from dpkg source.
15591  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 4 Aug 1995 01:39:52 +0100
15593 dpkg (0.93.66) ALPHA; priority=MEDIUM
15595   * dpkg will correctly remove overwritten files from the lists of
15596     the package(s) that used to contain them.
15598   * dpkg --purge is now an action, rather than a modifier for --remove,
15599     and the -P alias for it is withdrawn.
15601   * dpkg --unpack/--install filenames in messages are now more sensible
15602     about when to use .../ (show as many trailing components as possible
15603     in 40 characters, or the whole path if that the last component is
15604     longer than that).
15606  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 3 Aug 1995 02:11:03 +0100
15608 dpkg (0.93.65) ALPHA; priority=MEDIUM
15610   * dpkg --remove should, when a package being removed is depended-on
15611     by another that is also queued for removal, defer the depended-on
15612     package rather than aborting it.  (Bug#1188.)
15614   * dpkg will not attempt to configure or remove a package more than
15615     once in the same run.  (Bug#1169.)
15617   * dpkg cosmetic fix to dependency problems message (this bug
15618     hasn't been triggered to my knowledge).
15620   * perl-dpkg no longer installed in /usr/bin.
15622  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 2 Aug 1995 13:02:58 +0100
15624 dpkg (0.93.64) ALPHA; priority=MEDIUM
15626   * dpkg marks a package as no longer `to be configured in this run'
15627     when an error occurs, so that other packages which depend on it
15628     will fail (rather than causing a loop and an assertion failure,
15629      packages.c:166: failed assertion `dependtry <= 4').
15631   * dselect initial selection granularity is single-package.
15632   * dpkg --no-also-select option renamed to --selected-only (old option
15633     still accepted, but no longer in --help).  Changed -N to -O.
15635   * dselect `update' option changed to `install' (and other options
15636     renamed too).  NB: old access methods will not work, because
15637     the `update' script should now be an `install' script.
15639   * dselect `installation methods' renamed to `access methods'.
15640   * dpkg --skip-same-version and --refuse-downgrade produce friendlier
15641     messages when they skip packages.
15642   * --licence option now properly mentioned in all programs' --version
15643     messages.
15645   * bad fix for ELF compile problem involving myopt.h removed (compile
15646     problem turned out to be a GCC bug.)
15648  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 1 Aug 1995 03:03:58 +0100
15650 dpkg (0.93.63) ALPHA; priority=LOW
15652   * preinst works around shell bug/misfeature involving `trap'.
15654   * dpkg --skip-same-version doesn't skip packages which have
15655     an error flag set or which aren't in a standard `installed' state.
15657   * dpkg --search now does a substring search if the string doesn't
15658     start with a wildcard character (*, [ or ?) or slash.
15660   * problem with C/C++ linkage of stuff in "myopt.h" fixed, to help
15661     with compiling with GCC 2.7.0.
15663   * dselect Makefile.in `clean' deletes curkeys.inc &c, so that they are
15664     not shipped in the distribution source and will be rebuilt on the
15665     target system.
15667  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 27 Jul 1995 13:38:47 +0100
15669 dpkg (0.93.62) ALPHA; priority=HIGH
15671   * dpkg purges leftover control scripts from /var/lib/dpkg/tmp.ci,
15672     rather than associating them with the wrong package.  (Bug#1101.)
15674   * dpkg won't `disappear' packages containing no files or directories,
15675     nor a package required for depends/recommended.  (Bug#1128.)
15677   * dpkg follows directory symlinks.  (Bug#1125.)
15679   * dselect fixups for ELF/GCC2.7.0 compilation.
15681  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 21 Jul 1995 21:43:41 +0100
15683 dpkg (0.93.61) ALPHA; priority=LOW
15685   * dselect keybindings and status characters and descriptions changed
15686     (in pursuance of Bug#1037, user interface problems, still open.)
15688   * Some cleanups to fix mistakes discovered by ELF-GCC 2.7.0, and fixup
15689     for newer C++ draft standard (`for' variable declaration scope change).
15691  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 18 Jul 1995 01:42:51 +0100
15693 dpkg (0.93.60) ALPHA; priority=HIGH
15695   * dpkg doesn't think packages have `disappeared' if you install
15696     several packages at once.  (later reported as Bug#1132.)
15698   * usage error messages tidied up.
15700  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 16 Jul 1995 17:56:56 +0100
15702 dpkg (0.93.59) ALPHA; priority=HIGH
15704   * dpkg doesn't break maintainer scripts &c if package `foo' exists
15705     when processing package `foobar'.  (Related to Bug#1101.)
15707   * dpkg implements `disappear' functionality.
15708   * dpkg/dselect remove dead entries from /var/lib/dpkg/status.
15710   * dpkg --list now sorted correctly and output somewhat improved.
15711   * some debugging messages moved from dbg_stupidlyverbose to dbg_scripts.
15712   * dpkg prints `Removing foo' message even if foo is not configured.
15713   * dpkg only prints `serious warning: files list file ... missing'
15714     once for each package.
15716  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 16 Jul 1995 02:32:11 +0100
15718 dpkg (0.93.58) ALPHA; priority=HIGH
15720   * dpkg should write out status even for packages which it has only
15721     encountered in the `available' file so far.
15723  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 14 Jul 1995 20:19:21 +0100
15725 dpkg (0.93.57) ALPHA; priority=LOW
15727   * dpkg does chroot when running maintainer scripts (--instdir
15728     should work right now, though I haven't been able to test it).
15730  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 14 Jul 1995 01:32:30 +0100
15732 dpkg (0.93.56) ALPHA; priority=HIGH
15734   * dpkg can now overwrite symlinks to directories, and will
15735     do correct handling of symlinks to plain files.
15736   * dpkg should not replace any directory with a symlink.
15738  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 13 Jul 1995 02:43:36 +0100
15740 dpkg (0.93.55) ALPHA; priority=MEDIUM
15742   * dpkg can now extract hardlinks.
15743   * dpkg configuration/removal works in the presence of dependency cycles.
15744   * dpkg should no longer fail an assertion at processarc.c:193.
15746  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 12 Jul 1995 01:34:44 +0100
15748 dpkg (0.93.54) ALPHA; priority=MEDIUM
15750   * dpkg and dselect no longer throw away all Class and Section
15751     information in /var/lib/dpkg/available.  (Oops.)
15752   * dpkg --refuse-<something> now works (this broke some dselect
15753     method scripts' attempts to use --refuse-downgrade).
15754   * dpkg --audit and --list implemented.
15756  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 10 Jul 1995 00:35:13 +0100
15758 dpkg (0.93.53) ALPHA; priority=LOW
15760   * dpkg --install/--unpack only skips on-hold packages with --auto.
15761   * dpkg doesn't fclose() the --fsys-tarfile pipe twice.
15762   * dpkg error handling and reporting cleaned up.
15763   * dpkg now lists any failed packages/files just before exiting.
15765  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 9 Jul 1995 16:31:36 +0100
15767 dpkg (0.93.52) ALPHA; priority=MEDIUM
15769   * dpkg won't segfault due to missing (Package_)Revision fields.
15770   * dpkg --search works.
15771   * dpkg will set execute permissions on scripts if necessary.
15772   * dpkg prints filenames in --unpack and --install.
15774  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 8 Jul 1995 12:41:39 +0100
15776 dpkg (0.93.51) ALPHA; priority=HIGH
15778   * dpkg --status and --listfiles now work.
15780   * dpkg --remove --auto won't try to remove everything (!)
15781   * dpkg --unpack doesn't coredump after unpacking the first package.
15782   * dpkg won't fail an assertion if it bombs out of --configure
15783     or --remove because of too many errors.
15785   * Support for `Essential' in dpkg (not yet in dselect).
15786   * `available' (Packages) file class and section override those
15787     from package control files.
15788   * `Essential: yes' added to control file.
15790   * Locking strategy changed, now uses flock (no more stale locks).
15791   * preinst now more helpful about conffiles upgrade problem.
15793  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 8 Jul 1995 01:15:26 +0100
15795 dpkg (0.93.50) ALPHA
15797   * C dpkg now in service.
15799   * dselect now installs in /usr/bin instead of /usr/sbin.
15800   * Improved `explanation of display' help and changed HSOC to EIOW.
15801   * dselect goes back to top of info display when you move the
15802     highlight.
15804   * Added <sys/types.h> to md5sum/md5.c, for the benefit of FreeBSD.
15805   * --admindir doesn't append `var/lib/dpkg' to its argument.
15807  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 19 May 1995 21:03:08 +0100
15809 dpkg (0.93.42.3) BETA; priority=LOW
15811   * Rebuilt using ncurses 1.9.2c-0.
15812   * Silenced `subcritical error' message if errno == ENOENT.
15814  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 12 Jun 1995 13:09:24 +0100
15816 dpkg (0.93.42.2) BETA; priority=HIGH
15818   * install-info --remove properly removes multi-line entries.
15819   * Slightly changed ^L redraw code in dselect package list.
15821  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 10 Jun 1995 14:06:01 +0100
15823 dpkg (0.93.42.1) BETA; priority=HIGH esp. for new installations
15825   * update-rc.d default no longer adds K entries in runlevels 2345.
15827  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 6 Jun 1995 18:56:23 +0100
15829 dpkg (0.93.42) BETA; priority=LOW; HIGH for dselect users
15831   * Fix uninitialized variable reference bug in dselect (#890).
15832   * Fix problem with wordwrapping package and method descriptions.
15833   * Create /var/lib/dpkg/methods/mnt.
15835  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 19 May 1995 21:03:08 +0100
15837 dpkg (0.93.41) BETA; priority=LOW
15839   * Create /var/lib/dpkg/methods.
15840   * dpkg.pl noisily ignores --skip-same-version rather than barfing.
15842  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 16 May 1995 13:28:27 +0100
15844 dpkg (0.93.40) BETA; priority=LOW
15846   * dselect's subprogram failure message made to stand out more.
15848   * When switching out of curses, always move the cursor to the
15849     bottom right corner of the screen.
15851  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 16 May 1995 01:03:38 +0100
15853 dpkg (0.93.39) BETA; priority=LOW
15855   * dselect can now:
15856     - allow you to select and configure an installation method;
15857     - invoke installation method scripts to update the available file
15858       and unpack packages;
15859     - invoke dpkg to configure and remove packages.
15860     There are no installation methods available yet.
15862   * Search feature in dselect works (it was purely an ncurses bug).
15864   * dpkg-*.nondebbin.tar.gz now available (built by debian.rules).
15866   * The target directory for dpkg-deb --extract (also available as
15867     dpkg --extract) is no longer optional.  dpkg-deb suggests the use
15868     of dpkg --install if you omit it.
15870   * Added <errno.h> to lib/lock.c and fixed ref. to `byte' in
15871     md5sum/md5.c, for portability to Solaris 2.
15873   * Rebuilt `configure' and `config.h.in' using autoconf 2.3.
15874   * Revised function attribute support checking in configure script.
15875   * Removed obsolete `dselect.pl' from scripts directory.
15876   * New option --licence on all the C programs.
15878  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 14 May 1995 18:05:38 +0100
15880 dpkg (0.93.38) BETA; priority=MEDIUM
15882   * Version number comparisons (in dpkg and dselect) now >= <=
15883     as documented (Bug#831; thanks to Christian Linhart).
15885   * dselect now has a non-superuser readonly mode.
15886   * dselect doesn't pop up unsatisfied `Optional's when quitting.
15887   * `unable to delete saved old file' message fixed dpkg_tmp to dpkg-tmp.
15889   * Made dpkg convert `revision' to `package_revision' when reading
15890     (eg) the `status' file.  libdpkg.a has `revision' as a synonym
15891     for `package_revision' and writes the former.
15893   * Major improvements and many changes to C option parsing, database
15894     management, error handling, Makefiles &c to support dpkg.
15895   * dpkg-deb should now work if sizeof(void*) < sizeof(void(*)()).
15897  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 24 Apr 1995 12:34:39 +0100
15899 dpkg (0.93.37) BETA; priority=LOW (MEDIUM for dselect users)
15901   * Fixed segfault if no description available (Bug#735);
15902     thanks to Peter Tobias for the bug report.
15903   * Fixed other assorted minor bugs in description displays.
15905   * Changed dpkg-deb --info short option from -i to -I, to make
15906     it unique across dpkg and dpkg-deb (-i still works with
15907     dpkg-deb for backwards compatibility).
15909   * Produce more sensible error when main package list is empty.
15911  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 7 Apr 1995 02:24:55 +0100
15913 dpkg (0.93.36) BETA; priority=LOW (MEDIUM for dselect users)
15915   * All the C code (including dselect) updated to support `provides'
15916     (virtual packages).
15917   * Revamped dselect's related package selection/deselection
15918     algorithms.
15919   * Everything can now handle arbitrary `class' values (as well
15920     as the predefined ones which we understand and can interpret).
15921   * Fixed bug that prevented display update when moving down a small
15922     recursive package list in dselect.
15923   * Column heading characters corrected from `SHOC' to `HSOC'.
15925  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 6 Apr 1995 12:48:13 +0100
15927 dpkg (0.93.35) BETA; priority=MEDIUM
15929  * Preserve ownerships and permissions on configuration files.
15930  * Fix bug in conffile updating that could leave a hardlink
15931    <foo>.dpkg-new to the conffile <foo>.
15933  * Improved dselect's package list help messages.
15934  * Highlight now moves on after (de)selecting just one package.
15935  * Better algorithm for scrolling up/down when moving highlight.
15936  * Fixed bug in display of `preformatted' extended Description lines.
15937    (dselect is still ALPHA, but is fairly stable.)
15939  * Improved dpkg's message when configuring a package that doesn't
15940    exist, and when selecting or skipping a package that isn't
15941    currently selected (during unpack processing).
15943  * Description in control file expanded.
15945  * Scroll back to top when changing what is in the `info' area.
15947 dpkg (0.93.34) BETA; priority=LOW (HIGH for dselect users)
15949  * dselect: Fixed bug which caused a coredump if you exited the
15950    package list if you'd made any changes.  Ouch !
15952  * dselect: Improved selection algorithm to show fewer extraneous
15953    packages; improved display for unavailable packages.
15955  * dpkg: Improved progress messages during unpacking somewhat.
15957 dpkg (0.93.33) BETA; priority=LOW (HIGH for dselect users)
15959  * dselect now has a main menu.
15961  * Fixed nasty uninitialized data bug in dselect.
15963  * dselect now locks and unlocks the packages database.
15965 Mon, 27 Mar 1995 03:30:51 BST  Ian Jackson <iwj10@cus.cam.ac.uk>
15967         * dpkg (0.93.32): Alpha dselect released and installed in
15968                           /usr/sbin/dselect.
15969         * dpkg (0.93.32): Many portability enhancements: should now
15970                           compile using GCC 2.6.3, and dpkg-deb should
15971                           compile better on non-Linux systems.
15972         * dpkg (0.93.32): dpkg will not loop if its stdin disappears
15973                           and it needs to prompt.
15974         * dpkg (0.93.32): Fixed removal dependency error to show
15975                           correct package (Bug #648).
15976         * dpkg (0.93.32): Tidied up copyright notices.
15977         * dpkg (0.93.32): First draft of update-rc.d manpage, not yet
15978                           installed in /usr/man.
15979         * dpkg (0.93.32): Changes to top-level Makefile.in to improve
15980                           error trapping.
15981         * dpkg (0.93.32): Improved Makefile `clean' and `distclean'
15982                           targets.
15983         * dpkg (0.93.32): Deleted irrelevant `t.c' from lib and
15984                           dselect directories.
15985         * dpkg (0.93.32): Added vercmp.c with version comparison code.
15986         * dpkg (0.93.32): varbufextend message changed - varbufs not
15987                           just for input buffers.
15988         * dpkg (0.93.32): varbuf has C++ member functions in header
15989                           #ifdef __cplusplus.
15991 Changes in dpkg 0.93.31:
15993 * start-stop-daemon --pidfile now works (Bug#571).
15994 * Fixed dependency processing bugs which could require a rerun of
15995   dpkg --configure (Bug#566).
15996 * Fixed garbage output for `language' of control file in dpkg-deb --info.
15998 Changes in dpkg 0.93.30:
16000 * Added /usr/sbin/start-stop-daemon.
16002 Changes in dpkg 0.93.09:
16004 * Made postinst scripts really be run when dpkg --purge used.
16005 * Added new --force-extractfail option - VERY DANGEROUS.
16007 Changes in dpkg 0.93.28:
16009 * Removed undef of 0x_p21 in read_database_file, which caused the
16010   the whole status database to become trashed when any update files
16011   were read.
16012 * Make infinite-loop prevention and cycle detection work.
16013 * Made findbreakcycle work (ie, break properly when cycle detected).
16014 * New script, update-rc.d, to update links /etc/rc?.d/[KS]??*.
16015 * dpkg.pl now sets the umask to 022.
16016 * Cosmetic error message fix to dpkg-deb.
16017 * Deleted OLD directory altogether.
16018 * Improved error-trapping in top-level Makefile loops.
16020 Changes in dpkg 0.93.27:
16022 * Make version number specifications in Depends &c work.
16023 * Added AC_PROG_CXX to autoconf.in for dselect.
16024 * Changed myopt.h not to have cipaction field in cmdinfo (this was
16025   specially for dpkg-deb) - now we have a generic void*.
16026 * Renamed `class' member of `pkginfoperfile' to `clas' [sic].
16027 * Much work in `dselect' subdirectory.
16028 * Deleted executables, objects and libraries from OLD tree !
16029 * Minor changes to various copyright notices and top-of-file comments.
16030 * Don't install nasty Perl dselectish thing as /usr/bin/dselect.
16032 Changes in dpkg 0.93.26:
16034 * Added --no-also-select instead of not auto-selecting on --unpack
16035   but doing so on --install; removed --force-unpack-any.
16037 Changes in dpkg 0.93.25:
16039 * Fixed duplicate output (failure to flush before fork) bug.
16040 * More clarification of md5sum.c copyright.
16041 * Corrected typo in ChangeLog in 0.93.24 source package.
16043 Changes in dpkg 0.93.24:
16045 * dpkg could copy conffiles info from one package to another.  Aargh.
16046   Bug #426.
16047 * dpkg failed to initialise status if you tried to remove or
16048   configure a nonexistent package.  Bug #419.
16049 * install-info now handles START-INFO-DIR-ENTRY entries like:
16050    * Gdb::                         The GNU debugger.
16051   Previously it would only accept (Bug #407):
16052    * Gdb: (gdb).                   The GNU debugger.
16053 * When installing a new foo.info[.gz], install-info now replaces
16054    * Foo: (foo.info).              The Gnoo Foo.
16055   as well as just * Foo: (foo). ...
16056 * Moved option parsing out of dpkg-deb into libdpkg.
16057 * Assorted minor source code rearrangements.
16058 * Fixed assorted copyright notices, clarified md5sum copyright.
16059 * Corrected typo in 0.93.23 source package's ChangeLog.
16061 Changes in dpkg 0.93.23:
16063 * `dpkg-deb' --build now does a syntax check on the control file.
16064 * `dselect' is now no longer called `debian', spurious copy removed
16065   from package top-level source directory.
16066 * C control information parsing complete and somewhat tested.
16067 * Moved `global' include files into $(srcdir)/include from ../lib,
16068   added some files to the lib Makefile, and arranged for pop_cleanup().
16070 Changes in dpkg 0.93.22:
16072 * Fixed bug which caused dpkg to see failures of md5sum where there
16073   were none (would also have caused dpkg to miss a real failure).
16074 * Fixed failure to update some `status' database fields.
16076 Changes in dpkg 0.93.21:
16078 * Fixed error-handling bug which could corrupt database.
16080 Changes in dpkg 0.93.20:
16082 * Fixed bug which ran old (/var/adm/dpkg) postinst scripts.
16083 * Fixed dpkg usage message which claimed -i => both --install & --info.
16084 * Use Colin Plumb's MD5 code - faster, and better copyright.
16085 * Manpages: dpkg-deb(8), deb-control(5), deb(5) - thanks to Raul
16086   Deluth Miller.  Also, an xfig picture of some C program innards.
16088 Changes in dpkg 0.93.19:
16090 * Don't delete the `list' file from the dpkg database.
16091 * Fixed various bugs in the conffile handling.
16092 * Conffiles that are symlinks will now be treated as if the
16093   `dereferenced' name of the file was listed in conffiles.  This means
16094   that /etc/foo -> /usr/etc/foo will cause all conffile updates of
16095   /etc/foo to create /usr/etc/foo.dpkg-tmp &c instead.  However, the
16096   link will be removed if --purge is used to delete all the conffiles.
16097 * When doing a new installation, or when updating a conffile that
16098   wasn't listed as a conffile in the old version of the package, don't
16099   do any prompting but just install the version from the archive.
16100 * Corrected error message if exec of dpkg --vextract failed
16101   and --instroot or --root specified.
16102 * Added new --force-unpack-any option.
16103 * Extra newline after --status output.
16104 * Added -W options to CFLAGS.
16105 * Fixed mistake in previous ChangeLog entry.
16107 Changes in dpkg 0.93.18:
16109 * Fixed invocation of dpkg-deb --vextract if --root or --instdir
16110   not specified.
16111 * Create /var/lib/dpkg/updates.
16113 Changes in dpkg 0.93.17:
16115 * install-info --remove exits with status 0 if it doesn't find the
16116   thing to remove, instead of status 1.
16117 * Error handling functions have __attribute__((format...)) if GCC.
16118 * push_cleanup its arg takes void **argv instead of char **argv.
16119 * Top-level Makefile.in has set -e before `for' loops.
16120 * dpkg-deb --info not-an-existing-file produces fewer error messages.
16122 Changes in dpkg 0.93.16:
16124 * Made --root= option really extract to $instroot instead of `/'.
16125 * install-info clears the 0444 bits in its umask.
16126 * Fixed a few database handling bugs which cause dpkg always to fail,
16127   and usually to corrupt the status database in various ways.
16128 * dpkg-deb completely rewritten, now doesn't tinker with
16129   /var/{adm,lib}/dpkg.  Should be faster.
16130 * Directory structure and Makefiles in source package reorganised.
16132 Changes in dpkg 0.93.15:
16134 * Added `debian' (dselect), still very primitive.
16135 * Database format changed, and moved from /var/adm to /var/lib.
16136 * Added dpkg --avail mode, --list, --status and --search.
16137 * Set of dpkg => dpkg-deb pass-through operations changed (but
16138   dpkg-deb not yet updated).
16139 * Added --root, --admindir and --instdir, as well as --isok &c.
16140 * Moved much stuff into /usr/lib/dpkg-lib.pl, rewritten status
16141   database handling.
16142 * Put packages in `purge' state even if `deinstall' requested if
16143   they have no postrm and no conffiles.
16144 * Version number comparisons fixed.
16145 * insert-version.pl now installs lib.pl filename too.
16146 * Strip trailing slashes when reading files from file lists.
16148 Changes in dpkg 0.93.14:
16150 * Fixed parsing of DEPENDS &c fields with trailing whitespace.
16151 * postinst now fixes up broken ispell.control file.
16152 * Cyclic dependency/multiple package removal processing: don't consider
16153   packages we've just removed when looking for a reason not to go ahead.
16154 * Added call to postinst with `purge' argument for expunging old
16155   configuration etc. that aren't listed in conffiles.
16157 Changes in dpkg 0.93.13:
16159 * sub S_ISREG defined in dpkg.pl.
16160 * Checking of DEPENDS &c fields was too lax, causing an internal error
16161   if you fed it certain kinds of broken control file.
16162 * Fixed misleading message from bogus installationstatus call.
16163 * New -u and -U options to dpkg-deb which don't unpack the /DEBIAN
16164   directory, and use these in dpkg.pl; clean up /DEBIAN in postinst.
16166 Changes in dpkg 0.93.12:
16168 * No longer needs *.ph files, since these appear to be broken.
16169 * Postinst fixes up *.control files with curly brackets.
16170 * embryo of dselect.
16172 Changes in dpkg 0.93.11:
16174 * New --ignore-depends option.
16175 * This ChangeLog changed format here.
16177 Wed Nov 30 15:38:21 GMT 1994  Ian Jackson  <iwj10@cus.cam.ac.uk>
16179         * dpkg 0.93.11 released.
16181         * conffile updating fixed.
16183         * Message `upgrade' in dpkg changed to `replace'.
16185         * install-info now copes with multi-line entries.
16187         * version numbers now done automatically in dpkg and install-info.
16189         * more debugging around conffiles updates.
16191         * *.hash files not deleted so soon.
16193         * adds brand new packages to status array so we can install them.
16195         * postinst does h2ph for {sys,linux}/{stat,types}.ph if required.
16197 Mon Nov 28 02:00:13 GMT 1994  Ian Jackson  <iwj10@cus.cam.ac.uk>
16199         * dpkg 0.93.10 released.
16201         * dpkg.pl completely rewritten.
16203         * dpkg-deb: removed dabase-processing and --install option.
16205         * Makefiles reworked, debian.rules added.
16207         * Don't install anything in /usr/doc/examples.
16209         * dpkg-*.deb contains /usr/bin/dpkg-deb.dist, fixed up by postinst.
16211 Thu Oct 20 13:22:20 1994  Ian Murdock  (imurdock@debra.debian.org)
16213         * dpkg 0.93.9 released.
16215         * dpkg.pl: Use $argument, not $package, with `--build'.
16216         Make sure that saved postinst scripts are executable.
16218 Tue Oct 18 09:40:57 1994  Ian Murdock  (imurdock@debra.debian.org)
16220         * dpkg 0.93.8 released.
16222         * deb/remove.c (pkg_remove): Do not report an error from rmdir ()
16223         when `errno' is ENOTEMPTY (Directory not empty), because in this
16224         case we have found the highest-level directory in the package and
16225         are ready to exit the loop (i.e., it is a normal occurrence).
16227 Mon Oct 17 10:44:32 1994  Ian Murdock  (imurdock@debra.debian.org)
16229         * Makefile.in: Adapted all Makefiles to the GNU Coding Standards.
16231         * deb/remove.c (pkg_remove): Make sure that parent directories are
16232         removed LAST!  This will result in complete removal of packages
16233         when --remove is called.  dpkg 0.93.7 (and earlier) had problems
16234         with this because it tried to remove directories in order, which
16235         will work most of the time, but not necessarily all of the time.
16237         * deb/list.c (pkg_list): Output is sorted by package name.
16239 Tue Oct  4 12:27:10 1994  Ian Murdock  (imurdock@debra.debian.org)
16241         * deb/contents.c (pkg_contents): When a list file cannot be
16242         opened, silently fail and let the front-end explain the problem.
16244         * deb/util.c (return_info): When a control file cannot be opened,
16245         silently fail and let the front-end explain the problem.
16247         * deb/search.c (pkg_search): Exit 0 if the regular expression is
16248         matched and 1 if it is not.
16250 Mon Oct  3 18:38:53 1994  Ian Murdock  (imurdock@debra.debian.org)
16252         * dpkg.pl: New file.  Replaces dpkg.sh.
16254         * deb/Makefile.in: Renamed `dpkg-util.deb' to `dpkg-deb'.
16256         * deb/build.c (pkg_build): `--build' is less verbose, instead
16257         letting the front-end add verbosity where appropriate.
16259         * deb/install.c (pkg_install): Ditto.
16261         * deb/remove.c (pkg_remove): Ditto.
16263         * deb/search.c (pkg_search): Ditto.
16265         * deb/describe.c (pkg_describe): `--describe' is less verbose,
16266         instead letting the front-end add verbosity where appropriate.
16267         The ``Description:'' label has been removed.
16269         * deb/version.c (pkg_version): `--version' is less verbose,
16270         instead letting the front-end add verbosity where appropriate.
16271         The ``Version:'' label has been removed, as has the maintainer
16272         information.
16274 Mon Sep 12 14:22:04 1994  Ian Murdock  (imurdock@debra.debian.org)
16276         * deb/version.c (pkg_version): `--version' now reports the
16277         version number of dpkg if no argument is specified.
16279 Thu Sep  1 13:31:37 1994  Ian Murdock  (imurdock@debra.debian.org)
16281         * dpkg 0.93.7 released.
16283         * deb/build.c (pkg_build): check status and exit if non-zero.
16285         * deb/contents.c (pkg_contents): ditto.
16287         * deb/install.c (archive_extract): ditto.
16289 Thu Sep  1 13:20:08 1994  Ian Murdock  (imurdock@debra.debian.org)
16291         * deb/version.c (pkg_version): indent to the same point as
16292         pkg_describe.
16294 Thu Sep  1 12:21:11 1994  Ian Murdock  (imurdock@debra.debian.org)
16296         * Makefile.in (dist): added debian.rules binary, source and
16297         dist targets to make final distribution easier to make.
16298         (install): install programs to /usr/bin.
16300         * deb/Makefile.in (install): install programs to /usr/bin.
16302         * deb/list.c (pkg_list): enforce a maximum limit of ten characters
16303         for the package name in the output.
16304         (pkg_list): left-justify the version number to make it easier for
16305         the front-end to parse the output.
16306         (pkg_list): replace first '\n' character in packages[n].description
16307         with '\0'.
16309         * deb/install.c (archive_extract): use the `p' option to `tar' to
16310         ensure that permissions are preserved.
16312 Sat Aug 27 09:53:37 1994  Ian Murdock  (imurdock@debra.debian.org)
16314         * dpkg 0.93.6 released.
16316         * deb/util.c (return_info): only unlink CONTROL if ARCHIVE_FLAG is
16317         true!
16319 Fri Aug 26 15:38:22 1994  Ian Murdock  (imurdock@debra.debian.org)
16321         * dpkg 0.93.5 released.
16323         * deb/contents.c (pkg_contents): merged function archive_contents
16324         into function pkg_contents.
16326         * deb/contents.c (pkg_contents): use lstat (rather than stat) so
16327         that symbolic links are recognized.
16328         (pkg_contents): print the usual `<path> -> <link_to>' now that we
16329         recognize symbolic links.
16331         * deb/util.c (return_info): create a FIFO to pipe the needed
16332         information to the ``formatter'' rather than creating a directory
16333         in /tmp for the package information, which is what we used to do.
16335 Thu Aug 25 11:46:27 1994  Ian Murdock  (imurdock@debra.debian.org)
16337         * lib/fake-ls.c (mk_date_string): return a pointer to malloc'ed
16338         area.
16339         (mk_mode_string): ditto.
16341         * dpkg.sh: make sure the control information is extracted to a
16342         uniquely-named temporary directory during package installation.
16344         * dpkg.sh: execute the pre- and post-removal scripts during
16345         package removal.
16347         * dpkg.sh: exit immediately if dpkg-util.deb reports failure.
16349         * deb/install.c (pkg_control): make sure that `package' exists and
16350         is a Debian archive before doing anything.
16352         * deb/install.c (pkg_extract): make sure that `package' exists and
16353         is a Debian archive before doing anything.
16355         * deb/install.c (pkg_install): unlink `extract_output' when done.
16357         * deb/remove.c (pkg_remove): use lstat (rather than stat) so that
16358         --remove does not get confused and think that a symbolic link to a
16359         directory is actually a directory, which results in the symbolic
16360         link never being removed at all.
16362 ChangeLog begins Thu Aug 25 11:46:27 1994 for dpkg 0.93.5.