1 dpkg (1.15.5.6) unstable; urgency=low
3 * dpkg-source: with format "3.0 (quilt)" ensure quilt's .pc directory is
4 created before trying to register a new patch in .pc/applied-patches.
5 Thanks to Tommi Vainikainen <thv+debian@iki.fi> for the report and the
7 * Fix dpkg-buildpackage to set "parallel=" in DEB_BUILD_OPTIONS instead of
8 the invalid "parallel=-1" when option "-j" is given. Closes: #562038
9 * Clarify how dpkg-source --print-format works and display messages on
10 STDERR when the requested format is discarded. Closes: #560391
11 * Add ${misc:Depends} in all Depends fields.
13 -- Raphael Hertzog <hertzog@debian.org> Fri, 08 Jan 2010 17:57:43 +0100
15 dpkg (1.15.5.5) unstable; urgency=low
17 * Allow again new lines in dpkg-source and dpkg-genchanges on substvar and
20 -- Guillem Jover <guillem@debian.org> Tue, 22 Dec 2009 09:49:49 +0100
22 dpkg (1.15.5.4) unstable; urgency=low
24 * Fix Dpkg::Index::get() and remove(). Thanks to Roderich Schupp
25 <roderich.schupp@googlemail.com> for the patch. Closes: #558595
26 * Modify implementation of "3.0 (quilt)" source format to not be
27 behave differently depending on whether quilt is installed or not.
28 The option --without-quilt is thus gone and dpkg-source creates
29 and relies on the .pc directory to know whether patches are applied
30 or not. Closes: #557667
31 * Add new dpkg-source option --single-debian-patch supported by the source
32 format "3.0 (quilt)" so that it behaves more like 1.0 and its single diff
33 that is constantly updated with all upstream changes. Useful if the
34 workflow is VCS based and can't generate a full patch set.
35 * dpkg-source now uses debian/source/patch-header as header of the automatic
36 Debian patch in format "3.0 (quilt)".
37 * Fix Debian changelog parser so that the trailer line is again checked.
39 -- Raphael Hertzog <hertzog@debian.org> Mon, 07 Dec 2009 09:24:31 +0100
41 dpkg (1.15.5.3) unstable; urgency=low
44 * Avoid usage of IO::String in dpkg-scanpackages, rely on Dpkg::IPC
45 instead to directly get a pipe file descriptor. Closes: #557013
46 * Put "3.0 (quilt)" in the default list of formats tried by dpkg-source
47 after "1.0" and before "3.0 (native)".
48 * Let dpkg-source fail if several upstream orig.tar files are available
49 (using different compression scheme) since we don't know which one
51 * Add missing "use Dpkg::Gettext" in Dpkg::Changelog::Entry::Debian.
53 * When building "3.0 (quilt)" source packages, use QUILT_PATCH_OPTS="-t -F 0
54 -N -u -V never -g0" so that quilt is as strict as dpkg-source's internal
55 implementation of quilt. Closes: #557664, #558233
56 * Before accepting to build a 3.0 (quilt) source packages, ensure that
57 debian/patches is a directory (or non-existing) and that
58 debian/patches/series is a file (or non-existing). Closes: #557618
59 * Dpkg::IPC::fork_and_exec() now includes the changed environment
60 variables in the default error message displayed when the sub-process
64 * Verify that the alternative used in update-alternatives --set has been
65 registered instead of failing with an undefined value in the slave
66 method. Closes: #554136
67 * Strip leading spaces in the first line of a field's value in
68 Dpkg::Control::Hash. Closes: #557547
70 -- Guillem Jover <guillem@debian.org> Fri, 27 Nov 2009 19:23:36 +0100
72 dpkg (1.15.5.2) unstable; urgency=low
74 * Change Dpkg::Version API to accept invalid versions by default and add
75 is_valid() method. The boolean evaluation of a version object returns
76 true if the version is valid, false otherwise.
77 * Update dpkg-shlibdeps to always use Dpkg::Version now that it can
78 contain the empty version string. Closes: #556786
79 * Keep compatibility with perl 5.8 by avoiding the _ prototype.
81 -- Raphael Hertzog <hertzog@debian.org> Wed, 18 Nov 2009 11:54:50 +0100
83 dpkg (1.15.5.1) unstable; urgency=low
85 * Fix build failures due to off_t type missmatch caused by not including
86 <config.h> first on the unit tests. Suggested by Pierre Habouzit and
87 Julien Cristau, thanks!
89 -- Guillem Jover <guillem@debian.org> Tue, 17 Nov 2009 16:42:00 +0100
91 dpkg (1.15.5) unstable; urgency=low
94 * Remove obsolete conffiles on purge. Closes: #421367, #453005, #454628
95 * Update list of binaries dpkg checks on the PATH.
96 - Remove install-info, now a wrapper that will disappear soonish.
97 - Add programs used by dpkg itself: sh, rm, find, tar and dpkg-deb.
98 * Check and warn on duplicate conffiles in dpkg-deb. Closes: #131633
99 * Make the upstream build system silent by default with automake 1.11 or
100 newer, and always verbose when building the Debian packages.
101 * Fix small leak when parsing ‘--ignore-depends’ option values.
102 * Define compatibility WCOREDUMP only if the system does not have it.
103 * When start-stop-daemon fails to set the io scheduling warn instead of
104 finishing fatally. Closes: #553580
105 * Update md5 file paths in debian/copyright.
106 Thanks to Jonathan Nieder <jrnieder@gmail.com>.
107 * On ‘dpkg-trigger --help’ print the default admindir instead of the one
108 passed on the command line.
109 * Abort on configure if the required C99 extensions are not supported.
110 * Add C coding style document.
111 * Make dpkg as strict as dpkg-statoverride on input when validating the
112 parsed data from the statdb.
113 * Rewrite dpkg-statoverride in C.
114 * Use C99 snprintf function family semantics to avoid having to call them
115 in a loop to grow the varbuf buffer. This should reduce memory usage and
116 be slightly faster on varbufprintf calls.
117 * Use the size from stat to allocate the buffers for readlink, instead of
118 indefinitely calling readlink and growing the buffer. This should reduce
119 memory usage when handling lots of symlinks, and be slightly faster.
120 * Rework varbuf api to avoid increasing buffers indefinitely when adding
121 content to them, regardless of space being already available.
122 * Fix build macros to allow start-stop-deaemon to use TIOCNOTTY.
123 * Generate the autoconf version from git to make it easier to see when a
124 snapshot version is being used.
125 * Add infrastructure for doxygen, for now not installed anywhere.
126 * Allow overriding the pkg-config path to ease cross-compilation.
127 Suggested by Tollef Fog Heen <tfheen@err.no>.
128 * Fix spelling errors in the Catalan translation. Closes: #553328
129 Thanks to Robert Millan.
130 * Update the FSF postal address in the source code license headers by
131 replacing it with a URL to the gnu.org page.
132 * Fix a file descriptor leak in dpkg-deb.
133 Reported by Raphael Geissert <atomo64@gmail.com>.
134 * Fix resource leaks on error conditions in compat scandir.
135 * Add a new status-fd action when disappearing a package. Closes: #537338
138 * Add versioned dependency on base-files (>= 5.0.0) to dpkg-dev to ensure
139 that /etc/dpkg/origins/default exists. Closes: #545274
140 * Update Standards-Version to 3.8.3 (no changes needed).
141 * Major changes to the perl API:
142 - Dpkg::Control is now Dpkg::Control::Info
143 - Dpkg::Cdata is gone and is replaced by a new Dpkg::Control
144 - Dpkg::Control::Fields contains authoritative information
145 about fields allowed in various types of control information
146 (and can be customized by each vendor). It also integrates
147 information that was previously available through Dpkg::Deps.
148 - Dpkg::Changelog has been split in multiple modules and largely
149 modified to offer an interface that is now more in line with the
151 * All dpkg-* perl programs that work with control information have been
152 updated to use the new Dpkg::Control interface.
153 In this process, dpkg-scanpackages has been fixed to not skip non-standard
154 fields. Closes: #494136
155 * Create Launchpad-Bugs-Fixed directly in the changelog parsing code thanks
156 to a new vendor hook post-process-changelog-entry. Closes: #536066
157 * Integrate dpkg-ftp into dselect. Add the required Replaces and Conflicts.
158 * dpkg-scanpackages/dpkg-scansources now supports compressed override files.
159 * dpkg-scanpackages now supports a new --medium option as needed to
160 generate Packages.cd file for consumption by the multicd dselect access
161 method. Closes: #402527
162 * Integrate dpkg-multicd into dselect. Add the required Replaces and
163 Conflicts. The dpkg-scanpackages fork is dropped. Closes: #516631
164 * Fix bashisms in dselect multicd access method. Closes: #530070
165 * Add support of "xz" compression method for source packages. Add dependency
166 dpkg-dev → xz-utils to ensure xz and unxz are available.
167 * Fix dpkg-source --include-binaries to correctly compute the path name of
168 the discovered binary files. Closes: #554612
169 * Remove extra quoting that should not be there while passing an exclude
170 file to git ls-files during build of 3.0 (git) source package.
171 Thanks to Courtney Bane for the patch. Closes: #551829
172 * Optimize dpkg-source -b by avoiding many diff calls when not required.
173 Thanks to Mike Hommey for the idea. Closes: #554689
174 * Add new option --print-format to dpkg-source to be able to know by advance
175 the source format that would be used during a build.
176 * Modify dpkg-source -b to use default build options from
177 debian/source/options. Thus it's now possible to have sticky options, for
178 example for the choice of a compression method (--compression=<comp>).
179 * dpkg-source outputs the list of upstream files modified by the diff.gz
180 (applies only to source packages using format 1.0). Closes: #482166
181 It also recommends usage of 3.0 (quilt) format during dpkg-source -b if it
182 detects changes to upstream files that are stored in the .diff.gz.
183 * Add DEP-3 compliant headers to automatic patches created by dpkg-source
184 in 3.0 (quilt) source format. Closes: #543581
185 * Switch dpkg to source format "3.0 (native)" with bzip2 compression.
187 [ Updated dpkg translations ]
188 * Czech (Miroslav Kure).
189 * French (Christian Perrier).
190 * German (Sven Joachim).
191 * Italian (Milo Casagrande). Closes: #548615, #555806
192 * Polish (Wiktor Wandachowicz). Closes: #548541
193 * Swedish (Peter Krefting).
195 [ Updated dselect translations ]
196 * Czech (Miroslav Kure).
197 * French (Christian Perrier).
198 * German (Sven Joachim).
199 * Polish (Wiktor Wandachowicz). Closes: #548541
200 * Swedish (Peter Krefting).
202 [ Updated man page translations ]
203 * French (Christian Perrier).
204 * French translation error fixed (Christian Perrier)
205 Thanks to Pietro Battiston for spotting it. Closes: #545446
206 * German (Helge Kreutzmann).
207 * Polish (Wiktor Wandachowicz). Closes: #548541
208 * Swedish (Peter Krefting).
210 [ Updated scripts translations ]
211 * German (Helge Kreutzmann).
212 * Polish (Wiktor Wandachowicz). Closes: #548541
213 * Swedish (Peter Krefting).
215 -- Guillem Jover <guillem@debian.org> Tue, 17 Nov 2009 10:17:57 +0100
217 dpkg (1.15.4.1) unstable; urgency=medium
219 * Do not mark any package as unseen in dselect. This is a workaround
220 until it learns how to store such information again. Closes: #545366
222 -- Guillem Jover <guillem@debian.org> Mon, 19 Oct 2009 15:15:17 +0200
224 dpkg (1.15.4) unstable; urgency=low
227 * Call _g instead of g_ in dpkg-name.
228 * Fix inverted logic when deciding to assume the architecture in dpkg-name
229 when the package didn't have such field.
230 * Do not take into account Revision and Package_Revision fields in dpkg-name
231 and dpkg-scanpackages as they have been handled already by “dpkg-deb -I”.
232 * Switch dpkg-scansources to use Dpkg::Cdata instead of duplicating the
233 .dsc parsing code. As a side effect it now handles properly bogus files.
234 * Do not remap obsolete fields in dpkg-scanpackages as they have been
235 handled already by “dpkg-deb -I”.
236 * Properly mark packages being purged for disappearance from the database.
237 This will make the status database not be left behind with traces of old
238 not-installed packages. Closes: #472208
239 * On parse mark not-installed leftover packages for automatic removal from
240 the database on next dump. This obsoletes the --forget-old-unavail option,
241 thus making it now a no-op. Closes: #33394, #429262
242 * Document “hold” under package selection states instead of flags in dpkg(1).
243 * Remove trailing ‘/’ and ‘/.’ from the directory name to be used as the
244 package name on “dpkg-deb -b”. Closes: #218018, #373602
245 * Remove obsolete ‘hold’ and ‘hold-reinstreq’ internal status flags.
246 * Add fakeroot to dpkg-dev Recommends. Closes: #536821
247 * Fix an always false test when trying to decide which package to deselect
248 to resolve a dependency problem in dselect.
249 * Add uClibc Linux support to ostable and triplettable. Closes: #455501
250 * Add uClinux support to ostable and triplettable.
251 Thanks to Simon Richter <sjr@debian.org>.
252 * When aborting due to file conflicts print the version of the conflicted
253 package. Closes: #540019
254 * Remove double slash in database path visible to the user in some error
256 * Stop macthing sparc64-*-* GNU triplets with sparc Debian architecture.
257 * Add support for config.d style directories in dpkg and dselect,
258 (/etc/dpkg/dpkg.cfg.d and /etc/dpkg/dselect.cfg.d respectively).
259 * Define DPKG_MAINTSCRIPT_ARCH on the maintainer script environment to the
260 architecture the package got built for.
261 * Document DPKG_MAINTSCRIPT_PACKAGE maintainer script environment variable
263 * Document DPKG_RUNNING_VERSION maintainer script environment variable
265 * Change po4a usage to not create unwated changes depending if doing out or
267 * Use po4a “--previous” support when updating the man pages.
268 Suggested by Christian Perrier <bubulle@debian.org>.
269 * On configuration error print file name and line number.
270 * Allow quoting values in configuration file options.
271 * Add new --pre-invoke and --post-invoke hooks in dpkg.
272 * Add new --control-path command to dpkg-query.
273 * Use ohshit on bad version syntax in --compare-versions.
274 * Add Multi-Arch to the list of known binary package fields for dpkg-dev.
275 Thanks to Steve Langasek <vorlon@debian.org>.
278 * Replace install-info by a wrapper around GNU's install-info. The wrapper
279 will be dropped in squeeze+1. dpkg now Breaks: old versions of
280 info-browsers that do not depend on the new install-info package
281 that provides the real functionality. Closes: #9771, #523980
282 See http://wiki.debian.org/Transitions/DpkgToGnuInstallInfo for details.
283 * Fix dpkg's preinst in case /var/lib/dpkg/alternatives contains unexpected
284 sub-directories. Closes: #535138
285 And also when one of the file doesn't contain correct alternatives
286 information (improper number of lines). Closes: #537558
287 * Upgrade Standards-Version to 3.8.2 (no changes).
288 * Update deb-substvars(5) to list fields that do not support substvars.
290 * Fix dpkg-parsechangelog to include all entries with -v0 parameter.
292 * Fix update-alternatives to mention the correct slave link that can't
293 be installed due to a conflicting file instead of quoting the master link.
294 * Add support for extra override file in dpkg-scanpackages. Thanks to Robert
295 Millan for the patch. Closes: #537559
296 * Add support for extra override file in dpkg-scansources.
297 * Document format of extra override file in a new manual page
298 deb-extra-override(5).
299 * Update sample in dpkg-gensymbols(1) to give an accurate listing of
300 64 bit arches. Thanks to Julien Cristau for the patch. Closes: #540382
301 * Create /etc/cron.daily/dpkg to handle the backup of
302 /var/lib/dpkg/status in /var/backups. This is taken out of the cron
303 package and need no conflicts/breaks as the code does nothing if
304 the current status file is already backupped. Thanks to Leo 'costela'
305 Antunes <costela@debian.org> for the patch. Closes: #541412
306 * Change behaviour of dpkg --merge-avail to not update a package's
307 information if the version provided is older than the one already listed
308 in the available file. Thanks to Ian Jackson
309 <ian@davenant.greenend.org.uk> for the patch. Closes: #496114
310 * dpkg-architecture can now export DEB_{HOST,BUILD}_ARCH_{BITS,ENDIAN}
311 (pointer size and endianness):
312 - cputable (in dpkg) modified to contain those information
313 - dpkg-dev depends on dpkg (>= 1.15.4) to ensure that we have an updated
314 cputable (and so that a versioned build-dependency on dpkg-dev is enough
315 to use this new feature)
317 * Split overly long Binary: field values over multiple lines. This is
318 allowed since policy 3.8.3. Closes: #494714
319 * Improve performance of dpkg-shlibdeps by caching minimal version
320 associated to each library in Dpkg::Shlib::SymbolFile. Thanks to
321 Jiří Paleček <jpalecek@web.de> for the patch.
322 * Slightly improve dpkg-source(1) by giving the section name that we're
323 referring to. Closes: #544037
324 * Fix translation error in german manpage of dpkg-buildpackage. Thanks
325 to Joachim Breitner <nomeata@debian.org>. Closes: #541829
328 * Provide a meaningful label for dpkg-gensymbols diff.
330 [ Updated dpkg translations ]
331 * Asturian (Marcos Alvarez Costales). Closes: #535327
332 * French (Christian Perrier).
333 * German (Sven Joachim).
334 * Italian (Milo Casagrande). Closes: #536538
335 * Russian (Yuri Kozlov). Closes: #542254
336 * Slovak (Ivan Masár). Closes: #537742
337 * Swedish (Peter Krefting).
339 [ Updated dselect translations ]
340 * Russian (Yuri Kozlov). Closes: #542254
341 * Slovak (Ivan Masár). Closes: #537741
343 [ Updated man page translations ]
344 * French (Christian Perrier).
345 * German (Helge Kreutzmann), proofread by Jens Seidel.
346 * Swedish (Peter Krefting).
348 [ Updated scripts translations ]
349 * French completed (Christian Perrier).
350 * German (Helge Kreutzmann).
351 * Russian (Yuri Kozlov). Closes: #542254
352 * Swedish (Peter Krefting).
354 -- Guillem Jover <guillem@debian.org> Sun, 06 Sep 2009 09:37:45 +0200
356 dpkg (1.15.3.1) unstable; urgency=low
359 * Fix wildcard support in symbol files. Closes: #536034
361 -- Guillem Jover <guillem@debian.org> Wed, 08 Jul 2009 11:26:36 +0200
363 dpkg (1.15.3) unstable; urgency=low
366 * Unset TAR_OPTIONS when extracting .deb archives.
367 * Use default compressor values in dpkg-source from Dpkg::Source::Compressor.
368 * Fix dpkg-scanpackages to properly detect spurious overrides.
369 * Rewrite dpkg-name in perl.
370 * Do not close already closed files in some error conditions in libdpkg.
371 * Use the correct units (KiB) in dpkg-split when referring to partsize.
372 * Document in dpkg-statoverride(8) that mode needs to be specified in
373 octal. Closes: #534551
374 * Mark argument names in dpkg-statoverride.1 in italic.
375 * Explicitly pass field argument to Dpkg::ErrorHandling::unknown().
376 * Move unknown() from Dpkg::ErrorHandling to Dpkg::Fields.
379 * Unset TAR_OPTIONS when creating/extracting tar archives for source
380 packages. Closes: #530860
381 * Add cleanup of all invalid (master) alternatives in preinst script.
382 Closes: #530633, #531611, #532739, #521760
383 * Let update-alternatives fix a manual alternative with a dangling symlink
384 by switching it to automatic mode. Closes: #529999
385 * Add missing paragraph separator in dpkg-buildpackage(1). Thanks to Per
386 Andersson <avtobiff@gmail.com>. Closes: #532769
387 * Fix english mistake (“as you request” → “as you requested”) in several
388 places. Thanks to David Stansby for the patch. Closes: #533171
389 * Support tags before symbols in symbols file contained in source packages.
390 The first two tags are "optional" (use it to not fail if the symbol might
391 disappear from the library without breaking the ABI) and "arch" to
392 restrict the set of architectures where the symbol is supposed to exist.
393 Thanks to Modestas Vainius <modestas@vainius.eu> for the patch.
394 See dpkg-gensymbols(1) for more information. Closes: #521551
395 * Do not include #MISSING lines in symbols files integrated in binary
396 packages. Closes: #526251
397 * Assume an implicit version of "Base" for all unversioned symbols
398 that are merged into a SymbolFile. Closes: #533181
399 * Add new tag "ignore-blacklist" to force-include symbols which are
400 normally blacklisted. This can be useful for libgcc to include symbols
401 that the toolchain allows to be shared but that are often static (and
402 hence are blacklisted for this reason). Closes: #533642
403 * In dpkg-source, explicitly pass --keyring ~/.gnupg/trustedkeys.gpg to
404 gpgv as it does not use it if other --keyring parameters are given.
406 * In dpkg-vendor, allow to use dashes instead of spaces in vendor
407 filenames. Closes: #532222
408 * Skip dpkg-genchanges' warning about lower version numbers for backports
409 (recognized by ~bpo or ~vola in their version number). Closes: #525115
410 * Support all checksum algorithms in dpkg-scanpackages/dpkg-scansources.
412 * Fix dependency parsing code in Dpkg::Deps to not accept "foo\nbar"
413 even if foo is valid. Closes: #534464
414 Thanks to Andrew Sayers for spotting the problem.
417 * Warn about unused substvars in dpkg-gencontrol. Closes: #532760
419 [ Updated dpkg translations ]
420 * Catalan (Jordi Mallach). Closes: #532109
421 * Czech (Miroslav Kure).
422 * German (Sven Joachim). Closes: #534831
423 * Simplified Chinese (Deng Xiyue). Closes: #531387
424 * Swedish (Peter Krefting).
426 [ Updated dselect translations ]
427 * Czech (Miroslav Kure).
429 [ Updated man page translations ]
430 * German (Helge Kreutzmann).
431 * Swedish (Peter Krefting).
433 [ Updated scripts translations ]
434 * German (Helge Kreutzmann).
435 * Swedish (Peter Krefting).
437 -- Guillem Jover <guillem@debian.org> Sat, 27 Jun 2009 19:06:43 +0200
439 dpkg (1.15.2) unstable; urgency=low
442 * Fix FTBFS on GNU/Hurd due to a missmatched define usage in
443 start-stop-daemon. Closes: #530446
444 * Remove obsolete priorities support from dselect.
445 Thanks to Sven Joachim <svenjoac@gmx.de>.
446 * Fix bashism (“echo -e”) in dselect disk setup method. Closes: #530071
447 * Properly parse fdisk output in dselect disk setup method.
448 * Fix memory leaks due to not destroying some pkg iterators.
450 [ Updated dpkg translations ]
451 * Asturian (Marcos Alvarez Costales). Closes: #529889
452 * Basque (Piarres Beobide). Closes: #529857
453 * French (Christian Perrier).
454 * German (Sven Joachim).
456 [ Updated man page translations ]
457 * German (Helge Kreutzmann).
459 [ Updated dselect translations ]
460 * French (Christian Perrier).
462 [ Updated scripts translations ]
463 * French (Christian Perrier).
464 * German (Helge Kreutzmann).
466 -- Guillem Jover <guillem@debian.org> Tue, 26 May 2009 01:00:36 +0200
468 dpkg (1.15.1) unstable; urgency=low
471 * Fix dpkg-genchanges to not include the additional upstream tarballs
472 when they are not desired (specific to source packages using format 3.0
474 * Call quilt only once to apply all patches instead of once per patch
475 when building 3.0 (quilt) source packages. Closes: #518453
476 * Fix dpkg-shlibdeps so that it works again when analyzing binaries
477 outside of package's directory. Closes: #518687
478 * Modify dpkg-shlibdeps to let shlibs.local override symbols files too.
479 * Drop support of debian/control's “Format” field used by dpkg-source while
480 it's not too late. Instead debian/source/format should be used to indicate
481 the desired source package format.
482 * Update deb-triggers(5) and dpkg-trigger(1) to add a reference to
483 /usr/share/doc/dpkg/triggers.txt.gz. Closes: #519717
484 * Avoid perl warnings in dpkg-gencontrol and dpkg-genchanges when the
485 Architecture field is missing in a binary package. Closes: #510282
486 * Modify Dpkg::Version::check_version() to not die by default.
488 * dpkg-source now ignores all possible vi swap file extensions (and not
489 only .swp). The corresponding exclude pattern for -I also got tightened to
490 only catch filenames starting with a dot. Closes: #515540
491 * dpkg-gencontrol displays a better error message when an ORed dependency
492 is used in a union field like Conflicts, Replaces or Breaks.
494 * dpkg-source's signature check is now done with gpgv if possible and
495 timeouts if not completed within 10 seconds. Closes: #490929
496 When using gpg, use --no-default-keyring to be consistent with gpgv's
497 behaviour to not use the user's keyring. Closes: #440841
498 * Update dpkg-dev dependencies: Closes: #472942
499 - Move gnupg to Recommends. It's needed to sign .dsc and .changes.
500 - Add gpgv to Recommends. Useful to check signatures of extracted packages.
501 - Add debian-maintainers to Suggests. Together with debian-keyring they
502 contain all the GPG keys required to verify official Debian packages.
503 * Drop /etc/dpkg/origins as it's taken over by base-files (see #487437).
504 * Fix dpkg-shlibdeps to properly initialize a symbol-based dependency
505 even when some symbols are associated with a (fake) version "0". Such a
506 version means that the symbol has always existed in all versions of the
508 * When dpkg delegates to dpkg-query or dpkg-deb to do the actual work, add
509 the "--" marker to explicitely document the end of options so that
510 arguments starting with a dash are not interpreted as options.
512 Thanks to Bill Allombert for the patch.
513 * dpkg now correctly refuses empty parameters when an integer value is
514 wanted. Closes: #386197 Based on a patch by Bill Allombert.
515 * Fix a mistake in the french translation of dpkg's manual page.
516 Thanks to Jonathan Gibert. Closes: #522032
517 * Fix dpkg-source to not die when uncompressor processes are killed by
518 SIGPIPE due to tar closing the pipe without exhausting all the data
519 available. Closes: #523329
520 * dpkg-gencontrol now handles properly (empty) dependencies which contain
521 only spaces. Closes: #522787
522 * dpkg-source now accepts additional tarballs (in format "3.0 (quilt)")
523 with a "component" name containing dashes. Closes: #524376
524 * Fix dpkg-source to not complain on binary files that are ignored and are
525 not going to be included in the debian tarball of a "3.0 (quilt)" source
526 package. Closes: #524375
527 * Bump Standards-Version to 3.8.1 (no change required).
528 * Do not store usernames and group names in tarballs created by dpkg-source,
529 they are anyway ignored at unpack time. Closes: #523184
530 * Fix update-alternatives to not remove real files installed in place of
531 an alternative link when the corresponding alternative is fully removed.
533 * Add a new dpkg-vendor tool to query vendor information stored in
534 /etc/dpkg/origins. It can be used in debian/rules to enable different
535 behaviour depending on the current vendor at the time of the build.
537 Modify dpkg-buildpackage to not set the DEB_VENDOR environment variable,
538 packages should use the dpkg-vendor program instead.
539 * Ensure that the automatic patch created in format "3.0 (quilt)" is always
540 well registered with quilt even when it's updated by a new call to
541 dpkg-source. Thanks to Goswin von Brederlow for the initial patch.
543 * Do not update/create debian/patches/.dpkg-source-applied during build,
544 it's only meant to document what patches have been applied at extraction
545 time. Closes: #525835
546 * Let dpkg-buildpackage add the missing execute right on debian/rules if
547 needed. Display a warning when it happens. Closes: #499088
548 * Allow to combine -nc and -S in dpkg-buildpackage but display a warning
549 saying that it's not advised. Closes: #304404
550 * Let dpkg-buildpackage error out with subprocerr() when dpkg-checkbuilddeps
551 is interrupted/killed by a signal. Closes: #498734
552 * Fix dpkg-buildpackage/dpkg-genchanges to properly interpret option -v0.
554 * Improves how dpkg-parsechangelog handles non-existing versions
555 in its --since, --until, --to, --from options. Approximate the intent
556 by selectioning the nearest version instead. Closes: #477638
557 * Update dpkg-parsechangelog's documentation to make it clearer that spaces
558 are not allowed between single characters options and their values.
560 * Don't let dpkg-scanpackages complain about missing overrides when
561 no overrides file has been given. Closes: #468106
562 Thanks to Piotr Engelking for the patch.
565 * Fix typo in dpkg output (‘unexecpted’ → ‘unexpected’). Closes: #519082
566 Thanks to Ivan Masár.
567 * Sync archtable with architectures currently present in Debian sid.
569 - Add kfreebsd-i386 and kfreebsd-amd64.
570 * Add avr32 to cputable. Closes: #523456
571 * Detect the curses headers to use instead of hardcoding them.
572 * Make dpkg-source do not set arch:any in .dsc on arch-restricted packages.
573 Thanks to Philipp Kern <pkern@debian.org>. Closes: #526617
574 * Add '.hgtags' to the default dpkg-source -i regex and -I pattern.
576 * Use backticks instead of non-portable make $(shell) function in automake.
577 * Do not install dselect and start-stop-daemon man pages when the programs
578 have been disabled from configure.
579 * Move Debian specific keyrings to the Debian vendor class and change the
580 Ubuntu vendor class to inherit from it.
581 * Do not set the Arch substvar in dpkg-source, avoiding generating warnings
582 when there's no compiler present. Closes: #526132
583 * Preserve faulting errno when printing reason in start-stop-daemon fatal
585 * Only print fatal errno string in start-stop-daemon if it was non-zero.
586 * Print the valid values for the IO scheduler class in start-stop-daemon
588 * Print a warning when using obsolete '--print-installation-architecture'.
590 * Remove obsolete --largemem and --smallmem dpkg options.
591 * Remove obsolete --force-auto-select dpkg option.
592 * Remove obsolete priorities support from dpkg.
593 * Remove obsolete 822-date program.
594 * Do not right justify the database reading progress percent counter.
595 * Remove deprecated status on substvars for dpkg-source dpkg-genchanges,
596 and stop producing warnings.
597 * Make deprecated dpkg-scanpackages --udeb option produce a warning.
598 * Change dpkg-source --help output to state there's no default substvar
599 file to match reality.
600 * Warn in start-stop-daemon if the argument to --name is longer than the
601 supported kernel process name size. Closes: #353015, #519128
602 * Do not warn in dpkg-deb when parsing unknown fields with the “Private-”
603 prefix. Based on a patch by Nils Rennebarth. Closes: #353040
605 [ Frank Lichtenheld ]
606 * Dpkg::Version: Remove unnecessary function next_elem which just
607 replicates the standard shift behaviour.
610 * Add "keyrings" vendor hook, used by dpkg-source to allow vendors to
611 supply additional keyrings against which source package signatures will
612 be verified. Implement this for Ubuntu. Closes: #525834
614 [ Updated dselect translations ]
615 * German (Sven Joachim).
616 * Swedish (Peter Krefting).
618 [ Updated scripts translations ]
619 * French (Christian Perrier).
620 * German (Helge Kreutzmann).
621 * Swedish (Peter Krefting).
623 [ Added dpkg translations ]
624 * Asturian (Marcos Alvarez Costales). Closes: #519478, #519813, #519998
625 * Esperanto (Felipe Castro). Closes: #523023
627 [ Updated dpkg translations ]
628 * French (Christian Perrier).
629 * German (Sven Joachim).
630 * Slovak (Ivan Masár). Closes: #519084
631 * Swedish (Peter Krefting).
632 * Russian (Yuri Kozlov). Closes: #526659
634 [ Updated man page translations ]
635 * German (Helge Kreutzmann).
636 * Swedish (Peter Krefting).
638 -- Guillem Jover <guillem@debian.org> Thu, 21 May 2009 06:45:45 +0200
640 dpkg (1.15.0) experimental; urgency=low
643 * Do not suggest manually changing the alternative symlinks on
644 update-alternative's verbose mode. Closes: #412487
645 * Refactor subprocess signal setup.
646 * Mark and coalesce similar strings for translation.
647 * Add '.be' to the default dpkg-source -i regex. Closes: #481716
648 Based on a patch by Ben Finney.
649 * Fix link order when using libcompat.a and libintl.a by placing them after
650 libdpkg.a. Based on a patch by Martin Koeppe. Closes: #481805
651 * Remove duplicate program name from dpkg-trigger badusage output.
652 * Trim trailing slash and slash dot from 'dpkg -S' arguments when those
653 are path names, but not on patterns. Closes: #129577
654 * Fix the support for passing more than one --status-fd option to dpkg.
655 Until now only the last one was being used.
656 * Replace realloc plus error checking usage with m_realloc.
657 * Add '.hgignore' to the default dpkg-source -i regex and -I pattern.
659 * Support diverting files when origin and destination are on different file
660 systems. Based on a patch by Juergen Kreileder. Closes: #102144, #149961
661 * Do not silently enable --rename on dpkg-divert --remove. Closes: #160848
662 * Do not allocate memory when lstat fails during package upgrade.
663 * Properly lstat the correct file when using --root on package upgrade.
664 Thanks to Egmont Koblinger. Closes: #281057
665 * Print a longer string when a disallowed field value is found when parsing.
666 * Use $(filter ...) instead of $(findstring ...) to extract space separated
667 options from DEB_BUILD_OPTIONS in debian/rules.
668 * Do not leave new conffile as .dpkg-new when it has been diverted, also
669 properly activate the file trigger for the diverted conffile.
670 Based on a patch by Timothy G Abbott. Closes: #58735, #476899
671 * Improve comment on BUGS section in dpkg-deb.1 about lack of authentication
672 and checksum support in .deb files. Closes: #492052
673 * Use a troff special character for the copyright symbol on man pages.
674 * Mark program names in dpkg-trigger.1 in bold.
675 * Unmark dselect debug messages for translation.
676 * Use a the warning function to uniformly print all warning messages.
677 * Properly use internerr to report about programming bugs.
678 * Do not log repeated strings when the write call wrote partial data.
679 * Change dir to / after chroot when using --instdir.
680 Thanks to Colin Watson <cjwatson@ubuntu.com>. Closes: #509578
681 * Make dpkg log files user readable. Closes: #480556
682 * Clarify in the start-stop-daemon man page that the signal sent by default
683 is TERM not KILL. Closes: #507568
684 * Warn in dpkg-deb man page that -x will modify the extraction directory
685 permissions. Closes: #502496
686 * Make start-stop-daemon behave the same way whether --chuid gets a user
687 name or a uid. Closes: #368000
688 * Add new option --procsched to start-stop-daemon to be able to set the
689 process scheduling policy and priority. Closes: #175740
690 * Add initial C unit test suite for libdpkg.
691 * Sanitize --status-fd output by replacing newlines with spaces.
693 * Remove unneeded cpio dependency from dpkg-dev.
694 * Add kopensolaris support to ostable and triplettable. Closes: #509312
695 * Document in deb.5 in detail the currently supported format, ar member
696 names, types of tar archives and data.tar members.
697 * Print correct feature name on «dpkg --assert-*» failures.
698 * Add progress reporting to dpkg while reading the file list database.
699 Based on a patch by Romain Francoise.
700 * Add new option --iosched to start-stop-daemon to be able to set the
701 IO scheduling class and priority. Closes: #443535
702 Thanks to Chris Coulson <chrisccoulson@googlemail.com>.
703 * Add tar format detection support to the internal extractor.
704 * Add support for ustar long names using the prefix field. Closes: #474092
705 * Code refactoring and cleanup, some of the major changes include:
706 - Use standard interfaces instead of ad-hoc ones.
708 - Fix compilation warnings.
709 - Constify string members in structures and arguments in functions.
710 - Make local functions static.
711 - Remove unused functions, macros and variables.
712 - Fix and cleanup libcompat broken replacement implementations.
713 - Reduction of module interdependencies.
714 - Rename function and variable names to make them more clear.
715 - Cleanup and split of header files.
718 * Enhance dpkg-shlibdeps's error message when a library can't be found to
719 include the ELF format of the desired library. Closes: #474671
720 * dpkg-gensymbols now refuses empty values for the the -v -P and -e
722 * Update dpkg(1) to refer to conffile whenever we speak of configuration
723 file handled by dpkg. Thus harmonize vocabulary with the policy. Thanks
724 to Helge Kreutzmann <debian@helgefjell.de>. Closes: #381219
725 * Improve error message stating that dpkg is unable to create a file so that
726 it also refers to the real filename instead of the non-diverted name only.
727 Thanks to Daniel Hahler for the patch. Closes: #457135
728 * dpkg-gencontrol can now again read the control file from its standard
729 input with "-c-". Closes: #465340
730 * Add DEB_VENDOR environment variable in the build environment to be able
731 to change behaviour dynamically depending on the vendor of the current
732 system (or target system when the user overrides DEB_VENDOR by setting
733 it himself). Closes: #457371
734 * dpkg-shlibdeps give less strong warnings for symbols not found in NEEDED
735 libraries when the shared library is a non-public directory and is likely
736 to be a plugin. Closes: #481165
737 * Clarify list of packages displayed by dpkg --get-selections and
738 dpkg-query -l. Thanks to Jidanni. Closes: #487455
739 * Document -A option in dpkg-buildpackage(1). Closes: #482834
740 * Add some warning concerning the available file and the related commands.
741 They are mostly obsolete for APT users. Closes: #481185
742 * Add new option --listpackage to dpkg-divert. Thanks to Timothy G Abbott
743 <tabbott@MIT.EDU> for the patch. Closes: #485012
744 * Add new option --require-valid-signature to dpkg-source. Closes: #390282
745 * In dpkg-query(1) document the origin of the various fields and warn that
746 they are not always available. Closes: #488293
747 * Improve error message in install-info when the file doesn't exist.
748 Thanks to Thomas Hood <jdthood@yahoo.co.uk>. Closes: #107098
749 * Use description of installed package as fallback in dselect.
750 Based on a patch from Bruce Sass <bmsass@shaw.ca>. Closes: #21659
751 * Reduce memory usage of dselect by avoiding usage of a big infopad.
752 Thanks to Michel Lespinasse <walken@zoy.org> for the patch.
754 * Largely improve and update dpkg-buildpackage's manual page.
755 * Clarify two points in dpkg-source(1). Closes: #490693
756 * Support RUNPATH exactly like RPATH in dpkg-shlibdeps. Closes: #502258
757 Thanks to Javier Serrano Polo <jasp00@terra.es>.
758 * Set Standards-Version to 3.8.0 (no changes needed).
759 * Drop some unneeded lintian overrides.
760 * Fix a chmod call in dpkg-source to not fail when POSIXLY_CORRECT is set.
762 * Optimize dpkg-shlibdeps by caching parsed symbols files and
763 objdump objects. Thanks to Modestas Vainius <modestas@vainius.eu> for the
764 patch. Closes: #503954
765 * Add new framework to hook vendor-specific logic (see
766 module Dpkg::Vendor::Default).
767 * Add Ubuntu vendor object implementing lookup of launchpad bugs in
768 changelogs and a safety-check for Maintainer fields of forked packages
769 (launched during source build). Closes: #426752, #499924
770 * Improve behaviour of update-alternatives --config. Thanks to
771 Osamu Aoki <osamu@debian.org> for the initial patch. We can know
772 select between manual and auto in --config and --all. Closes: #392430
773 * Fix update-alternatives to not switch to manual mode an alternative
774 with a broken symlink (instead let the current action fix it).
775 Also ensure that a message is displayed by default when such a switch is
776 made. Closes: #141325, #87677
777 * Fix update-alternatives' logic to rename files. It failed to ignore errors
778 in some cases where it wanted to when the source file didn't exist.
780 This also makes update-alternatives less noisy when this happens since we
781 don't call mv when we know that it's going to fail.
783 * Properly remove inappropriate slave links in update-alternatives even when
784 we switch to manual mode with --set or --config. Closes: #388313
785 * Modify update-alternatives to always remove the alternative group when the
786 last alternative is removed (even in manual mode).
787 * Ensure that update-alternative --install fix the links if the alternative
788 installed is the one currently selected. Closes: #100135
789 * Let update-alternatives deal with empty files in its administrative
790 directory by ignoring them. Closes: #457863
791 * Add new --target and --as-root options to dpkg-buildpackage to call
792 any debian/rules target with the proper build environment.
794 * Move update-alternatives, dpkg-divert and dpkg-statoverride to /usr/bin
795 but keep compatibility symlinks in /usr/sbin for the squeeze release
796 until all maintainer scripts are fixed (see
797 http://lintian.debian.org/tags/command-with-path-in-maintainer-script.html).
799 * Use dh_lintian to install lintian overrides. Build-Depends on debhelper
800 (>= 6.0.7) for this. Update debhelper compatility level to 6 at the same
802 * Drop cleanup-info script.
803 * Reset umask to 0022 in dpkg-gencontrol and dpkg-gensymbols to ensure that
804 files created in the DEBIAN directory have sane permissions.
806 * Rewrite update-alternatives (so that we can understand it again) and
807 implement new features on top of it:
808 - the --config output is now sorted. Closes: #437060
809 - it now logs information to /var/log/dpkg.log. Closes: #445270
810 - it forbids reusing master alternative as slave and vice-versa.
812 - it forbids reusing alternative links managed by other alternatives
813 - new sanity checks on --install parameters. Closes: #423176
814 - install slave link only if the corresponding slave file is available.
816 - new option --get-selections to export the configuration of all
817 alternatives. It's a simple way to discover the name of all available
818 alternatives. Closes: #273406, #392429
819 - new option --set-selections to reconfigure a set of alternatives in
821 * Document in update-alternatives(8) how one can repair all broken
822 alternatives with a single command. Closes: #250258, #395556
823 * Modify dpkg-gensymbols to replace #PACKAGE# on the fly while installing
824 symbols files so that package having libraries whose name varies between
825 architectures do not need to hardcode the package name. Closes: #517264
828 * Add a --query option to update-alternatives. Closes: #336091, #441904
830 [ Updated scripts translations ]
831 * Polish (Wiktor Wandachowicz). Closes: #514106
833 [ Updated manpages translations ]
834 * Polish (Wiktor Wandachowicz). Closes: #514106
836 [ Updated dpkg translations ]
837 * Portuguese (Miguel Figueiredo).
838 * Korean (Changwoo Ryu).
839 * Romanian (Eddy Petri?or)
840 * Slovak (Ivan Masár). Closes: #514490
842 -- Guillem Jover <guillem@debian.org> Mon, 02 Mar 2009 06:13:53 +0200
844 dpkg (1.14.25) unstable; urgency=low
847 * Fix typo in package description ('privides' -> 'provides').
848 Thanks to Pascal De Vuyst <pascal.devuyst@gmail.com>. Closes: #510755
849 * Do not lose conffiles while replacing them from another package on the
850 same install run. Closes: #513857
851 As a side effect this fixes the following symptoms:
852 - Do not do unneeded conffile prompts when it wasn't locally changed.
853 - Do not ensure (and thus do not output debug information) that the
854 .dpkg-new and .dpkg-tmp directories for an existing directory do not
855 exist. Closes: #80416
858 * dpkg-deb now always produces GNU tarballs inside .deb and ignores
859 TAR_OPTIONS. Closes: #513863
861 [ Updated dpkg translations ]
862 * Basque (Piarres Beobide). Closes: #506092, #509851
863 * Simplified Chinese (Deng Xiyue). Closes: #506177
864 * Traditional Chinese (Tetralet). Closes: #513312
866 [ Updated dselect translations ]
867 * Basque (Piarres Beobide). Closes: #509852
868 * Norwegian Bokmål (Hans F. Nordhaug).
869 * Portuguese (Miguel Figueiredo). Closes: #509904
871 [ Updated scripts translations ]
872 * Add missing space in French translation.
873 Thanks to Cyril "Oeil de lynx" Brulebois.
875 -- Guillem Jover <guillem@debian.org> Tue, 03 Feb 2009 00:00:41 +0200
877 dpkg (1.14.24) unstable; urgency=low
880 * Fix parsing of objdump output (by dpkg-shlibdeps) in a special case where
881 the symbol name is separated only with a single space. Closes: #506139
882 * Fix dpkg-shlibdeps behaviour when Build-Depends-Package is used in the
883 symbols file. It was merging all dependency templates into the generated
884 dependency instead of simply modifying the minimal version. Thanks to
885 Modestas Vainius <modestas@vainius.eu>. Closes: #507346
886 * Fix dpkg-source to correctly extract a source package even when called
887 from a non-writable directory when a target directory has been specified
888 on the command line. Closes: #507217, #507219
891 * Do not allow installing packages with non-obsolete conffiles owned by
892 other packages without a proper Replaces field. Closes: #508392
894 [ Updated dselect translations ]
895 * Galician (Marce Villarino). Closes: #509887
897 [ Updated dpkg translations ]
898 * Galician (Marce Villarino). Closes: #509150
899 * Vietnamese (Clytie Siddall). Closes: #509424
901 [ Updated scripts translations ]
902 * Improve German translation.
904 -- Guillem Jover <guillem@debian.org> Mon, 29 Dec 2008 05:38:31 +0100
906 dpkg (1.14.23) unstable; urgency=low
909 * Blacklist "__gnu_local_gp" symbol for dpkg-gensymbols. Closes: #500188
910 Thanks to Thiemo Seufer <ths@debian.org>.
911 * Important bugfix in dpkg-gensymbols for people using includes in symbol
912 files: the current object didn't flow back from the included file to
914 * Fix Dpkg::Version comparison code. Closes: #504135
917 * Untangle fatal abort condition from the “too many errors” one in the
918 archives and packages processing loop. Closes: #367226
919 * Abort on unrecoverable fatal errors instead of continuing execution, as
920 the recovery code assumed the execution would not be reaching it again
921 and some times bogus update files were created either with incompletely
922 written content or with '#padding' lines. Closes: #497041, #499070
924 [ Updated dpkg translations ]
925 * Brazilian Portuguese (Felipe Augusto van de Wiel).
926 * Catalan (Jordi Mallach).
927 * Czech (Miroslav Kure). Closes: #505910
928 * French (Christian Perrier)
929 * German (Sven Joachim).
930 * Greek (Emmanuel Galatoulas). Closes: #498585
931 * Japanese (Kenshi Muto).
932 * Korean (Changwoo Ryu). Closes: #505777
933 * Norwegian Bokmål (Hans F. Nordhaug).
934 * Polish (Wiktor Wandachowicz).
935 * Portuguese (Miguel Figueiredo). Closes: #505869
936 * Russian (Yuri Kozlov). Closes: #499028, #505735
937 * Romanian (Eddy Petri?or).
938 * Slovak (Ivan Masár). Closes: #506024
939 * Spanish (Javier Fernandez-Sanguino). Closes: #505836
940 * Swedish (Peter Krefting).
942 [ Updated scripts translations ]
943 * Fix typo in Russian. Closes: #499736
944 * Fix wrong translation in French. Closes: #504123
945 * French (Christian Perrier).
947 [ Updated manpages translations ]
948 * German (Helge Kreutzmann).
950 -- Guillem Jover <guillem@debian.org> Tue, 18 Nov 2008 11:50:56 +0200
952 dpkg (1.14.22) unstable; urgency=low
955 * The last "small fix" actually broke conversion of source packages to
956 "3.0 (quilt)" format when they have local changes and no pre-existing
957 quilt series file. Now always provide a valid name in QUILT_SERIES.
959 * Fix permissions of the automatically generated pacth in "2.0" and "3.0
960 (quilt)" format. They were improperly set to 0600 due to tempfile()
961 and were not reset to a sane value. Closes: #496925
962 * Fix dpkg-gensymbols to not scan (real) directories accessed through a
963 symlink contained in the build tree as they may well not be part of
964 the package (with absolute symlinks). It was already skipping symlinks
965 (since 1.14.16.6) for similar reasons.
967 [ Updated dpkg translations ]
968 * Basque (Piarres Beobide). Closes: #496753
969 * Brazilian Portuguese (Felipe Augusto van de Wiel).
970 * Galician (Jacobo Tarrio).
971 * Norwegian Bokmal (Hans Fredrik Nordhaug). Closes: #497309
972 * Swedish (Daniel Nylander and Peter Krefting).
973 * Vietnamese (Clytie Siddall). Closes: #497893
975 [ Updated manpages translations ]
976 * Swedish (Peter Krefting).
978 [ Updated scripts translations ]
979 * Swedish (Peter Krefting).
981 -- Raphael Hertzog <hertzog@debian.org> Fri, 05 Sep 2008 16:54:45 +0200
983 dpkg (1.14.21) unstable; urgency=low
986 * Small fix in "3.0 (quilt)" source format when using non-standard name
988 * Handle debian.tar.gz files like diff.gz in dpkg-buildpackage and
989 dpkg-genchanges to detect the kind of upload.
990 * Add "armel" to /usr/share/dpkg/archtable. Closes: #487768
991 * Modified Dpkg::BuildOptions to recognize and use spaces as separator
992 in DEB_BUILD_OPTIONS (in order to conform with the Debian policy
993 ruling established in #430649). Closes: #486937
994 * Fix dpkg-source to not use -i and -I by default with "1.0" source
995 packages. Closes: #495138
998 * When loading the status file fix up any inconsistent package in state
999 triggers-awaited w/o the corresponding package with pending triggers.
1000 Closes: #487637, #486843, #489068
1001 * Fix --no-act in triggers related code. Closes: #495097
1002 * Do not assert when dpkg stops processing packages due to too many
1003 errors occurred while configuring or removing packages.
1004 Thanks to Ian Jackson <ian@davenant.greenend.org.uk>. Closes: #483655
1005 * Move lzma from dpkg Suggests to Pre-Depends. Closes: #456332
1006 * Match description of -si option in dpkg-buildpackage to the one in
1007 dpkg-genchanges. Closes: #493743
1008 * Close --status-fd file descriptors on exec, so that they are not
1009 inherited by the childs. Closes: #471488, #487684
1010 * State that the preferred front-end is aptitude and replace one instance
1011 of dselect usage with apt-get. Closes: #483785
1013 [ Updated manpages translations ]
1014 * French (Florent Usseil).
1015 * German (Helge Kreutzmann).
1017 [ Updated scripts translations ]
1018 * Russian (Yuri Kozlov). Closes: #490076
1019 * German (Helge Kreutzmann).
1021 [ Updated dpkg translations ]
1022 * Basque (Piarres Beobide). Closes: #490905
1023 * Czech (Miroslav Kure).
1024 * French (Christian Perrier).
1025 * German (Sven Joachim).
1026 * Korean (Changwoo Ryu).
1027 * Romanian (Eddy Petri?or).
1028 * Russian (Yuri Kozlov). Closes: #488689
1029 * Simplified Chinese (Deng Xiyue). Closes: #496176
1030 * Slovak (Ivan Masár). Closes: #488903, #495505
1031 * Thai (Theppitak Karoonboonyanan). Closes: #488090
1033 [ Added dpkg translations ]
1034 * Lithuanian (Gintautas Miliauskas). Closes: #493326
1036 [ Updated dselect translations ]
1037 * Romanian (Eddy Petri?or).
1039 -- Guillem Jover <guillem@debian.org> Tue, 26 Aug 2008 05:32:39 +0300
1041 dpkg (1.14.20) unstable; urgency=low
1044 * Change UTF-8 '©' to '(C)' in deb-version.5 (unfuzzy translations).
1045 * Document --force-breaks in 'dpkg --force-help' output.
1046 * Document triggers --debug values in dpkg.1. Thanks to Sven Joachim.
1047 * Improve package descriptions for dpkg, dpkg-dev and dselect.
1048 Thanks to Justin B Rye for the review and corrections. Closes: #484002
1049 * When dpkg-divert does renames do no check the target file if the source
1050 does not exist and the rename is thus being disabled. This also allows
1051 to remove bogus diversions. Closes: #476973, #469033
1052 * Properly close triggers 'File' file, so it does not get leaked to childs.
1055 * Add missing 'use File::Path' in Dpkg::Source::Package::V3::quilt.
1056 * Use debian/patches/debian-changes-<version> (without the trailing ".diff")
1057 as default name for the automatic patch created by the format "3.0
1058 (quilt)". This ensures a saner cohabitation with patch systems that
1059 apply all of debian/patches/*.{diff,patch}.
1060 * Improve patch parser to accept more patches that are accepted by patch
1062 * Correctly skip comments in quilt series files (concerns "3.0 (quilt)" source
1063 packages). Closes: #486323
1064 * The automatically created patches (in source package formats "2.0" and
1065 "3.0 (quilt)") will now contain "/dev/null" as previous filename when the
1066 patch creates a new file (instead of putting the same name).
1067 * Set PERL_DL_NONLZY to 1 in perl scripts that are likely to be called in
1068 package's configuration scripts to work around the perl bug #479711.
1070 [ Helge Kreutzmann ]
1071 * Fix a typo in dselect.1.
1073 [ Updated dpkg translations ]
1074 * Basque (Piarres Beobide). Closes: #481043
1075 * Brazilian Portuguese (Felipe Augusto van de Wiel).
1076 * Catalan (Jordi Mallach). Closes: #383448
1077 * Czech (Miroslav Kure).
1078 * French (Christian Perrier).
1079 * Galician (Jacobo Tarrio). Closes: #483441
1080 * German (Sven Joachim).
1081 * Norwegian Bokmal (Hans Fredrik Nordhaug). Closes: #480626
1082 * Polish (Wiktor Wandachowicz).
1083 * Simplified Chinese (Deng Xiyue). Closes: #483143
1084 * Swedish (Peter Karlsson).
1085 * Vietnamese (Clytie Siddall). Closes: #481199
1087 [ Updated manpages translations ]
1088 * German (Helge Kreutzmann).
1089 * Polish (Wiktor Wandachowicz).
1090 * Swedish (Peter Karlsson).
1092 [ Updated scripts translations ]
1093 * French (Christian Perrier).
1094 * German (Helge Kreutzmann).
1095 * Polish (Wiktor Wandachowicz).
1096 * Russian (Yuri Kozlov).
1097 * Swedish (Peter Karlsson).
1099 [ Updated dselect translations ]
1100 * Brazilian Portuguese (Felipe Augusto van de Wiel).
1101 * Polish (Wiktor Wandachowicz).
1103 -- Raphael Hertzog <hertzog@debian.org> Wed, 18 Jun 2008 09:33:54 +0200
1105 dpkg (1.14.19) unstable; urgency=low
1108 * Fix a double-free by setting scontext to NULL after calling freecon.
1109 Based on a patch by Russell Coker. Closes: #474339
1110 * Add missing import of internerr in Dpkg::Source::Patch.pm.
1111 Thanks to Marco d'Itri. Closes: #479205
1112 * Consider also custom Package-Type fields when printing warnings in
1113 dpkg-gencontrol. Closes: #452273
1116 * Add missing import of subprocerr in Dpkg::Source::Package. Thanks to Sven
1117 Joachim for the patch.
1118 * Handle symlinks better when deciding if dpkg-source has to copy the
1119 original tarball in the current extraction directory. Closes: #475668
1120 * Fix the dpkg-source error message about unrepresentable changes to
1121 source because the type of a file changed (new and old were inverted).
1122 * Fix dpkg-genchanges to detect udeb based on Package-Type control
1123 header instead of file extension analysis on uploaded files.
1125 * Fix dpkg-source to grant correct permissions to tarballs of native
1126 source packages. Closes: #477784
1127 * Add Conflicts: devscripts (<< 2.10.26) to ensure that people are
1128 using versions of debsign/mergechanges that support the Checksums fields
1129 in *.dsc and *.changes.
1130 * Cleanup the various Conflicts/Replaces fields to remove references
1131 to package that have disappeared before sarge (this includes dpkg-doc-ja,
1132 dpkgname, and dpkg-static which has never officially been built).
1133 dpkg-iasearch has been kept as popcon still reports a few installations.
1134 * Collapsed multiple conflicts of dpkg with old versions of dpkg-dev
1135 in a single Conflicts: dpkg-dev (<< 1.14.16).
1136 * The "3.0 (quilt)" source package format now parses correctly series files
1137 with patch options and warn if something else than -p1 is used.
1138 * Change the way dpkg-source finds the perl object to use to unpack/build
1139 a source package to ignore the minor part of the Format: version.
1140 For example "1.0" and "1.1" would both map to Dpkg::Source::Package::V1
1141 instead of ::V1_0 and ::V1_1 before. Similarly "3.0 (quilt)" now maps to
1142 ::V3::quilt instead of ::V3_0::quilt.
1143 * Fix changelog parser to not fail when an unexpected changelog entry
1144 appears without the preceding heading line. Closes: #478925
1145 * Change the "2.0" and "3.0 (quilt)" source packages to refuse by default
1146 binary files in the debian sub-directory. They have to be whitelisted
1147 through debian/source/include-binaries. Closes: #473041
1148 * Make sure triggers are activated when a file is removed in a directory
1149 shared by multiple packages. Closes: #479850
1151 [ Helge Kreutzmann ]
1152 * Minor fixes and clarifications to man pages.
1154 [ Updated dpkg translations ]
1155 * Brazilian Portuguese (Felipe Augusto van de Wiel). Closes: #480579
1156 * Czech (Miroslav Kure).
1157 * French (Florent Ussel).
1158 * Galician (Jacobo Tarrio).
1159 * German (Sven Joachim).
1160 * Polish (Wiktor Wandachowicz).
1161 * Portuguese (Miguel Figueiredo).
1162 * Russian (Yuri Kozlov). Closes: #478827
1163 * Slovak (Ivan Masár). Closes: #478897
1164 * Swedish (Peter Karlsson).
1166 [ Updated manpages translations ]
1167 * German (Helge Kreutzmann).
1168 * Polish (Wiktor Wandachowicz).
1169 * Swedish (Peter Karlsson).
1171 [ Updated scripts translations ]
1172 * German (Helge Kreutzmann).
1173 * Polish (Wiktor Wandachowicz).
1174 * Russian (Yuri Kozlov). Closes: #479142
1175 * Swedish (Peter Karlsson).
1177 [ Updated dselect translations ]
1178 * Brazilian Portuguese (Felipe Augusto van de Wiel).
1179 * Czech (Miroslav Kure).
1180 * French (Christian Perrier).
1181 * German (Sven Joachim).
1182 * Russian (Yuri Kozlov). Closes: #478802
1183 * Slovak (Ivan Masár). Closes: #479007
1185 -- Guillem Jover <guillem@debian.org> Mon, 12 May 2008 08:33:07 +0300
1187 dpkg (1.14.18) unstable; urgency=low
1190 * Bump po4a version in Build-Depends to 0.33.1-1, as usage of UTF-8
1191 in original man pages was causing build failures. Closes: #473498
1192 * Add triggers documentation to dpkg-dev. Closes: #473449
1193 * Add deb-triggers.5 and dpkg-trigger.1 man pages, and document new
1194 statuses and options in dpkg.1.
1197 * When dpkg-source builds a source package of Format: 2.0 or 3.0 (quilt) it
1198 applies the patches before the build if
1199 debian/patches/.dpkg-source-applied doesn't exist. This file is created
1200 during extraction if patches are applied, and is auto-excluded from the
1201 debian tarball. This enables on-the-fly conversion of source packages from
1202 Format: 1.0 to Format: 3.0 (quilt) without manual intervention of the
1203 user. This feature can be disabled with the option --no-preparation.
1204 * The dpkg-source option --skip-patches disables application of patches
1205 during extraction of source packages using Format: 2.0 or Format: 3.0
1207 * Ensure the Files field is last in *.dsc and *.changes. This is a
1208 work-around for some braindead dsc parsers (dupload and sbuild for
1209 instance, see #473518 and #470440).
1210 * Initialize dependencies for libraries having symbols files with the
1211 smallest minimal version listed in the symbols file instead of using
1212 an unversioned dependency. It's the only way to ensure the library
1213 presence if it wasn't available in all versions of the package that ever
1214 existed. Closes: #474079
1215 * Don't use the -p option of diff for Format: 1.0 source packages.
1216 dpkg-source of sarge doesn't accept data after @@. Closes: #474417
1218 [ Updated dselect translations ]
1219 * German. (Sven Joachim).
1220 * Swedish (Peter Karlsson).
1222 [ Updated dpkg translations ]
1223 * Portuguese (Miguel Figueiredo).
1224 * Simplified Chinese (Deng Xiyue). Closes: #473523
1225 * Swedish (Peter Karlsson).
1226 * Vietnamese (Clytie Siddall). Closes: #473726
1228 [ Updated manpages translations ]
1229 * German (Helge Kreutzmann).
1230 * Swedish (Peter Karlsson).
1232 [ Updated scripts translations ]
1233 * German (Helge Kreutzmann).
1234 * Swedish (Peter Karlsson).
1236 -- Guillem Jover <guillem@debian.org> Tue, 08 Apr 2008 07:00:10 +0300
1238 dpkg (1.14.17) experimental; urgency=low
1241 * Replace strdup plus error checking usage with a new m_strdup function.
1243 * Add new keybinding in dselect to restore all selections back to
1244 whatever's currently installed. Closes: #151540
1245 Thanks to Colin Watson.
1246 * Use system timersub and fix timeval normalization in multiplication in
1247 start-stop-daemon. Thanks to Andreas Påhlsson. Closes: #462225
1248 * Cosmetic fixes to start-stop-daemon output and man page. Document that
1249 --chuid will change the group even if it has not been specified. Add
1250 EXIT STATUS and EXAMPLE sections to man page. Thanks to Justin Pryzby.
1251 * Add Raphael Hertzog to Uploaders, and remove Brendan O'Dea and
1252 Christian Perrier with their permission.
1253 * Use functions from libcompat when those are not provided by the system.
1254 - Add strnlen to libcompat.
1255 - Link programs against libcompat which provides obstack. Closes: #142042
1256 * Change dpkg-gencontrol to not output the Homapage field on udeb.
1257 * Reintroduce 'no-debsig' back in dpkg.cfg to avoid failing to install any
1258 package when debsig-verify is installed. Closes: #311843
1259 * Fix some small memory leaks. Closes: #469520
1260 Thanks to Sean Finney.
1261 * Correct broken dselect logic for self-conflicting packages.
1262 Thanks to Ian Jackson.
1263 * Implement 'Breaks' properly in dselect. Closes: #448946
1264 Thanks to Ian Jackson.
1265 * Fix erroneous description of Breaks in dselect output.
1266 Thanks to Ian Jackson.
1267 * Allow compilation with --disable-nls on systems without libintl.h where
1268 a non glibc claims to be glibc. Closes: #465420
1269 * Fix crash when a .deb file becomes unreadable while dpkg is starting.
1270 Thanks to Ian Jackson. Closes: #255882
1271 * Few file descriptor cleanup and error handling fixes.
1272 Thanks to Ian Jackson. Closes: #443338
1273 * Move test suite invokation to a new check target in debian/rules.
1274 * Add support for nocheck DEB_BUILD_OPTIONS in debian/rules, so that the
1275 dpkg test suite can be skept if desired.
1276 * Improve log and status-fd output by printing more status change updates
1277 and actions. Thanks to Ian Jackson.
1278 * Implement triggers support. Thanks to Ian Jackson.
1279 Closes: #17243, #68981, #215374, #217622, #248693, #308285
1282 * Add a warning displayed by dpkg-genchanges if the current version is
1283 smaller than the previous one. Closes: #4655
1284 * Add -d and -c options in dpkg-checkbuilddeps to override
1285 build-depends/conflicts. Closes: #114774
1286 * Include list of libraries in dpkg-gensymbols' warning about new/lost
1288 * Add -R option to dpkg-buildpackage so that one can replace the usual
1289 "debian/rules" by something else. Closes: #355654
1290 * Always list all binary packages in the Description: field of .changes
1291 files. It's nice for reviewers and mentors.debian.net was using this field
1292 on source only uploads to display short description of what the package is
1294 * Handle the case when the library has a different SONAME than the one used
1295 to find it. Closes: #462413
1296 * Fix Dpkg::Version and Dpkg::Fields::Object to import _g() from
1297 Dpkg::Gettext. Thanks to Adam Heath and Olivier Berger for spotting
1298 this. Closes: #465651
1299 * Change PATH during make check to look into build directories containing
1300 dpkg and the related scripts. Thanks to Mike Frysinger. Closes: #466957
1301 * Some lintian cleanup:
1302 - add overrides for some useless I: tags
1303 - drop unused overrides
1304 - updated several manual pages to fix hyphen-used-as-minus-sign
1305 - fixed manpage-has-errors-from-man in several manual pages
1306 - removed empty debian/dpkg.prerm
1307 * Removed old upgrade code from dpkg's preinst and postinst which only
1308 concerns upgrading from dpkg version older than the one in oldstable
1309 already. And thus we get rid of old the last usage of read in those
1310 scripts (fixes lintian's warning read-in-maintainer-script).
1311 * Removed sorting of dependencies in dpkg-gencontrol and dpkg-source. But
1312 kept it for all other fields (Enhances, Conflicts, Replaces, Breaks,
1313 Build-Conflicts and Build-Conflicts-Indep).
1314 * Instead changed dpkg-shlibdeps to sort the dependencies generated in
1315 ${shlibs:*} variables.
1316 * Changed the logic of simplification of dependencies: if any dependency
1317 must be discarded due to another dependency appearing further
1318 in the field, the superseding dependency will take the place of the
1319 discarded one. Added a test case for this.
1320 * dpkg-shlibdeps properly accounts usage of symbols provided by private
1321 libraries without SONAME. Closes: #469838
1322 * Add a new warning to dpkg-shlibdeps when a library NEEDED is in fact
1323 not used by any of the binaries analyzed. Closes: #472332
1324 * Add a new --warnings=<value> option to select the set of warnings to
1325 activate. By default, do not activate the warning about useless
1326 libraries at the binary level (instead the new warning above is activated
1327 by default: it's less strict and more useful).
1328 * dpkg-source has been heavily refactored to make it easier to support
1329 multiple source package formats. Several new source package formats have
1331 - the format "2.0" is the original wig&pen
1332 - the format "3.0 (quilt)" is based on 2.0. It uses a tarball for the
1333 debian directory and can thus include binary files. Binaries
1334 outside of the debian directory can be also included if they
1335 are listed in debian/source/include-binaries (and option
1336 --include-binaries will generate this file automatically).
1337 Closes: #4588, #4628
1338 - thus it will also preserve timestamps on Debian-provided
1339 documentation like README.Debian. Closes: #366555
1340 - it handles an explicit series of patches and the patch can thus be
1341 named without constraints. Patches can contain arbitrary
1342 headers/comments between file chunks. Closes: #363018
1343 - it ignores changes on a number of temporary and VCS-specific files
1344 by default. Closes: #203792, #323909
1345 - the patches in debian/patches can remove files. Closes: #12564
1346 - the patches are applied at unpack time. Closes: #463048
1347 - the formats "3.0 (quilt/native)" don't include VCS directories by
1348 default. Closes: #435126
1349 - the format "3.0 (custom)" can be used to create a source package
1350 containing arbitrary files. It's useful for helper tools that can
1351 generate the files by themselves in a more efficient way
1352 (like all the *-buildpackage tools). Closes: #246918
1353 - the formats "3.0 (git/bzr)" are experimental formats based
1354 on corresponding VCS repositories. Thanks to Joey Hess and Colin Watson
1356 * dpkg-source has a new --no-check option. It disables GPG check and
1357 checksums checks. Closes: #220758
1358 * dpkg-shlibdeps is now able to look into directories containing libraries
1359 used by cross-built binaries provided that the right environment variable
1360 are set. Closes: #453267
1361 * Change default value of LDFLAGS (set by dpkg-buildpackage) to ''
1362 instead of '-Wl,-Bsymbolic-functions'. It's safer at this point of the
1364 * dpkg-buildpackage will set PKG_CONFIG_LIBDIR (but not override an existing
1365 value) in case of cross-compilation so that pkgconfig finds .pc files
1366 in the directory specific to the target architecture. Closes: #439979
1368 [ Frank Lichtenheld ]
1369 * Add a warning in dpkg-buildpackage if the build-dependencies are not
1370 satisfied during -S. Closes: #445552
1371 * Add a missing space in the German scripts translation. Closes: #463398
1372 * Add improved deb-shlibs.5 manual page by Zack Weinberg. Closes: #466135
1373 * dpkg-buildpackage exports some build related environment variables
1374 now. Based on a patch by Matthias Klose. Closes: #465282
1375 (See dpkg-buildpackage(1) and https://wiki.ubuntu.com/DistCompilerFlags
1377 * Add support for use of SHA1 and SHA256 checksums in .dsc and
1378 .changes files. Information will be available in Checksums-Sha{1,256}
1379 fields. .changes format version increased to 1.8.
1380 * Link dselect against libncursesw. Closes: #466321
1381 * Forward port a patch from the old changelog parser to the new
1382 one that got lost during the transition. '+' and '.' can now
1383 be used in distribution names yet again. Reported by dann frazier.
1386 [ Updated dpkg translations ]
1387 * Korean (Changwoo Ryu).
1388 * Polish (Robert Luberda).
1389 * Romanian (Eddy Petrişor).
1390 * Slovak (Ivan Masár). Closes: #471342
1391 * Swedish (Peter Karlsson).
1392 * Thai (Theppitak Karoonboonyanan). Closes: #468916
1394 [ Updated manpages translations ]
1395 * German (Helge Kreutzmann).
1396 * Polish (Robert Luberda).
1397 * Swedish (Peter Karlsson).
1399 [ Updated dselect translations ]
1400 * Basque. (Piarres beobide). Closes: #462403
1402 [ Updated scripts translations ]
1403 * German (Helge Kreutzmann).
1404 * Polish (Robert Luberda).
1405 * Swedish (Peter Karlsson).
1407 [ Updated dselect translations ]
1408 * Polish (Robert Luberda).
1409 * Romanian (Eddy Petrişor).
1411 -- Guillem Jover <guillem@debian.org> Sun, 30 Mar 2008 12:48:22 +0300
1413 dpkg (1.14.16.6) unstable; urgency=medium
1415 * Let dpkg-gensymbols skip directories which are just symlinks when scanning
1416 the package build dir.
1417 * Bump urgency to medium to compensate lost days in testing migration due to
1418 the two last uploads.
1420 -- Raphael Hertzog <hertzog@debian.org> Sat, 26 Jan 2008 19:20:40 +0100
1422 dpkg (1.14.16.5) unstable; urgency=low
1424 * Fix dpkg-gensymbols handling of #include so that one can include multiple
1425 times the same file and have it properly taken into account.
1426 * Add many armel-specific symbols to dpkg-gensymbols' blacklist.
1429 -- Raphael Hertzog <hertzog@debian.org> Thu, 24 Jan 2008 14:20:10 +0100
1431 dpkg (1.14.16.4) unstable; urgency=low
1433 * Import capit in Dpkg::Cdata from Dpkg::Fields. Closes: #462172
1435 -- Guillem Jover <guillem@debian.org> Wed, 23 Jan 2008 08:44:32 +0200
1437 dpkg (1.14.16.3) unstable; urgency=low
1440 * Remove the ":utf8" layer that utf8-encodes already valid utf8.
1442 * Disable variable substitution in dpkg-genchanges. Closes: #462079, #462089
1445 * Make start-stop-daemon set the supplementary groups if the real user or
1446 group are different than the ones we should switch to. Closes: #462075
1447 * Fix segfault in start-stop-daemon when using --group w/o --chuid (as
1448 a side effect, using --group alone works for the first time in years).
1450 * Fix timeout computations for start-stop-daemon --retry option. This has
1451 not worked properly for a long time (maybe never), but came to light
1452 due to #460903's fix. Closes: #462104
1454 -- Guillem Jover <guillem@debian.org> Tue, 22 Jan 2008 23:39:59 +0200
1456 dpkg (1.14.16.2) unstable; urgency=low
1458 * Change uid after changing gid and initializing supplementary groups in
1459 start-stop-daemon. Closes: #462018
1460 * Change temporary dpkg Breaks on dpkg-dev (= 1.14.13) and (= 1.14.14)
1461 to Conflicts, so that users from etch can upgrade to sid (or lenny
1462 once dpkg has migrated).
1464 -- Guillem Jover <guillem@debian.org> Tue, 22 Jan 2008 13:05:22 +0200
1466 dpkg (1.14.16.1) unstable; urgency=low
1468 * Add libtimedate-perl to dpkg-dev's Depends and to Build-Depends.
1469 Reported by Aurelien Jarno. Closes: #461875
1471 -- Frank Lichtenheld <djpig@debian.org> Mon, 21 Jan 2008 12:48:51 +0100
1473 dpkg (1.14.16) unstable; urgency=low
1476 * Add build-essential as an implicit Build-Depends in dpkg-checkbuilddeps.
1478 * Add build-essential to dpkg-dev Recommends.
1479 * Do not warn about unrecognized Homepage field in binary package stanzas
1480 in dpkg-genchanges and dpkg-source. Closes: #460309
1481 * Do not use the enoent helper binary, and use perl POSIX module instead.
1482 * Keep checking for the process when start-stop-daemon is called with
1483 --retry even if the daemon removed the pidfile. Closes: #460903
1484 Thanks to Justin Pryzby for the analysis.
1485 * Make --quiet silence --test in start-stop-daemon. Closes: #367998
1486 * Check current uid and gid in start-stop-daemon before calling setuid,
1487 setgid and initgroups. Closes: #222524
1488 Based on a patch by Samuel Thibault.
1489 * Remove unimplemented --test option from update-alternatives.
1490 Closes: #392432, #461247
1491 * Additionally check if errno is EEXIST after rmdir(2), as SUSv3 specifies
1492 that on non-empty directories it can either return that or ENOTEMPTY.
1493 This fixes run time problems on Solaris.
1494 * Fix start-stop-daemon --help output to state that --name is one of the
1495 possible required options to use. Closes: #354999
1496 * Demote dselect from priority important to optional. Closes: #461327
1497 * Fix portability issues on HP-UX, by not using backticks inside double
1498 quotes in m4 files. Closes: #24514
1499 * Switch Maintainer address to <debian-dpkg@lists.debian.org> from
1501 * Add README.feature-removal-schedule describing the features to be removed
1502 and README.api describing the provided APIs.
1504 [ Frank Lichtenheld ]
1505 * Make the -L option of dpkg-parsechangelog actually work (it's
1506 only been eleven years...)
1507 * Import the code from my external Parse::DebianChangelog as
1508 Dpkg::Changelog and Dpkg::Changelog::Debian. Using this
1509 from parsechangelog/debian adds the following requested
1511 - Option to use a non-lossy format. Closes: #95579
1512 - Various options to better control how many entries
1513 should be displayed. Closes: #226932
1516 * Replaced all the remaining code in controllib.pl by new modules. All
1517 scripts have been adjusted to use the new modules and controllib.pl has
1519 * The code to parse debian/control is available in a perl module
1520 Dpkg::Control. Closes: #26554
1521 * Temporarily add a Breaks: dpkg-dev (= 1.14.13), dpkg-dev (= 1.14.14) on
1522 dpkg for the convenience of sid users. Closes: #459815
1523 * Update dpkg-source(1) to explain better what the directory after -b is.
1525 * Also force version in ${binary:Version} if dpkg-gencontrol -v<version>
1526 is used. That way we're consistent with the definition of that variable
1527 in deb-substvars(5). Closes: #433477
1528 * Add support of Dm-Upload-Allowed field. Closes: #453400
1529 * Fix dpkg-shlibdeps's filtering of duplicated dependencies in fields of
1530 lesser priority (when -d is used).
1531 * Fix behaviour of dpkg-shlibdeps when the same binary was passed multiple
1532 times for use in different dependency fields (-d option).
1533 * Change logic of -si option of dpkg-genchanges to include the original
1534 tarball only if the current upstream version differs from the upstream
1535 version of the previous changelog entry. Replaces the heuristic based
1536 on revision number (-0, -0.1 or -1). Closes: #28701
1537 * Some code refactoring on dpkg-genchanges and bug fixes in the generation
1538 of the Description: field. As a result, source only uploads will no more
1539 have Description fields.
1540 * Add support of wildcard entries in symbols files. This makes it much
1541 simpler to write symbols files for well managed libraries but in that case
1542 dpkg-gensymbols can't check any more if symbols have disappeared.
1545 [ Updated manpages translations ]
1546 * Fix typo in French. Closes: #460021
1547 * German (Helge Kreutzmann).
1549 [ Updated dpkg translations ]
1550 * Basque (Piarres Beobide). Closes: #459565
1551 * French (Christian Perrier).
1552 * German, Basque, Norwegian Bokmål, Swedish, Vietnamese, Simplified Chinese,
1554 * Russian (Yuri Kozlov). Closes: #460708
1556 [ Updated scripts translations ]
1557 * Russian (Yuri Kozlov). Closes: #460709
1558 * Swedish (Peter Karlsson).
1560 -- Guillem Jover <guillem@debian.org> Mon, 21 Jan 2008 10:00:45 +0200
1562 dpkg (1.14.15) unstable; urgency=low
1565 * Make sure {dpkg-dev,dselect}.preinst are included in the source tarball.
1567 * Blacklist armel-specific symbols in dpkg-gensymbols. Reported by Riku
1568 Voipio. Closes: #457964
1569 * Fix typos in various manpages. Patch from A. Costa. Closes: #458276
1570 * Make dpkg-shlibdeps choose the right symbols files when we have several
1571 debian/*/DEBIAN/symbols for a given soname. Closes: #458860
1572 * Add a -S<pkgbuilddir> option to dpkg-shlibdeps to indicate a package build
1573 tree to scan first when trying to find a needed library.
1574 * Change dpkg-gensymbols to mark symbols that disappeared with #MISSING
1575 instead of #DEPRECATED, it's clearer for people.
1576 * Fix Dpkg::Shlibs::Objdump to properly take into account R_*_COPY
1577 relocations. Closes: #454036
1578 * Explain better the order in which postinst/prerm scripts are called
1579 between a package and its dependencies. Thanks to Nicolas François and
1580 Helge Kreutzmann for their suggestions. Closes: #379641
1581 * Fix Dpkg::BuildOptions so that dpkg-buildpackage doesn't double all
1582 options in DEB_BUILD_OPTIONS when called with the -j parameter.
1586 * Move compression related variables to a new Dpkg::Compression module.
1587 * Remove disabled, obsolete and quite incomplete Hebrew translations.
1588 * Revert dpkg-dev versioned dependency bump on dpkg >= 1.14.13 back to
1589 >= 1.14.6, as the compression variables are now in a module in dpkg-dev.
1590 * Do not disaplay garbage in dselect on monochrome terminals, by setting
1591 a missing ncurses character attribute. Closes: #155741, #157093
1592 Thanks to Sven Rudolph.
1593 * Do not loop endlessly in dselect with very long package descriptions.
1594 Closes: #179320, #342495
1595 Thanks to John Zaitseff.
1596 * Ignore wrapped lines in install-info when matching section titles.
1598 Thanks to Andreas Metzler and Ian Zimmerman.
1599 * Do not use strdup for execvp arguments. Closes: #379027
1600 * Do not print 'failed to kill' warning in start-stop-daemon when polling
1601 the pid. Closes: #157305, #352554
1602 Thanks to Samuel Thibault.
1603 * Properly print build message in dpkg-buildpackage for lzma and bzip2
1604 compressed sources. Closes: #458519
1605 * Promote bzip2 Recommends to Depends for dpkg-dev. Closes: #458521
1606 * Add lzma to dpkg-dev Depends.
1607 * Do not automatically enable -j if DEB_BUILD_OPTIONS contains parallel=n,
1608 and allow overriding its value from the environment. Closes: #458589
1609 * Fix Dpkg::BuildOptions to parse all options in DEB_BUILD_OPTIONS, so
1610 that dpkg-buildpackage called with -j preserves unrecognized options.
1611 * Fix several signed vs unsigned value comparisons that were making some
1612 code to never be executed.
1614 [ Updated dpkg translations ]
1615 * French (Christian Perrier).
1616 * German (Sven Joachim). Closes: #459223
1617 * Norwegian Bokmål (Hans Fredrik Nordhaug). Closes: #457918, #458732
1618 * Simplified Chinese (Deng Xiyue). Closes: #459018
1619 * Swedish (Peter Karlsson).
1620 * Vietnamese (Clytie Siddall). Closes: #459016
1622 [ Updated scripts translations ]
1623 * French (Christian Perrier).
1624 * Swedish (Peter Karlsson).
1626 [ Updated man pages translations ]
1627 * Swedish (Peter Karlsson).
1629 -- Guillem Jover <guillem@debian.org> Mon, 07 Jan 2008 12:12:16 +0200
1631 dpkg (1.14.14) unstable; urgency=low
1633 * Fix override disparity: set priority of dselect to important.
1634 * Add libio-string-perl to Build-Depends as it's needed by a non-regression
1635 test (fix FTBFS, thus a quick upload).
1636 * Make dpkg-dev depend on dpkg (>= 1.14.13) as the latest Dpkg.pm is needed
1639 -- Raphael Hertzog <hertzog@debian.org> Thu, 27 Dec 2007 11:20:38 +0100
1641 dpkg (1.14.13) unstable; urgency=low
1643 [ Frank Lichtenheld ]
1644 * Add an own manpage for Dpkg's version format. Mostly stolen
1645 from policy. Closes: #373003
1646 * Fix control file parsing for field values starting with a colon.
1647 Apparently nobody ever needed this until Vcs-Cvs came along.
1649 * Copy the usr/share/doc directory to dpkg-dev and dselect (Instead
1650 of using symlinks). The space requirements are minimal and adding
1651 the needed dependencies to comply with policy would be way more
1652 inconvenient. Pointed out by Rene Engelhard. Closes: #452730
1653 * Allow more than one arch and more than one type of a package
1654 in debian/files. Parts of the patch by Goswin von Brederlow
1655 and Bastian Blank. Closes: #356299, #377400, #229143
1656 * Allow building only architecture independent packages (-A).
1657 Closes: #109794, #200454
1658 * Bump Standards-Version to 3.7.3 (no changes)
1661 * When dpkg-shlibdeps finds a lib in a directory which is just a symlink to
1662 another directory that is also considered, remember the other directory
1663 name as the canonical one. Closes: #453885
1664 * dpkg-shlibdeps doesn't warn any more about libm.so.6 being unused if the
1665 binary is also linked against libstdc++ since g++ always add an implicit
1666 -lm. Closes: #454616
1667 * Included files in symbols files (via #include) do no more need to repeat
1668 the header line. Closes: #455260
1669 * Tweak the sort algorithm between dependencies so that intervals
1670 are displayed as "a (>= 1), a (<< 2)" instead of the opposite.
1672 * Extend format of symbols files to support arbitrary fields of
1673 meta-information. First field is Build-Depends-Package used to extract the
1674 version requirement possibly encoded in the Build-Depends field and make
1675 sure that the generated dependency is at least as strict as this one.
1676 * Fix dpkg-gensymbols to not update version info of a deprecated symbol.
1678 * Fix dpkg-source's behaviour with options -sk -sK -sp -sP. Closes: #457784
1681 * Ignore the man pages when building without NLS support. Closes: #457673
1682 * Fix perl warnings:
1683 - Check for undefined values when reading from the alternative db.
1684 * Properly handle symlinks for alternatives with inexistent slave links.
1685 Closes: #76295, #246906, #433567, #451872, #220044, #392440, #441021
1687 Based on a patch by Daniel Leidert <daniel.leidert@wgdd.de>.
1688 * Fail when diverting to a non existent directory. Closes: #245562
1689 Thanks to Flavio Stanchina <flavio@stanchina.net>.
1690 * Refactor update-alternatives.
1692 [ Updated dpkg translations ]
1693 * French (Christian Perrier, as this was trivial).
1694 * Spanish (Javier Fernández-Sanguino Peña). Closes: #456984
1695 * Swedish (Peter Karlsson).
1697 [ Updated man pages translations ]
1698 * German (Helge Kreutzmann).
1699 * Swedish (Peter Karlsson).
1701 [ Updated scripts translations ]
1702 * French (Frédéric Bothamy).
1703 * German (Helge Kreutzmann).
1704 * Japanese (Kenshi Muto). Closes: #455841
1705 * Swedish (Peter Karlsson).
1707 -- Guillem Jover <guillem@debian.org> Thu, 27 Dec 2007 09:16:45 +0200
1709 dpkg (1.14.12) unstable; urgency=low
1712 * Add -I<file> option to dpkg-gensymbols to force the usage of a specific
1714 * Dpkg::Shlibs::find_library() now returns canonicalized paths.
1715 * dpkg-shlibdeps always tries the realpath() of a lib as fallback when
1716 trying to identify the package of a lib (and not only for symlinks).
1717 * dpkg-shlibdeps doesn't fail any more if it can't find unversioned
1718 libraries on the presumption that they are just private libraries. Outputs
1720 * Expand the dpkg-shlibdeps manual page with explanations concerning
1722 * The environment variable DPKG_GENSYMBOLS_CHECK_LEVEL can be used to force
1723 dpkg-gensymbols to use a precise level of checks. Closes: #452022
1726 * Define several private functions and variables as static.
1727 * Move extern declarations to header files and stop defining them as extern.
1728 * Unify parsing of Section and Priority in dpkg-gencontrol with Homepage.
1729 * Switch dpkg-scanpackages to use the new Dpkg::ErrorHandling and
1730 Dpkg::Versions modules.
1732 -- Guillem Jover <guillem@debian.org> Thu, 29 Nov 2007 06:14:09 +0200
1734 dpkg (1.14.11) unstable; urgency=low
1737 * dpkg-shlibdeps now ignores the lack of dependency information in some
1738 specific cases (instead of failing):
1739 - when the library is in the same package than the binary analyzed
1740 - when the library is not versionned and can't have a shlibs file
1741 * dpkg-shlibdeps now only displays 10 warnings about symbols not found for
1742 each binary and a count of skipped warnings. Closes: #452318
1743 * dpkg-shlibdeps: optimize "dpkg -S" lookups by caching results, patch
1744 from Aaron M. Ucko <ucko@debian.org>. Closes: #452577
1747 * Fix dpkg-scanpackages to properly support an optional override file.
1750 -- Guillem Jover <guillem@debian.org> Sat, 24 Nov 2007 07:19:02 +0200
1752 dpkg (1.14.10) unstable; urgency=low
1755 * dpkg-shlibdeps now correctly identify private libraries (avoid many
1756 warnings with perl/python modules). Closes: #452338
1757 * Move capit() to a Dpkg::Fields module and use it in dpkg-shlibdeps.
1759 * Add more debug messages to dpkg-shlibdeps to ease collecting information
1760 in case of problems.
1761 * dpkg-shlibdeps now accepts again empty dependencies in shlibs files.
1762 * dpkg-shlibdeps will try harder to identify packages providing a library
1763 by looking up dpkg -S on the realpath of any symlink to a library.
1765 * dpkg-source now correctly identifies the extension of the
1766 orig.tar.{gz,bz2,lzma} file and won't unexpectedly create "Format: 2.0"
1770 * Add support for Package-Type in dpkg-name.
1771 * Restore cross compilation support by honouring the environment host and
1772 arch variables to override the default values on the dpkg-dev scripts.
1774 [ Updated man pages translations ]
1775 * Swedish (Peter Karlsson)
1777 [ Added scripts translations ]
1778 * Swedish (Peter Karlsson)
1780 -- Guillem Jover <guillem@debian.org> Fri, 23 Nov 2007 06:32:27 +0200
1782 dpkg (1.14.9) unstable; urgency=low
1785 * Fix bad behaviour of Dpkg::Path::get_pkg_root_dir() and adjust
1786 dpkg-shlibdeps accordingly. Closes: #452012
1787 * Fix Dpkg::Deps to accept empty fields. Closes: #452013
1789 [ Updated man pages translations ]
1790 * German (Helge Kreutzmann).
1792 -- Guillem Jover <guillem@debian.org> Tue, 20 Nov 2007 07:15:41 +0200
1794 dpkg (1.14.8) unstable; urgency=low
1797 * Heavy rework of dpkg-shlibdeps:
1798 - Support "symbols" files to generate finer-grained dependencies.
1799 Those files can be created by the new dpkg-gensymbols command.
1801 - Uses now all paths in RPATH (instead of only the first).
1803 - Support parsing include directives in /etc/ld.so.conf. Closes: #431597
1804 - Libraries are also searched in the public directories of packages
1805 being built and thus debian/shlibs.local can effectively define
1806 dependencies for libraries that are being built. Closes: #80340
1807 - "symbols" files use the full SONAME as key instead of splitting it in
1808 (name, version) like in the "shlibs" format. This allows binaries to
1809 be linked with unversioned libraries and not fail. Note that
1810 unversioned libraries are still a very bad idea. Closes: #48208
1811 - dpkg-shlibdeps now supports '-x<package>' options that can be used to
1812 exclude packages from generated dependencies (use with care though).
1813 Closes: #41907, #109954
1814 - If dpkg-shlibdeps doesn't find any dependency information for a
1815 shared library that is actively used, then it will fail. This can be
1816 disabled with the option '--ignore-missing-info'. Closes: #10807
1817 * Switch perl programs to use the new Dpkg::Deps module. This changes the
1818 behaviour of dpkg-gencontrol and dpkg-source which will rewrite and
1819 simplify dependencies and build dependencies as possible. Multiple
1820 dependencies on the same package are replaced by their intersection.
1821 Closes: #178203, #186809, #222652
1823 [ Frank Lichtenheld ]
1824 * Add $(MAKE) check to build target
1825 * Allow to use other compressions than gzip on dpkg-source -b
1826 (NOTE: this will result in a Format: 2.0 source package!).
1828 * Various small fixes to the manpages suggested by Helge Kreutzmann.
1830 * Fix Dpkg::BuildOptions (and thereby dpkg-buildpackage) to really
1831 set DEB_BUILD_OPTIONS. Found by Daniel Shepler. Closes: #446119
1832 * Change some ' in shell code in dpkg-source.1 and dpkg-query.1 to
1833 proper \(aq. Reported by Daniel van Eeden. Closes: #447476
1836 * Use shipped perl modules when calling perl programs at build time.
1837 * Switch perl programs to use the new Dpkg::ErrorHandling and Dpkg::Arch
1839 * Add support for format strings in Dpkg::ErrorHandling functions.
1840 * Move build and host arch detection code from dpkg-architecture to
1842 * Add initial udeb support:
1843 - Support new fields fields Package-Type, Subarchitecture, Kernel-Version
1844 and Installer-Menu-Item. Closes: #383916
1845 - New '--type' option for dpkg-scanpackages.
1846 * Make dpkg-dev Conflict on dpkg-cross << 2.0.0 which was sourcing
1847 dpkg-buildpackage expecting it to be a shell script. Closes: #445852
1848 * Get rid of undefined macros from man pages. Thanks to Colin Watson
1851 [ Updated dselect translations ]
1852 * Czech (Miroslav Kure).
1854 [ Added dpkg translations ]
1855 * Thai (Theppitak Karoonboonyanan). Closes: #446501
1857 [ Updated dpkg translations ]
1858 * Czech (Miroslav Kure).
1859 * Galician (Jacobo Tarrio). Closes: #446624
1860 * Polish (Robert Luberda).
1861 * Russian (Yuri Kozlov). Closes: #446278
1863 [ Updated man pages translations ]
1864 * German (Helge Kreutzmann). Closes: #448354
1865 * Polish (Robert Luberda).
1866 * Swedish (Peter Karlsson).
1868 [ Added scripts translations ]
1869 * German (Helge Kreutzmann). Closes: #448353
1871 [ Updated scripts translations ]
1872 * Polish (Robert Luberda).
1873 * Swedish (Peter Karlsson).
1875 -- Guillem Jover <guillem@debian.org> Mon, 19 Nov 2007 10:36:30 +0200
1877 dpkg (1.14.7) unstable; urgency=low
1880 * Add back $dpkglib into @INC, needed by the controllib.pl require in
1881 822-date. Closes: #440962
1882 * Document in dpkg-scanpackages that apt now requires Packages.bz2 in
1883 preference to Packages.gz. Closes: #440973
1884 * Stop recognizing the obsolete Optional field when building packages.
1885 * Use fakeroot, if present, by default to gain root privileges in
1887 * Fix typos in dpkg-deb.1 and start-stop-daemon.8. Closes: #441051
1889 * After '<prerm> remove' fails and while doing the error unwinding, if
1890 the '<postinst> abort-remove' call succeeds, preserve the old status
1891 instead of unconditionally setting it to 'Installed'. Closes: #432893
1892 Thanks to Brian M. Carlson.
1893 * Add Vcs-Browser and Vcs-Git fields to debian/control.
1894 * Add a Homepage field to debian/control (to be changed later when
1895 there's a more formal site).
1896 * Allow comparing unsupported architectures for equality and identity.
1897 Based on a patch by Frank Lichtenheld. Closes: #427210
1898 * Document Origin and Bugs fields in deb-control.5. Closes: #173463
1899 * Do not replace substvars for build dependencies (it was not supported
1902 [ Frank Lichtenheld ]
1903 * Add _MTN to dpkg-source -i default regex. Suggested by Jari Aalto.
1904 * Convert dpkg-buildpackage to a Perl script.
1905 Fix some bugs in the new script detected in experimental:
1907 * dpkg-buildpackage accepts a -j<n> option now which will set
1908 MAKEFLAGS(-j<n>) and DEB_BUILD_OPTIONS(parallel=<n>) accordingly.
1909 parallel=<n> in DEB_BUILD_OPTIONS will be passed to MAKEFLAGS as
1910 well. Based on an idea by Robert Millan. Closes: #440636
1911 * Allow dpkg-source -I without a pattern which will load a default
1912 list of pattern similar to -i without regexp. Patch by
1913 Jari Aalto. Closes: #440972
1914 * Rework documentation of dpkg-source's -i and -I options.
1915 Closes: #323911, #440956
1916 * Add --utf8-strings to gpg call in dpkg-buildpackage since
1917 that seems to be the better default. Suggested by Székelyi Szabolcs.
1919 * Let dpkg-buildpackage error out early if the version number from
1920 the changelog is not a valid Debian version. Closes: #216075
1921 * Fix dpkg-source to create correct diffs for files with spaces in
1922 their name (apparantly we don't have many of those ;).
1923 Based on a patch by Marcel Toele. Closes: #445380
1925 [ Updated dpkg translations ]
1926 * Basque (Piarres Beobide). Closes: #440859
1927 * Danish (Claus Hindsgaul). Closes: #441106
1928 * French (Frédéric Bothamy).
1929 * German (Sven Joachim). Closes: #440537
1930 * Nepali (Shiva Prasad Pokharel). Closes: #437825
1931 * Portuguese (Miguel Figueiredo). Closes: #441113
1932 * Romanian (Eddy Petrişor).
1933 * Vietnamese (Clytie Siddall). Closes: #440502
1934 * Korean (Sunjae Park). Closes: #443190
1936 [ Updated man pages translations ]
1937 * German (Helge Kreutzmann).
1938 * Swedish (Peter Karlsson).
1939 * Korean (Sunjae Park). Closes: #443191
1941 [ Updated scripts translations ]
1942 * Correct a typo in the French translation. Closes: #443276
1943 * Swedish (Peter Karlsson).
1945 -- Guillem Jover <guillem@debian.org> Mon, 08 Oct 2007 07:31:34 +0300
1947 dpkg (1.14.6) unstable; urgency=low
1949 [ Frank Lichtenheld ]
1950 * Synchronise usage information of dpkg, dpkg-deb, and
1951 dpkg-query man pages. This fixes some small mistakes
1952 and also Closes: #321520
1955 * Man pages cleanup:
1956 - Some italics and bold fixes.
1957 - Unify ellipsis, argument separator, and remove redundant program name
1958 preceding the options.
1959 - Substitute 'FILES' header with 'SEE ALSO' in dpkg-buildpackage(1),
1960 and remove leftover string from man page split. Closes: #439306
1961 - Split option descriptions so that it gets easier to distinguish.
1962 - Unify author and copyright information formatting.
1963 * Move variables automatically modified at build time for the perl scripts
1964 to a new style perl module (Dpkg) and make all programs use it.
1965 * Switch 'dpkg-gettext.pl' to a new style perl module (Dpkg::Gettext).
1966 * Implement support for Breaks field. Closes: #379140
1967 Thanks to Ian Jackson.
1968 * Run the deconfiguration of each package to be deconfigured once, instead
1969 of once per each conflicting package being removed. Closes: #378003
1970 Thanks to Ian Jackson.
1971 * Do not segfault when the result from a 'dpkg-query -l' is bigger than
1972 the total number of current packages, and do not produce repeated
1973 results with overlapping patterns on 'dpkg-query -W'. Closes: #428427
1974 * Tightening dpkg-dev versioned Depends to dpkg 1.14.6, and dpkg Conflicts
1975 against << dpkg-dev 1.14.6, where the perl modularization started.
1976 * Do not print empty lines after 'Setting up ...' output. Closes: #392317
1977 * When a slave alternative is inapplicable do not attempt to create the
1978 slave link before removing it again. Closes: #411699
1979 Thanks to Ian Jackson.
1980 * Do not consider it a file conflict if the package contains a symlink
1981 to a directory where the existing symlink on-disk points to the
1982 same place. Closes: #377682
1983 Thanks to Ian Jackson.
1984 * Fix perl warnings:
1985 - When removing a non diverted file with dpkg-divert. Closes: #438416
1986 * Implement support for Homepage field. Closes: #142324
1987 * Ignore XB- fields instead of XC- fields from control file binary package
1988 stanzas in dpkg-genchanges.
1989 * Explicitely ignore all known fields from the control file source package
1990 stanza in dpkg-genchanges, instead of leaving unknown fields unwarned.
1991 * Implement support for Vcs-Browser, Vcs-Arch, Vcs-Bzr, Vcs-Cvs, Vcs-Darcs,
1992 Vcs-Git, Vcs-Hg, Vcs-Mtn and Vcs-Svn fields in control file source
1994 * Implement support for Tag field.
1996 [ Updated scripts translations ]
1997 * French (Frédéric Bothamy, Christian Perrier).
1998 * Swedish (Peter Karlsson).
2000 [ Updated dpkg translations ]
2001 * Dzongkha (Tshewang Norbu). Closes: #430931
2002 * Nepali (Shiva Prasad Pokharel). Closes: #435353
2003 * Polish (Robert Luberda).
2004 * Russian (Yuri Kozlov). Closes: #436147
2005 * Swedish (Peter Karlsson).
2007 [ Updated dselect translations ]
2008 * Russian (Yuri Kozlov). Closes: #436149
2009 * Swedish (Peter Karlsson).
2011 [ Updated man pages translations ]
2012 * German (Helge Kreutzmann).
2013 * Polish (Robert Luberda).
2014 * Swedish (Peter Karlsson).
2016 -- Guillem Jover <guillem@debian.org> Wed, 05 Sep 2007 07:36:02 +0300
2018 dpkg (1.14.5) unstable; urgency=low
2021 * Add lpia support to ostable and triplettable.
2022 * Fix dpkg-source to not emit duplicated entries for the Architecture field
2024 * Fix dpkg-scanpackages to load the override file after having filled the
2025 packages information. Closes: #428169, #428470
2026 * Add '.shelf' to the default dpkg-source -i regex. Closes: #427827
2027 Thanks to Adeodato Simó.
2028 * Support a colon separated list of paths from the ELF RPATH field in
2029 dpkg-shlibdeps. Thanks to Jiří Paleček. Closes: #427988
2030 * Man pages cleanup:
2031 - Reference deb-substvars(5) instead of dpkg-substvars(5). Closes: #429182
2032 - Mark dpkg-* commands in bold.
2033 - Unify title header.
2034 - Remove an additional space in install-info(8) and mark gzip in bold
2035 and remove redundant reference to GNU.
2036 - Fix explanation of dpkg-source '-b' option, remove a reference to
2037 checking for a missing empty string argument, and add a reference
2038 to '-sX' arguments affecting the behaviour. Closes: #428167
2039 - Remove documented dpkg-gencontrol options in dpkg-source left over
2040 from the man pages split.
2042 [ Frank Lichtenheld ]
2043 * Fix typo in German translation of start-stop-daemon(8).
2044 Noted by Joachim Breitner. Closes: #430008
2045 * Correct permission and owner/group handling when extracting
2046 tar balls to match more the user's preferences instead of
2047 ours or the ones from the originator of the tar ball. Patch
2048 by Ian Jackson. Closes: #390915, #207289
2049 * dpkg-source warns now about new empty files since those will
2050 not be represented in the diff. Closes: #383394
2052 [ Updated dselect translations ]
2053 * French (Christian Perrier).
2054 * Romanian (Eddy Petrişor).
2056 [ Updated dpkg translations ]
2057 * Estonian (Ivar Smolin). Closes: #427589
2058 * Portuguese (Miguel Figueiredo).
2059 * Romanian (Eddy Petrişor).
2060 * Spanish (Javier Fernandez-Sanguino). Closes: #429958
2062 [ Updated man pages translations ]
2063 * German (Helge Kreutzmann).
2065 -- Frank Lichtenheld <djpig@debian.org> Tue, 03 Jul 2007 00:27:07 +0200
2067 dpkg (1.14.4) unstable; urgency=low
2070 * Fix perl warnings:
2071 - When unpacking a source package with -sp from a different directory
2072 than the one containing the tarball. Closes: #424998
2073 * Remove an unused variable in dpkg-statoverride by renaming it to the
2074 initially intended name. Closes: #425041
2075 * Fix loose regex in dpkg-source (/\.debian.tar/ -> /\.debian\.tar/).
2076 Thanks to Kylan Robinson. Closes: #425629
2077 * Revert change on 1.14.0 from Aaron M. Ucko. Trim down duped entries only
2078 when passing them to dpkg-query instead. Closes: #425641
2079 * Recognize again architecture wildcards. Closes: #424670
2081 [ Updated dpkg translations ]
2082 * Basque (Piarres Beobide). Closes: #425776
2083 * French (Frédéric Bothamy).
2084 * Galician (Jacobo Tarrío).
2086 -- Guillem Jover <guillem@debian.org> Thu, 24 May 2007 19:30:26 +0300
2088 dpkg (1.14.3) unstable; urgency=low
2091 * Fix perl warnings:
2092 - In dpkg-genchanges when called with -S. Closes: #423193
2093 - In architecture comparison operations. Closes: #423452
2094 - Fill slavepaths undefined entries with an empty string to guarantee
2095 they are always defined. Closes: #423140, #423451, #423544, #423555
2096 * Include the new split man pages deb-substvars.5, deb-override.5 and
2097 deb-shlibs.5 in dpkg-dev.
2098 * Fix deb-substvars.5 section to match reality.
2099 * Refactor update-alternatives.
2100 * Fix dpkg-divert to work again w/o specifying the '--divert' and
2101 '--package' or '--local' options. Closes: #423864
2102 * Document in install-info.8 that when no '--section' option is specified,
2103 install-info will try to use the INFO-DIR-SECTION entry from the info
2104 file. Add missing commas. Thanks to Kurt B. Kaiser. Closes: #397737
2105 * Disambiguate in install-info.8 the use of 'Info directory' with
2106 'Info dir file'. Closes: #420766
2107 * Document in deb-control.5 that the control file can have '#'-style
2108 comments. Closes: #406481
2109 * Make start-stop-daemon fork twice while daemonizing.
2111 [ Updated dpkg-dev translations ]
2112 * French (Frédéric Bothamy). Closes: #423392
2114 [ Updated dpkg translations ]
2115 * French (Christian Perrier).
2116 * German (Sven Joachim). Closes: #423401
2118 [ Updated dselect translations ]
2119 * German (Sven Joachim). Closes: #423403
2121 -- Guillem Jover <guillem@debian.org> Tue, 15 May 2007 16:02:59 +0300
2123 dpkg (1.14.2) unstable; urgency=low
2126 * Remove bashisms in dpkg-buildpackage. Closes: #422239
2127 * Handle case in update-alternatives when there's no existing alternative
2128 to configure. Closes: #260987, #353252, #367717, #392431
2129 * Add solaris support to ostable and triplettable. Closes: #361866
2130 * Properly create the generic name symlink in update-alternatives for new
2131 alternatives. Closes: #422979
2132 * Include translations again, which disappeared due to a dirty source tree
2133 and a bogus Makefile.am for the man pages. Closes: #423029, #423085
2135 -- Guillem Jover <guillem@debian.org> Wed, 09 May 2007 22:22:45 +0300
2137 dpkg (1.14.1) unstable; urgency=low
2140 * Fix partial upgrades by tightening dpkg-dev versioned Depends to
2141 dpkg 1.14.0, and dpkg Conflicts against << dpkg-dev 1.14.0, where
2142 the triplettable support first appeared. Closes: #422848
2144 -- Guillem Jover <guillem@debian.org> Tue, 08 May 2007 18:23:49 +0300
2146 dpkg (1.14.0) unstable; urgency=low
2149 * Make the copyright information in dpkg-deb.1 and dpkg-split.1 match the
2150 one in the source. Thanks to Nicolas François. Closes: #379320
2151 * Allow dpkg-buildpackage to properly override '-b' when passed after '-B'.
2152 Thanks to Julian Gilbey. Closes: #397479
2153 * Move retrieval of uid and gid information from controllib.pl into a
2154 function, so that scripts not needing it do not execute that code.
2155 Based on a patch by Riku Voipio. Closes: #396884
2156 * Do not bail out in dpkg when building without start-stop-daemon support,
2157 by checking if the macro value is true instead of it being defined.
2158 Thanks to Mark Rosenstand.
2159 * Make all perl scripts use strict and warnings, to ease catching errors.
2160 * Refactor update-alternatives code, with the side effect that now commands
2161 on non existing link group files will return an error code (except
2162 for --remove, now). Closes: #273407
2163 * Add a missing newline to a warning message in dpkg. Closes: #390914
2164 Thanks to Ian Jackson.
2165 * Fix typo in variable name in dpkg-source which was causing it to not
2166 create directories when extracting the diff. Closes: #374645
2167 * Fix up and down keystrokes in the dselect help message. Closes: #383438
2168 Thanks to Sven Joachim.
2169 * Convert 822-date to be a simple wrapper around 'date -R'. 822-date is
2170 now deprecated and should not be used anymore. It might be removed
2171 sometime in the future. Closes: #31634, #367712, #314462
2172 Thanks to Frank Lichtenheld.
2173 * Add '.gitignore' to the default dpkg-source -i regex. Closes: #409566
2174 Thanks to Julien Cristau.
2175 * Add '.hg' to the default dpkg-source -i regex. Closes: #414794
2176 * Use l10n-friendlier strings to describe dependencies. Closes: #390916
2177 Thanks to Ian Jackson.
2178 * Change priority for dpkg-dev from standard to optional to match the
2180 * Do not use a build-stamp in debian/rules.
2181 * Fix confusing bottom status lines in dselect, unifying them by removing
2182 the method or package name and capitalizing. Closes: #9085
2183 * Check proper error value returned by BZ2_bzerror. Closes: #410605
2184 * Exit with an error instead of an assert if a file name is too long when
2185 building a .deb package. Closes: #393069
2186 * Exit with an error instead of an assert if the number of conflictors is
2187 exceeded. Remove bogus comments. Closes: #377855
2188 * Fix regular expression special-casing Origin, Bugs and Maintainer fields
2189 which was making X[SBC]- fields containing such strings to propagate into
2190 the .deb control file unprocessed. Thanks to Colin Watson.
2191 * Add support for '--admindir' in dpkg-buildpackage, dpkg-checkbuilddeps
2192 and dpkg-shlibdeps. Closes: #162348
2193 * Cleaning and format unification of manual pages.
2194 * Make the override-file argument to dpkg-scanpackages optional.
2195 * Refactor compression filtering code.
2196 * Split override file information from dpkg-scanpackages.1 into
2197 deb-override.5 manual page.
2198 * Split dpkg-source.1 into independent man pages, namely deb-substvars.5,
2199 deb-shlibs.5, dpkg-buildpackage.1, dpkg-distaddfile.1, dpkg-genchanges.1,
2200 dpkg-gencontrol.1, dpkg-parsechangelog.1 and dpkg-shlibdeps.1.
2201 * Support building binary packages with the member data.tar.lzma compressed
2203 * Require gettext 0.16.1.
2204 * Show the epoch (if present) when displaying package versions.
2205 Closes: #107449, #179913, #345594, #393924, #405668
2206 Based on a patch by Jeffrey W. Baker.
2207 * Switch from pseudo-tags to usertags, and update the documentation.
2208 * Fix typo in German dpkg man page. Closes: #416167
2209 Thanks to Martin Weis.
2210 * Properly sort Uploaders field in generated .dsc files.
2211 * Reorder a bit the fields in output files.
2212 * Speed up dpkg-shlibdeps by avoiding doing a dpkg-query for duped
2213 libraries. Thanks to Aaron M. Ucko. Closes: #421290
2214 * Generalize source architecture handling by abstracting it through the new
2215 Debian triplet and the new triplettable.
2216 * Add armel support to ostable and triplettable. Closes: #414087
2218 [ Updated dpkg translations ]
2219 * Dutch (Bart Cornelis).
2220 * French (Frédéric Bothamy).
2221 * Polish (Robert Luberda).
2222 * Romanian (Eddy Petrişor).
2223 * Simplified Chinese (Anthony Wong). Closes: #415320
2224 * Traditional Chinese (Anthony Wong). Closes: #415230
2226 [ Added dpkg translations ]
2227 * Estonian added (Ivar Smolin). Closes: #422404
2228 * Kurdish added (Erdal Ronahi). Closes: #418154
2229 * Marathi added (Priti Patil). Closes: #416810
2231 [ Updated man pages translations ]
2232 * German (German l10n team). Closes: #418528
2233 * Polish (Robert Luberda).
2235 [ Updated dselect translations ]
2236 * Dutch (Bart Cornelis).
2237 * Polish (Robert Luberda).
2239 -- Guillem Jover <guillem@debian.org> Tue, 08 May 2007 11:11:50 +0300
2241 dpkg (1.13.25) unstable; urgency=low
2244 * Fix year 2018 in changelog for Michael Alan Dorman's upload in 1998,
2245 which was confusing the changelog parsers. Closes: #402526
2246 * Document in its man page that update-alternatives requires cooperation
2247 from all packages dealing with the specific file. Closes: #396338
2248 Thanks to Tomas Pospisek <tpo_deb@sourcepole.ch>.
2249 * Require POSIX inside subprocerr in controllib.pl. Closes: #390636
2250 Thanks to Brendan O'Dea <bod@debian.org>.
2251 * Support extracting lzma compressed source and binary packages,
2252 and add a Suggests on package lzma. Closes: #347715
2253 * Add '/emul/ia32-linux' biarch paths to dpkg-shlibdeps. Closes: #403216
2254 * Remove non-modified /etc/dpkg/dpkg.cfg configuration file when upgrading
2255 from versions 1.9.21 through 1.10.28, to avoid getting prompted about
2256 conffile changes. Closes: #398061
2258 [ Updated dpkg translations ]
2259 * Chinese (Traditional, Asho Yeh).
2260 * Korean (Sunjae Park). Closes: #394135, #404938
2261 * Norwegian Bokmal (Hans Fredrik Nordhaug). Closes: #391143
2262 * Nepali (Shiva Prasad Pokharel).
2263 * Romanian (Eddy Petrişor).
2264 * Catalan (Jordà Polo).
2265 * Swedish (Peter Karlsson).
2266 * Vietnamese (Clytie Siddall). Closes: #399343
2268 [ Added dpkg translations ]
2269 * Punjabi (A S Alam).
2271 [ Updated dpkg-dev translations ]
2272 * Catalan (Jordi Mallach).
2274 [ Updated dselect translations ]
2275 * Korean (Sunjae Park). Closes: #404943
2277 -- Guillem Jover <guillem@debian.org> Tue, 2 Jan 2007 00:23:57 +0200
2279 dpkg (1.13.24) unstable; urgency=low
2282 * Fix dselect segfault by adding a field description matching the
2283 dependency field enum position. Closes: #392731, #392724
2285 [ Updated dpkg Translations ]
2286 * Nepali (Shiva Prasad Pokharel). Closes: #373728
2288 -- Guillem Jover <guillem@debian.org> Fri, 13 Oct 2006 16:34:39 +0300
2290 dpkg (1.13.23) unstable; urgency=low
2293 * Add initial support for the Breaks field, by parsing but rejecting it.
2294 Thanks to Ian Jackson <iwj@ubuntu.com>. Closes: #375703
2295 * Use dpkg-architecture from the source tree to get the target Debian
2296 architecture, instead of duplicating the logic in the m4 files.
2297 * Remove comment headers in dselect/helpmsgs.{cc,h} about the files being
2298 autogenerated, replace them with a proper license and copyright comment.
2300 * Add a new line at the end of m4/compiler.m4 file, to cope with an
2301 autoreconf failure due to the new m4 1.4.7.
2303 [ Nicolas François ]
2304 * Specify --null before the -T tar's option to avoid the "tar: -: file name
2305 read contains nul character" warning.
2306 Closes: #376351, #375749, #376724, #377279
2308 [ Added dpkg Translations ]
2309 * Dzongkha (Kinley Tshering).
2311 [ Updated dpkg Translations ]
2312 * Basque (Piarres Beobide). Closes: #375118
2313 * Brazilian Portuguese (Andre Luis Lopes).
2314 * Catalan (Robert Millan, Jordi Mallach). Closes: #383448
2315 * Czech (Miroslav Kure).
2316 * Danish (Claus Hindsgaul).
2317 * Dutch (Bart Cornelis).
2318 * Dzongkha (Tenzin Dendup). Closes: #388192
2319 * French (Frédéric Bothamy).
2320 * Galician (Jacobo Tarrio).
2321 * German (Sven Joachim). Closes: #381409, #381740
2322 * Hungarian (SZERVÁC Attila).
2323 * Italian (Stefano Canepa, Davide Viti). Closes: #387821
2324 * Japanese (Kenshi Muto). Closes: #386963
2325 * Khmer (Khoem Sokhem). Closes: #375099
2326 * Portuguese (Miguel Figueiredo, Rui Branco).
2327 * Romanian (Eddy Petrişor).
2328 * Russian (Yuri Kozlov). Closes: #376746, #391143
2329 * Slovak (Peter Mann). Closes: #387282
2330 * Spanish (Javier Fernandez-Sanguino). Closes: #386759
2331 * Swedish (Daniel Nylander). Closes: #383643
2332 * Vietnamese (Clytie Siddall). Closes: #383588
2334 [ Added dpkg-dev Translations ]
2335 * Catalan (Jordi Mallach).
2336 * French (Philippe Batailler).
2338 [ Updated dselect Translations ]
2339 * Brazilian Portuguese (Andre Luis Lopes).
2340 * Catalan (Robert Millan, Jordi Mallach).
2341 * Danish (Claus Hindsgaul).
2342 * German (Sven Joachim). Closes: #384843
2343 (Sven is now the new German translation maintainer for dpkg and dselect).
2344 * Hungarian (SZERVÁC Attila).
2345 * Indonesian (Arief S Fitrianto). Closes: #391144
2346 * Italian (Stefano Canepa).
2347 * Japanese (Kenshi Muto).
2348 * Norwegian Bokmål (Hans Fr. Nordhaug).
2349 * Russian (Yuri Kozlov).
2350 * Slovak (Peter Mann).
2351 * Spanish (Javier Fernández-Sanguino Peña). Closes: #391144
2352 * Swedish (Daniel Nylander).
2353 * Vietnamese (Clytie Siddall).
2355 [ Updated man pages translations ]
2356 * French (Philippe Batailler).
2357 * German (Helge Kreutzmann). Closes: #379030
2359 [ Added man pages translations ]
2360 * German (Helge Kreutzmann).
2361 Closes: #379286, #379298, #379417, #379433, #379661, #379798, #379825
2362 Closes: #379985, #380130, #380239, #380365, #381047, #380660, #380443
2363 Closes: #381349, #381488
2364 * Japanese (KISE Hiroshi).
2365 Closes: #381141, #381865, #384768, #385675, #386965, #388837
2367 -- Guillem Jover <guillem@debian.org> Thu, 12 Oct 2006 02:56:09 +0300
2369 dpkg (1.13.22) unstable; urgency=low
2372 * Version the po4a Build-Depends to >= 0.23 as we are using options
2373 introduced in that version. Thanks to Sergio Gelato. Closes: #370536
2374 * Add '.bzrtags' directory to default dpkg-source -i regex.
2375 Suggested by Adeodato Simó. Closes: #370392
2376 * Print update-alternatives '--config' listing layout evenly spaced.
2378 * Clarify the legend in update-alternatives '--help' (Andrew Ferrier).
2380 * Add the source version inside parenthesis to the Source field in the
2381 generated .changes and binary packages if the binary package version
2382 differs (like in binNMUs). Closes: #62529
2383 * Add missing comment serving as documentation about abort-remove on
2384 removal in dpkg.postinst (Justin Pryzby). Closes: #372145
2385 * Fix typo in dpkg-deb manpage (Robert Luberda). Closes: #373999
2386 * Clarify dpkg-architecture new options '-e' and '-i' in man page, add
2387 backward compatibility information and give some examples.
2388 Thanks for the initial suggestions to Junichi Uekawa. Closes: #370830
2389 * Modified some strings to be able to merge them in the .pot files.
2390 * Add new '--umask' option to start-stop-daemon. Closes: #368003
2392 [ Frank Lichtenheld ]
2393 * dpkg-source issued spurious warnings about fields defined with
2394 XB-. They now get correctly suppressed. Closes: #374154
2395 * Give a correct warning when the user requested an unknown
2396 sign command that we will default to a pgp style interface.
2399 [ Updated dpkg Translations ]
2400 * Romanian (Eddy Petrişor).
2401 * Galician (Jacobo Tarrio).
2402 * French (Christian Perrier).
2403 * Swedish (Peter Karlsson).
2404 * Basque (Piarres Beobide). Closes: #373107
2405 * Polish (Robert Luberda).
2406 * Catalan (Guillem Jover).
2408 [ New dpkg Translations ]
2409 * Nepali (Paras Pradhan). Closes: #373728
2411 [ Updated dselect Translations ]
2412 * Simplified Chinese (Kov Tchai). Closes: #366260
2414 [ Updated man pages translations ]
2415 * Polish (Robert Luberda).
2417 [ Christian Perrier ]
2418 * Typo fix in update-alternatives ("alternativse"). Thanks to Eddy Petrisor
2419 for spotting it. Translations unfuzzied.
2420 * Make similar messages in dpkg-statoverride and dpkg-divert exactly similar
2421 Thanks to Eddy Petriso for spotting them, again.
2423 -- Guillem Jover <guillem@debian.org> Wed, 21 Jun 2006 18:03:29 +0300
2425 dpkg (1.13.21) unstable; urgency=low
2428 * Disambiguate error message about conflicting command line actions by
2429 providing both long and short option names. Based on a suggestion by
2430 Josip Rodin. Closes: #45575
2431 * Add '/lib32' and '/usr/lib32' to the dpkg-shlibdeps library path search
2432 list. Closes: #367892
2433 * Revert usage of English perl non-essential module from install-info.
2434 Closes: #369928, #369958, #370157, #370174, #370210
2435 * Print the correct file being parsed by dpkg-parsechangelog's debian
2436 parser. Closes: #368961
2437 * Fix dependency cycle breaking in the case when every link involves
2438 a Provides (Ian Jackson). This is a proper fix for #349442.
2441 [ Updated dpkg Translations ]
2442 * Czech (Miroslav Kure).
2443 * Vietnamese (Clytie Siddall).
2445 -- Guillem Jover <guillem@debian.org> Sun, 4 Jun 2006 19:02:44 +0300
2447 dpkg (1.13.20) unstable; urgency=low
2449 [ Frank Lichtenheld ]
2450 * Add gettext support for the Perl scripts. Based on a patch by
2451 Nicolas François. Closes: #165843
2452 * Only print usage information of dpkg-scanpackages on stdout
2453 if requested explicetly. Use stderr in case of error.
2455 * Add remarks to dpkg-scansources and dpkg-scanpackages
2456 man pages about the need to compress the generated files
2457 to be able to access them via apt. Closes: #65839
2458 * Allow '+' and '.' in distribution names in Debian changelogs.
2459 Based on a patch by John Wright.
2461 * Use the Debian keyring in dpkg-source when checking signatures
2462 of .dsc files, if available. Closes: #364726
2463 * Let dpkg-buildpackage pass through all remotely sensible
2464 -sX options to dpkg-source (-s[nsAkurKUR] currently).
2466 * Improve the description of --showformat in dpkg-deb
2467 man page and add a pointer to the complete description
2468 of the option in dpkg-query.
2469 * Don't spew out garbage from dpkg-deb, if the second argument
2470 to -I is a absolute filename. Based on a patch by Ian Eure.
2472 * Fix --ignore-depends argument value parsing. Closes: #169125
2473 * Completely remove md5sum diversion madness. Instead, we Pre-Depend
2474 on a version of textutils which provides /usr/bin/md5sum. We rely on
2475 the logic in coreutils to remove our diversions. Patch by
2476 Ian Jackson. Closes: #315784, #313605
2477 * Try harder to detect dependency cycles that contain Provides
2478 links. Closes: #349120, #349442
2479 * Update archtable to reflect current archive: Add amd64 and remove
2481 * Don't claim in dpkg man page that we set DPKG_OLD_CONFFILE and
2482 DPKG_NEW_CONFFILE on sub shells since we actually don't.
2483 * Fix printing of user defined fields with --showformat and
2484 document the existance of this feature in dpkg-query man page.
2485 * Make --forget-old-unavail more reliable by deleting architecture
2486 information of removed packages. Patch by Piotr Engelking.
2488 * When building packages with dpkg-deb give a more useful error
2489 message in case a conffile entry has leading whitespace. Patch
2490 by David Lopez Moreno. Closes: #281562
2491 * Don't drop directories that contain our conffiles too early from
2492 our file listing. Otherwise we might leave them behind on purge
2493 if we share them with other packages.
2494 Closes: #174180, #198128, #198522, #318825, #366178
2496 [ Nicolas François ]
2497 * Fix typos in the Russian man pages. Thanks to Stepan Golosunov.
2499 * Honour tabbing requested via --showformat even if the field to
2500 be printed is empty. Closes: #361671
2501 * Flush the terminal's input before prompting what to do with a
2502 configuration file. Closes: #316551
2503 * Fix the --force-depends-version option. Closes: #57104
2506 * Standarize scripts usage output format and at the same time make
2507 the strings easier for the translators. Add '--help' and '--version'
2508 for most of the scripts. Print the usage and version to stdout.
2509 * Do not strip the epoch from the source:Upstream-Version substvar.
2511 * Properly check and report lock file existence in install-info.
2512 Based on patch by Ben Pfaff. Closes: #368874
2513 * Correct default info directory for '--infodir' in intall-info man
2514 page (Ben Pfaff). Closes: #368875
2515 * Print the bogus version and prefix the error message with 'dpkg: '
2516 when using '--compare-versions'. Closes: #369177
2517 * Remove duplicated string " , at changelog " in dpkg-parsechangelog's
2518 debian style parser (Julian Gilbey). Closes: #369205
2519 * Update the Section and Priority fields in the status file from the
2520 new packages. We assume that the information from the binary package
2521 is correct, otherwise it should be fixed there to match the archive
2522 override file (Koblinger Egmont).
2523 Closes: #54529, #58106, #81171, #230610, #237622, #237626
2524 * Bump Standards-Version to 3.7.2 (no changes needed).
2525 * Add lintian overrides for dpkg, dpkg-dev, dselect and sources.
2526 * Replace logrotate installation logic with dh_installlogrotate.
2528 [ Updated dpkg Translations ]
2529 * Portuguese (Miguel Figueiredo).
2530 * Polish (Robert Luberda).
2531 * Hungarian (SZERVÁC Attila).
2532 * Romanian (Eddy Petrişor).
2533 * Russian (Yuri Kozlov). Closes: #366353
2534 * Czech (Miroslav Kure).
2535 * Simplified Chinese (Kov Tchai). Closes: #366985
2536 * Swedish (Peter Karlsson).
2537 * Galician (Jacobo Tarrio).
2538 * Slovak (Peter Mann).
2539 * Dutch (Bart Cornelis).
2540 * Basque (Piarres Beobide). Closes: #366185
2542 [ Updated dselect Translations ]
2543 * Polish (Robert Luberda).
2544 * Basque (Piarres Beobide). Closes: #366187
2545 * Czech (Miroslav Kure).
2546 * Romanian (Eddy Petrişor).
2548 [ Updated man pages translations ]
2549 * Polish (Robert Luberda).
2551 -- Guillem Jover <guillem@debian.org> Wed, 31 May 2006 07:43:16 +0300
2553 dpkg (1.13.19) unstable; urgency=low
2555 [ Frank Lichtenheld ]
2556 * Add -follow (back) to find call in dpkg-scanpackages.
2558 * Fix error in archive.c that lead to a infinite loop when
2559 installing files with long, non-ASCII filenames in
2560 certain locales. Closes: #346436
2562 [ Updated dpkg Translations ]
2563 * French (Christian Perrier).
2564 * Galician (Jacobo Tarrio).
2565 * Romanian (Eddy Petrişor).
2566 * Dutch (Bart Cornelis).
2567 * Swedish (Peter Karlsson).
2568 * Danish (Claus Hindsgaul). Closes: #362317
2569 * Czech (Miroslav kure).
2570 * Vietnamese (Clytie Siddall). Closes: #363264
2571 * Spanish (Javier Fernández-Sanguino Peña). Closes: #357911
2572 * Basque (Piarres Beobide). Closes: #363683, #363679
2573 * Japanese (Kenshi Muto). Closes: #365334
2575 [ Updated dselect Translations ]
2576 * Romanian (Eddy Petrişor).
2577 * Galician (Jacobo Tarrio).
2578 * French (Christian Perrier).
2579 * Dutch (Bart Cornelis).
2581 [ Nicolas Francois ]
2582 * Generate the Russian man pages in the KOI8-R charset. Closes: #361987
2583 * Document the shlibs.local format in dpkg-source(1). Closes: #316485
2584 * Fix a typo in an error message. Thanks to Justin Pryzby. Closes: #364539
2587 * Fix strings so that they can be more easily translated. Closes: #134358
2588 * Add new substvars source:Version, source:Upstream-Version and
2589 binary:Version so packages will be able to avoid breaking on binNMUs.
2590 Based on a patch by Ken Bloom and Jeroen van Wolffelaar. Closes: #358530
2591 * Support binNMU safe packages even when source and binary differ in
2593 * Rename dpkg:UpstreamVersion to dpkg:Upstream-Version. Make dpkg:Version
2594 and dpkg:Upstream-Version get the current dpkg versions instead of the
2595 ones from the package being built.
2596 * Split usage strings to make it easier for translators when those change.
2598 * Standarize start-stop-daemon usage output format.
2599 * Make install-info '--dir-file' option compatible with GNU install-info
2600 by renaming the infodir variable to dirfile and not appending the
2601 '/dir' string except when initializing from '--info-dir' or
2602 '--infodir' (Wayne Davison). Closes: #61640, #67237, #286275
2603 * Make install-info add a new line after adding the last entry at the
2604 end of the dir file, which makes the info readers able to see those
2605 last enties (Nicolas François). Closes: #164495
2606 * Use the numerical value of errno instead of a string in install-info
2607 when checking if the locking error was due to an already existing
2608 file, which is locale dependent, and die accordingly. Based on a patch
2609 by Nicolas François. Closes: #199204, #210781
2610 * Escape hyphens in man pages.
2611 * Bump Standards-Version to 3.7.1.
2612 * Wrapped debian/control fields except Uploaders given current policy.
2614 -- Guillem Jover <guillem@debian.org> Thu, 4 May 2006 14:05:21 +0300
2616 dpkg (1.13.18) unstable; urgency=low
2618 [ Updated dpkg Translations ]
2619 * Romanian (Sorin Batariuc). Closes: #356664
2620 * Danish (Claus Hindsgaul). Closes: #356188
2621 * Polish (Robert Luberda).
2622 * Dutch (Bart Cornelis).
2624 [ Updated dselect Translations ]
2625 * Spanish (Javier Fernández-Sanguino Peña). Closes: #357912
2626 * Danish (Claus Hindsgaul). Closes: #356188
2627 * Polish (Robert Luberda).
2628 * Russian (Yuri Kowlov). Closes: #361415
2630 [ Updated man pages translations ]
2631 * Typos corrected in French dpkg-source man page
2632 Thanks to Nicolas Bonifas who spotted them
2633 * Russian completed. Thanks to Yuri Kozlov.
2636 [ Christian Perrier ]
2637 * Correct typos in man pages. Thanks to A. Costa for spotting them
2638 Closes: #358091, #358092, #358093, #358094, #358095
2641 * Add a '[!]' in --force-all help denoting that it is a dangerous option.
2643 * Prefix any chroot path to the exec file name when stating it in
2644 start-stop-daemon. Closes: #318771, #333066
2645 * Add '-r' to the help output of start-stop-daemon (Jared Spiegel).
2647 * Use mustsetvar when setting the value of the sversion variable in
2648 dpkg-buildpackage (Andrew Suffield). Closes: #158953
2649 * Pass '--admindir' option over to dpkg-query when passing '--admindir' or
2650 '--root' to dpkg (initial patch by Branden Robinson).
2651 Closes: #153305, #271041, #282853, #307715, #355915
2652 * Support system library directories in dpkg-shlibdeps symlinked from
2653 '/lib/ldconfig'. Closes: #356452
2654 * Document that 'dpkg --get-selections' and 'dpkg-query -l' without a
2655 pattern will not list packages in state purge. Closes: #355633
2656 * Obsolete force/refuse 'auto-select' dpkg option.
2657 * Add new '--clear-selections' option to dpkg (Andrew Suffield).
2659 * Use '--clear-selections' in the dpkg man page example on how to transfer
2660 the status to another installation. Closes: #137442
2662 -- Guillem Jover <guillem@debian.org> Mon, 10 Apr 2006 06:40:22 +0300
2664 dpkg (1.13.17) unstable; urgency=low
2666 [ Frank Lichtenheld ]
2667 * Fix handling of -DArchitecure=foo in dpkg-gencontrol. Closes: #251911
2668 * Handle architectures in all dependency fields in debian/control,
2669 even those of binary packages. Closes: #252657, #324741, #347819
2670 * More dpkg-scanpackages fixes (--arch option handling). Closes: #353506
2673 * Add missing parentheses surrounding a man page section reference
2674 in the dpkg-source man page (Matt Kraai). Closes: #353731
2675 * Fix misspelling of "occurred" as "occoured" in dpkg-gencontrol and
2676 dpkg-source (Matt Kraai). Closes: #353949
2677 * Major cleanup of manpages, by using properly the bold and italic
2678 attributes and other embellishments.
2679 * Add dpkg-query(1) in the SEE ALSO section in dpkg(1). Closes: #354643
2680 * Don't try to compile in SELinux support on GNU/kFreeBSD amd64.
2681 * Add new quiet option to dpkg-source to supress warnings. Closes: #355065
2682 * Do not expand architecture aliases anymore in .dsc files.
2683 * Change start-stop-daemon's --exec behaviour again on GNU/Linux to compare
2684 the referred file pointed by the '/proc/<pid>/exe' symlink, stripping
2685 any ' (deleted)' string and stating the result. Closes: #354867
2687 [ Updated man pages translations ]
2688 * Polish (Robert Luberda). Closes: #353782
2689 * French (Philippe Batailler).
2691 [ Updated dselect Translations ]
2692 * Hungarian (Szervác Attila).
2693 * Dutch (Bart Cornelis).
2694 * Czech (Miroslav Kure).
2696 [ Updated dpkg Translations ]
2697 * Italian (Lele Gaifax)
2698 * Simplified Chinese (Carlos Z.F. Liu).
2699 * Portuguese (Miguel Figueiredo).
2700 * Dutch (Bart Cornelis).
2701 * Hungarian (Szervác Attila).
2702 * Czech (Miroslav Kure).
2703 * Russian (Yuri Kozlov). Closes: #357724
2705 -- Guillem Jover <guillem@debian.org> Mon, 20 Mar 2006 03:33:03 +0200
2707 dpkg (1.13.16) unstable; urgency=low
2709 * The "not really a brown paper bag needed but it's close" release
2712 * Move auxiliary autotools scripts to config/.
2713 * Require gettext 0.14.5.
2714 * Move the methods directory to dselect/methods, so the contents will not
2715 be installed if dselect is not to be built.
2716 * Move dselect gettext strings to its own domain provided now by the
2719 [ Frank Lichtenheld ]
2720 * Fix override handling in dpkg-scanpackages which was broken in
2721 1.13.14 and .15. Closes: #353305
2722 * Make -isp the default behaviour of dpkg-gencontrol as it is
2723 always used anyway these days. Suggested by Matthew Vernon.
2725 * Typo fixes in man pages by A. Costa:
2726 - dpkg-deb.1 Closes: #353424
2727 - dpkg-statoverride.8 Closes: #353425
2728 - install-info.8 Closes: #353426
2729 - start-stop-daemon.8 Closes: #353427
2730 - update-alternatives.8 Closes: #353428
2731 - dpkg.1, dpkg.cfg.5 Closes: #353429
2733 -- Frank Lichtenheld <djpig@debian.org> Sat, 18 Feb 2006 17:59:00 +0100
2735 dpkg (1.13.15) unstable; urgency=low
2738 * Add a missing closing parenthesis in a dpkg string (Jordi Mallach).
2740 [ Christian Perrier ]
2741 * Updated Translations:
2742 - Brazilian Portuguese (Andre Luis Lopes). Closes: #352432
2743 - Galician (Jacobo Tarrio). Closes: #352443
2745 [ Updated Translations ]
2746 * Catalan (Jordi Mallach).
2747 * Portuguese (Miguel Figueiredo).
2748 * Swedish (Daniel Nylander).
2750 [ New Translations ]
2751 * Hungarian (Szervác Attila).
2753 [ New Manpage Translations ]
2754 * Hungarian (Szervác Attila): dpkg.cfg.5 and dselect.cfg.5.
2756 -- Frank Lichtenheld <djpig@debian.org> Wed, 15 Feb 2006 23:37:40 +0100
2758 dpkg (1.13.14) experimental; urgency=low
2761 * Make start-stop-daemon print the proper version instead of 'VERSION'.
2762 * Set the HOME environment variable when using the --chuid switch in
2763 start-stop-daemon. Closes: #295169, #267784
2764 * Cleanup and unify program usage and version output, make it more i18n
2765 friendly. Fix wrong gettext usage with interparsed macros.
2766 Thanks to Changwoo Ryu for noticing. Closes: #237915
2767 * Mark some strings as translatable (Changwoo Ryu). Closes: #256387
2768 * Remove a trailing 'C' character from update-alternatives manpage.
2769 * Use pkg-config to get the proper flags to link against libselinux.
2770 Add a Build-Dependency on pkg-config, thighten libselinux1-dev to
2771 at least version 1.28-4 which provides a .pc file, and remove
2772 libsepol1-dev as libselinux1-dev is Depending on it.
2773 * Add command descriptions in the synopis, and add a usage example for
2774 -f in the dpkg-query manpage. Thanks for the initial patch to
2775 Philippe Batailler. Closes: #352091
2776 * Document about the default log file, the behaviour in case of multple
2777 --log options and add a reference to dpkg.cfg manpage in the dpkg manpage.
2778 Thanks to James R. Van Zandt. Closes: #350440
2779 * Escape ` and ' in manpages otherwise they are converted to quotation
2780 marks, which makes cut and paste not work. Thanks to Denis Barbier.
2783 [ Frank Lichtenheld ]
2784 * Let dpkg-source ignore comments in the hunk header as used by
2785 diff -p (Anand Kumria). Closes: #344880
2786 * Let dpkg-buildpackage create a .changes file even if signing the
2787 .dsc file failed. This makes it easier to just sign the package
2788 later (Julian Gilbey). Closes: #217963
2789 * Change heuristics of dpkg-buildpackage's gpg check to allow for
2790 more complex setups (Julian Gilbey). Closes: #163061
2791 * Add files and dirs used by bzr to default dpkg-source -i regex
2792 (maximilian attems). Closes: #345164
2793 * Add .git directory to default dpkg-source -i regex.
2794 Suggested by Hans Ulrich Niedermann. Closes: #351885
2795 * dpkg-scanpackages can now output Packages files with multiple
2796 versions of a single package (Don Armstrong). Closes: #229589.
2797 * dpkg-scanpackages outputs help when given the --help or -h option
2798 (Don Armstrong). Closes: #319541
2799 * Document dpkg-scanpackage -m in man page.
2800 * Let warn dpkg-source if more than one -sX option was given and
2801 document the behaviour in this case in the man page.
2803 * Make dpkg-source -b more robust regarding to existing symlinks
2804 by creating new files in a secure manner. Closes: #178839, #338591
2805 * Fix some semantic errors in dpkg-shlibdeps due to typos in used
2807 * On package configuration, differentiate between modified and
2808 deleted configuration files (Ian Jackson). Closes: #351361
2809 * Improve processing of disappearing conffiles (Ian Jackson).
2810 This is part of the fix for #108587.
2811 * Let dpkg-source -x touch all patched files to have the same
2812 timestamp to mitigate time-skew problems (Denis Barbier).
2814 * Strip any newlines from Uploaders field on dpkg-source -b.
2817 [ Christian Perrier ]
2818 * Switch to po4a for manpages translation. Closes: #320122
2819 This adds a Build-Depends on po4a.
2820 * Add Vietnamese to po/LINGUAS as it was previously missing.
2821 * Updated Translations:
2822 - Catalan (Jordi Mallach). Closes: #351587
2823 - French (Christian Perrier): 1011t.
2824 - Galician (Jacobo Tarrio): 1002t. Closes: #351795
2825 - Basque (Piarres Beobide): 1002t. Closes: #351845
2826 - Slovak (Peter Mann): 1002t. Closes: #352087, #352311
2827 - Vietnamese (Clytie Siddal): 1011t. Closes: #352307
2829 -- Frank Lichtenheld <djpig@debian.org> Sun, 12 Feb 2006 02:32:12 +0100
2831 dpkg (1.13.13) unstable; urgency=low
2833 [ Frank Lichtenheld ]
2834 * dpkg and dselect are now in section admin, not section base.
2835 Correct info in the control file.
2836 * Bump Standards-Version to 3.6.2 (no changes).
2837 * Fix typo in dpkg-architecture man page. Closes: #334330
2838 * Honor LD_LIBRARY_PATH in dpkg-shlibdeps. Fixes a regression
2839 from 1.13.11 to .12.
2840 * Don't recurse into package directories to search for local
2841 shlibs files since it is obviously a waste of time. Based
2842 on a suggestion by Steve Langasek. Closes: #338725
2844 [ Christian Perrier ]
2845 * Updated Translations:
2846 - Dutch (Bart Cornelis). Fix error mentioned in #323908 by
2848 - Japanese (Kenshi Muto). Closes: #349808
2851 * Fix typo in dpkg-statoverride manpage. Closes: #348113
2852 Thanks to Marc Haber <mh+debian-packages@zugschlus.de>.
2853 * Document the --no-debsig option in dpkg manpage. Closes: #316367
2854 Thanks to Bastian Kleineidam <calvin@debian.org>.
2855 * Fix typos in dselect manpage. Closes: #310358
2856 Thanks to A Costa <agcosta@gis.net>.
2857 * Fix typo in start-stop-daemon's help output. Closes: #333673
2858 Thanks to Christoph Maser <cm@financial.com>.
2859 * Document the correct format string for dpkg-query --showformat option.
2860 Update -l example and lower case the program name in the title header.
2861 Thanks to Zefram <zefram@fysh.org>. Closes: #174976
2862 * Make dpkg-architecture not print the warning about a missmatch between
2863 gcc target machine type and GNU target system type if the actions are
2866 -- Frank Lichtenheld <djpig@debian.org> Sat, 28 Jan 2006 13:04:16 +0100
2868 dpkg (1.13.12) experimental; urgency=low
2870 * Due to the changes in dpkg-shlibdeps it is not recommended
2871 to use this version for building packages intended to be
2872 uploaded into an official archive, yet.
2874 [ Frank Lichtenheld ]
2875 * Update AUTHORS and debian/copyright for new maintainer team.
2877 * Don't use the ldd output in dpkg-shlibdeps. Search for the
2878 matching libraries ourself. This fixes problems with both
2879 symlinked directories, Closes: #103024, #145714, #164020, #285857
2880 and biarch builds. Closes: #317082
2881 * Let dpkg-gencontrol bail out with an error if parsedep
2882 found an error while parsing a dependency field. Closes: #228125
2883 * dpkg-source -x now tries to chown all files extracted from
2884 tar files. The temporary directory is now created with mode
2885 0700, too. Together this should make it safer to run
2886 dpkg-source -x as root. Based on suggestions by Marcus
2887 Brinkmann and Colin Watson. Closes: #144571, #238460
2888 * Let dpkg-source -b check the build relation fields before
2889 putting them into the .dsc. As a side effect they also
2890 get normalized. Closes: #254449
2891 * Check the gpg signatures of .dsc files before unpacking. See
2892 the upstream changelog for a full description of the semantics.
2893 Based on a patch by Matt Zimmerman. Closes: #48711
2894 * Let dpkg-source ensure (as good as possible) that all
2895 build source packages can also be unpacked.
2896 Closes: #6820, #7014
2897 Also fixed handling of md5sum -b output in dpkg-source on
2898 the way. Based on a patch by Ingo Saitz. Closes: #316123
2899 * Check for illegal architecture strings in dpkg-gencontrol and
2900 dpkg-source. dpkg-gencontrol will only issue a warning while
2901 dpkg-source will error out. Closes: #96920
2902 * Add support "package types" to dpkg-shlibdeps. Patch by Joey Hess.
2903 Closes: #335056, #345475
2904 * Fix man page references to dpkg and dselect man pages. Many
2905 of them still had a wrong section.
2907 * Let dpkg-source -b warn about special permissions of files added
2908 in the diff since these will get lost. Closes: #306125
2909 * dpkg-source -x didn't work in case the upstream version or
2910 the Debian version ended with ~. Fixed.
2912 [ Christian Perrier ]
2913 * Updated Translations:
2914 - French (Christian Perrier).
2915 - Polish (Bartosz Fenski). Closes: #314237
2916 - Norwegian Bokmal (Hans F. Nordhaug). Closes: #315548, #315990
2917 - Czech (Miroslav Kure). Closes: #323775, #345347
2918 - Russian (Yuri Kozlov). Closes: #323821, #335170
2919 - Japanese (Kenshi Muto). Closes: #323938
2920 - Brazilian Portuguese (Andre Luis Lopes). Closes: #325224, #332872
2921 - Russian (Yuri Kozlov). Closes: #335170, #349151
2922 - Swedish (Peter karlsson). Closes: #325990, #344058, #337164, #334063
2923 - Norwegian Nynorsk (Håvard Korsvoll). Closes: #315987
2924 - Portuguese (Miguel Figueiredo).
2925 Closes: #315461, #323674, #323642, #330021
2926 - Spanish (Javier Fernández-Sanguino Peña). Closes: #323662, #315253
2927 - Danish (Claus Hindsgaul). Closes: #348575, #323779, #337948, #325687
2928 - Dutch (Bart Cornelis). Closes: #323908
2929 - German (Michael Piefel). Closes: #323964
2930 - Italian (Stefano Canepa). Closes: #324114, #344671, #347225
2931 - Catalan (Jordi Mallach). Closes: #324456
2932 - Basque (Piarres Beobide). Closes: #342089, #332698
2933 - Tagalog (Eric Pareja). Closes: #337307
2934 - Simplified Chinese (Tchaikov). Closes: #338268
2935 - Galician (Jacobo Tarrío). Closes: #338904
2936 - Romanian (Eddy Petrişor). Closes: #340674
2937 - Vietnamese (Phan Vinh Thinh, Clytie Siddall).
2938 - Indonesian (Parlin Imanuel). Closes: #344513
2939 - Greek (Galaxico). Closes: #344646
2940 - Czech (Miroslav Kure). Closes: #345347
2941 * Fixed broken translation:
2942 - Brazilian Portuguese (James Troup). Closes: #332872
2943 * Fix Russian man page for start-stop-deamon(8)
2945 * Fix German man page for update-alternatives(8)
2947 * Fix typo in dpkg online help message. Unfuzzy translations
2951 * Add armeb to cputable. Closes: #331232
2952 Thanks to Lennert Buytenhek <buytenh+debian@wantstofly.org>.
2953 * Don't try to compile in SELinux support on GNU/kFreeBSD. Closes: #313300
2954 Thanks to Aurelien Jarno <aurel32@debian.org>.
2955 * When linking statically, explicitly add libsepol, even if its only a
2956 transitive library. The proper fix should come with a pkg-config file.
2957 Based on a patch by Bart Martens <bart.martens@advalvas.be>.
2958 Closes: #347744, #348659
2959 * Add support for architecture wildcards, but for now they will only be
2960 exposed in debian/control files, not in binary nor source packages.
2962 * Change start-stop-daemon's --exec option behaviour on GNU/Linux to
2963 compare the filename pointed by '/proc/<pid>/exe' instead of the inode
2964 and device numbers. Thanks to Vasilis Vasaitis <v.vasaitis@sms.ed.ac.uk>.
2967 -- Frank Lichtenheld <djpig@debian.org> Tue, 24 Jan 2006 11:15:36 +0100
2969 dpkg (1.13.11.1) unstable; urgency=low
2971 * Change maintainers to new team.
2973 -- Scott James Remnant <scott@netsplit.com> Thu, 12 Jan 2006 07:56:49 +0000
2975 dpkg (1.13.11) unstable; urgency=low
2977 The "Good, clean fun" Release.
2979 * Fixed the always broken error handling so that only the intended
2980 cleanup handlers are run, rather than ones that we didn't expect.
2981 This corrects the bug when a package's postrm fails and the package is
2982 left in an installed state with no files; the package will now be left
2983 in a half-installed state, as originally intended. Found by Marga
2984 Manterola while documenting the maintainer scripts. Closes: #296026.
2985 * Fixed removal of files involved in diversions during upgrade, caused by
2986 checking whether the "directory" was in use by another package without
2987 actually checking whether or not it was a directory. Closes: #310390.
2988 * Fixed package saving to not disappear packages who divert anything from
2989 the installing package out of the way. Closes: #113626.
2990 * Improved clean-up of unpack failure during install or upgrade, to leave
2991 the system in exactly the same state as it started in.
2992 Closes: #47404, #82407, #121173, #170869, #201848, #236733, #268639.
2993 * Fixed crash when unpacking a package which has an unversioned Replaces
2994 declared on it by another package previously unpacked in the same run
2995 (Colin Watson). Closes: #322595.
2997 * New install unwinding fixed to ensure we don't leave a version in the
2998 status db for a not-installed package.
2999 * Corrected error call when encountering a corrupted filesystem tarfile
3000 to not print "Success". Closes: #95570.
3001 * Fixed castration of potentially unsafe devices to not follow symlinks.
3003 * Marked log file descriptor as close-on-exec. Closes: #320925.
3004 * Re-worked dpkg-source -x to allow all manner of strange things maintainers
3005 seem to do, unpacking isn't the right place to enforce sanity; we'll
3006 do it in -b later on >:-). Closes: #316470, #317760, #318473, #318745,
3007 #322359, #322361, #322362.
3009 * Corrected dselect synopsis line to match consensus. Closes: #318659.
3010 * Changed dpkg-name to use a shell redirect rather than the /dev/stderr
3011 device that may not be writable. Closes: #318376.
3012 * Adjusted various dpkg-query options to avoid outputting a trailing
3013 newline. Closes: #151651, #319781.
3014 * Changed references to "statusoverride" file to just "statoverride"
3015 to make it match reality. Closes: #320952.
3016 * Fixed several bugs with the default diff ignore list used by dpkg-source.
3017 * Added ,,* to the list of default diff ignore list. Closes: #322917.
3019 * Fixes to dpkg-dev (Frank Lichtenheld):
3020 - dpkg-checkbuilddeps will now exit with an error if it is unable to
3021 parse a dependency field. Closes: #171762, #302229.
3022 - dpkg-genchanges will now output a warning if given -sd for a native
3023 package, as it's going to ignore it. Closes: #5571.
3024 - dpkg-source fixed to give a more meaningful error message if given
3025 a directory as the first argument. Closes: #306874.
3026 - dpkg-source fixed to handle being given an absolute path to -b.
3028 - Fix controllib.pl to allow whitespace before version operators.
3029 Closes: #273489, #310306.
3030 - Fix architecture dependency parsing that sometimes generated wrong
3031 list of requirements. Closes: #319816.
3032 - Make the default control field name mangling behaviour "nicer" by
3033 upper-casing all letters that come after a dash. Closes: #306474.
3034 - Ignore trailing newlines in single paragraph control files.
3035 Closes: #57194, #156319
3037 - Fixed typo in dpkg-architecture man page. Closes: #317770.
3038 - Documented dpkg-deb -W/--show and --showformat. Closes: #319784.
3040 -- Scott James Remnant <scott@netsplit.com> Wed, 17 Aug 2005 04:44:44 +0100
3042 dpkg (1.13.10) unstable; urgency=low
3044 The "Bully's Special Prize" Release.
3046 * Removed /usr/sbin/start-stop-daemon. Closes: #313400.
3047 * Fixed md5sum diversion removal. Closes: #313415.
3048 * Fixed dpkg-source to handle native tarballs with a Debian revision.
3049 Closes: #313381, #313433.
3050 * Fixed upgrade from pre-sarge dpkg outside of dselect. Closes: #314575.
3051 * Changed log times to be local rather than UTC. Closes: #313347.
3052 * Changed log writing to be line-buffered. Closes: #314550.
3053 * Moved log creation to postinst, and don't fail if base-passwd hasn't
3054 been configured yet. Closes: #316084.
3055 * Don't try to compile in SELinux support on Hurd. Closes: #313398.
3056 * Place code for SELinux support in the right place so it will actually
3057 get compiled in and used (Manoj Srivastava). Closes: #314886.
3060 - Added missing word to dpkg-architecture manpage. Closes: #313554.
3061 - Reference to dpkg manpage in dpkg.cfg corrected. Closes: #314262.
3062 * Updated Translations (Christian Perrier):
3063 - Basque (Piarres Beobide Egana). Closes: #313474.
3064 - Catalan (Jordi Mallach). Closes: #313288.
3065 - Czech (Miroslav Kure). Closes: #314431.
3066 - Danish (Claus Hindsgaul).
3067 - French (Christian Perrier).
3068 - German (Jens Seidel). Closes: #314125.
3069 - Greek (Greek team). Closes: #314828.
3070 - Italian (Lele Gaifax).
3071 - Japanese (Kenshi Muto). Closes: #313330.
3072 - Russian (Yuri Kozlov). Closes: #313620.
3073 * Hebrew translation de-activated on request of the translator until there
3074 is better support for RTL languages. Closes: #313282.
3076 -- Scott James Remnant <scott@netsplit.com> Tue, 28 Jun 2005 14:19:06 +0100
3078 dpkg (1.13.9) unstable; urgency=low
3080 The "On like Donkey Kong" Release.
3082 * Only open the log file when we first need to write to it, this avoids
3083 the need to suppress errors when not root which fakeroot defeated anyway.
3084 * Stop dpkg-source clobbering an existing .orig directory during unpacking.
3086 * Allow an alternate output directory to be specified to dpkg-source by
3087 giving a second argument to -x. Closes: #246802, #282323.
3088 * Added .arch-inventory to default diff ignore regexp. Closes: #304297.
3090 SELinux support (Manoj Srivastava):
3091 * On SELinux-enabled systems, try to set the security context when the
3092 package is unpacked. Closes: #193653, #249496, #307139.
3093 * Added build-dependancy on libselinux1-dev.
3095 Improvements to dpkg-source (Brendan O'Dea):
3096 * Support unpacking of "Wig And Pen" (Format 2.0) source packages.
3097 * Multiple pristine upstream tarballs allowed.
3098 * Native and upstream tarballs may be bzip2-compressed instead of gzip,
3099 as may the debian diff or tarball.
3100 * Unsupported format error fixed to output the unsupported format
3101 rather than the supported one. Closes: #156317.
3103 -- Scott James Remnant <scott@netsplit.com> Sun, 12 Jun 2005 15:52:43 +0100
3105 dpkg (1.13.8) experimental; urgency=low
3107 The "In like Flynn" Release.
3109 * Linux 2.6.12 changed the behaviour of mmap to fail and set EINVAL when
3110 given a zero length, rather than returning NULL. This is POSIXly
3111 correct, so handle zero-length package control files (like available).
3113 -- Scott James Remnant <scott@netsplit.com> Fri, 10 Jun 2005 07:39:44 +0100
3115 dpkg (1.13.7) experimental; urgency=low
3117 The "Maidenhead Creeping Water Plant" Release.
3119 * Reduced inability to open a log file to a warning, suppressed for
3120 non-root operations. Closes: #312383.
3122 -- Scott James Remnant <scott@netsplit.com> Thu, 9 Jun 2005 06:12:56 +0100
3124 dpkg (1.13.6) experimental; urgency=low
3126 The "Just kidding about the God part" Release.
3128 * Fixed incorrect installation location of /etc/logrotate.d/dpkg caused
3129 by a mis-understanding of dh_install's abilities.
3131 -- Scott James Remnant <scott@netsplit.com> Mon, 6 Jun 2005 05:58:36 +0100
3133 dpkg (1.13.5) experimental; urgency=low
3135 The "Flatulent Elm of West Ruislip" Release.
3137 * Actions and package states are now logged by default in the
3138 /var/log/dpkg.log file. This file is rotated monthly and can be
3139 disabled by commenting the line in /etc/dpkg/dpkg.cfg.
3140 * User decisions about conffiles are now logged.
3141 * dpkg-source no longer complains about Enhances field. Closes: #159642,
3143 * preinst no longer relies on procps being installed. Closes: #311808.
3145 * Architecture Support:
3146 - Change DEB_*_GNU_CPU from i386 to i486, to reflect reality.
3147 DEB_*_ARCH_CPU remains at i386, you should be checking against that.
3149 - Fixed order ostable is read to prevent Linux becoming the Hurd.
3151 * Updated Manpage Translations (Christian Perrier):
3152 - Syntax error corrected in Swedish man page for dpkg-deb.
3154 - Syntax error corrected in Spanish man page for dpkg-scanpackages.
3157 -- Scott James Remnant <scott@netsplit.com> Mon, 6 Jun 2005 05:34:21 +0100
3159 dpkg (1.13.4) experimental; urgency=low
3161 The "Or the Wabbit gets it" Release.
3163 * Add -L option to dpkg-architecture to list architecture strings
3166 -- Scott James Remnant <scott@netsplit.com> Tue, 29 Mar 2005 13:31:15 +0100
3168 dpkg (1.13.3) experimental; urgency=low
3170 The "Paying off Karma at a vastly accelerated rate" Release.
3172 * Missing newline added to warning output function. Closes: #283798.
3173 * Fixed prototype warning in dpkg-scansources. Closes: #213577, #219760,
3175 * Removed trailing line from debian origins file. Closes: #264904.
3176 * Changed dpkg-buildpackage to say "source changed by" rather than
3177 "source maintainer is". Closes: #247313.
3178 * Fixed dpkg-gencontrol to allow '-' in architecture names. Closes: #274677.
3179 * Fixed "unknown information field" error to report field that it doesn't
3180 know about. Closes: #275243.
3183 - Remove "medium-level" from description of dpkg. Closes: #292454.
3184 - Harmonised argument names in update-alternatives(8).
3185 Closes: #267095, #284941
3186 - Documented what the '+' and '*' mean in update-alternatives --config
3187 output. Closes: #270486.
3188 - Mention aptitude alongside dselect in 'dpkg --usage' and
3189 'dpkg-deb --help', fix quote style of mention in 'dpkg --help'.
3190 Closes: #274800, #278118.
3191 - Associate --truename with the description of what it does in
3192 dpkg-divert(8). Closes: #277076.
3193 - Removed last remaining references to the packaging manual, replacing
3194 with better references. Closes: #262775.
3195 - Documented format of file dpkg --set-selections takes. Closes: #270043.
3197 -- Scott James Remnant <scott@netsplit.com> Mon, 21 Mar 2005 03:10:27 +0000
3199 dpkg (1.13.2) experimental; urgency=low
3201 The "Mysteriously Unnamed" Release.
3203 * md5sum has been removed, the coreutils or textutils version will be
3204 diverted to /usr/bin/md5sum. Closes: #6633, #136110.
3205 The following bugs are filed against the dpkg md5sum, so no longer apply.
3206 Closes: #95755, #193877, #223381, #264195, #270241, #286632,
3207 * Take Replaces into account when installing packages; don't issue a
3208 "trying to overwrite" error if the file that already exists is in
3209 a package that Replaces the one being installed.
3210 Closes: #164595, #184635, #277890.
3211 * Allow actions and status changes to be logged to a file. Disabled by
3212 default, uncomment line in /etc/dpkg/dpkg.cfg to enable.
3213 Closes: #957, #53376, #77109, #143882, #284499.
3214 * Don't truncate output of 'dpkg -l' when stdout is not a tty.
3215 Closes: #92263, #253860, #258608, #261822, #282790.
3216 * Fix further compilation problems with gcc 4.0. Closes: #299699
3217 * Handle tar files without trailing slash in directory names.
3219 * Output arguments to maintainer scripts with -D2. Closes: #237684,
3222 * Architecture Support:
3223 - Added ppc64. Closes: #263743.
3224 - Split archtable into cputable and ostable, archtable is retained
3225 for compatibility with other packages that might use it only.
3226 - dpkg-architecture no longer canonises -t argument. Closes: #173205.
3227 - dpkg-architecture output includes new DEB_*_ARCH_OS and
3228 DEB_*_ARCH_CPU variables that contain the Debian system and CPU
3230 - dpkg-architecture outputs (mostly) correct GNU system names now,
3231 in particular this means that it will output "linux-gnu" instead
3232 of "linux". You should use the new _ARCH_OS variables instead.
3234 - Add examples to dpkg-divert(8). Closes: #291816.
3235 - Correct typo in dpkg-architecture(1). Closes: #299090.
3237 -- Scott James Remnant <scott@netsplit.com> Fri, 18 Mar 2005 16:21:32 +0000
3239 dpkg (1.13.1) experimental; urgency=low
3241 The "Livin' like a good boy oughta" Release.
3243 * Removed dpkg --print-gnu-build-architecture option. Use variables
3244 defined by dpkg-architecture instead.
3245 * Soft-deprecated dpkg --print-installation-architecture. Use
3246 dpkg --print-architecture instead, which now does the same thing.
3247 * dpkg --print-architecture no longer calls c-compiler. Closes: #164863.
3248 * Removed third field from /usr/share/dpkg/archtable.
3250 * Now we no-longer pre-depend on dselect, check the upgrade will work
3251 in preinst and give the user a chance to abort if they haven't yet
3252 installed dselect and need to. Closes: #282335.
3253 * Fix handling of GNU longname and longlink when a tarfile entry has
3254 both. Closes: #128388.
3255 * md5sum no longer outputs "-" when no argument is supplied.
3256 Closes: #164591, #164889.
3257 * Add darcs metadirectory to dpkg-source diff ignore list. Closes: #289760.
3258 * Add new '-f' short option to dpkg-query as equivalent to --showformat.
3260 * Report conffile conflicts and per-package errors on the status-fd.
3262 * Correct typo in dpkg-architecture. Closes: #282701.
3263 * Fix start-stop-daemon's support for GNU/kFreeBSD. Closes: #258051.
3265 * Architecture Support:
3266 - Added kfreebsd-amd64. Closes: #280963.
3267 - Added m32r. Closes: #280710.
3268 - Clean up of archtable. Closes: #118910, #286898.
3269 - Clean up of dpkg-architecture. Closes: #256323.
3270 * Updated Translations (Christian Perrier):
3271 - French (French Team).
3272 - Greek (Konstantinos Margaritis). Closes: #295922.
3274 -- Scott James Remnant <scott@netsplit.com> Thu, 3 Mar 2005 12:09:07 +0000
3276 dpkg (1.13.0) experimental; urgency=low
3278 The "Three banana strategy" Release.
3280 * Remove the /usr/info or /usr/info/dir symlinks we used to create.
3281 Closes: #206063, #288415.
3282 * Fix cast in lvalue assignment that gcc 4.0 doesn't like.
3283 Closes: #282669, #284797.
3284 * Correct bashism in disk method update script. Closes: #260568.
3286 * Scorched-earth reimplementation of the build process and control files
3287 with debhelper and automake. Closes: #200683, #217946, #229629, #260568,
3288 #266995, #279701, #283640, #292973, #293041.
3289 * Remove SGML and POD documentation formats due to both licensing and
3290 sanity issues. Closes: #285806.
3291 * The dpkg-doc and dpkg-static packages are no more.
3292 * dpkg.cfg cleaned up to remove non-useful examples.
3293 Closes: #169618, #305192.
3295 -- Scott James Remnant <scott@netsplit.com> Fri, 14 Jan 2005 19:28:00 +0000
3297 dpkg (1.10.28) unstable; urgency=low
3299 The "Awh, yeah? Ripper!" Release.
3301 * New Translations (Christian Perrier):
3302 - Romanian (Eddy Petrisor). Closes: #309714.
3303 - Tagalog (Eric Pareja). Closes: #296407.
3304 * Updated Translations (Christian Perrier):
3305 - French (Christian Perrier).
3306 - Greek (Konstantinos Margaritis). Closes: #295922
3307 - Indonesian (Arief S Fitrianto). Closes: #296733
3308 * Updated Manpage Translations (Christian Perrier):
3309 - French (Philippe Batailler).
3310 - Syntax error corrected in Brazilian Portuguese man page for
3311 update-alternatives. Closes: #300646
3313 -- Scott James Remnant <scott@netsplit.com> Thu, 26 May 2005 18:18:10 +0100
3315 dpkg (1.10.27) unstable; urgency=low
3317 The "Grab your gun and bring in the cat" Release.
3319 * New Translations (Christian Perrier):
3320 - Indonesian (Arief S Fitrianto).
3321 - Norwegian Bokmål (Bjorn Steensrud).
3322 * Updated Translations (Christian Perrier):
3323 - Dutch (confusing option corrected by Christian Perrier).
3324 - Galician (Jacobo Tarrio).
3325 - Korean (Seo Sanghyeon).
3326 - Simplified Chinese (Carlos Liu).
3327 - Traditional Chinese (Asho Yeh).
3329 -- Scott James Remnant <scott@netsplit.com> Thu, 10 Feb 2005 15:10:22 +0000
3331 dpkg (1.10.26) unstable; urgency=low
3333 The "Captain Tight-Pants" Release.
3335 * Fix incorrect claim that 'Q' in dselect quits without saving changes
3337 * Revert to current 'stable' behaviour of Space/Enter/'Q' in the dselect
3338 help screen, Space leaves the help screen and Enter and 'Q' do nothing.
3339 It's dangerous to encourage users to press Enter or 'Q' since they
3340 commit changes in the package selection screen.
3342 * New Translations (Christian Perrier):
3343 - Basque (Piarres Beobide Egaña). Closes: #281245.
3344 (Was really added in 1.10.24, but forgotten from ALL_LINGUAS.)
3345 - Bosnian (Safir Šećerović).
3346 - Slovak (benco). Closes: #284896, #289341
3347 - Traditional Chinese (Asho Yeh). Closes: #287375.
3348 * Updated Translations (Christian Perrier):
3349 - Brazilian Portuguese (André Luís Lopes). Closes: #281228.
3350 - Catalan (Jordi Mallach). Closes: #281333.
3351 - Czech (Miroslav Kure). Closes: #281231.
3352 - Danish (Claus Hindsgaul). Closes: #281103.
3353 - Dutch (Christian Perrier). Closes: #282087.
3354 - Galician (Héctor Fernéndez López).
3355 - German (Michael Piefel). Closes: #281503.
3356 - Italian (Stefano Canepa). Closes: #282543.
3357 - Japanese (Kenshi Muto). Closes: #281144.
3358 - Korean (Changwoo Ryu). Closes: #282246.
3359 - Norwegian Nynorsk (Håvard Korsvoll). Closes: #281456.
3360 - Polish (Bartosz Feñski).
3361 - Portuguese (Miguel Figueiredo). Closes: #281122, #289359.
3362 - Russian (Yuri Kozlov). Closes: #281166.
3363 - Simplified Chinese (Tchaikov, Carlos Liu).
3364 - Spanish (Javier Fernández-Sanguino Peña). Closes: #281117.
3365 - Swedish (Peter Karlsson). Closes: #281165.
3367 -- Scott James Remnant <scott@netsplit.com> Tue, 11 Jan 2005 16:26:51 +0000
3369 dpkg (1.10.25) unstable; urgency=low
3371 The "你他媽的天下所有的人都該死" Release.
3373 This release is to correct the mangled Simplified Chinese translation
3374 included in 1.10.24 caused by rebellion of the translator's mail client.
3376 * Updated Translations (Christian Perrier):
3377 - Dutch (Bart Cornelis). Closes: #278700.
3378 - Polish (Bartosz Fenski). Closes: #280406.
3379 - Simplified Chinese (Tchaikov, Carlos Liu). Closes: #278676.
3381 -- Scott James Remnant <scott@netsplit.com> Thu, 11 Nov 2004 20:06:57 +0000
3383 dpkg (1.10.24) unstable; urgency=low
3385 The "Donald, where's your troosers?" Release.
3387 * Add support for uncompressed data.tar archive members and bzip2-
3388 compressed data.tar.bz2 members of binary packages. Closes: #34727.
3390 * New Translations (Christian Perrier):
3391 - Basque (Piarres Beobide). Closes: #265491.
3392 - Greek (George Papamichelakis). Closes: #260809.
3393 - Hebrew (Lior Kaplan). Closes: #275267.
3394 - Simplified Chinese (Tchaikov, Carlos Liu). Closes: #265197.
3395 * Updated Translations (Christian Perrier):
3396 - Brazilian Portuguese (Andre Luis Lopes). Closes: #260964, #273947,
3398 - Czech (Miroslav Kure). Closes: #255904, #278178.
3399 - Catalan (Jordi Mallach). Closes: #278098.
3400 - Danish (Claus Hindsgaul). Closes: #278097.
3401 - Dutch (Bart Cornelis). Closes: #268271, #268886, #274366, #278061.
3402 - Galician (Hector Fernandez).
3403 - German (Michael Piefel). Closes: #276462, #278168.
3404 - French (Christian Perrier).
3405 - Japanese (Kenshi Muto). Closes: #272456, #278141.
3406 - Italian (Lele Gaifax).
3407 - Korean (Changwoo Ryu). Closes: #261528, #278142.
3408 - Norwegian Nynorsk (Håvard Korsvoll). Closes: #275387, #278286.
3409 - Polish (Bartosz Fenski). Closes: #268452, #278064.
3410 - Portuguese (Miguel Figueiredo). Closes: #268266, #261424, #261519,
3412 - Russian (Yuri Kozlov). Closes: #268452, #278154.
3413 - Spanish (Javier Fernández-Sanguino Peña). Closes: #277173, #278117.
3414 - Swedish (Peter Karlsson).
3415 * Updated Manpage Translations (Christian Perrier):
3416 - French (Philippe Batailler). Closes: #268048.
3417 - Spanish (Ruben Porras). Closes: #261807.
3418 - Swedish (Peter Karlsson).
3420 -- Scott James Remnant <scott@netsplit.com> Wed, 27 Oct 2004 09:25:58 +0100
3422 dpkg (1.10.23) unstable; urgency=low
3424 The "Let the Wookie win" Release.
3426 * Updated hurd start-stop-daemon support. Closes: #133640, #254180.
3427 * Removed usage of non-POSIX test options. Closes: #256302.
3429 * Architecture Support:
3430 - Renamed x86-64 to amd64. Closes: #252346, #254598.
3432 - Correct typo in dpkg-divert(8). Closes: #254175.
3434 - Korean (Changwoo Ryu). Closes: #254590.
3435 * Updated Translations:
3436 - Catalan (Jordi Mallach).
3437 - Danish (Claus Hindsgaul). Closes: #252407.
3438 - French (Christian Perrier). Closes: #252586.
3439 - Italian (Lele Gaifax).
3440 - Polish (Bartosz Fenski). Closes: #254209.
3441 - Spanish manpages (Ruben Porras). Closes: #246158, #246159, #246160,
3442 #246161, #246162, #246163, #246164.
3444 -- Scott James Remnant <scott@netsplit.com> Mon, 19 Jul 2004 19:52:14 +0100
3446 dpkg (1.10.22) unstable; urgency=low
3448 The DebConf4 Release.
3450 This release is mostly intended to mop up the minor and trivial bug
3451 fixes in the list and clear out the documentation changes. As such,
3452 it should be treated with even more suspicion than is normal.
3454 * Use colouring to break cycles earlier to avoid long loops whilst
3455 installing or configuring packages. Closes: #232445, #246857.
3456 * Don't try to configure packages that disappeared in the same
3457 run. Closes: #202997.
3458 * Fix segfault when "gcc -dumpmachine" returns a non-matching triplet.
3460 * Remove restriction that package names be at least two characters long.
3462 * Fix dpkg-source (actually controllib.pl) to output the field name
3463 properly again. Closes: #226931, #246595.
3464 * Make dpkg-scanpackages output Origin and Bugs fields with proper
3465 casing. Closes: #154422.
3466 * Add support for DOS line-endings to md5sum. Closes: #246103.
3467 * Fix start-stop-daemon segfault on Hurd. Closes: #133640.
3468 * Allow dpkg-shlibdeps to run as non-root users. Closes: #96881.
3469 * Correct various compiler warnings. Closes: #229766.
3471 * Architecture Support:
3472 - Added x86-64 (x86_64 / amd64). Closes: #238483, #241938.
3473 - Added i?86-gnu (Hurd). Closes: #216695, #236331.
3474 - Added i386-kfreebsd-gnu and i386-knetbsd-gnu. Closes: #250176.
3476 - Create $(docdir) even when --without-sgml-doc is passed so the
3477 ChangeLog can be installed. Closes: #137719.
3478 - Stop hardcoding the list of manual page languages in debian/rules,
3479 so we include Spanish, Russian and Brazilian Portugese. Closes: #245994.
3480 - Quote LDFLAGS in debian/rules to allow multiple options.
3483 - Move dpkg-scanpackages and dpkg-scansources to section 1 as they
3484 are user tools. Closes: #114946.
3485 - Correct hyphen characters in manpages. Closes: #212284, #247086, #226800.
3486 - Remove obsolete references to the Debian Packaging Manual.
3487 Closes: #122910, #140695.
3488 - Correct 'n' and 'p' key descriptions in dselect help message.
3490 - Add --force-bad-verify to dpkg manpage. Closes: #192812.
3491 - Correct dpkg manpage to refer to --force-remove-reinstreq instead of
3492 -non-existant --force-reinstreq option. Closes: #232831.
3493 - Correct documentation of --compare-versions arguments. Closes: #232317.
3494 - Correct usage of "et al" to "et al.". Closes: #230751.
3495 - Add dpkg-reconfigure(8) to SEE ALSO section of dpkg(8). Closes: #233282.
3496 - Suggest packages that provide additional functionality in the dpkg
3497 manpage. Closes: #81355.
3498 - Suggest dselect update in description of dpkg --update-avail.
3500 - Suggest aptitude as well as dselect. Closes: #217042.
3501 - Suggest fakeroot for dpkg-source -r. Closes: #175897.
3502 - Correct documentation of start-stop-daemon. Closes: #41554, #211856.
3503 - Correct documentation of start-stop-daemon manpage to refer to --retry
3504 alongside --stop. Closes: #204691.
3505 - Add note that start-stop-daemon will chdir("/") unless -d is specified.
3506 Closes: #217823, #218060.
3507 - Correct documentation of dpkg-query --list. Closes: #232639.
3508 - Correct invalid use of " within update-alternatives(8) with .BR.
3510 - Rewrite description of dpkg-source -i to indicate the intent of the
3511 default setting rather than the exact exclusions. Closes: #227169.
3512 - Correct documentation of dpkg-statoverride --update. Closes: #85079.
3513 - Correct documentation of update-alternatives --install. Closes: #179648.
3514 - Documented dpkg:Version and dpkg:UpstreamVersion substvars.
3515 Closes: #85815, #85818.
3516 - Fix spelling error in utils/md5sum.1. Closes: #250281.
3517 - Replace "&c." with the slightly clearer "etc.". Closes: #235773.
3518 - Correct various typos. Closes: #219623, #221235.
3519 * Updated Translations:
3520 - Catalan (Jordi Mallach).
3521 - French (Christian Perrier). Closes: #246359.
3522 - Italian (Lele Gaifax).
3523 - Japanese manpages (KISE Hiroshi). Closes: #248483.
3524 - Russian (Nikolai Prokoschenko). Closes: #249254.
3525 - Spanish manpages (Ruben Porras). Closes: #246158, #246159, #246160,
3526 #246161, #246162, #246163, #251830.
3528 - German start-stop-daemon and update-alternatives manpages
3529 (Helge Kreutzmann). Closes: #247116, #249454.
3530 - Spanish dpkg-scansources manpage (Ruben Porras). Closes: #246164.
3532 -- Scott James Remnant <scott@netsplit.com> Tue, 1 Jun 2004 18:21:40 -0300
3534 dpkg (1.10.21) unstable; urgency=low
3536 * Fix incorrect linked list node removal code that caused every second
3537 shared or diverted conffile to be deleted by dpkg.
3538 Closes: #10879, #33046, #47267, #90623, #98210, #109691, #146167.
3539 Closes: #155456, #204275.
3540 * Call mknod with the required device type. Closes: #158916.
3541 * Correct the default query output format to be consistent with
3542 what the underlying library expects. Closes: #174973.
3543 * Fix missing NULL-termination in dpkg-query -W display of dependency
3544 fields. Closes: #174978
3545 * Strip output from md5sum(1) after the first whitespace character.
3547 * Output a warning if we cannot open a configuration file instead of
3548 treating it as a fatal error, in case our home directory is not readable
3549 by root. Closes: #200701.
3550 * Set LC_ALL to C before spawning off dpkg --search, to avoid searching
3551 on localized strings. Closes: #244316.
3552 * Don't require argument for start-stop-daemon -V. Closes: #237589.
3553 * Correct use of @ARGV within dpkg-scanpackages, allowing -u to work
3554 once again. Closes: #225086, #241503.
3555 * Make sure file permissions passed to dpkg-statoverride are numeric.
3557 * Correctly break out of the loop in install-info.
3558 Closes: #124225, #160761.
3559 * Add --dir-file option to install-info for GNU install-info
3560 compatibility. Closes: #179192
3561 * Refer to debian-policy in dpkg-doc's description instead of the
3562 non-existant packaging-manual. Closes: #120970.
3563 * Remove incorrect mention of build-essential from dpkg-checkbuilddeps
3564 manpage. Closes: #219210.
3565 * Add a note about diverting shared libraries to the dpkg-divert
3566 manpage. Closes: #214699.
3567 * Updated Translations:
3568 - Brazilian Portugese (Andre Luis Lopes). Closes: #237864.
3569 - Catalan (Jordi Mallach).
3570 - Danish (Claus Hindsgaul). Closes: #237624.
3571 - Dutch (Pieter-Paul Spiertz, Bart Cornelis, Erwin).
3572 Closes: #102094, #151799, #207758.
3573 - French (Sam Hocevar). Closes: #243191.
3574 - German (Florian Ernst). Closes: #109669, #115352, #187952, #244098.
3575 - Japanese manpages (KISE Hiroshi). Closes: #220776.
3576 - Polish (Bartosz Fenski). Closes: #242870.
3577 - Spanish (Javier Fernández-Sanguino Peña). Closes: #166052.
3578 - Swedish (Peter Karlsson).
3580 - Japanese dpkg-source manpage (KISE Hiroshi). Closes: #239000.
3581 - Norwegian Nynorsk (Gaute Hvoslef Kvalnes). Closes: #233614.
3582 - Portguese (Miguel Figueiredo). Closes: #240081.
3583 - Spanish dpkg-source manpage (Ruben Porras). Closes: #171489.
3585 -- Scott James Remnant <scott@netsplit.com> Sun, 25 Apr 2004 18:55:10 +0100
3587 dpkg (1.10.20) unstable; urgency=high
3589 * Update Japanese translation. Closes: #224616
3590 * Update French translation. Closes: #218713
3591 * Fix spelling error in German md5sum man page. Closes: #230750
3592 * Fix typo in pt_BR po file. Closes: #192102
3593 * Revert fix for #232916, this turns out to be a bug in the pgpgp
3594 wrapper, dpkg worked fine with pgp itself.
3596 -- Scott James Remnant <scott@netsplit.com> Thu, 11 Mar 2004 11:24:54 +0000
3598 dpkg (1.10.19) unstable; urgency=high
3600 * Distinguish unmet build dependencies from build conflicts.
3601 Closes: #217943, #235266.
3602 * Force NULL-termination of all tar file entry names. Closes: #232025.
3603 * Allow dselect to use the full window width. Closes: #139781.
3604 * Pass correct number of arguments for format string when out of disk
3605 space. Closes: #213038, #217286, #213543, #213846.
3606 * Remove duplicated entries from ChangeLog. Closes: #157437.
3607 * Fix dpkg-buildpackage when used with PGP. Closes: #232916.
3608 * Update support for Debian FreeBSD. Closes: #211566.
3609 * Store Architecture in the status file. Closes: #228253.
3610 * Don't print offending lines in md5sum. Closes: #170953.
3611 * Check bounds of md5sum lines. Closes: #168443, #199489, #199693.
3613 -- Scott James Remnant <scott@netsplit.com> Mon, 8 Mar 2004 19:05:32 +0000
3615 dpkg (1.10.18.1) unstable; urgency=medium
3617 * Non-maintainer upload to fix release-critical bugs.
3618 * Terminate string buffer in main/remove.c. Closes: #228379.
3619 * Prevent stashing of hardlinked devices and setuid or setgid binaries
3620 by removing permissions on upgrade as well as on remove.
3622 * Update dpkg conflicts to << 1.10, instead of 1.9.
3623 Closes: #190611, #221989, #222760.
3625 -- Scott James Remnant <scott@netsplit.com> Thu, 26 Feb 2004 01:17:27 +0000
3627 dpkg (1.10.18) unstable; urgency=medium
3629 * Rebuild, tagging and releasing correctly from cvs this time.
3631 -- Adam Heath <doogie@debian.org> Mon, 27 Oct 2003 13:39:56 -0600
3633 dpkg (1.10.17) unstable; urgency=medium
3635 * Make dselect do conflict resolution when dealing with automatically
3636 selected recommended package. Thanks to Colin Watson for the analysis
3637 and patch. Closes: Bug#151663
3638 * Branden Robinson <branden@debian.org>:
3639 s/dpkg-checkbuild/dpkg-checkbuilddeps/ in usage.
3640 * dpkg-checkbuilddeps now sets $reduce_arch. Closes: #212796.
3641 * Goswin Brederlow <brederlo@informatik.uni-tuebingen.de>:
3642 Add -u in dpkg-scanpackages. Closes: #214123.
3643 Add -a<arch> command to dpkg-scanpackages.
3644 * Add .#* to dpkg-source's default ignore filter. Closes: #217380.
3645 * Matthias Urlichs <smurf@smurf.noris.de>:
3646 Don't assume /usr/info/dir exists if /usr/info does. Closes: #165770.
3647 * Jordi Mallach <jordi@debian.org>:
3648 Update Catalan translation.
3649 * Fix errors with dependency fields that reference ${dpkg:Version}.
3652 -- Adam Heath <doogie@debian.org> Mon, 27 Oct 2003 13:04:57 -0600
3654 dpkg (1.10.16) unstable; urgency=low
3656 * Almost *EVERY* damn file was including config.h in the wrong spot.
3657 After making it the first include, then off_t/size_t/etc could actually
3658 be redefined to be 64-bit compatible.
3659 * Jordi Mallach <jordi@debian.org>:
3660 Fix configure to set HAVE_SETLOCALE. Closes: #211816
3661 * "Loïc Le Loarer" <lll_deb@m4x.org>:
3662 Add a -d|--chdir option to start-stop-daemon. Closes: #151802
3663 * Split the background block into 2 parts: one that does the fork, and
3664 opens /dev/tty and /dev/null, and one that does everything else. The
3665 second block is then moved to be run right before the exec. This
3666 allows error messages to be seen from the child(previously, they were
3667 lost), and allows for the chroot to not require the device files.
3668 These changes based on the bugs filed by:
3669 Marc Herbert <Marc.Herbert@ens-lyon.fr>: Closes: #155219
3670 Loïc Le Loarer <lll_deb@m4x.org>: Closes: #151800
3671 * Mario Lang <mlang@debian.org>:
3672 When --start, --startas and --pidfile are given, print 'process'
3673 instead of '(null)' for the process name, if it's already running.
3675 * Imported several translated manpages, from debian-doc cvs:
3676 * Spanish: 822-date.1 cleanup-info.8 deb-control.5 deb-old.5
3677 deb.5 dpkg-checkbuilddeps.1 dpkg-deb.1 dpkg-divert.8 dpkg-name.1
3678 dpkg-scanpackages.8 dpkg-split.8 dpkg-statoverride.8 dpkg.8
3679 dselect.8 md5sum.1 start-stop-daemon.8 update-alternatives.8
3680 "Esteban Manchado Velázquez" <zoso@debian.org>: Closes: #171489
3682 Julien Louis <arthur51@ifrance.com>: Closes: #164906
3683 * Portuguese: dpkg.8 dselect.8
3684 * Matt Zimmerman <mdz@debian.org>
3685 In dpkg's manpage, -O had an inverted word. Closes: #111711
3686 * Marcin Owsiany <porridge@debian.org>:
3687 Fix Polish translation of 'conflicts with' Closes: #112057
3688 * Jiri Masik <masik@darbujan.fzu.cz>:
3689 Improve Czech translation of: "dpkg - warning: ignoring request to
3690 remove %s which isn't installed." Closes: #117518
3691 * Marco Nenciarini <mnencia@prato.linux.it>:
3692 Fix missing space in Italian translation when listing files, and the
3693 file is diverted. Closes: #138244
3694 * Piotr Roszatycki <Piotr_Roszatycki@netia.net.pl>:
3695 Update Polish translation. Closes: #142370
3696 * Martin Quinson <mquinson@ens-lyon.fr>:
3697 Fix missing space in French translation of: "%s - warning: downgrading
3698 %.250s from %.250s to %.250s.\n" Closes: #149142
3699 * Hidetaka Iwai <tyuyu@sings.jp>:
3700 Fix typo in Japanese translation of dpkg --force-help; dowgrade ->
3701 downgrade: Closes: #157819
3702 * Martin Quinson <mquinson@ens-lyon.fr>:
3703 Fix French translation when listing files, and the file is diverted.
3705 * Rune Schjellerup <olberd@odense.kollegienet.dk>:
3706 Fix Danish translation of(was missing the leading space): " does not
3707 appear to be available\n" Closes: #192972
3708 * Fix md5sum when handling large files. Closes: #162691
3709 * Fix dpkg-checkbuilddeps calling of parsedep. It wasn't setting
3710 use_arch. Closes: #212796.
3711 * Joey Hess <joeyh@debian.org>:
3712 Change formatting of info.dir. Closes: #167379.
3714 -- Adam Heath <doogie@debian.org> Sat, 25 Oct 2003 15:46:16 -0500
3716 dpkg (1.10.15) unstable; urgency=low
3718 * Fix detection of va_copy.
3719 * Back out debian/rules build-arch detection. It is *not* possible *at
3720 all* to detect available targets in a rules file. Period.
3722 -- Adam Heath <doogie@debian.org> Fri, 19 Sep 2003 20:02:19 -0500
3724 dpkg (1.10.14) unstable; urgency=low
3727 * Rewrote the parsedep stuff, so that it wasn't done during control
3728 file parsing. Scripts that need the internal parsed format should
3729 call parsedep on the field's value.
3730 * Split the substvars parsing into a separate function.
3731 * No longer validate dependency fields when reading the control file.
3732 Some fields may have vars in them, which breaks the validation.
3733 * dpkg-gencontrol calls substvars after parsing the control file, and
3734 then validates the substituted depends lines. Originally,
3735 substitution occured only during writing of the final output file.
3736 * Andreas Barth <aba@not.so.argh.org>:
3737 Fix bad regex that didn't allow spaces in dependency field parsing.
3738 It now directly matches what the c code expects. It previously was
3739 allowing all of \S, which matched on '('.
3741 * Remove stale debug in debian/control that would have broken
3742 installation on s390.
3743 * We were calling our own local copy of dpkg-gencontrol, but the
3744 system-installed copy of dpkg-shlibdeps. Now, both are called from
3745 the build directory.
3747 -- Adam Heath <doogie@debian.org> Fri, 19 Sep 2003 12:29:34 -0500
3749 dpkg (1.10.13) unstable; urgency=low
3751 * Fix parsing of deps when both () and [] are specified.
3752 * Set $host_arch in controllib.pl:parsedep.
3753 * dpkg-checkbuilddeps doesn't output the [] stuff when finding invalid
3756 -- Adam Heath <doogie@debian.org> Wed, 17 Sep 2003 13:23:15 -0500
3758 dpkg (1.10.12) unstable; urgency=low
3760 * Fix dpkg-source output of build-depends lines.
3762 -- Adam Heath <doogie@debian.org> Tue, 16 Sep 2003 13:43:45 -0500
3764 dpkg (1.10.11) unstable; urgency=low
3766 * dpkg no longer provides any BYHAND files. If you need the source
3767 tarball, use the orig.tar.gz file available in the pool. The
3768 precompiled tars were hold-overs from when debs were not standard
3770 * Install /usr/share/doc/dpkg/pseudo-tags, which talks about the bug
3771 titling we use to mark bugs for filtering in the Debian bts.
3773 * Teach dpkg-source that ~ is legal in version numbers
3774 * Add build-depends on sgml-base, and increase gettext build-depends to
3776 * Updated config.sub and config.guess in cvs.
3777 * Change use of strncpy in parsedb to memcpy. Closes: #160447
3778 * No longer generate helpmsgs.{cc,h}.
3779 * several controllib changes:
3780 * Moved dependency parsing logic from dpkg-checkbuilddeps.
3781 The dpkg-checkbuilddeps parser didn't support empty fields, while
3782 the controllib parser did.
3783 * All dependency fields parsed by controllib.pl support [arch]
3784 specifiers. If the arch specifier doesn't apply for the current
3785 arch, then the item will not be added to the internal list structure.
3786 * Comment lines(that begin with '#') are removed during parsing.
3787 * Store the original casing of field names, for use in error reporting.
3788 * Store the original field's casing with 'o:' prepended in %fi.
3789 * ballombe@merulo.debian.org:
3790 dpkg-checkbuilddeps now handles empty fields. Closes: #111562
3791 * Branden Robinson <branden@debian.org>:
3792 support comments(first char on line begins with '#') in
3793 debian/control. Closes: #191810
3794 * Bastian Blank <waldi@debian.org>:
3795 Allow for per-arch generated dependency fields. Closes: #170575
3796 * Branden Robinson <branden@debian.org>:
3797 Report the original casing of field names when they are unknown.
3799 * Patch dpkg-buildpackage to call debian/rules -qn build-arch, and if
3800 it's available, modify -B handling appropriately. If build-arch is not
3801 available, then when -B was called, do *not* pass -B on to
3802 dpkg-checkbuilddeps. Closes: #203097
3803 * Frank Lichtenheld <frank@lichtenheld.de>:
3804 Apply patch, to handle missing infodir.bak, and empty files. Closes:
3806 * Change standard_startup and standard_shutdown into macros. Closes:
3808 * Andrew Suffield <asuffield@debian.org>:
3809 Fix inverted test of eof in parsedb, while looking for eof after
3810 field name. Closes: #198218
3811 * Yann Dirson <dirson@debian.org>
3812 Add set -e to dpkg-doc.postinst. Closes: #191261
3813 * Michael Weber <michaelw@debian.org>:
3814 dpkg --print-architecture now does gcc -dumpmachine instead of
3815 --print-libgcc-file-name. Closes: #131893, #8241, #106793, #210285
3816 * Daniel Silverstone <dsilvers@digital-scurf.org>:
3817 Apply patch to change hashing function, and increase bin size, for
3818 the package database. Closes: #206416
3819 * Paul Eggert <eggert@CS.UCLA.EDU>:
3820 Apply patch to make dpkg work with POSIX 1003.1-2001. Closes:
3822 * Joey Hess <joeyh@debian.org>:
3823 Fix "stripping trailing /" message from dpkg-statoverride. Closes:
3825 * Sami Liedes <sliedes@cc.hut.fi>:
3826 Increase filesdb bin size, and alter hashing function. Closes:
3828 * Anthony Towns <aj@azure.humbug.org.au>:
3829 Retry removing empty dirs during purge. Closes: #112386
3830 * Darren Salt <linux@youmustbejoking.demon.co.uk>:
3831 Add .cvsignore to dpkg-source's default diff ignore regex. Also fix
3832 missing \ escape for .deps. Closes: #174013
3833 * Koblinger Egmont <egmont@uhulinux.hu>:
3834 Fix segfault with --status-fd. Closes: #173618
3835 * Colin Watson <cjwatson@debian.org>,
3836 Andrew Suffield <asuffield@debian.org>:
3837 Add .svn, {arch}, and .arch-ids to dpkg-source -i default regex.
3839 * Falk Hueffner <falk@debian.org>:
3840 Added alphaev68-linux-gnu to archtable. Closes: #199360
3841 * Elie Rosenblum <fnord@debian.org>:
3842 Apply patch to support OpenBSD. Closes: #154277
3843 * Geoff Richards <qef@laxan.com>:
3844 Add --config to action section, and add as EXAMPLES section. Closes:
3846 * Yann Dirson <dirson@debian.org>:
3847 install-info --version and --help now display on stdout. Closes:
3849 * Dan Jacobson <jidanni@dman.ddts.net>:
3850 Mention what dpkg and dpkg-query -S will not find. Closes: #153096
3851 * Sebastian Leske <sleske@enterprise.mathematik.uni-essen.de>:
3852 Mention in dpkg(8) that downgrading a package can have serious
3853 consequences. Closes: #61156
3854 * Dan Jacobson <jidanni@dman.ddts.net>:
3855 In dpkg-scanpackages(8), including small note that other tools might
3856 use the generated Packages file. Closes: #208894
3857 * Warren Turkal <wturkal@cbu.edu>:
3858 Fix some typos in dpkg-source(1). Closes: #207259, #204123, #167426
3859 * Dan Jacobson <jidanni@dman.ddts.net>:
3860 Alter text in dselect(8), implying that other interfaces are available
3861 for installing packages. Closes: #206164.
3862 * Daniel Bonniot <bonniot@users.sourceforge.net>:
3863 Note in start-stop-daemon(8) that --nicelevel takes an argument.
3864 * Ruben Porras <nahoo82@telefonica.net>:
3865 Remove duplicate 'can' in deb-control(5). Closes: #183840
3866 * Dan Jacobson <jidanni@dman.ddts.net>:
3867 Fix short description in dpkg-scansources(8). Closes: #175770
3868 * Zefram <zefram@fysh.org>:
3869 In dpkg(8), move dpkg-query options to their own subsection, like
3870 dpkg-deb. Closes: #174971
3871 * Thomas Hood <jdthood@yahoo.co.uk>
3872 Add --dry-run and --simulate as synonyms to --no-act. Closes:
3874 * Junichi Uekawa <dancer@netfort.gr.jp>:
3875 Fix wrong reference to DEB_BUILD_GNU_SYSTEM on --host in
3876 dpkg-architecture(1). Closes: #163621
3877 * Michael Klein <michael.klein@puffin.lb.shuttle.de>:
3878 s/Usuaully/Usually/ in deb-control.5. Closes: #161819
3879 * Joey Hess <joeyh@debian.org>:
3880 Removed reference in dselect(8) about recommends not being handled
3881 well. Closes: #157973
3882 * Andrew Suffield <aps100@doc.ic.ac.uk>:
3883 s/dpkg-source/dpkg-parsechangelog/ in dpkg-parsechangelog -h.
3885 * Matej Vela <vela@debian.org>:
3886 Unhighlight "May be repeated multiple times." in dpkg-source(1).
3888 * Jordi Mallach <jordi@debian.org>:
3889 Make all actions in dpkg-deb -h lower case. Closes: #150642
3890 * Alexander Hvostov <root@aoi.dyndns.org>:
3891 Add -g|--group to start-stop-daemon, and document properly. Closes:
3893 * Szerb Tamas <toma@mlf.linux.rulez.org>:
3894 s/THANKS/THANKS.gz/ in dpkg(8). Closes: #91348
3895 * "James R. Van Zandt" <jrv@vanzandt-pc.mitre.org>:
3896 In dpkg(8), mention running dselect, install after --set-selections.
3898 * Yann Dirson <dirson@debian.org>:
3899 Remove disabled --command-fd from help. Closes: #169619
3900 * Tobias Burnus <tburnus@physik.fu-berlin.de>:
3901 Apply patch to update-alternatives that provides --set and --remove-all
3902 commands. Closes: #133745.
3903 * Osamu Aoki <debian@aokiconsulting.com>:
3904 Add --all to update-alternatives, that calls --config on all
3905 alternatives. Closes: #126621
3906 * Dan Jacobson <jidanni@jidanni.org>:
3907 Alter --config prompt, to be more clear, that one must 'press' enter to
3908 accept the default. Closes: #203557
3909 * Peter Moulder <pmoulder@bowman.csse.monash.edu.au>:
3910 Fix some -w issues in update-alternatives. Closes: #137313
3911 * Eduard Bloch <edi@gmx.de>:
3912 Apply patch to check whether the target path exists on removing.
3914 * Colin Walters <walters@debian.org>:
3915 After opening files, set binmode. Closes: #175363
3917 -- Adam Heath <doogie@debian.org> Tue, 16 Sep 2003 12:52:11 -0500
3919 dpkg (1.10.10) unstable; urgency=low
3921 * Update archtable for hurd. Closes: #187509.
3922 * Make the dpkg-iasearch conflicts versioned. Closes: #170698.
3923 * Surround sed call with '' in Makefile.in. Closes: #187534.
3924 * Strip trailing / from the file args in dpkg-statoverride. Closes:
3926 * Modified to use autotools-dev. Closes: #179656.
3927 * Add netbsd support. Closes: #179658, #179659.
3928 * Support hypenated values in dpkg-architeture. Closes: #179661
3929 * No longer managed the /usr/doc symlinks.
3931 -- Adam Heath <doogie@debian.org> Sat, 26 Apr 2003 15:10:24 -0500
3933 dpkg (1.10.9) unstable; urgency=low
3935 * Fix dereference in main/help.c:cu_closefd(), which was the cause of
3936 close(random number) on most arches, but close(0) on s390x.
3937 * Add s390x to archtable. Closes: #160976.
3939 -- Adam Heath <doogie@debian.org> Sun, 15 Sep 2002 13:21:38 -0500
3941 dpkg (1.10.8) unstable; urgency=low
3943 * Make the multiline regex have an upper bound, instead of being
3944 unbounded, as newer perls have a larger stack frame, which cause them
3945 to segfault quicker with larger inputs. Closes: #159756.
3947 -- Adam Heath <doogie@debian.org> Thu, 5 Sep 2002 16:32:01 -0500
3949 dpkg (1.10.7) unstable; urgency=low
3951 * Fix double free in modstatdb_init, in the case that modstatdb_shutdown
3952 was called previously. Closes: #159515.
3954 -- Adam Heath <doogie@debian.org> Tue, 3 Sep 2002 18:59:19 -0500
3956 dpkg (1.10.6) unstable; urgency=low
3958 * Don't call nffreeall, in any of the c/c++ programs. It appears dselect
3959 slightly corrupts it's memory enough that it can't be freed without
3960 segfaulting. Closes: #159023.
3962 -- Adam Heath <doogie@debian.org> Sun, 1 Sep 2002 00:19:18 -0500
3964 dpkg (1.10.5) unstable; urgency=low
3966 * Fix segfault in md5sum if the file being checked doesn't exist.
3968 * Fix extraction of md5sum in dpkg-scanpackages. Closes: #153769.
3969 * Handle directories better in md5sum. Closes: #157453.
3970 * Fix read past buffer in lib/nfmalloc.c. Closes: #157304.
3971 * Fix several read pass buffer bugs, and a memleak. Closes: #155362.
3972 * Fix segfault when --auto-deconfigure is given. Closes: #157762.
3973 * Allow spaces between the end of a version, and the trailing ')'.
3975 * Fixes for HURD: Closes: #156545
3976 * Add i386-gnu0.3 to archtable.
3977 * Fix handling of static compiles, with regard to zlib.
3978 * Previous install-infos(before 1.10) handled multiple dir file entries,
3979 because they would copy the entire stanza unmodified. The newest
3980 version does not do this, as it reformats the options, and thereby
3981 only takes the first line. So, we now split all the lines from the
3982 stanza, and process them all. Closes: #147492.
3983 * Fix corruption of available file, caused by use of memory that was
3984 previously freed. Closes: #154257.
3985 * Fix several minor memleaks.
3986 * Remove /usr/sbin/start-stop-daemon. Closes: #156437.
3988 -- Adam Heath <doogie@debian.org> Thu, 29 Aug 2002 16:43:15 -0500
3990 dpkg (1.10.4) unstable; urgency=low
3992 * Remove -ffunction-sections and -fdata-sections. Closes: #152130.
3993 * Install archtable into /usr/share/dpkg/.
3995 -- Adam Heath <doogie@debian.org> Sun, 14 Jul 2002 15:17:56 -0500
3997 dpkg (1.10.3) unstable; urgency=low
3999 * Move dselect.cfg to dselect package. Closes: Bug#152132
4000 * Install methods into /usr/lib/dpkg/methods, not /usr/lib/dpkg. Closes:
4002 * Fix test inversion in start-stop-daemon, when checking the pid given in
4003 a pid file. Thanks Thomas Morin <thomas.morin@enst-bretagne.fr>.
4005 * If in --test mode, and --stop is given, increment n_killed, so that
4006 start-stop-daemon returns the proper exit value. Thanks Thomas Morin
4007 <thomas.morin@enst-bretagne.fr>. Closes: #151992.
4009 -- Adam Heath <doogie@debian.org> Thu, 11 Jul 2002 22:58:43 -0500
4011 dpkg (1.10.2) unstable; urgency=low
4013 * Make configuration files in $HOME work again
4014 * dpkg + dpkg-static conflict with dpkg-dev << 1.9, to fix md5sum error
4015 in dpkg-source. Closes: #151691.
4016 * Remove -Z from patch call, in dpkg-source, as it makes patch warn about
4017 missing timestamps. Closes: #151965
4018 * Install debian/dselect.conffiles.
4020 -- Adam Heath <doogie@debian.org> Thu, 4 Jul 2002 21:08:09 -0500
4022 dpkg (1.10.1) unstable; urgency=low
4024 * Add conflict with dpkg-iasearch which intruded on our namespace.
4025 * Replace manpages-de which includes one of our manpages. Closes: #151485
4026 * Don't always call autoheader when building. Closes: #151471
4027 * Fix double conflict in dpkg. Closes: Bug#151581
4028 * Move dselect methods to dselect package.
4029 * dpkg-checkbuilddeps no longer checks for build-essential. dpkg should
4030 not hardcode Debian policy.
4031 * Make dpkg-genchanges accept ~ as part of a package filename.
4033 * Move dpkg.cfg and dselect.cfg manpages into dpkg package. Closes: Bug#132901
4035 -- Wichert Akkerman <wakkerma@debian.org> Tue, 2 Jul 2002 12:34:07 +0200
4037 dpkg (1.10) unstable; urgency=low
4039 * dpkg now reorders symlinks when extracting debs. However, this is also
4040 still done when building debs. After a stable release of Debian has
4041 occurred with this modified dpkg, the reordering when building can be
4043 * Fixed upper/lowercase problems with package names. Closes: Bug#58091
4045 * Add Russian manual pages
4046 * Fix n in dselect package list (performs searchagain now)
4047 * Fix layout problem in dpkg-divert manpage. Closes: Bug#103667
4048 * When a package is set to hold, and a reinstallation is requested,
4049 -E will not properly skip it. Closes: #45787.
4050 * Make dpkg-checkbuilddeps use dpkg-architecture. Closes: Bug#104230
4051 * Improve dpkg-archtecture documentation. Closes: Bug#104232
4052 * Update German translation. Closes: Bug#97239
4053 * Update Polish translation. Closes: Bug#115783
4054 * Update French translation.
4055 * Update Brazilian translation.
4056 * Update Danish translation.
4057 * Update Galician translation.
4058 * Update Portuguese translations.
4059 * Add Catalan translation
4060 * Add German md5sum manpage
4061 * Add Brazilian update-alternatives manpage. Closes: Bug#122132
4062 * Improve dselect manpage. Closes: Bug#103839
4063 * dpkg-name(1) no longer mentions the non-existing dpkg(5) manpage.
4065 * Improve handling of Recommends and Suggests in dselect. Closes: Bug#34942
4066 * Add per-user configuration files. Closes: Bug#103845
4067 * Split dselect into its own package. dpkg Pre-Depends on it
4068 to make sure no weird things happen during an upgrade but this
4069 will allow us to make dselect option at some point in the future.
4071 * Make colours in dselect user-configurable. Closes: Bug#103994
4072 * Make Q do an abort in the method selection menu to make things more
4073 consistent with the package list
4074 * Fix test for nice(2) failure in start-stop-daemon. Closes: Bug#104561
4075 * Improve the dselect helpscreen a bit. Closes: Bug#72634
4076 * New version comparison routine that can handle arbitrarily large numbers
4077 and accepts `~' as a low-sorting character. Closes: Bug#93386
4078 * dselect now accepts regular expressions when searching for packages
4079 and can search in package descriptions as well.
4080 Closes: Bug#81009,#83139
4081 * Move query commands into a seperate dpkg-query command. For the old options
4082 (-L,-l,-s,-S) dpkg will still call it for you.
4083 * Add configurable package listing support to dpkg-query
4084 * Handle window resize in dselect main menu. Closes: Bug#98275
4085 * update-rc.d moved to the sysvinit package. Closes: Bug#108887,#109282
4086 * Add --showformat and --show options to dpkg-deb and dpkg-query to
4087 allow one to customize the output format
4088 * several install-info cleanups:
4089 * Move /usr/info/dir to /usr/share/info/dir. Closes: #67174.
4090 * If /usr/share/info doesn't exist, print a message saying so,
4091 instead of the confusing "couldn't lock" error. Closes: #2531.
4092 * If /usr/share/info/dir doesn't exist, or is empty, try to copy the
4093 backup from /var/backups/infodir.bak. Closes: #121309.
4094 * Add a --remove-exactly option, and allow for relative filenames.
4096 * Use the section from the .info file if --section is not given.
4098 * Error messages now include the filename being processed.
4100 * /usr/share/info/dir now has it's entries formatted to even widths.
4102 * --calign|--align|--maxwidth are now ignored.
4103 * strip enoent as well. Closes: Bug#112378
4104 * Fix format error in Dutch translation. Closes: Bug#113120
4105 * When parsing stdin, md5sum now displays '-' as the filename, to match
4106 textutils md5sum. Closes: #121489.
4107 * Apply patch from bug, to give update-alternatives a --list command.
4109 * Make dpkg-checkbuilddeps always check for build-essential.
4111 * Use space seperated output instead of comma seperated in
4113 * Update default ignore expression in dpkg-source to also match *~ and
4114 *.swp in subdirs. Closes: Bug#127458
4115 * Handle errors when verifying md5sums. Closes: Bug#102367
4116 * dpkg-source now uses reliable timestamps for changed files.
4118 * Fix typo in start-stop-daemon help message. Closes: Bug#131439
4119 * update-alternative exits with a non-zero exit code when displaying
4120 a non-existing alternative. Closes: Bug#131496
4121 * Use gzip -c in install-info. Closes: Bug#131758
4122 * start-stop-daemon works on HP-UX now. Closes: Bug#130130
4123 * Fix dselect spin when run without input. Closes: Bug#132476
4124 * Update-alternatives now correctly restores an alternative to auto mode
4125 when removing a manually selected alternative. Closes: Bug#132632
4126 * Copy bugs and origin information into status file. Closes: Bug#132714
4127 * Improve wording of update-alternatives --config text. Closes: Bug#133035
4128 * Add manpages for dpkg.cfg and dselect.cfg. Closes: Bug#132901
4129 * Improve test for illegal packagename for dpkg-gencontrol -p option
4130 * Fix segfault when getenv("PATH") returns null. Closes: Bug#136349
4131 * Add Large File Summit extensions. Closes: Bug#130509
4132 * Fix typo in dpkg-source manpage. Closes: Bug#141906
4133 * Re-fix handling of multiple blank lines in control. Closes: Bug#143117
4134 * Document --force-confmiss and --force-bad-verify. Closes: Bug#146855
4135 * Drop upgrade compat stuff in dpkg postinst for ancient versions (over
4137 * Always set CLOEXEC on the lock fd. Closes: Bug#147872
4138 * Clean up tmp files when ctrl-c is sent to dpkg-source. Closes:
4140 * dpkg-source no longer requires exact case matches for fields in
4141 debian/control. Closes: Bug#139159.
4142 * dpkg-scanpackages now gives proper case for Source and Installed-Size.
4144 * dpkg-architecture: s/build on/built on/; same for 'build for'.
4146 * cl-debian.pl now recognizes emergency as valid in changelogs.
4148 * Properly count recursive expansion of variables, instead of just
4149 counting all variable expansions. Closes: #144121.
4150 * Add -I<filename> to dpkg-buildpackage and dpkg-source, to excludes
4151 files from tar, when building a native package. Closes: Bug#75947.
4152 * Close the old debian/files file, before doing a rename. Closes:
4154 * Fix documentation of -v<version> for dpkg-parsechangelog, removing the
4155 requirement that the version has to be in the changelog. Closes:
4157 * Fix typo in dpkg-source(1), s/-su/-sU/. Closes: Bug#126340.
4158 * Add dpkg-scansources to dpkg-scanpackages(8). Closes: Bug#147924.
4159 * Change /usr/info into a symlink to /usr/share/info if possible
4161 -- Wichert Akkerman <wakkerma@debian.org> Fri, 21 Jun 2002 21:53:15 +0200
4163 dpkg (1.9.21) unstable; urgency=low
4165 * Fix corrupt Swedish translations that would some error messages display
4167 * Enable --force-overwrite by default in /etc/dpkg/dpkg.cfg
4168 * dpkg.cfg is now no longer a conffile. This means the installer can
4169 change defaults depending on how an install is done
4170 * Detect truncated debs, and abort the unpack. Closes: #138569.
4171 * Improve dpkg(8) --force documentation
4172 * Fix error in Russian dselect translation
4174 -- Wichert Akkerman <wakkerma@debian.org> Thu, 16 May 2002 19:42:29 +0200
4176 dpkg (1.9.20) unstable; urgency=medium
4178 * Fix assertion when --auto-deconfigure is set. Closes: #137765.
4179 * Fix segfault discovered by fixing the above.
4180 * Fix segfault when getenv("PATH") returns null. Closes: #136349
4181 * Recompiled against updated zlib, to fix possible security issue. Also
4182 bumped build-depends to match. Closes: #137931(grave)
4184 -- Adam Heath <doogie@debian.org> Sun, 17 Mar 2002 02:52:44 -0600
4186 dpkg (1.9.19) unstable; urgency=medium
4188 * install-info continues to read all data from a pipe, until EOF.
4189 Closes: #99816(grave).
4190 * Add Catalan translation
4191 * Update Danish translation. Closes: Bug#131869
4192 * Update French translation.
4193 * update-alternative exits with a non-zero exit code when displaying
4194 a non-existing alternative. Closes: Bug#131496
4195 * Changed Maintainer to debian-dpkg@lists.
4196 * Fix "Up to date installed packages" for polish translation. Closes:
4198 * Swap updated/up-to-date polish translations(they were reversed).
4199 Closes: #117583, #102961.
4200 * Mark /etc/alternatives/README as a conffile.
4201 * Strip .note, .comment, and /usr/lib/dpkg/enoent.
4202 * Make dpkg-gencontrol not warn about Uploaders. Closes: #111090.
4204 -- Adam Heath <doogie@debian.org> Sat, 2 Feb 2002 11:47:34 -0600
4206 dpkg (1.9.18) unstable; urgency=low
4208 * Fix MD5Sum corruption when upgrading a package. Closes: Bug#113961.
4209 * Add Wichert and I to debian/control:Uploaders.
4211 -- Adam Heath <doogie@debian.org> Sat, 3 Nov 2001 00:31:00 -0600
4213 dpkg (1.9.17) unstable; urgency=low
4215 * updated-rc.d moved to the sysvinit package. Closes: Bug#108887,#109282
4217 -- Wichert Akkerman <wakkerma@debian.org> Wed, 22 Aug 2001 01:24:52 +0200
4219 dpkg (1.9.16) unstable; urgency=low
4221 * Revert architecture-change to dpkg-source from 1.9.11, see ChangeLog
4224 -- Wichert Akkerman <wakkerma@debian.org> Thu, 5 Jul 2001 22:42:11 +0200
4226 dpkg (1.9.15) unstable; urgency=low
4228 * Change policy of handling dscformat in dpkg-source
4229 * Fix the arglist construction for maintainer scripts
4230 * Revert dscformat to 1.0 since older dpkg-source versions do not have
4231 the new policy. In the future (starting at format 2.0 to maintain
4232 compatibility with old dpkg-source implementations) minor changes to
4233 the dscformat have to be fully backward and forward compatible.
4235 -- Wichert Akkerman <wakkerma@debian.org> Sat, 30 Jun 2001 16:41:43 +0200
4237 dpkg (1.9.14) unstable; urgency=low
4239 * Make the Uploaders field in a .dsc file optional.
4240 * Disabled sanity checking of source packages.
4242 -- Adam Heath <doogie@debian.org> Mon, 25 Jun 2001 02:22:40 -0500
4244 dpkg (1.9.13) unstable; urgency=medium
4246 * Add a -W option to dpkg-source(and the other utils, where it is just
4247 passed thru), to turn certain errors into warnings(of which, only
4248 one is changed, namely, the 'tar doesn't contain preceeding directory'
4249 error). Closes: #101813, and partially 101845.
4250 * Don't error out if the files in the tar have leading './', for
4251 dpkg-source. (another partial close of 101845).
4252 * Handle the case where a single directory exists in the orig.tar.gz, but
4253 it is NOT of the form <pkg>-<ver>. Closes: #101845.
4254 * Set LC_ALL in dpkg-source when we call external programs when we are
4255 going to parse their output. Another bug from 101845.
4256 * Handle stating of truncated cpio filenames(100 char limit, bah), in
4257 dpkg-source. Another bug from 101845.
4258 * Add support for an Uploaders field, which is read from the first
4259 paragraph of debian/control, and propagated to the .dsc. This lists
4260 the people allowed to upload a package. If it is not set, then the
4261 value of the Maintainer is placed into this field of the .dsc. This
4262 bumps the .dsc format to 1.1. Closes: #101815.
4263 * Handle symlinks in the tarball, and don't error out if found.
4264 * in controllib, make warnerrors default to warnings. Affects
4265 dpkg-source. This will be changed to be errors in the future.
4267 -- Adam Heath <doogie@debian.org> Sun, 24 Jun 2001 13:48:52 -0500
4269 dpkg (1.9.12) unstable; urgency=medium
4271 * Fix do_script() bug. Closes: Bug#101552
4272 * Fix building and extracting of certain kinds of source packages.
4274 * Added Colin Watson to THANKS.
4276 -- Adam Heath <doogie@debian.org> Wed, 20 Jun 2001 18:27:03 -0500
4278 dpkg (1.9.11) unstable; urgency=low
4280 * The "Hang on to your hats, it gets bumpy from here." release.
4281 * Trim trailing spaces from package names when checking builddeps.
4283 * Apply patch from bug to fix logic error that kept everything but
4284 Build-Deps from working in checkbuilddeps. Closes: #101511.
4285 * Apply patch to correctly check the output of gcc on hurd, for
4286 dpkg-architecture. Closes: #99874.
4287 * The internal pod docs in dpkg-architecture were updated to reflect
4288 that -f was no longer implied when -q was given, but the build system
4289 wasn't generating new documentation. Closes: #100997.
4290 * deb(5) now has a see-also for deb-old(5). Closes: #99620.
4291 * Fix dpkg-shlibdeps infinite directory recursion thru symlinks.
4293 * Set the Architecture to 'source' only when doing source only uploads
4294 in the generated changes files. Closes: #100144.
4295 * Document -nc in the dpkg-buildpackage manpage. Closes: #101038.
4296 * Make dpkg-source work with GNU md5sum. Closes: #97666.
4297 * in dpkg-source, when both arch: all and arch: <arch> packages exist in
4298 debian/control, don't promote the source arch: to any, but only list
4299 all and <arch>. Closes: #94608
4300 * Apply patch from Colin Watson: Closes: #89679
4301 * Reset SIGPIPE to DEFAULT when forking gzip.
4302 * set LANG to C before execing cpio, as we parse its output.
4303 * In checktarcpio() and checktarsane(), use the previously open pipes,
4304 instead of the opening files on disk(which was the old, ancient way).
4305 * Improve the output parsing of tar in checktarsane().
4306 * warn instead of die when find returns an error(which happens if there
4307 is a dangling symlink, because we use -follow). Closes: #51479.
4308 * Change list of allowed urgencies in debian/changelog to: low, medium,
4309 high, and critcial. Closes: #94475.
4310 * Error out if an illegal package name is used in dpkg-gencontrol.pl.
4312 * Apply patch from Marcus Brinkmann to dpkg-buildpackage: Closes:
4314 * Option -a implies option -d.
4315 * Set ARCH correctly to host architecture, rather than build arch.
4317 -- Adam Heath <doogie@debian.org> Tue, 19 Jun 2001 22:15:25 -0500
4319 dpkg (1.9.10) unstable; urgency=low
4321 * Fix [arch] parsing, and handle extra spaces better. Closes: #100512,
4323 * Apply patch from bug, to fix cleanup of dpkg-divert temp files.
4325 * Swap j/k keys on the main menu, so they function like the package
4326 selection screen(and like vi). Closes: #100502.
4327 * Multiple fixes in bug: Closes: #99892.
4328 * s/DEAD_JOE/DEADJOE/ in dpkg-source.
4329 * Switch to auto mode if alternative symlink is missing.
4330 * Update Spanish translation
4332 -- Adam Heath <doogie@debian.org> Sat, 16 Jun 2001 14:57:45 -0500
4334 dpkg (1.9.9) unstable; urgency=low
4336 * The leading and trailing spaces patch in the last upload had some
4337 issues with trailing spaces. This fixes them. No bug to close, as the
4340 -- Adam Heath <doogie@debian.org> Wed, 6 Jun 2001 22:36:57 -0500
4342 dpkg (1.9.8) unstable; urgency=low
4344 * Remove leading and trailing spaces from versions, and check for
4345 embedded spaces, inside dpkg. Closes: #99186.
4346 * Handle varied use of spaces in dpkg-checkbuilddeps. Closes: #98899.
4347 * Reset SIGPIPE back to default, in dpkg-source. Closes: #98563.
4348 * Remove bogus $! check from dpkg-architecture. Closes: #99428.
4350 -- Adam Heath <doogie@debian.org> Sat, 2 Jun 2001 15:15:04 -0500
4352 dpkg (1.9.7) unstable; urgency=low
4354 * If a new file doesn't exist on disk, but is a going to be installed as
4355 a directory, then don't error out. Closes: Bug#17381.
4356 * Update japanese manpages. Closes: Bug#97831.
4357 * Update it.po. Closes: Bug#98273.
4358 * Fix bad cleanup in dpkg-divert. Closes: Bug#98578,#98828,#98831.
4360 -- Adam Heath <doogie@debian.org> Mon, 28 May 2001 18:59:03 -0500
4362 dpkg (1.9.4) unstable; urgency=low
4364 * Oops. EOF_mmap incorrectly detecting the end of the data block.
4366 * After fixing the above bug, and using debootstrap to build a sid
4367 chroot, I discovered that my previous dependency cycle fix could cause
4368 segfaults in some situations.
4370 -- Adam Heath <doogie@debian.org> Tue, 1 May 2001 23:04:46 -0500
4372 dpkg (1.9.3) unstable; urgency=low
4374 * Fix compiles on ppc. Closes: Bug#95918.
4376 -- Adam Heath <doogie@debian.org> Tue, 1 May 2001 00:29:45 -0500
4378 dpkg (1.9.2) unstable; urgency=low
4380 * Recompile, to fix incorrect path 1.9.1/dpkg-divert. Closes: Bug#95845
4382 -- Adam Heath <doogie@debian.org> Mon, 30 Apr 2001 14:21:28 -0400
4384 dpkg (1.9.1) unstable; urgency=low
4386 * Fix segfault with empty status and available, and when missing a
4387 trailing new line. Closes: Bug#95496
4388 * Make dpkg-shlibdeps not care if dpkg --search return with an error.
4390 * Fix corruption of user-defined fields in status and available.
4392 * Changed dpkg.cfg to include no-debsig by default, as no debs are
4393 currently signed, and we get false errors when debsig-verify is
4394 installed. This will be removed in the future, when the archive tools
4395 support package signatures. Closes: Bug#95573
4396 * dpkg-buildpackage should only check for valid signinterface if the
4397 user specifies one. Closes: Bug#95598
4398 * Fix removing of diversions. Closes: Bug#95655
4399 * Fix md5sum -c. Closes: Bug#95586
4401 -- Adam Heath <doogie@debian.org> Sat, 28 Apr 2001 16:28:21 -0500
4403 dpkg (1.9.0) unstable; urgency=low
4405 * Things should mostly work OpenBSD 2.8 as well now
4406 * Added a --status-pipe option.
4407 * Fixed several memleaks.
4409 * Reworked lib/parse.c:parsedb(). Instead of using getc(), then
4410 calling varbufaddc(), it now reads the entire file at once into a
4411 huge buffer, then moves pointers around, to do the parsing. This
4412 gave a speedup of 33% on a dual celeron 333, when reading status and
4414 * various other speedups.
4415 * Removed all --smallmem code, as smallmem and largemem now actually
4416 use about the same amount of memory, and largemem is faster. Both
4417 --largemem and --smallmem are now obselete options, and will print
4418 a warning if used. Closes: Bug#84905, #67528
4419 * Initialize unitialized variables. This should solve several
4420 segfaults. Closes: Bug#25317(plus 9 others, thru the beauty of
4422 * Found that when working with dependency cycles, and part of the cycle
4423 was a provide, the provider was not being considered, so the cycle
4424 could not be broken. Closes: Bug#87985(and 3 others)
4425 * Update German translation, Closes: Bug#80529,#80532,#87581
4426 * Update French translation, Closes: Bug#65284,#85035,#87238
4427 * Update Japanese translation, Closes: Bug#93873
4428 * Updated all other translations (but no bugs filed)
4429 * Add Danish translation
4430 * Remove spurious '%s' in Polish translation, Closes: Bug#74814
4431 * Add French manpages, courtesy of Philippe Batailler
4432 * Ingore vim swapfiles in dpkg-source, Closes: Bug#81630
4433 * remove --import option from dpkg-statoverride, Closes: Bug#81358
4434 * Replace nfmalloc implementation with obstack. Added obstack.[ch] to
4435 optlib, for non-GNU systems.
4436 * dpkg-divert only allows absolute filenames now. Closes: Bug#82419
4437 * Handle diffs from non-existing files to existing files. Closes: Bug#82708,
4439 * Small fixes to the buildsystem. Closes: Bug#84361
4440 * Fix dpkg-statoverride --update for things other then plain files.
4442 * Fix race with source directory disappearing in dpkg-source.
4444 * Fix manpage for dpkg-gencontrol. Closes: Bug#84625
4445 * Add -n option for dpkg-gencontrol to specify a filename. Closes: Bug#75796
4446 * Use POSIX glob instead of regexp in debian/rules. Closes: Bug#83042,
4448 * fix typo in usage message for dpkg-divert, Closes: Bug#85977
4449 * Use full path for argv[0] when calling scripts. Closes: Bug#68783
4450 * Add ia64 support to dpkg-architecture.
4451 * Minor script changes, Closes: Bug#87485
4452 * Stop dpkg-genchanges from complaining about missing packages
4453 when doing a source-only build. Closes: Bug#87571,#15644,#25496
4454 * Various dpkg-architecture cleanups. Closes: Bug#87505
4455 * Modify dpkg-architecture to handle gcc versions containing letters.
4457 * dpkg-buildpackage updates: Closes: Bug#87572,#85847
4458 + make -C work properly
4459 + fix test for gpg secret keyring
4460 + improve source messages
4461 + skip signing pause when building unsigned packages
4462 + test for invalid signinterface. Closes: Bug#87579
4463 + remove debsign support, it's useless and doesn't work
4464 + Use correct architecture when naming .changes file. Closes: Bug#88015
4465 * Fix wording in dpkg-statoverride manpage for --add. Closes: Bug#85080
4466 * Fix typo in start-stop-daemon manpage. Closes: Bug#88225
4467 * Add dpkg-checkbuilddeps to check if build dependencies are satisfied
4468 and modify dpkg-buildpackage to call it if wanted.
4469 Closes: Bug#86453,#83812,#60717,#74372,#67896,#60717,#13961
4470 * dpkg-parsechangelog can read a changelog from stdin now. Closes: Bug#80142
4471 * Fix confusing wording for dpkg-buildpackage -uc option in manpage.
4473 * dpkg-statoverride now exits with exitcode 1 if we do a --list but don't
4474 output anything. Closes: Bug#84328
4475 * Remove Linux reference from all scripts, they should run fine on
4477 * Mark last argument in dpkg-scanpackages usage info as optional.
4479 * Fix cache in dpkg-scanpackages version comparison. Closes: Bug#90722
4480 * Fix formatting error in dpkg-source.1. Closes: Bug#82723
4481 * Change dpkg-gencontrol to fix comma-related syntax errors after
4482 processing substvars. Closes: Bug#92908
4483 * Verify package signatures if debsig-verify is installed. Closes: Bug#37017
4484 * Handle window resize in dselect main menu. Closes: Bug#93559
4485 * Initialize all parts of the package record. This should fix several
4486 segfaults people have been seeing in dpkg. Closes: Bug#90328.
4487 * Apply patch from bug#86847, that escapes intl chars in filenames.
4488 Closes: Bug#83752, #85040, #86847, #89000.
4489 * Errors during dpkg -s(and other similiar commands) are now printed
4490 on stderr. Closes: Bug#88987.
4491 * Add a --retry option to start-stop-daemon. Closes: Bug#75139
4492 * Fix regeps to extract Closes magic from a changelog so the #
4493 is really optional. Closes: Bug#94474
4494 * Remove useless statement from dpkg-shlibdeps. Closes: Bug#90516
4495 * Make the debian changelog parser identify itself with $progname.
4497 * Give a syntax error when we get an unexpected PGP signature in control
4498 files. Closes: Bug#75562
4499 * Change dpkg manpage to reflect that --force-statoveride is no enabled
4500 by default. Closes: Bug#95023
4501 * Handle dangling symlinks, by ignoring error code 1 from find, when
4502 processing --recursive. Closes: Bug#4784
4503 * dpkg -L, -S, -l, -s, and -p now return an error code if any package
4504 does not exist. Closes: Bug#4974, #72406
4505 * dselect has a configuration file as well now
4506 * Get ENOENT value at runtime in dpkg-divert instead of hardcoding it.
4508 * Fix wrong ENOENT test in dpkg-divert. Closes: Bug#95088
4509 * Add support for more SuperH variants (sh[34]{,eb}-linux-gnu)
4510 * Fix formating and a typo in the dpkg manpage
4511 * Document the dpkg.cfg configuration file in dpkg(8)
4513 -- Wichert Akkerman <wakkerma@debian.org> Thu, 26 Apr 2001 12:39:16 +0200
4515 dpkg (1.8.3.1) unstable; urgency=low
4517 * Revert change to nfmalloc.c that was causing SIGBUS on sparc.
4519 -- Ben Collins <bcollins@debian.org> Sat, 13 Jan 2001 08:52:11 -0500
4521 dpkg (1.8.3) unstable; urgency=low
4523 * Do chown before chmod in dpkg-statoverride, Closes: Bug#81943
4524 * Fix recusion in dpkg-shlibdeps, Closes: Bug#81322
4525 * Really completely revert dpkg-source patches which broke backwards
4528 -- Wichert Akkerman <wakkerma@debian.org> Fri, 12 Jan 2001 00:02:22 -0800
4530 dpkg (1.8.2) unstable; urgency=low
4532 * Don't attempt to read from an input source when we only want 0 bytes.
4533 Also handle buggy systems that return EAGAIN instead of EINTR. Closes:
4536 -- Adam Heath <doogie@debian.org> Thu, 11 Jan 2001 00:43:50 -0600
4538 dpkg (1.8.1.1) unstable; urgency=low
4540 * Apply patch from bug to fix badly generated diffs(in some
4541 circumstances). Closes: #81152
4543 -- Adam Heath <doogie@debian.org> Sat, 6 Jan 2001 16:07:33 -0600
4545 dpkg (1.8.1) unstable; urgency=low
4547 * Make --name a valid option. Closes: #31206, #51953.
4548 * dpkg-deb -I <pkg> <control> works again
4549 * Update Swedish translation
4551 -- Wichert Akkerman <wakkerma@debian.org> Thu, 4 Jan 2001 19:31:13 +0100
4553 dpkg (1.8.0) unstable; urgency=low
4555 * Add -k|--symlink option to dpkg-name. Closes: #35040
4556 * Made the accelerator keys in dselect's main menu separate options, so
4557 that they can be translated separately. Closes: #50955.
4558 * Added depends on sysvinit (>= 2.72), so that we can make sure that
4559 /etc/rcS.d exists. Closes: #55037.
4560 * update-rc.d: Changed documentation and help, as -f only applies during
4561 remove. Closes: #55049.
4562 * Added a --force-all option. Closes: #61354.
4563 * Format help string for --abort-after like other option help strings.
4565 * Fix dselect methods to pass admindir to dpkg from dselect.
4566 * Minor tweak so that when patch 2.5.4 is manually used to apply a diff,
4567 it doesn't get applied multiple times. Closes: #65021
4568 * Add --nicelevel to start-stop-daemon, to alter a programs priority
4569 before starting. Closes: #65191.
4570 * Document that --largemem is the default, and that the test point is
4571 24 megs. Closes: #65607.
4572 * Document that --set-selections does not actually install any
4573 packages. Closes: #65340.
4574 * Fix typo in dpkg-deb.1. Closes: #65945.
4575 * Add --truename option to dpkg-divert. Closes: #68489.
4576 * Documented COLUMNS in dpkg(8). Closes: #77001.
4577 * Modified DPKG_C_GCC_TRY_WARNS() to call AC_SUBST, so that we can
4578 use the result of the test during build time. Closes: Bug#75138
4579 * Added description for "suggests" in main/depcon.c:describedepcon().
4581 * Removed bashing from dpkg.postinst.
4582 * Make '#' optional in Closes: tags. Closes: Bug#63137.
4583 * Add -t to -h output in dpkg-buildpackage: Closes: Bug#49598.
4584 * Fix typo in --compare-versions error message. Closes: Bug#66474.
4585 * -R doesn't mean --root. Closes: Bug#66068, #72013
4586 * Add armv3l to archtable. Closes: Bug#72125
4587 * Fix two memory leaks, and lesson the memory foot print a tad. Hints
4589 * Fix some things perl5.6 complains about. Closes: Bug#77337
4590 * Fix referenes to dpkg-deb manpage. Closes: Bug#77855
4591 * Update Galish translation
4592 * Add new --import option to dpkg-statoverride to make it easy to
4593 import suidmanager settings.
4594 * Speedup patches by Adam Heath
4595 * statoverride fixes by Robert Luberda, Closes: Bug#78436
4596 * Add Linux S/390 support. Closes: Bug#79063
4597 * Using libz to decompress data instead of calling gzip.
4599 * Add gettext to build-depends
4600 * Fix warning when trying to remove a non-existing statoverride.
4602 * Be more paranoid with file permissions when extracing files
4603 * Apply statoverrides to more then just files
4604 * Update update-alternatives manpage to use FHS instead of FSSTND.
4606 * List descriptions for udebs in .changes
4608 -- Wichert Akkerman <wakkerma@debian.org> Mon, 25 Dec 2000 17:19:31 +0100
4610 dpkg (1.7.2) unstable; urgency=low
4612 * Fix parsing of configuration files
4613 * Add new powerpc-linux-gnu entry to archtable. Closes: Bug#76522
4614 * No longer bother to install emacs things. I don't use emacs myself
4615 and can't support that properly.
4616 * scripts/dpkg-shlibdeps.pl: Make it parse soname's in the format of
4617 "libfoo-X.X.so" (e.g. libdb-3.1.so) and use it. Also make it give a
4618 warning if there is a NEEDED line in the objdump output that we cannot
4620 * scripts/dpkg-shlibdeps.pl: resolve library paths using a combination
4621 of the libc major version, and ldconfig -p output. Solves problems
4622 with errant libc5 deps.
4623 * Correct name of .changes file when doing source-only builds
4624 * Fix -ap option for dpkg-buildpackage. Closes: Bug#77305
4625 * Fix typo in update-alternatives manpage. Closes: Bug#77829
4626 * Fix typo in script-regexp update-rc.d. Closes: Bug#76029
4628 -- Wichert Akkerman <wakkerma@debian.org> Thu, 23 Nov 2000 18:55:50 +0100
4630 dpkg (1.7.1) unstable; urgency=medium
4632 * Fix a typo in the dpkg-statoveride manpage
4633 * dpkg-statoverride reads and writes the right file now
4634 * Make update-alternatives use the right dir for alternatives again
4636 -- Wichert Akkerman <wakkerma@debian.org> Tue, 7 Nov 2000 01:16:39 +0100
4638 dpkg (1.7.0) unstable; urgency=low
4640 * Allow the administrator to override file mode and ownership using the
4641 new dpkg-statoverride tool.
4642 * Use objdump instead of ldd in dpkg-shlibdeps
4643 * Fix logic in dpkg-shlibdeps so it looks for dependencies as specified
4644 in its documentation
4645 * Make update-alternatives update slave links with --config and properly
4646 switch the alternative to manual mode
4647 * HURD updates, Closes: Bug#57753,#57754,#57755
4648 * dpkg-architecture: -q should not imply -f, Closes: Bug#57761
4649 * add dpkg:UpstreamVersion and dpkg:Version substvars in dpkg-genchanges
4650 and dpkg-gencontrol. Closes: Bug#62069,#64774
4651 * dpkg-genchanges: add new Changed-By field to .changes with the last
4652 person who made a change, and modify the Maintainer-field to be the
4653 actual maintainer. Update the format-version to 1.7 to reflect this.
4654 * dpkg-genchanges: allow a space between # and a to-be-closed bugnumber
4655 * dpkg-deb: reorder files when building a package
4656 * dpkg-statoverride: new tool to override ownership and modes for files
4657 * Check COLUMNS environment for dpkg -l output. Closes: Bug#65536
4658 * Add Origin and Bugs fields to the control file
4659 * Install new /etc/dpkg/origins/debian file
4660 * Corrections and updates to Swedish translation.
4661 * Add Galician, German, Dutch and Brazilian translations
4662 * archtable: add ia64 and sh; revert sparc64 so that it turns into sparc.
4663 There wont be a full binary-sparc64 port. Closes: Bug#70788
4664 * dselect/main.cc: small fixups to get it to compile with gcc-2.96
4665 * Clean up fd handling in some places. Closes: Bug#69359,#69360,#69361
4666 * Document -k option for dpkg-buildpackage. Closes: Bug#71808
4667 * Install commented dummy shlibs.default and shlibs.override files
4668 * Give dpkg a configurationfile
4669 * dpkg-scanpackages now uses the most recent version if multiple versions
4670 of a package are found.
4671 * don't rename a file to itself in dpkg-source. Closes: Bug#75060
4672 * Fix buffer overflow in cmdname handling in start-stop-daemon.
4674 * Don't abort if start-stop-daemon tries to read a non-existing pidfile.
4676 * Update formating of start-stop-daemon manpage. Closes: Bug#75110
4677 * Make a missing package a warning instead of an error in dpkg-genchanges
4679 -- Wichert Akkerman <wakkerma@debian.org> Sun, 5 Nov 2000 17:28:39 +0100
4681 dpkg (1.6.13) frozen unstable; urgency=low
4683 * Add Format-flag to .dsc format: we know we are going to change the
4684 format in the next release, this change will make dpkg-source abort
4685 with a reasonable error instead of doing unexpected things.
4686 * Fix error in gettext'ized string
4687 * Updated Czech, French, Polish and Spanish translations. Closes: Bug#63663
4688 * debian-changelog-mode.el: fix documentation string for
4689 debian-changelog-finalise-last. Closes: Bug#63003
4691 -- Wichert Akkerman <wakkerma@debian.org> Mon, 8 May 2000 16:08:53 +0200
4693 dpkg (1.6.12.99) frozen unstable; urgency=low
4695 * Pre-release for 1.6.13. which will only feature translation updates
4696 * Fix typo in dpkg-divert, Closes: Bug#60243
4697 * dpkg-genchanges: recognize non-deb packages (tarballs, such as
4698 dpkg-non-deb and boot-floppies disk tarballs). This makes sure that we
4699 include them when figuring out the Arch field in the .changes
4700 * mark another string as translateable, Closes: Bug#62543
4701 * fix location of --abort-after in --help output, Closes: Bug#62464
4702 * fix allocation error in checkpath(), Closes: Bug#62364
4703 * add Hold to list of desired package states in -l output, Closes: Bug#58765
4705 -- Wichert Akkerman <wakkerma@debian.org> Fri, 21 Apr 2000 11:52:59 +0200
4707 dpkg (1.6.12) frozen unstable; urgency=high
4709 * Fix test for gpg/pgp in dpkg-buildpackage. You can now build
4710 unsigned packages again. Closes: Bug#60395
4711 * Updated Spanish and Swedish translations. Closes: Bug#41735
4712 * Merge patch from Joel Klecker to remove emacsen-common stuff from dpkg-dev
4714 -- Wichert Akkerman <wakkerma@debian.org> Mon, 3 Apr 2000 16:50:02 +0200
4716 dpkg (1.6.11) frozen unstable; urgency=high
4718 * Oops, missed one case where the libc/ncurses conflict reared its
4719 ugly head and broke dselect miserably.
4720 * fix syntax error in dpkg-divert. Closes: Bug#60050
4722 -- Wichert Akkerman <wakkerma@debian.org> Fri, 10 Mar 2000 11:52:07 +1100
4724 dpkg (1.6.10) frozen unstable; urgency=low
4726 * The `it rains in Sydney' release
4727 * Mark another string in dselect as translateable, Closes: Bug#58618
4728 * Fix typos, Closes: Bug#58619
4729 * Change dselect keybindings slightly so `n' really does searchagain
4730 * Updated Czech and Spanish translations, Closes: Bug#58617
4731 * dpkg-divert.pl: reinstate last writeability-patch. Modified
4732 to not abort on ENOENT: this indicates a directory does not (yet)
4733 exist. If this happens don't try to rename. This should fix all
4734 current dpkg-divert problems. Closes: Bug#59207,#58596
4735 * update-alternatives: switch back to auto-mode when manually selected
4736 alternative is removed, Closes: Bug#54933
4737 * dselect no longer segfaults on SIGWINCH but does The Right Thing
4738 instead. Closes: Bug#54303,#58697,#59419
4740 -- Wichert Akkerman <wakkerma@debian.org> Tue, 7 Mar 2000 15:09:47 +1100
4742 dpkg (1.6.9) frozen unstable; urgency=low
4744 * Fix typo in update-alternatives manpage
4745 * dpkg-architecture: -q should not imply -f, Closes: Bug#57761
4746 * Cleanup bits of install-info to make it more stable
4747 * Fix Build-Dependency for ncurses, Closes: Bug#58073
4748 * Some more documentation updates, Closes: Bug#57985
4749 * Revert patch to check for writeable filesystems in dpkg-divert,
4752 -- Wichert Akkerman <wakkerma@debian.org> Fri, 18 Feb 2000 12:11:58 +0100
4754 dpkg (1.6.8) frozen unstable; urgency=low
4756 * Turn --force-overwrite on by default
4757 * Fix a couple of small buildsystem errors
4758 * Support multiple adjacent newlines in control-style files, Closes: Bug#56056
4759 * Updated Czech and Swedish translations
4760 * Revert patch to change order of things when purging a package,
4762 * Handle failed open of /dev/tty in dpkg -l, Closes: Bug# 55041
4763 * Update Japanese translations, Closes: Bug# 56641, #57494, #57595
4764 * Update extended description for dpkg-dev, Closes: Bug# 56675
4765 * Implement verbose option for update-alternative
4766 * Fix conflicts handling
4768 -- Wichert Akkerman <wakkerma@debian.org> Thu, 10 Feb 2000 15:31:31 +0100
4770 dpkg (1.6.7) frozen unstable; urgency=low
4772 * dpkg compiles on HP-UX, Solaris and IRIX now
4773 * start-stop-daemon can chroot now, Closes: Bug#54513
4774 * Allow space between # and the bugnumber in the changelog
4775 * Display package description with waddnstr, Closes: Bug#54313
4776 * Updated Japanese manpages, Closes: Bug#54690, #55080
4777 * Upload full source for packages with version *-0.1, Closes: Bug#54651
4779 -- Wichert Akkerman <wakkerma@debian.org> Sun, 16 Jan 2000 18:36:10 +0100
4781 dpkg (1.6.6) unstable; urgency=low
4783 * dpkg-buildpackage supports debsign, Closes: Bug#58333
4784 * fix update-alternatives manpage, Closes: Bug#53859
4785 * Updated Polish translation
4786 * Pass admindir to dpkg, Closes: Bug#54039
4787 * Fix dpkg -l output
4788 * Remove dpkg-safelist again, it had issues
4790 -- Wichert Akkerman <wakkerma@debian.org> Fri, 7 Jan 2000 19:51:45 +0100
4792 dpkg (1.6.5) unstable; urgency=low
4794 * Update Spanish translation
4795 * Don't strip 8th bit in dselect packagelists, Closes: Bug# 49061
4796 * Don't use \z in dpkg-scansources, Closes: Bug# 53182
4797 * Correctly unregister internals manual, Closes: Bug# 53200
4798 * dselect helpessages can be translated now, Closes: Bug# 51381
4799 * dselect UI tweaks, including a new --expert mode
4800 * Added build-depends, Closes: Bug# 53394
4801 * Added THANKS-file with people who have contributed to the code
4802 * Use full width of tty in packagelisting, Closes: Bug# 53395
4803 * Add -z option to dpkg-deb to set compressionlevel when building
4804 packages, Closes: Bug# 53398
4805 * Fix segfaults when producing a diff between current and new conffile,
4808 -- Wichert Akkerman <wakkerma@debian.org> Sat, 25 Dec 1999 04:47:09 +0100
4810 dpkg (1.6.4) unstable; urgency=low
4812 * No longer byte-compile for emacs
4813 * Add Swedish translation
4814 * start-stop-daemon: honour --oknodo if we fail to kill a process
4815 Closes: Bug#52580,#52185,#52457
4816 * Fix dselect program description, Closes: Bug#52328
4817 * Fix architecture-detection in dpkg-gencontrol, Closes: Bug#52616
4818 * Accept single-number values in update-rc.d, Closes: Bug#46810
4820 -- Wichert Akkerman <wakkerma@debian.org> Sun, 19 Dec 1999 16:27:48 +0100
4822 dpkg (1.6.3) unstable; urgency=high
4824 * Comment dselect changes from 1.6.2, they seem to have a problem
4825 Closes: #52043,52058,52088,51437
4826 * Really fix emacs-stuff. Hopefully. Closes: #51919,51525
4827 * Fix copyright display in dselect menu, Closes: #52093
4828 * Fix uid/gid-changes in start-stop-daemon, Closes: #52081
4830 -- Wichert Akkerman <wakkerma@debian.org> Tue, 7 Dec 1999 17:06:00 +0100
4832 dpkg (1.6.2) unstable; urgency=low
4834 * New dpkg-scansources, Closes: #51888
4835 * Fix default for elispdir, Closes: #51919,51525
4836 * New manpages for cleanup-info and dpkg-divert, Closes: #51539, 46657
4837 * Buildsystem updates, Closes: #51525, 51855, 51914
4838 * Modify dselect behaviour for suggests and recommends
4840 -- Wichert Akkerman <wakkerma@debian.org> Sun, 5 Dec 1999 19:29:50 +0100
4842 dpkg (1.6.1) unstable; urgency=low
4844 * Fix some slight packaging errors
4846 -- Wichert Akkerman <wakkerma@debian.org> Fri, 26 Nov 1999 20:18:48 +0100
4848 dpkg (1.6) unstable; urgency=low
4850 * Major overhaul of the buildsystem
4851 * Update Standards-Version to 3.1.0
4852 * Move to version 1.6 to reflect the amount of changes made
4853 * Fix mixup with Czech and Polish translations, Closes: Bug# 48986
4854 * utils/start-stop-daemon.c: Added ability for user.group arg to
4855 --chuid. Also, always call initgroups() when using --chuid.
4856 * utils/start-stop-daemon.8: Document above change, also add note to the
4857 --make-pidfile option concerning its problem with daemons that fork
4859 -- Wichert Akkerman <wakkerma@debian.org> Thu, 25 Nov 1999 04:30:01 +0100
4861 dpkg (1.4.1.19) unstable; urgency=low
4863 * Fix replaces for dpkg-dev
4864 * Add gettext-support to dselect
4865 * Added Czech and Polish translations for dpkg
4866 * Fixed incorrect patch for --print-architecture (oops, oh well
4867 it was already broken when there was no gcc anyway :)
4868 * Fixed missing mipseb that was supposed to be in the archtable
4869 * Better output in update-alternatives --config, now shows the
4870 current, and the prefered choices.
4871 * dpkg-name: ignore epoch when getting version
4872 * 50dpkg-dev.el: add it as a conffile for dpkg-dev
4873 * internals.sgml: Removed references to the versions of build tools,
4874 they date the document.
4875 * debian-changelog-mode.el: added hint for better log-email handling
4876 * Added recognition for new source-depends fields for policy
4877 referenced in bug #41232
4878 * dpkg-buildpackage: add -ap option to force a pause prior to starting
4879 the sign process. This helps for people who don't keep their signatures
4880 on the filesystem (on a floppy perhaps, then mount as needed).
4881 * minor script corrections
4882 * dpkg-dev control: Change gcc to c-compiler in the recommends field, and
4883 move cpio, patch and make to the depends line
4884 * Leave file info intact in available when installing packages. MD5sum,
4885 Filename, and MSDOS-Filename used to get lost when installing a
4887 * Added armv4l to archtable
4888 * Added 'D' to the list of choices for conffile handling, closes: #48137
4889 * Converted internals.sgml to debiandoc format. Also added a dpkg-doc
4890 package that contains the generated output from this file (.ps, .html
4891 and .info), includes doc-base support. Internals.sgml is also not
4892 generated on the binary-arch target, and is no longer "byhand"
4893 * dpkg-gencontrol: add "Source" to the fields placed in the control file
4894 * dpkg-parsechangelog: fixed loop for parsepath (#48526)
4895 * main/{processarc.c,depcon.c}: added new structure for conflictors,
4896 which contains a struct for conflicts. This is used to create an array
4897 of conflicting packages, which are going to be replaced. Allows for
4898 multiple conflicts and replaces. All conflictor handlers were
4899 converted to loops to handle each one (processarc.c).
4900 * dpkg-divert: Fix check for writable filesystem, closes: #48646
4902 -- Wichert Akkerman <wakkerma@debian.org> Sat, 30 Oct 1999 15:14:40 +0200
4904 dpkg (1.4.1.18) unstable; urgency=low
4906 * Backout dep check patch
4908 -- Ben Collins <bcollins@debian.org> Sat, 23 Oct 1999 00:39:24 -0400
4910 dpkg (1.4.1.17) unstable; urgency=low
4912 * Add support for long filenames, along with --assert-longfilenames
4913 * Added --chuid option to start-stop-daemon to allow switching to
4914 a different uid when starting a process
4915 * Add mipseb and mipsel to the archtable too, since mips and mipseb are
4916 both viable names for the mips big endian arch, and mipsel is also needed
4917 * Update dpkg-architecure's archtable
4918 * Added --config option to update-alternatives to allow easy changing
4919 of the registered alternatives for a specific name
4920 * Updated the deb-control(5) man page with all the current fields
4922 * Made the large info screen show 5 lines of the pkglist so that
4923 it scrolled properly, and still showed the cursor in dselect
4924 * Removed references to dpkg(5) which seems to not exist anymore
4925 * Fixed `dpkg-deb --help' and dpkg-deb(1) from reporting --no-check
4926 when it's actually --nocheck (went with the hardcoded option, so
4927 this is just a documentation fix).
4928 * Added better check in disk.setup for a working NFS server. Makes
4929 it compatible with other non-Linux servers.
4930 * Corrected dpkg(8)'s example of using dpkg -i (showed it used with
4931 a .tar.gz instead of a .deb)
4932 * Applied patch to correct improper TMPDIR handling in dpkg-deb
4933 * When encountering an error in extracting the tar archives in the
4934 packages, we should abort the install, not simply give an error
4936 * Make dpkg give the builtin arch if there was an error while exec()'ing
4937 the C compiler with --print-architecture. We still fail if the
4938 output from gcc was bad in some way, since they may be of importance.
4939 * Removed the maintainer-configure portion in debian/rules, since
4940 we should be shipping the source with all the auto* stuff
4941 already generated anyway
4942 * Removed the ltconfig patch, and resort to a debian/rules fix
4943 to libtool itself after running configure
4944 * Removed shlibs.default.i386. It's now a template for arch porting to
4945 Debian/dpkg, we install it still, if there exists a file matching the
4947 * Reimplemented a better *stat cache for the removal checking code,
4948 this helps a lot when doing upgrades where the packages are a lot
4950 * Increased largemem auto detection to >= 24megs, since it's not uncommon
4951 for dpkg to actually use 16megs of ram all on its own when using the
4952 largemem setting (old minimum was 16megs)
4953 * debian/rules: chmod -x everything in /usr/lib to make lintian happy.
4954 in the clean phase just rm -rf $(BUILD), we don't need to run
4955 distclean and all that other stuff. Don't run "make dist", we
4956 simply copy the .tar.gz that dpkg-source creates for the byhand
4958 * Make start-stop-daemon exit(1) when we don't find one of the
4959 pid's we are trying to kill, in accordance with the man page.
4960 * When running --configure on an already installed package, just
4961 say it's installed, and not that it is in an unconfigurable
4963 * Fixed some compiler warnings
4964 * Make dpkg check for uid 0 requirement, before checking the path
4965 since not being root, is probably the reason that the PATH is
4966 borked in the first place
4967 * Make -p short for --print-avail, and -P short for --purge
4968 * Fix typo in md5sum(1) man page
4969 * start-stop-daemon: Add --background and --make-pidfile options
4970 * update-alternatives: make sure we remove "old" symlinks when they
4971 are no longer pertinent. Add /etc/alternatives/README that refers
4972 to the update-alternatives(8) man page.
4973 * dpkg-divert: Add check for being able to write to the old/new
4974 destination before doing a rename. We fail on this, without
4975 changing the diversion registry
4976 * Fix bad regex in update-rc.d
4978 -- Wichert Akkerman <wakkerma@debian.org> Thu, 21 Oct 1999 17:49:03 +0200
4980 dpkg (1.4.1.16) unstable; urgency=medium
4982 * Hardcode ENOENT again since the errno-part of the POSIX module
4983 isn't in perl-*-base. sigh.
4985 -- Wichert Akkerman <wakkerma@debian.org> Fri, 15 Oct 1999 04:01:14 +0200
4987 dpkg (1.4.1.15) unstable; urgency=low
4989 * non-maintainer release.
4990 * Move dselect into its own package
4991 * Remove conffiles before directories when purging
4992 * Check if integrity from other packages will broken when processing
4994 * dpkg-deb can handle package made with Linux ar.
4995 * Add check to update-alternatives to see if the sequencecode is between
4997 * Fix failed assertion, which was actually two bugs: a logic error in
4998 checkforremoval and a wrong assumption in findbreakcycle
4999 * dselect doesn't die when you resize the terminal
5000 * check if a file is also in a new package before removing it when upgrading
5001 * offer to show a diff between the old and new conffile
5002 * dpkg-scanpackages: don't abort but only skip a package if we can't
5004 * Add HURD-support to start-stop-daemon
5005 * Reinstate patch to not read available when doing --list-files
5006 * Add a couple of --force options to handle changed conffiles
5008 -- Wichert Akkerman <wakkerma@debian.org> Thu, 14 Oct 1999 04:20:56 +0200
5010 dpkg (1.4.1.14) unstable; urgency=low
5012 * non-maintainer release.
5013 * dpkg-source works again on empty diffs, Closes: Bug# 46159
5014 * Install locale-files in /usr/share, Closes: Bug# 46631
5015 * Make /usr/share/doc/dpkg-dev a symlink to /usr/share/doc/dpkg
5016 * Actually include fix to make update-alternatives works filesystems (oops!)
5017 * Check if codenumber is between 0 and 99, Closes: Bug# 46810
5019 -- Wichert Akkerman <wakkerma@debian.org> Tue, 5 Oct 1999 19:19:05 +0200
5021 dpkg (1.4.1.13) unstable; urgency=low
5023 * Non-maintainer release.
5024 * NMU number 13, lets see what breaks :)
5025 * update-alternatives works across filesystems now
5026 * Make -sgpg work in dpkg-buildpackage (typo)
5028 -- Wichert Akkerman <wakkerma@debian.org> Tue, 28 Sep 1999 01:26:19 +0200
5030 dpkg (1.4.1.12) unstable; urgency=low
5032 * Non-maintainer release.
5033 * Fix typo in chmodsafe_unlink that made dpkg chmod files that
5034 weren't setuid or setgid
5036 -- Wichert Akkerman <wakkerma@debian.org> Sun, 26 Sep 1999 02:41:30 +0200
5038 dpkg (1.4.1.11) unstable; urgency=low
5040 * Non-maintainer release.
5041 * Added sparc64 to archtable
5042 * Added entries for newer alpha architectures to the archtable
5043 * Always run patch and diff with LANG set to C.
5044 * Handle diff warning for files with no newline at the end of file
5047 -- Wichert Akkerman <wakkerma@debian.org> Fri, 24 Sep 1999 03:23:54 +0200
5049 dpkg (1.4.1.10) unstable; urgency=low
5051 * Non-maintainer release.
5052 * Build dpkg-scansources manpages using pod2man
5053 * dpkg-buildpackage changes:
5054 + fix signinterface-detection
5055 + use gpg by default if $HOME/.gnupg/secring.gpg exists
5057 -- Wichert Akkerman <wakkerma@debian.org> Thu, 16 Sep 1999 15:36:43 +0200
5059 dpkg (1.4.1.9) unstable; urgency=low
5061 * Non-maintainer release.
5062 * Updated dpkg-scansources to current version from Roderick Schertler
5063 * Update location of GPL in internals-manual
5064 * Update location of GPL and dpkg copyright in all manpages
5065 * Include patch from Roman Hodek for dpkg-source to handle diffs of files
5066 with lines that begin with two dashes.
5067 * Move dpkg-scansources to dpkg-dev package
5068 * Move dpkg-scansources manpage to section 8
5069 * Fix error that moved a lot of manpages to the dpkg package.
5070 * It looks like not reading the available-file for listfiles was not greeted
5071 with much enthiousiasm, so reverse the change.
5073 -- Wichert Akkerman <wakkerma@debian.org> Wed, 15 Sep 1999 03:45:07 +0200
5075 dpkg (1.4.1.8) unstable; urgency=low
5077 * Non-maintainer release.
5079 * Add patch from Raphael Hertzog <rhertzog@hrnet.fr> for dpkg-scansources
5080 to skip comments in signatures. This allows packages to also use GnuPG.
5082 -- Wichert Akkerman <wakkerma@debian.org> Mon, 13 Sep 1999 04:16:33 +0200
5084 dpkg (1.4.1.7) unstable; urgency=low
5086 * Non-maintainer release.
5087 * Use /usr/share/doc
5088 * Merge changes from dpkg-iwj tree:
5089 + change section in dpkg-deb.1 to 1
5090 + Use COPYINGFILE instead of hardcoded GPL-location in showcopyright()
5091 + varbufprintf (used for some error messages) vsnprintf return value
5092 assumption changed to correspond to reality rather than glibc-doc.
5093 + Don't read available-info when not needed (slightly improved from
5094 dpkg-iwj: don't read for listfiles either :)
5095 + Cleanup --assert-* code
5096 + Assume largemem on systems without sysinfo(2).
5097 + modify preexec-script for easier script execution
5098 + Do not chmod(".../path/to/symlink",0600) causing many bad perms.
5099 + Sanity-check numbers for parameters
5100 + Move some logic from process_archive into wantinstall
5101 + Print '0' in dpkg-scanpackages if no packages found.
5103 -- Wichert Akkerman <wakkerma@debian.org> Fri, 10 Sep 1999 04:06:32 +0200
5105 dpkg (1.4.1.6) unstable; urgency=low
5107 * Non-maintainer release.
5108 * scripts/dpkg-architecture.pl: Update to latest version.
5109 * scripts/dpkg-architecture.1: Likewise.
5111 -- Marcus Brinkmann <brinkmd@debian.org> Sat, 24 Jul 1999 18:24:21 +0200
5113 dpkg (1.4.1.5) unstable; urgency=low
5115 * Non-maintainer release.
5116 * (dpkg-dev): Use emacsen-common for debian-changelog-mode.el
5117 (closes:Bug#20776,#31030).
5118 * Removed references to the packaging and policy manuals from debian/control.
5119 * Put debian-changelog-mode.el in dpkg-dev and remove from dpkg (closes:Bug#29271).
5120 * Fix paths in 50dpkg-dev.el using Roderick Schertler's patch
5121 (closes:Bug#28270,#29702,#26876,#29184,and others).
5122 * Note that bug number 17367 was fixed in 1.4.0.26.
5123 * Add Zack Weinberg's install-info patch for GNU install-info
5124 compatibility (closes:Bug#28965).
5125 * Add dpkg-architecture stuff from Marcus Brinkmann.
5126 * Remove debian-keyring suggests from dpkg.
5127 * Add -k<keyid> flag to dpkg-buildpackage.
5128 * --textmode works in gpg, remove kluge from dpkg-buildpackage.
5129 * Cleanup configure.in slightly (stop using tl_ macros, fix gettext stuff).
5130 * Attempt to make Debian source useful for non-Debian systems
5131 (i.e. distclean tree instead of maintainer-clean tree).
5132 * Sync with wichert's 1.4.1.4.
5133 * Add my ltconfig-1.3.2.diff (RPATH workaround).
5134 * Add dpkg-scansources program and man page.
5135 * Man pages in /usr/share/man.
5137 -- Joel Klecker <espy@debian.org> Tue, 13 Jul 1999 18:12:15 -0700
5139 dpkg (1.4.1.4) unstable; urgency=low
5141 * Also change developer-keyring to debian-keyring for dpkg-dev package
5142 * Include spanish translation from Nicolás Lichtmaier <nick@debian.org>
5143 * Depend on perl5 instead of perl
5145 -- Wichert Akkerman <wakkerma@debian.org> Mon, 5 Jul 1999 00:04:14 +0200
5147 dpkg (1.4.1.3) unstable; urgency=low
5149 * Modify tarobject() so it does not complain if we are creating a
5150 directory that replaces a removed file. This works around the
5151 problem that the filedatabase doesn't remember what filetype a
5152 file was by assuming it already was a directory
5154 -- Wichert Akkerman <wakkerma@debian.org> Mon, 31 May 1999 23:49:23 +0200
5156 dpkg (1.4.1.2) unstable; urgency=low
5158 * Non-maintainer upload
5159 * Rebuild, so this is glibc2.1 (unless you're on m68k), which is rumoured
5160 to also fix the i8n-problems.
5161 * Incorporate 1.6 format of .changes, patch from Guy Maor
5162 * Fix bug in section-handling of dpkg-scanpackages, patch from Guy Maor
5163 * Disable force-overwrites again, since we're in unstable
5164 * Assume largemem on systems for which sysinfo is not available, Bug# 33658
5166 -- Wichert Akkerman <wakkerma@debian.org> Wed, 26 May 1999 15:50:17 +0200
5168 dpkg (1.4.1.1) unstable; urgency=low
5170 * Non-maintainer upload
5171 * Install emacs-startup scripts with mode 0644 (lintian)
5172 * Incorporate changes in NMU 1.4.0.32 made by Vincent Renardias
5173 <vincent@waw.com> for slink:
5174 + Apply patch from Jim Pick for update-alternatives.pl to
5175 fix 'Important' bugs #30891 in dpkg and (#27382, #27383, #27696,
5176 #27703, #27736, #27097(merged bugs)) in jdk1.1.
5177 * Incorporate changes in NMU 1.4.0.33 made by me for slink:
5178 + Fix illegal perl construct (Bug# 30985)
5179 + Initialize oialtname->useinstead and oicontest->camefrom to 0 (Bug# 30397)
5180 + Update shlibs.default for libncurses 4 (Bug# 30332)
5181 + Suggest debian-keyring instead of developer-keyring (Bug# 27376, 30248)
5182 + Abort dpkg-divert when attempting to divert a directory (Bug# 30126)
5183 + Make dpkg-deb.1 aware that it is in section 1, not 8
5184 + Fix section in reference to dpkg-deb in dpkg.8 (Bug# 29740)
5185 + Fix typo in --force-help (Bug# 26193)
5186 + Correct path for debian-changelog-mode.el (Bug# 24606)
5187 + Make disk-method for dpkg use /var/run instead of /tmp to fix
5188 symlink-attacks (Bug# 21399)
5189 + Document -n and -f options for update-rc.d in manpage (Bug# 15913)
5190 + Add --abort-after option to change after how many errors we abort and
5191 change the default to 50 (Bug# 22940)
5192 + Fix controllib.pl: don't check debian/substvars unless needed, and
5193 don't depend on language settings (Bug# 31508)
5194 + Allow a - in the architecture-field (Bug# 25537)
5196 -- Wichert Akkerman <wakkerma@debian.org> Mon, 1 Feb 1999 00:44:01 +0100
5198 dpkg (1.4.1) unstable; urgency=low
5200 * Maintainer release by IWJ.
5201 * Changed Maintainer: field description.
5202 * Various changes to make the damn thing build.
5203 * Add .cvsignore files.
5205 -- Ian Jackson <ian@davenant.greenend.org.uk> Sun, 1 Nov 1998 17:33:38 +0000
5207 dpkg (1.4.0.31) unstable; urgency=low
5209 * dpkg/processarc.c: Make newfileslist static like the other arguments
5210 for register_cleanup's cu_* functions.
5211 * N-th fix for controllib.pl (simulate old behavior by trying stdin,
5212 stdout, and stderr for getlogin()).
5213 * Enable --force-overwrite for slink release, and comment where to do
5215 * Recompile against ncurses4.
5217 -- Daniel Jacobowitz <dan@debian.org> Thu, 22 Oct 1998 17:37:23 -0400
5219 dpkg (1.4.0.30) unstable; urgency=low
5221 * dpkg-dev isn't allowed to have a Recommends: debian-keyring (as that's
5222 in contrib), so it's now lowered to a Suggests: . Thanks to James Troup
5223 for pointing this out.
5225 -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sat, 26 Sep 1998 13:59:23 +0200
5227 dpkg (1.4.0.29) unstable; urgency=low
5229 * For now, prefer PGP over GPG.
5231 -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Tue, 22 Sep 1998 09:38:09 +0200
5233 dpkg (1.4.0.28) unstable; urgency=low
5235 * Added gpg (GNU Privacy Guard) support:
5236 * scripts/buildpackage.sh: default to GPG (unless no GPG, but only a PGP
5237 secret key file is found), as GPG, unlike PGP, is DFSG-free.
5238 * Updated dpkg-source(1), and added gpg(1) and pgp(1) to the SEE ALSO
5240 * Worked around broken textmode implementation in GPG.
5241 * dpkg-dev now Suggests: gnupg .
5242 * No longer includes developer-keys.pgp . Instead, dpkg now Suggests: and
5243 dpkg-dev now Recommends: developer-keyring.
5244 * Compiled with latest libstdc++ (2.9).
5246 -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Mon, 21 Sep 1998 13:17:14 +0200
5249 dpkg (1.4.0.27) unstable; urgency=low
5251 * REALLY fixed dpkg-dev, and new attempt to placate installer on internals.
5253 -- Daniel Jacobowitz <dan@debian.org> Fri, 27 Jul 1998 15:58:04 -0400
5255 dpkg (1.4.0.26.0.1) unstable; urgency=low
5257 * Binary-only upload for x86 and fixed dpkg-dev
5259 -- Daniel Jacobowitz <dan@debian.org> Fri, 24 Jul 1998 15:58:04 -0400
5261 dpkg (1.4.0.26) unstable; urgency=low
5263 * Non-maintainer upload.
5265 * Make --root work with maintainer scripts (Patch by Scott Barker,
5266 bugs #4863 and #3170).
5267 * Fix $(lispdir) bug if compiling without emacs (noticed by Joey Hess).
5269 -- Daniel Jacobowitz <dan@debian.org> Thu, 23 Jul 1998 12:02:04 -0400
5271 dpkg (1.4.0.25) unstable; urgency=low
5273 * Non-maintainer upload.
5275 * Add the requested -nc option to dpkg-buildpackage (Do
5276 not clean source tree, useful in debugging cycles).
5277 * controllib.pl: Again by popular acclamation, fix the getlogin() warnings.
5278 I redirected STDERR onto fd 0 before calling getlogin().
5279 * tools.m4: Fix display of whether c++ works.
5280 * dpkg-deb/extract.c: glibc 2.1 and some kernels want to make
5281 fflush() move the current fpos. Until someone can fix that,
5283 * Add an extra 0, to dselect/{pkg,meth}keys.cc so it compiles again.
5284 * Start using lchown() if available.
5285 * Really fix #20353. (aclocal.m4 was the wrong place; that's a generated
5286 file. The correct place is in tl_canon.m4.)
5288 -- Daniel Jacobowitz <dan@debian.org> Tue, 21 Jul 1998 03:14:14 -0400
5290 dpkg (1.4.0.24) unstable; urgency=low
5292 * Non-maintainer upload.
5294 * dpkg/main.c: Turn --force-overwrite off as default.
5295 * dpkg/main.c: don't list --force-overwrite as default in --force-help,
5296 noticed by Peter Weiss <Peter.Weiss@Informatik.Uni-Oldenburg.DE> and
5297 others. [#23542, part of #17409].
5298 * dpkg/dpkg.8: replaced with a newer version from Jim Van Zandt
5299 <jrv@vanzandt.mv.com>. [#21061]
5301 * dpkg-deb/build.c (do_build): add missing \n and improve error message
5302 when conffile name is too long. [#7057]
5304 * scripts/update-alternatives.8: replaced with better man page from
5305 Charles Briscoe-Smith <cpb4@ukc.ac.uk>. [#17283]
5306 * scripts/dpkg-source.1: corrected logic error in documentation for
5307 dpkg-gencontrol's -p option, as noticed by Oliver Elphick
5308 <olly@linda.lfix.co.uk>. [#14655]
5309 * scripts/controllib.pl (findarch): correct typo in error message,
5310 noticed by Yann Dirson <ydirson@a2points.com>. [#22106]
5311 * scripts/dpkg-buildpackage.sh: fix typo s/source version/source
5312 maintainer/, noticed by Joey Hess <joey@kite.ml.org>, Adam P. Harris
5313 <apharris@onshore.com> and others. [#10175, #15559]
5314 * scripts/dpkg-genchanges.pl: applied patch from Roman Hodek
5315 <Roman.Hodek@informatik.uni-erlangen.de> which solves problems with
5316 architecture specific packages in mostly architecture independent
5317 multi-binary source packages. [#14341, #20192].
5319 * doc/Makefile.am: remove any reference to the packaging manual, as it is
5320 now provided by the separate "packaging-manual" package.
5321 * doc/packaging.sgml: removed.
5322 * doc/developer-keys.pgp: updated to the current debian keyring.
5324 * aclocal.m4: applied patch from Joel Klecker <jk@espy.org> to handle
5325 egcs' --print-libgcc-file-name output. [#20353]
5327 * debian/copyright: correct FSF address.
5328 * debian/rules: add code from lesstif's debian/rules to make libtool
5329 less of a fool (i.e. not use -rpath and to link shared libraries
5330 against libraries it depends on). Code by Richard Braakman
5331 <dark@xs4all.nl> and Yann Dirson <dirson@debian.org>.
5332 * debian/rules: remove all reference to the packaging manual as it is
5333 now provided by the seperate "packaging-manual" package. [#21581,
5334 #21186, #22698, #23342]
5335 * debian/rules: link dpkg-divert.1.gz to undocumented.7.gz as the lack
5336 of a real manpage has been reported in #11093.
5337 * debian/README.compile: removed gawk and bogus comment about gettext
5338 being in experimental, as reported by Santiago Vila <sanvila@unex.es>
5339 [#23344]. Added libpaperg (debiandoc2ps needs paperconf).
5340 * debian/shlibs.default.i386: updated for glibc, reported by Herbert Xu
5341 <herbert@gondor.apana.org.au>. [#13140]
5342 * debian/control (dpkg-dev): depend on perl as POSIX (not a part of
5343 perl-base) is needed by most of the perl dpkg-* scripts, noticed by
5344 Joel Klecker <jk@espy.org>. [#22115]
5346 -- James Troup <jjtroup@comp.brad.ac.uk> Wed, 24 Jun 1998 14:38:52 +0200
5348 dpkg (1.4.0.23.2) frozen unstable; urgency=low
5350 * Non-maintainer upload.
5351 * dpkg/main.c: Turn --force-overwrite back on as default.
5353 -- James Troup <jjtroup@comp.brad.ac.uk> Tue, 23 Jun 1998 22:19:26 +0200
5355 dpkg (1.4.0.23.1) frozen unstable; urgency=low
5357 * No real changes, only a new version code to make this go to frozen too.
5359 -- Nils Rennebarth <nils@debian.org> Wed, 10 Jun 1998 17:29:58 +0200
5361 dpkg (1.4.0.23) frozen unstable; urgency=low
5363 * Non-maintainer bug-fix release
5364 * Update the disk method to the hamm directory structure (Bug#21000)
5366 -- Nils Rennebarth <nils@debian.org> Sun, 7 Jun 1998 19:14:51 +0200
5368 dpkg (1.4.0.22) frozen unstable; urgency=medium
5370 * Non-maintainer bug-fix release
5371 * Install main changelog file as `changelog.gz' instead of
5372 `changelog.dpkg.gz' (Debian Policy, section 5.8) (Bug#6052,15157)
5373 * Avoid use of /tmp/*.$$ in preinst and postinst (Bug#19712)
5374 * Make sure diversions file is always created with mode 0644 (Bug#19494)
5375 * When removing a file, chmod it to 000 if it's a char or block
5376 device or remove its s[ug]id bits, if any (Bug#6006)
5377 * Minor fixes in the programmer's manual (Bug#6206)
5378 * Always create readable status and available files
5379 (Bug#9869,11887,14636,15786,19146)
5380 * Make dpkg-gencontrol honour -DArchtecture=xxxx (Bug#9893)
5381 * Allow different archs for the same binary in debian/files (Bug#9894)
5382 * Added workaround in /usr/lib/dpkg/methods/disk/setup
5383 to avoid bash warning (Bug#10111,10131)
5384 * Recognize old .deb packages with other locales (Bug#12232)
5385 * Added `SHELL=bash' to debian/rules: it uses bash-specific structs
5386 * Move some files from dpkg to dpkg-dev (part of Bug#13295)
5387 * Minor fix in packaging manual regarding to Standards-Version (Bug#14696)
5388 * Fixed --altdir and --admindir in update-alternatives (Bug#15332)
5389 * Strip /usr/lib/libdpkg* (Bug#15671)
5390 * dpkg: send output of --help, --force-help and -Dhelp to stdout
5392 * send correct signals with start-stop-daemon (Bug#17258)
5393 * Make `dpkg-divert --test --remove' work as expected (Bug#19531)
5394 * Determine properly the architecture if gcc is egcs (Bug#20353)
5396 -- Juan Cespedes <cespedes@debian.org> Sun, 5 Apr 1998 17:37:01 +0200
5398 dpkg (1.4.0.21) unstable; urgency=low
5400 * Non-maintainer release to include a new update-rc.d
5401 * Fixed date on files in the archive from 2017 and 2018 by running
5402 touch foo; find . -newer foo | xargs -r touch; rm foo
5403 * Changed start-stop-deamon message "No <program> found; none killed." to
5404 "No <program> found running; none killed."
5406 -- Miquel van Smoorenburg <miquels@cistron.nl> Thu, 5 Mar 1998 14:19:46 +0100
5408 dpkg (1.4.0.20) unstable; urgency=low
5410 * Disabled --force-overwrites.
5411 * Removed core file from source
5413 -- Michael Alan Dorman <mdorman@debian.org> Tue, 9 Jan 1998 03:34:28 -0500
5415 dpkg (1.4.0.19) unstable; urgency=low
5417 * Changed methods/disk.setup to use output of
5418 'dpkg --print-installation-architecture' instead of hard-coded
5419 '1386' (fixes #10995).
5420 * Patched dpkg-source to properly quote metacharacters in strings
5421 before using them in pattern-matching expressions (fixes #10811).
5422 * Fixed several documentation typos (fixes #10764).
5423 * dpkg-source now works around 100-character filename limitation of cpio
5425 * dpkg-source now properly handles '\ no newline in source' message from
5426 patch (fixes #5041).
5428 -- Klee Dienes <klee@debian.org> Sun, 13 Jul 1997 19:28:22 -0700
5430 dpkg (1.4.0.18) unstable; urgency=low
5432 * dpkg-source now uses new -z option to GNU patch (still needs to be
5433 changed to detect and use old version as well) (fixes #9904, #10005, #10007).
5434 * Added i686 to archtable.
5435 * shlibs.default now uses xlib6 instead of elf-x11r6lib (fixes #9926).
5436 * debian-changelog-mode now uses interruptible completing type-in fields
5437 instead of the previous 'select-a-letter method'. I consider this
5438 better and more standard than the previous way, but I'd welcome
5439 opinions to the contrary. Consider this a 'probationary' change for
5440 now (fixes #9873, #9874).
5442 -- Klee Dienes <klee@debian.org> Sun, 25 May 1997 09:56:08 -0400
5444 dpkg (1.4.0.17) unstable; urgency=low
5446 * All of the dpkg binaries (but not dpkg-dev or dselect) now speak
5447 french, thanks to patches from Christophe Le Bars <clebars@teaser.fr>
5448 * Fix leading spaces before day in 822-date.
5449 * Changes from Tom Lees <tom@lpsg.demon.co.uk> to better support
5450 building on non-Debian systems; minor Makefile fixes.
5451 * Added 'ppc powerpc powerpc' to archtable.
5452 * Changed documentation paper size to US/Letter instead of A4 (A4
5453 may be better, but it's easier to print US/Letter on A4 than it is
5454 to print A4 on US/Letter).
5456 -- Klee Dienes <klee@debian.org> Tue, 13 May 1997 15:24:31 -0400
5458 dpkg (1.4.0.16) experimental; urgency=low
5460 * Added generated sources to GNU-format source archive so it no longer
5461 requires perl to build.
5463 -- Klee Dienes <klee@debian.org> Sat, 10 May 1997 17:34:29 -0400
5465 dpkg (1.4.0.15) experimental; urgency=low
5467 * Changed dpkg-genchanges to check for ($arch == $substvar{'Arch'}), not
5468 ($arch ne 'all') (fixes #9688).
5469 * Fixed bug in start-stop-daemon.c (was using optarg after argument
5470 parsing was over) (fixes #9597, #9603, #9364).
5471 * Provide 50dpkg-dev.el for xemacs as well as emacs.
5472 * Explicitly provide path for debian-changelog-mode in 50dpkg-dev to use
5473 .el file as workaround until xemacs can read emacs19 .elc files.
5474 * Pass top_distdir explicitly to 'make dist' to accomodate bug in
5476 * Fix debian/build to make html documentation without including
5477 directories in tar archives (fixes #9348).
5479 -- Klee Dienes <klee@debian.org> Fri, 9 May 1997 13:17:18 -0400
5481 dpkg (1.4.0.14) experimental; urgency=low
5483 * Fixed buglet in install-info.pl (fixes #9438).
5484 * Re-write of update-rc.d.pl, primarily by Miquel van Smoorenburg
5485 <miquels@cistron.nl> (fixes #9434, #9436).
5486 * Renamed "dpkg Programmer's Manual" to "dpkg Internals Manual".
5488 -- Klee Dienes <klee@debian.org> Tue, 6 May 1997 22:01:07 -0400
5490 dpkg (1.4.0.13) experimental; urgency=low
5492 * Fix to start-stop-daemon so that it still takes numeric arguments (had
5493 been broken in 1.4.0.12) (fixes #9598).
5494 * Fix 822-date to sanity-check localtime() output (seconds must be the
5496 * Patch from Guy Maor <maor@ece.utexas.edu> to dpkg-source.pl to support
5497 pristine (MD5-equivalent) upstream sources.
5498 * Patch from Michael Alan Dorman <mdorman@calder.med.miami.edu> to
5499 update-rc.d.pl to fix handling multiple start/stop entries on a single
5501 * Several fixes to dpkg-genchanges to support -B option (added in
5502 1.4.0.12) (fixes #9340).
5503 * Handle errors from 822-date in debian-changelog-mode.el.
5504 * Changed cl-debian.pl to correctly handle extra whitespace in changelog
5507 -- Klee Dienes <klee@debian.org> Mon, 5 May 1997 18:12:43 -0400
5509 dpkg (1.4.0.12) experimental; urgency=low
5511 * Re-wrote 822-date for clarity and to support timezone offsets >= 12h
5512 (New Zealand in DST is +1300, for example) (fixes #7130).
5513 * Patch from Juergen Menden <menden@morgana.camelot.de> to support
5514 archdependent-only builds (fixes #8912, #9245, #5359).
5515 * Fix archtable entry for powerpc (fixes #8794).
5516 * Strip /sbin/* and /usr/sbin/* in debian/rules (fixes #8853).
5517 * Moved start-stop-daemon to /sbin (fixes #8669).
5518 * Set sharedstatedir and localstatedir for $(MAKE) install in
5519 debian/rules (fixes #8852).
5520 * Fixes for update-rc.d(8) from Jim Van Zandt <jrv@vanzandt.mv.com>
5522 * No longer do variable substitutions when generating change file (fixes
5524 * Support symbolic signal names in start-stop-daemon (fixes #7715).
5525 * Add autoload for debian-changelog-mode to /etc/emacs/site-start.d
5526 (fixes #4519, #5841).
5527 * Add recommendation for gcc and make in dpkg-dev (gcc is needed for dpkg
5528 --print-architecture, used by dpkg-gencontrol; make is needed for any
5529 debian/rules file) (fixes #8470).
5530 * Minor changes to packaging manual section on source package
5531 conversion (fixes #6801).
5532 * Renamed "programmer's manual" to 'packaging manual'.
5533 * Start of new "programmer's manual" containing information on dpkg
5534 internals and build information. This manual uses the new
5535 TeXinfo-SGML format, currently included in doc/.
5536 * dselect/pkgdepcon.cc now checks for debug not NULL, not just depdebug.
5537 * Changed makefiles to support building outside of source directory.
5538 * Include GNU-format source distribution with other non-debian packages.
5540 -- Klee Dienes <klee@debian.org> Sun, 4 May 1997 11:08:19 -0500
5542 dpkg (1.4.0.11) experimental; urgency=low
5544 * Patches for alpha and libc6 from Michael Alan Dorman
5545 <mdorman@calder.med.miami.edu>.
5546 * Fixed minor problems in dpkg-shlibdeps regular expressions for libc6.
5547 * Fix regex to detect directory creation in dpkg-source.pl.
5548 * Minor changes for automake-1.1n.
5550 -- Klee Dienes <klee@debian.org> Sun, 23 Mar 1997 18:09:33 -0500
5552 dpkg (1.4.0.10) unstable; urgency=medium
5554 * Fixed bug in controllib.pl (@fowner was entire passwd entry,
5555 not just [uid, gid] as it should have been).
5557 -- Klee Dienes <klee@debian.org> Thu, 20 Mar 1997 13:06:52 -0500
5559 dpkg (1.4.0.9) unstable; urgency=low
5561 * Check fputs() return values for (ret >= 0), not (ret != 0) (fixes #7522).
5562 * dpkg-shlibdeps no longer gives error for Java and statically linked
5563 binaries (fixes #4988).
5564 * Change 'details of the old format' to 'details of the new format' in
5565 deb-old.5 (fixes #7605).
5566 * dpkg-source -b now warns (was previously silent) if maintainer changes
5567 create new subdirectories. dpkg-source -x now warns (previously gave
5568 error) if maintainer changes create new subdirectories (partially
5569 fixes #6866, #6671, #5045, #6482).
5570 * Added manual page for start-stop-daemon (8).
5571 * Added C version of start-stop-daemon by
5572 Marek Michalkiewicz <marekm@i17linuxb.ists.pwr.wroc.pl> (fixes #1670).
5573 * Converted to use GNU automake for the build process by Tom Lees
5574 <tom@lpsg.demon.co.uk>.<
5575 * Preliminary support for dpkg functions as a shared library (now
5576 provides libdpkg.so, but much work needs to be done in better
5577 segregating and defining the interface).
5578 * Preliminary internationalization support by Galen Hazelwood
5579 <galenh@debian.org>. Only the library, dpkg-deb, md5sum, and dpkg
5580 have been converted so far. No translations have yet been
5582 * Handle 'libc.so.6 => /lib/libc.so.6 (0x40010000)' format from libc6
5583 ldd (fixes #7603, #7926, #8688, #9179, #9134, #8516).
5584 * Removed policy.sgml (it has been moved to the debian-policy package).
5585 * Include patch from Darren Stalder <torin@daft.com> for
5586 dpkg-buildpackage to choose PGP key based on Maintainer: field of
5587 package being built (or -m<maintainer> option, if present) (fixes
5589 * Changed controllib.pl to use $ENV{LOGNAME}, getlogin(), and $<
5590 (in that order) to determine the intended ownership of
5591 debian/{files,substvars}, (fixes #7324, #6823, #5659, #5965, #5929,
5593 * Don't sign .dsc file in dpkg-buildpackage if building a binary-only
5594 release (fixes #7260).
5595 * Updated developer-keys.pgp to latest revision (fixes #6134).
5597 -- Klee Dienes <klee@debian.org> Mon, 17 Mar 1997 16:11:24 -0500
5599 dpkg (1.4.0.8) unstable; urgency=medium
5601 * Corrected update-rc.d for bash 2.0
5602 * Updated developer-keys.pgp from
5603 http://www.iki.fi/liw/debian/debian-keyring.tar.gz
5605 -- Guy Maor <maor@ece.utexas.edu> Mon, 3 Feb 1997 04:05:01 -0600
5607 dpkg (1.4.0.7) stable unstable; urgency=HIGH
5609 * Fixed --assert-support-predepends failing between unpack & configure.
5610 * Added --assert-working-epoch option.
5612 -- Guy Maor <maor@ece.utexas.edu> Sat, 25 Jan 1997 23:02:11 -0600
5614 dpkg (1.4.0.6) stable unstable; urgency=high
5616 * Patched lib/vercmp.c to hopefully fix dselect epoch processing
5617 (Bug#6204), (Bug#4590).
5618 * Patched scripts/dpkg-buildpackage, scripts/dpkg-genchanges,
5619 scripts/dpkg-gencontrol for epoch processing, courtesy of Loic Prylli
5620 <lprylli@graville.fdn.fr> (Bug#6138, Bug#5225).
5621 * Patched dpkg-genchanges to actually honor the -u switch to specify
5622 directory (Bug#5564).
5623 * Applied patch to main/archive.c to correct problems setting set[gu]id
5624 binaries, courtesy of Herbert Xu <herbert@greathan.apana.org.au>
5626 * Applied patch to dpkg-source to correct debian-only package names,
5627 courtesy of Guy Maor <maor@ece.utexas.edu> (Bug#5355).
5629 -- Michael Alan Dorman <mdorman@calder.med.miami.edu> Thu, 2 Jan 1997 11:36:09 -0500
5631 dpkg (1.4.0.5) stable frozen unstable; urgency=medium
5633 * Distribution for frozen too.
5635 -- Heiko Schlittermann <heiko@lotte.sax.de> Thu, 5 Dec 1996 09:13:42 +0100
5637 dpkg (1.4.0.4) stable unstable; urgency=medium
5639 * Bug2962 fixed: patch from Ian Jackson applied
5640 (cursor keys won't work after search)
5643 -- Heiko Schlittermann <heiko@lotte.sax.de> Fri, 15 Nov 1996 20:21:18 +0100
5645 dpkg (1.4.0.3) unstable; urgency=medium
5647 * dpkg-source -x: created bad permissions (set x-bit for
5648 all files pointed to by a symlink)
5650 -- Heiko Schlittermann <heiko@lotte.sax.de> Fri, 18 Oct 1996 18:32:06 +0200
5652 dpkg (1.4.0.2) unstable; urgency=medium
5654 * dpkg-buildpackage.sh: reverted the quoting change -- (you
5655 should use super, sudo, realy, but not su. Or write a wrapper
5657 * dpkg-buildpackge.sh: passing -m, -C, -v options to dpkg-genchanges
5658 more the way Ian likes ;-)
5659 * dpkg-source.pl: new function deoctify() as replacement for eval()
5660 (turn \ddd into the corresponding character) [rem: probably better
5661 solution would be to convert cpios output names into complete \ddd
5662 representation as well tars output names]
5663 * dpkg-source.pl: fixed 2 typos in failure message on creating
5664 $origtargz.tmp-nest.
5665 * main/main.c: typo `tread' -> `treat'
5666 * main/enquiry.c: fixed the ignorance for some relations in --compare-versions
5667 * main/enquiry.c: missing version is now handled as described in `dpkg --help'
5668 (or at least as I understood `dpkg --help' PLEASE TRY IT)
5669 * lib/parsehelp.c: fixed parsing of epoch information
5671 -- Heiko Schlittermann <heiko@lotte.sax.de> Sun, 6 Oct 1996 23:27:47 +0200
5673 dpkg (1.4.0.1) unstable; urgency=medium
5675 * dpkg-source: doesn't get screwed up from hardlinks
5677 * dpkg-source: doesn't get screwed up from `unprintable' characters
5678 in file names (e.g. from the kbd package)
5679 * controllib.pl: $varlistvile -> $varlistfile (thanx Karl Sackett)
5680 * dpkg-buildpackge: quoting for $rootcommand (thanx Michael Meskes)
5681 and `eval' as default $rootcommand
5682 * dpkg-*, controllib.pl: created debian/files and debian/substvars
5683 are chown'ed to `getlogin()' and its group
5684 * doc/: mv changed to mv -f
5685 * dpkg-buildpackage: added an option -a for overriding the
5686 architecture in the changes _file_name_
5687 * dpkg-buildpackage: pass -m* -v* .. options to dpgk-genchangelog
5688 * dpkg-name moved to dpkg-dev
5690 -- Heiko Schlittermann <heiko@lotte.sax.de> Sat, 21 Sep 1996 22:06:01 +0200
5692 dpkg (1.4.0) unstable; urgency=low (HIGH for new source format)
5694 * Corrected buffer overrun when dpkg-deb generates filename. (Bug#4467.)
5695 * dpkg-shlibdeps works with DEBIAN/shlibs (thanks Heiko Schlittermann).
5696 * Added libm.so.5 to shlibs.default for i386/m68k.
5698 * Split binary package into two: dpkg and dpkg-dev.
5699 * dpkg-source(1) documents mode and ownership setting during extraction.
5701 * dpkg-scanpackages moved to /usr/bin.
5702 * Include /usr/bin/dpkg-deb, not dpkg-deb.dist; don't rename in scripts.
5703 * Copyright file changed slightly.
5704 * debian-changelog-mode uses magic key substitution strings. (Bug#4419.)
5705 * Changed email address in control file to <ian@chiark.greenend.org.uk>.
5706 * Manuals and own Standards-Version: updated to 2.1.1.0.
5708 -- Ian Jackson <ian@chiark.greenend.org.uk> Thu, 12 Sep 1996 01:13:33 +0100
5710 dpkg (1.3.14) unstable; urgency=low
5712 * dpkg-buildpackage new -tc (clean source tree) option.
5714 * Formatted documentation removed by `make clean' and so not in source.
5715 * Manuals and own Standards-Version: updated to 2.1.0.0.
5716 * Distribute {policy,programmer}.{html.tar,ps}.gz with each upload.
5718 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sun, 1 Sep 1996 20:43:40 +0100
5720 dpkg (1.3.13) unstable; urgency=low (HIGH for building new src X programs)
5722 * X shared libraries added to shlibs.default (=> `elf-x11r6lib').
5723 * dpkg-source tar invocation fixed so that TAPE env var doesn't break it.
5724 * dpkg-source copes better with missing final newline messages from diff.
5726 * dpkg-buildpackage usage message fixed: -si is the default. (Bug#4350.)
5727 * dpkg-source error message about src dir mismatch typo fixed. (Bug#4349.)
5729 * dpkg-source(1) has suggestions for dpkg-buildpackage -r option.
5730 * dpkg-source change date fixed. (Bug#4351.)
5731 * More developers' keys.
5732 * Manual updates, own Standards-Version updated.
5734 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 31 Aug 1996 20:08:18 +0100
5736 dpkg (1.3.12) unstable; urgency=medium
5738 * dpkg prints old version number when upgrading. (Bug#4340.)
5739 * dpkg-deb tries to detect and flag corruption by ASCII download.
5741 * dpkg-genchanges and dpkg-buildpackage say what source is included.
5743 * dpkg-buildpackage passes +clearsig=on to PGP (or pgpcommand). (Bug#4342.)
5745 * dpkg-source prints better error for cpio not honouring -0t.
5746 * control file Suggests cpio >= 2.4.2, rather than just cpio.
5748 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Fri, 30 Aug 1996 15:31:51 +0100
5750 dpkg (1.3.11) unstable; urgency=low
5752 * EBUSY when dpkg removes a directory is only a warning.
5754 * dpkg-genchanges generates sensible warning (not confusing error
5755 about mismatch) for missing Section/Priority in binary packages.
5757 * Added dpkg --print-gnu-build-architecture option.
5758 * shlibs.default for m68k provided, as a copy of i386 version.
5760 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 29 Aug 1996 14:05:02 +0100
5762 dpkg (1.3.10) unstable; urgency=medium
5764 * dpkg-source(1) manpage alias symlinks are not dangling.
5765 * dselect selects things by default if they are installed.
5766 * Added `pentium' as alias for `i386' architecture.
5767 * Added `Suggests: cpio, patch' and explanatory text to Description.
5768 (Bugs #4262, #4263.)
5770 * More developers' PGP keys.
5771 * Manual updates, new source format released.
5773 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 26 Aug 1996 14:30:44 +0100
5775 dpkg (1.3.9) unstable; urgency=low (high for new source format)
5777 * dpkg --get-selections and --set-selections added.
5778 * New dpkg --force-not-root flag.
5780 * Don't replace directory with another package's file. (Bug#4202.)
5782 * All manpages now installed compressed.
5783 * Copyright file moved to /usr/doc/dpkg/copyright.
5784 * Standards-Version updated (0.2.1.1).
5786 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 24 Aug 1996 19:09:30 +0100
5788 dpkg (1.3.8) unstable; urgency=low (high for new source format)
5790 * dpkg-buildpackage -sa, -si options work correctly.
5792 * update-rc.d(8) updated to reflect design and reality.
5793 * Programmers' and policy manual updates.
5795 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Fri, 23 Aug 1996 12:48:26 +0100
5797 dpkg (1.3.7) unstable; urgency=low (medium for source pkg docs)
5799 * dselect +/-/_/= on lines for all broken, new, local or whatever
5800 packages do not affect _all_ packages. (Bug#4129.)
5802 * Support for diff-only uploads in source packaging tools.
5803 * dpkg-genchanges -d<descripfile> option renamed to -C.
5804 * dpkg-buildpackage understands -m, -v, -C (for dpkg-genchanges).
5805 * Support for debian/shlibs.local added to dpkg-shlibdeps.
5806 * Shared library files' search order defined in dpkg-source(1), and
5807 relevant files added to the FILES section.
5809 * Programmers' manual describes source packaging tools.
5810 * Policy manual mentions shared library control area file.
5811 * dpkg-source manpage includes dpkg-shlibdeps in title line.
5812 * Manuals have changelog and automatic version numbering.
5813 * changelogs (for dpkg and for manuals) installed.
5814 * binary target split into binary-arch and binary-indep in manual.
5815 * Manpages should be compressed.
5816 * Copyright file is moved to /usr/doc/<package>/copyright.
5817 * Changelogs must be installed in /usr/doc/<package>.
5819 * dpkg-deb(8) moved to dpkg-deb(1).
5821 * binary target split into binary-arch and binary-indep in source.
5822 * changelog entry for 1.2.14 copied from that (forked) release.
5824 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 22 Aug 1996 15:36:12 +0100
5826 dpkg (1.3.6) experimental; urgency=low (HIGH for new source format)
5828 * dpkg-source now has broken argument unparsing for tar. (Bug#4195.)
5830 * dpkg-gencontrol writes to debian/tmp/DEBIAN/control by default.
5831 * dpkg-shlibdeps script added.
5833 * Back to old sh update-rc.d, and removed manpage, because new Perl
5834 version and the manpage have different syntax and semantics.
5835 * update-rc.d prints usage message for missing terminal `.'. (Bug#4122.)
5837 * Use rm -rf instead of just rm -r in dpkg-deb --info &c. (Bug#4200.)
5839 * Added support for Installed-Size to dpkg-gencontrol, and documented.
5840 * Source packaging substitution variables and name syntax rationalised.
5841 * dpkg-source scripts' usage messages improved slightly.
5842 * dpkg-source works with non-empty second (orig dir) argument.
5844 * Added rationale for copyright policy to manual.
5845 * More developers' PGP keys.
5846 * Control database handling cleanups (usu. Source field blanked).
5848 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 20 Aug 1996 15:39:58 +0100
5850 dpkg (1.3.5) experimental; urgency=low (high for debian-changelog-mode)
5852 * 822-date script included. (Bug#4136.)
5853 * debian-changelog-add-version works on empty file.
5854 * debian-changelog-mode mode-help works properly.
5856 * dpkg-source tells patch not to make numbered backups. (Bug#4135.)
5858 * More developers' PGP keys.
5859 * Paragraph on uucp -a and -g options removed from policy manual.
5861 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 14 Aug 1996 14:46:47 +0100
5863 dpkg (1.3.4) experimental; urgency=low
5865 * Removed debugging output from dpkg-source -x. Oops.
5866 * Removed section on source package permissions from policy manual -
5867 dpkg-source now sorts these out.
5869 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sun, 11 Aug 1996 13:25:44 +0100
5871 dpkg (1.3.3) experimental; urgency=low
5873 * Programmers' & policy manuals in source tree; HTML in /usr/doc/dpkg.
5874 * Old guidelines.info and text files in /usr/doc/dpkg removed.
5876 * dpkg-source sets permissions on extracted debianised source tree
5877 and does not copy ownerships out of archive even if running as root.
5879 * Emacs mode `dpkg changelog' renamed to `Debian changelog'.
5880 * Default changelog format renamed from `dpkg' to `debian'.
5882 * debian-changelog-mode sets fill-prefix correctly.
5883 * debian-changelog-mode urgencies except HIGH lowercase by default.
5884 * debian-changelog-mode displays keymap in doc string and so mode help.
5886 * More maintainers' PGP keys.
5888 * Remove built changelog parsers with `clean' target in source.
5890 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 10 Aug 1996 23:35:51 +0100
5892 dpkg (1.3.2) experimental; urgency=LOW (MEDIUM for dpkg-source)
5894 * Faster update-rc.d written in Perl by Miquel van Smoorenburg.
5895 * install-info --test doesn't lock dir. (Bug#3992, thanks Darren).
5897 * dpkg-source doesn't break in the presence of any symlinks.
5899 * More developers' keys added to doc/developer-keys.pgp.
5900 * Install developers' keys in /usr/doc/dpkg/developer-keys.pgp.
5901 * dpkg-source documents undefined substvar behaviour.
5902 * minor debian/rules cleanups.
5904 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 10 Aug 1996 02:13:47 +0100
5906 dpkg (1.3.1) experimental; urgency=LOW
5908 * manpage for dpkg-source et al now available.
5909 * dpkg-changelog-mode.el installed in site-lisp, but still no autoload.
5911 * dpkg-source prints correct string for not-understood tar -vvt output.
5912 * dpkg-source parsing of tar -vvt output made more robust.
5914 * dpkg-buildpackage prints usage message on usage error.
5915 * dpkg-gencontrol can print usage message.
5916 * -T<varlistfile> option added to dpkg-source.
5917 * Description of -f<fileslistfile> corrected in dpkg-distaddfile usage.
5918 * -m<maintainer> synopsis changed in dpkg-genchanges usage.
5919 * debian/substvars may now contain blank lines.
5921 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 8 Aug 1996 02:36:04 +0100
5923 dpkg (1.3.0) experimental; urgency=LOW
5925 * dpkg can install named pipes.
5926 * dpkg-deb supports directory for destination, generates filename.
5927 * dpkg-{source,gencontrol,genchanges,parsechangelog,buildpackage},
5928 dpkg-distaddfile scripts to support new source package format.
5929 * a.out build no longer supported.
5930 * Changed to new source package format.
5932 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 6 Aug 1996 02:31:52 +0100
5935 dpkg (1.2.14) stable unstable; urgency=MEDIUM
5937 * dselect +/-/_/= on lines for all broken, new, local or whatever
5938 packages do not affect _all_ packages. (Bug#4129.)
5940 * NOTE - THE HISTORY FORKS HERE. 1.2.14's change appears in 1.3.7.
5942 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 22 Aug 1996 00:39:52 +0100
5945 dpkg (1.2.13) unstable; urgency=LOW
5947 * dpkg --search produces correct output for diversions.
5948 * dpkg-name remove unnecessary arch missing warning. (Bug#3482.)
5950 * dpkg-deb --build warns about uppercase chars in package name.
5952 * dpkg-scanpackages error messages updated and manpage provided
5953 (thanks to Michael Shields).
5954 * dpkg-scanpackages warns about spurious entries in override file.
5955 * dpkg-scanpackages `noverride' renamed to `override' everywhere.
5956 * dpkg-scanpackages field ordering to put Architecture higher.
5957 * dpkg-scanpackages field names capitalised appropriately.
5958 * dpkg-scanpackages invokes find with -follow. (Bug#3956.)
5960 * guidelines say #!/usr/bin/perl everywhere, not #!/bin/perl.
5961 * Many developers' PGP keys added.
5963 * configure script uses ${CC} instead of $(CC) (again :-/).
5964 * developers' keys included in dpkg source tree and /usr/doc.
5965 * configure remade using autoconf 2.10-3 (was 2.4-1).
5967 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 1 Aug 1996 02:46:34 +0100
5969 dpkg (1.2.12); priority=LOW
5971 * dpkg --search and --list understand and comment on diversions.
5972 * dpkg-divert displays diversions more intelligibly.
5974 * Guidelines are somewhat clearer about descriptions.
5975 * deb(5) describes new format; old moved to deb-old(5). (Bug#3435.)
5976 * deb-control(5) carries a warning about being out of date.
5978 * Added 1996 to dselect version/copyright.
5980 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 4 Jul 1996 15:04:49 +0100
5982 dpkg (1.2.11); priority=MEDIUM
5984 * dselect had dependency bug if installed package newer than avail.
5985 * Added `replaces' to dselect's list of package relationship strings.
5987 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 1 Jul 1996 02:51:11 +0100
5989 dpkg (1.2.10); priority=MEDIUM
5991 * Fixed bug in old-style version/revision number parsing. (Bug#3440.)
5993 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 29 Jun 1996 03:32:45 +0100
5995 dpkg (1.2.9); priority=MEDIUM
5997 * Fixed status database updates reading bug.
5998 * `Setting up' message includes version number.
5999 * `existence check' message changed to say `cannot access archive'.
6001 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 27 Jun 1996 13:39:36 +0100
6003 dpkg (1.2.8); priority=LOW
6005 * dpkg --record-avail puts data in Size field.
6006 * strip / for rmdir(2) in cleanup to work around kernel bug. (Bug#3275.)
6007 * dpkg-split --msdos no longer allows `-' and other chars in filenames.
6009 * manual dpkg-split(8) written.
6010 * dpkg-split minor typo in --auto usage error message fixed.
6011 * dpkg-deb(8) very minor cosmetic fix to --build option.
6013 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 25 Jun 1996 03:00:14 +0100
6015 dpkg (1.2.7); priority=LOW
6017 * dpkg-scanpackages syntax errors fixed.
6019 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Fri, 21 Jun 1996 04:10:38 +0100
6021 dpkg (1.2.6); priority=MEDIUM
6023 * NFS, CDROM and partition dselect methods include mountpoint
6024 in paths given to dpkg in [I]install, so they should now work.
6026 * Removed some leftover files from source tree.
6028 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 12 Jun 1996 14:35:19 +0100
6030 dpkg (1.2.5); priority=MEDIUM
6032 * Allow, but do not create, packages in half-installed state
6033 with no version number. (Aargh.)
6035 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 10 Jun 1996 04:55:43 +0100
6037 dpkg (1.2.4); priority=MEDIUM
6039 * New dpkg-name from Erick (<pkg>_<version>_<arch>.deb convention).
6040 * Disappeared packages can't own conffiles any more ! (Bug#3214.)
6041 * install-info creates Miscellaneous sections with a newline
6042 following the heading. (Bug#3218.)
6043 * cleanup-info script installed in /usr/sbin; called as appropriate
6044 by postinst. Thanks to Kim-Minh Kaplan. (Bug#3125.)
6045 * Allow superseded Essential packages to be purged after they've
6046 been removed (clear the Essential flag on removal, and ignore it
6047 on packages that are in stat_configfiles).
6049 * dselect disk methods understand `y' as well as `yes' for using
6051 * dselect doesn't make packages appear as `new' again if update
6052 of available packages fails.
6053 * dselect places method selection cursor over option last selected.
6055 * dpkg-scanpackages doesn't die when repeated packages are found.
6056 * dpkg-scanpackages allows many old maintainers (`//'-separated).
6058 * `Version' field is now mandatory (some operations already
6059 wouldn't work right anyway if it was't there).
6061 * update-rc.d(8) now says you must remove the script. (Bug#3215.)
6062 * dpkg --force-help says that --force-overwrite is on by default.
6063 * dpkg-deb manpage rewritten.
6064 * debian.README (= /usr/doc/copyright/dpkg) edited slightly.
6066 * Some database parsing grunge removed (pdb_preferversion, &c).
6067 * Source tree doc/sgml contains some embryonic manuals.
6068 * Leftover files in lib directory in source tree deleted.
6070 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 10 Jun 1996 03:52:01 +0100
6072 dpkg (1.2.3); priority=HIGH
6074 * install-info doesn't replicate section headings (Bug#3125, #2973).
6075 * New dpkg-name manpage broken off from script (oops!).
6076 * dselect help screens made consistent with new strings, flags, &c.
6077 * dselect error flag column labelled E (Error), not H (Hold).
6078 * `Escape' no longer bound to `exit list without saving' in dselect.
6080 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 28 May 1996 02:14:57 +0100
6082 dpkg (1.2.2); priority=MEDIUM
6084 * Fixed dselect coredump found by Erick Branderhorst (thanks).
6085 * Sort obsolete removed packages separately, not under Available.
6087 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 23 May 1996 21:31:05 +0100
6089 dpkg (1.2.1); priority=MEDIUM
6091 * `=' key in dselect really does `hold' rather than `unhold'.
6092 * dselect dependency processing now interacts better with `hold'.
6093 * dselect `I' key (not `i') modifies display of the info window.
6094 * dselect shows unavailable packages as being unavailable.
6095 * dselect main menu headings and many other strings changed to try to
6096 discourage people from deselecting every package and using [R]emove.
6097 Notably, `select' changed to `mark' throughout.
6099 * dselect disk methods now print a few fewer double slashes.
6100 * dselect disk access methods will offer to use dpkg --record-avail
6101 to scan the available packages, if no Packages file is found.
6103 * New dpkg --compare-versions option, for the benefit of scripts &c.
6104 * New dpkg --clear-avail option forgets all available packages info.
6105 * New dpkg --print-avail option, prints `available' data (from Packages, &c).
6106 * dpkg usage message is more informative, but no longer fits on screen.
6107 * dpkg --avail option renamed --record-avail.
6109 * Latest dpkg-name from Erick Branderhorst.
6110 * dpkg-scanpackages has more sensible problem reporting.
6111 * postinst configure now gets null argument (not <unknown> or <none>)
6112 when there is no previously configured version.
6114 * Guidelines say that postinst configure is given previous version.
6115 * Guidelines don't refer to maintainer-script-args.txt in main text.
6116 * Guidelines (Texinfo source) uploaded separately.
6118 * Own version of strcpy (used for debugging) removed.
6119 * Interface to access methods document in source (doc/dselect-methods.txt).
6120 * debian.buildscript moves changes file into parent directory.
6122 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 22 May 1996 01:26:31 +0100
6124 dpkg (1.2.0); priority=MEDIUM
6126 * dselect can sort packages by available and installed states, and
6127 display their version numbers. (Use O, o and V.)
6128 * Hold is properly integrated as a real `wanted state', rather than
6130 * Epochs in version numbers implemented, using the syntax
6131 <epoch>:<version>-<revision>. (Epoch not usually displayed.)
6132 * dselect disk method is architecture-independent (uses dpkg's
6133 installation architecture, and looks in the right part of the tree).
6135 * dselect disk method doesn't try to satisfy the predependencies of
6136 packages which are on hold.
6137 * Fixed conflict-related assertion failure. (Bug#2784.)
6138 * conffiles do not cause file conflicts if the conflicting package
6139 is in the `configuration only' state. (Bug#2720.)
6140 * Fixed messages where available version number was reported as installed
6141 version in conflict and dependency messages. (Bug#2654, Bug#2974.)
6143 * New format .deb files are default even for a.out compiles (but
6144 a.out version of dpkg is in old format).
6145 * Characters @:= (at colon equals) in package names now strictly
6146 forbidden everywhere (_ is still allowed in existing packages).
6147 * New dpkg --print-installation-architecture option prints installation
6148 architecture (compiled in), rather than build architecture (determined
6149 from gcc -print-libgcc-file-name).
6151 * Version messages show whether compiled a.out or ELF (i386 only).
6152 * Fixed missing space in version syntax error messages.
6153 * Manpage dpkg.8 installed with warning about inaccuracy.
6155 * Guidelines don't say to stop and restart daemons in runlevels 2345;
6156 instead they say to start in 2345 and stop in 016.
6157 * Guidelines and version messages say just Debian Linux.
6158 * Guidelines typo fix `"stop2' => `"stop"'. (Bug#2867.)
6160 * doc/Makefile.in clean properly deletes various guidelines.info* files.
6162 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 16 May 1996 00:01:21 +0100
6164 dpkg (1.1.6); priority=MEDIUM
6166 * Check virtual dependencies when removing (ouch! - thanks SDE.)
6167 * Fixed bug in internal database validity management that could
6168 make dselect and dpkg dump core. (Bug#2613.)
6169 * Fixed two coredumping bugs when using local diversions. (Bug#2804.)
6170 * Fixed disappearance of overwritten packages. (Bug#2696.)
6171 * install-info won't modify dir file before start of menu.
6172 * install-info will create Miscellaneous heading if no sections yet.
6174 * Only alphanums and +-. allowed in package names - enforced by
6175 dpkg-deb --build and documented in Guidelines.
6176 * dselect doesn't display packages unless they are installed, selected
6178 * dselect doesn't show spurious section and priority headings.
6179 * dselect has a few extra keybindings (from Lee Olds).
6180 * --force message changed to `--force enabled' so that default is OK.
6182 * dpkg-name now includes architecture component in .deb filename,
6183 and translates - in package name to _.
6184 * .deb file has architecture component in filename.
6186 * Guidelines changed to say Pre-Depends is for experts only.
6187 * Guidelines say to provide a unidiff (-u) rather than an old context diff.
6188 * Guidelines say 755 root.root for shared libraries.
6190 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 1 May 1996 00:47:22 +0100
6192 dpkg (1.1.5); priority=MEDIUM (HIGH for diversions users)
6194 * Fixed coredump when using diversions. (Bug#2603.)
6195 * Fixed typo in dpkg-divert which could lose diversions. (Bug#2662.)
6197 * --force-overwrite is the default.
6198 * diversions.text provides better examples.
6200 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 10 Apr 1996 13:59:30 +0100
6202 dpkg (1.1.4); priority=MEDIUM
6204 * Allow overwriting of conflicting packages being removed. (Bug#2614.)
6206 * a.out control file says Pre-Depends: libc4 | libc. (Bug#2640.)
6207 * ELF control file and libc dependencies changed to use finalised scheme.
6208 * ELF control file and libc dependencies for i386 only. (Bug#2617.)
6210 * Guidelines say use only released libraries and compilers.
6211 * Install wishlist as /usr/doc/dpkg/WISHLIST.
6212 * Remove spurious entries for Guidelines in info dir file.
6214 * dpkg-deb --build checks permissions on control (DEBIAN) directory.
6216 * Spaces in control file fields not copied by dpkg-split. (Bug#2633.)
6217 * Spaces in split file part control data ignore. (Bug#2633.)
6219 * Portability fixes, including patch from Richard Kettlewell.
6220 * Fixed minor configure.in bug causing mangled GCC -W options.
6222 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 4 Apr 1996 01:58:40 +0100
6224 dpkg (1.1.3); priority=LOW
6226 * dselect disk methods support Pre-Depends installation ordering.
6227 * When dpkg fails and --auto-deconfigure would help it says so.
6228 * dpkg --search output lists several packages with same file on one line.
6229 * Improved dpkg usage message somewhat.
6231 * dpkg-deb --build checks permissions and types of maintainer scripts.
6232 * dpkg-deb --build treats misspecified conffiles as error, not warning.
6233 * dpkg --print-architecture prints compiler's architecture while
6234 dpkg --version (&c) print system's arch (this to help cross-compiling).
6235 * More minor guidelines changes, including dir entry fixup.
6237 * configure script caches more values.
6238 * Changed maintainer email address to ian@chiark.chu.cam.ac.uk.
6240 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 16 Mar 1996 19:18:08 +0000
6242 dpkg (1.1.2); priority=LOW
6244 * Packaging guidelines installed properly (and as guidelines
6245 rather than debian-guidelines).
6246 * ELF version has more checks to stop you wrecking your dpkg installation.
6247 * dselect disk methods now look for a `local' tree as well, for
6248 people who want locally-available software of various kinds.
6249 * dpkg-divert has debugging message removed.
6250 * Minor guidelines changes.
6252 * Various makefile cleanups, mainly to do with ELF vs. a.out support.
6253 * debian.rules cleans out ~ files itself, as well as calling make clean.
6254 * debian.rules names .nondebbin.tar.gz file ELF too, if appropriate.
6256 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 14 Mar 1996 03:38:29 +0000
6258 dpkg (1.1.1elf); priority=LOW
6260 * Added /usr/lib/dpkg/elf-executables-ok and elf-in-kernel.
6261 * Replaces field now allows automatic removal of conflicting packages.
6262 * Replaces field now required to overwrite other packages' files.
6263 * Architecture field, and dpkg --print-architecture, supported.
6264 * build new format archives by default when compiled with ELF compiler.
6266 * symlinks are now installed atomically (good for shared libraries).
6267 * create /var/lib/dpkg/diversions in postinst if necessary (Bug#2465.)
6268 * Pre-Depends now correctly fails if package never configured.
6269 * dselect disk methods mount with -o nosuid,nodev.
6270 * update-rc.d defaults doesn't add both K and S in any one runlevel;
6271 dpkg postinst fixes up this situation if it sees it.
6273 * Assorted fixups to the Guidelines, which are now in one piece.
6274 * dpkg --list prints version string in one piece.
6275 * dpkg-scanpackages doesn't produce notice on output with list of
6276 packages with Section and/or Priority control file fields.
6278 * control file and debian.rules work both for ELF and non-ELF compiles.
6279 * most files compiled with -O2 (-O3 only for some critical files) -
6280 this fixes ELF build.
6282 -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 11 Mar 1996 04:25:28 +0000
6284 dpkg (1.1.0); priority=LOW
6286 * dpkg supports Pre-Depends.
6287 * postinst script gets most-recently-configured version as $2.
6289 * lib/tarfn.c #includes <errno.h> (portability fix).
6291 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 11 Feb 1996 21:07:03 +0000
6293 dpkg (1.0.17); priority=LOW
6295 * dpkg --recursive follows symlinks (useful for devel tree).
6297 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 10 Feb 1996 15:58:46 +0000
6299 dpkg (1.0.16); priority=LOW
6301 * dpkg-deb much faster reading new format archives. (Bug#2256.)
6302 * Developers' documentation in /usr/doc/dpkg/, /usr/info/.
6304 * Fixed typo in control file Description.
6306 * configure script tries to improve matters wrt sysinfo.
6307 * any debian-tmp.deb is deleted by `./debian.rules clean'.
6309 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 4 Feb 1996 15:51:59 +0000
6311 dpkg (1.0.15); priority=LOW
6313 * dselect disk methods should never unmount things they didn't mount.
6314 * debian.README aka /usr/doc/copyright updated.
6316 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 30 Jan 1996 15:05:39 +0000
6318 dpkg (1.0.14); priority=MEDIUM
6320 * fixed file descriptor leak in dpkg introduced in 1.0.11.
6321 * included dpkg-name in this package (conflicts with dpkg-name).
6323 * redraw in dselect main menu changed to use clearok (like in lists).
6324 * sa_restorer in struct sigaction no longer used (portability fix).
6325 * removed Guidelines from source package.
6327 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 30 Jan 1996 02:52:29 +0000
6329 dpkg (1.0.13); priority=MEDIUM
6331 * dselect partition and mounted methods work again.
6332 * dpkg-deb --no-act in usage message.
6334 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 26 Jan 1996 18:37:03 +0000
6336 dpkg (1.0.12); priority=MEDIUM (HIGH for users of 1.0.11)
6338 * Fixed frequent dpkg coredump introduced in 1.0.11. (Bug#2219.)
6339 * dpkg-deb ensures version numbers start with alphanumerics.
6341 -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 24 Jan 1996 00:42:31 +0000
6343 dpkg (1.0.11); priority=MEDIUM
6345 * corrected potentially serious problem with dpkg low-memory in-core
6347 * dpkg-split --msdos puts output files in right directory. (Bug#2165.)
6349 * diversions implemented - see `dpkg-divert --help'.
6351 * dselect shows and uses (for dependencies) currently installed
6352 version of a package if that is more recent.
6353 * dpkg --force-... options are in separate help screen.
6354 * better error messages for corrupted .deb archives. (Bug#2178.)
6355 * dselect NFS method will unmount correct copy of NFS area if mounted
6358 * removes some ELF compilation warnings.
6360 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 19 Jan 1996 02:41:46 +0000
6362 dpkg (1.0.10); priority=MEDIUM
6364 * dpkg-deb option parsing unmuddled (-I option was removed
6365 in 1.0.9 and broke dpkg-deb). (Bug#2124.)
6367 * dpkg-split will work when ELF `ar' is installed, and is faster.
6369 * nfs dselect method now available.
6370 * disk methods don't prompt spuriously for Packages files.
6371 * cdrom+harddisk methods can find Packages files.
6373 * dpkg-scanpackages (creates Packages files) now in /usr/sbin.
6375 * various changes to help compilation of dpkg-deb, dpkg-split
6376 and md5sum on non-Debian systems.
6377 * <sys/fcntl.h> replaced by <fcntl.h> throughout.
6379 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 14 Jan 1996 02:55:19 +0000
6381 dpkg (1.0.9); priority=MEDIUM
6383 * dselect uninitialised variable coredump fixed (thanks Carl).
6385 * version numbers printed by --version fixed. (Bug#2115.)
6386 * disk method problem with missing Packages files fixed. (Bug#2114.)
6387 * dependency version relationships now <= >= << >> =. (Bug#2060.)
6389 * install-info is in /usr/sbin, not /usr/bin. (Bug#1924.)
6390 * dpkg regards Revision field as obsolete.
6392 * <asm/unistd.h> changed to <linux/unistd.h> (for m68k port).
6393 * scripts/Makefile.in `clean' target deletes scripts.
6395 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 11 Jan 1996 20:51:20 +0000
6397 dpkg (1.0.8); priority=LOW
6399 * update-alternatives slightly more helpful message. (Bug#1975.)
6400 * cosmetic improvements to disk installation method. (Bug#1970,1956.)
6401 * mounted filesystem and unmounted partition separate methods. (Bug#1957.)
6403 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 12 Dec 1995 04:07:47 +0000
6405 dpkg (1.0.7); priority=MEDIUM (HIGH to upgrade syslogd)
6407 * dselect harddisk/CDROM method script handles multiple package
6409 * Everything has a manpage, though many are very unhelpful indeed.
6411 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 30 Nov 1995 03:59:14 +0000
6413 dpkg (1.0.6); priority=MEDIUM (HIGH to upgrade syslogd)
6415 * conffiles can now be taken over properly from one package by
6416 another which replaces it. (Bug#1482.)
6417 * dpkg will not deconfigure essential packages when --auto-deconfigure
6418 is set (this bug was fairly unlikely ever to be exercised).
6420 * dpkg checks for the presence of certain important programs on the PATH.
6421 * dselect is now more informative when a dependency is missing, saying
6422 "<package> does not appear to be available". (Bug#1642, 1705).
6424 * `make distclean' fixed; config.* &c removed from source archive.
6425 * lib/lock.c now uses fcntl rather than flock, for better portability.
6427 * `Package_Revision: 0' removed from control file.
6428 * Some inaccuracies and bad formatting in various messages corrected.
6430 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 21 Nov 1995 20:15:18 +0000
6432 dpkg (1.0.5); priority=LOW
6434 * dpkg-split allows some space for the header. (Bug#1649.)
6435 * dpkg-split now has --msdos option for 8.3 filenames.
6436 * dpkg-split --join &c will not complain about trailing garbage.
6438 * dselect & dpkg will no longer ignore SIGHUP will running subprocesses.
6440 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 13 Oct 1995 13:59:51 +0100
6442 dpkg (1.0.4); priority=MEDIUM (HIGH for dselect users with 1.0.3)
6444 * fixed bug which prevented dselect from displaying the bottom line of
6445 any listing screen. This was introduced in 1.0.3, sorry !
6447 * a conffile will never cause a prompt if the package maintainer
6448 distributes a file identical to the user's, even if the file has
6449 been edited by both the user and the maintainer or is a
6450 newly-registered conffile. (Bug#1639.)
6452 * dselect disk/cdrom method script says where to get Packages file.
6453 * dselect help has better descriptions of the functions of Return and Q.
6455 * postinst now warns about some problems with /usr/lib/dpkg/methods/hd.
6457 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 12 Oct 1995 01:45:38 +0100
6459 dpkg (1.0.3); priority=MEDIUM
6461 * dselect: fixed segfault when doing some multiple (de)selections.
6463 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 10 Oct 1995 03:21:12 +0100
6465 dpkg (1.0.2); priority=MEDIUM
6467 * problem with screen refresh after `o' (change order) corrected.
6469 -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 9 Oct 1995 13:11:04 +0100
6471 dpkg (1.0.1); priority=LOW
6473 * much better dpkg performance on low-memory systems.
6474 * start-stop-daemon --name should now work. (oops!)
6475 * fixed typo which could turn into memory overwriting bug sometime.
6477 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 8 Oct 1995 20:12:29 +0100
6479 dpkg (1.0.0); priority=LOW
6481 * Version 1.0.0: dpkg is no longer beta.
6483 * tar extractor no longer looks up an empty string using getgrnam
6484 (this causes the libc to coredump when using NIS).
6486 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 1 Oct 1995 13:07:36 +0100
6488 dpkg (0.93.80); priority=LOW
6490 * dselect help screen intro changed to remove `much' before `help'.
6492 * update-alternatives.pl contains hardcoded ENOENT value, instead
6493 of requiring POSIX.pm to be present.
6495 * Makefiles changed to strip when installing instead of when building.
6497 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 30 Sep 1995 01:44:12 +0100
6499 dpkg (0.93.79) BETA; priority=LOW
6501 * DPKG_NO_TSTP environment variable which stops dpkg sending the
6502 process group a SIGTSTP (Bug#1496).
6503 * End key should work in dselect lists (Bug#1501).
6504 * various message typos (missing \n's) fixed (Bug#1504).
6506 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 29 Sep 1995 03:27:01 +0100
6508 dpkg (0.93.78) BETA; priority=LOW
6510 * dselect keystrokes help file typo fix.
6512 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 28 Sep 1995 20:31:02 +0100
6514 dpkg (0.93.77) BETA; priority=MEDIUM
6516 * dpkg --remove --pending will purge things when appropriate.
6518 * fixed failure to null-terminate dpkg conflict problem messages.
6519 * fixed bug in formatting of dependency version problem messages.
6521 * Conffiles resolution prompt for new conffile: typo fixed.
6522 * Changed dpkg usage error to suggest `-Dhelp' instead of `--Dhelp'.
6524 -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 20 Sep 1995 23:44:35 +0100
6526 dpkg (0.93.76) BETA; priority=MEDIUM
6528 * dpkg --auto-deconfigure option (used automatically by dselect) allows
6529 `important' packages which many others depend on to be split.
6530 * dpkg should no longer fail an assertion during complicated
6531 multiple configurations involving packages which are on hold.
6533 * update-alternatives supports negative priorities.
6534 * /etc/alternatives is included in the .deb archive.
6536 * Package priorities changed: Required (Req), Important (Imp), Standard (Std),
6537 Optional (Opt) and Extra (Xtr). For backward compatibility Base is an
6538 alias for Required, and Recommended is kept as a level just below Standard.
6540 * dselect shows introductory help screen when entering package lists (both
6541 main and recursive).
6542 * dselect help messages made more friendly.
6543 * dselect package list `quit, confirm, and check dependencies' key is
6544 now Return rather than lowercase `q'; likewise method list `select this
6545 one and configure it' key.
6546 * dselect selects packages with priority `standard' or better by default.
6547 * dselect `v=verbose' becomes `v=terse' when in verbose mode.
6549 * hard disk method unmounts /var/lib/dpkg/methods/mnt on failure.
6550 * disk methods' install message uses `stty' to find out what the
6551 interrupt character is, and uses that in the prompt (rather than ^C).
6552 * dpkg now tolerates ^Z characters in Packages files.
6553 * harddisk method doesn't display extra slash when updating packages file.
6554 * harddisk method burbles less if it doesn't have a good default.
6556 * dpkg-deb now supports new flexible format, but old format still default.
6558 -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 20 Sep 1995 02:49:41 +0100
6560 dpkg (0.93.75) BETA; priority=MEDIUM
6562 * dselect no longer segfaults when you try to modify the last item.
6564 * dselect Makefile compiles with -g, and links without -s, but installs
6565 with -s, so that built source directory has debugabble binary.
6567 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 12 Sep 1995 02:59:29 +0100
6569 dpkg (0.93.74) BETA; priority=LOW
6571 * dpkg-split implemented and installed in /usr/bin/dpkg-split.
6572 (NB this is not compatible with Carl Streeter's old dpkg-split script.)
6573 * dpkg uses dpkg-split.
6574 * floppy disk method available - NB this is a first attempt only.
6576 * hard disk method uses --merge-avail rather than --update-avail.
6577 * installation by default of `standard' packages removed again.
6578 (I don't think this is the right place to do this.)
6579 * update-alternatives --remove correctly deletes all slave links;
6580 minor cosmetic improvements.
6582 -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 11 Sep 1995 02:06:05 +0100
6584 dpkg (0.93.73) BETA; priority=LOW
6586 * dselect multi-package selection now done by `divider' lines
6587 actually in the package list, rather than horizontal highlight
6589 * dselect help available, and keybindings rationalised.
6591 * postinst removes /usr/lib/dpkg/methods/hd if upgrading from
6592 0.93.42.3 or earlier.
6593 * `hold' flag changed to be settable by the user only, and
6594 made orthogonal to the `reinstallation required' flag.
6595 * dpkg will install by default any packages with priority of
6596 `standard' or better unless they're explictly deselected.
6598 * dselect dependency/conflict resolution will suggest marking absent
6599 packages for `purge' rather than `deinstall'.
6600 * disk method script produces message about invoking dpkg.
6601 * dpkg produces warning, not error, when it gets EPERM trying to
6602 remove a directory belonging to a package being removed.
6603 * dpkg, dpkg-deb usage error reporting improved.
6604 * dselect detects too-dumb terminals and stops.
6605 * dpkg-deb(8) updated a little (thanks to Bill Mitchell).
6607 * dselect debugmake script uses -O0.
6609 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 10 Sep 1995 12:23:05 +0100
6611 dpkg (0.93.72) BETA; priority=MEDIUM
6613 * /usr/sbin/update-alternatives added.
6615 * New names for certain control file fields (old names work
6616 as aliases): Optional -> Suggests, Recommended -> Recommends,
6619 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 3 Sep 1995 16:37:41 +0100
6621 dpkg (0.93.71) BETA; priority=LOW
6623 * dpkg doesn't silently overwrite `new' conffiles (Bug#1283).
6624 * case now not significant in Essential, Status and Class (Bug#1280).
6625 * dselect checks method scripts for execute, not for write.
6627 * spelling fixes in lib/dbmodify.c and dselect/helpmsgs.src.
6629 * dselect `clean' target deletes helpmsgs.cc and helpmsgs.cc.new.
6631 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 31 Aug 1995 13:56:08 +0100
6633 dpkg (0.93.70) BETA; priority=MEDIUM
6635 * dselect unmounted harddisk method has many silly bugs fixed.
6637 * dpkg --root option restored (was removed by mistake in 0.93.68).
6638 * minor cosmetic change to dselect subprocess failure message.
6640 -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 9 Aug 1995 22:18:55 +0100
6642 dpkg (0.93.69) BETA; priority=MEDIUM
6644 * dpkg --configure and --remove should work properly when
6645 they have to defer processing (this tends to happen when many
6646 packages are processed at once). (Bug#1209.)
6648 * dpkg --configure and --remove work better when `processing'
6649 several related packages with --no-act.
6651 * dpkg --auto is now two options, --pending or -a (for configure,
6652 remove, &c) and --recursive or -R (for install, unpack, &c).
6654 * dpkg debug options in usage message, and values available (-Dh).
6656 -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 9 Aug 1995 22:18:55 +0100
6658 dpkg (0.93.68) BETA; priority=MEDIUM
6660 * dpkg won't get an internal error if you try to use the default
6661 conffiles response (ie, if you just hit return). (Bug#1208.)
6663 * dselect hard disk and CD-ROM methods - the real thing, but ALPHA.
6665 * dselect allows you to go straight to `update' or `install' if
6666 you have already set up an access method.
6667 * new dpkg options --yet-to-unpack, --merge-avail and --update-avail.
6668 * dpkg -G is an abbreviation for dpkg --refuse-downgrade.
6669 * dpkg -R alias for --root withdrawn, pending reuse with different meaning.
6670 * dpkg --help message rationalised somewhat.
6672 * Obsolete `examples' and `dpkg-split' directories removed from
6673 source tree. The `hello' package is a better example.
6675 -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 7 Aug 1995 02:16:25 +0100
6677 dpkg (0.93.67) BETA; priority=LOW for C dpkg alpha testers, HIGH for others
6679 * dpkg no longer statically linked and -g.
6680 * calls to abort() changed to print string, file and line number first.
6681 * removed unused variable from dpkg source.
6683 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 4 Aug 1995 01:39:52 +0100
6685 dpkg (0.93.66) ALPHA; priority=MEDIUM
6687 * dpkg will correctly remove overwritten files from the lists of
6688 the package(s) that used to contain them.
6690 * dpkg --purge is now an action, rather than a modifier for --remove,
6691 and the -P alias for it is withdrawn.
6693 * dpkg --unpack/--install filenames in messages are now more sensible
6694 about when to use .../ (show as many trailing components as possible
6695 in 40 characters, or the whole path if that the last component is
6698 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 3 Aug 1995 02:11:03 +0100
6700 dpkg (0.93.65) ALPHA; priority=MEDIUM
6702 * dpkg --remove should, when a package being removed is depended-on
6703 by another that is also queued for removal, defer the depended-on
6704 package rather than aborting it. (Bug#1188.)
6706 * dpkg will not attempt to configure or remove a package more than
6707 once in the same run. (Bug#1169.)
6709 * dpkg cosmetic fix to dependency problems message (this bug
6710 hasn't been triggered to my knowledge).
6712 * perl-dpkg no longer installed in /usr/bin.
6714 -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 2 Aug 1995 13:02:58 +0100
6716 dpkg (0.93.64) ALPHA; priority=MEDIUM
6718 * dpkg marks a package as no longer `to be configured in this run'
6719 when an error occurs, so that other packages which depend on it
6720 will fail (rather than causing a loop and an assertion failure,
6721 packages.c:166: failed assertion `dependtry <= 4').
6723 * dselect initial selection granularity is single-package.
6724 * dpkg --no-also-select option renamed to --selected-only (old option
6725 still accepted, but no longer in --help). Changed -N to -O.
6727 * dselect `update' option changed to `install' (and other options
6728 renamed too). NB: old access methods will not work, because
6729 the `update' script should now be an `install' script.
6731 * dselect `installation methods' renamed to `access methods'.
6732 * dpkg --skip-same-version and --refuse-downgrade produce friendlier
6733 messages when they skip packages.
6734 * --licence option now properly mentioned in all programs' --version
6737 * bad fix for ELF compile problem involving myopt.h removed (compile
6738 problem turned out to be a GCC bug.)
6740 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 1 Aug 1995 03:03:58 +0100
6742 dpkg (0.93.63) ALPHA; priority=LOW
6744 * preinst works around shell bug/misfeature involving `trap'.
6746 * dpkg --skip-same-version doesn't skip packages which have
6747 an error flag set or which aren't in a standard `installed' state.
6749 * dpkg --search now does a substring search if the string doesn't
6750 start with a wildcard character (*, [ or ?) or slash.
6752 * problem with C/C++ linkage of stuff in "myopt.h" fixed, to help
6753 with compiling with GCC 2.7.0.
6755 * dselect Makefile.in `clean' deletes curkeys.inc &c, so that they are
6756 not shipped in the distribution source and will be rebuilt on the
6759 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 27 Jul 1995 13:38:47 +0100
6761 dpkg (0.93.62) ALPHA; priority=HIGH
6763 * dpkg purges leftover control scripts from /var/lib/dpkg/tmp.ci,
6764 rather than associating them with the wrong package. (Bug#1101.)
6766 * dpkg won't `disappear' packages containing no files or directories,
6767 nor a package required for depends/recommended. (Bug#1128.)
6769 * dpkg follows directory symlinks. (Bug#1125.)
6771 * dselect fixups for ELF/GCC2.7.0 compilation.
6773 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 21 Jul 1995 21:43:41 +0100
6775 dpkg (0.93.61) ALPHA; priority=LOW
6777 * dselect keybindings and status characters and descriptions changed
6778 (in pursuance of Bug#1037, user interface problems, still open.)
6780 * Some cleanups to fix mistakes discovered by ELF-GCC 2.7.0, and fixup
6781 for newer C++ draft standard (`for' variable declaration scope change).
6783 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 18 Jul 1995 01:42:51 +0100
6785 dpkg (0.93.60) ALPHA; priority=HIGH
6787 * dpkg doesn't think packages have `disappeared' if you install
6788 several packages at once. (later reported as Bug#1132.)
6790 * usage error messages tidied up.
6792 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 16 Jul 1995 17:56:56 +0100
6794 dpkg (0.93.59) ALPHA; priority=HIGH
6796 * dpkg doesn't break maintainer scripts &c if package `foo' exists
6797 when processing package `foobar'. (Related to Bug#1101.)
6799 * dpkg implements `disappear' functionality.
6800 * dpkg/dselect remove dead entries from /var/lib/dpkg/status.
6802 * dpkg --list now sorted correctly and output somewhat improved.
6803 * some debugging messages moved from dbg_stupidlyverbose to dbg_scripts.
6804 * dpkg prints `Removing foo' message even if foo is not configured.
6805 * dpkg only prints `serious warning: files list file ... missing'
6806 once for each package.
6808 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 16 Jul 1995 02:32:11 +0100
6810 dpkg (0.93.58) ALPHA; priority=HIGH
6812 * dpkg should write out status even for packages which it has only
6813 encountered in the `available' file so far.
6815 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 14 Jul 1995 20:19:21 +0100
6817 dpkg (0.93.57) ALPHA; priority=LOW
6819 * dpkg does chroot when running maintainer scripts (--instdir
6820 should work right now, though I haven't been able to test it).
6822 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 14 Jul 1995 01:32:30 +0100
6824 dpkg (0.93.56) ALPHA; priority=HIGH
6826 * dpkg can now overwrite symlinks to directories, and will
6827 do correct handling of symlinks to plain files.
6828 * dpkg should not replace any directory with a symlink.
6830 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 13 Jul 1995 02:43:36 +0100
6832 dpkg (0.93.55) ALPHA; priority=MEDIUM
6834 * dpkg can now extract hardlinks.
6835 * dpkg configuration/removal works in the presence of dependency cycles.
6836 * dpkg should no longer fail an assertion at processarc.c:193.
6838 -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 12 Jul 1995 01:34:44 +0100
6840 dpkg (0.93.54) ALPHA; priority=MEDIUM
6842 * dpkg and dselect no longer throw away all Class and Section
6843 information in /var/lib/dpkg/available. (Oops.)
6844 * dpkg --refuse-<something> now works (this broke some dselect
6845 method scripts' attempts to use --refuse-downgrade).
6846 * dpkg --audit and --list implemented.
6848 -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 10 Jul 1995 00:35:13 +0100
6850 dpkg (0.93.53) ALPHA; priority=LOW
6852 * dpkg --install/--unpack only skips on-hold packages with --auto.
6853 * dpkg doesn't fclose() the --fsys-tarfile pipe twice.
6854 * dpkg error handling and reporting cleaned up.
6855 * dpkg now lists any failed packages/files just before exiting.
6857 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 9 Jul 1995 16:31:36 +0100
6859 dpkg (0.93.52) ALPHA; priority=MEDIUM
6861 * dpkg won't segfault due to missing (Package_)Revision fields.
6862 * dpkg --search works.
6863 * dpkg will set execute permissions on scripts if necessary.
6864 * dpkg prints filenames in --unpack and --install.
6866 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 8 Jul 1995 12:41:39 +0100
6868 dpkg (0.93.51) ALPHA; priority=HIGH
6870 * dpkg --status and --listfiles now work.
6872 * dpkg --remove --auto won't try to remove everything (!)
6873 * dpkg --unpack doesn't coredump after unpacking the first package.
6874 * dpkg won't fail an assertion if it bombs out of --configure
6875 or --remove because of too many errors.
6877 * Support for `Essential' in dpkg (not yet in dselect).
6878 * `available' (Packages) file class and section override those
6879 from package control files.
6880 * `Essential: yes' added to control file.
6882 * Locking strategy changed, now uses flock (no more stale locks).
6883 * preinst now more helpful about conffiles upgrade problem.
6885 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 8 Jul 1995 01:15:26 +0100
6887 dpkg (0.93.50) ALPHA
6889 * C dpkg now in service.
6891 * dselect now installs in /usr/bin instead of /usr/sbin.
6892 * Improved `explanation of display' help and changed HSOC to EIOW.
6893 * dselect goes back to top of info display when you move the
6896 * Added <sys/types.h> to md5sum/md5.c, for the benefit of FreeBSD.
6897 * --admindir doesn't append `var/lib/dpkg' to its argument.
6899 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 19 May 1995 21:03:08 +0100
6901 dpkg (0.93.42.3) BETA; priority=LOW
6903 * Rebuilt using ncurses 1.9.2c-0.
6904 * Silenced `subcritical error' message if errno == ENOENT.
6906 -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 12 Jun 1995 13:09:24 +0100
6908 dpkg (0.93.42.2) BETA; priority=HIGH
6910 * install-info --remove properly removes multi-line entries.
6911 * Slightly changed ^L redraw code in dselect package list.
6913 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 10 Jun 1995 14:06:01 +0100
6915 dpkg (0.93.42.1) BETA; priority=HIGH esp. for new installations
6917 * update-rc.d default no longer adds K entries in runlevels 2345.
6919 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 6 Jun 1995 18:56:23 +0100
6921 dpkg (0.93.42) BETA; priority=LOW; HIGH for dselect users
6923 * Fix unitialised variable reference bug in dselect (#890).
6924 * Fix problem with wordwrapping package and method descriptions.
6925 * Create /var/lib/dpkg/methods/mnt.
6927 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 19 May 1995 21:03:08 +0100
6929 dpkg (0.93.41) BETA; priority=LOW
6931 * Create /var/lib/dpkg/methods.
6932 * dpkg.pl noisily ignores --skip-same-version rather than barfing.
6934 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 16 May 1995 13:28:27 +0100
6936 dpkg (0.93.40) BETA; priority=LOW
6938 * dselect's subprogram failure message made to stand out more.
6940 * When switching out of curses, always move the cursor to the
6941 bottom right corner of the screen.
6943 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 16 May 1995 01:03:38 +0100
6945 dpkg (0.93.39) BETA; priority=LOW
6948 - allow you to select and configure an installation method;
6949 - invoke installation method scripts to update the available file
6950 and unpack packages;
6951 - invoke dpkg to configure and remove packages.
6952 There are no installation methods available yet.
6954 * Search feature in dselect works (it was purely an ncurses bug).
6956 * dpkg-*.nondebbin.tar.gz now available (built by debian.rules).
6958 * The target directory for dpkg-deb --extract (also available as
6959 dpkg --extract) is no longer optional. dpkg-deb suggests the use
6960 of dpkg --install if you omit it.
6962 * Added <errno.h> to lib/lock.c and fixed ref. to `byte' in
6963 md5sum/md5.c, for portability to Solaris 2.
6965 * Rebuilt `configure' and `config.h.in' using autoconf 2.3.
6966 * Revised function attribute support checking in configure script.
6967 * Removed obsolete `dselect.pl' from scripts directory.
6968 * New option --licence on all the C programs.
6970 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 14 May 1995 18:05:38 +0100
6972 dpkg (0.93.38) BETA; priority=MEDIUM
6974 * Version number comparisons (in dpkg and dselect) now >= <=
6975 as documented (Bug#831; thanks to Christian Linhart).
6977 * dselect now has a non-superuser readonly mode.
6978 * dselect doesn't pop up unsatisfied `Optional's when quitting.
6979 * `unable to delete saved old file' message fixed dpkg_tmp to dpkg-tmp.
6981 * Made dpkg convert `revision' to `package_revision' when reading
6982 (eg) the `status' file. libdpkg.a has `revision' as a synonym
6983 for `package_revision' and writes the former.
6985 * Major improvements and many changes to C option parsing, database
6986 management, error handling, Makefiles &c to support dpkg.
6987 * dpkg-deb should now work if sizeof(void*) < sizeof(void(*)()).
6989 -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 24 Apr 1995 12:34:39 +0100
6991 dpkg (0.93.37) BETA; priority=LOW (MEDIUM for dselect users)
6993 * Fixed segfault if no description available (Bug#735);
6994 thanks to Peter Tobias for the bug report.
6995 * Fixed other assorted minor bugs in description displays.
6997 * Changed dpkg-deb --info short option from -i to -I, to make
6998 it unique across dpkg and dpkg-deb (-i still works with
6999 dpkg-deb for backwards compatibility).
7001 * Produce more sensible error when main package list is empty.
7003 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 7 Apr 1995 02:24:55 +0100
7005 dpkg (0.93.36) BETA; priority=LOW (MEDIUM for dselect users)
7007 * All the C code (including dselect) updated to support `provides'
7009 * Revamped dselect's related package selection/deselection
7011 * Everything can now handle arbitrary `class' values (as well
7012 as the predefined ones which we understand and can interpret).
7013 * Fixed bug that prevented display update when moving down a small
7014 recursive package list in dselect.
7015 * Column heading characters corrected from `SHOC' to `HSOC'.
7017 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 6 Apr 1995 12:48:13 +0100
7019 dpkg (0.93.35) BETA; priority=MEDIUM
7021 * Preserve ownerships and permissions on configuration files.
7022 * Fix bug in conffile updating that could leave a hardlink
7023 <foo>.dpkg-new to the conffile <foo>.
7025 * Improved dselect's package list help messages.
7026 * Highlight now moves on after (de)selecting just one package.
7027 * Better algorithm for scrolling up/down when moving highlight.
7028 * Fixed bug in display of `preformatted' extended Description lines.
7029 (dselect is still ALPHA, but is fairly stable.)
7031 * Improved dpkg's message when configuring a package that doesn't
7032 exist, and when selecting or skipping a package that isn't
7033 currently selected (during unpack processing).
7035 * Description in control file expanded.
7037 * Scroll back to top when changing what is in the `info' area.
7039 dpkg (0.93.34) BETA; priority=LOW (HIGH for dselect users)
7041 * dselect: Fixed bug which caused a coredump if you exited the
7042 package list if you'd made any changes. Ouch !
7044 * dselect: Improved selection algorithm to show fewer extraneous
7045 packages; improved display for unavailable packages.
7047 * dpkg: Improved progress messages during unpacking somewhat.
7049 dpkg (0.93.33) BETA; priority=LOW (HIGH for dselect users)
7051 * dselect now has a main menu.
7053 * Fixed nasty uninitialised data bug in dselect.
7055 * dselect now locks and unlocks the packages database.
7057 Mon, 27 Mar 1995 03:30:51 BST Ian Jackson <iwj10@cus.cam.ac.uk>
7059 * dpkg (0.93.32): Alpha dselect released and installed in
7061 * dpkg (0.93.32): Many portability enhancements: should now
7062 compile using GCC 2.6.3, and dpkg-deb should
7063 compile better on non-Linux systems.
7064 * dpkg (0.93.32): dpkg will not loop if its stdin disappears
7065 and it needs to prompt.
7066 * dpkg (0.93.32): Fixed removal dependency error to show
7067 correct package (Bug #648).
7068 * dpkg (0.93.32): Tidied up copyright notices.
7069 * dpkg (0.93.32): First draft of update-rc.d manpage, not yet
7070 installed in /usr/man.
7071 * dpkg (0.93.32): Changes to top-level Makefile.in to improve
7073 * dpkg (0.93.32): Improved Makefile `clean' and `distclean'
7075 * dpkg (0.93.32): Deleted irrelevant `t.c' from lib and
7076 dselect directories.
7077 * dpkg (0.93.32): Added vercmp.c with version comparison code.
7078 * dpkg (0.93.32): varbufextend message changed - varbufs not
7079 just for input buffers.
7080 * dpkg (0.93.32): varbuf has C++ member functions in header
7083 Changes in dpkg 0.93.31:
7085 * start-stop-daemon --pidfile now works (Bug#571).
7086 * Fixed dependency processing bugs which could require a rerun of
7087 dpkg --configure (Bug#566).
7088 * Fixed garbage output for `language' of control file in dpkg-deb --info.
7090 Changes in dpkg 0.93.30:
7092 * Added /usr/sbin/start-stop-daemon.
7094 Changes in dpkg 0.93.09:
7096 * Made postinst scripts really be run when dpkg --purge used.
7097 * Added new --force-extractfail option - VERY DANGEROUS.
7099 Changes in dpkg 0.93.28:
7101 * Removed undef of 0x_p21 in read_database_file, which caused the
7102 the whole status database to become trashed when any update files
7104 * Make infinite-loop prevention and cycle detection work.
7105 * Made findbreakcycle work (ie, break properly when cycle detected).
7106 * New script, update-rc.d, to update links /etc/rc?.d/[KS]??*.
7107 * dpkg.pl now sets the umask to 022.
7108 * Cosmetic error message fix to dpkg-deb.
7109 * Deleted OLD directory altogether.
7110 * Improved error-trapping in top-level Makefile loops.
7112 Changes in dpkg 0.93.27:
7114 * Make version number specifications in Depends &c work.
7115 * Added AC_PROG_CXX to autoconf.in for dselect.
7116 * Changed myopt.h not to have cipaction field in cmdinfo (this was
7117 specially for dpkg-deb) - now we have a generic void*.
7118 * Renamed `class' member of `pkginfoperfile' to `clas' [sic].
7119 * Much work in `dselect' subdirectory.
7120 * Deleted executables, objects and libraries from OLD tree !
7121 * Minor changes to various copyright notices and top-of-file comments.
7122 * Don't install nasty Perl dselectish thing as /usr/bin/dselect.
7124 Changes in dpkg 0.93.26:
7126 * Added --no-also-select instead of not auto-selecting on --unpack
7127 but doing so on --install; removed --force-unpack-any.
7129 Changes in dpkg 0.93.25:
7131 * Fixed duplicate output (failure to flush before fork) bug.
7132 * More clarification of md5sum.c copyright.
7133 * Corrected typo in ChangeLog in 0.93.24 source package.
7135 Changes in dpkg 0.93.24:
7137 * dpkg could copy conffiles info from one package to another. Aargh.
7139 * dpkg failed to initialise status if you tried to remove or
7140 configure a nonexistent package. Bug #419.
7141 * install-info now handles START-INFO-DIR-ENTRY entries like:
7142 * Gdb:: The GNU debugger.
7143 Previously it would only accept (Bug #407):
7144 * Gdb: (gdb). The GNU debugger.
7145 * When installing a new foo.info[.gz], install-info now replaces
7146 * Foo: (foo.info). The Gnoo Foo.
7147 as well as just * Foo: (foo). ...
7148 * Moved option parsing out of dpkg-deb into libdpkg.
7149 * Assorted minor source code rearrangements.
7150 * Fixed assorted copyright notices, clarified md5sum copyright.
7151 * Corrected typo in 0.93.23 source package's ChangeLog.
7153 Changes in dpkg 0.93.23:
7155 * `dpkg-deb' --build now does a syntax check on the control file.
7156 * `dselect' is now no longer called `debian', spurious copy removed
7157 from package top-level source directory.
7158 * C control information parsing complete and somewhat tested.
7159 * Moved `global' include files into $(srcdir)/include from ../lib,
7160 added some files to the lib Makefile, and arranged for pop_cleanup().
7162 Changes in dpkg 0.93.22:
7164 * Fixed bug which caused dpkg to see failures of md5sum where there
7165 were none (would also have caused dpkg to miss a real failure).
7166 * Fixed failure to update some `status' database fields.
7168 Changes in dpkg 0.93.21:
7170 * Fixed error-handling bug which could corrupt database.
7172 Changes in dpkg 0.93.20:
7174 * Fixed bug which ran old (/var/adm/dpkg) postinst scripts.
7175 * Fixed dpkg usage message which claimed -i => both --install & --info.
7176 * Use Colin Plumb's MD5 code - faster, and better copyright.
7177 * Manpages: dpkg-deb(8), deb-control(5), deb(5) - thanks to Raul
7178 Deluth Miller. Also, an xfig picture of some C program innards.
7180 Changes in dpkg 0.93.19:
7182 * Don't delete the `list' file from the dpkg database.
7183 * Fixed various bugs in the conffile handling.
7184 * Conffiles that are symlinks will now be treated as if the
7185 `dereferenced' name of the file was listed in conffiles. This means
7186 that /etc/foo -> /usr/etc/foo will cause all conffile updates of
7187 /etc/foo to create /usr/etc/foo.dpkg-tmp &c instead. However, the
7188 link will be removed if --purge is used to delete all the conffiles.
7189 * When doing a new installation, or when updating a conffile that
7190 wasn't listed as a conffile in the old version of the package, don't
7191 do any prompting but just install the version from the archive.
7192 * Corrected error message if exec of dpkg --vextract failed
7193 and --instroot or --root specified.
7194 * Added new --force-unpack-any option.
7195 * Extra newline after --status output.
7196 * Added -W options to CFLAGS.
7197 * Fixed mistake in previous ChangeLog entry.
7199 Changes in dpkg 0.93.18:
7201 * Fixed invocation of dpkg-deb --vextract if --root or --instdir
7203 * Create /var/lib/dpkg/updates.
7205 Changes in dpkg 0.93.17:
7207 * install-info --remove exits with status 0 if it doesn't find the
7208 thing to remove, instead of status 1.
7209 * Error handling functions have __attribute__((format...)) if GCC.
7210 * push_cleanup its arg takes void **argv instead of char **argv.
7211 * Top-level Makefile.in has set -e before `for' loops.
7212 * dpkg-deb --info not-an-existing-file produces fewer error messages.
7214 Changes in dpkg 0.93.16:
7216 * Made --root= option really extract to $instroot instead of `/'.
7217 * install-info clears the 0444 bits in its umask.
7218 * Fixed a few database handling bugs which cause dpkg always to fail,
7219 and usually to corrupt the status database in various ways.
7220 * dpkg-deb completely rewritten, now doesn't tinker with
7221 /var/{adm,lib}/dpkg. Should be faster.
7222 * Directory structure and Makefiles in source package reorganised.
7224 Changes in dpkg 0.93.15:
7226 * Added `debian' (dselect), still very primitive.
7227 * Database format changed, and moved from /var/adm to /var/lib.
7228 * Added dpkg --avail mode, --list, --status and --search.
7229 * Set of dpkg => dpkg-deb pass-through operations changed (but
7230 dpkg-deb not yet updated).
7231 * Added --root, --admindir and --instdir, as well as --isok &c.
7232 * Moved much stuff into /usr/lib/dpkg-lib.pl, rewritten status
7234 * Put packages in `purge' state even if `deinstall' requested if
7235 they have no postrm and no conffiles.
7236 * Version number comparisons fixed.
7237 * insert-version.pl now installes lib.pl filename too.
7238 * Strip trailing slashes when reading files from file lists.
7240 Changes in dpkg 0.93.14:
7242 * Fixed parsing of DEPENDS &c fields with trailing whitespace.
7243 * postinst now fixes up broken ispell.control file.
7244 * Cyclic dependency/multiple package removal processing: don't consider
7245 packages we've just removed when looking for a reason not to go ahead.
7246 * Added call to postinst with `purge' argument for expunging old
7247 configuration etc. that aren't listed in conffiles.
7249 Changes in dpkg 0.93.13:
7251 * sub S_ISREG defined in dpkg.pl.
7252 * Checking of DEPENDS &c fields was too lax, causing an internal error
7253 if you fed it certain kinds of broken control file.
7254 * Fixed misleading message from bogus installationstatus call.
7255 * New -u and -U options to dpkg-deb which don't unpack the /DEBIAN
7256 directory, and use these in dpkg.pl; clean up /DEBIAN in postinst.
7258 Changes in dpkg 0.93.12:
7260 * No longer needs *.ph files, since these appear to be broken.
7261 * Postinst fixes up *.control files with curly brackets.
7262 * embryo of dselect.
7264 Changes in dpkg 0.93.11:
7266 * New --ignore-depends option.
7267 * This ChangeLog changed format here.
7269 Wed Nov 30 15:38:21 GMT 1994 Ian Jackson <iwj10@cus.cam.ac.uk>
7271 * dpkg 0.93.11 released.
7273 * conffile updating fixed.
7275 * Message `updgrade' in dpkg changed to `replace'.
7277 * install-info now copes with multi-line entries.
7279 * version numbers now done automatically in dpkg and install-info.
7281 * more debugging around conffiles updates.
7283 * *.hash files not deleted so soon.
7285 * adds brand new packages to status array so we can install them.
7287 * postinst does h2ph for {sys,linux}/{stat,types}.ph if required.
7289 Mon Nov 28 02:00:13 GMT 1994 Ian Jackson <iwj10@cus.cam.ac.uk>
7291 * dpkg 0.93.10 released.
7293 * dpkg.pl completely rewritten.
7295 * dpkg-deb: removed dabase-processing and --install option.
7297 * Makefiles reworked, debian.rules added.
7299 * Don't install anything in /usr/doc/examples.
7301 * dpkg-*.deb contains /usr/bin/dpkg-deb.dist, fixed up by postinst.
7303 Thu Oct 20 13:22:20 1994 Ian Murdock (imurdock@debra.debian.org)
7305 * dpkg 0.93.9 released.
7307 * dpkg.pl: Use $argument, not $package, with `--build'.
7308 Make sure that saved postinst scripts are executable.
7310 Tue Oct 18 09:40:57 1994 Ian Murdock (imurdock@debra.debian.org)
7312 * dpkg 0.93.8 released.
7314 * deb/remove.c (pkg_remove): Do not report an error from rmdir ()
7315 when `errno' is ENOTEMPTY (Directory not empty), because in this
7316 case we have found the highest-level directory in the package and
7317 are ready to exit the loop (i.e., it is a normal occurrence).
7319 Mon Oct 17 10:44:32 1994 Ian Murdock (imurdock@debra.debian.org)
7321 * Makefile.in: Adapted all Makefiles to the GNU Coding Standards.
7323 * deb/remove.c (pkg_remove): Make sure that parent directories are
7324 removed LAST! This will result in complete removal of packages
7325 when --remove is called. dpkg 0.93.7 (and earlier) had problems
7326 with this because it tried to remove directories in order, which
7327 will work most of the time, but not necessarily all of the time.
7329 * deb/list.c (pkg_list): Output is sorted by package name.
7331 Tue Oct 4 12:27:10 1994 Ian Murdock (imurdock@debra.debian.org)
7333 * deb/contents.c (pkg_contents): When a list file cannot be
7334 opened, silently fail and let the front-end explain the problem.
7336 * deb/util.c (return_info): When a control file cannot be opened,
7337 silently fail and let the front-end explain the problem.
7339 * deb/search.c (pkg_search): Exit 0 if the regular expression is
7340 matched and 1 if it is not.
7342 Mon Oct 3 18:38:53 1994 Ian Murdock (imurdock@debra.debian.org)
7344 * dpkg.pl: New file. Replaces dpkg.sh.
7346 * deb/Makefile.in: Renamed `dpkg-util.deb' to `dpkg-deb'.
7348 * deb/build.c (pkg_build): `--build' is less verbose, instead
7349 letting the front-end add verbosity where appropriate.
7351 * deb/install.c (pkg_install): Ditto.
7353 * deb/remove.c (pkg_remove): Ditto.
7355 * deb/search.c (pkg_search): Ditto.
7357 * deb/describe.c (pkg_describe): `--describe' is less verbose,
7358 instead letting the front-end add verbosity where appropriate.
7359 The ``Description:'' label has been removed.
7361 * deb/version.c (pkg_version): `--version' is less verbose,
7362 instead letting the front-end add verbosity where appropriate.
7363 The ``Version:'' label has been removed, as has the maintainer
7366 Mon Sep 12 14:22:04 1994 Ian Murdock (imurdock@debra.debian.org)
7368 * deb/version.c (pkg_version): `--version' now reports the
7369 version number of dpkg if no argument is specified.
7371 Thu Sep 1 13:31:37 1994 Ian Murdock (imurdock@debra.debian.org)
7373 * dpkg 0.93.7 released.
7375 * deb/build.c (pkg_build): check status and exit if non-zero.
7377 * deb/contents.c (pkg_contents): ditto.
7379 * deb/install.c (archive_extract): ditto.
7381 Thu Sep 1 13:20:08 1994 Ian Murdock (imurdock@debra.debian.org)
7383 * deb/version.c (pkg_version): indent to the same point as
7386 Thu Sep 1 12:21:11 1994 Ian Murdock (imurdock@debra.debian.org)
7388 * Makefile.in (dist): added debian.rules binary, source and
7389 dist targets to make final distribution easier to make.
7390 (install): install programs to /usr/bin.
7392 * deb/Makefile.in (install): install programs to /usr/bin.
7394 * deb/list.c (pkg_list): enforce a maximum limit of ten characters
7395 for the package name in the output.
7396 (pkg_list): left-justify the version number to make it easier for
7397 the front-end to parse the output.
7398 (pkg_list): replace first '\n' character in packages[n].description
7401 * deb/install.c (archive_extract): use the `p' option to `tar' to
7402 ensure that permissions are preserved.
7404 Sat Aug 27 09:53:37 1994 Ian Murdock (imurdock@debra.debian.org)
7406 * dpkg 0.93.6 released.
7408 * deb/util.c (return_info): only unlink CONTROL if ARCHIVE_FLAG is
7411 Fri Aug 26 15:38:22 1994 Ian Murdock (imurdock@debra.debian.org)
7413 * dpkg 0.93.5 released.
7415 * deb/contents.c (pkg_contents): merged function archive_contents
7416 into function pkg_contents.
7418 * deb/contents.c (pkg_contents): use lstat (rather than stat) so
7419 that symbolic links are recognized.
7420 (pkg_contents): print the usual `<path> -> <link_to>' now that we
7421 recognize symbolic links.
7423 * deb/util.c (return_info): create a FIFO to pipe the needed
7424 information to the ``formatter'' rather than creating a directory
7425 in /tmp for the package information, which is what we used to do.
7427 Thu Aug 25 11:46:27 1994 Ian Murdock (imurdock@debra.debian.org)
7429 * lib/fake-ls.c (mk_date_string): return a pointer to malloc'ed
7431 (mk_mode_string): ditto.
7433 * dpkg.sh: make sure the control information is extracted to a
7434 uniquely-named temporary directory during package installation.
7436 * dpkg.sh: execute the pre- and post-removal scripts during
7439 * dpkg.sh: exit immediately if dpkg-util.deb reports failure.
7441 * deb/install.c (pkg_control): make sure that `package' exists and
7442 is a Debian archive before doing anything.
7444 * deb/install.c (pkg_extract): make sure that `package' exists and
7445 is a Debian archive before doing anything.
7447 * deb/install.c (pkg_install): unlink `extract_output' when done.
7449 * deb/remove.c (pkg_remove): use lstat (rather than stat) so that
7450 --remove does not get confused and think that a symbolic link to a
7451 directory is actually a directory, which results in the symbolic
7452 link never being removed at all.
7454 ChangeLog begins Thu Aug 25 11:46:27 1994 for dpkg 0.93.5.