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