dpkg (1.13.9) unstable; urgency=low
[dpkg.git] / ChangeLog
blobfd1c9254e4f6a0f237450e1104558f0d1d699136
1 2005-06-12  Scott James Remnant  <scott@netsplit.com>
3         * configure.ac: Release 1.13.9.
5 2005-06-11  Scott James Remnant  <scott@netsplit.com>
7         * scripts/dpkg-source.pl: Add .arch-inventory to default diff
8         ignore regexp.
10         * scripts/dpkg-source.pl: If two arguments are given to dpkg-source,
11         use the second to set $newdirectory rather than creating it ourselves.
12         It's an error to specify an output directory that exists.
13         (usageversion): Document optional second argument to dpkg-source -x.
14         
15         * man/C/dpkg-source.1: Document optional second argument.
17 2005-06-11  Matt Kraai  <kraai@alumni.cmu.edu>,
18             Scott James Remnant  <scott@netsplit.com>
20         * scripts/dpkg-source.pl: Move the .orig directory out of the way
21         during the duration of the script, moving it back again afterwards.
23 2005-06-11  Brendan O'Dea  <bod@debian.org>
25         Support unpacking of "Wig And Pen" (Format: 2.0) source packages.
27         * scripts/dpkg-source.pl: When unpacking a source package with a
28         2.x format, allow multiple orig tarballs and allow the diff to be
29         replaced by a debian.tar.  Additional orig tarballs are named
30         "*.orig-xxx.tar" where the "xxx" is the name of the sub-directory
31         of the source where they should be unpacked.  The debian.tar is
32         unpacked as the debian sub-directory of the source and may contain
33         binaries (which the diff can't) and patches (in a patches
34         sub-directory) which are automatically applied during unpacking.
35         (checkdiff): Move diff checking code into sub-routine as we call
36         it multiple times now.  Allow uncompressed patches, cruft
37         at the start of a patcha and be less strict about patched directory
38         name (including allowing /dev/null).  Skip "Index:" header generated
39         by CVS.
40         (forkgzipread): Run either gunzip or bunzip2 depending on the
41         filename, allowing us to support .tar.bz2, and .diff.bz2.
42         (handleformat): Compare a range of major versions, as we now
43         support both 1.0 and 2.0 formats.
44         (def_dscformat): Generate 1.0 format packages by default.
45         (setfile): Removed unused function.
46         * debian/control ([dpkg-dev]Recommends): Recommend bzip2, it's
47         not an absolute dependency until bz2 packages are supported by
48         katie and policy.
50 2005-06-11  Scott James Remnant  <scott@netsplit.com>
52         * m4/libs.m4 (DPKG_LIB_ZLIB, DPKG_LIB_BZ2): Rewrite to match the
53         way --with-selinux works.  Actually check whether the library and
54         header files we need are available, using the configure option to
55         determine whether the tests should be skipped (=no) or cause a
56         hard failure if not present (=yes or =static).
57         * lib/Makefile.am (INCLUDES): Remove ZLIB_CFLAGS and BZ2_CFLAGS as
58         we don't set these to anything in configure anymore (WITH_ZLIB and
59         WITH_BZ2 are set in config.h) and users would set CFLAGS itself to
60         supply missing -I arguments.
61         * dpkg-deb/Makefile.am (INCLUDES): Remove ZLIB_CFLAGS and BZ2_CLFAGS.
62         * src/Makefile.am (dpkg_query_LDADD): Remove ZLIB_LIBS and CFLAGS_LIBS
63         as dpkg-query doesn't use them.
65         * m4/libs.m4 (DPKG_LIB_SELINUX): Add new test for the selinux
66         library and header.  This works a little differently from the
67         current --with-{zlib,bz2} tests in that if no option is given it
68         still tries to enable it if possible.  If "yes" or "static" is given,
69         that forces the requirement (configure fails if not present), if "no"
70         is given the tests are skipped.
71         * configure.ac: Include selinux test.
73 2005-06-11  Manoj Srivastava  <srivasta@debian.org>
75         * lib/star.c (ExtractFile, SetModes): If dpkg is compiled with
76         SELinux, test once whether SELinux is enabled on the system.  If it
77         is enabled, find out the security context of the file from its path
78         and either set what we think it should be or let the default security
79         context for the process be applied.
80         * debian/control (Build-Depends): Add libselinux1-dev as a build
81         dependency. 
82         * debian/rules: Compile-in support for selinux and link statically.
83         * dpkg-deb/Makefile.am (dpkg_deb_LDADD): Link dpkg-deb with
84         SELINUX_LIBS.
85         * src/Makefile.am (dpkg_LDADD): Link dpkg with SELINUX_LIBS.
87 2005-06-10  Scott James Remnant  <scott@netsplit.com>
89         * lib/dbmodify.c (log_message): New function that writes a
90         formatted string to the log file, opening it if it hasn't been
91         yet.  In case of error, we print it and don't try to open the
92         file again.
93         (modstatdb_note): Replace log writing code with call to new
94         log_message function.
95         * src/configure.c (promptconfaction): Replace log writing code
96         with call to log_message function.
97         * src/help.c (log_action): Simplify to just a log_message call.
98         * lib/dpkg-db.h: Remove extern definition of log_pipes, replace
99         with log_message function.
100         * src/main.c (cmdinfos): Change --log argument action to just
101         storing the string in the log_file variable.
102         (setfile): Remove function.
103         * lib/myopt.c (myfileopt): strdup the string option argument
104         before storing it, otherwise it just gets overwritten by the next
105         line.
107         * configure.ac: Bump version to 1.13.9~.
109         * configure.ac: Release 1.13.8.
111         * lib/parse.c (parsedb): Check whether the file size is greater
112         than zero bytes in size before trying to mmap or malloc it, if it
113         isn't don't process the file.
115 2005-06-09  Scott James Remnant  <scott@netsplit.com>
117         * configure.ac: Bump version to 1.13.8~.
119         * configure.ac: Release 1.13.7.
121         * src/main.c (setfile): Make inability to open the log file a
122         warning only, rather than bailing out; and if not running as root,
123         don't even show the warning.
125 2005-06-09  Colin Watson  <cjwatson@ubuntu.com>
127         * man/C/dpkg-architecture.1: Include example debian/rules snippet
128         to support older versions of dpkg-dev after updating to use new
129         variables.
131 2005-06-09  Scott James Remnant  <scott@netsplit.com>
133         * man/C/dpkg-architecture.1: Clean up examples using .nf and .fi
134         to produce a pre-like effect.  Indent the examples a little.
136 2005-06-06  Scott James Remnant  <scott@netsplit.com>
138         * configure.ac: Bump version to 1.13.7~.
140         * debian/dpkg.install: Don't use dh_install to copy the logrotate
141         file because it can't rename things.
142         * debian/rules (binary-arch): Install and rename manually instead.
143         * configure.ac: Release 1.13.6 (Brown Paper Bag).
145         * configure.ac: Bump version to 1.13.6~.
147         * configure.ac: Release 1.13.5.
149 2005-06-06  Philippe Batailler  <philippe.batailler@free.fr>
151         * man/fr/*: All french man pages updated
153 2005-06-06  Christian Perrier  <bubulle@debian.org>
155         * man/pt_BR/update-alternatives.8: Syntax error corrected.
157 2005-06-06  Kevin Ryde  <user42@zip.com.au>
159         * man/sv/dpkg-deb.1: Syntax error corrected.
160         * man/es/dpkg-scanpackages.1: Syntax error corrected.
162 2005-06-06  Scott James Remnant  <scott@netsplit.com>
164         * src/configure.c (promptconfaction): Record user's decision about
165         a conffile in the log file as either "install" or "keep".
166         * man/C/dpkg.1: Document the conffile output that'll appear in the
167         log file.
169         * debian/dpkg.cfg: Create a log-file by default.
170         * debian/dpkg.logrotate: Include a logrotate file for the log.
171         * debian/dpkg.install: Install the debian/dpkg.logrotate file as
172         /etc/logrotate.d/dpkg
173         * Makefile.am (EXTRA_DIST): Ship the debian/dpkg.logrotate file.
174         * debian/dpkg.preinst (create_logfile): Create a log file with
175         the default permissions.
176         * debian/dpkg.postrm (remove_logfile): Remove log files when dpkg
177         is purged (not that it will happen, but it pays to be compliant).
178         
179         * debian/dpkg.preinst (confirm_dselect_split): Only check process
180         list for dselect if ps is installed; this should be the case during
181         upgrades anyway.
183         * debian/dpkg.prerm (undivert_md5sum): Remove md5sum diversion
184         when the package is removed or downgraded to a version where
185         we supplied our own md5sum.
186         * debian/dpkg.postinst (divert_md5sum): Divert md5sum as long as
187         there isn't one, don't explicitly check for the textutils file
188         being there as it may be installed afterwards.
190 2005-05-26  Scott James Remnant  <scott@netsplit.com>
192         * debian/control (Maintainer): I'm going to officially take blame for
193         this package Ian-style, we'll keep bugs going to the list using the
194         PTS instead.
196 2005-05-25  Scott James Remnant  <scott@netsplit.com>
198         * scripts/dpkg-source.pl: Recognise Enhances in the package's
199         section of control files.
201 2005-05-23  Scott James Remnant  <scott@netsplit.com>
203         * cputable: Change GNU name of the i386 CPU to i486, to reflect
204         reality.
205         * debian/archtable: Update first field of i386 and hurd-i386 to
206         use i486 as the CPU name.
208 2005-04-03  Scott James Remnant  <scott@netsplit.com>
210         * scripts/dpkg-architecture.pl (gnu_to_debian): Check cputable
211         and ostable in file order.
212         * ostable: Place hurd at the bottom so it's checked last.
214 2005-03-29  Scott James Remnant  <scott@netsplit.com>
216         * configure.ac: Bump version to 1.13.5~.
218         * configure.ac: Release 1.13.4.
220 2005-03-28  Scott James Remnant  <scott@netsplit.com>
222         * scripts/dpkg-architecture.pl: Catch -L and list every possible
223         os and cpu combination.
224         (usageversion): Add -L option to description.
225         (read_cputable): Add in-order list of cpu values to @cpu array.
226         (read_ostable): Add in-order list of os values to @os array.
227         * man/C/dpkg-architecture.1: Document -L option.
229 2005-03-27  Scott James Remnant  <scott@netsplit.com>
231         * m4/arch.m4 (DPKG_OS_TYPE): Allow a vendor to appear at the start
232         of $os_type.
233         * scripts/dpkg-architecture.pl (gnu_to_debian): Don't strip the
234         vendor out, just allow it to appear at the start of the string.
236 2005-03-21  Scott James Remnant  <scott@netsplit.com>
238         * configure.ac: Bump version to 1.13.4~.
240         * configure.ac: Release 1.13.3.
242         * scripts/controllib.pl (unknown): Output field name we have in
243         hand, rather than trying to look it up in a dictionary in which
244         it doesn't exist yet.
246         * scripts/changelog/debian.pl: Revert accidental half-patch that
247         turned the Maintainer field into a Changed-By field.
249 2005-03-21  Marc Dequènes  <duck@duckcorp.org>
251         * scripts/dpkg-gencontrol.pl: Fix filename regexp to allow '-'
252         in architecture names.
254 2005-03-20  Scott James Remnant  <scott@netsplit.com>
256         * scripts/dpkg-buildpackage.sh: Output "source changed by"
257         rather than "source maintainer is".
259         * man/C/dpkg.1: Document that --get-selections takes a package
260         name pattern.  Document format of file --set-selections takes.
262         * man/C/dpkg-source.1: Remove unnecessary references to policy
263         and non-existant packaging manual.  Refer to dpkg-shlibdeps(1)
264         for shlibs file format.  Will need to document changelog format
265         at some point.
266         * man/C/dselect.1: Remove unnecessary reference to policy, refer
267         other reference to the package by name.
268         * man/C/deb-old.5: Remove reference to non-existant packaging
269         manual.
270         * man/C/deb.5: Remove reference to non-existant packaging
271         manual, will have to document control contents better here later.
273         * man/C/dpkg.1: Fix typo (fileis -> file is).
275         * origins/debian: Remove trailing line.
277 2005-03-20  Mathias Weidner  <mathias@weidner.in-bad-schmiedeberg.de>
279         * scripts/dpkg-scansources.pl (getopt): Add (@) to prototype.
281 2005-03-20  Scott James Remnant  <scott@netsplit.com>
283         * man/C/update-alternatives.8: Document what the '+' and '*'
284         marked choices in --config output mean.
286         * src/main.c (usage): Make aptitude quoting consistent.
288         * man/C/dpkg-divert.8: Mention --truename alongside the comment
289         about what it does.
291         * src/main.c (printforhelp): Mention aptitude alongside dselect.
292         * dpkg-deb/main.c (usage): Mention aptitude alongside dselect.
294         * lib/ehandle.c (warningf): Add missing newline to end of format
295         string.
297         * man/C/update-alternatives.8: Harmonise names for arguments to
298         --install option.
300         * man/C/dpkg.1: Remove "medium-level" from dpkg's description,
301         it's somewhere between medium and low.  The fact it's a package
302         manager is sufficient description.
304         * src/query.c (listpackages): Create a second filtered list of
305         packages, sort that (rather than the complete list) and use that
306         when calling list1package.  This means we only expand to the
307         longest field in the result, not the database.  Hopefully the
308         speed gain of only sorting a filtered list outweights the slighty
309         extra computation time.
311 2005-03-18  Scott James Remnant  <scott@netsplit.com>
313         * configure.ac: Bump version to 1.13.3~.
315         * configure.ac: Release 1.13.2.
317         * src/query.c (getwidth): Return -1 if we're not on a tty.
318         (list1package): Take a package list as well, and if getwidth()
319         returns -1 determine the longest name, version and description
320         and use those for output.
321         (listpackages): Pass the package list and length to both
322         calls to list1package to allow them to go wide.
324         * lib/dbmodify.c (modstatdb_note): Every time we'd output a
325         status change to the status-fd, also output a log message to
326         the log-fd if we have one.
327         * lib/dpkg-db.h: Add definition of log_pipes.
328         * src/help.c (log_action): Write an action line to the log-fd.
329         * src/processarc.c (process_archive): Log installation and
330         upgrade actions.
331         * src/remove.c (removal_bulk_remove_configfiles): Log purge
332         action.
333         (deferred_remove) Log remove action.
334         * src/main.c (setfile): Take a filename, open it and add the
335         file descriptor to a list of pipes.
336         (cmdinfos): Add log command-line option that takes a filename
337         and adds it to log_pipes.
338         (usage): Add --log=<filename> usage.
339         * man/C/dpkg.1: Document --log=filename.
340         * debian/dpkg.cfg: Include a commented-out log option.
342 2005-03-18  Peter van Dijk  <peter@dataloss.nl>
344         * lib/tarfn.c (TarExtractor): Only remove the last character
345         from directory names if it's a trailing slash.
347 2005-03-18  Scott James Remnant  <scott@netsplit.com>
349         * man/C/dpkg-divert.8: Add an EXAMPLES section giving the two
350         most common uses of dpkg-divert, for both add and remove.
352         * man/C/dpkg-architecture.1: Update (should have done this with
353         the changes below, really).
355         * src/help.c (preexecscript): The first member of argv is always
356         NULL because it's filled in by the return value of this function,
357         so increment argv first when debug-outputting maintainer script
358         arguments.
360         * utils/md5sum.c: Remove file.
361         * lib/dpkg.h (MD5SUM): Remove definition of md5sum program name.
362         * utils/Makefile.am (bin_PROGRAMS): Remove md5sum.
363         * man/C/md5sum.1: Remove manual page.
364         * man/C/Makefile.am (dist_man_MANS): Remove md5sum.1.
365         * man/de/md5sum.1: Remove manual page.
366         * man/de/Makefile.am (dist_man_MANS): Remove md5sum.1.
367         * man/es/md5sum.1: Remove manual page.
368         * man/es/Makefile.am (dist_man_MANS): Remove md5sum.1.
369         * man/ja/md5sum.1: Remove manual page.
370         * man/ja/Makefile.am (dist_man_MANS): Remove md5sum.1.
371         * man/sv/md5sum.1: Remove manual page.
372         * man/sv/Makefile.am (dist_man_MANS): Remove md5sum.1.
373         * debian/dpkg.postinst (divert_md5sum): Divert the version of
374         md5sum installed by textutils or coreutils to the place where we
375         used to put our copy, include its manual page.
376         * debian/control ([dpkg]Depends): Depend on coreutils, which has
377         always included md5sum, or the version of textutils that has.
378         * debian/dpkg.install: Remove md5sum-related files.
379         * debian/copyright: Remove mentions of utils/md5sum.c.
380         * debian/pseudo-tags: Remove md5sum tag; no point filing bugs on
381         a non-existant program.
383         * ostable (netbsd): Restore missing "*" on the end of the regex.
385         Take a further step towards having separate CPU and system names
386         instead of just a joined architecture name; in particular add
387         support to dpkg-architecture.
389         * cputable: Create new table of cpu names with canonical GNU
390         names and a regex to match against config.guess output.
391         * ostable: Create new table of operating system names with
392         canonical GNU names and a regex to match against config.guess
393         output.
394         * archtable: Move to debian directory.
395         * debian/archtable: Reduce to a simple set of architecture names
396         in Debian's sid distribution.
397         * scripts/dpkg-architecture.pl: Add support for split cputable
398         and ostable, including new DEB_*_ARCH_OS and DEB_*_ARCH_CPU
399         variables containing the Debian system and cpu names appropriately.
400         (usageversion): Remove list of known architectures, as we can't
401         easily compute this anymore (cputable * ostable).
402         (read_archtable): Removed function, we no longer touch archtable.
403         (read_cputable): Add function to parse cputable.
404         (read_ostable): Add function to parse ostable.
405         (split_debian): Add function to split a Debian "os-cpu" name.
406         (debian_to_gnu): Add function to split and look up the GNU names
407         for the Debian os and cpu, and return the joined GNU name.
408         (split_gnu): Add function to split a GNU triplet/quartet.
409         (gnu_to_debian): Add function to split and look up the Debian
410         names for the GNU os and cpu (by regex), and return the joined
411         Debian name.
412         (rewrite_gnu): Removed, replaced by regexes in the tables.
413         * m4/arch.m4 (DPKG_CPU_TYPE): Use awk to parse the new cputable
414         and define an ARCHITECTURE_CPU macro with the result.
415         (DPKG_OS_TYPE): Use awk to parse the new ostable and define an
416         ARCHITECTURE_OS macro with the result.
417         (DPKG_ARCHITECTURE): Simply join the os and cpu names together,
418         or omit the os name if "linux".
419         * Makefile.am (dist_pkgdata_DATA): Remove archtable, add
420         cputable and ostable instead.
421         (EXTRA_DIST): Add debian/archtable.
422         * debian/dpkg.install: Install debian/archtable in /usr/share/dpkg
423         for packages that still want it.
424         * debian/pseudo-tags: Replace mention of archtable.
426         * archtable: Add ppc64 for powerpc-linux.
427         * scripts/dpkg-architecture.pl (rewrite_gnu): Rewrite powerpc64
428         and ppc64 into powerpc64 for archtable.
430 2005-03-17  Scott James Remnant  <scott@netsplit.com>
432         * debian/dpkg.preinst (confirm_dselect_split): Check that dselect
433         is running before bitching; it's easy to do and will stop this
434         question more often than not.
436 2005-03-17  Scott James Remnant  <scott@ubuntu.com>,
437             Anthony Towns  <aj@azure.humbug.org.au>
439         * src/archives.c (tarobject): Detect when installing a file that
440         exists in a package that replaces the one being installed.  Leave
441         that on the disk and remove the file from the list for the package
442         being installed.
444 2005-03-16  Scott James Remnant  <scott@netsplit.com>
446         * lib/parsedump.h: Move definitions of fieldinfos and nicknames
447         arrays to the bottom of the file, to ensure we know the size of
448         the arrays we're declaring.
449         * lib/mlib.c (buffer_write): Cast unsigned char * to plain old
450         char * when calling sprintf.
452 2005-03-12  Frank S. Thomas  <frank@thomas-alfeld.de>
454         * man/C/dpkg-architecture.1: Correct typo (variales -> variables).
456 2005-03-08  Scott James Remnant  <scott@netsplit.com>
458         * Makefile.am (package): Remove rule, as it is only really
459         required outside of arch (otherwise you have a tarball).
460         * Makefile.maint: New file holding the package rule.
462 2005-03-03  Scott James Remnant  <scott@netsplit.com>
464         * archtable: Describe column 2 as the value returned by
465         dpkg --print-architecture not --print-installation-architecture
466         which we deprecated in the last release.
468         * configure.ac: Bump version to 1.13.2~.
470         * configure.ac: Release 1.13.1.
472 2005-03-03  Michael Vogt  <mvo@ubuntu.com>
474         * src/configure.c (promptconfaction): Output conffile-prompt
475         status onto status-fd to let front-ends capture conflicts.
476         * src/errors.c (print_error_perpackage): Output package errors
477         onto status-fd to let front-ends capture them.
478         * man/C/dpkg.1: Document how errors and configuration file
479         conflicts are reported on the status-fd.
481 2005-01-22  Scott James Remnant  <scott@netsplit.com>
483         * man/C/dpkg.1: Remove --print-gnu-build-architecture and
484         --print-installation-architecture from documentation, correct
485         --print-architecture.
486         * man/C/dpkg-architecture.1: Give --print-architecture in examples,
487         instead of --print-installation-architecture.
488         * scripts/dpkg-name.sh (getname): Call 'dpkg --print-architecture'
489         instead of 'dpkg --print-installation-architecture'.
490         * scripts/dpkg-architecture.pl: Set the default $pkgdatadir to
491         point at an installed copy.
492         Call 'dpkg --print-architecture' instead of
493         'dpkg --print-installation-architecture'.
494         * methods/disk/setup (iarch): Call dpkg --print-architecture.
495         * debian/control ([dpkg-dev]Depends, [dselect]Depends): Depend on
496         dpkg (>= 1.13.1) so we get a dpkg with the right print options.
498         * src/enquiry.c (printarch): Completely nuke this function, we'll
499         no longer parse the compiler output and look up things in archtable.
500         (printinstarch): Rename to printarch, and change the output message
501         to refer to --print-architecture.
502         (badlgccfn): Remove unused function.
503         * src/main.c (cmdinfos): Remove --print-gnu-build-architecture option,
504         make --print-installation-architecture call printarch.
505         (usage): Remove both --print-gnu-build-architecture and
506         --print-installation-architecture and describe --print-architecture
507         as doing what --p-i-a used to do.  Use dpkg-architecture for host
508         information.
509         * src/main.h (action): Remove act_printgnuarch from enum, leave
510         act_printinstarch so we can later deprecate use of the longer command.
511         * src/Makefile.am (archtable.h): No need to generate archtable.h
512         seeing as we don't parse it within dpkg, remove rule to generate it.
513         (CLEANFILES): We don't generate archtable.h, so no need to clean it.
514         * src/.arch-inventory: Don't treat archtable.h specially.
515         * archtable: Remove unused third field, entirely inaccurate too.
516         Correct typo 'she3eb' -> 'sh3eb'.
517         * scripts/dpkg-architecture.pl (read_archtable): Parse only two
518         fields from archtable.
520         * scripts/dpkg-architecture.pl: Remove out-of-date history from the
521         top, ChangeLog serves better now and is less confusing.
522         Reset $gcc if we get less than, or more than one archtable result.
523         Remove extra newline from mismatched -a/-t warning.
524         (usageversion): Pedant the usage message while we scroll past.
525         (read_archtable): New function to read /usr/share/dpkg/archtable
526         rather than hard-coding some values in the script.
527         (rewrite_gnu): Rewrite along the lines of the code in m4/arch.m4 so
528         they should actually be vaguely consistent now.
530         * scripts/Makefile.am (do_perl_subst): Replace occurances of
531         $pkgdatadir in scripts with the right value.
533 2005-01-22  Robert Millan  <rmh@debian.org>,
535         * configure.ac: Check for kvm.h.
536         * utils/start-stop-daemon.c: Remove includes for <sys/user.h>,
537         <sys/sysctl.h> and <kvm.h> for the BSDs unless configure found
538         <kvm.h>.
539         (fatal): Output the message associated with errno.
541 2005-01-22  Rakesh 'arky' Ambati  <rakesh_ambati@yahoo.com>
543         * scripts/dpkg-architecture.pl: Correct typo, 'filed' to 'failed'.
545 2005-01-22  Robert Millan  <rmh@debian.org>,
546             Scott James Remnant  <scott@netsplit.com>
548         * m4/arch.m4 (DPKG_CPU_TYPE): Add a new macro to turn common
549         groups of CPU names into a single type (e.g. i*86 to i386).
550         (DPKG_OS_TYPE): Match linux*-gnu* for Linux (in case we get a
551         non-GNU Linux at some point) and produce a 'linux' type.  Remove
552         the initial '*' from the rest of the entries.  Restore gnu* as
553         gnu (for the Hurd).  Add support for darwin* as darwin.  Sort
554         into almost-alphabetical order with i386/linux at the top.
555         (DPKG_ARCHITECTURE): Call DPKG_CPU_TYPE and use $cpu_type instead of
556         $target_cpu.
557         * archtable: Rewrite the top comment to be a little clearer and
558         correct the lie that the third column is 'dpkg --print-architecture'
559         when it is, in fact, 'dpkg --print-gnu-build-architecture'.  Correct
560         third columns of the non-Linux architecture to actually return a
561         GNU name.  Sort the file into i386/linux-first alphabetical order.
563 2005-01-22  Robert Millan  <rmh@debian.org>
565         * archtable: Add x86_64-kfreebsd to archtable as 'kfreebsd-amd64'.
566         * scripts/dpkg-architecture.pl: Add 'kfreebsd-amd64' to archtable.
568 2005-01-22  NIIBE Yutaka  <gniibe@fsij.org>
570         * archtable: Add m32r-linux-gnu to archtable as 'm32r'.
571         * scripts/dpkg-architecture.pl: Add 'm32r' to archtable.
573 2005-01-22  Scott James Remnant  <scott@netsplit.com>
575         * src/query.c (cmdinfos): Make -f alternative for --showformat.
576         * src/query.c (usage): Document that -f is alternative for
577         --showformat.
578         * man/C/dpkg-query.1: Update documentation to match.
580 2005-01-22  Stephane Bortzmeyer  <stephane@sources.org>
582         * scripts/dpkg-source.pl (diff_ignore_default_regexp): Add the
583         darcs _darcs directory to the ignore list.
585 2005-01-22  Scott James Remnant  <scott@netsplit.com>
587         * utils/md5sum.c (main): Correct md5sum according to the wishes
588         of the Debian technical committee; when given a file on standard
589         input, it now simply outputs the md5sum and does not append "  -"
590         or " *-" on the end.
592 2005-01-22  Adam Heath  <doogie@debian.org>
594         * lib/tarfn.c (TarExtractor): Fix handling of GNU longname and
595         longlink support when there is both types for the same file entry
596         in a tarball.
598 2005-01-19  Dafydd Harries  <daf@muse.19inch.net>
600         * man/C/dpkg-source.1: Make the summary for dpkg-source -b invocation
601         in the manpage match that output by dpkg-source --help. (I.e. indicate
602         the possibility of specifying the upstream tarball rather than the
603         upstream source directory as a second parameter.)
605 2005-01-17  Scott James Remnant  <scott@netsplit.com>
607         * debian/dpkg.preinst (confirm_dselect_split): Support pre-sarge
608         upgrades by checking that they've upgraded dselect first, and
609         prompting if they haven't.
611 2005-01-14  Scott James Remnant  <scott@netsplit.com>
613         * .arch-inventory: Ignore the upload result file as well.
615         * configure.ac: Bump version to 1.13.1~.
617         * configure.ac: Release 1.13.0.
619         * dpkg-deb/main.c (main): Remove NONRETURNING declaration as
620         this function does actually call return sometimes.
621         * dpkg-split/main.c (main): Remove NONRETURNING declaration as
622         this function does actually call return sometimes.
623         * utils/start-stop-daemon.c (main): Remove NONRETURNING declaration
624         as this function does actually call return sometimes.
625         * m4/compiler.m4 (SJR_COMPILER_WARNINGS): Enable warnings for CXX
626         too, my original macro doesn't do this.
627         
628         * configure.ac: Use AC_GNU_SOURCE to get some of the extra goodies
629         in the GNU C library, use DPKG_C_C99 to test for C99 features.
630         * m4/compiler.m4 (DPKG_C_C99): New macro to determine whether
631         compiler supports C99 features.
632         (SJR_COMPILER_WARNINGS): Don't use -pedantic yet, dpkg isn't ready
633         for it.
635         * lib/dpkg.h: Provide C99-conformant variadic macros if the
636         compiler supports them in place of gnu-style ones.
637         * lib/tarfn.c: Add missing include of config.h to get some useful
638         information (and prototype of strnlen).
639         * src/help.c: Cast arguments to (char * const *) explicitly.
640         * dpkg-deb/main.c: Include dpkg-db.h to get nffreeall prototype.
641         * .arch-inventory: Ignore config.cache if the user uses it.
643         * scripts/controllib.pl: Add #!/usr/bin/perl to satisfy lintian.
644         * debian/control ([dpkg]Pre-Depends): Needs to pre-depend on shlibs
645         dependencies like libc6, accidentally dropped earlier.
646         ([dpkg-dev]Recommends): Added gcc as first choice for c-compiler.
647         * debian/rules: Generate shlibdeps for all arch packages, not just
648         dselect (so we get them for dselect too).
649         * debian/.arch-inventory: Ignore dpkg.substvars.
650         * debian/dpkg.conffiles: Removed, debhelper does the right thing.
651         * debian/dpkg-dev.conffiles: Removed, debhelper does the right thing.
652         * debian/dselect.conffiles: Removed, debhelper does the right thing.
653         * Makefile.am (EXTRA_DIST): Updated for debian directory changes.
654         (package): Add missing distdir dependency, also don't treat lintian
655         problems as errors, just report them.
656         * man/C/dpkg.8: Moved to section 1 where it belongs.
657         * man/C/dpkg-query.8: Moved to section 1 where it belongs.
658         * man/C/dpkg-split.8: Moved to section 1 where it belongs.
659         * man/C/dselect.8: Moved to section 1 where it belongs.
660         * man/C/Makefile.am: Install dpkg.1, dpkg-query.1, dselect.1
661         * man/es/dpkg.8: Moved to section 1 where it belongs.
662         * man/es/dpkg-split.8: Moved to section 1 where it belongs.
663         * man/es/dselect.8: Moved to section 1 where it belongs.
664         * man/es/Makefile.am: Install dpkg.1, dpkg-split.1, dselect.1
665         * man/fr/dpkg.8: Moved to section 1 where it belongs.
666         * man/fr/dpkg-query.8: Moved to section 1 where it belongs.
667         * man/fr/dpkg-split.8: Moved to section 1 where it belongs.
668         * man/fr/Makefile.am: Install dpkg.1, dpkg-query.1, dpkg-split.1
669         * man/ja/dpkg.8: Moved to section 1 where it belongs.
670         * man/ja/dpkg-query.8: Moved to section 1 where it belongs.
671         * man/ja/dselect.8: Moved to section 1 where it belongs.
672         * man/ja/Makefile.am: Install dpkg.1, dpkg-query.1, dselect.1
673         * man/pt_BR/dpkg.8: Moved to section 1 where it belongs.
674         * man/pt_BR/dselect.8: Moved to section 1 where it belongs.
675         * man/pt_BR/Makefile.am: Install dselect.1, dpkg.1
676         * man/ru/dpkg.8: Moved to section 1 where it belongs.
677         * man/ru/Makefile.am: Install dpkg.1
678         * man/sv/dpkg.8: Moved to section 1 where it belongs.
679         * man/sv/dpkg-query.8: Moved to section 1 where it belongs.
680         * man/sv/dpkg-split.8: Moved to section 1 where it belongs.
681         * man/sv/dselect.8: Moved to section 1 where it belongs.
682         * man/sv/Makefile.am: Install dpkg.1, dpkg-query.1, dpkg-split.1,
683         dselect.1
684         * debian/dpkg.install: Install dpkg.1, dpkg-query.1, dpkg-split.1
685         * debian/dselect.install: Install dselect.1
687         * Makefile.am (EXTRA_DIST): Distribute files in the debian directory
688         in the source tarball.
689         (package): Create source and binary packages using dpkg-buildpackage
690         and some magic to give us a directory containing only 'dist' files.
691         Check the resulting changes file with lintian if we have it.
693         * .arch-inventory: Apply l33t regex skills to ignore source tarballs,
694         packages and the dist directory.
696         * utils/Makefile.am (rootsbin_PROGRAMS): Install start-stop-daemon
697         into the ordinary sbindir by default.
698         * debian/dpkg.install: Install usr/sbin/start-stop-daemon into /sbin.
700         * debian/control (Build-Depends): The source tarball now includes
701         the generated gmo files, so there's no reason for the package to
702         build-depend on gettext.
704         * getopt/getdate.c: Remove unused file.
706         * methods/disk/update: Remove {...} glob, as it's a bashism.
708         * debian/control (Build-Depends): Fix dependency on virtual
709         package `libncurses-dev'.
711         * m4/funcs.m4 (DPKG_FUNC_VA_COPY): Wrap TRY_RUN and TRY_COMPILE
712         calls in AC_CACHE_CHECK, missed when I copied it over and updated.
714         * debian/dpkg.prerm: Give the script a bit of a spring clean,
715         add a comment block at the top to serve as documentation of how
716         prerm is called for anyone wanting a quick reference; this seems
717         a reasonable place to do it as any.  Don't remove the historic
718         info scripts anymore (dating back to 1.3.3) as we haven't shipped
719         them in ages and 1.3.3's upgrade script did it anyway.
720         * debian/dpkg.postrm: Equal spring clean and documentation comment
721         added to the top.  Removed code to purge dpkg.cfg now we include it
722         in the package as a conffile again anyway.
723         * debian/dpkg.preinst: Equal spring clean and documentation comment
724         added to the top.  Separated each discreet piece of upgrade behaviour
725         for the 0.93.50 jump into different functions.
726         * debian/dpkg.postinst: Equal spring clean and documentation comment
727         added to the top.  Separated each bit of behaviour into a separate
728         function.
729         (move_info_directory): No longer create symlinks to the new location.
730         (remove_info_symlink): Remove /usr/info or /usr/info/dir symlinks.
732 2005-01-13  Scott James Remnant  <scott@netsplit.com>
734         * debian/control (Build-Depends): Add forgotten build-depend on
735         debhelper, I picked 4.1.81 after reading the changelog as it has the
736         first feature we need (upstream and debian changelogs in a native
737         package).
739         * man/C/Makefile.am (dpkg_source_aliases): I missed a whole bunch
740         of manpages created as aliases to dpkg-source, put the rules in to
741         do that.
742         * man/C/.arch-inventory: Ignore generated aliased pages.
744         * debian/rules: Rewrite from scratch to use debhelper, this breaks
745         being able to bootstrap dpkg from its own source directory; but that
746         didn't really work anyway.  You can always just 'make install' first.
747         * debian/compat: Set debhelper compatibility to v4.
748         * debian/dpkg.docs: List documentation to ship with dpkg.
749         * debian/dpkg.install: List files that belong to dpkg.
750         * debian/dselect.install: List files that belong to dselect.
751         * debian/dpkg-dev.install: List files that belong to dpkg-dev.
752         * .arch-inventory: Ignore build-tree, created by debian/rules.
753         * debian/.arch-inventory: Ignore files and directories created by
754         debian/rules.
756         * lib/Makefile.am (INCLUDES): Correct sharedstatedir to datadir,
757         common-licenses isn't in /usr/com (whatever that is).
759         * dpkg-split/Makefile.am (install-data-local): Use $(mkdir_p) instead
760         of $(MKINSTALLDIRS), better style.
761         * methods/Makefile.am (install-data-local): Use $(mkdir_p) instead of
762         $(MKINSTALLDIRS) here too.
763         * origins/Makefile.am (install-data-local): And here.
764         * scripts/Makefile.am (install-exec-local): Here as well.
765         (install-data-local): Likewise.
766         * src/Makefile.am (install-data-local): And finally, here too.
768         * scripts/Makefile.am: Automake doesn't create out-of-tree output
769         directories for us, so do so if it they don't exist (but quiet, like).
770         (do_perl_subst): Remove space in #! line.
771         * dpkg-split/Makefile.am: Create out-of-tree directories.
772         (do_perl_subst): Remove space in #! line.
774         * lib/dpkg.h: Include locale.h, for LC_ALL which is expanded in
775         a macro here.  This is needed if we build without optimisations
776         as libintl.h won't include it for us.
778 2005-01-12  Scott James Remnant  <scott@netsplit.com>
780         * debian/pseudo-tags: Rewrite and clear up, put tags into a decent
781         order and add a new [DEPENDS] tag to track dependency handling
782         issues.
784         * debian/shlibs.default: Clean up.
785         * debian/shlibs.override: Clean up.
787         * debian/dselect.cfg: Clean up atrocious English spelling.
788         * debian/dpkg.cfg: Clean up atrocious English spelling; remove old
789         configuration values as this file would be useful to be installed
790         to describe its use.
791         * debian/dpkg.conffiles: Add dpkg.cfg.
793         * debian/copyright: Clean up, utf-8ify and add missing copyright
794         declarations.
796         * debian/control (Build-Depends): Remove SGML-related tools now we no
797         longer have docs in that format; increase gettext build-dependency to
798         0.14.1; remove build-dependency on autotools-dev.
799         (Standards-Version): Bump to keep lintian happy, we're conformant.
800         ([dpkg]Pre-Depends): Remove pre-dependency on dselect put in place
801         to ease transition between woody and sarge where dselect was split
802         into a separate binary package.
803         ([dpkg]Suggests): It's about time we suggested apt.
804         ([dpkg]Description): The dselect program is no longer included in the
805         dpkg package, so don't mention it in the description.
806         ([dselect]Description): Rewrite as dselect is no longer the primary
807         interface for package management, and that users may prefer apt-based
808         interfaces.
810         * debian/control (dpkg-static): The dpkg (and dpkg-deb) binaries
811         have been linked statically to zlib for some time, and the
812         dpkg-static package hasn't actually been created either.  Remove
813         from the control file.
815         * debian/control (dpkg-doc): The documentation shipped in the
816         dpkg-doc package was rather incomplete and out-of-date, so was
817         removed from the distribution.  Remove package from control file.
818         * debian/dpkg-doc.doc-base: Remove dpkg-doc file.
819         * debian/dpkg-doc.postinst: Remove dpkg-doc maintainer script.
820         * debian/dpkg-doc.prerm: Remove dpkg-doc maintainer script.
821         * debian/README.compile: Removed this file as it's both out of
822         date, and entirely replaced by Build-Depends anyway for those
823         that care about such things.
825         * Makefile.am: Remove rules to install common documentation and
826         licence under /usr/share/doc/dpkg, leave that up to the package.
827         * lib/Makefile.am (INCLUDES): Define COPYINGFILE to point to
828         /usr/share/common-licenses/GPL-2.
830 2005-01-11  Colin Watson  <cjwatson@debian.org>
832         * dselect/basecmds.cc (baselist::displayhelp) Revert to former
833         Space/Enter/'Q' behaviour, so that Space leaves the help screen
834         and Enter and 'Q' do nothing. It's dangerous to encourage users
835         to press Enter or 'Q', since they commit changes in the package
836         selection screen.
837         * dselect/helpmsgs.cc (hlp_readonlyintro, hlp_recurintro): Update
838         help text to match.
839         (hlp_mainintro): 'Q' quits and overrides dependency problems;
840         'X' quits without saving changes.
842 2005-01-10  Scott James Remnant  <scott@netsplit.com>
844         * configure.ac: Fix --without-dselect and --without-start-stop-daemon
845         so they actually work, Autoconf was preserving the old value of the
846         variable.  Always call AC_PROG_CXX otherwise things aren't happy
847         as it gets partially expanded.
849         * dpkg-split/Makefile.am (EXTRA_DIST): Distribute mksplit.pl.
850         * dselect/Makefile.am (EXTRA_DIST): Distribute mkcurkeys.pl.
851         * lib/Makefile.am (libdpkg_a_SOURCES): Distribute gettext.h.
852         * scripts/Makefile.am (EXTRA_DIST): Distribute the scripts and
853         README.alternatives, oops.
854         (all-local): Build install-info from install-info.pl manually.
855         (install-exec-local): Install install-info manually.
856         (uninstall-local): Remove install-info manually.
857         * scripts/.arch-inventory: Ignore install-info-stamp file we need.
858         * src/Makefile.am (dpkg_query_SOURCES): There is no errors.h.
860         * Makefile.conf.in: Remove file used by old build system.
861         
862         * lib/mlib.c (buffer_write): Remove cast from lvalue, deprecated
863         in recent versions of gcc.
864         * m4/compiler.m4 (SJR_COMPILER_OPTIMISATIONS): Explicitly set -O0
865         when disabling compiler optimisations, as recent versions of gcc
866         have some on by default.
868         Now we're not using CVS at all, replace the old .cvsignore files
869         with .arch-inventory files Arch can use to ignore generated files.
871         * .cvsignore: Remove old file.
872         * .arch-inventory: Replace with more complete regex rules.
873         * dpkg-deb/.cvsignore: Remove old file.
874         * dpkg-deb/.arch-inventory: Replace with more complete regex rules.
875         * dpkg-split/.cvsignore: Remove old file.
876         * dpkg-split/.arch-inventory: Replace with more complete regex rules.
877         * dselect/.cvsignore: Remove old file.
878         * dselect/.arch-inventory: Replace with more complete regex rules.
879         * getopt/.cvsignore: Remove old file.
880         * getopt/.arch-inventory: Replace with more complete regex rules.
881         * lib/.cvsignore: Remove old file.
882         * lib/.arch-inventory: Replace with more complete regex rules.
883         * m4/.arch-inventory: Ignore files copied in by 'autopoint'.
884         * man/.cvsignore: Remove old file.
885         * man/.arch-inventory: Replace with more complete regex rules.
886         * man/C/.cvsignore: Remove old file.
887         * man/C/.arch-inventory: Replace with more complete regex rules.
888         * man/de/.cvsignore: Remove old file.
889         * man/de/.arch-inventory: Replace with more complete regex rules.
890         * man/es/.arch-inventory: Ignore generated 'Makefile' and 'Makefile.in'.
891         * man/fr/.cvsignore: Remove old file.
892         * man/fr/.arch-inventory: Replace with more complete regex rules.
893         * man/ja/.cvsignore: Remove old file.
894         * man/ja/.arch-inventory: Replace with more complete regex rules.
895         * man/pt_BR/.cvsignore: Remove old file.
896         * man/pt_BR/.arch-inventory: Replace with more complete regex rules.
897         * man/ru/.cvsignore: Remove old file.
898         * man/ru/.arch-inventory: Replace with more complete regex rules.
899         * man/sv/.cvsignore: Remove old file.
900         * man/sv/.arch-inventory: Replace with more complete regex rules.
901         * methods/.cvsignore: Remove old file.
902         * methods/.arch-inventory: Replace with more complete regex rules.
903         * origins/.arch-inventory: Ignore generated 'Makefile'
904         and 'Makefile.in'.
905         * po/.cvsignore: Remove old file.
906         * po/.arch-inventory: Replace with more complete regex rules.
907         * scripts/.cvsignore: Remove old file.
908         * scripts/.arch-inventory: Replace with more complete regex rules.
909         * scripts/changelog/.arch-inventory: Ignore generated file.
910         * src/.cvsignore: Remove old file.
911         * src/.arch-inventory: Replace with more complete regex rules.
912         * utils/.cvsignore: Remove old file.
913         * utils/.arch-inventory: Replace with more complete regex rules.
914         
915         * man/sv/.check.pl: Remove as it uses CVS to check whether the
916         translations are up to date, and we don't use that anymore.
917         * dselect/checkunimp.pl: Remove unused file.
918         * dselect/keys.c: Remove unused file.
919         
920         For at least the second time in dpkg's history, convert the build
921         system to use GNU Automake.  I'm sure some future maintainer will
922         come along and get rid of it again, but for now, Automake is the
923         way forward.
925         * Makefile.in: Remove old file.
926         * Makefile.am: Replace with shiny Automake goodness, don't distribute
927         TODO anymore; it's only useful for developers.
928         * dpkg-deb/Makefile.in: Remove old file.
929         * dpkg-deb/Makefile.am: Replace with shiny Automake goodness, don't
930         include rules to build dpkg-deb-static.
931         * dpkg-split/Makefile.in: Remove old file.
932         * dpkg-split/Makefile.am: Replace with shiny Automake goodness.
933         * dselect/Makefile.in: Remove old file.
934         * dselect/Makefile.am: Replace with shiny Automake goodness.
935         * getopt/Makefile.in: Remove old file.
936         * getopt/Makefile.am: Replace with shiny Automake goodness.
937         * lib/Makefile.in: Remove old file.
938         * lib/Makefile.am: Replace with shiny Automake goodness.
939         (libdpkg_a_SOURCES): add refugee files from 'include'.
940         * man/Makefile.in: Remove old file.
941         * man/Makefile.am: Replace with shiny Automake goodness.
942         * man/C/Makefile.in: Remove old file.
943         * man/C/Makefile.am: Replace with shiny Automake goodness.
944         * man/de/Makefile.in: Remove old file.
945         * man/de/Makefile.am: Replace with shiny Automake goodness.
946         * man/es/Makefile.in: Remove old file.
947         * man/es/Makefile.am: Replace with shiny Automake goodness.
948         * man/fr/Makefile.in: Remove old file.
949         * man/fr/Makefile.am: Replace with shiny Automake goodness.
950         * man/ja/Makefile.in: Remove old file.
951         * man/ja/Makefile.am: Replace with shiny Automake goodness.
952         * man/pt_BR/Makefile.in: Remove old file.
953         * man/pt_BR/Makefile.am: Replace with shiny Automake goodness.
954         * man/ru/Makefile.in: Remove old file.
955         * man/ru/Makefile.am: Replace with shiny Automake goodness.
956         * man/sv/Makefile.in: Remove old file.
957         * man/sv/Makefile.am: Replace with shiny Automake goodness.
958         * methods/Makefile.in: Remove old file.
959         * methods/Makefile.am: Replace with shiny Automake goodness, taking
960         into account the new filesystem structure.
961         * origins/Makefile.am: New Automake file to install origin files.
962         * scripts/Makefile.in: Remove old file.
963         * scripts/Makefile.am: Replace with shiny Automake goodness.
964         * src/Makefile.in: Remove old file.
965         * src/Makefile.am: Replace with shiny Automake goodness, don't
966         include rules to build either dpkg-static or dpkg-query-static.
967         * utils/Makefile.in: Remove old file.
968         * utils/Makefile.am: Replace with shiny Automake goodness, don't
969         include rules to build md5sum-static.
971         * dpkg-deb/build.c: Replace USE_ZLIB with WITH_ZLIB.
972         * dpkg-deb/extract.c: Replace USE_ZLIB with WITH_ZLIB.
973         * dpkg-deb/main.c: Remove version.h include.
974         * dpkg-split/main.c: Remove version.h include.
975         * dselect/main.cc: Remove version.h include.
976         * lib/compression.c: Replace USE_ZLIB with WITH_ZLIB and USE_BZ2
977         with WITH_ZLIB.
978         * src/help.c: Remove version.h include and replace
979         USE_START_STOP_DAEMON with WITH_START_STOP_DAEMON.
980         * src/main.c: Remove version.h include.
981         
982         We're going to move to using 'autoreconf' to generate the build
983         scripts after a checkout and 'make dist' to get a clean tarball.
984         Various files will get copied automatically so there's no point
985         having them under version control, they'll still appear in the
986         tarballs though.
988         * INSTALL: Remove from version control.
989         * config.guess: Remove from version control.
990         * config.sub: Remove from version control.
991         * install-sh: Remove from version control.
992         * autogen.sh: Remove unnecessary script, just run 'autoreconf'.
993         * release.sh: Remove unnecessary script, just run 'make dist'.
995         The old 'configure.in' arranged for a bunch of code to be added
996         to the bottom of 'config.h' with the assumption that it'd be
997         included everywhere.  That's not good style, the file is only
998         supposed to contain settings and not real code.  Put the code in
999         real header files and source.
1001         * lib/dpkg.h: Include <sys/cdefs.h> and <stddef.h> if available.
1002         (INTERPRETER_MAX): Define to PATH_MAX or 1024 if not available.
1003         (DPKG_VERSION_ARCH): Define using PACKAGE_VERSION instead of
1004         DPKG_VERSION, which no longer exists.
1005         (ADMINDIR): Remove definition, define in Makefiles where needed.
1006         (CONFIGDIR): Remove definition, define in Makefiles where needed.
1007         (LIBDIR): Remove definition, define in Makefiles where needed.
1008         (CONSTANT, PRINTFFORMAT, NONRETURNING, UNUSED, NONRETURNPRINTFFORMAT):
1009         Define attribute markers used in function prototypes.
1010         (strerror, strsignal, scandir, alphasort, unsetenv): Define prototypes
1011         for functions in 'compat.c' if the system lacks them.
1012         (strtoul, va_copy, WCOREDUMP): Provide compatible macros for functions
1013         the system lacks.
1014         (BUILDOLDPKGFORMAT): Define here.
1015         (_, N_): Include gettext.h and define friendlier macros.
1016         * lib/gettext.h: Include from gettext distribution useful header
1017         file that does the heavy lifting of enabling or disabling gettext.
1018         * lib/md5.h: Add code to define UWORD32 used by this implementation.
1019         * getopt/error.h (error, error_at_line): Remove printf format
1020         attribute marker from prototypes to keep the code clean.
1021         * getopt/getopt.c (store_args_and_env): Remove unused attribute
1022         marker from function to keep the code clean.
1023         * utils/md5sum.c: Let gettext.h (included through dpkg.h) do the
1024         heavy lifting and define the right things for us.
1025         * utils/start-stop-daemon.c: Duplicate includes of <sys/cdefs.h>
1026         and <stddef.h> along with attribute marker definitions to avoid
1027         having to include 'dpkg.h'.
1028         
1029         * configure.in: Rename to 'configure.ac' and rewrite from the
1030         ground-up with Autoconf 2.59 in mind.
1031         * m4/arch.m4: New file of macros for 'configure.ac':
1032         (DPKG_OS_TYPE): Code from old 'configure.in' to turn output from
1033         'config.guess' into an operating system name we recognise.
1034         (DPKG_ARCHITECTURE): Code from old 'configure.in' to look up
1035         CPU and operating system name in the 'archtable'.
1036         * m4/compiler.m4: New file of macros for 'configure.ac':
1037         (SJR_COMPILER_WARNINGS): Add my standard macro to enable additional
1038         compiler warnings and treat them as errors.
1039         (SJR_COMPILER_OPTIMISATIONS): Add my standard macro to allow
1040         disabling of optimisations.
1041         (DPKG_C_ATTRIBUTE): Macro to check whether the C compiler supports
1042         __attribute__, we assume that compilers that do ignore unknown
1043         attributes like gcc does.
1044         * m4/funcs.m4: New file of macros for 'configure.ac':
1045         (DPKG_FUNC_VA_COPY): Code from old 'configure.in' to determine
1046         whether the system supports va_copy or directly copying the values.
1047         * m4/libs.m4: New file of macros for 'configure.ac':
1048         (DPKG_LIB_ZLIB): Rework of old 'configure.in' code to allow the
1049         user to decide whether to use zlib, and whether to link it statically.
1050         (DPKG_LIB_BZ2): Rework of old 'configure.in' code to allow the user
1051         to decide whether to use the bz2 library, and whether to link it
1052         statically.
1053         (DPKG_LIB_CURSES): Code from old 'configure.in' to pick the right
1054         curses library on the system.
1055         (DPKG_LIB_SSD): Code from old 'configure.in' to look for libraries
1056         used by start-stop-daemon.
1057         * m4/linker.m4: New file of macros for 'configure.ac':
1058         (SJR_LINKER_OPTIMISATIONS): Add my standard macro to enable linker
1059         optimisations and allow them to be disabled.
1060         * m4/perl.m4: New file of macros for 'configure.ac':
1061         (DPKG_PROG_PERL): Macro to locate the Perl interpreter in the PATH,
1062         or allow the user to specify it with PERL=.
1063         * m4/types.m4: New file of macros for 'configure.ac':
1064         (DPKG_TYPE_PTRDIFF_T): Macro to replace obsolete AC_TYPE_PTRDIFF_T
1065         macro from Autoconf.
1066         (DPKG_DECL_SYS_SIGLIST): Macro to replace obsolete AC_DECL_SYS_SIGLIST
1067         macro from Autoconf.
1068         (DPKG_CHECK_DEFINE): Rework of old 'automake/dpkg.m4' code.
1069         * version-nr: Remove, version should be changed in configure.ac
1070         directly.
1071         * automake: Remove older Autoconf macros.
1072         
1073         * po/ChangeLog: Add new ChangeLog to describe changes affecting
1074         translations and their infrastructure.
1075         
1076         * origin: Move to 'origins/debian' so we can ship additional
1077         origins in future.
1079         Rearrange changelog parsers under 'scripts' into a separate
1080         directory so they also don't need to be renamed on installation.
1082         * scripts/cl-debian.pl: Move to 'scripts/changelog/debian.pl'.
1084         Rearrange 'methods' directory into the same hierarchy used when
1085         installed to save having to rename files on installation.
1087         * methods/disk.desc.cdrom: Move to 'methods/disk/desc.cdrom'.
1088         * methods/disk.desc.harddisk: Move to 'methods/disk/desc.harddisk'.
1089         * methods/disk.desc.mounted: Move to 'methods/disk/desc.mounted'.
1090         * methods/disk.desc.nfs: Move to 'methods/disk/desc.nfs'.
1091         * methods/disk.install: Move to 'methods/disk/install' and chmod +x.
1092         * methods/disk.names: Move to 'methods/disk/names'.
1093         * methods/disk.setup: Move to 'methods/disk/setup' and chmod +x.
1094         * methods/disk.update: Move to 'methods/disk/update' and chmod +x.
1095         * methods/floppy.desc.floppy: Move to 'methods/floppy/desc.floppy'.
1096         * methods/floppy.install: Move to 'methods/floppy/install' and
1097         chmod +x.
1098         * methods/floppy.names: Move to 'methods/floppy/names'.
1099         * methods/floppy.setup: Move to 'methods/floppy/setup' and chmod +x.
1100         * methods/floppy.update: Move to 'methods/floppy/update' and chmod +x.
1101         * methods/hd.setup: Remove unused method script.
1102         * methods/hd.unpack: Remove unused method script.
1103         * methods/hd.update: Remove unused method script.
1105         Consolidate the library code into one directory, so the headers are
1106         alongside the code rather than somewhere else.
1108         * include/dpkg-db.h: Move to 'lib'.
1109         * include/myopt.h: Move to 'lib'.
1110         * include/parsedump.h: Move to 'lib'.
1111         * include/tarfn.h: Move to 'lib'.
1112         * include/dpkg.h.in: Move to 'lib' and rename to 'dpkg.h', we'll
1113         set ADMINDIR, CONFIGDIR and LIBDIR in Makefile where needed as they
1114         can contain shell paths.
1115         * include: Remove directory.
1116         
1117         * AUTHORS: Add new file detailing the original authors of dpkg and
1118         the maintainers through the years.
1119         * COPYING: Update to include correct FSF address.
1120         * NEWS: Add new file that just points to debian/changelog for major
1121         changes between releases.
1122         * README: Add new file to briefly describe the package.
1124         Instead of scattering manpages throughout the source, we'll keep
1125         all of the original pages in one place under 'man/C'.  This should
1126         make it easier to keep track of them, especially translators.
1128         * dpkg-deb/dpkg-deb.1: Move to 'man/C'.
1129         * dpkg-split/dpkg-split.8: Move to 'man/C'.
1130         * dselect/dselect.8: Move to 'man/C'.
1131         * scripts/822-date.1: Move to 'man/C'.
1132         * scripts/cleanup-info.8: Move to 'man/C'.
1133         * scripts/dpkg-architecture.1: Move to 'man/C'.
1134         * scripts/dpkg-checkbuilddeps.1: Move to 'man/C'.
1135         * scripts/dpkg-divert.8: Move to 'man/C'.
1136         * scripts/dpkg-name.1: Move to 'man/C'.
1137         * scripts/dpkg-scanpackages.1: Move to 'man/C'.
1138         * scripts/dpkg-scansources.1: Move to 'man/C'.
1139         * scripts/dpkg-source.1: Move to 'man/C'.
1140         * scripts/dpkg-statoverride.8: Move to 'man/C'.
1141         * scripts/install-info.8: Move to 'man/C'.
1142         * scripts/update-alternatives.8: Move to 'man/C'.
1143         * src/dpkg-query.8: Move to 'man/C'.
1144         * src/dpkg.8: Move to 'man/C'.
1145         * utils/md5sum.1: Move to 'man/C'.
1146         * utils/start-stop-daemon.8: Move to 'man/C'.
1147         
1148         * man/en: Rename directory to 'man/C', reserving country codes for
1149         manpages that have actually undergone translation.  These are the
1150         "original" format, and like the strings in the code itself don't
1151         really belong to any particular locale.
1153         Continuing the spirit of having only one markup format for manpages,
1154         fix up the two generated from POD and remove the POD.
1156         * scripts/dpkg-architecture.1: Generate with pod2man and remove
1157         damage from the top, turning it into respectable nroff.
1158         * scripts/dpkg-architecture.pl: Remove POD documentation from script.
1159         * scripts/dpkg-scansources.1: Generate with pod2man and remove
1160         damage from the top, turning it into respectable nroff.
1161         * scripts/dpkg-scansources.pl: Remove POD documentation from script.
1162         
1163         Remove the SGML files containing the same content as the manpages,
1164         but which were never used to generate them.  This avoids confusion,
1165         and as one markup format is just as good as another, we'll settle
1166         on nroff's man format.
1167         
1168         * man/en/cleanup-info.8.sgml: Remove SGML format documentation.
1169         * man/en/deb-control.5.sgml: Remove SGML format documentation.
1170         * man/en/deb-old.5.sgml: Remove SGML format documentation.
1171         * man/en/deb.5.sgml: Remove SGML format documentation.
1172         * man/en/dpkg-checkbuilddeps.1.sgml: Remove SGML format documentation.
1173         * man/en/dpkg.8.sgml: Remove SGML format documentation.
1174         * man/en/dpkg.cfg.5.sgml: Remove SGML format documentation.
1175         * man/en/dselect.8.sgml: Remove SGML format documentation.
1176         * man/en/dselect.cfg.5.sgml: Remove SGML format documentation.
1177         * man/paths.ent.in: Remove now we have no SGML format pages.
1179         * attic: Remove historical interest directory, that's what version
1180         control is for.
1181         * doc: Remove obsolete, incomplete and out-of-date documentation
1182         including that licenced under the GFDL (ie the entire directory).
1183         * md5sum: Remove empty directory.
1185         * main: Rename directory to 'src' so it's consistent with 'lib'.
1186         * optlib: Rename directory to 'getopt' as that's what's really in it.
1187         * split: Rename directory to 'dpkg-split' so it's consistent with
1188         'dpkg-deb'.
1190 Tue Nov 09 15:23:54 CEST 2004 Christian Perrier <bubulle@debian.org>
1192   * po/dpkg.pot: msguniq to remove duplicate entries
1194 Tue Nov 09 15:21:54 CEST 2004 Bartosz Fenski aka fEnIo <fenio@o2.pl>
1196   * po/pl.po: updated
1198 Fri Oct 29 21:55:54 CEST 2004 Carlos Liu <carlos_liu@yahoo.com>
1200   * po/zh_CN.po: Fix errors
1202 Fri Oct 29 08:58:54 CEST 2004 Bart Cornelis <cobaco@linux.be>
1204   * po/nl.po: Updated
1206 Fri Oct 29 08:55:54 CEST 2004 Carlos Liu <carlos_liu@yahoo.com>
1208   * po/zh_CN.po: Mess cleaned
1210 Fri Oct 29 08:50:00 CEST 2004 Christian Perrier <bubulle@debian.org>
1212   * po/*po: msguniq and msgcat on all files
1214 Thu Oct 28 09:39:00 CEST 2004 Christian Perrier <bubulle@debian.org>
1216   * po/dpkg.pot: regenerated
1217   * po/*po: synced with dpkg.pot
1218   * po/fr.po: complete the translation
1220 Thu Oct 28 15:55:14 BST 2004 Scott James Remnant <scott@netsplit.com>
1222   * dpkg-deb/dpkg-deb.h: Add '/' onto the end of the COMPAT values for
1223   bzip2 and tar.
1225 Wed Oct 27 12:22:08 BST 2004 Scott James Remnant <scott@netsplit.com>
1227   * version-nr, debian/changelog: Bump version to 1.13~.
1229 Wed Oct 27 10:14:29 BST 2004 Scott James Remnant <scott@netsplit.com>
1231   * version-nr, debian/changelog: Bump version to 1.10.25~.
1233 Wed Oct 27 09:58:27 BST 2004 Scott James Remnant <scott@netsplit.com>
1235   * lib/compression.c: Which revealed some brown-paper bag issues:
1236   Replace "BZFILE" with "BZFILE *", "file" with "bzfile"
1237   and "bzdopen" to "BZ2_bzdopen".
1239 Wed Oct 27 09:49:15 BST 2004 Scott James Remnant <scott@netsplit.com>
1241   * lib/compression.c: Replace USE_BZ2 with USE_BZ2LIB to match configure.in.
1243 Tue Oct 26 19:24:54 CEST 2004 Havard Korsvoll <korsvoll@skulelinux.no>
1245   * po/nn.po: Updated
1247 Tue Oct 26 17:24:54 CEST 2004 Carlos Liu <carlos_liu@yahoo.com>
1249   * po/zh_CN.po: Updated
1251 Tue Oct 26 06:54:54 CEST 2004 Peter Karlsson <peter@softwolves.pp.se>
1253   * po/sv.po: Updated
1255 Tue Oct 26 06:54:54 CEST 2004 CEST 2004 Piarres Beobide Egana <pi@beobide.net>
1257   * po/eu.po: updated
1259 Tue Oct 26 06:54:54 CEST 2004 Miguel Figueiredo <elmig@debianpt.org>
1261   * po/pt.po: Updated
1263 Mon Oct 25 18:26:54 CEST 2004 Miroslav Kure <kurem@upcase.inf.upol.cz>
1265   * po/cs.po: Updated
1267 Mon Oct 25 18:26:54 CEST 2004 Michael Piefel <piefel@debian.org>
1269   * po/de.po: updated
1271 Mon Oct 25 18:26:54 CEST 2004 Yuri Kozlov <yuray@id.ru>
1273   * po/ru.po: Updated
1275 Mon Oct 25 15:09:43 CEST 2004 Trorrr [Héctor Fernández] <trorrr@yahoo.es>
1277   * po/gl.po: Updated
1279 Mon Oct 25 08:03:00 CEST 2004 Lele Gaifax <lele@nautilus.homeip.net>
1281   * po/it.po: Updated
1283 Mon Oct 25 07:18:36 CEST 2004 Changwoo Ryu <cwryu@debian.org>
1285   * po/ko.po: Updated
1287 Mon Oct 25 07:18:36 CEST 2004 Kenshi Muto <kmuto@topstudio.co.jp>
1289   * po/ja.po: Updated
1291 Mon Oct 25 07:18:36 CEST 2004 Claus Hindsgaul <claus_h@image.dk>
1293   * po/da.po: Updated
1295 Mon Oct 25 07:18:36 CEST 2004 Javier Fernandez-Sanguino Pena <jfs@dat.etsit.upm.es>
1297   * po/es.po: Updated
1299 Sun Oct 24 21:51:55 CEST 2004 Jordi Mallach <jordi@debian.org>
1301   * po/ca.po: Updated Catalan translation.
1303 Sun Oct 24 20:16:43 CEST 2004 Lele Gaifax <lele@nautilus.homeip.net>
1305   * po/it.po: Updated
1307 Sun Oct 24 20:06:43 CEST 2004 Trorrr [Héctor Fernández] <trorrr@yahoo.es>
1309   * po/gl.po: Updated
1311 Sun Oct 24 19:20:43 CEST 2004 Bartosz Fenski aka fEnIo <fenio@o2.pl>
1313   * po/pl.po: Updated
1315 Sun Oct 24 19:20:43 CEST 2004 Andre Luis Lopes <andrelop@debian.org>
1317   * po/pt_BR.po: Updated
1319 Sun Oct 24 19:20:43 CEST 2004 Bart Cornelis <cobaco@linux.be>
1321   * po/nl.po: Updated
1323 Sun Oct 24 16:18:52 CEST 2004 Christian Perrier <bubulle@debian.org>
1325   * po/dpkg.pot: regenerated
1326   * po/*po: synced with dpkg.pot
1327   * po/fr.po: complete the translation
1329 Sun Oct 24 09:40:27 CEST 2004 Christian Perrier <bubulle@debian.org>
1331   * po/nl.po: Correct obvious typo from the translator
1333 Sun Oct 24 09:21:17 CEST 2004 Christian Perrier <bubulle@debian.org>
1335   * debian/changelog: Close *all* Portuguese translation bug reports
1337 Sun Oct 24 12:58:36 BST 2004 Scott James Remnant <scott@netsplit.com>
1339   * po/POTFILES.in: Add lib/compression.c here.
1341 Fri Jun 18 17:04:44 BST 2004 Scott James Remnant <scott@netsplit.com>
1343   * configure.in: Add checks for bz2 in a similar manner to zlib.
1344   * Makefile.conf.in: Add definitions for BZ2LIB macros.
1345   * lib/compression.c: New file taken from HEAD that implements
1346   compression and decompression for gzip, bzip2 and pass-through.
1347   * lib/Makefile.in: Compile the new source file.
1348   * include/dpkg.h.in: Add BZIP2 macro expanding to the name of the
1349   bzip2 tool.  Add compression_type enum and headers for functions in
1350   compression.c
1351   * dpkg-deb/Makefile.in: Also link static bzip2 libraries to static dpkg-deb.
1352   * dpkg-deb/build.c: Remove internalGzip() function, replace calling
1353   code with call to new compress_cat() function.  Choose the appropriate
1354   name for the data member based on compress_type.
1355   * dpkg-deb/extract.c: Remove gzip calling code, replace with call to
1356   new decompress_cat() function.  Add code to detect compression type
1357   of data member.
1358   * dpkg-deb/main.c: Add new -Z option to set compression type, set
1359   default to gzip.
1360   * dpkg-deb/dpkg-deb.h: Add extern definition of compress_type option,
1361   add macros to define the bzip2 and pass-through data member filenames.
1363 Tue Oct 19 08:28:46 CEST 2004 Javier Fernández-Sanguino Peña <jfs@computer.org>
1365   * po/es.po: updated (complete)
1367 Sun Oct 17 08:40:46 CEST 2004 Piarres Beobide Egana <pi@beobide.net>
1369   * po/eu.po: updated (complete)
1371 Thu Oct 14 17:01:21 CEST 2004 Michael Piefel <piefel@debian.org>
1373   * po/de.po: updated (now complete)
1375 Wed Oct 13 17:01:31 CEST 2004 George Papamichelakis <george@step.gr>
1377   * po/el.po: Updated
1379 Wed Oct 13 08:45:54 CEST 2004 Peter Karlsson <peterk@debian.org>
1381   * man/sv/dpkg-split.8: Updated
1382   * man/sv/start-stop-daemon.8: Updated
1383   * man/sv/deb-control.5: Updated
1384   * man/sv/dpkg.8: Updated
1385   * man/sv/md5sum.1: Updated
1386   * man/sv/dpkg-deb.1: Updated
1387   * man/sv/dpkg-query.8: Updated
1388   * man/sv/dselect.8: Updated
1390 Tue Oct 12 22:22:55 CEST 2004 Miroslav Kure <kurem@upcase.inf.upol.cz>
1392   * po/cs.po: Updated (now complete)
1394 Tue Oct 12 22:22:55 CEST 2004 Peter Karlsson <peter@softwolves.pp.se>
1396   * po/sv.po: Updated (now complete)
1398 Tue Oct 12 07:50:21 CEST 2004 Philippe Batailler <philippe.batailler@free.fr>
1400   * man/fr/cleanup-info.8: updated
1401   * man/fr/dpkg.8: updated
1402   * man/fr/dpkg-deb.1: updated
1403   * man/fr/dpkg-divert.8: updated
1404   * man/fr/dpkg-name.1: updated
1405   * man/fr/dpkg-query.8: updated
1406   * man/fr/dpkg-source.1: updated
1407   * man/fr/dpkg-split.8: updated
1408   * man/fr/dpkg-statoverride.8: updated
1409   * man/fr/install-info.8: updated
1410   * man/fr/start-stop-daemon.8: updated
1411   * man/fr/update-alternatives.8: updated
1413 Mon Oct 11 18:11:54 CEST 2004 Robert Luberda <robert@debian.org>
1415   * po/pl.po: Updated
1417 Mon Oct 11 18:11:54 CEST 2004 Lior Kaplan <webmaster@guides.co.il>
1419   * po/he.po: Added
1421 Mon Oct 11 18:11:54 CEST 2004 Piarres Beobide Egana <pi@beobide.net>
1423   * po/eu.po: Added
1425 Mon Oct 11 18:11:54 CEST 2004 Yongtao Yang <yongtao.yang@telia.com>
1427   * po/zh_CN.po: Added
1429 Mon Oct 11 18:11:54 CEST 2004 Miguel Figueiredo <elmig@debianpt.org>
1431   * po/pt.po: Updated
1433 Mon Oct 11 18:11:54 CEST 2004 Yuri Kozlov <yuray@id.ru>
1435   * po/ru.po: Updated
1437 Mon Oct 11 18:11:54 CEST 2004 Kenshi Muto <kmuto@debian.org>
1439   * po/ja.po: Updated
1441 Mon Oct 11 18:11:54 CEST 2004 Changwoo Ryu <cwryu@debian.org>
1443   * po/ko.po: Updated
1445 Mon Oct 11 18:11:54 CEST 2004 Bart Cornelis <cobaco@linux.be>
1447   * po/nl.po: Updated
1449 Mon Oct 11 18:11:54 CEST 2004 Havard Korsvoll <korsvoll@skulelinux.no>
1451   * po/nn.po: Updated
1453 Mon Oct 11 18:11:54 CEST 2004 Miroslav Kure <kurem@upcase.inf.upol.cz>
1455   * po/cs.po: Updated
1457 Mon Oct 11 18:11:54 CEST 2004 Andre Luis Lopes <andrelop@debian.org> 
1459   * po/pt_BR.po: Updated
1461 Mon Oct 11 18:11:54 CEST 2004 Ruben Porras <nahoo82@telefonica.net>
1463   * man/es/md5sum.1: updated
1464   * man/es/start-stop-daemon.8: updated
1465   * man/es/dpkg-scansources.1: updated
1466   * man/es/dpkg-scanpackages.1: updated
1467   * man/es/update-alternatives.8: updated
1468   * man/es/dpkg-divert.8: updated
1469   * man/es/cleanup-info.8: updated
1470   * man/es/dpkg-checkbuilddeps.1: updated
1471   * man/es/dpkg-split.8: updated
1472   * man/es/dpkg-statoverride.8: updated
1473   * man/es/dpkg.8: updated
1474   * man/es/dselect.8: updated
1475   * man/es/dpkg-source.1: updated
1476   * man/es/dpkg-deb.1: updated
1477   * man/es/dpkg-name.1: updated
1479 Mon Oct 11 18:11:54 CEST 2004 Christian Perrier <bubulle@debian.org>
1481   * configure.in: Added he to ALL_LINGUAS.
1482   * configure.in: Added eu to ALL_LINGUAS.
1483   * configure.in: Added zh_CN to ALL_LINGUAS.
1485 Mon Oct 11 16:33:49 CEST 2004 George Papamichelakis <george@step.gr>
1487   * po/el.po: Added
1489 Mon Oct 11 16:33:49 CEST 2004 Christian Perrier <bubulle@debian.org>
1491   * configure.in: Added el to ALL_LINGUAS.
1493 Mon Jul 19 20:17:09 BST 2004 Scott James Remnant <scott@netsplit.com>
1495   * version-nr, debian/changelog: Bump version to 1.10.24.
1497 Sat Jun 26 18:38:34 CEST 2004 David Weinehall <tao@debian.org>
1499   * scripts/dpkg-buildpackge.sh, scripts/dpkg-name.sh, methods/disk.update,
1500   methods/disk.setup: Change non-POSIX -a and -o test options to shell
1501   && and || for portability.
1503 Sat Jun 26 16:41:31 CEST 2004 Changwoo Ryu <cwryu@debian.org>
1505   * po/ko.po: Updated.
1507 Wed Jun 23 17:57:45 BST 2004 Changwoo Ryu <cwryu@debian.org>
1509   * po/ko.po: Added.
1510   * configure.in: Added ko to ALL_LINGUAS.
1512 Tue Jun 22 17:50:57 BST 2004 Christian Perrier <bubulle@debian.org>
1514   * po/fr.po: Updated.
1516 Tue Jun 22 17:48:22 BST 2004 Claus Hindsgaul <claus_h@image.dk>
1518   * po/da.po: Updated.
1520 Sat Jun 19 23:11:38 BST 2004 Scott James Remnant <scott@netsplit.com>
1522   * dselect/Makefile.in: Remove helpmsgs.h from the GENFILES list so
1523   we don't wipe it on "make clean" (it's not generated anymore).
1525 Fri Jun 18 11:49:21 BST 2004 Ognyan Kulev <ogi@fmi.uni-sofia.bg>
1527   * utils/start-stop-daemon.c: Moved pid_is_running inside OSHURD sentry,
1528   provided Hurd version.  Removed dependency on C99 code and replaced
1529   constructor with an init function.
1531 Fri Jun 18 06:34:43 BST 2004 Scott James Remnant <scott@netsplit.com>
1533   * archtable: Requested the technical committee to make the mentioned
1534   decision -- we're going with amd64 (that'll please my boss :-)
1535   * scripts/dpkg-architecture.pl: Likewise.
1537 Tue Jun 15 19:19:36 BST 2004 Bartosz Fenski aka fEnIo <fenio@o2.pl>
1539   * po/pl.po: Updated.
1541 Mon Jun 14 09:35:30 BST 2004 Ruben Porras <nahoo82@telefonica.net>
1543   * man/es/dpkg-scanpackages.1, man/es/start-stop-daemon.8, 
1544   man/es/dpkg-scansources.1, man/es/dpkg.8, man/es/dpkg-checkbuilddeps.1, 
1545   man/es/dselect.8, man/es/dpkg-deb.1: Updated again from the BTS, for
1546   some reason the previous update lost the foreign characters.
1548 Mon Jun 14 09:12:08 BST 2004 Scott James Remnant <scott@netsplit.com>
1550   * scripts/dpkg-divert.8: Correct typo (ibrary -> library).
1552 Mon Jun 14 08:58:27 BST 2004 Lele Gaifax <lele@nautilus.homeip.net>
1554   * po/it.po: Updated.
1556 Mon Jun 7 17:47:13 CEST 2004 Jordi Mallach <jordi@debian.org>
1558   * po/ca.po: Update Catalan translation.
1560 Thu Jun 3 12:03:49 BRT 2004 Scott James Remnant <scott@netsplit.com>
1562   * archtable, scripts/dpkg-architecture.pl: Remove support for amd64/x86-64,
1563   the porters clearly can't make up their mind what they want.
1565 Wed Jun 2 15:32:47 BRT 2004 Scott James Remnant <scott@netsplit.com>
1567   * version-nr, debian/changelog: Bump version to 1.10.23.
1569 Tue Jun 1 17:42:58 BRT 2004 Scott James Remnant <scott@netsplit.com>
1571   * scripts/Makefile.in: Move dpkg-scanpackages and dpkg-scansources
1572   manpages to section 1.
1573   * scripts/dpkg-scanpackages.8: Renamed to dpkg-scanpackages.1, adjusted
1574   reference to dpkg-scansources.
1575   * scripts/dpkg-scansources.pl: Adjusted reference to dpkg-scanpackages.
1576   * dselect/dselect.8: Adjusted reference to dpkg-scanpackages.
1578   * man/es/Makefile.in: Move dpkg-scanpackages and dpkg-scansources
1579   manpages to section 1.
1580   * man/es/dpkg-scanpackages.8: Renamed to dpkg-scanpackages.1, adjusted
1581   reference to dpkg-scansources.
1582   * man/es/dpkg-scansources.8: Renamed to dpkg-scansources.1,
1584   * man/fr/Makefile.in: Move dpkg-scanpackages and dpkg-scansources
1585   manpages to section 1.
1586   * man/fr/dpkg-scanpackages.8: Renamed to dpkg-scanpackages.1, adjusted
1587   reference to dpkg-scansources.
1588   * man/fr/dpkg-scansources.8: Renamed to dpkg-scansources.1
1590   * man/ja/Makefile.in: Move dpkg-scanpackages and dpkg-scansources
1591   manpages to section 1.
1592   * man/ja/dpkg-scanpackages.8: Renamed to dpkg-scanpackages.1, adjusted
1593   refence to dpkg-scansources.
1594   * man/ja/dpkg-scansources.8: Renamed to dpkg-scansources.1, adjusted
1595   reference to dpkg-scanpackages.
1596   * man/ja/dselect.8: Adjusted references to dpkg-scanpackages.
1598   * man/pt_BR/dselect.8: Adjusted reference to dpkg-scanpackages.
1599   * man/sv/.check.pl: Adjusted reference to dpkg-scanpackages.
1600   * man/sv/dselect.8: Adjusted reference to dpkg-scanpackages.
1602 Tue Jun 1 17:27:50 BRT 2004 Scott James Remnant <scott@netsplit.com>
1604   * scripts/dpkg-shlibdeps.pl: Guard chown call with a check that we're
1605   running as root, if we're not, it's not necessary.
1607 Tue Jun 1 17:23:30 BRT 2004 Scott James Remnant <scott@netsplit.com>
1609   * script/dpkg-source.1: Documented dpkg:Version and dpkg:UpstreamVersion
1610   substvars.
1612 Tue Jun 1 14:52:27 BRT 2004 KISE Hiroshi <kise@fuyuneko.jp>
1614   * man/ja/dpkg-checkbuilddeps.1: Updated.
1615   * man/ja/dpkg-divert.8: Updated.
1617 Tue Jun 1 14:45:47 BRT 2004 Nikolai Prokoschenko <nikolai@prokoschenko.de>
1619   * po/ru.po: Updated.
1621 Tue Jun 1 14:41:30 BRT 2004 Helge Kreutzmann <kreutzm@itp.uni-hannover.de>
1623   * man/de/start-stop-daemon.8: New translation.
1624   * man/de/Makefile.in: Added new manpage.
1626 Tue Jun 1 14:37:52 BRT 2004 Ruben Porras <nahoo82@telefonica.net>
1628   * man/es/dpkg-divert.8: Updated.
1630 Tue Jun 1 13:53:29 BRT 2004 Lele Gaifax <lele@nautilus.homeip.net>
1632   * po/it.po: Updated.
1634 Mon May 31 20:44:21 BRT 2004 Scott James Remnant <scott@netsplit.com>
1636   * archtable: Change amd64 to x86-64 or x86_64 to match the GNU strings
1637   until someone better than me makes a real decision about this.
1638   * scripts/dpkg-architecture.pl: Likewise.
1640 Mon May 31 12:48:35 BRT 2004 Michal Cihar <michal@cihar.com>
1642   * dpkg-deb/extract.c: Swap %zi and %ld in printf expression.
1643   * split/info.c: Correct %zi and %lu in printf expression.
1644   * split/main.c: Include missing sys/types.h and sys/stat.h headers.
1646 Sun May 30 19:51:52 BRT 2004 Robert Millan <zeratul2@wanadoo.es>
1648   * archtable: Change i386-kfreebsd-gnu to kfreebsd-i386 and add
1649   i386-knetbsd-gnu.
1650   * scripts/dpkg-archtable.pl: Return i386-freebsd for freebsd-i386 and
1651   i386-kfreebsd-gnu for kfreebsd-i386 instead.  Add knetbsd-i386.
1652   * configure.in: Identify knetbsd-gnu.
1654 Fri May 28 18:45:26 BRT 2004 Steinar H. Gunderson <sesse@dessverre.samfundet.no>
1656   * main/depcon.c: Colour packages as we check them for break cycles to
1657   reduce the amount of recursion required to break a cycle.
1658   * include/dpkg-deb.h, lib/database.c: Add colour to the package structure.
1659   * main/main.h, main/configure.c, main/remove.c: Remove second
1660   argument from findbreakcycle() function.
1662 Wed May 26 23:05:01 BRT 2004 Ognyan Kulev <ogi@fmi.uni-sofia.bg>
1664   * utils/start-stop-daemon.c: On hurd, proc_stat_set_flags may return
1665   NULL as Hurd can have processes with no uid, replace ihash_iterate
1666   with HURD_IHASH_ITERATE.
1668 Sat May 22 15:28:33 CEST 2004  Tollef Fog Heen  <tfheen@debian.org>
1670   * utils/md5sum.1: s/asterix/asterisk/.  Thanks to Matt Zimmermann for
1671   noticing this.
1673 Wed May 12 23:25:16 CEST 2004  Tollef Fog Heen  <tfheen@debian.org>
1675   * main/packages.c: Apply patch from Daniel Kobras to disappear empty
1676   packages that are replaced in the same run.
1678 Fri May 7 04:46:01 BST 2004 Scott James Remnant <scott@netsplit.com>
1680   * doc/Makefile.in: Ensure that $(docdir) exists before attempting
1681   to install the ChangeLog there.
1683 Fri May 7 01:21:49 BST 2004 Scott James Remnant <scott@netsplit.com>
1685   * dselect/pkginfo.cc: Replace &c. with the slightly clearer etc.
1687   * main/dpkg.8: Update from sgml, document --force-bad-verify.
1688   * main/dpkg-query,8: Correct --list documentation, without pattern it
1689   searches status not available.
1690   * scripts/dpkg-divert.8: Remove obsolete reference to the Debian Packaging
1691   Manual.
1692   * scripts/dpkg-source.1: Rather than keeping dpkg-source(1) always up to
1693   date with the -i option, document the intent of the default.
1694   * scripts/dpkg-statoverride.8: Correct typo and documentation of --update.
1695   * scripts/update-alternatives.8: Correct documentation of --install
1696   and --remove actions.
1697   * man/en/dpkg.8.sgml: Add missing </para> from last commit.
1698   * utils/start-stop-daemon.c: Correct typo.
1699   * utils/start-stop-daemon.8: Correct --pidfile documentation and mention
1700   what happens if you don't supply it; document that it will chdir("/")
1701   unless -d is specified.
1703   * dpkg-deb/dpkg-deb.1, main/dpkg.8, main/dpkg-query.8, scripts/cleanup-info.8,
1704   scripts/dpkg-checkbuilddeps.1, scripts/dpkg-divert.8, scripts/dpkg-name.1,
1705   scripts/dpkg-scanpackages.8, scripts/dpkg-source.1,
1706   scripts/dpkg-statoverride.8, scripts/install-info.8,
1707   scripts/update-alternatives.8, split/dpkg-split.8, utils/md5sum.1,
1708   utils/start-stop-daemon.8: Correct manpage hyphenation for those in a
1709   UTF-8 locale.
1711 Fri May 7 01:13:36 BST 2004 Scott James Remnant <scott@netsplit.com>
1713   * man/en/dpkg.8.sgml: Add a new Additional Functionality section at the
1714   bottom where we can refer readers to other packages that provide the
1715   functionality they may be looking for.  Suggest aptitude and debsums.
1717 Fri May 7 00:55:39 BST 2004 Scott James Remnant <scott@netsplit.com>
1719   * man/en/dpkg.8.sgml: Document dselect update alongside --update-avail.
1721 Fri May 7 00:47:39 BST 2004 Geoff Richards <qef@rosies-dumplings.co.uk>
1723   * scripts/dpkg-source.1: Suggest 'fakeroot' for the dpkg-source -r command.
1725 Fri May 7 00:42:44 BST 2004 Scott James Remnant <scott@netsplit.com>
1727   * main/main.c: Suggest 'aptitude' as well as 'dselect' now that
1728   d-i installs it.
1730 Fri May 7 00:39:01 BST 2004 Christian Perrier <bubulle@debian.org>
1732   * po/fr.po: Updated French translation.
1734 Fri May 7 00:04:28 BST 2004 Scott James Remnant <scott@netsplit.com>
1736   * lib/parsehelp.c, scripts/dpkg-source.pl, scripts/cl-debian.pl: Remove
1737   restriction that package names be at least two characters long.
1739 Thu May 6 23:57:52 BST 2004 Andrew Shugg <andrew@neep.com.au>
1741   * utils/md5sum.c: Add support for DOS line-endings (\r\n).
1743 Thu May 6 23:52:28 BST 2004 Daniel Kobras <kobras@debian.org>
1745   * archtable: Add ia64-unknown-linux-gnu.
1747 Thu May 6 23:50:17 BST 2004 Daniel Kobras <kobras@debian.org>
1749   * main/enquiry.c: Remove dereference of unitialised and unused pointer
1750   variable, fixing segfault on when "gcc -dumpmachine" returns a
1751   non-matching triplet.
1753 Thu May 6 23:44:55 BST 2004 Colin Watson <cjwatson@debian.org>
1755   * dselect/helpmsgs.cc: Pressing 'n' repeats the last search, not
1756   moves down; pressing 'p' does nothing.
1758 Thu May 6 23:39:59 BST 2004 Helge Kreutzmann <kreutzm@itp.uni-hannover.de>
1760   * man/de/Makefile.in: Install update-alternatives.8
1761   * man/de/update-alternatives.8: Translated into German.
1763 Thu May 6 23:23:10 BST 2004 Scott James Remnant <scott@netsplit.com>
1765   * utils/md5sum.1, man/es/md5sum.1, man/de/md5sum.1, men/ja/md5sum.1:
1766   Correct "et al" to "et al."
1767   * main/main.c, man/en/dpkg.8.sgml: Correct description of
1768   --compare-versions command to describe versions as "empty" rather
1769   than "missing" or "no version" as "" has to be passed.
1770   * man/en/dpkg.8.sgml: Add dpkg-reconfigure(8) to SEE ALSO section.
1771   * utils/start-stop-daemon.8: Move documentation of --retry to the
1772   paragraph about --stop where it belongs.
1773   * scripts/update-alternatives.8: Remove strange &quot; usage and
1774   replace with appropriate .BR.
1776 Sun May  2 10:22:25 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
1778   * scripts/dpkg-scanpackages.pl: Give proper case for Origin and
1779     Bugs.
1781 Sun May  2 10:04:25 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
1783   * scripts/controllib.pl: Fix unknown() so it actually manages to pick
1784     out the correct field name.
1786 Fri Apr 30 11:20:13 CEST 2004 Jordi Mallach <jordi@debian.org
1788   * po/ca.po: Update Catalan translation.
1790 Tue Apr 27 21:49:25 BST 2004 Ruben Porras <nahoo82@telefonica.net>
1792   * man/es/dpkg-scansources.8: Added Spanish manpage.
1793   * man/es/Makefile.in: Install it.
1795 Tue Apr 27 19:47:37 BST 2004 Scott James Remnant <scott@netsplit.com>
1797   * scripts/dpkg-architecture.pl (rewrite_gnu): Add a new regexp for
1798   parsing i386-gnu style triplets on the Hurd.
1800 Tue Apr 27 19:23:01 BST 2004 Scott James Remnant <scott@netsplit.com>
1802   * main/dpkg.8: Correct reference to non-existant --force-reinstreq
1803   option to --force-remove-reinstreq.
1805 Tue Apr 27 19:01:28 BST 2004 Ruben Porras <nahoo82@telefonica.net>
1807   * man/es/start-stop-daemon.8, man/es/dselect.8, man/es/dpkg.8,
1808   man/es/dpkg-checkbuilddeps.8, man/es/dpkg-deb.1,
1809   man/es/dpkg-scanpackages.8: Updated Spanish manpages.
1811 Mon Apr 26 20:28:58 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
1813   * scripts/dpkg-architecture.pl, archtable: Add AMD64/x86_64 support.
1814     Also reindent archtable so the columns line up nicely.
1816 Mon Apr 26 18:53:15 BST 2004 Scott James Remnant <scott@netsplit.com>
1818   * configure.in: Put the man page directories in alphabetical order.
1819   * man/Makefile.in: Likewise
1820   * debian/rules: Extract manual page directories from Makefile.in and
1821   use that list instead of hardcoding them.
1823 Sun Apr 25 19:00:20 BST 2004 Scott James Remnant <scott@netsplit.com>
1825   * version-nr, debian/changelog: Bump version to 1.10.22.
1827 Sun Apr 25 18:02:34 BST 2004 Scott James Remnant <scott@netsplit.com>
1829   * scripts/install-info.pl: Add --dir-file option for compatibility
1830   with GNU install-info.  Correct code to break infinite loop.
1832 Sun Apr 25 17:57:46 BST 2004 Scott James Remnant <scott@netsplit.com>
1834   * scripts/dpkg-divert.8: Document that diverting shared libraries
1835   can be troublesome when combined with ldconfig.
1837 Sun Apr 25 17:53:06 BST 2004 Scott James Remnant <scott@netsplit.com>
1839   * scripts/dpkg-checkbuilddeps.1: This script no longer checks for
1840   build-essential, so don't document that it does.
1842 Sun Apr 25 17:45:47 BST 2004 Scott James Remnant <scott@netsplit.com>
1844   * scripts/dpkg-genchanges.pl: Group the -o expression to find
1845   using braces.
1847 Sun Apr 25 17:17:16 BST 2004 Scott James Remnant <scott@netsplit.com>
1849   * man/es/Makefile.in: Add new dpkg-source.1 manpage.
1851 Sun Apr 25 17:08:57 BST 2004 Scott James Remnant <scott@netsplit.com>
1853   * man/ja/Makefile.in: Add new dpkg-source.1 manpage.
1855 Sun Apr 25 16:59:09 BST 2004 Scott James Remnant <scott@netsplit.com>
1857   * configure.in: Add Norwegian Nynorsk and Portugese linguas.
1859 Sun Apr 25 12:27:38 CEST 2004  Tollef Fog Heen  <tfheen@debian.org>
1861   * main/archive.c: make block and char devices work properly when
1862     extracting.  mknod can create other kinds of devices than just char
1863     and block devices, so we need to pass the type of device to mknod in
1864     the mode argument.
1866 Sun Apr 25 00:46:38 CEST 2004  Tollef Fog Heen  <tfheen@debian.org>
1868   * split/mksplit.pl: cut off anything after the first piece of whitespace
1869     when getting the md5sum, since we now get a different-formatted md5sum
1870     back.  (It now has a trailing dash.)
1872 Sun Apr 25 00:23:27 CEST 2004  Tollef Fog Heen  <tfheen@debian.org>
1874   * lib/dump.c: Terminate buffer in order to not display garbage when
1875     displaying dependency fields.
1876         
1877 Sun Apr 25 00:12:27 CEST 2004  Tollef Fog Heen  <tfheen@debian.org>
1879   * main/query.c, dpkg-deb/main.c: Fix up the query format to be
1880     consistent with what the library expects.  Remove the pkg: prefix from
1881     the default showformat.
1882         
1883 Sun Apr 25 00:06:27 CEST 2004  Tollef Fog Heen  <tfheen@debian.org>
1885   * scripts/dpkg-statoverride.pl: Make sure the permissions passed to
1886     dpkg-statoverride are numeric.
1888 Sat Apr 24 23:11:12 CEST 2004  Tollef Fog Heen  <tfheen@debian.org>
1890   * include/dpkg.h.in, lib/ehandle.c, lib/myopt.c: Failed opening of
1891     configuration files are no longer a fatal error.  Thanks to Max
1892     Vozeler <max@hinterhof.net> for the patch.
1894 Mon Apr 19 12:24:40 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
1896   * scripts/dpkg-shlibdeps.pl: Set LC_ALL to C before spawning off dpkg
1897   --search, to avoid searching on localized strings.
1899 Sun Mar 28 18:32:19 CEST 2004 Jordi Mallach <jordi@debian.org>
1901   * po/ca.po: Update Catalan translation.
1903 Fri Mar 12 19:02:21 GMT 2004 Scott James Remnant <scott@netsplit.com>
1905   * main/remove.c (removal_bulk_remove_configfiles): Don't change the
1906   "previous pointer" pointer if we remove the node from the linked list,
1907   ensuring that if the next node is to be removed the right thing will
1908   happen.
1910   This corrects the bug where every second shared or diverted conffile
1911   would be incorrectly deleted by dpkg.
1913 Fri Mar 12 15:05:52 GMT 2004 Scott James Remnant <scott@netsplit.com>
1915   * utils/start-stop-daemon.c: Don't require an argument for -V (version).
1917 Thu Mar 11 11:36:06 GMT 2004 Scott James Remnant <scott@netsplit.com>
1919   * version-nr, debian/changelog: Bump version to 1.10.21.
1921 Thu Mar 11 11:23:09 GMT 2004 Scott James Remnant <scott@netsplit.com>
1923   * man/ja/Makefile.in: Add new pages to Makefile.in so they get
1924   installed.
1926 Thu Mar 11 11:18:29 GMT 2004 Scott James Remnant <scott@netsplit.com>
1928   * scripts/dpkg-buildpackage.sh: Revert change suggested by Javier
1929   Fernandez-Sanguino Pena, and don't echo a blank line when dealing
1930   with PGP.  PGP itself will fail if we do this, it's needed to
1931   satisfy pgpgp, which quite frankly is a bug in pgpgp's emulation
1932   of pgp.
1933   
1934 Thu Mar  8 01:10:00 CEST 2004  Tollef Fog Heen  <tfheen@debian.org>
1936   * po/pt_BR.po: Fix typo.
1938 Thu Mar  8 01:10:00 CEST 2004  Tollef Fog Heen  <tfheen@debian.org>
1940   * man/de/md5sum.1: Fix spelling error as per patch in #230750
1942 Thu Mar  8 01:00:00 CEST 2004  Tollef Fog Heen  <tfheen@debian.org>
1944   * man/fr/dpkg-source.1 man/fr/update-alternatives.8
1945   man/fr/start-stop-daemon.8 man/fr/dpkg.8 man/fr/dpkg-query.8
1946   man/fr/deb-control.5 man/fr/dpkg-scanpackages.8: Update French translation
1947   per patches in #218713 
1949 Thu Mar  8 00:54:00 CEST 2004  Tollef Fog Heen  <tfheen@debian.org>
1951   * man/ja/{dpkg-architecture.1,dpkg-query.8,dselect.8}:  Update Japanese
1952     translation.  Closes: #224616
1954 Thu Mar  8 00:38:00 CEST 2004  Tollef Fog Heen  <tfheen@debian.org>
1956   * release.sh: Remove .svn directories as well.
1958 Mon Mar  8 19:37:00 GMT 2004 Scott James Remnant <scott@netsplit.com>
1960   * version-nr, debian/changelog: Bump version to 1.10.20.
1962 Mon Mar  8 19:02:25 GMT 2004 Andrew Suffield <asuffield@debian.org>
1964   * utils/md5sum.c: Check the bounds of the line before processing.
1966 Mon Mar  8 18:55:13 GMT 2004 Brian M. Carlson <sandals@crustytoothpaste.ath.cx>
1968   * utils/md5sum.c: Don't print offending lines as they may not be NULL
1969   terminated.
1971 Mon Mar  8 18:34:16 GMT 2004 Goswin Brederlow <brederlo@informatik.uni-tuebingen.de>
1973   * lib/parse.c, main/processarc.c: Store Architecture in the status file
1974   and don't remove it when processing.  This is a first step towards
1975   multi-arch support in a future release of Debian.
1977 Mon Mar  8 18:28:07 GMT 2004 Robert Millan <rmh@debian.org>
1979   * archtable, configure.in, scripts/dpkg-architecture.pl: Update
1980   support for Debian FreeBSD.
1982 Mon Mar  8 18:20:38 GMT 2004 Javier Fernandez-Sanguino Pena <jfs@computer.org>
1984   * scripts/dpkg-buildpackage.sh: Add blank line to .dsc before
1985   signing with PGP.
1987 Mon Mar  8 18:10:06 GMT 2004 Scott James Remnant <scott@netsplit.com>
1989   * debian/control: Remove duplicated uploaders field and add myself
1990   to the one that's left.
1992 Mon Mar  8 16:49:13 GMT 2004 Christian Haggstrom <chm@c00.info>
1994   * lib/mlib.c: Remove extraneous %s in ohshite() call when out of
1995   disk space so that condition gets handled correctly and not with
1996   a SEGV.
1998 Mon Mar  8 10:14:27 GMT 2004 Colin Watson <cjwatson@debian.org>
2000   * dselect/methlist.cc, dselect/pkgdisplay.cc: Set the total display width
2001   to the maximum of TOTAL_LIST_WIDTH and COLS, improving display on wide
2002   terminals.
2004 Thu Mar  4 13:28:11 GMT 2004 Scott James Remnant <scott@netsplit.com>
2006   * lib/tarfn.c: Copy the Name and LinkName elements and ensure they
2007   are NULL-terminated, freeing these copies before returning.  The
2008   tar spec doesn't require a NULL byte if the filename is exactly
2009   100 characters long.
2011 Sun Feb 29 21:56:25 GMT 2004 Scott James Remnant <scott@netsplit.com>
2013   * scripts/dpkg-checkbuilddeps.pl: Push build-conflicts errors into
2014   @conflicts instead of @unmet, this looks like an accidental error
2015   introduced by bad copy&pasteing.
2017 Mon Mar  8 17:26:06 GMT 2004 Scott James Remnant <scott@netsplit.com>
2019   * debian/changelog, version-nr: Bump to 1.10.19.
2021 Thu Feb 26 01:48:15 GMT 2004 Scott James Remnant <scott@netsplit.com>
2023   * main/processarc.c (process_archive): Copy code from main/remove.c
2024   to ensure that hardlinks to devices, setuid files or setgid files
2025   cannot be stashed away in the hope that they become compromisable
2026   in the future.  This was handled when removing a package, but not
2027   when upgrading one.
2029 Thu Feb 26 01:23:13 GMT 2004 Scott James Remnant <scott@netsplit.com>
2031   * version-nr: Bump to 1.10.18.1
2033 Mon Feb 23 22:46:21 GMT 2004 Scott James Remnant <scott@netsplit.com>
2035   * dpkg-deb/main.c: Clean up previous badly applied multiline string
2036     patch.
2038 Mon Feb 23 01:30:13 CET 2004 Steinar H. Gunderson <sesse@debian.org>
2040   * main/remove.c: Terminate string buffer correctly.
2042 Fri Feb 20 10:22:24 CET 2004 Colin Watson <cjwatson@debian.org>
2044   * dpkg-deb/main.c: Don't use multiline strings (a removed GCC extension).
2046 Tue Jan 27 20:08:12 CST 2003 Adam Heath <doogie@debian.org>
2048   * debian/control: Update dpkg conflicts to << 1.10, instead of 1.9.
2050 Mon Oct 27 13:39:56 CST 2003 Adam Heath <doogie@debian.org>
2052   * version-nr, debian/changelog: Rebuild, tagging and releasing correctly
2053     from cvs this time.
2055 Mon Oct 27 13:01:12 CST 2003 Adam Heath <doogie@debian.org>
2057   * scripts/dpkg-gencontrol.pl: Fix errors with dependency fields that
2058     reference ${dpkg:Version}.
2060 Mon Oct 27 18:45:19 CET 2003 Jordi Mallach <jordi@debian.org>
2062   * po/ca.po: Update Catalan translation and recode to UTF-8.
2064 Mon Oct 27 11:06:25 CST 2003 Adam Heath <doogie@debian.org>
2066   * debian/dpkg.postinst: Don't assume /usr/info/dir exists if /usr/info
2067     does.
2069 Mon Oct 27 10:57:54 CST 2003 Adam Heath <doogie@debian.org>
2071   * scripts/dpkg-source.pl: Add .#* to the default ignore filter.
2073 Mon Oct 27 09:49:29 CST 2003 Adam Heath <doogie@debian.org>
2075   * scripts/dpkg-scanpackages.pl: Add -u -a<arch> commands.
2077 Mon Oct 27 09:42:57 CST 2003 Adam Heath <doogie@debian.org>
2079   * scripts/dpkg-checkbuilddeps.pl: Set $reduce_arch when calling parsedep.
2081 Sun Oct 26 19:29:16 CST 2003 Adam Heath <doogie@debian.org>
2083   * scripts/dpkg-checkbuilddeps.pl: s/dpkg-checkbuild/dpkg-checkbuilddeps/
2084     in usage.
2085   * version-nr: Bump to 1.10.17.
2086   * debian/changelog: Make the date UNRELEASED.
2088 Sun Oct 26 14:55:53 CET 2003 Wichert Akkerman <wichert@wiggy.net>
2090   * dselect/pkgdepcon.cc: change return value for pkgdepcon() to indicate
2091     a conflict resolution is needed when dealing with autoselected
2092     recommends
2094 Sat Oct 25 15:46:16 CDT 2003 Adam Heath <doogie@debian.org>
2096   * debian/changelog: Tag for 1.10.16 release date(for real this time).
2098 Sat Oct 25 15:45:48 CDT 2003 Adam Heath <doogie@debian.org>
2100   * scripts/install-info.pl: Change formatting of info.dir.
2102 Sat Oct 25 15:04:41 CDT 2003 Adam Heath <doogie@debian.org>
2104   * lib/mlib.c, include/dpkg.h.in, utils/md5sum.c: Change limit and the
2105     return value for buffer_copy to off_t, which fixes large file handling.
2107 Sat Oct 25 15:02:27 CDT 2003 Adam Heath <doogie@debian.org>
2109   * almost all .c files: Almost *EVERY* damn file was including config.h in
2110     the wrong spot.  After making it the first include, then
2111     off_t/size_t/etc could actually be redefined to be 64-bit compatible.
2113 Sat Oct 25 12:47:22 CDT 2003 Adam Heath <doogie@debian.org>
2115   * scripts/dpkg-checkbuilddeps.pl: Fix dpkg-checkbuilddeps calling of
2116     parsedep.  It wasn't setting use_arch.
2118 Tue Sep 23 12:20:35 CDT 2003 Adam Heath <doogie@debian.org>
2120   * configure.in: Add man/es/Makefile.
2121   
2122 Tue Sep 23 12:12:38 CDT 2003 Adam Heath <doogie@debian.org>
2124   * debian/changelog: Set release date for 1.10.16.
2126 Sat Sep 20 21:17:45 CDT 2003 Adam Heath <doogie@debian.org>
2128   * utils/md5sum.c: Fix handling of large files.
2130 Sat Sep 20 20:42:35 CDT 2003 Adam Heath <doogie@debian.org>
2132   * man/*
2133     * Imported several translated manpages, from debian-doc cvs:
2134      * Spanish: 822-date.1 cleanup-info.8 deb-control.5 deb-old.5
2135        deb.5 dpkg-checkbuilddeps.1 dpkg-deb.1 dpkg-divert.8 dpkg-name.1
2136        dpkg-scanpackages.8 dpkg-split.8 dpkg-statoverride.8 dpkg.8
2137        dselect.8 md5sum.1 start-stop-daemon.8 update-alternatives.8
2138      * French: deb.5
2139      * Portuguese: dpkg.8 dselect.8
2140   * main/dpkg.8: -O had an inverted word.
2141   * po/cz.po: Improve translation of: "dpkg - warning: ignoring request to
2142     remove %s which isn't installed."
2143   * po/it.po: Fix missing space in translation when listing files, and the
2144     file is diverted.
2145   * po/pl.po:
2146     * Updated.
2147     * Fix translation of 'conflicts with'
2148   * po/ja.po: Fix typo in translation of dpkg --force-help; dowgrade ->
2149     downgrade
2150   * po/fr.po:
2151     * Fix translation when listing files, and the file is diverted.
2152     * Fix missing space in translation of: "%s - warning: downgrading %.250s
2153       from %.250s to %.250s.\n"
2154   * po/da.po: Fix translation of(was missing the leading space): " does not
2155     appear to be available\n"
2157 Sat Sep 20 18:45:11 CDT 2003 Adam Heath <doogie@debian.org>
2159   * utils/start-stop-daemon.[c8]:
2160     * Add a -d|--chdir option to start-stop-daemon.
2161     * Split the background block into 2 parts: one that does the fork, and
2162       opens /dev/tty and /dev/null, and one that does everything else.  The
2163       second block is then moved to be run right before the exec.  This
2164       allows error messages to be seen from the child(previously, they were
2165       lost), and allows for the chroot to not require the device files.
2166     * When --start, --startas and --pidfile are given, print 'process'
2167       instead of '(null)' for the process name, if it's already running.
2169 Sat Sep 20 17:44:40 CDT 2003 Adam Heath <doogie@debian.org>
2171   * configure.in, include/dpkg.h.in: Fix (non-)detection of setlocale.
2173 Fri Sep 19 20:02:19 CDT 2003 Adam Heath <doogie@debian.org>
2175   * debian/changelog: Set date/time for 1.10.15 release.
2177 Fri Sep 19 19:56:48 CDT 2003 Adam Heath <doogie@debian.org>
2179   * lib/varbuf.c, configure.in: Fix va_copy detection.
2180   * scripts/dpkg-buildpackage.sh: Back out debian/rules build-arch
2181     detection.  It is *not* possible *at all* to detect available targets
2182     in a rules file.  Period.
2184 Fri Sep 19 12:26:54 CDT 2003 Adam Heath <doogie@debian.org>
2186   * scripts/{controllib,dpkg-{source,checkbuilddeps,control}}.pl:
2187     * Rewrote the parsedep stuff, so that it wasn't done during control 
2188       file parsing.  Scripts that need the internal parsed format should 
2189       call parsedep on the field's value.
2190     * Split the substvars parsing into a separate function.
2191     * No longer validate dependency fields when reading the control file.
2192       Some fields may have vars in them, which breaks the validation.
2193     * dpkg-gencontrol calls substvars after parsing the control file, and
2194       then validates the substituted depends lines.  Originally,
2195       substitution occured only during writing of the final output file.
2196     * Andreas Barth <aba@not.so.argh.org>:
2197       Fix bad regex that didn't allow spaces in dependency field parsing.
2198       It now directly matches what the c code expects.  It previously was
2199       allowing all of \S, which matched on '('.
2200       Closes: #211660.
2201   * debian/control: Remove stale debug that would have broken installation
2202     on s390.
2203   * debian/rules: We were calling our own local copy of dpkg-gencontrol,
2204     but the system-installed copy of dpkg-shlibdeps.  Now, both are called
2205     from the build directory.
2207 Wed Sep 17 13:26:14 CDT 2003 Adam Heath <doogie@debian.org>
2209   * debian/changelog, version-nr: Updated to 1.10.13.
2211 Wed Sep 17 13:23:15 CDT 2003 Adam Heath <doogie@debian.org>
2213   * scripts/controllib.pl: Fix parsing of deps when both () and [] are
2214     specified.
2215   * scripts/controllib.pl: Set $host_arch in controllib.pl:parsedep.
2216   * scripts/dpkg-checkbuilddeps.pl: Don't output the [] stuff when finding
2217     invalid deps.
2219 Tue Sep 16 13:44:06 CDT 2003 Adam Heath <doogie@debian.org>
2221   * scripts/dpkg-source.pl: Fix generation of dependency lines.
2223 Tue Sep 16 13:06:01 CDT 2003 Adam Heath <doogie@debian.org>
2225   * scripts/dpkg-genchanges.pl: Ignore 'o:.*' in %fi.
2227 Tue Sep 16 13:02:10 CDT 2003 Adam Heath <doogie@debian.org>
2229   * scripts/dpkg-source.pl: Ignore 'o:.*' in %fi.
2231 Tue Sep 16 12:57:02 CDT 2003 Adam Heath <doogie@debian.org>
2233   * po/update.sh: Remove helpmsgs.cc generation.
2235 Tue Sep 16 12:52:42 CDT 2003 Adam Heath <doogie@debian.org>
2237   * version-nr, debian/changelog: Updated for 1.10.11 release.
2239 Tue Sep 16 12:50:44 CDT 2003 Adam Heath <doogie@debian.org>
2241   * scripts/update-alternatives.pl: Remove -w, as it causes runtime
2242     warnings.  The code isn't clean enough yet to support it.
2244 Mon Sep 15 19:08:28 CDT 2003 Adam Heath <doogie@debian.org>
2246   * debian/rules: No longer generate any BYHAND files.  Also, fix bug in
2247     pseudo-tags installation.
2249 Mon Sep 15 18:53:06 CDT 2003 Adam Heath <doogie@debian.org>
2251   * debian/rules, debian/pseudo-tags: Install
2252     /usr/share/doc/dpkg/pseudo-tags, which talks about the bug titling we
2253     use to mark bugs for filtering in the Debian bts.
2255 Mon Sep 15 18:48:39 CDT 2003 Adam Heath <doogie@debian.org>
2257   * scripts/dpkg-buildpackage.sh: Call debian/rules -qn build-arch, and if
2258     it's available, modify -B handling appropriately.  If build-arch is not
2259     available, then when -B was called, do *not* pass -B on to
2260     dpkg-checkbuilddeps.
2262 Sun Sep 14 21:45:44 CDT 2003 Adam Heath <doogie@debian.org>
2264   * configure.in: Fix broken os_type detection on linux.
2266 Sun Sep 14 21:44:01 CDT 2003 Adam Heath <doogie@debian.org>
2268   * po/ca.po: Updated.
2270 Sun, 14 Sep 2003 21:16:18 -0500 Adam Heath <doogie@debian.org>
2272   * scripts/controllib.pl, scripts/dpkg-checkbuilddeps.pl: Moved dependency
2273     parsing logic from dpkg-checkbuilddeps.  The dpkg-checkbuilddeps parser
2274     didn't support empty fields, while the controllib parser did.
2275   * scripts/controllib.pl:
2276     * Dependency fields are now parsed into a nested list structure.
2277     * All dependency fields now support [arch] constructs.  Those that
2278       don't apply for the current host_arch are removed during parsing.
2279     * Comment lines(those that start with '#') are ignored during parsing.
2280     * Store the original field's casing with 'o:' prepended in %fi.
2281   * scripts/dpkg-checkbuilddeps.pl:  Because of the above controllib.pl
2282     changes, this script is much simpler now.
2283   * scripts/dpkg-gencontrol.pl:     
2284     * Use the original casing of field names when reporting unknown fields.
2285   * scripts/dpkg-gencontrol.pl, scripts/controllib.pl: After opening files,
2286     set binmode.
2288 Sun Sep 14 17:24:20 CDT 2003 Adam Heath <doogie@debian.org>
2290   * dselect/{Makefile.in,helpmsgs.{cc,h,src},mkhelpmsgs.pl,.cvsignore}:
2291     No longer generate helpmsgs.{cc,h}.
2293 Sun Sep 14 16:53:09 CDT 2003 Adam Heath <doogie@debian.org>
2295   * scripts/update-alternatives.{pl,8}:
2296     * Apply patch that provides --set and --remove-all commands.
2297     * --all calls --config on all alternatives.
2298   * scripts/update-alternatives.pl:
2299     * Alter --config prompt, to be more clear, that one must 'press' enter
2300       to accept the default.
2301     * Fix some -w issues.
2302     * Check whether the target path exists when removing.
2304 Sat Sep 13 20:48:02 CDT 2003 Adam Heath <doogie@debian.org>
2306   * scripts/update-alternatives.8: Add --config to action section, and add
2307     as EXAMPLES section.
2308   * scripts/install-info.pl: install-info --version and --help now display
2309     on stdout.
2310   * main/dpkg{,-query}.8: Mention what -S will not find.
2311   * main/dpkg.8: Mention that downgrading a package can have serious
2312     consequences.
2313   * scripts/dpkg-scanpackages.8: Include small note that other tools might
2314     use the generated Packages file.
2315   * scripts/dpkg-source.1: Fix some typos.
2316   * dselect/dselect.8: dselect is not the only interface for installing
2317     packages nowadays.
2318   * utils/start-stop-daemon.8: Note that --nicelevel takes an argument.
2319   * man/en/deb-control.8: Remove duplicate 'can'.
2320   * scripts/dpkg-scansources.pl: Fix short description.
2321   * main/dpkg.8: Move dpkg-query options to their own subsection, like
2322     dpkg-deb.
2323   * main/main.c, main/dpkg.8: Add --dry-run and --simulate as synonyms to
2324     --no-act.
2325   * scripts/dpkg-architecture.pl: Fix wrong reference to
2326     DEB_BUILD_GNU_SYSTEM on --host
2327   * man/en/deb-control.5: s/Usuaully/Usually/
2328   * dselect/dselect.8: Removed reference in dselect(8) about recommends not
2329     being handled well.
2330   * scripts/dpkg-parsechangelog.pl: s/dpkg-source/dpkg-parsechangelog/ in
2331     -h
2332   * scripts/dpkg-source.1: Unhighlight "May be repeated multiple times."
2333   * dpkg-deb/main.c: Make all actions in -h lower case.
2334   * utils/start-stop-daemon.[c8]: Add -g|--group.
2335   * main/dpkg.8: s/THANKS/THANKS.gz/
2336   * main/dpkg.8: Mention running dselect, install after --set-selections.
2337   * main/main.c: Remove disabled --command-fd from help.
2339 Sat Sep 13 18:42:27 CDT 2003 Adam Heath <doogie@debian.org>
2341   * Makefile.conf.in, archtable, configure.in, dselect/Makefile.in,
2342     lib/varbuf.c, scripts/dpkg-{architecture,shlibdeps}.pl,
2343     utils/start-stop-daemon.c: Support OpenBSD.
2345 Sat Sep 13 18:39:41 CDT 2003 Adam Heath <doogie@debian.org>
2347   * archtable: Added alphaev68-linux-gnu to archtable.
2349 Sat Sep 13 17:18:46 CDT 2003 Adam Heath <doogie@debian.org>
2351   * scripts/dpkg-source.pl: Add .svn, {arch}, and .arch-ids to dpkg-source
2352     -i default regex.
2354 Sat Sep 13 16:34:53 CDT 2003 Adam Heath <doogie@debian.org>
2356   * lib/parse.c: Change use of strncpy in parsedb to memcpy.
2358 Sat Sep 13 16:28:52 CDT 2003 Adam Heath <doogie@debian.org>
2360   * main/main.c: Fix segfault with --status-fd.
2362 Sat Sep 13 16:26:36 CDT 2003 Adam Heath <doogie@debian.org>
2364   * scripts/dpkg-source.pl: Add .cvsignore to dpkg-source's default diff
2365     ignore regex.  Also fix missing \ escape for .deps.
2367 Sat Sep 13 16:16:52 CDT 2003 Adam Heath <doogie@debian.org>
2369   * main/remove.c: Retry removing empty dirs during purge.
2371 Sat Sep 13 16:09:13 CDT 2003 Adam Heath <doogie@debian.org>
2373   * main/filesdb.c: Increase filesdb bin size, and alter hashing function.
2375 Sat Sep 13 16:04:37 CDT 2003 Adam Heath <doogie@debian.org>
2377   * scripts/dpkg-statoverride.pl: Fix "stripping trailing /" message from
2378     dpkg-statoverride.
2380 Sat Sep 13 15:56:13 CDT 2003 Adam Heath <doogie@debian.org>
2382   * automake/tools.m4, dselect/Makefile.in, methods/disk.setup,
2383     scripts/dpkg-parsechangelog.pl, scripts/dpkg-source.pl: Apply patch to
2384     make dpkg work with POSIX 1003.1-2001.
2386 Sat Sep 13 15:40:39 CDT 2003 Adam Heath <doogie@debian.org>
2388   * lib/database.c: Apply patch to change hashing function, and increase
2389     bin size, for the package database.
2391 Sat Sep 13 15:20:56 CDT 2003 Adam Heath <doogie@debian.org>
2393   * lib/enquiry.c, scripts/dpkg-architecture.pl: dpkg --print-architecture
2394     now does gcc -dumpmachine instead of --print-libgcc-file-name.
2396 Sat Sep 13 14:38:55 CDT 2003 Adam Heath <doogie@debian.org>
2398   * debian/dpkg-doc.postinst: Add set -e.
2400 Sat Sep 13 14:36:37 CDT 2003 Adam Heath <doogie@debian.org>
2402   * lib/parse.c: Fix inverted test of eof in parsedb, while looking for eof
2403     after field name.
2405 Sat Sep 13 14:34:10 CDT 2003 Adam Heath <doogie@debian.org>
2407   * scripts/update-alternatives.pl: Fix inversion test of $state against
2408     'expected' when removing an alternative.
2410 Sat Sep 13 14:31:22 CDT 2003 Adam Heath <doogie@debian.org>
2412   * lib/startup.c, lib/Makefile.in, include/dpkg.h.in: Change
2413     standard_startup and standard_shutdown into macros.
2415 Sat Sep 13 14:24:14 CDT 2003 Adam Heath <doogie@debian.org>
2417   * scripts/install-info.pl: Apply patch, to handle missing infodir.bak,
2418     and empty files.
2420 Sat Sep 13 14:21:13 CDT 2003 Adam Heath <doogie@debian.org>
2422   * config.sub, config.guess: Updated
2424 Sat Sep 13 14:20:12 CDT 2003 Adam Heath <doogie@debian.org>
2426   * debian/control: Add build-depends on sgml-base, and increase
2427     gettext build-depends to 0.12.1-3.
2429 Sat Sep 13 14:18:02 CDT 2003 Adam Heath <doogie@debian.org>
2431   * configure.in:
2432     * Change AC_SYS_SIGLIST_DECLARED to AC_DECL_SYS_SIGLIST.
2433     * Add locale.h to list of checked headers.
2434     * Pass external to AM_GNU_GETTEXT
2436 Sat Sep 13 13:57:22 CDT 2003 Adam Heath <doogie@debian.org>
2438   * Makefile.conf.in: s/top_srcdir/abs_top_srcdir/
2440 Sat Sep 13 13:56:23 CDT 2003 Adam Heath <doogie@debian.org>
2442   * lib/compat.c: s/SYS_SIGLIST_DECLARED/HAVE_DECL_SYS_SIGLIST/
2444 Sat Sep 13 13:55:25 CDT 2003 Adam Heath <doogie@debian.org>
2446   * po/Makevars: Define MSGID_BUGS_ADDRESS
2448 Fri, 12 Sep 2003 17:15:33 +0200 Wichert Akkerman <wichert@deephackmode.org>
2450   * srcipts/dpkg-source.pl: allow ~ in version numbers
2452 Sat Apr 26 15:10:24 CDT 2003 Adam Heath <doogie@debian.org>
2454   * version-nr, debian/changelog: Updated for 1.10.10 release.
2456 Sat Apr 26 15:09:10 CDT 2003 Adam Heath <doogie@debian.org>
2458   * debian/control: Updated to standards-version 3.5.8.
2459   * debian/{dpkg,{-dev,-doc},dselect}.{prerm,postinst}, debian/rules: No
2460     longer manage /usr/doc symlinks.
2462 Sat Apr 26 14:28:17 CDT 2003 Adam Heath <doogie@debian.org>
2464   * .cvsignore, po/.cvsignore: Added generated/symlinked files.
2466 Sat Apr 26 14:24:05 CDT 2003 Adam Heath <doogie@debian.org>
2468   * mkinstalldirs: removed, as this is generated.
2470 Sat Apr 26 14:22:16 CDT 2003 Adam Heath <doogie@debian.org>
2472   * po/Makevars: Needed to work with the newer gettext.
2474 Sat Apr 26 11:29:30 CDT 2003 Adam Heath <doogie@debian.org>
2476   * configure.in, Makefile.in: Updated for gettext 0.11.5.
2477   * po/*: Updated.
2479 Tue Apr 15 11:32:22 CDT 2003 Adam Heath <doogie@debian.org>
2481   * archtable, utils/start-stop-daemon.c,  scripts/dpkg-architecture.pl:
2482     Add netbsd support.
2483   * scripts/dpkg-architecture.pl: Support hypenated values.
2485 Tue Apr 15 01:05:04 CDT 2003 Adam Heath <doogie@debian.org>
2487   * config.sub, config.guess: Updated.
2489 Tue Apr 15 00:48:06 CDT 2003 Adam Heath <doogie@debian.org>
2491   * debian/control, debian/rules, debian/changelog: Modified to use
2492     autotools-dev.
2494 Tue Apr 15 00:35:40 CDT 2003 Adam Heath <doogie@debian.org>
2496   * scripts/dpkg-statoverride.pl: Strip trailing / from the file args in
2497     dpkg-statoverride.
2499 Tue Apr 15 00:26:06 CDT 2003 Adam Heath <doogie@debian.org>
2501   * Makefile.in: Surround sed call with ''.
2503 Tue Apr 15 00:16:44 CDT 2003 Adam Heath <doogie@debian.org>
2505   * debian/control: Make the dpkg-iasearch conflicts versioned.
2507 Mon Apr 14 21:13:04 CDT 2003 Adam Heath <doogie@debian.org>
2509   * archtable: Updated for hurd.
2511 Sun Sep 15 13:25:29 CDT 2002 Adam Heath <doogie@debian.org>
2513   * scripts/dpkg-architecture.pl: Add s390x.
2515 Sun Sep 15 13:21:38 CDT 2002 Adam Heath <doogie@debian.org>
2517   * debian/changelog: Set date for 1.10.9 release.
2519 Sun Sep 15 13:19:40 CDT 2002 Adam Heath <doogie@debian.org>
2521   * archtable: Add s390x.
2523 Sun Sep 15 12:48:36 CDT 2002 Adam Heath <doogie@debian.org>
2525   * main/help.c: Fix dereference in cu_closefd(), which was the cause of
2526     close(random number) on most arches, but close(0) on s390x.
2528 Sun Sep 15 12:43:00 CDT 2002 Adam Heath <doogie@debian.org>
2530   * version-nr, debian/changelog: Set 1.10.9 version.
2532 Thu Sep  5 16:32:01 CDT 2002 Adam Heath <doogie@debian.org>
2534   * debian/changelog: Set date for 1.10.8 release.
2536 Thu Sep  5 16:31:11 CDT 2002 Adam Heath <doogie@debian.org>
2538   * scripts/install-info.pl: Make the multiline regex have an upper bound,
2539     instead of being unbounded, as newer perls have a larger stack frame,
2540     which cause them to segfault quicker with larger inputs.
2542 Thu Sep  5 16:29:39 CDT 2002 Adam Heath <doogie@debian.org>
2544   * version-nr, debian/changelog: Set 1.10.8 version.
2546 Tue Sep  3 18:59:19 CDT 2002 Adam Heath <doogie@debian.org>
2548   * debian/changelog: Set date for 1.10.7 release.
2550 Tue Sep  3 18:40:08 CDT 2002 Adam Heath <doogie@debian.org>
2552   * lib/dbmodify.c: Fix double free in modstatdb_init, in the case that
2553     modstatdb_shutdown was called previously.
2555 Tue Sep  3 18:37:45 CDT 2002 Adam Heath <doogie@debian.org>
2557   * lib/nfmalloc.c: Protect duplicate calls to obstack_free(),
2558     as obstack_free segfaults when called without initializing.
2560 Tue Sep  3 18:36:42 CDT 2002 Adam Heath <doogie@debian.org>
2562   * version-nr, debian/changelog: Set 1.10.7 version.
2564 Sun Sep  1 23:46:04 CDT 2002 Adam Heath <doogie@debian.org>
2566   * debian/changelog: Set date for 1.10.6 release.
2568 Sat Aug 31 23:46:04 CDT 2002 Adam Heath <doogie@debian.org>
2570   * dpkg-deb/main.c, dselect/main.cc, include/dpkg.h.in, lib/startup.c
2571     main/main.c, main/query.c, split/main.c:  Don't call nffreeall, in any
2572     of the c/c++ programs.  It appears dselect slightly corrupts it's
2573     memory enough that it can't be freed without segfaulting.
2575 Sat Aug 31 23:42:08 CDT 2002 Adam Heath <doogie@debian.org>
2577   * version-nr, debian/changelog: Modified for version 1.10.6.
2579 Thu Aug 29 16:43:45 CDT 2002 Adam Heath <doogie@debian.org>
2581   * debian/changelog: Set date for release.
2583 Thu Aug 29 16:38:15 CDT 2002 Adam Heath <doogie@debian.org>
2585   * main/filesdb.c: Back out one memleak fix.
2587 Thu Aug 29 15:13:59 CDT 2002 Adam Heath <doogie@debian.org>
2589   * debian/rules: Remove /usr/sbin/start-stop-daemon.
2591 Thu Aug 29 14:51:35 CDT 2002 Adam Heath <doogie@debian.org>
2593   * lib/dbmodify.c, lib/dump.c, lib/lock.c, lib/startup.c, lib/tarfn.c
2594     main/configure.c, main/filesdb.c, main/query.c: Fix several minor
2595     memleaks.
2597 Thu Aug 29 14:42:05 CDT 2002 Adam Heath <doogie@debian.org>
2599   * lib/parsehelp.c: Fix corruption of available file, caused by use of
2600     memory that was previously freed.
2602 Thu Aug 29 14:31:22 CDT 2002 Adam Heath <doogie@debian.org>
2604   * lib/parse.c: Check for eof before we getc(), not after.
2606 Sat Aug 24 15:36:41 CDT 2002 Adam Heath <doogie@debian.org>
2608   * scripts/install-info.pl: Previous install-infos(before 1.10) handled
2609     multiple dir file entries, because they would copy the entire stanza
2610     unmodified.  The newest version does not do this, as it reformats the
2611     options, and thereby only takes the first line.  So, we now split all
2612     the lines from the stanza, and process them all.
2614 Sat Aug 24 14:47:56 CDT 2002 Adam Heath <doogie@debian.org>
2616   * archtable: Add i386-gnu0.3.
2617   * main/Makefile.in, utils/Makefile.in: Fix handling of static compiles,
2618     with regard to zlib.
2620 Sat Aug 24 14:41:45 CDT 2002 Adam Heath <doogie@debian.org>
2622   * lib/fields.c: Allow spaces between the end of a version, and the
2623     trailing ')'.
2625 Sat Aug 24 14:16:13 CDT 2002 Adam Heath <doogie@debian.org>
2627   * lib/archives.c: Fix segfault when --auto-deconfigure is given.  This is
2628     causes because the deconfigure list is allocated in an obstack, but
2629     then freed with normal free().
2631 Thu Aug 22 23:37:45 CDT 2002 Adam Heath <doogie@debian.org>
2633   * lib/database.c, lib/parse.c, lib/parsehelp.c, main/main.c: Fix several
2634     read pass buffer bugs, and a memleak.
2636 Thu Aug 22 23:25:23 CDT 2002 Adam Heath <doogie@debian.org>
2638   * lib/nfmalloc.c: Fix read past buffer in lib/nfmalloc.c.
2640 Thu Aug 22 23:16:02 CDT 2002 Adam Heath <doogie@debian.org>
2642   * utils/md5sum.c: Handle directories better in md5sum.
2644 Thu Aug 22 23:06:39 CDT 2002 Adam Heath <doogie@debian.org>
2646   * scripts/dpkg-scanpackages.pl: Fix extraction of md5sum in
2647     dpkg-scanpackages.
2649 Thu Aug 22 23:01:53 CDT 2002 Adam Heath <doogie@debian.org>
2651   * utils/md5sum.c: Fix segfault in md5sum if the file being checked
2652     doesn't exist.
2654 Thu Aug 22 22:59:54 CDT 2002 Adam Heath <doogie@debian.org>
2656   * version-nr, debian/changelog: Modified for 1.10.5.
2658 Sun Jul 14 15:10:22 CDT 2002 Adam Heath <doogie@debian.org>
2660   * configure.in: Remove -ffunction-sections and -fdata-sections.
2661   * Makefile.conf.in, Makefile.in, debian/rules:  Install archtable into
2662     /usr/share/dpkg/.
2664 Sun Jul 14 15:09:24 CDT 2002 Adam Heath <doogie@debian.org>
2666   * version-nr, debian/changelog: Updated for 1.10.4 version.
2668 Thu Jul 11 23:33:13 CDT 2002 Adam Heath <doogie@debian.org>
2670   * debian/control: dselect replaces dpkg << 1.10.3, as we moved the
2671     dselect config file and manpages from dpkg.deb to dselect.deb.
2673 Thu Jul 11 22:26:30 CDT 2002 Adam Heath <doogie@debian.org>
2675   * utils/start-stop-daemon.c: If in --test mode, and --stop is given,
2676     increment n_killed, so that start-stop-daemon returns the proper exit
2677     value.  Thanks Thomas Morin <thomas.morin@enst-bretagne.fr>.
2679 Thu Jul 11 22:19:12 CDT 2002 Adam Heath <doogie@debian.org>
2681   * utils/start-stop-daemon.c: Fix test inversion in start-stop-daemon,
2682     when checking the pid given in a pid file.  Thanks Thomas Morin
2683     <thomas.morin@enst-bretagne.fr>.
2685 Sun Jul  7 14:54:44 CDT 2002 Adam Heath <doogie@debian.org>
2687   * debian/rules: Fix install location of /usr/lib/dpkg/methods.
2689 Sat Jul  6 23:51:03 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
2691   * debian/rules: Move dselect.cfg to dselect package.
2693 Thu Jul  4 21:31:57 CDT 2002 Adam Heath <doogie@debian.org>
2695   * debian/rules: Install debian/dselect.conffiles.
2697 Thu Jul  4 19:33:20 CDT 2002 Adam Heath <doogie@debian.org>
2699   * scripts/dpkg-source.pl: Remove -Z from patch call, as it makes patch
2700     warn about missing timestamps.
2702 Tue Jul  2 12:11:59 CDT 2002 Adam Heath <doogie@debian.org>
2704   * debian/changelog, debian/control: dpkg + dpkg-static conflict dpkg-dev
2705     << 1.9, as dpkg-source 1.9 doesn't work with md5sum 1.10.
2707 Tue Jul  2 12:29:52 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
2709   * Merge from HEAD:
2710     + lib/myopt: check for malloc failure and actually look in $HOME for
2711       file instead of looking in confdir twice
2713 Tue Jul  2 10:20:40 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
2715   * debian/rules: cp instead of mv since we need files for both dpkg
2716     and dpkg-static (ugh)
2718 Tue Jul  2 10:08:18 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
2720   * debian/rules: Remove autom4te.cache in clean target
2722 Tue Jul  2 09:52:41 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
2724   * debian/rules: move dpkg.cfg.5 and dselect.cfg.5 into dpkg package
2726 Tue Jul  2 09:46:01 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
2728   * Merge from HEAD:
2729     + scripts/dpkg-genchanges.pl: Add ~ to the list of legal characters
2730       in a package filename
2731     + scripts/dpkg-checkbuilddeps.pl: remove forced check for build-essential,
2732       we should not hardcode Debian policy into dpkg
2734 Tue Jul  2 09:41:44 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
2736   * debian/control: sync dpkg and dpkg-static dependencies, fix double
2737     conflict for dpkg
2739 Tue Jul  2 01:04:29 CDT 2002 Adam Heath <doogie@debian.org>
2741   * debian/rules: Don't always call autoheader during build.
2743 Mon Jul  1 14:45:11 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
2745   * debian/control: add conflict with dpkg-iasearch which intruded on
2746     our namespace and replace manpages-de which includes one of our manpages
2748 Fri Jun 21 21:53:24 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
2750   * debian/dpkg.postinst: Merge patch from Josip Rodin to improve
2751     the move from /usr/info to /usr/share/info
2753 Fri Jun 21 21:11:02 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
2755   * po/ca.po: Updated
2757 Fri Jun 21 19:09:38 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
2759   * scripts/dpkg-genchanges.pl: Handle substvars in the Binary field
2761 Thu Jun 20 00:54:54 CDT 2002 Adam Heath <doogie@debian.org>
2763   * scripts/install-info.pl: Fix broken merge from 1.9 branch.
2765 Sat Jun  1 23:22:19 CDT 2002 Adam Heath <doogie@debian.org>
2767   * dpkg-deb/main.c, main/main.c, main/query.c, dselect/main.cc,
2768     split/main.c: Revert last modification.  It'll be fixed properly for
2769     dpkg 1.11.
2771 Sat Jun  1 16:45:13 CDT 2002 Adam Heath <doogie@debian.org>
2773   * dpkg-deb/main.c, main/main.c, main/query.c, dselect/main.cc,
2774     split/main.c: Fixed printversion(), to allow translations to be done
2775     better.
2777 Sat Jun  1 16:17:59 CDT 2002 Adam Heath <doogie@debian.org>
2779   * po/pt_BR.po: Updated.
2781 Sat Jun  1 22:04:02 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
2783   * po/ru.po: Updated
2785 Fri May 31 21:46:03 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
2787   * man/fr/dpkg-scanpackages.8, man/fr/dpkg-source.1, man/fr/dpkg.8,
2788     man/fr/start-stop-daemon.8, man/fr/deb-control.5: Updated
2790 Mon May 27 21:13:00 CDT 2002 Adam Heath <doogie@debian.org>
2792   * po/de.po, po/fr.po, po/gl.po: Updated.
2794 Sun May 26 18:50:10 CET 2002 Peter Karlsson <peterk@debian.org>
2796   * man/sv/dpkg.8, man/sv/start-stop-daemon.8, po/sv.po: Updated Swedish
2797     translation.
2799 Sun May 26 01:35:34 CDT 2002 Adam Heath <doogie@debian.org>
2801   * lib/tarfn.c: dpkg now reorders symlinks when extracting debs.  However,
2802     this is also still done when building debs.  After a stable release of
2803     Debian has occurred with this modified dpkg, the reordering when
2804     building can be removed.
2806 Sun May 26 01:28:00 CDT 2002 Adam Heath <doogie@debian.org>
2808   * debian/dpkg.postinst: Fix /usr/info/dir moving/symlink code.
2810 Sun May 26 01:10:24 CDT 2002 Adam Heath <doogie@debian.org>
2812   * Fix some mis-merging of the 1.9 branch:
2813     * debian/rules, debian/dpkg.conffiles: dselect was split to a separate
2814       deb, no longer install dselect.cfg into dpkg.deb.  Also, dpkg.cfg is
2815       no longer a conffile.
2816     
2817 Sat May 25 22:45:06 CDT 2002 Adam Heath <doogie@debian.org>
2819   * Merge changes from 1.9.20 and 1.9.21.
2820     * utils/start-stop-daemon.8: Fix some nroff formatting errors
2821     ? po.ru.po: Fix mistranslation
2822     * main/dpkg.8: document --force-confmiss, improve description for
2823       --force-conf{old,new}
2824     * lib/mlib.c: Detect truncated debs, and abort the unpack.
2825     * debian/rules: install dpkg.cfg in docdir, install dpkg.postrm.  Also
2826       install dselect.cfg in /etc/dpkg.
2827     * debian/dpkg.cfg: add force-overwrite
2828     * debian/dpkg.postrm: new file
2829     ? po/sv.po: Removed fuzzy translation.
2830     ? po/sv.po: Fixed broken c-format escapes which would make some error
2831       messages display incorrectly.
2832     * debian/control: Fix build-depends on zlib1g-dev to >= 1:1.1.3-19.1.
2833     * debian/changelog: The missing 1.9 entries.
2835 Fri May 24 22:38:01 CDT 2002 Adam Heath <doogie@debian.org>
2837   * scripts/dpkg-scanpackages.8: Add dpkg-scansources to
2838     dpkg-scanpackages(8).
2840 Fri May 24 22:14:04 CDT 2002 Adam Heath <doogie@debian.org>
2842   * scripts/dpkg-source.1: Fix typo in dpkg-source(1), s/-su/-sU/.
2844 Fri May 24 22:11:53 CDT 2002 Adam Heath <doogie@debian.org>
2846   * scripts/dpkg-source.1: Fix documentation of -v<version> for
2847     dpkg-parsechangelog, removing the requirement that the version has to
2848     be in the changelog.
2850 Fri May 24 22:06:48 CDT 2002 Adam Heath <doogie@debian.org>
2852   * scripts/dpkg-gencontrol.pl: Close the old debian/files file,
2853     before doing a rename.
2855 Fri May 24 22:00:01 CDT 2002 Adam Heath <doogie@debian.org>
2857   * scripts/dpkg-buildpackage.sh, scripts/dpkg-source.pl,
2858     scripts/dpkg-source.1: Add -I<filename> to dpkg-buildpackage and
2859     dpkg-source, to excludes files from tar, when building a native
2860     package.
2862 Fri May 24 21:49:52 CDT 2002 Adam Heath <doogie@debian.org>
2864   * scripts/controllib.pl: Properly count recursive expansion of variables,
2865     instead of just counting all variable expansions.
2867 Fri May 24 21:20:04 CDT 2002 Adam Heath <doogie@debian.org>
2869   * scripts/cl-debian.pl: Recognize emergency as valid in changelogs.
2871 Fri May 24 21:12:36 CDT 2002 Adam Heath <doogie@debian.org>
2873   * scripts/dpkg-architecture.pl: s/build on/built on/; same for
2874     'build for'.
2876 Fri May 24 21:03:43 CDT 2002 Adam Heath <doogie@debian.org>
2878   * scripts/dpkg-scanpackages.pl: Give proper case for Source and
2879     Installed-Size.
2881 Fri May 24 01:10:45 CDT 2002 Adam Heath <doogie@debian.org>
2883   * scripts/dpkg-source.pl, debian/changelog: Match fields case
2884     insensitively in debian/control.
2886 Fri May 24 00:22:39 CDT 2002 Adam Heath <doogie@debian.org>
2888   * scripts/dpkg-source.pl: Clean up after ctrl-c is received.
2890 Fri May 24 00:11:01 CDT 2002 Adam Heath <doogie@debian.org>
2892   * include/dpkg.h.in, include/myopt.h, lib/Makefile.in, lib/myopt.c,
2893     main/main.c main/query.c dpkg-deb/main.c split/main.c dselect/main.cc,
2894     lib/startup.c: New functions, standard_startup, standard_shutdown, that
2895     contain the most common functions that all dpkg binaries call.
2897 Thu May 23 23:23:03 CDT 2002 Adam Heath <doogie@debian.org>
2899   * lib/lock.c: Use setcloexec wrapper instead of calling fcntl directly.
2901 Thu May 23 15:21:09 CDT 2002 Adam Heath <doogie@debian.org>
2903   * TODO: Add items for --reconfigure and --call-maint-script.
2905 Thu May 23 11:16:28 CDT 2002 Adam Heath <doogie@debian.org>
2907   * lib/lock.c: Always set CLOEXEC on the lock fd.
2909 Wed May 22 13:03:41 CDT 2002 Adam Heath <doogie@debian.org>
2911   * lib/Makefile.in: Remove hash.c from SOURCES, as it is a test file.
2913 Tue May 21 17:20:12 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
2915   * debian/dpkg.postinst: remove compat stuff for ancient dpkg versions.
2916     This also enables the /usr/info/dir move code which was never reached
2919 Mon May 20 00:58:17 CDT 2002 Adam Heath <doogie@debian.org>
2921   * main/enquiry.c, main/main.h, utils/md5sum.c, split/dpkg-split.h,
2922     split/split.c, lib/Makefile.in, include/dpkg.h.in, dpkg-deb/build.c,
2923     dpkg-deb/dpkg-deb.h: Even more gcc warning fixes.
2925 Sun May 19 23:39:02 CDT 2002 Adam Heath <doogie@debian.org>
2927   * <all Makefile.in>, Makefile.conf.in: Add rules to Makefile.conf, to
2928     rebuild Makefile if $(srcdir)/Makefile.in is modified.  This also
2929     required adding a 'default' target to all Makefiles.
2931 Sun, 19 May 2002 22:56:41 -0500 Adam Heath <doogie@debian.org>
2933   * utils/md5sum.c: Fairly heavy work(net no lines changed), to fix
2934     longjmp() clashing variable warnings.  Also, a few miscellaneous gcc
2935     -W<foo> fixes.
2937 Sun May 19 20:25:05 CDT 2002 Adam Heath <doogie@debian.org>
2939   * lib/showpkg.c, lib/utils.c, optlib/long-options.c, main/archives.c,
2940     main/configure.c, main/main.c, main/main.h, main/query.c,
2941     optlib/long-options.c, lib/showpkg.c, lib/utils.c: Several more gcc
2942     -W<foo> fixes.
2944 Sun May 19 18:48:39 CDT 2002 Adam Heath <doogie@debian.org>
2946   * debian/rules: Fix overzealous running of autoheader for every build.
2948 Sun May 19 06:05:24 CDT 2002 Adam Heath <doogie@debian.org>
2950   * configure.in: Split out the -W*-prototype warnings into separate
2951     checks.
2953 Sun May 19 06:01:31 CDT 2002 Adam Heath <doogie@debian.org>
2955   * configure.in, automake/dpkg.m4: Make a new macro, DPKG_C_GCC_ATTRIBUTE.
2957 Sun May 19 05:57:24 CDT 2002 Adam Heath <doogie@debian.org>
2959   * automake/dpkg.m4.  Gah, I hate gcc.  AC_TRY_COMPILE() produces code
2960     of the form 'int main() { ... }'.  When -Werror -Wstrict-prototypes is
2961     given to gcc, it thinks the above code snippet is an error, and aborts.
2962     This was making DPKG_C_GCC_TRY_WARNS disable some -W options.  So, I
2963     no longer use AC_TRY_COMPILE.
2965 Sun May 19 04:56:51 CDT 2002 Adam Heath <doogie@debian.org>
2967   * debian/rules:  Oops.  The command to run is aclocal, not aclocal.m4.
2969 Sun May 19 04:45:41 CDT 2002 Adam Heath <doogie@debian.org>
2971   * configure.in, config.h.bot(removed), acconfig.h(removed):  The latest
2972     autoheader/autoconf combination allows us to do everything in
2973     configure.in.  config.h.bot is now in AH_BOTTOM(), and the
2974     descriptions for all the defines(from acconfig.h) are now part of
2975     AC_DEFINE().
2977 Sun May 19 04:41:07 CDT 2002 Adam Heath <doogie@debian.org>
2979   * debian/rules: All the hard-coded calls to scripts/dpkg-gencontrol.pl
2980     are now down thru a variable, GENCONTROL.
2982 Sun May 19 04:26:58 CDT 2002 Adam Heath <doogie@debian.org>
2984   * debian/rules: Remove all calls to $(shell pwd), and use $(CURDIR).
2985     Also, `pwd` is removed.  There was a var, DIR := $(shell pwd);
2986     instances of this var were also replaced with CURDIR.
2988 Sun May 19 04:18:46 CDT 2002 Adam Heath <doogie@debian.org>
2990   * debian/rules: If automake/*.m4 is modified, rebuild aclocal.m4.  If
2991     aclocal.m4 or configure.in are modified, rebuild configure.in.
2992     config.h.in gets rebuilt if configure.in is modified.  And, lastly,
2993     configure is rerun, if configure or config.h.in is modified.
2995 Sun May 19 04:09:25 CDT 2002 Adam Heath <doogie@debian.org>
2997   * debian/rules: Fix targets, so that if configure fails, but actually
2998     succeeds in creating config.status(as might happen if one has a
2999     c-style comment in configure.in, and the shell trys running /foo), then
3000     the build will actually fail correctly.
3002 Sun May 19 02:31:11 CDT 2002 Adam Heath <doogie@debian.org>
3004   * acconfig.h: Oops.  Forgot to add #undef HAVE_GNUC25_UNUSED.
3006 Sun May 19 02:31:11 CDT 2002 Adam Heath <doogie@debian.org>
3008   * config.h.bot, configure.in, optlib/getopt.c: Define an UNUSED macro,
3009     for __attribute__((unused)).
3011 Sun May 19 02:31:11 CDT 2002 Adam Heath <doogie@debian.org>
3013   * optlib/error.h, optlib/getopt.c, utils/start-stop-daemon.c: Use
3014     the configure detected gcc __attribute__ macros, instead of
3015     hard-coding them.
3017 Thu May 16 19:09:48 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
3019   * po/da.po: New version from Claus Hindsgaul <claus_h@image.dk>
3021 Mon May 13 22:44:48 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
3023   * man/en/dpkg.8.sgml: document --force-confmiss and --force-bad-verify
3025 Mon May  6 16:26:51 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
3027   * lots-a-files: update email address for Ian Jackson
3029 Sun May  5 22:27:50 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
3031   * configure.in: expand all paths before doing substitution
3033 Sun May  5 17:42:21 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
3035   * Makefile.conf.in: use @PACKAGE@ for dpkgconfdir as well
3036   * man/paths.ent.in: new file
3037   * configure.in: generate man/paths.ent
3039 Sun Apr 21 12:23:40 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
3041   * include/dpkg.h.in: add DIFF #define
3042   * main/configure.c: use it
3044 Sun Apr 14 16:13:16 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
3046   * man/en/deb-old.5.sgml: DocBook version of deb-old manpage
3047   * man/en/cleanup-info.8.sgml: DocBook version of cleanup-info manpage
3048   * man/en/dpkg-checkbuilddeps.1.sgml: DocBook version of dpkg-checkbuilds
3049     manpage
3051 Sun Apr 14 00:49:09 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
3053   * scripts/controlllib.pl: accept multilpe consecutive empty lines
3055 Sat Apr 13 22:59:25 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
3057   * man/en/deb-control.5.sgml: DocBook version of deb-control manpage
3059 Sat Apr 13 18:07:48 CET 2002 peter karlsson <peterk@debian.org>
3061   * po/sv.po: Removed fuzzy translation.
3063 Sat Apr 13 18:34:09 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
3065   * man/en/dselect.8.sgml: DocBook version of dselect manpage
3066   * man/en/dselect.cfg.5.sgml: DocBook version of dselect.cfg manpage
3067   * man/en/dpkg.cfg.5.sgml: DocBook version of dpkg.cfg manpage
3068   * man/en/deb.5.sgml: DocBook version of deb manpage
3070 Fri Apr 12 18:46:16 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
3072   * man/en/dpkg.8.sgml: DocBook version of dpkg manpage
3074 Wed Apr 10 00:39:58 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
3076   * configure.in: use AC_SYS_LARGEFILE and bump autoconf requirement to 2.50
3077     since 2.13 does not include AC_SYS_LARGEFILE
3078   * utils/md5sum.h: include config.h earlier so we pick up the LFS flags
3079     before including the system includefiles
3080   * scripts/dpkg-source.1: fix typo (shlib instead of shlibs)
3082 Mon Apr  1 18:57:02 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
3084   * dselect/pkgdepcon.cc: treat enhances like suggests in
3085     packagelist::resolvedepcon()
3087 Mon Mar 11 23:22:37 CST 2002 Adam Heath <doogie@debian.org>
3089   * configure.in: Bad Wichert.  Always modify configure.in when adding
3090     subdirs(add pt_BR).
3092 Fri Mar  1 23:51:06 CST 2002 Adam Heath <doogie@debian.org>
3094   * Makefile.in: Allow for make -j to work thru the top-level targets.
3095     There are problems, however, as the system will try to compile the
3096     programs before libdpkg is done.
3098 Fri Mar  1 23:27:16 CST 2002 Adam Heath <doogie@debian.org>
3100   * main/help.c, debian/changelog: Fix segfault with getenv("PATH") returns
3101     null.
3103 Fri Mar  1 23:22:55 CST 2002 Adam Heath <doogie@debian.org>
3105   * configure.in: Remove old doc/*/Makefile.  Bad Wichert.
3107 Fri Mar  1 23:21:35 CST 2002 Adam Heath <doogie@debian.org>
3109   * po/pt_BR.po: Fix broken translations.
3111 Mon Feb 25 15:22:34 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3113   * scripts/dpkg-gencontrol.pl: Fix test for incorrect packagename
3114     for -p option.
3116 Sat Feb 16 15:14:30 CET 2002 peter karlsson <peterk@debian.org>
3118   * man/sv/deb-control.5, deb-old.5, deb.5, dpkg-split.8,
3119     start-stop-daemon.8: Fixed CVS revision pointers after move and
3120     updated translations to match latest versions.
3121   * man/sv/dpkg.cfg.5, man/sv/dselect.cfg.5: Translated new files.
3122   * man/en/dselect.cfg.5: Fixed numerous copy'n'paste errors.
3124 Sun Feb 10 01:40:52 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3126   * utils/start-stop-daemon.c: add FreeBSD support
3128 Sun Feb 10 01:31:57 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3130   * man/en/dselect.cfg.5, man/en/dpkg.cfg.5: new files
3131   * man/en/Makefile.in: install new manpages
3133 Sun Feb 10 01:16:58 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3135   * scripts/update-alternatives.pl: Improve working of --config output
3137 Thu Feb  7 15:27:35 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3139   * main/processarc.c: copy origin and bugs info into status file
3141 Thu Feb  7 00:38:42 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3143   * po/pt_BR.po: Fix bogosity in previous update
3145 Thu Feb  7 00:28:35 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3147   * scripts/update-alternatives.pl: fix logic error, alternatives are
3148     now correctly restored to auto when removing a manually selected
3149     alternative
3151 Wed Feb  6 12:29:18 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3153   * dselect/method.cc: check fgetc() for EOF return so we don't spin
3154     if we can't read input
3156 Sun Feb  3 22:21:08 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3158   * po/fr.po: Updated
3160 Sun Feb  3 20:44:20 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3162   * po/pt_BR.po: Updated
3164 Sun Feb  3 01:50:02 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3166   * doc/reference.sgml: new file
3168 Sat Feb  2 23:00:25 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3170   * More imports from v1_9
3171   * debian/changelog: add changes from 1.9.18 and 1.9.19
3172   * debian/dpkg.conffiles: Mark /etc/alternatives/README as a conffile.
3173   * debian/control: Changed maintainer to debian-dpkg@lists and add Uploaders
3174   * main/processarc.c: Fix MD5Sum corruption when upgrading a package, and
3175     the width of the ASCII representation of the file system increased by
3176     one, thereby overwriting the start of the MD5Sum field.  This may also
3177     fix a segfault in certain cases.
3179 Sat Feb  2 22:59:06 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3181   * scripts/install-info.pl: Continue to read all data from a pipe, until
3182     EOF.  
3184 Sat Feb  2 22:52:50 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3186   * scripts/dpkg-gencontrol: Make dpkg-gencontrol not warn about Uploaders.
3188 Sat Feb  2 18:14:24 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3190   * man/Makefile.in: add pt_BR to SUBDIRS
3191   * man/pt_BR/Makefile.in, man/pt_BR/update-alternatives.8,
3192     man/pt_BR/.cvsignore: new files
3194 Sat Feb  2 16:47:41 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3196   * Makefile.in: add man to subdirs
3197   * man/*: new directory with all manpages
3199 Sat Feb  2 16:23:43 CET 2002 Adam Heath <doogie@debian.org>
3201   * po/da.po: Updated
3203 Sat Feb  2 00:18:04 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3205   * automake/dpkg.m4: add DPKG_CHECK_DEFINE
3206   * configure.in: test for TIOCNOTTY in sys/ioctl.h
3207   * utils/start-stop-daemon.c: move tty change outside OS specific ifdef
3208     and use the new TIOCNOTTY test instead
3210 Fri Feb  1 19:10:02 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3212   * po/ca.po: New Catalan translation
3213   * configure.in: Add ca to LINGUAS
3215 Fri Feb  1 17:37:24 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3217   * configure.in: add test for setsid
3218   * utils/start-stop-daemon.c: use setsid if it exists and only use
3219     setpgid if it does not exist
3221 Fri Feb  1 16:41:23 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3223   * utils/start-stop-daemon.c: Merge patch from Andres Voegele
3224     <voegelas@users.sourceforge.net> to add HP-UX support
3225     
3226 Fri Feb  1 13:58:59 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3228   * po/fr.po: updated.
3230 Thu Jan 31 21:34:14 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3232   * scripts/install-info.pl: add -c option to gzip invocation
3234 Thu Jan 31 14:56:38 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3236   * doc/fr/install-info.8, doc/fr/update-alternatives.8: updated with
3237     new version from Philippe Batailler
3239 Wed Jan 30 10:31:38 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3241   * scripts/update-alternative.pl: exit with non-zero exitcode when
3242     doing --display for a nonexisting alternative
3244 Wed Jan 30 00:29:07 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3246   * split/Makefile.in: create parts directory
3248 Wed Jan 30 00:24:36 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3250   * utils/start-stop-daemon.c: Fix tyop in help message
3252 Fri Jan 18 20:40:42 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3254   * scripts/dpkg-source.pl: Use -Z option for patch and set TZ to UTC0
3255     when calling diff. This gives us reliable timestamps in diffs.
3257 Thu Jan  3 15:49:14 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3259   * scripts/dpkg-genchanges.pl, scripts/dpkg-scanpackages.pl,
3260     scripts/dpkg-scansources.pl: Accept GNU md5sum style output
3262 Thu Jan  3 15:20:25 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3264   * utils/md5sum.c: add error handling to do_check
3266 Wed Jan  2 16:08:02 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3268   * scripts/dpkg-source.pl: Update default ignore expression to also
3269     match *~ and *.swp in subdirs.
3271 Wed Jan  2 15:00:26 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3273   * scripts/dpkg-checkbuilddeps.pl: use space seperated output instead
3274     of comma seperated
3276 Tue Jan  1 14:10:55 CET 2002 Wichert Akkerman <wakkerma@debian.org>
3278   * archtable, scripts/dpkg-architecture.pl: Update SuperH architecture
3280 Mon Dec 31 17:38:26 CET 2001 Wichert Akkerman <wakkerma@debian.org>
3282   * dselect/main.cc, main/main.c, main/query.c: no longer set LC_CTYPE
3283     to C since that breaks the braindead gettext.
3284   * dpkg-deb/build.c, lib/dbmodify.c, lib/vercmp.c, main/remove.c: Switch
3285     to using cisdigit and cisalpha.
3287 Mon Dec 31 17:28:10 CET 2001 Wichert Akkerman <wakkerma@debian.org>
3289   * lib/utils.c: new file with general utility functions. Add
3290     cisalpha() and cisdigit() functions, similar to the ctype is*
3291     ones but which only accept C locale
3292   * lib/Makefile.in: add utils.c
3293   * include/dpkg.h: add utils.c functions
3295 Mon Dec 31 15:25:46 CET 2001 Wichert Akkerman <wakkerma@debian.org>
3297   * scripts/dpkg-architecture.pl: fix syntax error
3299 Wed Nov 28 18:11:38 CST 2001 Adam Heath <doogie@debian.org>
3301   * scripts/dpkg-checkbuilddeps.{1,pl}: Make dpkg-checkbuilddeps always
3302     check for build-essential.
3304 Wed Nov 28 17:46:23 CST 2001 Adam Heath <doogie@debian.org>
3306   * debian/changelog: Note that the dselect.deb split closes a bug.
3308 Wed Nov 28 17:40:52 CST 2001 Adam Heath <doogie@debian.org>
3310   * scripts/update-alternatives.{pl,8}: Apply patch from debian bug 120924,
3311     to give update-alternatives a --list command.
3313 Wed Nov 28 17:30:16 CST 2001 Adam Heath <doogie@debian.org>
3315   * utils/md5sum.c: When parsing stdin, md5sum now displays '-' as the
3316     filename, to match textutils md5sum.
3318 Wed Nov 28 17:20:28 CST 2001 Adam Heath <doogie@debian.org>
3320   * scripts/install-info.pl: Copy dir from backup if the file is empty
3321     as well.
3323 Sat Nov 17 17:20:52 CET 2001 Wichert Akkerman <wakkerma@debian.org>
3325   * doc/sv/Makefile.in: install dpkg-query and dpkg-deb manpages
3327 Sat Nov 17 17:16:44 CET 2001 Wichert Akkerman <wakkerma@debian.org>
3329   * debian/control: add missing space in dpkg-doc description
3331 Sat Nov 17 15:57:57 CET 2001 peter karlsson <peterk@debian.org>
3333   * doc/sv/dpkg-query.8, dpkg-deb.1: Initial Swedish translation.
3334     dpkg.8: Translation fixups.
3335   * dpkg/dpkg-query.8: Corrected spelling.
3337 Thu Oct 25 16:56:06 JST 2001 Wichert Akkerman <wakkerma@debian.org>
3339   * po/{de,it,pt_BR,sv}.po: Fix translation with inconsistent printf
3340     format strings
3342 Sun Oct 21 12:58:04 CDT 2001 Adam Heath <doogie@debian.org>
3344   * optlib/Makefile.in: Run ranlib after creating the library.
3346 Sun Oct 21 12:56:37 CDT 2001 Adam Heath <doogie@debian.org>
3348   * archtable, scripts/dpkg-architecture.pl: Add darwin.  The source
3349     doesn't quite work yet on darwin however, as some of the changes are
3350     being discussed.
3352 Sun Oct 21 03:57:08 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3354   * po/pl.po: Updated
3356 Wed Oct 17 12:34:19 CDT 2001 Adam Heath <doogie@debian.org>
3358   * Merge 1.9.17 branch:
3359     * debian/rules: remove update-rc.d from the package
3360     * debian/control: update conflict with sysvinit to deal with moved
3361       update-rc.d
3363 Tue Oct 16 13:09:21 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3365   * po/pl.po: Updated
3367 Sun Oct 14 15:04:24 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3369   * po/da.po: Updated
3371 Mon Oct  8 19:51:36 CDT 2001 Adam Heath <doogie@debian.org>
3373   * main/main.c: Turn setstatuspipe into a generic setpipe, in preparation
3374     for --result-fd.
3376 Mon Oct  8 19:48:28 CDT 2001 Adam Heath <doogie@debian.org>
3378   * main/main.c: Make sure the integer passed to --result-fd is correct
3379     before manipulating the pointers(we checked after we manipulated
3380     previously)
3382 Sun Oct  7 22:23:54 CDT 2001 Adam Heath <doogie@debian.org>
3384   * Makefile.in: Remove dulicate inclusion of utils in SUBDIRS.
3386 Sun Oct  7 19:38:56 CDT 2001 Adam Heath <doogie@debian.org>
3388   * scripts/install-info.pl: oops.  We weren't adding '\n' when printing
3389     out the reformated info text.
3391 Sun Oct  7 05:00:02 CDT 2001 Adam Heath <doogie@debian.org>
3393   * scripts/install-info.pl: Don't print out the info entry every time we
3394     are called.
3396 Sun Oct  7 03:12:35 CDT 2001 Adam Heath <doogie@debian.org>
3398   * debian/control: Several fixes:
3399     * dpkg-static needs the same set of Depends(and others) lines as dpkg.
3400     * Modify the dpkg-static description to note that it's a static
3401       compile.
3402     * Bump the conflicts on sysvinit to 2.82-1, as that is the version
3403       that actually has the proper replaces line.
3404   * debian/rules: dpkg-static was actually being built as dpkg.deb.
3406 Thu Sep 20 17:06:48 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3408   * debian/rules: strip enoent as well
3410 Sat Sep 15 20:19:57 CDT 2001 Adam Heath <doogie@debian.org>
3412   * scripts/install-info.pl: Several fixes:
3413     * Move /usr/info/dir to /usr/share/info/dir.
3414     * Improve message when locking and /usr/share/info/dir doesn't exist.
3415     * Use /var/backups/infodir.bak if the above doesn't exist.
3416     * Allow for relative filenames, and add a --remove-exactly option.
3417     * Use section from the .info file if --section is not given.
3418     * Include current filename in error messages.
3419     * Format /usr/share/info/dir entries to uniform width.
3420     * --calign|--align|--maxwidth are now ignored.
3422 Wed Sep 12 18:45:57 CDT 2001 Adam Heath <doogie@debian.org>
3424   Fixes for building of dpkg-static.deb.
3425     * Can't build both dpkg.deb and dpkg-static.deb in single run, because
3426       /etc is moved from $(INSTALL_TMP), instead of copied.
3427     * dpkg-static.deb is added to debian/files, even if it isn't created.
3428     * dpkg-static.tar.gz is added to debian/files, even if it doesn't exist.
3430 Wed Sep 12 17:28:57 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3432   * dpkg-deb/main.c: Fix unterminated line in usage text
3434 Mon Sep 10 12:57:21 PDT 2001 Wichert Akkerman <wakkerma@debian.org>
3436   * dpkg-deb/dpkg-deb.h: add parseformat prototype
3437   * dpkg-deb/main.c: add parseformat and show options, change layout
3438     for usage info, remove copyright from version output and refer to
3439     the dpkg --license option instead
3440   * dpkg-deb/info.c: implement do_show
3442 Mon Sep 10 12:41:14 PDT 2001 Wichert Akkerman <wakkerma@debian.org>
3444   * main/showpkg.c: move to lib/ so multiple tools can share it
3445   * main/Makefile.in: remove showpkg.c
3446   * lib/Makefile.in: add showpkg.c
3447   * include/dpkg-db.h: add showpkg.c prototypes
3448   * main/query.h: obsolete now, removed
3450 Mon Sep 10 12:07:20 PDT 2001 Wichert Akkerman <wakkerma@debian.org>
3452   * dpkg-deb/info.c: count how many control components are missing
3453     in info_spew()
3454   * main/processarc.c: change two more 0s into NULLs
3456 Mon Sep 10 10:59:53 PDT 2001 Wichert Akkerman <wakkerma@debian.org>
3458   * include/parsedump.h, lib/dump.c: add flags to fwritefunction.
3459     Implement fw_printheader to toggle printing of field headers.
3460   * main/showpkg.c: modify show1package() to no longer remove the
3461     fieldname and newline itself but make wcall not print it instead
3463 Mon Sep 10 09:44:54 PDT 2001 Wichert Akkerman <wakkerma@debian.org>
3465   * lib/dump.c: make w_booleandefno get the fieldname from the fip
3466     instead of hardcoding Essential
3467   * lib/fields.c: don't harcode `essential' fieldname in f_boolean
3468      convert_string call
3470 Sun Aug 19 15:20:53 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3472   * utils/start-stop-daemon.c: do not start a command if the pidfile
3473     option is used and the pid in that file is still running
3475 Sun Aug 19 00:25:12 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3477   * doc/fr/dpkg-{query,split,statoverride}.8: added
3478   * doc/fr/*: Updated
3480 Thu Aug 16 00:43:23 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3482   * po/fr.po: Updated
3484 Sat Aug 11 22:54:18 CEST 2001 peter karlsson <peterk@debian.org>
3486   * po/sv.po, doc/sv/dpkg.8: Updated Swedish translation.
3488 Wed Aug  1 17:31:23 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3490   * main/dpkg-query.8: added
3491   * main/Makefile.in, debian/rules: install dpkg-query.8
3493 Wed Aug  1 16:37:47 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3495   * main/dpkg.8: remove Linux references
3497 Wed Aug  1 15:35:32 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3499   * debian/copyright: mention we have copyright for 2001 as well
3500   * main/query.c: improve help and version texts
3501   * main/main.c: use DPKG define in printversion output
3503 Wed Aug  1 15:10:06 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3505   * main/query.c: fmt can't be const since we free it in the same function
3507 Tue Jul 31 12:26:41 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3509   * po/de.po: Updated
3510   * main/query.c: Fix help texts a bit to reflect that dpkg-query is
3511     not dpkg
3512   * dselect/main.cc: Use `colour' consistently for printed texts.
3514 Fri Jul 27 04:21:51 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3516   * debian/control: fix typo in section for dpkg-doc, correct
3517     replaces for dselect and remove Linux references
3519 Fri Jul 27 04:05:55 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3521   * po/POTFILES.in: add main/query.c and main/showpkg.c
3523 Fri Jul 27 04:04:26 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3525   * po/da.po: Updated
3527 Fri Jul 27 03:54:34 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3529   * lib/parsedump.h: move to include/parsedump.h so dpkg-query can
3530     use it
3532 Fri Jul 27 03:52:33 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3534   * main/Makefile.in: changed things around to dpkg-query builds more
3535     easily
3537 Fri Jul 27 03:43:52 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3539   * main/query.c: remove -D from usage, we don't support it
3540   * main/showpkg.c: add support for field width specification
3542 Thu Jul 26 14:27:23 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3544   * scripts/Makefile.in, doc/fr/Makefile.in, doc/ja/Makefile.in,
3545     debian/rules: no longer install update-rc.d, it moved to the sysvinit
3546     package
3547   * debian/control: Update sysvinit conflicts to version 2.80
3548   * doc/ja/update-rc.d.8, doc/fr/update-rc.d.8, scripts/update-rc.d.8,
3549     scripts/update-rc.d.pl: removed
3551 Thu Jul 26 13:52:43 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3553   * utils/start-stop-daemon.c: seems glibc has a completely non-standard
3554     return value for nice(2), so deal with that properly now so things also
3555     work on non-glibc systems.
3557 Tue Jul 24 19:07:43 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3559   * main/showpkg.c, main/query.h: new files
3560   * main/query.c: add support for show options
3562 Wed Jul 18 17:28:38 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3564   * main/Makefile.in, debian/rules: install dpkg-query as well
3566 Wed Jul 18 01:04:15 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3568   * doc/ru.po: Updated
3570 Tue Jul 17 16:53:12 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3571   
3572   * Merge changes from v1_9 branch
3573     + debian/changelog: add 1.9.15 and 1.9.16 releases
3574     + scripts/dpkg-source.pl: 
3575       - Add handleformat sub to check if we can handle a dscformat
3576       - Revert dscformat to 1.0. Technically we changed a few things
3577         but older versions of dpkg-source did not handle minor updates
3578         to the dscformat. New policy is that minor updates (last digit
3579         changes) to the dscformat have to be fully backward and forward
3580         compatible.
3581       - restore test if tar exited with exited with a non-zero exitcode
3582       - remove a bunch of commented debug statements
3583     + main/help.c: fix narglist construction building and usage in do_script() 
3585 Tue Jul 17 00:36:32 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3587   * dselect/dselect.8: document new search features
3589 Mon Jul 16 18:14:16 CEST 2001 peter karlsson <peterk@debian.org>
3591   * po/sv.po, doc/sv/deb.5, doc/sv/deb-old.5, doc/sv/dselect.8, doc/sv/dpkg.8:
3592     Swedish translation updates.
3594 Mon Jul 16 17:19:21 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3596   * dselect/basecmds.cc, dselect/dselect.h: 
3597     + add checksearch and matchsearch functions to abstract searching algorithm
3598     + add displayerror member function
3599   * dselect/baselist.cc: use new checkserach and matchsearch functions to
3600     do the real search/matching
3601   * dselect/pkglist.cc, dselect/pkglist.h: implement checksearch and
3602     matchsearch using regular expressions
3604 Mon Jul 16 15:20:07 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3606   * main/main.c, main/query,c. dselect/main.cc: use C locale for LC_CTYPE
3607     so we can be sure packagename and version comparisons work as expected
3609 Mon Jul 16 14:10:18 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3611   * lib/vercmp.c: New verrevcmp() from Anthony Towns
3613 Mon Jul 16 13:27:44 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3615   * Merge a modified patch from Josip Rodin:
3616     + dselect/basecmds.cc: Improve some help texts and helpscreen keybindings
3617     + dselect/helpmsgs.src: Improve text
3619 Mon Jul 16 12:55:49 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3621   * utils/start-stop-daemon.c: Fix test for nice(2) failure
3623 Mon Jul 16 12:44:51 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3625   * dselect/dselect.h: make baselist::setheights() virtual
3626   * dselect/method.h: add setheights() member and fix protection
3627   * dselect/methlist.cc: override setheights() to make list_height 1
3628     higher then the default so we draw the list correctly
3629   * dselect/methkeys.cc: make Q do abort so we are consistent with the pkglist
3631 Mon Jul 16 01:50:58 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3633   * Merge a reworked version of a patch from Joey Hess
3634     + dselect/dselect.8: Document new colour options
3635     + dselect/basecmds.cc: properly draw the background using helpscreen_attr
3636     + dselect/baselist.cc: change drawing code to use new changeable colours
3637     + dselect/dselect.h: Add all the colour structures
3638     + dselect/main.cc: Parse --colour options
3640 Mon Jul 16 00:01:24 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3642   * dselect/baselist.cc: include unistd.h which is needed to get the
3643     ioctl prototype on Solaris
3645 Sun Jul 15 00:37:13 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3647   * debian/preinst: removed (we now use dpkg.preinst)
3648   * debian/control:
3649     + add dselect package
3650     + fix section of dpkg-doc
3651   * debian/dpkg.conffiles: remove dselect.cfg
3652   * debian/dselect.{conffiles,postinst,prerm}: added
3653   * debian/rules: 
3654     + add German to list of manpage translations
3655     + split out dselect into its own package
3656     + strip enoent and start-stop-daemon as well
3658 Sat Jul 14 23:35:57 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3660   * dselect/main.cc, dpkg/main.c: add per-user configuration file
3662 Sat Jul 14 01:38:27 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3664   * Merge dselect patch from Joey Hess 
3665     + dselect/dselect.h: add manual_install prototype
3666     + dselect/pkgcmds.cc, dselect/pkgsublist.cc: modify kd_select() and
3667       repeatedly display() to set/unset manual_install so we can identify
3668       user-selected packages
3669     + dselect/pkglist.h: add dp_should priority
3670     + dselect/pkgdepcon.cc: modify resolvedepcon() to handle recommends
3671       and suggests differently
3673 Sat Jul 14 01:18:33 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3675   * doc/de/Makefile.in: fix syntax error
3677 Fri Jul 13 20:39:24 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3679   * doc/deb-old.5, doc/deb.5: remove emacs hints and Linux references
3680   * dpkg-deb/dpkg-deb.1: Fix typo
3681   * scripts/dpkg-name.1: Don't mention the non-existing dpkg(5)
3682   * dselect/dselect.8: Merged changes from Joost Kooij
3684 Fri Jul 13 00:54:24 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3686   * doc/de/Makefile.in, doc/de/md5sum.1: added
3687   * configure.in, doc/Makefile.in: Process German documentation
3689 Fri Jul 13 00:46:02 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3691   * po/de.po: New version
3693 Fri Jul 13 00:43:23 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3695   * scripts/dpkg-architecture.pl: improve documentation
3697 Mon May 21 03:48:29 CEST 2001 Marcus Brinkmann <brinkmd@debian.org>
3699   * scripts/dpkg-checkbuilddeps.pl: Call dpkg-architecture instead dpkg
3700     to determine the host architecture.  Rename BUILD_ARCH to HOST_ARCH.
3702 Fri Jul  6 00:27:17 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3704  * scripts/dpkg-divert.8: Fix layout error in synopsis
3706 Mon Jul  2 00:00:04 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3708   * configure.in: add doc/ru/Makefile.in
3709   * debian/rules: don't pass CFLAGS to configure
3710   * dselect/pkgkeys.cc: make `n' do searchagain instead
3712 Sun Jul  1 16:12:30 CDT 2001 Adam Heath <doogie@debian.org>
3714   * main/archives.c: When a package is on hold, -E will not skip the same
3715     version when installing.
3717 Sat Jun 30 01:48:15 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3719   * doc/ru/*: Added Russian translations from Alexey Mahotkin
3720     <alexm@hsys.msk.ru>
3722 Mon Jun 25 03:31:55 CDT 2001 Adam Heath <doogie@debian.org>
3724   * Merged in changes from 1.9.11 to 1.9.14 branches.
3726     + scripts/dpkg-source.pl: Disable source package sanity checking.
3727     + scripts/dpkg-source.pl: make Uploaders optional.
3728     + scripts/controllib.pl: Set the default to convert warnerrors
3729       into warnings.
3730     + scripts/dpkg-source.pl: Remove a warnable error if the orig.tar.gz
3731       contains './'.
3732     + scripts/dpkg-source.pl: Handle symlinks in the tarball, and don't
3733       error out if found.
3734     + scripts/dpkg-source.pl: Add support for an Uploaders field, which is
3735       read from the first paragraph of debian/control, and propagated to
3736       the .dsc.  This lists the people allowed to upload a package.  If it
3737       is not set, then the value of the Maintainer is placed into this
3738       field of the .dsc.  This bumps the .dsc format to 1.1.
3739     + scripts/dpkg-source.pl: Handle stating of truncated cpio filenames
3740       (100 char limit, bah)
3741     + scripts/dpkg-source.pl: Set LC_ALL before calling external programs,
3742       when we are going to parse their output.
3743     + scripts/dpkg-source.pl: Move the check for '\n' and '././@LongLink'
3744       before the check for leading './'.
3745     + dselect/main.cc: Handle window resize in main menu
3746     + scripts/dpkg-source.pl: Add a warnable error if the orig.tar.gz
3747       contains './'.
3748     + scripts/dpkg-source.pl: Handle the case where a single directory
3749       exists in the orig.tar.gz, but it is NOT of the form <pkg>-<ver>.
3750     + scripts/dpkg-source.pl: Don't error out if the files in the tar
3751       have leading './'.
3752     + scripts/dpkg-source.pl, scripts/controllib.pl, scripts/dpkg-source.1,
3753       scripts/dpkg-buildpackage.sh: Add support for -W, which turns certain
3754       errors into warnings, and -E, which turns them back into errors again.
3755     + scripts/dpkg-source.pl: When the tarball doesn't contain directories,
3756       only display the warning once for each directory.
3757     + THANKS: Added Colin Watson.  Also put in an email address for Colin
3758       Plumb.
3759     + scripts/dpkg-source.pl: Grumble.  Fix case where top-dir in
3760       orig.tar.gz was renamed to .orig.
3762 Fri Jun 22 19:26:41 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3764   * dselect/main.cc: Handle window resize in main menu
3766 Wed Jun 20 18:56:35 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3768   * main/help.c: actually use narglist in do_script()
3770 Wed Jun 20 11:28:25 CDT 2001 Adam Heath <doogie@debian.org>
3772   * Merged in changes from 1.9.10 to 1.9.11 branch.
3774     + scripts/dpkg-source.pl: Fix typo.
3775     + scripts/dpkg-buildpackage.sh: Option -a implies option -d.
3776       Set ARCH correctly to host architecture, rather than build arch.
3777     + scripts/dpkg-gencontrol.pl: Error if an illegal package name is used.
3778     + scripts/cl-debian.pl: Change list of allowed urgencies to: low, medium,
3779       high, and critcial.
3780     + scripts/dpkg-scanpackages.pl: warn instead of die when find returns
3781       an error(which happens if there is a dangling symlink, because we use
3782       -follow).
3783     + scripts/dpkg-source.pl: Apply patch from Colin Watson:
3784       * Reset SIGPIPE to DEFAULT when forking gzip.
3785       * set LANG to C before execing cpio, as we parse its output.
3786       * In checktarcpio() and checktarsane(), use the previously open pipes,
3787         instead of the opening files on disk(which was the old, ancient way).
3788       * Improve the output parsing of tar in checktarsane().
3789     + scripts/dpkg-source.pl: When both arch: all and arch: <arch> packages
3790       exist in debian/control, don't promote the source arch: to any, but
3791       only list all and <arch>.
3792     + scripts/dpkg-source.pl: Make it work with GNU md5sum.
3793     + scripts/dpkg-source.1: Document -nc for dpkg-buildpackage.
3794     + scripts/dpkg-genchanges.pl: Set the Architecture to 'source' only when
3795       doing source only uploads in the generated changes files.
3796     + scripts/dpkg-shlibdeps.pl: Fix infinite directory recursion thru
3797       symlinks.
3798     + doc/deb.5: Changed see-also reference to deb-old(5).
3799     + scripts/{Makefile.in,dpkg-architecture.1}: Removed the manpage, and
3800       generate it from the script now.
3801     + scripts/dpkg-architecture.pl: Apply patch to correctly check the output
3802       of gcc on hurd.
3803     + scripts/dpkg-checkbuilddeps.pl: Fix logic error that kept everything
3804       but Build-Deps from working.
3805     + scripts/dpkg-checkbuilddeps.pl: Trim trailing spaces from packages.
3807 Sat Jun 16 18:52:17 CDT 2001 Adam Heath <doogie@debian.org>
3809   * Merge changes from v1_9_10 tag:
3810     + scripts/update-alternatives.pl: Fix switching to auto mode if
3811       alternative symlink goes missing.
3812     + scripts/dpkg-source.pl: s/DEAD_JOE/DEADJOE/
3813     + scripts/dpkg-divert.pl: Fix cleanup of devert.tmp files.
3814     + scripts/dpkg-checkbuilddeps.pl: Fix [arch] parsing, and handle
3815       more variations of spaces.
3817 Sat Jun 16 22:04:04 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3819   * po/es.po: Updated
3821 Sat Jun 09 10:48:14 CEST 2001 peter karlsson <peterk@debian.org>
3823   * po/sv.po, doc/sv/dpkg.8: Updated
3825 Sat Jun  9 00:28:11 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3827   * debian/changelog: import 1.9 releases
3828   * debian/control: add sgmltools-lite to Build-Depends
3829   * Merge changes from v19 branch:
3830     + archtable: add i386-gnu0.2
3831     + dpkg-deb/extract.c: More %z format fixes.
3832     + dselect/method.cc: don't include curses.h since dselect.h already
3833       does that for us
3834     + dselect/method.cc: handle interrupted getc in falliblesubprocess()
3835       prompt
3836     + include/dpkg.h.in: add setcloexec declaration
3837     + lib/mlib.c: add setcloexec(), utility function to set FD_CLOEXEC flag
3838     + lib/dbmodify.c: use setcloexec() on status file
3839     + main/filesdb.c: use setcloexec for diversions and statoverride files
3840     + main/archives.c: add functions to initialize and destroy the obstack,
3841       ensure obstack is initialized in try_remove_can() as well
3842     + lib/parsehelp.c: Correctly handle trailing spaces in versions.
3843     + main/dpkg.8: it's /etc/dpkg/dpkg.cfg, not /etc/dpkg.cfg
3844     + main/dpkg.8: Improve description of --force-confdef
3845     + main/help.c: don't ignore failed maintainer scripts
3846     + scripts/dpkg-architecture.pl: spell dependency consistently
3847     + scripts/dpkg-checkbuilddeps.1: spell dependency consistently
3848     + scripts/dpkg-source.1: spell dependency consistently
3849     + scripts/dpkg-buildpackage: fix pausing logic, and use $changedby as the
3850       signing ID
3851     + scripts/dpkg-checkbuilddeps.pl: Handle varied use of spaces.
3852     + scripts/dpkg-checkbuilddeps.pl: handle multi-line fields
3853     + scripts/dpkg-divert.pl: fix test for illegal packagename
3854     + split/info.c: Change format string, to handle size_t.
3855     + utils/start-stop-daemon.c: consistently use pid_t and uid_t
3856     + debian/control: use a Conflict for sysvinit instead of a Depends
3858 Fri Jun  8 19:42:43 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3860   * po/fr.po: updated
3862 Sat Jun  2 15:09:01 CDT 2001 Adam Heath <doogie@debian.org>
3864   * scripts/dpkg-architecture.pl: Remove bogus check of $!.
3866 Sat Jun  2 15:04:09 CDT 2001 Adam Heath <doogie@debian.org>
3868   * scripts/dpkg-source.pl: Reset SIGPIPE back to a default handler, for
3869     callers that have it masked off.
3871 Sat Jun  2 14:48:35 CDT 2001 Adam Heath <doogie@debian.org>
3873   * scripts/dpkg-checkbuilddeps.pl: Handle varied use of spaces.
3875 Sat Jun  2 14:09:28 CDT 2001 Adam Heath <doogie@debian.org>
3877   * lib/parsehelp.c: Remove leading and trailing spaces from versions, and
3878     check if there are embedded spaces in versions.
3880 Tue May 29 07:27:31 CEST 2001 peter karlsson <peterk@debian.org>
3882   * po/sv.po: Updated.
3884 Mon May 28 22:54:35 CDT 2001 Adam Heath <doogie@debian.org>
3886   * configure.in: AC_REQUIRE is not valid outside of AC_DEFUN.
3887   * automake/dpkg.m4: DPKG_CACHED_TRY_COMPILE was defined with both
3888     AC_DEFUN() AND define().
3890 Mon May 28 19:07:15 CDT 2001 Adam Heath <doogie@debian.org>
3892   * debian/changelog: Update for 1.9.7.
3894 Mon May 28 19:02:52 CDT 2001 Adam Heath <doogie@debian.org>
3896   * scripts/dpkg-divert.pl: Fix cleanup of .dpkg-devert.tmp files.
3898 Mon May 28 16:40:19 CDT 2001 Adam Heath <doogie@debian.org>
3900   * po/it.po: Updated.
3902 Mon May 28 16:27:43 CDT 2001 Adam Heath <doogie@debian.org>
3904   * main/archives.c: If extracting a directory, and it doesn't already
3905     exist on disk, and is shared with another package, don't error cause an
3906     error.
3908 Mon May 28 16:23:26 CDT 2001 Adam Heath <doogie@debian.org>
3910   * doc/ja/822-date.1, doc/ja/Makefile.in, doc/ja/cleanup-info.8,
3911     doc/ja/deb-control.5, doc/ja/deb-old.5, doc/ja/deb.5,
3912     doc/ja/dpkg-checkbuilddeps.1, doc/ja/dpkg-deb.1, doc/ja/dpkg-divert.8,
3913     doc/ja/dpkg-name.1, doc/ja/dpkg-scanpackages.8,
3914     doc/ja/dpkg-scansources.8, doc/ja/dpkg-statoverride.8, doc/ja/dpkg.8,
3915     doc/ja/install-info.8, doc/ja/start-stop-daemon.8,
3916     doc/ja/update-alternatives.8, doc/ja/update-rc.d.8: Updated.
3918 Mon May 28 16:19:51 CDT 2001  Adam Heath <doogie@debian.org>
3920   * dpkg-deb/extract.c, dselect/main.cc, lib/database.c, main/help.c,
3921     main/main.c, split/info.c, utils/start-stop-daemon.c: Fix some
3922     gcc 3.0 warnings.
3924 Mon May  7 23:07:01 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3926   * main/depcon.c: restore previous statement to break reverse cycles 
3928 Mon May  7 23:04:55 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3930   * main/dump.c: break up an assertion so it is easier to figure out what
3931     went wrong.
3933 Sun May  6 13:20:07 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3935   * main/archives.c: add safe_read() to read from a pipe and deal
3936     with partial reads. Modify tarobject() and tarfileread() to use
3937     those.
3939 Sat May  5 00:49:31 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3941   * pl/cs.po: Updated
3942   * pl/de.po: Updated
3943   * po/pl.po: Updated
3944   * dselect/pkgtop.cc: Mark another strang as translatable
3946 Fri May  4 00:19:05 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3948   * dselect/main.cc: oops, swapped j and k key bindings for main menu
3950 Wed May  2 20:41:10 CDT 2001 Adam Heath <doogie@debian.org>
3952   * include/dpkg.h.in, main/Makefile.in main/enquiry.c main/main.c,
3953     main/query.c: Split out code for commands -sSlLp into a separate
3954     binary, dpkg-query, and have the normal dpkg binary exec this.  Also,
3955     dpkg now uses a macro to define external backends to call.
3957 Wed May  2 12:32:24 CDT 2001 Adam Heath <doogie@debian.org>
3959   * configure.in: If --without-zlib was given, and static programs were
3960     enabled, the compile would fail.
3962 Tue May  1 23:05:48 CDT 2001 Adam Heath <doogie@debian.org>
3964   * lib/parse.c: Oops.  EOF_mmap was incorrectly detecting the end of the
3965     data block.
3966   * main/depcon.c: After fixing the above bug, and using debootstrap to
3967     build a sid chroot, I discovered that my previous dependency cycle fix
3968     could cause segfaults in some situations.
3970 Tue May  1 00:24:49 CDT 2001 Adam Heath <doogie@debian.org>
3972   * acconfig.h, config.h.bot, configure.in, lib/varbuf.c, debian/changelog:
3973     Check for __va_copy, and use it, instead of a direct assignment, for
3974     broken arches, like ppc.
3975   
3976 Mon Apr 30 17:34:47 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
3978   * configure.in: remove last list reference.
3980 Mon Apr 30 14:22:25 EDT 2001 Adam Heath <doogie@debian.org>
3982   * debian/changelog: Recompile for 1.9.2, to fix badly generated
3983     dpkg-divert.
3985 Mon Apr 30 10:04:36 CDT 2001 Adam Heath <doogie@debian.org>
3987   * lib/mlib.c: EAGAIN patch from 1.8 branch was not applied to HEAD.
3989 Sun Apr 29 22:39:55 CDT 2001 Adam Heath <doogie@debian.org>
3991   * lib/database.c, lib/fields.c: Fix Eterm/eterm problem.  findpackage()
3992     now does tolower() before searching for a name, and f_name() uses the
3993     name field from the return value of findpackage().
3995 Sun Apr 29 22:08:37 CDT 2001 Adam Heath <doogie@debian.org>
3997   * Makefile.conf.in, configure.in, debian/control, debian/rules,
3998     dpkg-deb/Makefile.in, main/Makefile.in, utils/Makefile.in,
3999     .cvsignore debian/.cvsignore: Added -static support.  There is support
4000     for building a dpkg-static.deb, but this is not used during a normal
4001     run.  However, a -static.nondebbin.tar.gz file is created, in addition
4002     to the normal nondebbin.tar.gz.
4004 Mon Apr 30 02:35:02 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4006   * debian/control: update section and priorities to match the dinstall
4007     overrides
4009 Sat Apr 28 16:34:24 CDT 2001 Adam Heath <doogie@debian.org>
4011   * version-nr: Oops, forgot to update this.
4013 Sat Apr 28 16:17:58 CDT 2001 Adam Heath <doogie@debian.org>
4015   * utils/md5sum.c, debian/changelog: Fix md5sum -c.
4017 Sat Apr 28 15:22:25 CDT 2001 Adam Heath <doogie@debian.org>
4019   * lib/nfmalloc.c: in nfstrnsave, don't set the char after the end, but
4020     set the end, to \0.
4021   * lib/parse.c: Don't loose the last char of a field value, when EOF is
4022     hit.
4024 Sat Apr 28 14:31:27 CDT 2001 Adam Heath <doogie@debian.org>
4026   * scripts/dpkg-divert.pl, debian/changelog: Fix removing of diversions.
4027     This has always been broken, but was just masked by another bug, that
4028     made it work. :|
4030 Sat Apr 28 12:18:55 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4032   * scripts/dpkg-buildpackage.sh: only check for valid sign interface
4033     when the user specifies one
4034    
4035 Sat Apr 28 03:33:28 CDT 2001 Adam Heath <doogie@debian.org>
4037   * debian/dpkg.cfg: Changed to include no-debsig by default, as no debs
4038     are currently signed, and we get false errors when debsig-verify is
4039     installed.  This will be removed in the future, when the archive tools
4040     support package signatures.
4042 Fri Apr 27 20:43:25 CDT 2001 Adam Heath <doogie@debian.org>
4044   * lib/nfmalloc.c: nfstrnsave() was not allocated n+1 chars, and was not
4045     setting the n+1 byte to \0.
4047 Sat Apr 28 02:52:56 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4049   * scripts/dpkg-shlibdeps.pl: do not care if dpkg --search returns
4050     with an error: it will do that know if we search for something
4051     that is not installed which is a valid case for us.
4053 Fri Apr 27 13:14:04 CDT 2001 Adam Heath <doogie@debian.org>
4055   * lib/parse.c, debian/changelog: Fix a segfault when reading an empty
4056     file in parsedb(), imported from head.
4058 Thu Apr 26 13:15:02 CDT 2001 Adam Heath <doogie@debian.org>
4060   * main/configure.c: Update to work with recent lib/mlib.c change in
4061     md5 handling.
4063 Thu Apr 26 11:51:34 CDT 2001 Adam Heath <doogie@debian.org>
4065   * split/{info,join,main,queue,split}.c: s/0/NULL/
4067 Thu Apr 26 13:36:41 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4069   * utils/md5sum.c: use libdpkg error handling since fd_md5 uses that
4070     to report errors.
4072 Wed Apr 25 20:20:07 CDT 2001 Adam Heath <doogie@debian.org>
4074   * utils/md5sum.c, lib/mlib.c: Modified mlib.c, to malloc enough space
4075     for the digest, instead of modifying the static buffer that was
4076     previously passed in.
4078 Thu Apr 26 00:32:35 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4080   * po/da.po: Updated
4082 Wed Apr 25 18:46:47 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4084   * dselect/dselect.8: document dselect.cfg
4086 Wed Apr 25 17:27:36 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4088   * po/es.po: Updated
4090 Wed Apr 25 13:15:41 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4092   * main/dpkg.8: document dpkg.cfg
4094 Wed Apr 25 13:05:13 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4096   * main/dpkg.8: Fix formating error
4098 Wed Apr 25 02:20:40 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4100   * po/gl.po: Updated
4102 Wed Apr 25 01:09:50 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4104   * po/{ja,ru}.po: fix inconsistencies in line endings wrt \n
4106 Wed Apr 25 00:56:14 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4108   * po/ru.po: Updated
4110 Wed Apr 25 00:29:51 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4112   * po/da.po: New Danish translation
4113   * configure.in: add da to ALL_LINGUAS
4115 Tue Apr 24 20:57:48 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4117   * po/ja.po: Updated
4119 Tue Apr 24 20:28:04 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4121   * po/cs.po: Updated
4122   * po/pl.po: Updated
4124 Tue Apr 24 17:23:05 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4126   * main/main.c, po/*.po: fix typo
4128 Tue Apr 24 14:44:28 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4130   * bunch-o-files: move dpkg-scansources manpage to section 8
4132 Tue Apr 24 14:31:41 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4134   * debian/rules: install enoent in the dpkg package
4136 Tue Apr 24 14:29:03 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4138   * debian/rules: actually install French manpages as well
4140 Tue Apr 24 13:38:58 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4142   * scripts/dpkg-divert.pl: Fix wrong errno test
4144 Tue Apr 24 13:35:08 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4146   * po/it.po: New version from Lele Gaifax
4148 Tue Apr 24 13:21:39 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4150   * Merge SuperH patch from YAEGASHI Takeshi
4151   * archtable: add SuperH variants
4152   * scripts/dpkg-architecture.pl: fix typo (shed -> sheb)
4153   * scripts/dpkg-buildpackage.sh: fix dpkg-architecture call
4155 Tue Apr 24 13:03:54 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4157   * utils/enoent.c: new utility to get ENOENT value at runtime
4158   * utils/Makefile.in: install ENOENT in dpkglibdir
4159   * scripts/dpkg-divert.pl, update-alternatives.pl: use enoent to get
4160     ENOENT value
4162 Tue Apr 24 13:01:28 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4164   * dselect/Makefile.in, main/Makefile.in, utils/Makefile.in: use
4165     INSTALL_PROGRAM to install programs
4167 Tue Apr 24 11:57:48 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4169   * main/archives.c: spell recursive correctly
4170   * po/sv.po: updated so it still translates the fixed message
4171   * po/ru.po: updated
4173 Tue Apr 24 07:02:01 CEST 2001 peter karlsson <peterk@debian.org>
4175   * doc/sv/dpkg.8, po/sv.po: Updated Swedish translation.
4177 Tue Apr 24 02:55:21 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4179   * po/de.po: remove Language-Team header, the debian-l10n-german
4180     list it pointed to does not exist.
4182 Tue Apr 24 02:41:23 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4184   * main/enquiry.c: add missing newline after error message
4186 Tue Apr 24 02:13:43 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4188   * dselect/main.cc: use myfileopt as well to read dselect.cfg
4189   * debian/dselect.cfg: new file
4190   * debian/rules: install dselect.cfg
4191   * debian/dpkg.conffiles: add dselect.cfg
4193 Tue Apr 24 01:40:11 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4195   * dselect/pkglist.cc: repair qsort_compareentries
4197 Mon Apr 23 18:08:37 CDT 2001 Adam Heath <doogie@debian.org>
4199   * lib/parsehelp.c: Reduce memory a tad.
4200   * debian/changelog: Close additional bugs.
4201   * debian/rules: Added a build-static rule.
4203 Mon Apr 23 17:17:35 CDT 2001 Adam Heath <doogie@debian.org>
4205   * main/enquiry.c: Additional add error returns for -L, -s, and -p.
4206   * debian/changelog: Close a debian bug because of this.
4208 Mon Apr 23 23:54:34 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4210   * main/main.h: add declaration for nerrs
4211   * main/enquiry.c: exit with non-zero exitcode if -l or -S do not 
4212     produce any output 
4214 Mon Apr 23 16:09:38 CDT 2001 Adam Heath <doogie@debian.org>
4216   * include/dpkg.h.in, lib/mlib.c, main/archives.c, debian/changelog: Added
4217     new PROCNOERR flag, which disabled the error message that is displayed
4218     when a process has an error return.
4220 Mon Apr 23 22:26:23 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4222   * main/dpkg.8: note that force-overwrite is not enabled per default
4224 Mon Apr 23 15:39:37 CDT 2001 Adam Heath <doogie@debian.org>
4226   * dpkg-deb/{build,extract,info}.c, include/dpkg.h.in, lib/mlib.c,
4227     main/{archives,enquiry,help,processarc}.c: Convert waitsubproc and
4228     checksubprocerr to use a flags variable, instead of separate ints.
4230 Mon Apr 23 15:36:58 CDT 2001 Adam Heath <doogie@debian.org>
4232   * main/depcon.c, debian/changelog: When walking the list of providers of
4233     a dependency, the arguments were passed in reverse to the cyclebreak
4234     checker, so cycles involving provides were never detected.
4235   * debian/changelog: Document that we fixed a segfault.
4237 Mon Apr 23 14:13:48 CDT 2001 Adam Heath <doogie@debian.org>
4239   * main/help.c: Fix bad memory access do_script(), introduced when the
4240     casting errors were fixed previously.
4242 Mon Apr 23 06:27:47 CDT 2001 Adam Heath <doogie@debian.org>
4244   * lib/*.c: Changed 0 to NULL.
4246 Mon Apr 23 06:25:36 CDT 2001 Adam Heath <doogie@debian.org>
4248   * dpkg-deb/extract.c: More %z format fixes.
4250 Mon Apr 23 05:31:03 CDT 2001 Adam Heath <doogie@debian.org>
4252   * split/info.c: Change format string, to handle size_t.
4254 Mon Apr 23 04:45:23 CDT 2001 Adam Heath <doogie@debian.org>
4256   * main/main.c: s/--no-debsign/--no-debsig/ in help.
4258 Mon Apr 23 03:21:10 CDT 2001 Adam Heath <doogie@debian.org>
4260   * dpkg-deb/{build,extract,main}.c, split/{info,join,main,queue}.c,
4261     split/dpkg-split.h, lib/{dump,ehandle,fields,mlib,parse{,help},varbuf,
4262     vercmp}.c, lib/parsedump.h, main/{archives,configure,enquiry,filesdb,
4263     help,main,packages,processarc,remove}.c, main/{filesdb,main}.h,
4264     utils/{md5sum, start-stop-daemon}.c, dselect/pkg{list.cc,list.hh,
4265     top.cc}, include/dpkg{-db.h,.h.in}: Fixed up several warning types.
4266     const, casting, incorrect sizes, signed/unsigned comparisons.
4268 Mon Apr 23 02:17:26 CDT 2001 Adam Heath <doogie@debian.org>
4270   * dpkg-deb/info.c, main/processarc.c: Add comments telling why we
4271     use tempnam() and tmpnam().
4273 Sun Apr 22 23:59:00 CDT 2001 Adam Heath <doogie@debian.org>
4275   * archtable: Added alphaev67-linux-gnu.
4277 Sun Apr 22 19:02:12 CDT 2001 Adam Heath <doogie@debian.org>
4279   * lib/parse.c: s/PARSE_MMAP/HAVE_MMAP/, so that we now use mmap
4280     to read status and available(and like files).
4282 Sun Apr 22 18:32:02 CDT 2001 Adam Heath <doogie@debian.org>
4284   * lib/parse.c: Fix another segfault when parsing single-paragraph
4285     files(ie, tmp.ci/control).
4287 Sun Apr 22 17:13:17 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4289   * main/filesdb.c: fix putat logic we broke earlier today
4291 Sun Apr 22 16:42:22 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4293   * main/filesdb.c: don't read a statoverride or .list file if they
4294     are 0 bytes
4296 Sun Apr 22 15:15:56 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4298   * main/help.c: ensure_package_clientdata() only needs to allocate memory
4299     for a perpackagestate struct, not a pkginfoperfile.
4301 Sun Apr 22 02:46:06 CDT 2001 Adam Heath <doogie@debian.org>
4303   * dpkg-deb/build.c, dpkg-deb/extract.c, dpkg-deb/main.c, lib/mlib.c(*),
4304     lib/showcopyright.c, main/enquiry.c, main/main.c, split/main.c,
4305     split/split.c, utils/md5sum.c, utils/start-stop-daemon.c: Added
4306     macro NONRETURNING to several functions.
4308 Sun Apr 22 02:02:34 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4310   * main/filesdb: change initialization of putat in
4311     ensure_packagefiles_available() so gcc won't warn about possible
4312     uninitialized usage
4314 Sun Apr 22 01:45:25 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4316   * utils/start-stop-daemon.c: no longer use deprecated multi-line string
4317   * utils/md5sum.c: include stdlib.h to get declaration of exit
4319 Sat Apr 21 18:00:31 CDT 2001 Adam Heath <doogie@debian.org>
4321   * main/main.c: reworked \\ parsing in commandfd.
4322   * lib/dbmodify.c: fix non-full initalizer.
4324 Sun Apr 22 00:48:18 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4326   * main/main.c: fixed some bizar pointer usage
4328 Sun Apr 22 00:33:26 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4330   * Makefile.conf.in: remove no longer used warning flags
4332 Sat Apr 21 17:16:28 CDT 2001 Adam Heath <doogie@debian.org>
4334   * main/help.c, main/processarc.c, main/filesdb.c,  main/configure.c,
4335     main/archives.c, lib/parse.c: Fix int/pointer casting warnings.
4336   * include/dpkg.h.in, lib/mlib.c: Rewrote buffer_copy_setup, to avoid
4337     int/pointer casting warnings.  These means there are several
4338     variations of buffer_copy_setup.  Also, converted the desc parameter
4339     to const.
4341 Sun Apr 22 00:09:58 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4343   * optlib/long-options.c, lib/showcright.c: include stdlib.h to get
4344     declaration of exit
4346 Sat Apr 21 17:10:32 CEST 2001 peter karlsson <peterk@debian.org>
4348   * po/sv.po, doc/sv/dpkg.8, doc/sv/start-stop-daemon.8:
4349     Updated Swedish translation.
4351 Fri Apr 20 16:02:51 CDT 2001 Adam Heath <doogie@debian.org>
4353   * debian/changelog: Document stuff that was done in December.
4355 Sat Apr 21 04:02:58 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4357   * main/dpkg.8: remove Linux reference
4359 Sat Apr 21 02:39:37 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4361   * scripts/dpkg-scanpackages.pl: fix typo in vercmp version cache
4362   * scripts/dpkg-shlibdeps.pl: remove statement that was basically
4363     a strange no-op
4364   * scripts/controllib.pl: give  syntax error for unexpected PGP signature
4365   * debian/changelog: updated
4367 Fri Apr 20 19:46:38 CDT 2001 Adam Heath <doogie@debian.org>
4369   * po/pl.po: Remove spurious '%s' in Polish translation
4371 Fri Apr 20 19:37:00 CDT 2001 Adam Heath <doogie@debian.org>
4373   * scripts/dpkg-source.pl: Import fix for broken dpkg-source.pl from
4374     1.8.3 version.
4376 Fri Apr 20 19:05:44 CDT 2001 Adam Heath <doogie@debian.org>
4378   * lib/dbmodify.c: Fix varbufprintf call in modstatdb_note(found when
4379     printf format warnings were enabled).
4381 Fri Apr 20 19:02:46 CDT 2001 Adam Heath <doogie@debian.org>
4383   * configure.in: New option, --with-Werror, to convert all warnings
4384     into errors.
4386 Fri Apr 20 18:21:45 CDT 2001 Adam Heath <doogie@debian.org>
4388   * automake/dpkg.m4, configure.in: Add support for gcc attributes,
4389     printfformat, etc.
4391 Fri Apr 20 18:18:20 CDT 2001 Adam Heath <doogie@debian.org>
4393   * lib/database.c: initialize otherpriority with 0, not an int.
4395 Sat Apr 21 00:43:41 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4397   * lib/parse.c: swap order for %.*s formats
4399 Fri Apr 20 22:59:39 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4401   * lib/database.c: initialize otherpriority as well in blankpackage()
4403 Fri Apr 20 22:59:39 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4405   * lib/ehandle.c: make sure we never overflow errmsgbuf
4407 Fri Apr 20 14:59:14 CDT 2001 Adam Heath <doogie@debian.org>
4409   * main/main.c: Accidentally commited a debug fprintf stmt in the last ci.
4411 Fri Apr 20 13:42:12 CDT 2001 Adam Heath <doogie@debian.org>
4413   * main/main.c: Disabled --command-fd, until further testing can be done.
4415 Fri Apr 20 13:02:23 CDT 2001 Adam Heath <doogie@debian.org>
4417   * po/fr.po: Fix typo.
4418   * debian/changelog: Close additional bugs, from other already commited
4419     patches.
4421 Thu Apr 19 15:18:05 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4423   * scripts/cl-debian.pl: make regexps for Closes consistent again
4425 Thu Apr 19 13:36:58 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4427   * utils/install-info.{c,8}: merge patch from Ian Jackson to add a
4428     --retry option to start-stop-daemon
4430 Thu Apr 19 00:14:39 CDT 2001 Adam Heath <doogie@debian.org>
4432   * main/enquiry.c: Errors during dpkg -s(and other similiar commands) are
4433     now printed on stderr.
4435 Thu Apr 19 00:03:16 CDT 2001 Adam Heath <doogie@debian.org>
4437   * main/archives.c:  Apply patch from Fumitoshi UKAI <ukai@debian.or.jp>,
4438     that escapes invalid characters in filenames(intl).
4440 Wed Apr 18 23:53:40 CDT 2001 Adam Heath <doogie@debian.org>
4442   * lib/database.c: In blankpackage, intialize ->installed and ->available.
4443     Found by me and Fumitoshi UKAI <ukai@debian.or.jp>.  This should help
4444     several segfaults that people have been seeing in dpkg.
4446 Wed Apr 18 23:42:16 CDT 2001 Adam Heath <doogie@debian.org>
4448   * lib/mlib.c: If the buffer size is 0 in buffer_copy, then return, and
4449     do nothing.
4451 Wed Apr 18 23:42:16 CDT 2001 Adam Heath <doogie@debian.org>
4453   * configure.in, debian/control: New upstream gettext.  Since we had
4454     to change our build, to comply with the new upstream, we also
4455     need to modify the build-depends.
4456   * po/dpkg.pot, po/nl.po: Fixed broken translations.
4458 Wed Apr 18 18:01:21 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4460   * scripts/install-info.{8,pl}: modify install-info to take relative
4461     filesnames, and add a --remove-exactly option to only remove exact
4462     matches (Rob Browning)
4464 Sun Apr 15 22:42:11 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4466   * config.sub, config.guess: updated
4467   * archtable: add hppa64-linux-gnu
4468   * po/ja.po: remove some translations that gettext can't handle on hppa
4470 Thu Apr 12 13:12:16 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4472   * po/it.po: installed new version from Lele Gaifax
4473   * dselect/main.cc: translate menu option as well in dme()
4475 Wed Apr 11 12:19:25 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
4477   * dselect.main.cc: retry getch if it fails with EINTR
4479 Sun Mar 11 19:24:58 CET 2001 peter karlsson <peterk@debian.org>
4481   * po/sv.po: Updated Swedish translation.
4483 Sat Mar 10 15:59:39 CST 2001 Adam Heath <doogie@debian.org>
4485   * main/filesdb.c: Use a pure file descriptor, instead of a stream, to
4486     load the data, in ensure_packagefiles_available.
4488 Sat Mar 10 01:33:15 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4490   * main/main,h, main/main.c: add --no-debsig option using f_nodebsign
4491   * main/processarc: don't check signatures of f_nodebsign is set
4493 Fri Mar  9 21:23:03 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4495   * include/dpkg.h.in: add DEBSIGVERIFY
4496   * main/main.h, main/main.c: add bad-verify override
4498 Fri Mar  9 19:30:22 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4500   * scripts/controllib.pl: change outputclose to deal with comma-related
4501     syntax errors after processing substvars
4503 Mon Mar  5 16:34:55 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4505   * doc/fr/Makefile.in: add more files
4506   * doc/fr/dpkg.8,doc/fr/install-info.8,doc/fr/update-rc.d.8: updated
4507   * doc/fr/cleanup-info.8,doc/fr/dpkg-divert.8,doc/fr/dpkg-name.1,
4508     doc/fr/dpkg-scanpackages.8,doc/fr/dpkg-scansources.1,doc/fr/dpkg-source.1:
4509     added
4511 Mon Mar  5 14:03:49 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4513   * configure.in: add more warning flags for gcc
4515 Sun Mar 04 21:37:34 CET 2001 peter karlsson <peterk@debian.org>
4517   * po/sv.po, doc/sv/dpkg.8, doc/sv/822-date.1, doc/sv/start-stop-daemon.8:
4518     Updated Swedish translation.
4519   * main/dpkg.8, utils/start-stop-daemon.8: Fixed typos.
4521 Fri Mar  2 17:29:02 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4523   * The Copenhagen Commit
4524   * ChangeLog: undo file corruption (ugh)
4525   * utils/start-stop-daemon.8: fix typo
4526   * configure.in: use AC_C_INLINE instead of our own test
4527   * lib/nfmalloc, include/dpkg-db.h: remove HAVE_INLINE tests, use extern
4528     inline directly
4529   * lib/varbuf.c: add inline keyowrd to varbufaddc
4530   * optlib/Makefile.in: undo earlier patch and build libopt.a again
4531   * lib/Makefile.in: use libopt.a again, and a rule to build it
4532   * Makefile.in: build optlib before lib
4533   * Makefile.conf.in: add RANLIB
4534   * dselect/method.h, dselect/methlist.cc, dselect/method.cc,
4535     dselect/methparse.cc: rename struct option to dselect_option to prevent
4536     conflict with getopt.h
4537   * main/help.c: rework do_script a bit to compile without errors
4538   * scripts/dpkg-gencontrol.pl: add -n option to specify filename
4539   * scripts/dpkg-source.1:
4540     + document -n option for dpkg-gencontrol
4541     + fix confusing wording for dpkg-buildpackage -uc option
4542     + fix layout error for dpkg-distaddfile section
4543     + it's DEADJOE, not DEAD_JOE
4544   * scripts/dpkg-architecture.pl:
4545     + apply cleanup patch from Julian Gilbey
4546     + modify gcc regexp to recognize gcc versions like 2.96-ia64-000717
4547   * scripts/dpkg-checkbuilddeps.pl, scripts/dpkg-checkbuilddeps.1: new
4548     script from Joey Hess to check build dependencies
4549   * THANKS: Add Joey Hess
4550   * scripts/dpkg-parsechangelog.pl:
4551     + support reading changelog from stdin
4552     + remove Linux reference
4553   * scripts/dpkg-statoverride.pl: exit with exitcode 1 if we do --list but
4554     don't output anything, and use exitcode 2 if we try to remove a
4555     non-exiting override (unless --force is given).
4556   * scripts/dpkg-statoverride.8: document new exitcode for --list
4557   * main/main.c, main/dpkg.8: remove --smallmem and --largemem references
4558   * scripts/dpkg-buildpackage.sh: 
4559     + don't bother to specify architecture settings on commandlines since
4560       we put them in the environment already
4561     + remove debsign support, it's useless and debsign can't handle it
4562     + use DEB_BUILD_ARCH to get build architecture, not DEB_HOST_ARCH
4563     + remove Linux reference
4564   * scripts/dpkg-scanpackages.pl: mark last argument as optional in
4565     usage info
4566   * scripts/dpkg-scanpackages.8, scripts/dpkg-name.1, 
4567     scripts/dpkg-shlibdeps.pl, scripts/dpkg-source.pl, scripts/822-date.1,
4568     scripts/cl-debian.pl, scripts/cleanup-info.pl, scripts/dpkg-genchanges.pl,
4569     scripts/dpkg-distaddfile.pl, scripts/dpkg-source.1,
4570     scripts/dpkg-divert.pl, scripts/install-info.pl, scripts/install-info.8,
4571     scripts/dpkg-gencontrol.pl, scripts/update-alternatives.pl,
4572     scripts/update-rc.d.8: remove Linux references
4574 Sun Feb 25 20:26:03 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4576   * version-nr: update to 1.9.0
4578 Sun Feb 25 19:17:53 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4580   * debian/changelog: merged additions from v1.8 branch
4581   * scripts/controllib.pl: 
4582     + no need to have Origin in capit
4583     + consistently use &warn
4584     + fix -s to export all variables instead of just the first
4585   * scripts/dpkg-genchanges.pl: do not complain about missing packages
4586     if doing a source-only build
4587   * scripts/dpkg-buildpackage.sh: 
4588     + correct filename for secret keyring in gpg test
4589     + fix -C
4590     + skip signing pause of building unsigned packages
4591     + improve srcmsg
4592     + test for invalid signinterface
4593   
4594 Sun Feb 25 19:10:33 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4596   * doc/fr/dpkg.8, doc-fr/install-info.8, doc-fr/update-alternatives.8, 
4597     doc-fr/update-rc.d.8:  updated
4598   * doc/fr/dpkg-deb.1: added
4600 Fri Feb 23 16:10:49 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4602   * po/de.po: updated
4603   * po/fr.po: updated
4605 Fri Feb 23 15:54:00 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4607   * utils/start-stop-daemon.c: Add OpenBSD support
4608   * utils/md5sum.c: include unistd.h to things compile on OpenBSD
4609   * configure.in: test to see if we need to link to kvm
4611 Fri Feb 23 10:22:02 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4613   * scripts/dpkg-divert.pl: fix typo in usage message
4614   * main/help.c: mangle argv[0] in do_script to always be the full path
4615   * include/dpkg-db.h: include string.h so things compile on ia64 
4616   * scripts/dpkg-architecture.pl: add ia64
4618 Thu Feb 15 11:24:46 EST 2001 Ben Collins <bcollins@debian.org>
4620   * utils/Makefile.in: Do not use libopt.a, since libdpkg.a now includes those
4621     objects
4622   * optlib/Makefile.in: do not generate libopt.a
4623   * lib/Makefile.in: build libdpkg.a to include the objects from optlib
4624   * Makefile.conf.in: Add optlib to -I includes
4626 Sat Feb  3 18:25:25 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4628   * debian/rules: use POSIX glob instead of regexp
4630 Sat Feb  3 18:18:42 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4632   * scripts/dpkg-source.1: fix description for dpkg-gencontrol
4633   * archtable: add entry for OpenBSD 2.8 for i386
4634   * scripts/dpkg-architecture.p: add openbsd-i386 entry
4636 Sat Feb  3 18:12:18 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4638   * configure.in: check for ranlib
4639   * lib/Makefile.in: run ranlib on libdpkg.a
4641 Fri Feb  2 14:27:47 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4643   * scripts/dpkg-statoverride.pl: use -e instead of -f to test
4644     for filesystem object existance
4645   * scripts/dpkg-source.pl: swap chdir and open in extracttar to
4646     prevent race with source-directory being removed while the
4647     sh/grep process is still running. Patch from Colin Watson
4649 Thu Feb  1 18:22:05 EST 2001 Wichert Akkerman <wakkerma@debian.org>
4651   * scripts/dpkg-source.pl: fix error in error message
4652   * utils/Makefile.in: set top_builddir
4653   * Makefile.in: spell version-nr correctly
4655 Sun Jan 28 22:38:02 EST 2001 Wichert Akkerman <wakkerma@debian.org>
4657   * scripts/dpkg-source.pl: modify how we handle the dscformat: we now
4658     assume all major versions are upwards and backwards compatibly. This
4659     allows us to add new fields without breaking older versions of 
4660     dpkg-source
4662 Sun Jan 21 20:09:36 SGT 2001 Wichert Akkerman <wakkerma@debian.org>
4664   * scripts/dpkg-divert.pl: only allow absolute filenames
4665   * main/configure.c: add -N option to diff invocation
4667 Mon Jan 15 07:27:10 CET 2001 peter karlsson <peterk@debian.org>
4669   * po/sv.po: Updated Swedish translation.
4671 Mon Jan 15 00:26:45 EST 2001 Ben Collins <bcollins@debian.org>
4673   * lib/nfmalloc.c: use obstack_copy/obstack_copy0 for nfstrsave and
4674     nfstrnsave respectively. Also, use an 8k chunk size for now. Should reduce
4675     some overhead, and be faster.
4677 Sun Jan 14 23:37:30 EST 2001 Ben Collins <bcollins@debian.org>
4679   * include/dpkg-db.h: redeclare nfmalloc(), remove obstack definitions
4680   * lib/dbmodify.c (modstatdb_init): remove obstack init
4681   * lib/nfmalloc.c: redefine nfmalloc to be an inline function. It now checks
4682     to make sure db_obs is initliazed.
4683   * main/archives.c (tarobject): declare our own obstack, and use it instead
4684     (cu_fileslist) just call obstack_free
4685   * main/processarc.c: correct calling of cu_fileslist
4687 Sun Jan 14 18:23:07 CST 2001 Adam Heath <doogie@debian.org>
4689   * main/dpkg.8: Document --command-fd.
4691 Sun Jan 14 13:54:46 EST 2001 Ben Collins <bcollins@debian.org>
4693   * optlib/obstack.[ch]: New files for non GNU systems
4694   * optlib/Makefile.in (SOURCES): add obstack.c
4695   * lib/nfmalloc: remove nfmalloc()
4696   * include/dpkg-db.h: define obstack initializers, and define nfmalloc as a
4697     macro for obstack_alloc
4698   * lib/dbmodify.c (modstatdb_init): initialize obstack if it hasn't been already
4700 Sun Jan 14 12:29:46 CST 2001 Adam Heath <doogie@debian.org>
4702   * lib/mlib.c, lib/fields.c, lib/parse.c, main/help.c, main/main.c,
4703     po/dpkg.pot: Fix -Wall messages.  Also, fix handling of user-defined
4704     fields in parsedb().
4706 Sun Jan 14 02:46:14 CST 2001 Adam Heath <doogie@debian.org>
4708   * po/dpkg.pot: Bring up to date.
4710 Sun Jan 14 02:37:05 CST 2001 Adam Heath <doogie@debian.org>
4712   * main/cleanup.c, main/help.c, main/processarc.c:  Removed duplicate
4713     code that was used to exec maintainer scripts, and moved it to a
4714     single function.  In the future, this single function could be used
4715     for tracking script execution.
4717 Sun Jan 14 02:27:48 CST 2001 Adam Heath <doogie@debian.org>
4719   * main/main.h, main/main.c:  Change --{status,command}-pipe to
4720     --{status,command}-fd.
4722 Sun Jan 14 02:19:18 CST 2001 Adam Heath <doogie@debian.org>
4724   * main/main.c, main/archives.c:  Add a --command-pipe.  This allows
4725     multiple commands to be passed to a single instance of dpkg, over
4726     the file descriptor passed on the cmdline.
4728 Thu Jan 11 09:35:00 PST 2001 Wichert Akkerman <wakkerma@debian.org>
4730   * scripts/dpkg-statoverride.pl: do chown before chmod so we don't
4731     loose setuid bits
4733 Mon Jan  8 15:46:13 PST 2001 Wichert Akkerman <wakkerma@debian.org>
4735   * scripts/dpkg-statoverride.{pl,8}: remove --import option now that
4736     suidmanager can convert everything
4738 Mon Jan  8 15:12:21 PST 2001 Wichert Akkerman <wakkerma@debian.org>
4740   * scripts/dpkg-source.pl: add vim swapfiles to the default ignore regexp
4742 Mon Jan  8 10:38:28 PST 2001 Wichert Akkerman <wakkerma@debian.org>
4744   * po/fr.po: updated
4746 Sun Jan  7 14:31:38 CST 2001 Adam Heath <doogie@debian.org>
4748   * lib/dbmodify.c: After N calls(which does a checkpoint()), reset
4749     the counter.
4751 Sun Jan  7 14:27:57 CST 2001 Adam Heath <doogie@debian.org>
4753   * include/dpkg-db.h:  Forgot the status-pipe struct.
4755 Fri Jan  5 22:36:24 CST 2001 Adam Heath <doogie@debian.org>
4757   * main/main.c, lib/dbmodify.c, main/dpkg.8: Add a --status-pipe.
4759 Fri Jan  5 22:25:06 CST 2001 Adam Heath <doogie@debian.org>
4761   * lib/varbuf.c: varbuf(v)printf now return the number of characters
4762     they added to the buffer.
4764 Thu Jan  4 01:20:27 CST 2001 Adam Heath <doogie@debian.org>
4766   * dpkg-deb/build.c, dpkg-deb/extract.c, dpkg-deb/info.c,
4767     include/dpkg.h.in, lib/mlib.c, main/archives.c, main/enquiry.c,
4768     main/help.c main/processarc.c: Add 'warn' parameter to waitsubproc
4769     and checksubprocerr, and also add a return value.  This fixes my
4770     last checkin, where maintainer_script_alternative would run
4771     both the old and new script.
4773 Thu Jan 04 05:19:37 CET 2001 peter karlsson <peterk@debian.org>
4775   * po/sv.po: Updated Swedish translation.
4777 Wed Jan  3 10:35:49 CET 2001 Wichert Akkerman <wakkerma@debian.org>
4779   * configure.in: add doc/fr/Makefile
4781 Tue Jan  2 22:44:14 CST 2001 Adam Heath <doogie@debian.org>
4783   * lib/help.c: Removed an 'inlined' version of waitsubproc, and call
4784     the function instead.
4786 Mon Jan  1 02:07:47 CST 2001 Adam Heath <doogie@debian.org>
4788   * lib/varbuf.c, include/dpkg-db.h: Add varbufdupc().
4790 Mon Jan  1 02:04:26 CST 2001 Adam Heath <doogie@debian.org>
4792   * lib/parse.c: Use of PKGIOFF macro was checked in prematurely.
4794 Sat Dec 30 23:08:00 CET 2000 Wichert Akkerman <wakkerma@debian.org>
4796   * doc/Makefile.in: add fr to SUBDIRS
4797   * doc/fr: new directory with French manpages
4798   * THANKS: add philippe batailler who translated the manpages to French
4800 Sat Dec 30 20:38:20 CST 2000 Adam Heath <doogie@debian.org>
4801   
4802   * utils/start-stop-daemon.c: --name is now allowed on the command
4803     line.
4805 Fri Dec 29 12:39:09 CST 2000 Adam Heath <doogie@debian.org>
4807   * lib/parse.c: Properly parse control files that only have one
4808     paragraph, which means no double ending new line.
4810 Thu Dec 28 18:43:37 CST 2000 Adam Heath <doogie@debian.org>
4812   * lib/database.c: Fix minor memleak in used function hashreport.
4813     Thanks to Adrian Bridgett <bridgett@debian.org>.
4815 Wed Dec 27 14:54:55 CST 2000 Adam Heath <doogie@debian.org>
4817   * lib/parse.c:  Removed use of getc(), and instead use pointers
4818     into a gigantic memory buffer(either thru mmap, or by copying
4819     into a large buffer(#define PARSE_MMAP)).  Nice little speedup,
4820     and also had the added benefit of removing varbuf* code from
4821     parsedb().
4823 Wed Dec 27 04:58:22 CST 2000 Adam Heath <doogie@debian.org>
4825   * lib/fields.c: Removed use of varbuf* code from f_dependency(),
4826     for a speedup.
4828 Wed Dec 27 04:55:14 CST 2000 Adam Heath <doogie@debian.org>
4830   * lib/fields.c: Detect and issue an error when a space is in a
4831     version.
4833 Wed Dec 27 04:00:32 CST 2000 Adam Heath <doogie@debian.org>
4835   * lib/nfmalloc.c, include/dpkg-db.h: Added nfstrnsave().
4837 Tue Dec 26 17:07:11 CST 2000 Adam Heath <doogie@debian.org>
4839   * lib/md5.c, lib/md5.h: Oops, forgot to add these files.
4841 Tue Dec 26 08:28:17 CST 2000 Adam Heath <doogie@debian.org>
4843   * main/main.c: Removed extraneous debug prints, that displayed the
4844     state of all force options.  Doh!
4846 Tue Dec 26 04:34:02 CST 2000 Adam Heath <doogie@debian.org>
4848   * lib/fields.c, lib/parsehelp.c, include/dpkg-db.h: Increased the
4849     speed of convert_string() by a factor of 2, by storing the length
4850     of each string inside the struct(this function is used to convert
4851     strings into integer values).
4853 Tue Dec 26 03:43:17 CST 2000 Adam Heath <doogie@debian.org>
4855   * acconfig.h, config.h.bot, configure.in, main/filesdb.c,
4856     automake/sysinfo.m4(removed): Removed all references to
4857     sysinfo().
4859 Tue Dec 26 03:24:38 CST 2000 Adam Heath <doogie@debian.org>
4861   * main/main.c, main/files.c: Removed --smallmem code.
4863 Mon Dec 25 00:46:47 CST 2000 Adam Heath <doogie@debian.org>
4865   * utils/md5sum.c: Don't use FILE * in mdfile.
4867 Mon Dec 25 00:31:05 CST 2000 Adam Heath <doogie@debian.org>
4869   * include/dpkg.h.in, lib/mlib.c: Added generic setup code to buffer
4870     copy loop.
4872 Sun Dec 24 23:48:45 CST 2000 Adam Heath <doogie@debian.org>
4874   * include/dpkg.h.in, lib/Makefile.in, lib/mlib.c, utils/Makefile.in,
4875     utils/md5sum.c: Moved md5 code into generic buffer_copy loop.
4877 Sun Dec 24 13:59:36 CST 2000 Adam Heath <doogie@debian.org>
4879   * Use DESTDIR when installing /etc/dpkg/origins/dpkg
4881 Sun Dec 24 17:35:12 CET 2000 Wichert Akkerman <wakkerma@debian.org>
4883   * dselect/main.cc: make commandline options work again
4884   * Makefile.conf.in, configure.in,automake/dpkg.m4: revert changes from Adam
4885   * Makefile.conf.in: add @CWARNS@ to CFLAGS
4886   * configure.in: add AC_SUBST for CWARNS
4888 Sun Dec 24 17:05:45 CET 2000 Wichert Akkerman <wakkerma@debian.org>
4890   * scripts/dpkg-genchanges.pl: output descriptions for udebs as well
4892 Sun Dec 24 06:31:55 CST 2000 Adam Heath <doogie@debian.org>
4894   * scripts/dpkg-name.sh: Add -k|--symlink option.
4896 Sun Dec 24 05:58:48 CST 2000 Adam Heath <doogie@debian.org>
4898   * dselect/main.cc: Made the accelerator keys in dselect's main
4899     menu separate options, so that they can be translated separately.
4901 Sun Dec 24 05:31:27 CST 2000 Adam Heath <doogie@debian.org>
4903   * debian/control: Added depends on sysvinit (>= 2.72), so that we
4904     can make sure that /etc/rcS.d exists.
4906 Sun Dec 24 05:24:23 CST 2000 Adam Heath <doogie@debian.org>
4908   * scripts/update-rc.d: Changed documentation and help, as -f only
4909     applies during remove.
4911 Sun Dec 24 05:10:29 CST 2000 Adam Heath <doogie@debian.org>
4913   * main/main.c: Added a --force-all option.
4915 Sun Dec 24 04:32:34 CST 2000 Adam Heath <doogie@debian.org>
4917   * main/main.c: Format help string for --abort-after like other
4918     option help strings.
4920 Sun Dec 24 02:38:38 CST 2000 Adam Heath <doogie@debian.org>
4922   * methods/disk.install, methods/disk.setup, methods/disk.update,
4923     methods/floppy.install, methods/floppy.update, methods/hd.setup,
4924     methods/hd.unpack, methods/hd.update: Fix to pass on admindir
4925     from dselect to dpkg.
4927 Sun Dec 24 01:00:59 CST 2000 Adam Heath <doogie@debian.org>
4929   * scripts/dpkg-source.pl: Minor tweak so that when patch 2.5.4 is
4930     manually used to apply a diff, it doesn't get applied multiple
4931     times.
4933 Sat Dec 23 23:28:52 CST 2000 Adam Heath <doogie@debian.org>
4935   * utils/start-stop-daemon.c: Add --nicelevel, to alter a
4936     programs priority before starting.
4938 Sat Dec 23 22:56:16 CST 2000 Adam Heath <doogie@debian.org>
4940   * main/dpkg.8: Document that --largemem is the default, and that
4941     the test point is 24 megs.
4943 Sat Dec 23 22:53:23 CST 2000 Adam Heath <doogie@debian.org>
4945   * main/dpkg.8: Document that --set-selections does not actually
4946     install any packages.
4948 Sat Dec 23 22:41:47 CST 2000 Adam Heath <doogie@debian.org>
4950   * dpkg-deb/dpkg-deb.1: Fix typo.
4952 Sat Dec 23 22:24:23 CST 2000 Adam Heath <doogie@debian.org>
4954   * scripts/dpkg-divert.pl: Add --truename option.
4956 Sat Dec 23 21:40:32 CST 2000 Adam Heath <doogie@debian.org>
4958   * main/dpkg.8:  Document COLUMNS environment variable.
4960 Sat Dec 23 21:20:43 CST 2000 Adam Heath <doogie@debian.org>
4962   * dpkg-deb/extract.c, include/dpkg.h.in, lib/mlib.c,
4963     main/enquiry.c, main/filesdb.c, main/packages.c, main/remove.c,
4964     utils/start-stop-daemon.c: Clean up a few gcc warnings.  Note,
4965     that the warning:
4966       "deprecated conversion from string constant to `char *'"
4967     is actually a bug in ncurses-dev(which has been filed as 80410)
4968     not setting the fmt argument as const.
4970 Sat Dec 23 19:33:05 CST 2000 Adam Heath <doogie@debian.org>
4972   * automake/dpkg.m4, configure.in, Makefile.conf.in:
4973     Modified DPKG_C_GCC_TRY_WARNS() to call AC_SUBST, so that we can
4974     use the result of the test during build time.
4976 Sat Dec 23 16:44:25 CST 2000 Adam Heath <doogie@debian.org>
4978   * main/depcon.c: Added description for "suggests" in describedepcon().
4980 Sat Dec 23 16:24:31 CST 2000 Adam Heath <doogie@debian.org>
4982   * debian/dpkg.postinst: Remove bashism.
4984 Sat Dec 23 03:06:19 CST 2000 Adam Heath <doogie@debian.org>
4986   * scripts/cl-debian.pl: Make '#' optional in Closes: tags.
4988 Sat Dec 23 02:11:27 CST 2000 Adam Heath <doogie@debian.org>
4990   * scripts/dpkg-buildpackage.sh: Add -t to -h output.
4992 Fri Dec 22 12:35:43 CET 2000 Wichert Akkerman <wakkerma@debian.org>
4994   * scripts/update-alternatives.8: use FHS instead of FSSTND
4996 Thu Dec 21 19:30:56 CET 2000 peter karlsson <peterk@debian.org>
4998   * po/sv.po, doc/sv/dpkg.8: The "Even Merrier Christmas" update of the
4999     Swedish translation.
5001 Thu Dec 21 03:41:56 CST 2000 Adam Heath <doogie@debian.org>
5003   * debian/changelog: Closes bug 49581, because we don't use
5004     external gzip anymore.
5006 Thu Dec 21 03:35:56 CST 2000 Adam Heath <doogie@debian.org>
5008   * main/enquiry.c: s/--cmpversions/--compare-versions/
5010 Thu Dec 21 03:29:04 CST 2000 Adam Heath <doogie@debian.org>
5012   * main/dpkg.8: Remove duplicate -R(it doesn't set --root).
5014 Thu Dec 21 03:24:38 CST 2000 Adam Heath <doogie@debian.org>
5016   * archtable: Add armv3l.
5018 Thu Dec 21 01:40:02 CST 2000 Adam Heath <doogie@debian.org>
5020   * lib/mlib.c, include/dpkg.h.in: Switch all size parameters to
5021     ssize_t.  Also, return totalread, not bytesread, in buffer_copy.
5023 Thu Dec 21 01:22:22 CST 2000 Adam Heath <doogie@debian.org>
5025   * lib/mlib.c: Handle EINTR on reading and writting in buffer_copy.
5027 Thu Dec 21 06:58:21 CET 2000 peter karlsson <peterk@debian.org>
5029   * po/sv.po: The "Merry Christmas" update of the Swedish translation.
5031 Wed Dec 20 12:50:55 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5033   * main/processarc.c: revert change from Adam: reading the trailing
5034     zeroes is essential, not reading them can give us a SIGPIPE
5035     on extracting.
5037 Wed Dec 20 02:41:39 CST 2000 Adam Heath <doogie@debian.org>
5039   * dpkg-deb/build.c, dpkg-deb/extract.c, dpkg-deb/info.c,
5040     include/dpkg-db.h, lib/myopt.c, lib/parse.c, lib/varbuf.c,
5041     lib/vercmp.c, main/archives.c, main/enquiry.c, main/filesdb.c,
5042     main/processarc.c, po/dpkg.pot: Fix -Wall messages.
5044 Wed Dec 20 02:21:43 CST 2000 Adam Heath <doogie@debian.org>
5046   * include/dpkg.h.in: Make {stream,fd}_null_copy use [lf]seek, and fall
5047     back on the buffer code, if stream/fd refer to a pipe.
5049 Wed Dec 20 02:17:56 CST 2000 Adam Heath <doogie@debian.org>
5051   * configure.in, Makefile.conf.in: Move -D_GNU_SOURCE from configure.in
5052     to Makefile, and from CFLAGS to DEFS.  This macro was getting lost
5053     if someone was setting CFLAGS on the cmdline.  Perhaps this should
5054     be moved into config.h.in?
5056 Wed Dec 20 01:39:30 CST 2000 Adam Heath <doogie@debian.org>
5058   * main/processarc.c: Don't copy trailing zeros from dpkg-deb
5059     pipe.
5060   * main/archives.c: Fix some i8ln.
5061   * dpkg-deb/extract.c: Remove skipmember(), and use the buffer
5062     copy code.
5064 Wed Dec 20 01:31:28 CST 2000 Adam Heath <doogie@debian.org>
5066   * lib/nfmalloc.c, lib/parsehelp.c: Lesson the memory footprint.
5068 Wed Dec 20 01:11:13 CST 2000 Adam Heath <doogie@debian.org>
5070   * dpkg-deb/build.c: Fix building of debs, when there is no given
5071     compression on the cmdline.
5073 Wed Dec 20 01:55:59 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5075   * scripts/dpkg-architecture.pl: fix typo / syntax error
5077 Mon Dec 18 07:37:10 CET 2000 peter karlsson <peterk@debian.org>
5079   * po/sv.po: Updated Swedish translation.
5081 Sun Dec 17 13:34:06 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5083   * debian/control: fix typo in Build-Depends and add zlib1g-dev
5084   * More Adam stuff:
5085     + lib/mlib.c, include/dpkg.h.in: make do_fd_copy even more modular
5086     + dpkg-deb/{build.c,extract.c,info.c}, lib/showcright.c,
5087       main/{enquiry.c,filesdb.c}: updated for new do_fd_copy routines
5088     + main/{archives,[ch],main/processarc.c}: use fds instead of streams
5089       so we don't mix fd and stream-based IO which can cause havoc
5091 Wed Dec 13 16:48:47 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5093   * main/archives.c: create files, fifos, devices and directories with mode 0
5094     too close a small window when they are readable before we apply the correct
5095     permissions.
5096   * main/archives.c: newtarobject_allmodes() updated to handle statoverrides
5097   * main/dpkg.8: grammar fix
5099 Tue Dec 12 16:27:59 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5101   * scripts/dpkg-statoverride.pl: fix warning when trying to remove a
5102     non-existing override.
5104 Mon Dec 11 01:10:19 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5106   * debian/control: add gettext to the build-depends
5108 Sun Dec 10 00:10:27 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5110   * lib/mlib.c: remove no longer used struct
5111   * lib/mlib.c: return number of bytes read in do_fd_read
5112   * main/enquiry.c: one more place where we cah use read_fd_vbuf
5114 Sat Dec 09 12:21:35 CET 2000 peter karlsson <peterk@debian.org>
5116   * po/sv.po, doc/sv/deb.5, doc/sv/deb-old.5, doc/sv/dpkg.8:
5117     Updated Swedish translation.
5118   * doc/sv/start-stop-daemon.8: Fixed a typo.
5120 Sat Dec  9 01:51:51 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5122   * archtable, scripts/dpkg-architecture.pl: add linux s/390
5123   * Makefile.conf.in, configure.in: add new option to use libz
5124   * dpkg-deb/Makefile.in, dpkg-deb/build.c, dpkg-deb/extract.c: use libz
5125     if so desired
5126   * debian/rules: default to using static libz
5127   * include/{dpkg-db.h,dpkg.h.in}, lib/mlib.c, lib/varbuf.c: generalize 
5128     fd copy loops
5129   * main/filesdb.c: udpates to use read_fd_buf
5131 Tue Dec 05 07:43:05 CET 2000 peter karlsson <peterk@debian.org>
5133   * po/sv.po: Updated Swedish translation.
5135 Mon Dec  4 14:42:01 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5137   * scripts/dpkg-statoverride.pl, main/filesdb.c: merge patch from
5138     Robert Luberda <robert@pingu.ii.uj.edu.pl> to fix statoverrides
5139     using numerical [ug]ids
5140   * Merge updats from the v17 branch:
5141     + scripts/dpkg-buildpackage.sh: Quote test options for usepause
5142     + scripts/dpkg-shlibdeps.pl: resolve library paths using a combination
5143       of the libc major version, and ldconfig -p output. Solves problems
5144       with errant libc5 deps.
5145     + scripts/dpkg-shlibdeps.pl: Make it parse soname's in the format of
5146       "libfoo-X.X.so" (e.g. libdb-3.1.so) and use it. Also make it give a
5147       warning if there is a NEEDED line in the objdump output that we cannot
5148       grok.
5149     + scripts/update-rc.d.pl: fix typo in regexp for scripts
5150     + debian/rules: remove final occurance of emacs
5152 Mon Dec  4 01:34:57 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5154   * Merge more of Adams handywork to bring dpkg up to speed (literally :)
5155     + include/dpkg.h.in: remove defines for cat and dpkg-safelist since they
5156       are no longer used
5157     + lib/mlib.c: split up do_fd_copy
5158     + lib/varbuf.c: add varbufvprintf
5159     + lib/parse.c: use memset to initialize fieldencountered
5160     + main/filesdb.c: use new read_fd_into_buf
5162 Sun Dec  3 22:11:22 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5164   * dpkg-deb/extract.c: apply one of Adams do_fd_copy patches
5166 Thu Nov 30 02:45:42 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5168   * scripts/dpkg-statoverride.{pl,8}: 
5169     + add new --import option to import settings from /etc/suid.conf
5170     + fix ENOENT issues
5171     + use %owner consistently instead of %owner and %user
5173 Wed Nov 29 17:56:43 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5175   * po/gl.po: updated
5177 Tue Nov 28 18:48:52 CET 2000 peter karlsson <peterk@debian.org>
5179   * po/sv.po: Terminology changes
5181 Sat Nov 25 22:05:19 CET 2000 peter karlsson <peterk@debian.org>
5183   * po/sv.po: Updated Swedish translation
5185 Fri Nov 24 16:49:26 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5187   * scripts/dpkg-scansources.pl: Fix getopt usage since perl5.6 complains
5188     about it.
5189   * doc/deb-old.5,doc/deb.5,main/dpkg.8,scripts/dpkg-name.1,
5190     split/dpkg-split.8 : update to reflect that dpkg-deb is in section 1
5192 Thu Nov 23 19:13:21 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5194   * lib/myopt.c: properly chomp read lines
5196 Thu Nov 23 17:52:44 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5198   * lib/fields.c, lib/dump.c: fix two memory leaks
5199   * More Adam Heath patches:
5200     + lib/mlib.c, include/dpkg.h.in: add new option for do_fd_copy to
5201       specify buffersize
5202     + dpkg-deb/build.c, lib/info.c, lib/showcright.c: update for new
5203       do_fd_copy
5204     + dpkg-deb/extract.c: use do_fd_copy to read data instead of reading
5205       per character.
5206   * lib/mlib.c: fix error reporting for reading data in do_fd_copy
5207   * optlib/Makefile.am: remove (can't believe this still existed!)
5208   * utils/Makefile.in: link md5sum with our own libintl if needed
5209   * archtable, scripts/dpkg-architecture.pl: add freebsd-i386
5210   * acconfig.h, configure.in, doc/Makefile.in: make building documentation
5211     and start-stop-daemon optional
5212   * main/help.c: only check for start-stop-daemon in checkpatch() if we
5213     build it
5215 Thu Nov 23 15:48:53 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5217   * scripts/dpkg-buildpackage.sh: Name .changes file properly if
5218     we are doing a source-only build
5220 Thu Nov  9 13:53:21 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5222   * doc/Makefile.in: use internals.html/index.html as dependency target
5223     so we only rebuild the docs when really needed
5225 Wed Nov  8 14:55:48 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5227   * Makefile.conf, debian/rules: no longer install any emacs support stuff
5228   * debian/50dpkg-dev.el, scripts/debian-changelog-mode.el: removed
5229   * archtable: add powerpc-linux-gnu entry
5230   * debian/dpkg.conffiles: sync with dpkg-17 tree
5232 Tue Nov  7 22:05:48 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5234   * lib/myopt.c: chop read lines in myfileopt
5236 Tue Nov  7 00:45:00 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5238   * scripts/dpkg-statoverride.8: fix typos
5239   * scripts/dpkg-statoverride.pl:
5240     + replace dpkglibdir with admindir (oops)
5241     + open new file for writing in WriteOverrides
5242   * scripts/update-alternatives.pl: handle the fact that the Makefile
5243     changes our $admindir assignment so we have to manually add
5244     "/alternatives" to the path
5246 Mon Nov 06 07:24:11 CET 2000 peter karlsson <peterk@debian.org>
5248   * po/sv.po: Updated.
5250 Sun Nov  5 16:28:26 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5252   * debian/dpkg.conffiles: added missing file
5253   * debian/rules, main/main.c: rename dpkg configfile to dpkg.cfg
5254   * debian/rules, debian/origin: add new origin file
5255   * scripts/dpkg-gencontrol.pl: rename Bugs-Submit-To to Bugs
5256   * debian/control: add Bugs and Origin entries
5257   * lib/database.c, parse.c: add Origin and Bugs to fieldinfos table
5258   * include/dpkg-db.h: add Origin and Bugs to pkginfoperfile struct
5259   * dpkg-deb/main.c, dpkg-deb/dpkg-deb.h: fix type for compression
5260   * Makefile.in: install origin file
5261   * scripts/dpkg-buildpackage.sh: fix logic error in source-only building
5262   * scripts/dpkg-source.pl: handle Bugs and Origin tags
5264 Sun Nov  5 10:00:31 EST 2000 Ben Collins <bcollins@debian.org>
5266   * Create branch point for versioned provides
5267   * Revert patches for it from the HEAD
5269 Sun Oct 29 23:33:48 CET 2000 peter karlsson <peterk@debian.org>
5271   * po/sv.po: some corrections
5273 Sun Oct 29 01:47:59 CEST 2000 peter karlsson <peterk@debian.org>
5275   * po/sv.po: translated readfail message parameters from extract.c
5277 Sat Oct 28 15:41:04 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5279   * scripts/dpkg-genchanges.pl: make a missing package a warning instead
5280     of an error
5281   * dpkg-deb/extract.c: mark readfail message parameters as translateable
5283 Wed Oct 25 00:14:06 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5285   * po/nl.po: new Dutch translation from Ivo Timmermans
5286   * THANKS: add Ivo
5287   * configure.in: add nl to linguas
5289 Thu Oct 19 00:59:40 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5291   * utils/start-stop-daemon.c
5292     + fix a buffer overflow in cmdname handling
5293     + Only abort if we fail to open an existing pidfile
5294   * utils/start-stop-daemon.8: update formating 
5296 Wed Oct 18 17:48:15 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5298   * scripts/dpkg-source.pl: patch from Colin Watson to not rename a
5299     file to itself
5301 Mon Oct 16 10:45:47 EDT 2000 Ben Collins <bcollins@debian.org>
5303   * main/packages.c: Hack up things so a package which
5304     provides/conflicts/replaces it's own virtual can be installed (can't
5305     be removed yet, but hey...)
5307 Sat Oct  7 22:18:43 CEST 2000 Wichert Akkerman <wakkerma@debian.org> 
5309   * po/gl.po, configure.in: add new Galician translation from  Alberto Garcia
5310   * po/pt_BR.po, configure.in: add new Brazilian translation from
5311     Carlos Laviola
5312   * THANKS: add Alberto and Carlos
5314 Wed Oct  4 16:37:08 CEST 2000 Wichert Akkerman <wakkerma@debian.org> 
5316   * main/processarc.c: read trailing zeroes from tar output
5318 Tue Oct 03 23:13:59 CEST 2000 peter karlsson <peterk@debian.org>
5320   * po/sv.po: Updated Swedish translation.
5322 Sun Oct  1 20:09:42 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5324   * main/enquiry.c: fix the listpackage output logic
5325   * main/filesdb.c: fix error cleanup in ensure_statoverride
5326   * lib/myopt.[ch]: add myoptfile() so we can read configuration files
5327   * main/main.c: call new myoptfile()
5328   * include/Makefile.in, include/dpkg.h.in: add dpkgconfdir
5330 Mon Sep 25 16:19:05 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5332   * scripts/dpkg-divert.pl: don't print version twice on --help
5334 Thu Sep 21 16:29:32 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5336   * debian/shlibs-default.template: removed
5337   * debian/shlibs-{default,override}: new files
5338   * debian/rules: install shlibs-{default,override} in /etc/dpkg in dpkg-dev
5339   * scripts/{dpkg-buildpackage.sh,dpkg-genchanges.pl}: add -S option to only
5340     upload sources
5341   * scripts/dpkg-source.1: document new -S option
5343 Sun Sep 17 01:50:34 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5345   * scripts/dpkg-source.1: document -k option for dpkg-buildpackage
5347 Sat Sep 16 22:55:49 CEST 2000 peter karlsson <peterk@debian.org>
5349  * doc/sv/822-date.1, doc/sv/dpkg-split.8: Initial Swedish translation.
5350  * doc/sv/Makefile.in: Added more Swedish manual pages to install.
5351  * po/sv.po: Fixes and updates.
5353 Fri Sep 15 23:45:21 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5355   * THANKS: update email address for dhd
5356   * merge hppa fixed from dhd:
5357     + archtable: add hppa, fixup SuperH entries
5358     + scripts/dpkg-architecture.pl: add hppa
5359     + config.sub, config.guess: updated to support hppa
5360     + main/enquiry.c: fix printarch()
5362 Fri Sep 15 08:00:44 CEST 2000 peter karlsson <peterk@debian.org>
5364   * po/sv.po: Some consistency changes for the translation.
5365   * doc/sv/deb.5, doc/sv/dpkg.8, doc/sv/dselect.8: Translation fixes.
5367 Thu Sep 14 22:31:15 CEST 2000 peter karlsson <peterk@debian.org>
5369   * po/sv.po: Updated Swedish translation.
5370   * doc/sv/deb-control.5, doc/sv/deb-old.5, doc/sv/dpkg.8, doc/sv/md5sum.1,
5371     doc/sv/start-stop-daemon.8: Initial Swedish translation.
5372   * doc/sv/Makefile.in: Added more Swedish manual pages to install.
5374 Sun Sep 10 23:31:02 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5376   * scripts/dpkg-scanpackages.pl: modify to use most recent version
5377     of a package if multiple versions are found
5379 Sat Sep  9 21:17:37 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5381   * debian/control: add dependency on binutils for dpkg-dev (needed for
5382     objdump)
5383   * scripts/dpkg-shlibdeps.pl: really make it do what the documentation
5384     says it does.
5385   * scripts/update-alternatives.pl:
5386     + set alternative to manual mode when doing --config
5387     + Fix typo in test for removed manual alternative
5388     + Merge patch from Camm Maguire to fix updating of slave links
5390 Fri Sep  8 12:28:34 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5392   * configure.in: add de to ALL_LINGUAS
5393   * po/de.po: New German translation from Hartmut Koptein
5394   * THANKS: Add Hartmut 
5395   * main/enquiry.c: fix silly type error
5396   * scripts/dpkg-divert.pl: change $dpkglibdir to $admindir
5397   * scripts/Makefile.in: set $admindir as well in scripts
5399 Tue Sep  5 20:28:17 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5401   * scripts/dpkg-source.1: note that dpkg-shlibdeps uses objdump now
5403 Sat Sep  2 18:29:56 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5405   * archtable, scripts/dpkg-architecture.pl: add entries for SuperH
5407 Wed Aug 30 14:24:53 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5409   * main/enquiry.c: modify listformatstring() to check if output is
5410     being sent to a tty. If not and no COLUMNS is set use a width of 80
5412 Mon Aug 21 12:58:15 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5414   * lib/lock.c, main/filesdb.c, main/archives.c, main/configure.c,
5415      dpkg-deb/build.c, dpkg-deb/extract.c: updates from Chip Salzenberg
5416      to clean up fd handling
5418 Thu Aug 10 21:08:00 CEST 2000 peter karlsson <peterk@debian.org>
5420   * po/sv.po: More corrections and translation updates.
5422 Mon Aug  7 12:02:16 PDT 2000 Wichert Akkerman <wakkerma@debian.org>
5424   * main/enquiry.c: cache value of packagelist formatstring instead
5425     of recreating it for every package
5427 Tue Aug  1 10:56:52 EDT 2000 Ben Collins <bcollins@debian.org>
5429   * main/packages.c: fix thinko with versioned deps
5430   * debian/rules:clean: remove distclean call, we purge the whole build
5431     directory anyway.
5432   * main/main.c: add --assert-versioned-provides option
5433     main/main.h: prototype it
5434     main/enquiry.c: add assertverprov()
5436 Mon Jul 31 23:38:56 EDT 2000 Ben Collins <bcollins@debian.org>
5438   * archtable: add ia64; revert sparc64 so that it turns into sparc. There
5439     wont be a full binary-sparc64 port.
5440   * dselect/main.cc: small fixups to get it to compile with gcc-2.96
5442 Wed Jul 26 21:27:30 CEST 2000 peter karlsson <peterk@debian.org>
5444   * po/sv.po: Updated translation.
5446 Sun Jul 23 15:23:15 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5448   * main/enquiry.c: mark another string as translateable
5450 Sun Jul 16 12:43:59 EDT 2000 Wichert Akkerman <wakkerma@debian.org>
5452   * scripts/dpkg-gencontrol.pl: add Origin, Submit-Bugs-To and
5453     Submit-Bugs-Style fields.
5454   * scripts/dpkg-source.1: slight formatting update
5455   * debian/copyright: merge two entries for Miquel van Smoorenburg
5457 Sat Jul 15 14:55:00 CEST 2000 peter karlsson <peterk@debian.org>
5459   * po/sv.po: More corrections.
5461 Thu Jul 13 10:22:43 EDT 2000 Wichert Akkerman <wakkerma@debian.org>
5463   * lib/fields.c: make a non-exact versioned provides a warning instead
5464     of an error
5466 Tue Jul  4 17:29:06 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5468   * main/enquiry.c: modify getttywidth() to check COLUMNS environment
5469   * scripts/controllib.pl: remove warnings for LOGNAME stuff
5471 Wed Jun 28 19:50:00 CEST 2000 peter karlsson <peterk@debian.org>
5473   * po/sv.po: Updated Swedish translation from comments received.
5475 Wed Jun 28 00:04:40 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5477  * lib/showcright.c: don't translate function-name in do_fd_copy call
5479 Tue Jun 27 19:19:00 CEST 2000 peter karlsson <peterk@debian.org>
5481   * po/sv.po: Updated Swedish translation from comments received.
5483 Sat Jun 17 21:57:00 CEST 2000 peter karlsson <peterk@debian.org>
5485   * po/sv.po: Updated Swedish translation.
5486   * THANKS: Updated my e-mail address.
5488 Fri Jun 16 08:59:47 EDT 2000 Ben Collins <bcollins@debian.org>
5490   * main/depcon.c: really fixup versioned provides this time. basically we
5491     ignore the dvr_* of the provide, and use the version to decide if we
5492     want to use it to satisfy the dep
5493   * main/enquiry.c: ignore dvr_* type when checking for provides
5495 Thu Jun 15 13:41:28 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5497   * lib/parse.c: add Enhances to fieldinfos[]
5498   * lib/fields.c:
5499     + initialize dop->backrev as well when creating new dependency
5500     + only allow exact version relations when dealing with provides
5501   * TODO: remove versioned provides
5502   * debian/rules: don't fail if make clean fails (which happens on a
5503     cvsclean tree)
5505 Thu Jun 15 10:09:03 EDT 2000 Ben Collins <bcollins@debian.org>
5507   * main/depcon.c: remove if() that prevented versioned deps from checking
5508     provides to satisfy them
5509   * dselect/pkgsublist.cc: Same
5511 Tue Jun 13 22:11:22 CEST 2000 peter karlsson <peter@softwolves.pp.se>
5513   * po/sv.po: Updated Swedish translation
5515 Tue Jun 13 19:23:37 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5517   * scripts/dpkg-statoverride.pl: 
5518     + fix two typos in the help message
5519     + Add code to implement --update when adding an override
5520   * scripts/dpkg-statoverride.8: new file
5521   * debian/dpkg.postinst: create statoverride file if it doesn't exist
5523 Mon Jun 12 19:38:17 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5525   * scripts/dpkg-statoverride.pl: fix two typos in the help message
5526   * debian/dpkg.postinst: create statoverride file if it doesn't exist
5528 Mon Jun 12 16:35:26 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5530   * configure.in: generate doc/sv/Makefile as well
5531   * main/filesdb.c: fix logic when reading statusoverride-file
5532   * scripts/.cvsignore: add all the perl scripts
5533   * scripts/dpkg-divert.pl:
5534     + turn $admindir into $dpkglibdir, which the Makefile will handle
5535     + fix glob->regexp logic for --list
5536   * scripts/Makefile.in: 
5537     + replace one `sed' with `$(SED)'
5538     + add dpkg-statoverride
5539   * scripts/dpkg-statoverride.pl: new util to manage statoverrides
5540   * debian/rules: move Swedish manpages into the package as well
5542 Fri Jun  9 15:52:28 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5544   * Merge things from the potato branch:
5545     + po/*.po: updated
5546     + THANKS: Add Lele Gaifax
5547     + configure.in: add Italian to LINGUAS
5548     + doc/sv: new directory with Swedish manpages
5549     + doc/*: removed "GNU/Linux" since this runs on HURD as well
5550     + doc/ja/update-alternatives.8: new version
5551     + dpkg-deb/main.c: remove preprocessor define from gettextized string
5552     + dselect/main.c: remove preprocessor define from gettextized string
5553     + lib/showcright.c: remove preprocessor define from gettextized string
5554     + main/enquiry.c: can't use prepocessor defines in a gettextized string
5555     + dselect/pkgdisplay.cc: Replace empty string for eflags with a space
5556     + dselect/pkgsublist.cc: mark another string as translateable
5557     + dselect/pkgtop.cc: change code to reflect that the empty case for
5558       an eflagstring is now a single space, not an empty string (since
5559       gettext can't handle empty strings).
5560     + main/help.c: allocate a bit more space for the path buffer in checkpath()
5561     + main/main.c: fix location of --abort-after in --help output
5562     + scripts/debian-changelog-mode.el: fix documentation string for
5563       debian-changelog-finalise-last
5564     + scripts/dpkg-source.pl: fix typo
5565     + scripts/udate-alternatives.8: fixed errors found while Japanese
5566       translation was made. 
5567   * methods/Makefile.am: removed
5568   
5569 Sun May 28 17:24:09 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5571   * dpkg-deb/build.c: remove extra closing brace
5572   * include/dpkg.h.in: add define for statusoveride file
5573   * main/filedb.[ch]: add code to manage the statoverride list
5574   * main/archives.c: modify tarobject() to check for statoverrides
5575   * TODO: remove integrating suidmanager note, it's partially done now
5576     
5577 Sun Apr 30 14:19:41 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
5579   * doc/*: remove all references to GNU/Linux and just mention `Debian
5580     system': we just as well on other operating systems.
5581   * scripts/dpkg-source.pl: add Format-field to .dsc files
5582   * debian/changelog: include changes from 1.6.12.99
5584 Sat Apr 15 14:53:23 EDT 2000 Wichert Akkerman <wakkerma@debian.org>
5586   * TODO: updated
5587   * debian/rules: explicitly strip the setgid bit for debian/tmp-*.
5588     This is needed since the kernel copies it when we create subdirs
5589     and install doesn't strip it even though we explicitly ask for
5590     a mode 755 directory. Updated clean target to run make distclean
5591     to remove generated sourcefiles as well.
5592   * dpkg-deb/build.c: add comments to describe what we are doing.
5593     Add code to get a list of files to be added to the archive, reorder
5594     it and feed it to tar and use this to put symlinks after all other
5595     files.
5596   * scripts/dpkg-gencontrol.pl: add dpkg:Version and dpkg:UpstreamVersion
5597     to list of substvars
5599 Thu Apr 13 09:57:52 EDT 2000 Wichert Akkerman <wakkerma@debian.org>
5601   * configure.in: add -D_GNU_SOURCE to CFLAGS so we can get strsignal
5602   * scripts/dpkg-genchanges.pl: output Changed-By just after Maintainer
5603   * scripts/cl-debian.pl: really allow a single whitespace to between # and
5604     a bugnumber that will be closed.
5605   * Synchronize with potato-branch again:
5606     + scripts/dpkg-divert.pl: fixed typo
5607     + debian/dpkg-dev.{postinst,prerm}: remove emacsen-common stuff
5608     + po/{es,sv}.po: updated
5609     + debian/changelog: include changes for 1.6.12
5610     + dpkg-genchanges: recognize non-deb packages (tarballs, such as
5611       dpkg-non-deb and boot-floppies disk tarballs). This makes sure that we
5612       include them when figuring up the Arch field in the .changes
5613     + scripts/dpkg-buildpackage.sh: Don't default to no signing until
5614       after we parsed the options, otherwise we will miss overrides.
5616 Wed Apr 12 19:06:27 EDT 2000 Wichert Akkerman <wakkerma@debian.org>
5618   * scripts/dpkg-genchanges.pl: add dpkg:Version and dpkg:UpstreamVersion
5619     to list of substvars
5621 Sat Mar 18 19:08:20 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5623   * Synchronize with potato-branch again:
5624     + scripts/dpkg-buildpackage: improve test for default signcommand
5625     + po/ja.po: updated
5626     + dselect/*.cc: remove includes for signal.h and curses.h
5627     + dselect/dselect.h: include both signal.h and curses.h and #undef
5628       the ERR from sys/ucontext.h which breaks curses
5629     + scripts/dpkg-divert.pl: fix syntax error
5631 Sat Mar  4 16:52:38 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5633   * Synchronize with potato-branch again:
5634     + debian/changelog: update to 1.6.10
5635     + scripts/dpkg-divert.pl: reinstate last writeability-patch. Modified
5636       to not abort on ENOENT: this indicates a directory does not (yet)
5637       exist. If this happens don't try to rename.
5638     + scripts/update-alternatives.pl:
5639       + update usage-warning to reflect the new --config option
5640       + Document some global variables
5641       + Switch back to auto-mode when removing a manually selected alternative
5642     + dselect/{dselect.h,main.cc,pkglist.cc}: remove CAN_RESIZE stuff
5643     + dselect/methlist.cc: don't abort if getch fails due to interrupted syscall
5644     + dselect/pkglist.cc: don't abort if getch fails due to interrupted syscall
5645     + dselect/baselist.cc: put debug-statement in sigwinchhandler and
5646       actually resize the current terminal before redisplaying the screen
5648 Thu Mar  2 17:03:04 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5650   * dselect/methkeys.cc: remove old bindings for `n' and `p', which
5651     frees `n' to do searchagain
5653 Mon Feb 28 15:12:05 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5655   * utils/Makefile.in: fix link command for start-stop-daemon
5657 Mon Feb 21 18:05:55 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5659   * dselect/pkgsublist.cc: mark another string as translateable
5661 Thu Feb 17 22:01:38 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5663   * doc/ja/dselect.8: Updated
5665 Wed Feb 16 17:13:09 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5667   * dselect/pkgtop.cc: flag two more strings as translateable
5669 Tue Feb 15 19:57:45 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5671   * Merge the potato branch:
5672   * main/dpkg.8: don't list all authors but refer to THANKS file
5673   * debian/control: correct Build-Dependencies for ncurses
5674   * debian/control: update extended description to not list dependencies
5675     for dpkg-dev
5676   * Update lots of documentation
5677   * main/enquiry.c: handle failed open of /dev/tty
5678   * main/remove.c: revert earlier patch from Oct 11 1999 to remove
5679     conffiles before removing directories. Due to the changed execution
5680     order conffiles were no longer around when the postrm was run.
5681     which is not what we want.
5682   * methods/Makefile.in: create $(admindir)/methods/mnt
5683   * scripts/dpkg-gencontrol.pl: undo Source-Version changes
5684   * scripts/dpkg-source.pl: remove sticky bits from directory when
5685     unpacking source
5686   * scripts/install-info.pl: partially apply patch from Jammin Wheeler
5687     <jammin@life.eu.org> to clean up errors
5688   * scripts/update-alternatives.pl: implement --verbose
5690 Sun Feb 13 01:06:46 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5692   * scripts/dpkg-buildpackage.sh: we know that dpkg-architecture is
5693     installed since we provide it, so don't test for its existance
5694   * More updates from Marcus Brinkman:
5695     + archtable: Change first column format from CPU to CPU-OS.
5696       Add entry for i386-gnu. Update comment.
5697     + configure.in: Check Debian architecture revamped:
5698       More appropriate check title. Check for CPU-OS in arhctable (instead
5699       just CPU). Enclose result message in [...] (because of the comma
5700       character). After the test, $dpkg_archset can't be empty, so remove
5701       following test which is always true.
5702     + Remove internal use of --print-architecture:
5703       scripts/controllib.pl: Use always dpkg-architecture -qDEB_HOST_ARCH
5704       scripts/dpkg-buildpackage: Don't set $arch at command line parsing time,
5705         instead, always set it later with dpkg-architecture -qDEB_HOST_ARCH
5706       dpkg-name.pl: Fall back to dpkg --print-installation-architecture.
5708 Sat Feb 12 17:11:33 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5710   * configure.in: don't try to outguess what CFLAGS should be
5711   * scripts/update-alternatives.8: fix typo
5712   * `Merge Marcus Brinkman patches day':
5713     + scripts/dpkg-architecture.pl: architecture -q should not imply -f
5714     + scripts/dpkg-shlibdeps.pl: build a list of packages instead of
5715       overwriting previous results. 
5716     + utils/start-stop-daemon.c: update HURD specifics
5717     + configure.in: revamp HURD detection stuff
5718     + debian/rules: use dpkg-buildarchitecture to get proper info,
5719       set config_arg if we are crosscompiling
5720     + debian/rules: typo in clean target, scan start-stop-daemon for
5721       shlibdeps
5722       
5723 Tue Feb  8 21:33:58 EST 2000 Ben Collins <bcollins@debian.org>
5725   * main/{processarc,archive}.c: Make the conflictor an array of structs and
5726     make sure that check_conflicts uses that and increments a global indexs
5727     for the array. The reason that multiple conflicts/replaces were getting
5728     borked had something to do with thre first one in the hash not being
5729     processed. This was the result of bad pointer games, so this makes it a
5730     lot cleaner.
5732 Wed Jan 19 16:41:04 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5734   * scripts/controllib.pl: add comment with description of global variables
5735   * scripts/dpkg-genchanges.pl:
5736     + add comment with description of global variables
5737     + Change Format number to 1.7
5738     + `Maintainer' is now the actual maintainer as listed in control
5739     + add `Changed-By' field with maintainer as listed in changelog. Add -e
5740       flag to override this value
5741   * scripts/dpkg-buildpackage.sh: pass -e on to dpkg-genchanges
5742   * scripts/dpkg-source.1: document new -e option, update copyright
5744 Mon Jan 17 21:20:35 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5746   * dselect/Makefile.in: not all shells support == for strings comparisons
5747   * version-nr: update to 1.6.8
5748   * scripts/dpkg-shlibdeps.pl: update to version from dpkg_test_bz2_syslog_sigs
5749     branch:
5750     + use objdump instead of ldd
5751     + correct checks on shlibs.local
5753 Sun Jan 16 22:07:12 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5755   * main/dpkg.8: note that --force-overwrite is off by default
5756   * po/.cvsignore: add all the .gmo files
5758 Sat Jan 15 03:48:47 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5760   * doc/ja/dpkg-deb.5: updated with patch from Hiroshi KISE <fuyuneko@ryukyu.ne.jp>
5761   * THANKS: Add Hiroshi KISE
5763 Tue Jan 11 03:34:22 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5765   * scripts/dpkg-genchanges.pl: also upload full source if version is *-0.1
5766   * doc/ja/dpkg.8: updated with patch from Hiroshi KISE <fuyuneko@ryukyu.ne.jp>
5768 Tue Jan 11 18:32:52 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5770   * configure.in: Fix include in test for alphasort 
5771   * Makefile.in: add intl to subdirectory-list
5772   * dpkg-deb/Makefile.in: set top_builddir
5773   * dselect/Makefile.in: set top_builddir
5774   * main/Makefile.in: set top_builddir
5775   * lib/compat.c: add really simple snprintf (doesn't do range-checking)
5776   * lib/compat.c: add sys_siglist
5777   * configure.in: add tests for snprintf and sys_siglist
5778   * include/dpkg.h.in: don't include sys/sysinfo.h, filesdb.c is the only
5779     thing that needs it and it has its own include.
5781 Tue Jan 11 02:02:00 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5783   * dselect/baselist.cc: don't specify SA_INTERRUPT, since it's
5784     not portable and the default behaviour
5785   * main/enquiry.c: include sys/termios.h (needed on Solaris)
5786   * lib/lock.c: use EACCESS instead of EWOULDBLOCK
5787   * dselect/main.cc: fix help for -D
5788   * dselect/main.cc: try to lock admindir instead of using readwrite
5789   * dselect/method.cc: switch to using fcntl for lock since that is more
5790     portable, and revamp lockingcode to reduce code duplication
5792 Mon Jan 10 20:55:45 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5794   * Update Swedish and Russian translation
5796 Sun Jan  9 16:11:39 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5798   * Merge patches from Josip Rodin:
5799     + various text and manpage updates
5800     + dselect/method.cc: don't abort if locking fails but give a
5801       warning
5802     + THANKS: fix various small errors 
5804 Sun Jan  9 01:40:23 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5806   * scripts/cl-debian.pl: Allow space between `#' and the bugnumber in the
5807     changelog scripts
5808   * scripts/start-stop-daemon.c: test for __sparc__ instead
5809   * scripts/Makefile.in: add optlib to CFLAGS
5810   * utils/start-stop-daemon.c: add option to chroot first, patch from Marco d'Itri
5811   * utils/start-stop-daemon.8: document chroot option
5812   * dselect/pkgtop.cc: use waddnstr to print package description instead of waddch
5814 Fri Jan  7 18:24:45 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5816   * dselect/method.cc: pass admindir to dpkg
5817   * dselect/Makefile.in: fix rule to build helpmessages
5818   * dselect/curkeys.h: use curses.h instead of ncurses.h, since someone
5819     decided to play nasty and just remove that
5820   * scripts/: remove dpkg-safelist
5821   * dpkg-deb/build.c: remove dpkg-safelist calls
5822   * main/enquiry.c: redo formula to get fieldwidths for packages
5824 Wed Jan  5 17:09:45 CET 2000 Wichert Akkerman <wakkerma@debian.org>
5826   * Merge patch from Tom Lees <tom@lpsg.demon.co.uk>:
5827     + scripts/dpkg-buildpackage.sh: support debsign
5828   * scripts/update-alternatives.8: fix wrong order of parameters
5829     in ACTION section
5830   * Updated Polish translation
5832 Sun Dec 26 01:31:08 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5834   * Update copyright for Swedish translation to SPI instead of Debian
5836 Sat Dec 25 04:04:48 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5838   * dselect/pkgtop.cc: use waddnstr instead of waddch so we don't strip
5839     the 8th bit of characters
5840   * Replace `Debian Linux' with `Debian GNU/Linux' in some more places
5841   * Update Spanish translation
5842   * main/enquire.c: always use a minimum width of 80 in list1package
5843   * debian/rules: install dpkg-safefilelist
5845 Sat Dec 25 02:50:31 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5847   * Oops, forgot to add scripts/dpkg-safefilelist.{1,pl}
5848   * debian/control: remove double empty line
5849   * dpkg-deb/main.c: Fix help-message
5851 Fri Dec 24 17:34:30 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5853   * version-nr: update to 1.6.5
5854   * doc/Makefile.in: install THANKS
5855   * TODO: remove items that have been done
5856   * lib/showcright.c: exit(0) after showing the copyright since
5857     we don't exec cat anymore
5858   * Patch from David Huggins-Daines <dhd@eradicator.org>:
5859     + main/configure.c: add NULL to execlp() parameters; this fixes the random
5860       segfaults when showing the conffile-diff
5862 Fri Dec 24 15:35:29 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5864   * debian/control: add Build-Depends
5865   * THANKS: new file which lists everyone who contributed to the code
5866   * Change `Debian Linux' to `Debian GNU/Linux' in a couple of manpages
5867   * main/enquiry.c: modify list1package to use the full width of the tty
5868   * main/main.c: fix wrong call to fputs
5869   * Merge patches from Adam Heath:
5870     + lib/mlib.c: new function do_fd_copy to read a file into a fd
5871     + dpkg-deb/build.c: use do_fd_copy
5872     + dpkg-deb/build.c: use dpkg-deb-filelist to reorder files when
5873       building a package
5874     + dpkg-deb/info.c: use do_fd_copy 
5875     + lib/showcright.c: use do_fd_copy to read license
5876     + scripts/dpkg-safelist.{1,pl}: new script to reorder a filelist to
5877       make sure symlinks are listed after their targets. 
5878     + dpkg-deb/main.c: add -z option to set compression level
5879     + dpkg-deb/build.c: pass new -z options to gzip
5880   * dpkg-deb/dpkg-deb.1: document new -z option
5882 Wed Dec 22 13:41:41 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5884   * main/main.c: cleanup printversion
5886 Wed Dec 22 12:07:40 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5888   * debian/dpkg-doc.postrm: Use doc-name instead of file-name (probably
5889     need to change the filename, but I'll be lazy now :)
5890   * dselect/pkgdisplay.cc: Replace empty string for eflags with a space
5891     so gettext doesn't use the translation-info
5892   * po/update.sh: Generate dselect/helpmsgs.{cc,h} so we can translate them.
5893   * po/POTFILES.in: add dselect/helpmsgs.cc
5894   * dselect/Makefile.in: put helpmsgs.{cc,h} in $(srcdir), since gettext
5895     will barf on us if we put them in the builddir. (The real issue here is
5896     that when we generate the .po-files we don't know what the builddir will
5897     be and gettext can't handle VPATH).
5898   * dselect patches from Dan Gohman <gohmandj@mrs.umn.edu>:
5899     + dselect/pkgtop.cc: use ACS_HLINE instead of `-'
5900     + dselect/baselist.cc: change colour of column headings
5901     + dselect: add a new --expert mode which suppresses the display of the
5902       helpscreen
5904 Tue Dec 21 15:59:35 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5906   * scripts/dpkg-scansoures.pl: don't use \z since that is perl5.005-specific.
5907     Patch from Roderick Schertler <roderick@argon.org>
5908   * debian/rules: fix typo so cleanup-info.8 actually gets installed
5910 Fri Dec 17 00:41:50 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5912   * Makefile.conf.in: use @libdir@ and @admindir@
5913   * configure.in: add --with-admindir option and change the default
5914     to $libdir/db
5915   * debian/rules: add --with-admindir=/var/lib/dpkg
5916   * scripts/debian-changelog-mode.el: update location of GPL
5917   * scripts/dpkg-name.sh: update location of GPL
5919 Thu Dec 16 15:20:11 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5921   * utils/start-stop-daemon.c: Fix OS-detection for sunos
5922   * utils/update-rc.d: Accept single-number values, since they are
5923     always in the [0,99] range
5925 Wed Dec 15 16:08:47 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5927   * autogen.sh: copy gettextm4, lcmessage.m4 and progtest.m4 to automake/
5928     for systems without gettext installed
5929   * Makefile.in: remove the gettext-macros in distclean
5930   * utils/Makefile.in: fix clean target, link md5sum and start-stop-daemon
5931     with optlib
5932   * optlib/*: getopt implementation for systems without GNU getopt.
5934 Wed Dec 15 00:18:30 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5936   * configure.in: Add option to disable building dselect
5937   * configure.in: Test for ptrdiff_t and stddef.h
5938   * config.h.bot: iclude stddef.h if it exists
5939   * Add config.sub and config.guess
5941 Tue Dec 14 20:08:58 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5943   * automake/sysconf.m4: really add the file this time
5944   * po/sv.po: new version with minor corrections
5945   * main/depcon.c: minor corrections to depisok()
5946   * scripts/dpkg-buildpackage.sh: fix -nc option
5948 Mon Dec 13 15:18:03 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5950   * scripts/dpkg-gencontrol.pl: use findarch to get the architecture
5952 Sun Dec 12 23:59:25 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5954   * dselect/main.cc: We need to printf programdesc as well
5955   * autogen.sh: Remove libtoolize call
5956   * automake/sysconf.m4: new autoconf-macros for sysconf
5957   * filesdb/main.c: also check MEMINFO_IN_SYSINFO
5958   * configure.in: remove ugly sysinfo-hacks to use new ac macros instead
5959   * utils/start-stop-daemon.c: modify to build on sunos
5961 Sun Dec 12 17:20:12 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5963   * Update the Swedish translation
5964   * start-stop-daemon.c: check exitnodo-flag if we fail to kill a
5965     process
5967 Sun Dec 12 00:41:01 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5969   * Add Swedish translation from Peter Karlsson <pk@mds.mdh.se>
5971 Wed Dec  8 01:36:35 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5973   * Update Czech translation
5975 Tue Dec  7 17:41:17 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5977   * Drop the emacs bytecompile-stuff completely
5979 Tue Dec  7 14:08:21 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5981   * Fix display of copyright in menu
5983 Tue Dec  7 01:26:21 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5985   * Comment changes made in pkgdepcon.cc; they're not completely
5986     correct yet
5988 Mon Dec  6 01:37:08 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5990   * Correct uid/gid-changes in start-stop-daemon, patch from
5991     Topi Miettinen <Topi.Miettinen@nic.fi>
5993 Sun Dec  5 18:09:36 CET 1999 Wichert Akkerman <wakkerma@debian.org>
5995   * Add manpages from Josip Rodin <joy@cibalia.gkvk.hr> for
5996     cleanup-info and dpkg-divert
5997   * New dpkg-scansources from Roderick to allow trailing blanks on lines
5998   * Correct generation of manual-version
5999   * Merge patch from Richard Kettlewell <rjk@sfere.greenend.org.uk> to
6000     eliminate string copies while reading .list files
6001   * Fix earlier translation-patch for dselect so it builds again
6003 Sat Dec  4 04:22:49 CET 1999 Wichert Akkerman <wakkerma@debian.org>
6005   * Update the polish translation
6007 Mon Nov 29 21:11:35 CET 1999 Wichert Akkerman <wakkerma@debian.org>
6009   * Change default lispdir to $(prefix)/emacs/site-lisp/$PACKAGE
6011 Sun Nov 28 21:56:32 CET 1999 Wichert Akkerman <wakkerma@debian.org>
6013   * dselect/pkgdepcon.cc: don't treat recommends like (pre-)depends.
6014     Instead make it similar to suggests but default to selecting the package.
6016 Sat Nov 27 09:46:26 EST 1999 Ben Collins <bcollins@debian.org>
6018   * utils/start-stop-daemon.c: call initgroups() prior to seteuid()
6020 Fri Nov 26 18:36:22 EST 1999 Ben Collins <bcollins@debian.org>
6022   * dselect/main.cc: fixed three cases where gettext usage was not
6023     possible die to macros inlined in the strings
6025 Fri Nov 26 18:09:17 EST 1999 Ben Collins <bcollins@debian.org>
6027   * configure.in: generate utils/Makefile
6028   * utils/configure.in: removed so top level configure will take over this
6029     subdir
6031 Fri Nov 26 02:21:56 CET 1999 Wichert Akkerman <wakkerma@debian.org>
6033   * Fix .so-entries for script manpages
6035 Thu Nov 25 23:59:24 CET 1999 Wichert Akkerman <wakkerma@debian.org>
6037   * Correct location of documentation in debian/dpkg-doc.doc-base
6039 Thu Nov 25 04:55:18 CET 1999 Wichert Akkerman <wakkerma@debian.org>
6041   * Correct name of source tarball in debian/rules
6043 Thu Nov 25 03:45:23 CET 1999 Wichert Akkerman <wakkerma@debian.org>
6045   * Merge the new buildsystem from the wta_build branch. If you want
6046     the old buildsystem check the last-of-automake tag
6048 Fri Nov 19 15:04:10 CET 1999 Wichert Akkerman <wakkerma@debian.org>
6050   * `n' is also searchagain in dselect now
6051   * Do searchagain if an empty searchstring is entered
6053 Thu Nov 18 10:27:35 EST 1999 Ben Collins <bcollins@debian.org>
6055   * utils/start-stop-daemon.c: Added ability for user.group arg to
6056     --chuid. Also, always call initgroups() when using --chuid.
6057   * utils/start-stop-daemon.8: Document above change, also add note to the
6058     --make-pidfile option concerning its problem with daemons that fork
6060 Fri Nov 12 21:21:21 CET 1999 Wichert Akkerman <wakkerma@debian.org>
6062   * Rename japanses translation to just jp
6064 Thu Nov 11 20:14:02 EST 1999 Ben Collins <bcollins@debian.org>
6066   * lib/tarfn.c: add braces around if to fix compiler warning
6068 Fri Nov 12 01:47:24 CET 1999 Wichert Akkerman <wakkerma@debian.org>
6070   * Correct names for build-depency names according to Bug# 49792
6071   * .. and for dpkg-source.pl as well
6073 Mon Nov  8 17:45:50 CET 1999 Wichert Akkerman <wakkerma@debian.org>
6075   * Add support for enhances to dpkg and dselect. dselect doesn't
6076     take any action on it yet though
6078 Tue Nov  2 20:19:48 CET 1999 Wichert Akkerman <wakkerma@debian.org>
6080   * Fix some language mixups: our Polish translation was actually
6081     Czech, and we somehow lost the real Polish text..
6083 Mon Nov  1 23:25:32 CET 1999 Wichert Akkerman <wakkerma@debian.org>
6085   * Add partial Russian translation from Michael Sobolev <mss@transas.com>
6087 Sat Oct 30 16:22:00 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6089   * Fix file conflict between dpkg-dev, dpkg
6090   * Move changelog.manual to dpkg-doc
6092 Sat Oct 30 03:31:30 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6094   * Make it all build again
6095   * retro-actively add this ChangeLog entry
6096   * Removed bogus po/dpkg.po file
6097   * No longer translater internal errors.. we want to see the English text
6098     in bugreports
6100 Fri Oct 29 20:16:43 EDT 1999 Ben Collins <bcollins@debian.org>
6102   * po/update.sh: make sure we only update when there are changes,
6103     also autodetect list of .po files we need to change
6104   * release.sh: likewise for .gmo generation
6106 Fri Oct 29 16:51:03 EDT 1999 Ben Collins <bcollins@debian.org>
6108   * main/archives.c: s/DPK/DPKG/ from one of the gettext changes
6110 Fri Oct 29 21:16:21 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6112   * Fix name for Polish translation
6114 Fri Oct 29 10:37:16 EDT 1999 Ben Collins <bcollins.debian.org>
6116   * dpkg-divert: Fix check for writable filesystem, closes: #48646
6118 Thu Oct 28 22:14:49 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6120   * Add Polish translation from Piotr Roszatycki <dexter@fnet.pl>
6122 Thu Oct 28 10:10:23 EDT 1999 Ben Collins <bcollins.debian.org>
6124   * dpkg-shlibdeps: fix ordering for shlibs.default
6126 Wed Oct 27 21:33:19 EDT 1999 Ben Collins <bcollins.debian.org>
6128   * release.sh: remove attic/ and doc/obsolete/
6129   * dpkg-gencontrol: add "Source" to the fields placed in the control file
6130   * dpkg-parsechangelog: fixed loop for parsepath
6132 Tue Oct 26 19:35:53 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6134   * Also translate helpmessages for dselect
6136 Mon Oct 25 21:08:06 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6138   * Added Czech translation from Petr Cech <cech@atrey.karlin.mff.cuni.cz>
6140 Mon Oct 25 19:10:50 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6142   * Mark more strings for translation in libdpkg and dpkg
6143   * Don't bother translating debug-statements
6145 Mon Oct 25 11:55:35 EDT 1999 Ben Collins <bcollins.debian.org>
6147   * scripts/dpkg-shlibdeps: start using objdump as opposed to ldd, this
6148     works much more cleanly, works with libc5, and allows from better
6149     error reporting. Also corrected checks on shlibs.local, which wasn't
6150     really being parsed, it now works as advertised.
6151   * scripts/{dpkg-gencontrol,dpkg-source,controllib.pl}: fixed references
6152     to old style build dep fields to match current policy ammendment
6154 Mon Oct 25 17:12:34 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6156   * gettextize dselect
6158 Mon Oct 25 08:42:52 EDT 1999 Ben Collins <bcollins.debian.org>
6160   * debian/rules: fix symlink creaton for /usr/share/doc/dpkg-dev -> dpkg,
6161     also compress the info and ps files for internals in dpkg-doc
6163 Mon Oct 25 06:50:17 EDT 1999 Ben Collins <bcollins.debian.org>
6165   * main/processarc.c: fixes calculation of package filename display (the
6166     ".../foo.deb" one) where it was showing the full path if the basename
6167     was longer than 30 chars. Now shows just the basename if it can't
6168     squeez the full path to < 30 chars (even if the basename is > than 30
6169     chars)
6171 Mon Oct 25 02:27:49 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6173   * dselect/main.cc: Fixup error message for invalid parameter to reflect
6174     we are dselect, not dpkg
6176 Sun Oct 24 20:46:44 EDT 1999 Ben Collins <bcollins.debian.org>
6178   * scripts/dpkg-source.pl: we want to 'delete' the POSIXLY_CORRECT env
6179     not 'undef'
6181 Sun Oct 24 20:25:11 EDT 1999 Ben Collins <bcollins.debian.org>
6183   * debian/dpkg-doc-{postrm,prerm}: Added install-info for internals.info
6184   * debian/dpkg-internals: fixed misplaced description
6186 Sun Oct 24 11:39:21 EDT 1999 Ben Collins <bcollins.debian.org>
6188   * debian/control: added dpkg-doc
6189   * debian/dpkg-doc-{postinst,prerm}: new files for dpkg-doc package
6190   * debian/dpkg-internals: doc-base support for dpkg-doc
6191   * debian/rules: added build rules for dpkg-doc to binary-indep target
6192   * doc/Makefile.am: changed build setup for internals.sgml to use the
6193     debiandoc tools, and removed internals.* stuff from being built by
6194     default. Two new targets, internals and internals-install, now handle
6195     this
6196   * doc/changelog: removed, duplicate of ChangeLog
6197   * doc/internals.sgml: converted to debiandoc format, now builds correctly
6198     and without errors
6199   * doc/manuals-version: removed since it is generated at build time
6200   * doc/texinfo.*: moved to doc/obsolete/ since the debiandoc format doesn't
6201     need them
6202   * main/filesdb.c: fixed compiler warning
6204 Sat Oct 23 21:23:08 EDT 1999 Ben Collins <bcollins.debian.org>
6206   * Added 'D' to the list of choices for conffile handling
6208 Sat Oct 23 16:25:16 EDT 1999 Ben Collins <bcollins.debian.org>
6210   * main/{processarc.c,depcon.c}: added new structure for conflictors,
6211     which contains a struct for conflicts. This is used to create an array
6212     of conflicting packages, which are going to be replaced. Allows for
6213     multiple conflicts and replaces. All conflictor handlers were
6214     converted to loops to handle each one (processarc.c).
6216 Sat Oct 23 09:22:16 EDT 1999 Ben Collins <bcollins.debian.org>
6218   * Leave file info intact in available when installing packages. MD5sum,
6219     Filename, and MSDOS-Filename used to get lost when installing a package.
6220   * Backout dep check patch (merged from v1_4_1_18)
6221   * Added armv4l to archtable
6223 Thu Oct 21 12:57:31 EDT 1999 Ben Collins <bcollins.debian.org>
6225   * Fixed incorrect patch for --print-architecture (oops, oh well
6226     it was already broken when there was no gcc anyway :)
6227   * Fixed missing mipseb that was supposed to be in the archtable
6228   * Better output in update-alternatives --config, now shows the
6229     current, and the prefered choices.
6230   * dpkg-name: ignore epoch when getting version
6231   * 50dpkg-dev.el: add it as a conffile for dpkg-dev
6232   * dpkg-shlibdeps: redirect STDERR to /dev/null for the dpkg fork so we
6233     don't see dpkg's errors
6234   * internals.sgml: Removed references to the versions of build tools,
6235     they date the document.
6236   * debian-changelog-mode.el: added hint for better log-email handling
6237   * Added recognition for new source-depends fields for policy
6238     referenced in bug #41232
6239   * dpkg-buildpackage: add -ap option to force a pause prior to starting
6240     the sign process. This helps for people who don't keep their signatures
6241     on the filesystem (on a floppy perhaps, then mount as needed).
6242   * minor script corrections
6243   * dpkg-dev control: Change gcc to c-compiler in the recommends field, and
6244     move cpio, patch and make to the depends line
6246 Thu Oct 21 10:22:43 EDT 1999 Ben Collins <bcollins.debian.org>
6248   * Fixed the check that was added to dpkg-divert.
6249   * Removed the lib version checking.
6250   * Oops, somehow the --config feature went missing from update-
6251     alternatives
6253 Thu Oct 21 13:22:42 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6255   * Update copyright (taken from dpkg-iwj tree, with Ben added)
6256   * Add support for long filenames in tarfiles. Based on a patch
6257     from Andrew Hobson <ahobson@eng.mindspring.net>
6258   * Add a --assert-longfilenames option
6260 Thu Oct 21 06:37:24 EDT 1999 Ben Collins <bcollins.debian.org>
6262   * Fixed some compiler warnings
6263   * Make start-stop-daemon exit(1) when we don't find one of the
6264     pid's we are trying to kill, in accordance with the man page.
6265   * When running --configure on an already installed package, just
6266     say it's installed, and not that it is in an unconfigurable
6267     state
6268   * Bah, add all the prefix/datadir... stuff back to the install
6269     target in debian/rules (po/ doesn't use it)
6270   * Add function to libdpkg that dpkg can call to make sure it's
6271     compiled version matches that of the library. If it fails,
6272     complain loudly, but allow to proceed
6273   * Make dpkg check for uid 0 requirement, before checking the path
6274     since not being root, is probably the reason that the PATH is
6275     borked in the first place
6276   * Make -p short for --print-avail, and -P short for --purge
6277   * Fix typo in md5sum(1) man page
6278   * start-stop-daemon: Add --background and --make-pidfile options
6279   * update-alternatives: make sure we remove "old" symlinks when they
6280     are no longer pertinent. Add /etc/alternatives/README that refers
6281     to the update-alternatives(8) man page.
6282   * dpkg-divert: Add check for being able to write to the old/new
6283     destination before doing a rename. We fail on this, without
6284     changing the diversion registry
6285   * Fix bad regex in update-rc.d
6287 Tue Oct 19 18:07:28 EDT 1999 Ben Collins <bcollins.debian.org>
6289   * Ok, TMPDIR usage is back in dpkg-deb and working
6290   * {include,scripts}/Makefile.am: Fix for using DESTDIR
6291   * debian/rules: really convert to DESTDIR on install target this
6292     time. chmod -x everything in /usr/lib to make lintian happy.
6293     in the clean phase just rm -rf $(BUILD), we don't need to run
6294     distclean and all that other stuff. Don't run "make dist", we
6295     simply copy the .tar.gz that dpkg-source creates for the byhand
6296     source.
6298 Tue Oct 19 09:59:22 EDT 1999 Ben Collins <bcollins.debian.org>
6300   * Reverted the new tmpfile stuff in dpkg-deb. For some reason it's
6301     completely corrupting the new package
6303 Mon Oct 18 18:40:35 EDT 1999 Ben Collins <bcollins.debian.org>
6305   * Reimplemented a better *stat cache for the removal checking code,
6306     this helps a lot when doing upgrades where the packages are a lot
6307     different in layout. Note, I tested the first way and this new way
6308     against package foo (version 1 & 2) each had 5000 files (different
6309     in version 2 than in version 1). basically this meant the old way
6310     needed to do about 2.5 million lstats, and the new way only needs
6311     10,000 lstats. This sped it up about %6000 percent (the old way took
6312     over 1 hour on a 333Mhz, the new way was 2 minutes and 20 seconds).
6313     Note that this is an extreme case since most per package upgrades
6314     a) don't have 5000 files
6315     b) don't have all the files different
6316   * Increased largemem auto detection to >= 24megs, since it's not uncommon
6317     for dpkg to actually use 16megs of ram all on its own when using the
6318     largemem setting (old minimum was 16megs)
6320 Mon Oct 18 09:25:30 EDT 1999 Ben Collins <bcollins.debian.org>
6322   * Add mipseb to the archtable too, since mips and mipseb are
6323     both viable names for the mips big endian arch
6324   * Update dpkg-architecure's archtable
6325   * Removed the maintainer-configure portion in debian/rules, since
6326     we should be shipping the source with all the auto* stuff
6327     already generated anyway
6328   * Removed the ltconfig patch, and resort to a debian/rules fix
6329     to libtool itself after running configure, much cleaner, and
6330     reversible since libtool is a generated file
6331   * Use DESTDIR when installing instead of specifying all our
6332     dest dirs seperately in the make line. Also fix some of the
6333     make files to use DESTDIR when installing files
6334   * Regenerated .po files and dpkg.pot. Also added update.sh to the po/
6335     subdir for easier regenerating for cvs only
6336   * Make release.sh generate .gmo files
6337   * Removed shlibs.default.i386. It's now a template for arch porting to
6338     Debian/dpkg, we install it still, if there exists a file matching the
6339     arch
6341 Sun Oct 17 13:40:46 EDT 1999 Ben Collins <bcollins.debian.org>
6343   * Removed references to dpkg(5) which seems to not exist anymore
6344   * Fixed `dpkg-deb --help' and dpkg-deb(1) from reporting --no-check
6345     when it's actually --nocheck (went with the hardcoded option, so
6346     this is just a documentation fix).
6347   * Added better check in disk.setup for a working NFS server. Makes
6348     it compatible with other non-Linux servers.
6349   * Corrected dpkg(8)'s example of using dpkg -i (showed it used with
6350     a .tar.gz instead of a .deb)
6351   * Applied patch to correct improper TMPDIR handling in dpkg-deb
6352   * When encountering an error in extracting the tar archives in the
6353     packages, we should abort the install, not simply give an error
6354     and continue.
6355   * Make dpkg give the builtin arch if there was an error while exec()'ing
6356     the C compiler with --print-architecture. We still fail if the
6357     output from gcc was bad in some way, since they may be of importance.
6359 Sun Oct 17 11:51:36 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6361   * Revert to hardcoding ENOENT again, since the necessary parts of
6362     the perl POSIX module aren't in perl-*-base. sigh.
6364 Sat Oct 16 11:43:45 EDT 1999 Ben Collins <bcollins.debian.org>
6366   * Added --chuid option to start-stop-daemon to allow switching to
6367     a different uid when starting a process
6368   * Added mipsel to the archtable for completeness
6369   * Added --config option to update-alternatives to allow easy changing
6370     of the registered alternatives for a specific name
6371   * Updated the deb-control(5) man page with all the current fields
6372     and uses
6373   * Made the large info screen show 5 lines of the pkglist so that
6374     it scrolled properly, and still showed the cursor
6376 Thu Oct 14 04:51:14 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6378   * Don't use Errno module but the POSIX module, since that *is*
6379     in perl-*-base
6380   * Fixup debian/rules
6382 Thu Oct 14 04:39:25 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6384   * Update dpkg manpage to add new --force-conf* options
6386 Thu Oct 14 04:16:25 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6388   * Reinstate patch to not read available-file with doing listfiles.
6389   * Don't forget to get the correct SHELL before showing a diff of
6390     conffiles!
6391   * Merge a patch from Ben Collins to add a bunch of --force options
6392     to handle changed conffiles
6394 Thu Oct 14 03:37:52 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6396   * Add mips to archtable
6397   * Use Errno module to get ENOENT instead of hardcoding it
6399 Thu Oct 14 02:47:40 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6401   * Fix C error we introduced in checkpath() earlier
6403 Wed Oct 13 20:41:16 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6405   * Update oldfile-check in process_archive so we don't experience
6406     memory corruption
6408 Wed Oct 13 17:51:17 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6410   * Merge patches from Ben Collins <bcollins@debian.org>:
6411     + fix windowresizing in dselect
6412     + when upgrading check if a file is not also in the new package before
6413           removing it, so we don't remove new files due to symlinks confusing us
6414     + fix logic error in checkforremoval: it was breaking cycles in for the
6415       wrong package
6416     + fix findbreakcycle to remove cycles even for packages we are not changing
6418 Mon Oct 11 22:19:01 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6420   * Add the option to show a diff of the old and new conffile when
6421     configuring a package
6423 Tue Oct 12 17:15:08 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6425   * don't die if we can't open a package in dpkg-scanpackages, just print
6426     a warning and skip the package.
6428 Mon Oct 11 18:18:25 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6430   * Move dselect into its own package
6432 Mon Oct 11 17:37:47 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6434   * Added support for HURD to start-stop-daemon
6435   * Create new directory utils/ for extra C-programs, and move
6436     start-stop-daemon there.
6438 Mon Oct 11 15:47:18 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6440   * Preparation to move start-stop-daemon from scripts to utils
6441   * Merge patches from Ben Collins <bcollins@debian.org>:
6442     + modify remove_buld to remove conffiles when purging a package before we
6443       remove its directories.
6444     + check if we violate conflicts/depends/pre-depends of other packages when
6445       processing an archive.
6447 Mon Oct 11 02:13:15 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6449   * Merge patch from Ben Collins <bcollins@debian.org> to make dpkg-deb
6450     handle packages created with Linux ar.
6452 Thu Oct  7 01:16:23 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6454   * Check if sequencecode is between 0 and 99 instead of just checking
6455     for a number in update-rc.d
6457 Wed Oct  6 14:40:33 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6459   * Lock complete lockfile for database: it's empty anyway, and Hurd
6460     doesn't support partial locks currently
6461   * Don't use PATH_MAX but allocate necessay memory in checkpath().
6462     Useful for system that don't have PATH_MAX (like Hurd)
6464 Tue Oct  5 19:16:38 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6466   * Set docdir to $(datadir)/doc
6467   * Install /etc/emacs/site-start.d/50dpkg-dev.el with mode 644
6469 Tue Oct  5 04:08:41 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6471   * Make /usr/share/doc/dpkg-dev a symlink to /usr/share/doc/dpkg
6473 Mon Oct  4 15:38:42 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6475   * Update GPL and documentation location in debian/copyright
6477 Sat Oct  2 16:00:38 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6479   * Update deb.5 to say it's in section 5, not 8
6481 Tue Sep 28 13:38:50 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6483   * Make dpkg-source work again on empty diffs, patch from Roman Hodek
6484     <Roman.Hodek@informatik.uni-erlangen.de>
6486 Tue Sep 28 01:14:14 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6488   * Fix typo in dpkg-buildpackage that broke signing if only -sgpg was given
6490 Mon Sep 27 04:25:32 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
6492   * Change changelog-style for ChangeLog, the package-style doesn't work
6493     well for CVS IMHO.
6494   * Merged patch from Adam Heath <doogie@debian.org> to make update-alternatives.pl
6495     work across filesystems
6497 dpkg (1.4.1.12) unstable; urgency=low
6499   * Non-maintainer release.
6500   * Fix typo in chmodsafe_unlink that made dpkg chmod files that
6501     weren't setuid or setgid
6503  -- Wichert Akkerman <wakkerma@debian.org>  Sun, 26 Sep 1999 02:41:30 +0200
6505 dpkg (1.4.1.11) unstable; urgency=low
6507   * Non-maintainer release.
6508   * Added sparc64 to archtable
6509   * Added entries for newer alpha architectures to the archtable
6510   * Always run patch and diff with LANG set to C.
6511   * Handle diff warning for files with no newline at the end of file
6512     Closes: Bug#45642
6514  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 24 Sep 1999 03:23:54 +0200
6516 dpkg (1.4.1.10) unstable; urgency=low
6518   * Non-maintainer release.
6519   * Build dpkg-scansources manpages using pod2man
6520   * dpkg-buildpackage changes:
6521     + fix signinterface-detection
6522     + use gpg by default if $HOME/.gnupg/secring.gpg exists
6524  -- Wichert Akkerman <wakkerma@debian.org>  Thu, 16 Sep 1999 15:36:43 +0200
6526 dpkg (1.4.1.9) unstable; urgency=low
6528   * Non-maintainer release.
6529   * Updated dpkg-scansources to current version from Roderick Schertler
6530   * Update location of GPL in internals-manual
6531   * Update location of GPL and dpkg copyright in all manpages
6532   * Include patch from Roman Hodek for dpkg-source to handle diffs of files
6533     with lines that begin with two dashes.
6534   * Move dpkg-scansources to dpkg-dev package
6535   * Move dpkg-scansources manpage to section 8
6536   * Fix error that moved a lot of manpages to the dpkg package.
6537   * It looks like not reading the available-file for listfiles was not greeted
6538     with much enthiousiasm, so reverse the change.
6540  -- Wichert Akkerman <wakkerma@debian.org>  Wed, 15 Sep 1999 03:45:07 +0200
6542 dpkg (1.4.1.8) unstable; urgency=low
6544   * Non-maintainer release.
6545   * Merge dpkg-doc-ja
6546   * Add patch from Raphael Hertzog <rhertzog@hrnet.fr> for dpkg-scansources
6547     to skip comments in signatures. This allows packages to also use GnuPG.
6549  -- Wichert Akkerman <wakkerma@debian.org>  Mon, 13 Sep 1999 04:16:33 +0200
6551 dpkg (1.4.1.7) unstable; urgency=low
6553   * Non-maintainer release.
6554   * Use /usr/share/doc
6555   * Merge changes from dpkg-iwj tree:
6556     + change section in dpkg-deb.1 to 1
6557     + Use COPYINGFILE instead of hardcoded GPL-location in showcopyright()
6558     + varbufprintf (used for some error messages) vsnprintf return value
6559       assumption changed to correspond to reality rather than glibc-doc.
6560     + Don't read available-info when not needed (slightly improved from 
6561           dpkg-iwj: don't read for listfiles either :)
6562     + Cleanup --assert-* code
6563     + Assume largemem on systems without sysinfo(2).
6564     + modify preexec-script for easier script execution
6565     + Do not chmod(".../path/to/symlink",0600) causing many bad perms.
6566     + Sanity-check numbers for parameters
6567     + Move some logic from process_archive into wantinstall
6568     + Print '0' in dpkg-scanpackages if no packages found.
6570  -- Wichert Akkerman <wakkerma@debian.org>  Fri, 10 Sep 1999 04:06:32 +0200
6572 dpkg (1.4.1.6) unstable; urgency=low
6574   * Non-maintainer release.
6575   * scripts/dpkg-architecture.pl: Update to latest version.
6576   * scripts/dpkg-architecture.1: Likewise.
6577   
6578  -- Marcus Brinkmann <brinkmd@debian.org>  Sat, 24 Jul 1999 18:24:21 +0200
6580 dpkg (1.4.1.5) unstable; urgency=low
6582   * Non-maintainer release.
6583   * (dpkg-dev): Use emacsen-common for debian-changelog-mode.el
6584     (closes:Bug#20776,#31030).
6585   * Removed references to the packaging and policy manuals from debian/control.
6586   * Put debian-changelog-mode.el in dpkg-dev and remove from dpkg (closes:Bug#29271).
6587   * Fix paths in 50dpkg-dev.el using Roderick Schertler's patch
6588     (closes:Bug#28270,#29702,#26876,#29184,and others).
6589   * Note that bug number 17367 was fixed in 1.4.0.26.
6590   * Add Zack Weinberg's install-info patch for GNU install-info
6591     compatibility (closes:Bug#28965).
6592   * Add dpkg-architecture stuff from Marcus Brinkmann.
6593   * Remove debian-keyring suggests from dpkg.
6594   * Add -k<keyid> flag to dpkg-buildpackage.
6595   * --textmode works in gpg, remove kluge from dpkg-buildpackage.
6596   * Cleanup configure.in slightly (stop using tl_ macros, fix gettext stuff).
6597   * Attempt to make Debian source useful for non-Debian systems
6598     (i.e. distclean tree instead of maintainer-clean tree).
6599   * Sync with wichert's 1.4.1.4.
6600   * Add my ltconfig-1.3.2.diff (RPATH workaround).
6601   * Add dpkg-scansources program and man page.
6602   * Man pages in /usr/share/man.
6604  -- Joel Klecker <espy@debian.org>  Tue, 13 Jul 1999 18:12:15 -0700
6606 dpkg (1.4.1.4) unstable; urgency=low
6608   * Also change developer-keyring to debian-keyring for dpkg-dev package
6609   * Include spanish translation from Nicolás Lichtmaier <nick@debian.org>
6610   * Depend on perl5 instead of perl
6612  -- Wichert Akkerman <wakkerma@debian.org>  Mon,  5 Jul 1999 00:04:14 +0200
6614 dpkg (1.4.1.3) unstable; urgency=low
6616   * Modify tarobject() so it does not complain if we are creating a
6617     directory that replaces a removed file. This works around the
6618     problem that the filedatabase doesn't remember what filetype a
6619     file was by assuming it already was a directory
6621  -- Wichert Akkerman <wakkerma@debian.org>  Mon, 31 May 1999 23:49:23 +0200
6623 dpkg (1.4.1.2) unstable; urgency=low
6625   * Non-maintainer upload
6626   * Rebuild, so this is glibc2.1 (unless you're on m68k), which is rumoured
6627     to also fix the i8n-problems.
6628   * Incorporate 1.6 format of .changes, patch from Guy Maor
6629   * Fix bug in section-handling of dpkg-scanpackages, patch from Guy Maor
6630   * Disable force-overwrites again, since we're in unstable
6631   * Assume largemem on systems for which sysinfo is not available, Bug# 33658
6633  -- Wichert Akkerman <wakkerma@debian.org>  Wed, 26 May 1999 15:50:17 +0200
6635 dpkg (1.4.1.1) unstable; urgency=low
6637   * Non-maintainer upload
6638   * Install emacs-startup scripts with mode 0644 (lintian)
6639   * Incorporate changes in NMU 1.4.0.32 made by Vincent Renardias
6640     <vincent@waw.com> for slink:
6641     + Apply patch from Jim Pick for update-alternatives.pl to
6642       fix 'Important' bugs #30891 in dpkg and (#27382, #27383, #27696,
6643       #27703, #27736, #27097(merged bugs)) in jdk1.1.
6644   * Incorporate changes in NMU 1.4.0.33 made by me for slink:
6645     + Fix illegal perl construct (Bug# 30985)
6646     + Initialize oialtname->useinstead and oicontest->camefrom to 0 (Bug# 30397)
6647     + Update shlibs.default for libncurses 4 (Bug# 30332)
6648     + Suggest debian-keyring instead of developer-keyring (Bug# 27376, 30248)
6649     + Abort dpkg-divert when attempting to divert a directory (Bug# 30126)
6650     + Make dpkg-deb.1 aware that it is in section 1, not 8
6651     + Fix section in reference to dpkg-deb in dpkg.8 (Bug# 29740)
6652     + Fix typo in --force-help (Bug# 26193)
6653     + Correct path for debian-changelog-mode.el (Bug# 24606)
6654     + Make disk-method for dpkg use /var/run instead of /tmp to fix
6655       symlink-attacks (Bug# 21399)
6656     + Document -n and -f options for update-rc.d in manpage (Bug# 15913)
6657     + Add --abort-after option to change after how many errors we abort and
6658       change the default to 50 (Bug# 22940)
6659     + Fix controllib.pl: don't check debian/substvars unless needed, and
6660       don't depend on language settings (Bug# 31508)
6661     + Allow a - in the architecture-field (Bug# 25537)
6663  -- Wichert Akkerman <wakkerma@debian.org>  Mon,  1 Feb 1999 00:44:01 +0100
6665 dpkg (1.4.1) unstable; urgency=low
6667   * Maintainer release by IWJ.
6668   * Changed Maintainer: field description.
6669   * Various changes to make the damn thing build.
6670   * Add .cvsignore files.
6672  -- Ian Jackson <ian@davenant.greenend.org.uk>  Sun,  1 Nov 1998 17:33:38 +0000
6674 dpkg (1.4.0.31) unstable; urgency=low
6676   * dpkg/processarc.c: Make newfileslist static like the other arguments
6677     for register_cleanup's cu_* functions.
6678   * N-th fix for controllib.pl (simulate old behavior by trying stdin,
6679     stdout, and stderr for getlogin()).
6680   * Enable --force-overwrite for slink release, and comment where to do
6681     so (dpkg/main.c).
6682   * Recompile against ncurses4.
6684  -- Daniel Jacobowitz <dan@debian.org>  Thu, 22 Oct 1998 17:37:23 -0400
6686 dpkg (1.4.0.30) unstable; urgency=low
6688   * dpkg-dev isn't allowed to have a Recommends: debian-keyring (as that's
6689     in contrib), so it's now lowered to a Suggests: . Thanks to James Troup
6690     for pointing this out. 
6692  -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl>  Sat, 26 Sep 1998 13:59:23 +0200
6694 dpkg (1.4.0.29) unstable; urgency=low
6696   * For now, prefer PGP over GPG.
6698  -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl>  Tue, 22 Sep 1998 09:38:09 +0200
6700 dpkg (1.4.0.28) unstable; urgency=low
6702   * Added gpg (GNU Privacy Guard) support:
6703     * scripts/buildpackage.sh: default to GPG (unless no GPG, but only a PGP
6704       secret key file is found), as GPG, unlike PGP, is DFSG-free.
6705     * Updated dpkg-source(1), and added gpg(1) and pgp(1) to the SEE ALSO
6706       section.
6707     * Worked around broken textmode implementation in GPG.
6708     * dpkg-dev now Suggests: gnupg .
6709   * No longer includes developer-keys.pgp . Instead, dpkg now Suggests: and
6710     dpkg-dev now Recommends: developer-keyring.
6711   * Compiled with latest libstdc++ (2.9).
6713  -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl>  Mon, 21 Sep 1998 13:17:14 +0200
6715 dpkg (1.4.0.27) unstable; urgency=low
6717   * REALLY fixed dpkg-dev, and new attempt to placate installer on internals.
6719  -- Daniel Jacobowitz <dan@debian.org>  Fri, 27 Jul 1998 15:58:04 -0400
6721 dpkg (1.4.0.26.0.1) unstable; urgency=low
6723   * Binary-only upload for x86 and fixed dpkg-dev
6725  -- Daniel Jacobowitz <dan@debian.org>  Fri, 24 Jul 1998 15:58:04 -0400
6727 dpkg (1.4.0.26) unstable; urgency=low
6729   * Non-maintainer upload.
6731   * Make --root work with maintainer scripts (Patch by Scott Barker,
6732     bugs #4863 and #3170).
6733   * Fix $(lispdir) bug if compiling without emacs (noticed by Joey Hess).
6735  -- Daniel Jacobowitz <dan@debian.org>  Thu, 23 Jul 1998 12:02:04 -0400
6737 dpkg (1.4.0.25) unstable; urgency=low
6739   * Non-maintainer upload.
6740   
6741   * Add the requested -nc option to dpkg-buildpackage (Do
6742     not clean source tree, useful in debugging cycles).
6743   * controllib.pl: Again by popular acclamation, fix the getlogin() warnings.
6744     I redirected STDERR onto fd 0 before calling getlogin().
6745   * tools.m4: Fix display of whether c++ works.
6746   * dpkg-deb/extract.c: glibc 2.1 and some kernels want to make
6747     fflush() move the current fpos.  Until someone can fix that,
6748     protect with seek.
6749   * Add an extra 0, to dselect/{pkg,meth}keys.cc so it compiles again.
6750   * Start using lchown() if available.
6751   * Really fix #20353. (aclocal.m4 was the wrong place; that's a generated
6752     file.  The correct place is in tl_canon.m4.)
6754  -- Daniel Jacobowitz <dan@debian.org>  Tue, 21 Jul 1998 03:14:14 -0400
6756 dpkg (1.4.0.24) unstable; urgency=low
6758   * Non-maintainer upload.
6760   * dpkg/main.c: Turn --force-overwrite off as default.
6761   * dpkg/main.c: don't list --force-overwrite as default in --force-help,
6762     noticed by Peter Weiss <Peter.Weiss@Informatik.Uni-Oldenburg.DE> and
6763     others. [#23542, part of #17409].
6764   * dpkg/dpkg.8: replaced with a newer version from Jim Van Zandt
6765     <jrv@vanzandt.mv.com>. [#21061]
6767   * dpkg-deb/build.c (do_build): add missing \n and improve error message
6768     when conffile name is too long. [#7057]
6770   * scripts/update-alternatives.8: replaced with better man page from
6771     Charles Briscoe-Smith <cpb4@ukc.ac.uk>. [#17283]
6772   * scripts/dpkg-source.1: corrected logic error in documentation for
6773     dpkg-gencontrol's -p option, as noticed by Oliver Elphick
6774     <olly@linda.lfix.co.uk>. [#14655]
6775   * scripts/controllib.pl (findarch): correct typo in error message,
6776     noticed by Yann Dirson <ydirson@a2points.com>. [#22106]
6777   * scripts/dpkg-buildpackage.sh: fix typo s/source version/source
6778     maintainer/, noticed by Joey Hess <joey@kite.ml.org>, Adam P. Harris
6779     <apharris@onshore.com> and others. [#10175, #15559]
6780   * scripts/dpkg-genchanges.pl: applied patch from Roman Hodek
6781     <Roman.Hodek@informatik.uni-erlangen.de> which solves problems with
6782     architecture specific packages in mostly architecture independent
6783     multi-binary source packages. [#14341, #20192].
6785   * doc/Makefile.am: remove any reference to the packaging manual, as it is
6786     now provided by the separate "packaging-manual" package.
6787   * doc/packaging.sgml: removed.
6788   * doc/developer-keys.pgp: updated to the current debian keyring.
6790   * aclocal.m4: applied patch from Joel Klecker <jk@espy.org> to handle
6791     egcs' --print-libgcc-file-name output. [#20353]
6792   
6793   * debian/copyright: correct FSF address.
6794   * debian/rules: add code from lesstif's debian/rules to make libtool
6795     less of a fool (i.e. not use -rpath and to link shared libraries
6796     against libraries it depends on).  Code by Richard Braakman
6797     <dark@xs4all.nl> and Yann Dirson <dirson@debian.org>.
6798   * debian/rules: remove all reference to the packaging manual as it is
6799     now provided by the seperate "packaging-manual" package. [#21581,
6800     #21186, #22698, #23342]
6801   * debian/rules: link dpkg-divert.1.gz to undocumented.7.gz as the lack
6802     of a real manpage has been reported in #11093.
6803   * debian/README.compile: removed gawk and bogus comment about gettext
6804     being in experimental, as reported by Santiago Vila <sanvila@unex.es>
6805     [#23344].  Added libpaperg (debiandoc2ps needs paperconf).
6806   * debian/shlibs.default.i386: updated for glibc, reported by Herbert Xu
6807     <herbert@gondor.apana.org.au>. [#13140]
6808   * debian/control (dpkg-dev): depend on perl as POSIX (not a part of
6809     perl-base) is needed by most of the perl dpkg-* scripts, noticed by
6810     Joel Klecker <jk@espy.org>. [#22115]
6812  -- James Troup <jjtroup@comp.brad.ac.uk>  Wed, 24 Jun 1998 14:38:52 +0200
6814 dpkg (1.4.0.23.2) frozen unstable; urgency=low
6816   * Non-maintainer upload.
6817   * dpkg/main.c: Turn --force-overwrite back on as default.
6819  -- James Troup <jjtroup@comp.brad.ac.uk>  Tue, 23 Jun 1998 22:19:26 +0200
6821 dpkg (1.4.0.23.1) frozen unstable; urgency=low
6823   * No real changes, only a new version code to make this go to frozen too.
6825  -- Nils Rennebarth <nils@debian.org>  Wed, 10 Jun 1998 17:29:58 +0200
6827 dpkg (1.4.0.23) frozen unstable; urgency=low
6829   * Non-maintainer bug-fix release
6830   * Update the disk method to the hamm directory structure (Bug#21000)
6832  -- Nils Rennebarth <nils@debian.org>  Sun,  7 Jun 1998 19:14:51 +0200
6834 dpkg (1.4.0.22) frozen unstable; urgency=medium
6836   * Non-maintainer bug-fix release
6837   * Install main changelog file as `changelog.gz' instead of
6838     `changelog.dpkg.gz' (Debian Policy, section 5.8) (Bug#6052,15157)
6839   * Avoid use of /tmp/*.$$ in preinst and postinst (Bug#19712)
6840   * Make sure diversions file is always created with mode 0644 (Bug#19494)
6841   * When removing a file, chmod it to 000 if it's a char or block
6842     device or remove its s[ug]id bits, if any (Bug#6006)
6843   * Minor fixes in the programmer's manual (Bug#6206)
6844   * Always create readable status and available files
6845     (Bug#9869,11887,14636,15786,19146)
6846   * Make dpkg-gencontrol honour -DArchtecture=xxxx (Bug#9893)
6847   * Allow different archs for the same binary in debian/files (Bug#9894)
6848   * Added workaround in /usr/lib/dpkg/methods/disk/setup
6849     to avoid bash warning (Bug#10111,10131)
6850   * Recognize old .deb packages with other locales (Bug#12232)
6851   * Added `SHELL=bash' to debian/rules: it uses bash-specific structs
6852   * Move some files from dpkg to dpkg-dev (part of Bug#13295)
6853   * Minor fix in packaging manual regarding to Standards-Version (Bug#14696)
6854   * Fixed --altdir and --admindir in update-alternatives (Bug#15332)
6855   * Strip /usr/lib/libdpkg* (Bug#15671)
6856   * dpkg: send output of --help, --force-help and -Dhelp to stdout
6857     (Bug#16051,18574)
6858   * send correct signals with start-stop-daemon (Bug#17258)
6859   * Make `dpkg-divert --test --remove' work as expected (Bug#19531)
6860   * Determine properly the architecture if gcc is egcs (Bug#20353)
6862  -- Juan Cespedes <cespedes@debian.org>  Sun,  5 Apr 1998 17:37:01 +0200
6864 dpkg (1.4.0.21) unstable; urgency=low
6866   * Non-maintainer release to include a new update-rc.d
6867   * Fixed date on files in the archive from 2017 and 2018 by running
6868     touch foo; find . -newer foo | xargs -r touch; rm foo
6869   * Changed start-stop-deamon message "No <program> found; none killed." to
6870     "No <program> found running; none killed."
6872  -- Miquel van Smoorenburg <miquels@cistron.nl>  Thu,  5 Mar 1998 14:19:46 +0100
6874 dpkg (1.4.0.20) unstable; urgency=low
6876   * Disabled --force-overwrites.
6877   * Removed core file from source
6879  -- Michael Alan Dorman <mdorman@debian.org>  Tue,  9 Jan 2018 03:34:28 -0500
6881 dpkg (1.4.0.19) unstable; urgency=low
6883   * Changed methods/disk.setup to use output of
6884     'dpkg --print-installation-architecture' instead of hard-coded 
6885     '1386' (fixes #10995).
6886   * Patched dpkg-source to properly quote metacharacters in strings 
6887     before using them in pattern-matching expressions (fixes #10811).
6888   * Fixed several documentation typos (fixes #10764).
6889   * dpkg-source now works around 100-character filename limitation of cpio
6890     (fixes #10400).
6891   * dpkg-source now properly handles '\ no newline in source' message from
6892     patch (fixes #5041).
6893   
6894  -- Klee Dienes <klee@debian.org>  Sun, 13 Jul 1997 19:28:22 -0700
6896 dpkg (1.4.0.18) unstable; urgency=low
6898   * dpkg-source now uses new -z option to GNU patch (still needs to be
6899     changed to detect and use old version as well) (fixes #9904, #10005, #10007).
6900   * Added i686 to archtable.
6901   * shlibs.default now uses xlib6 instead of elf-x11r6lib (fixes #9926).
6902   * debian-changelog-mode now uses interruptible completing type-in fields
6903     instead of the previous 'select-a-letter method'.  I consider this
6904     better and more standard than the previous way, but I'd welcome
6905     opinions to the contrary.  Consider this a 'probationary' change for
6906     now (fixes #9873, #9874).
6908  -- Klee Dienes <klee@debian.org>  Sun, 25 May 1997 09:56:08 -0400
6910 dpkg (1.4.0.17) unstable; urgency=low
6912   * All of the dpkg binaries (but not dpkg-dev or dselect) now speak
6913     french, thanks to patches from Christophe Le Bars <clebars@teaser.fr>
6914   * Fix leading spaces before day in 822-date.
6915   * Changes from Tom Lees <tom@lpsg.demon.co.uk> to better support
6916     building on non-Debian systems; minor Makefile fixes.
6917   * Added 'ppc powerpc powerpc' to archtable.
6918   * Changed documentation paper size to US/Letter instead of A4 (A4
6919     may be better, but it's easier to print US/Letter on A4 than it is 
6920     to print A4 on US/Letter).
6921   
6922  -- Klee Dienes <klee@debian.org>  Tue,  13 May 1997 15:24:31 -0400
6924 dpkg (1.4.0.16) experimental; urgency=low
6926   * Added generated sources to GNU-format source archive so it no longer
6927     requires perl to build.
6929  -- Klee Dienes <klee@debian.org>  Sat, 10 May 1997 17:34:29 -0400
6931 dpkg (1.4.0.15) experimental; urgency=low
6933   * Changed dpkg-genchanges to check for ($arch == $substvar{'Arch'}), not
6934     ($arch ne 'all') (fixes #9688).
6935   * Fixed bug in start-stop-daemon.c (was using optarg after argument
6936     parsing was over) (fixes #9597, #9603, #9364).
6937   * Provide 50dpkg-dev.el for xemacs as well as emacs.
6938   * Explicitly provide path for debian-changelog-mode in 50dpkg-dev to use
6939     .el file as workaround until xemacs can read emacs19 .elc files.
6940   * Pass top_distdir explicitly to 'make dist' to accomodate bug in
6941     automake_1.1o-1.
6942   * Fix debian/build to make html documentation without including
6943     directories in tar archives (fixes #9348).
6944   
6945  -- Klee Dienes <klee@debian.org>  Fri,  9 May 1997 13:17:18 -0400
6947 dpkg (1.4.0.14) experimental; urgency=low
6949   * Fixed buglet in install-info.pl (fixes #9438).
6950   * Re-write of update-rc.d.pl, primarily by Miquel van Smoorenburg
6951     <miquels@cistron.nl> (fixes #9434, #9436).
6952   * Renamed "dpkg Programmer's Manual" to "dpkg Internals Manual".
6953   
6954  -- Klee Dienes <klee@debian.org>  Tue,  6 May 1997 22:01:07 -0400
6956 dpkg (1.4.0.13) experimental; urgency=low
6958   * Fix to start-stop-daemon so that it still takes numeric arguments (had
6959     been broken in 1.4.0.12) (fixes #9598).
6960   * Fix 822-date to sanity-check localtime() output (seconds must be the
6961     same as GMT).
6962   * Patch from Guy Maor <maor@ece.utexas.edu> to dpkg-source.pl to support
6963     pristine (MD5-equivalent) upstream sources.
6964   * Patch from Michael Alan Dorman <mdorman@calder.med.miami.edu> to
6965     update-rc.d.pl to fix handling multiple start/stop entries on a single
6966     line.
6967   * Several fixes to dpkg-genchanges to support -B option (added in
6968     1.4.0.12) (fixes #9340).
6969   * Handle errors from 822-date in debian-changelog-mode.el.
6970   * Changed cl-debian.pl to correctly handle extra whitespace in changelog
6971     datestamps.
6973  -- Klee Dienes <klee@debian.org>  Mon,  5 May 1997 18:12:43 -0400
6975 dpkg (1.4.0.12) experimental; urgency=low
6977   * Re-wrote 822-date for clarity and to support timezone offsets >= 12h
6978     (New Zealand in DST is +1300, for example) (fixes #7130).
6979   * Patch from Juergen Menden <menden@morgana.camelot.de> to support
6980     archdependent-only builds (fixes #8912, #9245, #5359).
6981   * Fix archtable entry for powerpc (fixes #8794).
6982   * Strip /sbin/* and /usr/sbin/* in debian/rules (fixes #8853).
6983   * Moved start-stop-daemon to /sbin (fixes #8669).
6984   * Set sharedstatedir and localstatedir for $(MAKE) install in
6985     debian/rules (fixes #8852).
6986   * Fixes for update-rc.d(8) from Jim Van Zandt <jrv@vanzandt.mv.com>
6987     (fixes #8576).
6988   * No longer do variable substitutions when generating change file (fixes
6989     #5862).
6990   * Support symbolic signal names in start-stop-daemon (fixes #7715).
6991   * Add autoload for debian-changelog-mode to /etc/emacs/site-start.d
6992     (fixes #4519, #5841).
6993   * Add recommendation for gcc and make in dpkg-dev (gcc is needed for dpkg
6994     --print-architecture, used by dpkg-gencontrol; make is needed for any
6995     debian/rules file) (fixes #8470).
6996   * Minor changes to packaging manual section on source package
6997     conversion (fixes #6801).
6998   * Renamed "programmer's manual" to 'packaging manual'.
6999   * Start of new "programmer's manual" containing information on dpkg
7000     internals and build information.  This manual uses the new
7001     TeXinfo-SGML format, currently included in doc/.
7002   * dselect/pkgdepcon.cc now checks for debug not NULL, not just depdebug.
7003   * Changed makefiles to support building outside of source directory.
7004   * Include GNU-format source distribution with other non-debian packages.
7006  -- Klee Dienes <klee@debian.org>  Sun,  4 May 1997 11:08:19 -0500
7008 dpkg (1.4.0.11) experimental; urgency=low
7010   * Patches for alpha and libc6 from Michael Alan Dorman
7011     <mdorman@calder.med.miami.edu>.
7012   * Fixed minor problems in dpkg-shlibdeps regular expressions for libc6.
7013   * Fix regex to detect directory creation in dpkg-source.pl.
7014   * Minor changes for automake-1.1n.
7016  -- Klee Dienes <klee@debian.org>  Sun, 23 Mar 1997 18:09:33 -0500
7018 dpkg (1.4.0.10) unstable; urgency=medium
7020   * Fixed bug in controllib.pl (@fowner was entire passwd entry,
7021     not just [uid, gid] as it should have been).
7023  -- Klee Dienes <klee@debian.org>  Thu, 20 Mar 1997 13:06:52 -0500
7025 dpkg (1.4.0.9) unstable; urgency=low
7027   * Check fputs() return values for (ret >= 0), not (ret != 0) (fixes #7522).
7028   * dpkg-shlibdeps no longer gives error for Java and statically linked
7029     binaries (fixes #4988).
7030   * Change 'details of the old format' to 'details of the new format' in
7031     deb-old.5 (fixes #7605).
7032   * dpkg-source -b now warns (was previously silent) if maintainer changes
7033     create new subdirectories.  dpkg-source -x now warns (previously gave
7034     error) if maintainer changes create new subdirectories (partially
7035     fixes #6866, #6671, #5045, #6482).    
7036   * Added manual page for start-stop-daemon (8). 
7037   * Added C version of start-stop-daemon by 
7038     Marek Michalkiewicz <marekm@i17linuxb.ists.pwr.wroc.pl> (fixes #1670).
7039   * Converted to use GNU automake for the build process by Tom Lees 
7040     <tom@lpsg.demon.co.uk>.<
7041   * Preliminary support for dpkg functions as a shared library (now
7042     provides libdpkg.so, but much work needs to be done in better
7043     segregating and defining the interface).
7044   * Preliminary internationalization support by Galen Hazelwood
7045     <galenh@debian.org>.  Only the library, dpkg-deb, md5sum, and dpkg
7046     have been converted so far.  No translations have yet been
7047     constructed.
7048   * Handle 'libc.so.6 => /lib/libc.so.6 (0x40010000)' format from libc6
7049     ldd (fixes #7603, #7926, #8688, #9179, #9134, #8516).
7050   * Removed policy.sgml (it has been moved to the debian-policy package).
7051   * Include patch from Darren Stalder <torin@daft.com> for
7052     dpkg-buildpackage to choose PGP key based on Maintainer: field of 
7053     package being built (or -m<maintainer> option, if present) (fixes 
7054     #7898).
7055   * Changed controllib.pl to use $ENV{LOGNAME}, getlogin(), and $<
7056     (in that order) to determine the intended ownership of 
7057     debian/{files,substvars},  (fixes #7324, #6823, #5659, #5965, #5929,
7058     #9239, #5366).
7059   * Don't sign .dsc file in dpkg-buildpackage if building a binary-only
7060     release (fixes #7260).
7061   * Updated developer-keys.pgp to latest revision (fixes #6134).
7062   
7063  -- Klee Dienes <klee@debian.org>  Mon, 17 Mar 1997 16:11:24 -0500
7065 dpkg (1.4.0.8) unstable; urgency=medium
7067   * Corrected update-rc.d for bash 2.0
7068   * Updated developer-keys.pgp from
7069     http://www.iki.fi/liw/debian/debian-keyring.tar.gz
7071  -- Guy Maor <maor@ece.utexas.edu>  Mon, 3 Feb 1997 04:05:01 -0600
7073 dpkg (1.4.0.7) stable unstable; urgency=HIGH
7075   * Fixed --assert-support-predepends failing between unpack & configure.
7076   * Added --assert-working-epoch option.
7078  -- Guy Maor <maor@ece.utexas.edu>  Sat, 25 Jan 1997 23:02:11 -0600
7080 dpkg (1.4.0.6) stable unstable; urgency=high
7082   * Patched lib/vercmp.c to hopefully fix dselect epoch processing
7083     (Bug#6204), (Bug#4590).
7084   * Patched scripts/dpkg-buildpackage, scripts/dpkg-genchanges,
7085     scripts/dpkg-gencontrol for epoch processing, courtesy of Loic Prylli 
7086     <lprylli@graville.fdn.fr> (Bug#6138, Bug#5225).
7087   * Patched dpkg-genchanges to actually honor the -u switch to specify
7088     directory (Bug#5564).
7089   * Applied patch to main/archive.c to correct problems setting set[gu]id
7090     binaries, courtesy of Herbert Xu <herbert@greathan.apana.org.au>
7091     (Bug#5479). 
7092   * Applied patch to dpkg-source to correct debian-only package names,
7093     courtesy of Guy Maor <maor@ece.utexas.edu> (Bug#5355).
7095  -- Michael Alan Dorman <mdorman@calder.med.miami.edu>  Thu, 2 Jan 1997 11:36:09 -0500
7097 dpkg (1.4.0.5) stable frozen unstable; urgency=medium
7099   * Distribution for frozen too.
7101  -- Heiko Schlittermann <heiko@lotte.sax.de>  Thu, 5 Dec 1996 09:13:42 +0100
7103 dpkg (1.4.0.4) stable unstable; urgency=medium
7105   * Bug2962 fixed: patch from Ian Jackson applied
7106     (cursor keys won't work after search)
7107   * Manuals 2.1.2.2
7109  -- Heiko Schlittermann <heiko@lotte.sax.de>  Fri, 15 Nov 1996 20:21:18 +0100
7111 dpkg (1.4.0.3) unstable; urgency=medium
7113   * dpkg-source -x: created bad permissions (set x-bit for
7114     all files pointed to by a symlink)
7116  -- Heiko Schlittermann <heiko@lotte.sax.de>  Fri, 18 Oct 1996 18:32:06 +0200
7118 dpkg (1.4.0.2) unstable; urgency=medium
7120   * dpkg-buildpackage.sh: reverted the quoting change -- (you
7121     should use super, sudo, realy, but not su.  Or write a wrapper
7122     around su)
7123   * dpkg-buildpackge.sh: passing -m, -C, -v options to dpkg-genchanges
7124     more the way Ian likes ;-)
7125   * dpkg-source.pl: new function deoctify() as replacement for eval()
7126     (turn \ddd into the corresponding character) [rem: probably better
7127     solution would be to convert cpios output names into complete \ddd 
7128     representation as well tars output names] 
7129   * dpkg-source.pl: fixed 2 typos in failure message on creating 
7130     $origtargz.tmp-nest.
7131   * main/main.c: typo `tread' -> `treat'
7132   * main/enquiry.c: fixed the ignorance for some relations in --compare-versions
7133   * main/enquiry.c: missing version is now handled as described in `dpkg --help'
7134     (or at least as I understood `dpkg --help' PLEASE TRY IT)
7135   * lib/parsehelp.c: fixed parsing of epoch information
7137  -- Heiko Schlittermann <heiko@lotte.sax.de>  Sun, 6 Oct 1996 23:27:47 +0200
7139 dpkg (1.4.0.1) unstable; urgency=medium
7141   * dpkg-source: doesn't get screwed up from hardlinks
7142     in the archive now
7143   * dpkg-source: doesn't get screwed up from `unprintable' characters
7144     in file names (e.g. from the kbd package) 
7145   * controllib.pl: $varlistvile -> $varlistfile (thanx Karl Sackett)
7146   * dpkg-buildpackge: quoting for $rootcommand (thanx  Michael Meskes)
7147     and `eval' as default $rootcommand
7148   * dpkg-*, controllib.pl: created debian/files and debian/substvars
7149     are chown'ed to `getlogin()' and its group
7150   * doc/: mv changed to mv -f
7151   * dpkg-buildpackage: added an option -a for overriding the
7152     architecture in the changes _file_name_
7153   * dpkg-buildpackage: pass -m* -v* .. options to dpgk-genchangelog
7154   * dpkg-name moved to dpkg-dev
7156  -- Heiko Schlittermann <heiko@lotte.sax.de>  Sat, 21 Sep 1996 22:06:01 +0200
7158 dpkg (1.4.0) unstable; urgency=low (HIGH for new source format)
7160   * Corrected buffer overrun when dpkg-deb generates filename.  (Bug#4467.)
7161   * dpkg-shlibdeps works with DEBIAN/shlibs (thanks Heiko Schlittermann).
7162   * Added libm.so.5 to shlibs.default for i386/m68k.
7164   * Split binary package into two: dpkg and dpkg-dev.
7165   * dpkg-source(1) documents mode and ownership setting during extraction.
7167   * dpkg-scanpackages moved to /usr/bin.
7168   * Include /usr/bin/dpkg-deb, not dpkg-deb.dist; don't rename in scripts.
7169   * Copyright file changed slightly.
7170   * debian-changelog-mode uses magic key substitution strings.  (Bug#4419.)
7171   * Changed email address in control file to <ian@chiark.greenend.org.uk>.
7172   * Manuals and own Standards-Version: updated to 2.1.1.0.
7174  -- Ian Jackson <ian@chiark.greenend.org.uk>  Thu, 12 Sep 1996 01:13:33 +0100
7176 dpkg (1.3.14) unstable; urgency=low
7178   * dpkg-buildpackage new -tc (clean source tree) option.
7180   * Formatted documentation removed by `make clean' and so not in source.
7181   * Manuals and own Standards-Version: updated to 2.1.0.0.
7182   * Distribute {policy,programmer}.{html.tar,ps}.gz with each upload.
7184  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sun, 1 Sep 1996 20:43:40 +0100
7186 dpkg (1.3.13) unstable; urgency=low (HIGH for building new src X programs)
7188   * X shared libraries added to shlibs.default (=> `elf-x11r6lib').
7189   * dpkg-source tar invocation fixed so that TAPE env var doesn't break it.
7190   * dpkg-source copes better with missing final newline messages from diff.
7192   * dpkg-buildpackage usage message fixed: -si is the default.  (Bug#4350.)
7193   * dpkg-source error message about src dir mismatch typo fixed.  (Bug#4349.)
7195   * dpkg-source(1) has suggestions for dpkg-buildpackage -r option.
7196   * dpkg-source change date fixed.  (Bug#4351.)
7197   * More developers' keys.
7198   * Manual updates, own Standards-Version updated.
7200  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 31 Aug 1996 20:08:18 +0100
7202 dpkg (1.3.12) unstable; urgency=medium
7204   * dpkg prints old version number when upgrading.  (Bug#4340.)
7205   * dpkg-deb tries to detect and flag corruption by ASCII download.
7207   * dpkg-genchanges and dpkg-buildpackage say what source is included.
7209   * dpkg-buildpackage passes +clearsig=on to PGP (or pgpcommand).  (Bug#4342.)
7211   * dpkg-source prints better error for cpio not honouring -0t.
7212   * control file Suggests cpio >= 2.4.2, rather than just cpio.
7214  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Fri, 30 Aug 1996 15:31:51 +0100
7216 dpkg (1.3.11) unstable; urgency=low
7218   * EBUSY when dpkg removes a directory is only a warning.
7220   * dpkg-genchanges generates sensible warning (not confusing error
7221     about mismatch) for missing Section/Priority in binary packages.
7223   * Added dpkg --print-gnu-build-architecture option.
7224   * shlibs.default for m68k provided, as a copy of i386 version.
7226  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 29 Aug 1996 14:05:02 +0100
7228 dpkg (1.3.10) unstable; urgency=medium
7230   * dpkg-source(1) manpage alias symlinks are not dangling.
7231   * dselect selects things by default if they are installed.
7232   * Added `pentium' as alias for `i386' architecture.
7233   * Added `Suggests: cpio, patch' and explanatory text to Description.
7234     (Bugs #4262, #4263.)
7236   * More developers' PGP keys.
7237   * Manual updates, new source format released.
7239  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 26 Aug 1996 14:30:44 +0100
7241 dpkg (1.3.9) unstable; urgency=low (high for new source format)
7243   * dpkg --get-selections and --set-selections added.
7244   * New dpkg --force-not-root flag.
7246   * Don't replace directory with another package's file.  (Bug#4202.)
7248   * All manpages now installed compressed.
7249   * Copyright file moved to /usr/doc/dpkg/copyright.
7250   * Standards-Version updated (0.2.1.1).
7252  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 24 Aug 1996 19:09:30 +0100
7254 dpkg (1.3.8) unstable; urgency=low (high for new source format)
7256   * dpkg-buildpackage -sa, -si options work correctly.
7258   * update-rc.d(8) updated to reflect design and reality.
7259   * Programmers' and policy manual updates.
7261  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Fri, 23 Aug 1996 12:48:26 +0100
7263 dpkg (1.3.7) unstable; urgency=low (medium for source pkg docs)
7265   * dselect +/-/_/= on lines for all broken, new, local or whatever
7266     packages do not affect _all_ packages.  (Bug#4129.)
7268   * Support for diff-only uploads in source packaging tools.
7269   * dpkg-genchanges -d<descripfile> option renamed to -C.
7270   * dpkg-buildpackage understands -m, -v, -C (for dpkg-genchanges).
7271   * Support for debian/shlibs.local added to dpkg-shlibdeps.
7272   * Shared library files' search order defined in dpkg-source(1), and
7273     relevant files added to the FILES section.
7275   * Programmers' manual describes source packaging tools.
7276   * Policy manual mentions shared library control area file.
7277   * dpkg-source manpage includes dpkg-shlibdeps in title line.
7278   * Manuals have changelog and automatic version numbering.
7279   * changelogs (for dpkg and for manuals) installed.
7280   * binary target split into binary-arch and binary-indep in manual.
7281   * Manpages should be compressed.
7282   * Copyright file is moved to /usr/doc/<package>/copyright.
7283   * Changelogs must be installed in /usr/doc/<package>.
7284   
7285   * dpkg-deb(8) moved to dpkg-deb(1).
7287   * binary target split into binary-arch and binary-indep in source.
7288   * changelog entry for 1.2.14 copied from that (forked) release.
7290  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 22 Aug 1996 15:36:12 +0100
7292 dpkg (1.3.6) experimental; urgency=low (HIGH for new source format)
7294   * dpkg-source now has broken argument unparsing for tar.  (Bug#4195.)
7296   * dpkg-gencontrol writes to debian/tmp/DEBIAN/control by default.
7297   * dpkg-shlibdeps script added.
7299   * Back to old sh update-rc.d, and removed manpage, because new Perl
7300     version and the manpage have different syntax and semantics.
7301   * update-rc.d prints usage message for missing terminal `.'.  (Bug#4122.)
7303   * Use rm -rf instead of just rm -r in dpkg-deb --info &c.  (Bug#4200.)
7305   * Added support for Installed-Size to dpkg-gencontrol, and documented.
7306   * Source packaging substitution variables and name syntax rationalised.
7307   * dpkg-source scripts' usage messages improved slightly.
7308   * dpkg-source works with non-empty second (orig dir) argument.
7310   * Added rationale for copyright policy to manual.
7311   * More developers' PGP keys.
7312   * Control database handling cleanups (usu. Source field blanked).
7314  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 20 Aug 1996 15:39:58 +0100
7316 dpkg (1.3.5) experimental; urgency=low (high for debian-changelog-mode)
7318   * 822-date script included.  (Bug#4136.)
7319   * debian-changelog-add-version works on empty file.
7320   * debian-changelog-mode mode-help works properly.
7322   * dpkg-source tells patch not to make numbered backups.  (Bug#4135.)
7324   * More developers' PGP keys.
7325   * Paragraph on uucp -a and -g options removed from policy manual.
7327  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 14 Aug 1996 14:46:47 +0100
7329 dpkg (1.3.4) experimental; urgency=low
7331   * Removed debugging output from dpkg-source -x.  Oops.
7332   * Removed section on source package permissions from policy manual -
7333     dpkg-source now sorts these out.
7335  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sun, 11 Aug 1996 13:25:44 +0100
7337 dpkg (1.3.3) experimental; urgency=low
7339   * Programmers' & policy manuals in source tree; HTML in /usr/doc/dpkg.
7340   * Old guidelines.info and text files in /usr/doc/dpkg removed.
7342   * dpkg-source sets permissions on extracted debianised source tree
7343     and does not copy ownerships out of archive even if running as root.
7345   * Emacs mode `dpkg changelog' renamed to `Debian changelog'.
7346   * Default changelog format renamed from `dpkg' to `debian'.
7348   * debian-changelog-mode sets fill-prefix correctly.
7349   * debian-changelog-mode urgencies except HIGH lowercase by default.
7350   * debian-changelog-mode displays keymap in doc string and so mode help.
7352   * More maintainers' PGP keys.
7354   * Remove built changelog parsers with `clean' target in source.
7356  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 10 Aug 1996 23:35:51 +0100
7358 dpkg (1.3.2) experimental; urgency=LOW (MEDIUM for dpkg-source)
7360   * Faster update-rc.d written in Perl by Miquel van Smoorenburg.
7361   * install-info --test doesn't lock dir.  (Bug#3992, thanks Darren).
7363   * dpkg-source doesn't break in the presence of any symlinks.
7365   * More developers' keys added to doc/developer-keys.pgp.
7366   * Install developers' keys in /usr/doc/dpkg/developer-keys.pgp.
7367   * dpkg-source documents undefined substvar behaviour.
7368   * minor debian/rules cleanups.
7370  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 10 Aug 1996 02:13:47 +0100
7372 dpkg (1.3.1) experimental; urgency=LOW
7374   * manpage for dpkg-source et al now available.
7375   * dpkg-changelog-mode.el installed in site-lisp, but still no autoload.
7377   * dpkg-source prints correct string for not-understood tar -vvt output.
7378   * dpkg-source parsing of tar -vvt output made more robust.
7380   * dpkg-buildpackage prints usage message on usage error.
7381   * dpkg-gencontrol can print usage message.
7382   * -T<varlistfile> option added to dpkg-source.
7383   * Description of -f<fileslistfile> corrected in dpkg-distaddfile usage.
7384   * -m<maintainer> synopsis changed in dpkg-genchanges usage.
7385   * debian/substvars may now contain blank lines.
7387  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 8 Aug 1996 02:36:04 +0100
7389 dpkg (1.3.0) experimental; urgency=LOW
7391   * dpkg can install named pipes.
7392   * dpkg-deb supports directory for destination, generates filename.
7393   * dpkg-{source,gencontrol,genchanges,parsechangelog,buildpackage},
7394     dpkg-distaddfile scripts to support new source package format.
7395   * a.out build no longer supported.
7396   * Changed to new source package format.
7398  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 6 Aug 1996 02:31:52 +0100
7401 dpkg (1.2.14) stable unstable; urgency=MEDIUM
7403   * dselect +/-/_/= on lines for all broken, new, local or whatever
7404     packages do not affect _all_ packages.  (Bug#4129.)
7406   * NOTE - THE HISTORY FORKS HERE.  1.2.14's change appears in 1.3.7.
7408  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 22 Aug 1996 00:39:52 +0100
7411 dpkg (1.2.13) unstable; urgency=LOW
7413   * dpkg --search produces correct output for diversions.
7414   * dpkg-name remove unnecessary arch missing warning.  (Bug#3482.)
7416   * dpkg-deb --build warns about uppercase chars in package name.
7418   * dpkg-scanpackages error messages updated and manpage provided
7419     (thanks to Michael Shields).
7420   * dpkg-scanpackages warns about spurious entries in override file.
7421   * dpkg-scanpackages `noverride' renamed to `override' everywhere.
7422   * dpkg-scanpackages field ordering to put Architecture higher.
7423   * dpkg-scanpackages field names capitalised appropriately.
7424   * dpkg-scanpackages invokes find with -follow.  (Bug#3956.)
7426   * guidelines say #!/usr/bin/perl everywhere, not #!/bin/perl.
7427   * Many developers' PGP keys added.
7429   * configure script uses ${CC} instead of $(CC) (again :-/).
7430   * developers' keys included in dpkg source tree and /usr/doc.
7431   * configure remade using autoconf 2.10-3 (was 2.4-1).
7433  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 1 Aug 1996 02:46:34 +0100
7435 dpkg (1.2.12); priority=LOW
7437   * dpkg --search and --list understand and comment on diversions.
7438   * dpkg-divert displays diversions more intelligibly.
7440   * Guidelines are somewhat clearer about descriptions.
7441   * deb(5) describes new format; old moved to deb-old(5).  (Bug#3435.)
7442   * deb-control(5) carries a warning about being out of date.
7444   * Added 1996 to dselect version/copyright.
7446  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 4 Jul 1996 15:04:49 +0100
7448 dpkg (1.2.11); priority=MEDIUM
7450   * dselect had dependency bug if installed package newer than avail.
7451   * Added `replaces' to dselect's list of package relationship strings.
7453  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 1 Jul 1996 02:51:11 +0100
7455 dpkg (1.2.10); priority=MEDIUM
7457   * Fixed bug in old-style version/revision number parsing.  (Bug#3440.)
7459  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 29 Jun 1996 03:32:45 +0100
7461 dpkg (1.2.9); priority=MEDIUM
7463   * Fixed status database updates reading bug.
7464   * `Setting up' message includes version number.
7465   * `existence check' message changed to say `cannot access archive'.
7467  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 27 Jun 1996 13:39:36 +0100
7469 dpkg (1.2.8); priority=LOW
7471   * dpkg --record-avail puts data in Size field.
7472   * strip / for rmdir(2) in cleanup to work around kernel bug.  (Bug#3275.)
7473   * dpkg-split --msdos no longer allows `-' and other chars in filenames.
7475   * manual dpkg-split(8) written.
7476   * dpkg-split minor typo in --auto usage error message fixed.
7477   * dpkg-deb(8) very minor cosmetic fix to --build option.
7479  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 25 Jun 1996 03:00:14 +0100
7481 dpkg (1.2.7); priority=LOW
7483   * dpkg-scanpackages syntax errors fixed.
7485  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Fri, 21 Jun 1996 04:10:38 +0100
7487 dpkg (1.2.6); priority=MEDIUM
7489   * NFS, CDROM and partition dselect methods include mountpoint
7490     in paths given to dpkg in [I]install, so they should now work.
7492   * Removed some leftover files from source tree.
7494  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 12 Jun 1996 14:35:19 +0100
7496 dpkg (1.2.5); priority=MEDIUM
7498   * Allow, but do not create, packages in half-installed state
7499     with no version number.  (Aargh.)
7501  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 10 Jun 1996 04:55:43 +0100
7503 dpkg (1.2.4); priority=MEDIUM
7505   * New dpkg-name from Erick (<pkg>_<version>_<arch>.deb convention).
7506   * Disappeared packages can't own conffiles any more !  (Bug#3214.)
7507   * install-info creates Miscellaneous sections with a newline
7508     following the heading.  (Bug#3218.)
7509   * cleanup-info script installed in /usr/sbin; called as appropriate
7510     by postinst.  Thanks to Kim-Minh Kaplan.  (Bug#3125.)
7511   * Allow superseded Essential packages to be purged after they've
7512     been removed (clear the Essential flag on removal, and ignore it
7513     on packages that are in stat_configfiles).
7515   * dselect disk methods understand `y' as well as `yes' for using
7516     development tree.
7517   * dselect doesn't make packages appear as `new' again if update
7518     of available packages fails.
7519   * dselect places method selection cursor over option last selected.
7521   * dpkg-scanpackages doesn't die when repeated packages are found.
7522   * dpkg-scanpackages allows many old maintainers (`//'-separated).
7524   * `Version' field is now mandatory (some operations already
7525     wouldn't work right anyway if it was't there).
7527   * update-rc.d(8) now says you must remove the script.  (Bug#3215.)
7528   * dpkg --force-help says that --force-overwrite is on by default.
7529   * dpkg-deb manpage rewritten.
7530   * debian.README (= /usr/doc/copyright/dpkg) edited slightly.
7532   * Some database parsing grunge removed (pdb_preferversion, &c).
7533   * Source tree doc/sgml contains some embryonic manuals.
7534   * Leftover files in lib directory in source tree deleted.
7536  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Mon, 10 Jun 1996 03:52:01 +0100
7538 dpkg (1.2.3); priority=HIGH
7540   * install-info doesn't replicate section headings (Bug#3125, #2973).
7541   * New dpkg-name manpage broken off from script (oops!).
7542   * dselect help screens made consistent with new strings, flags, &c.
7543   * dselect error flag column labelled E (Error), not H (Hold).
7544   * `Escape' no longer bound to `exit list without saving' in dselect.
7546  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Tue, 28 May 1996 02:14:57 +0100
7548 dpkg (1.2.2); priority=MEDIUM
7550   * Fixed dselect coredump found by Erick Branderhorst (thanks).
7551   * Sort obsolete removed packages separately, not under Available.
7553  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 23 May 1996 21:31:05 +0100
7555 dpkg (1.2.1); priority=MEDIUM
7557   * `=' key in dselect really does `hold' rather than `unhold'.
7558   * dselect dependency processing now interacts better with `hold'.
7559   * dselect `I' key (not `i') modifies display of the info window.
7560   * dselect shows unavailable packages as being unavailable.
7561   * dselect main menu headings and many other strings changed to try to
7562     discourage people from deselecting every package and using [R]emove.
7563     Notably, `select' changed to `mark' throughout.
7565   * dselect disk methods now print a few fewer double slashes.
7566   * dselect disk access methods will offer to use dpkg --record-avail
7567     to scan the available packages, if no Packages file is found.
7569   * New dpkg --compare-versions option, for the benefit of scripts &c.
7570   * New dpkg --clear-avail option forgets all available packages info.
7571   * New dpkg --print-avail option, prints `available' data (from Packages, &c).
7572   * dpkg usage message is more informative, but no longer fits on screen.
7573   * dpkg --avail option renamed --record-avail.
7575   * Latest dpkg-name from Erick Branderhorst.
7576   * dpkg-scanpackages has more sensible problem reporting.
7577   * postinst configure now gets null argument (not <unknown> or <none>)
7578     when there is no previously configured version.
7580   * Guidelines say that postinst configure is given previous version.
7581   * Guidelines don't refer to maintainer-script-args.txt in main text.
7582   * Guidelines (Texinfo source) uploaded separately.
7584   * Own version of strcpy (used for debugging) removed.
7585   * Interface to access methods document in source (doc/dselect-methods.txt).
7586   * debian.buildscript moves changes file into parent directory.
7588  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 22 May 1996 01:26:31 +0100
7590 dpkg (1.2.0); priority=MEDIUM
7592   * dselect can sort packages by available and installed states, and
7593     display their version numbers.  (Use O, o and V.)
7594   * Hold is properly integrated as a real `wanted state', rather than
7595     a separate flag.
7596   * Epochs in version numbers implemented, using the syntax
7597     <epoch>:<version>-<revision>.  (Epoch not usually displayed.)
7598   * dselect disk method is architecture-independent (uses dpkg's
7599     installation architecture, and looks in the right part of the tree).
7601   * dselect disk method doesn't try to satisfy the predependencies of
7602     packages which are on hold.
7603   * Fixed conflict-related assertion failure.  (Bug#2784.)
7604   * conffiles do not cause file conflicts if the conflicting package
7605     is in the `configuration only' state.  (Bug#2720.)
7606   * Fixed messages where available version number was reported as installed
7607     version in conflict and dependency messages.  (Bug#2654, Bug#2974.)
7609   * New format .deb files are default even for a.out compiles (but
7610     a.out version of dpkg is in old format).
7611   * Characters @:= (at colon equals) in package names now strictly
7612     forbidden everywhere (_ is still allowed in existing packages).
7613   * New dpkg --print-installation-architecture option prints installation
7614     architecture (compiled in), rather than build architecture (determined
7615     from gcc -print-libgcc-file-name).
7617   * Version messages show whether compiled a.out or ELF (i386 only).
7618   * Fixed missing space in version syntax error messages.
7619   * Manpage dpkg.8 installed with warning about inaccuracy.
7621   * Guidelines don't say to stop and restart daemons in runlevels 2345;
7622     instead they say to start in 2345 and stop in 016.
7623   * Guidelines and version messages say just Debian Linux.
7624   * Guidelines typo fix `"stop2' => `"stop"'.  (Bug#2867.)
7626   * doc/Makefile.in clean properly deletes various guidelines.info* files.
7628  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 16 May 1996 00:01:21 +0100
7630 dpkg (1.1.6); priority=MEDIUM
7632   * Check virtual dependencies when removing (ouch! - thanks SDE.)
7633   * Fixed bug in internal database validity management that could
7634     make dselect and dpkg dump core.  (Bug#2613.)
7635   * Fixed two coredumping bugs when using local diversions.  (Bug#2804.)
7636   * Fixed disappearance of overwritten packages.  (Bug#2696.)
7637   * install-info won't modify dir file before start of menu.
7638   * install-info will create Miscellaneous heading if no sections yet.
7640   * Only alphanums and +-. allowed in package names - enforced by
7641     dpkg-deb --build and documented in Guidelines.
7642   * dselect doesn't display packages unless they are installed, selected
7643     or available.
7644   * dselect doesn't show spurious section and priority headings.
7645   * dselect has a few extra keybindings (from Lee Olds).
7646   * --force message changed to `--force enabled' so that default is OK.
7648   * dpkg-name now includes architecture component in .deb filename,
7649     and translates - in package name to _.
7650   * .deb file has architecture component in filename.
7652   * Guidelines changed to say Pre-Depends is for experts only.
7653   * Guidelines say to provide a unidiff (-u) rather than an old context diff.
7654   * Guidelines say 755 root.root for shared libraries.
7656  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 1 May 1996 00:47:22 +0100
7658 dpkg (1.1.5); priority=MEDIUM (HIGH for diversions users)
7660   * Fixed coredump when using diversions.  (Bug#2603.)
7661   * Fixed typo in dpkg-divert which could lose diversions.  (Bug#2662.)
7663   * --force-overwrite is the default.
7664   * diversions.text provides better examples.
7666  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Wed, 10 Apr 1996 13:59:30 +0100
7668 dpkg (1.1.4); priority=MEDIUM
7670   * Allow overwriting of conflicting packages being removed.  (Bug#2614.)
7672   * a.out control file says Pre-Depends: libc4 | libc.  (Bug#2640.)
7673   * ELF control file and libc dependencies changed to use finalised scheme.
7674   * ELF control file and libc dependencies for i386 only.  (Bug#2617.)
7676   * Guidelines say use only released libraries and compilers.
7677   * Install wishlist as /usr/doc/dpkg/WISHLIST.
7678   * Remove spurious entries for Guidelines in info dir file.
7680   * dpkg-deb --build checks permissions on control (DEBIAN) directory.
7682   * Spaces in control file fields not copied by dpkg-split.  (Bug#2633.)
7683   * Spaces in split file part control data ignore.  (Bug#2633.)
7685   * Portability fixes, including patch from Richard Kettlewell.
7686   * Fixed minor configure.in bug causing mangled GCC -W options.
7688  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Thu, 4 Apr 1996 01:58:40 +0100
7690 dpkg (1.1.3); priority=LOW
7692   * dselect disk methods support Pre-Depends installation ordering.
7693   * When dpkg fails and --auto-deconfigure would help it says so.
7694   * dpkg --search output lists several packages with same file on one line.
7695   * Improved dpkg usage message somewhat.
7697   * dpkg-deb --build checks permissions and types of maintainer scripts.
7698   * dpkg-deb --build treats misspecified conffiles as error, not warning.
7699   * dpkg --print-architecture prints compiler's architecture while
7700     dpkg --version (&c) print system's arch (this to help cross-compiling).
7701   * More minor guidelines changes, including dir entry fixup.
7703   * configure script caches more values.
7704   * Changed maintainer email address to ian@chiark.chu.cam.ac.uk.
7706  -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 16 Mar 1996 19:18:08 +0000
7708 dpkg (1.1.2); priority=LOW
7710   * Packaging guidelines installed properly (and as guidelines
7711     rather than debian-guidelines).
7712   * ELF version has more checks to stop you wrecking your dpkg installation.
7713   * dselect disk methods now look for a `local' tree as well, for
7714     people who want locally-available software of various kinds.
7715   * dpkg-divert has debugging message removed.
7716   * Minor guidelines changes.
7718   * Various makefile cleanups, mainly to do with ELF vs. a.out support.
7719   * debian.rules cleans out ~ files itself, as well as calling make clean.
7720   * debian.rules names .nondebbin.tar.gz file ELF too, if appropriate.
7722  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 14 Mar 1996 03:38:29 +0000
7724 dpkg (1.1.1elf); priority=LOW
7726   * Added /usr/lib/dpkg/elf-executables-ok and elf-in-kernel.
7727   * Replaces field now allows automatic removal of conflicting packages.
7728   * Replaces field now required to overwrite other packages' files.
7729   * Architecture field, and dpkg --print-architecture, supported.
7730   * build new format archives by default when compiled with ELF compiler.
7732   * symlinks are now installed atomically (good for shared libraries).
7733   * create /var/lib/dpkg/diversions in postinst if necessary (Bug#2465.)
7734   * Pre-Depends now correctly fails if package never configured.
7735   * dselect disk methods mount with -o nosuid,nodev.
7736   * update-rc.d defaults doesn't add both K and S in any one runlevel;
7737     dpkg postinst fixes up this situation if it sees it.
7739   * Assorted fixups to the Guidelines, which are now in one piece.
7740   * dpkg --list prints version string in one piece.
7741   * dpkg-scanpackages doesn't produce notice on output with list of
7742     packages with Section and/or Priority control file fields.
7744   * control file and debian.rules work both for ELF and non-ELF compiles.
7745   * most files compiled with -O2 (-O3 only for some critical files) -
7746     this fixes ELF build.
7748  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 11 Mar 1996 04:25:28 +0000
7750 dpkg (1.1.0); priority=LOW
7752   * dpkg supports Pre-Depends.
7753   * postinst script gets most-recently-configured version as $2.
7755   * lib/tarfn.c #includes <errno.h> (portability fix).
7757  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 11 Feb 1996 21:07:03 +0000
7759 dpkg (1.0.17); priority=LOW
7761   * dpkg --recursive follows symlinks (useful for devel tree).
7763  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 10 Feb 1996 15:58:46 +0000
7765 dpkg (1.0.16); priority=LOW
7767   * dpkg-deb much faster reading new format archives.  (Bug#2256.)
7768   * Developers' documentation in /usr/doc/dpkg/, /usr/info/.
7770   * Fixed typo in control file Description.
7772   * configure script tries to improve matters wrt sysinfo.
7773   * any debian-tmp.deb is deleted by `./debian.rules clean'.
7775  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 4 Feb 1996 15:51:59 +0000
7777 dpkg (1.0.15); priority=LOW
7779   * dselect disk methods should never unmount things they didn't mount.
7780   * debian.README aka /usr/doc/copyright updated.
7782  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 30 Jan 1996 15:05:39 +0000
7784 dpkg (1.0.14); priority=MEDIUM
7786   * fixed file descriptor leak in dpkg introduced in 1.0.11.
7787   * included dpkg-name in this package (conflicts with dpkg-name).
7789   * redraw in dselect main menu changed to use clearok (like in lists).
7790   * sa_restorer in struct sigaction no longer used (portability fix).
7791   * removed Guidelines from source package.
7793  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 30 Jan 1996 02:52:29 +0000
7795 dpkg (1.0.13); priority=MEDIUM
7797   * dselect partition and mounted methods work again.
7798   * dpkg-deb --no-act in usage message.
7800  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 26 Jan 1996 18:37:03 +0000
7802 dpkg (1.0.12); priority=MEDIUM (HIGH for users of 1.0.11)
7804   * Fixed frequent dpkg coredump introduced in 1.0.11.  (Bug#2219.)
7805   * dpkg-deb ensures version numbers start with alphanumerics.
7807  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 24 Jan 1996 00:42:31 +0000
7809 dpkg (1.0.11); priority=MEDIUM
7811   * corrected potentially serious problem with dpkg low-memory in-core
7812     files database.
7813   * dpkg-split --msdos puts output files in right directory.  (Bug#2165.)
7815   * diversions implemented - see `dpkg-divert --help'.
7817   * dselect shows and uses (for dependencies) currently installed
7818     version of a package if that is more recent.
7819   * dpkg --force-... options are in separate help screen.
7820   * better error messages for corrupted .deb archives.  (Bug#2178.)
7821   * dselect NFS method will unmount correct copy of NFS area if mounted
7822     twice.
7824   * removes some ELF compilation warnings.
7826  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 19 Jan 1996 02:41:46 +0000
7828 dpkg (1.0.10); priority=MEDIUM
7830   * dpkg-deb option parsing unmuddled (-I option was removed
7831     in 1.0.9 and broke dpkg-deb).  (Bug#2124.)
7833   * dpkg-split will work when ELF `ar' is installed, and is faster.
7835   * nfs dselect method now available.
7836   * disk methods don't prompt spuriously for Packages files.
7837   * cdrom+harddisk methods can find Packages files.
7839   * dpkg-scanpackages (creates Packages files) now in /usr/sbin.
7841   * various changes to help compilation of dpkg-deb, dpkg-split
7842     and md5sum on non-Debian systems.
7843   * <sys/fcntl.h> replaced by <fcntl.h> throughout.
7845  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 14 Jan 1996 02:55:19 +0000
7847 dpkg (1.0.9); priority=MEDIUM
7849   * dselect uninitialised variable coredump fixed (thanks Carl).
7851   * version numbers printed by --version fixed.  (Bug#2115.)
7852   * disk method problem with missing Packages files fixed.  (Bug#2114.)
7853   * dependency version relationships now <= >= << >> =.  (Bug#2060.)
7855   * install-info is in /usr/sbin, not /usr/bin.  (Bug#1924.)
7856   * dpkg regards Revision field as obsolete.
7858   * <asm/unistd.h> changed to <linux/unistd.h> (for m68k port).
7859   * scripts/Makefile.in `clean' target deletes scripts.
7861  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 11 Jan 1996 20:51:20 +0000
7863 dpkg (1.0.8); priority=LOW
7865   * update-alternatives slightly more helpful message.  (Bug#1975.)
7866   * cosmetic improvements to disk installation method.  (Bug#1970,1956.)
7867   * mounted filesystem and unmounted partition separate methods.  (Bug#1957.)
7869  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 12 Dec 1995 04:07:47 +0000
7871 dpkg (1.0.7); priority=MEDIUM (HIGH to upgrade syslogd)
7873   * dselect harddisk/CDROM method script handles multiple package
7874     areas.
7875   * Everything has a manpage, though many are very unhelpful indeed.
7877  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 30 Nov 1995 03:59:14 +0000
7879 dpkg (1.0.6); priority=MEDIUM (HIGH to upgrade syslogd)
7881   * conffiles can now be taken over properly from one package by
7882     another which replaces it.  (Bug#1482.)
7883   * dpkg will not deconfigure essential packages when --auto-deconfigure
7884     is set (this bug was fairly unlikely ever to be exercised).
7886   * dpkg checks for the presence of certain important programs on the PATH.
7887   * dselect is now more informative when a dependency is missing, saying
7888     "<package> does not appear to be available".  (Bug#1642, 1705).
7890   * `make distclean' fixed; config.* &c removed from source archive.
7891   * lib/lock.c now uses fcntl rather than flock, for better portability.
7893   * `Package_Revision: 0' removed from control file.
7894   * Some inaccuracies and bad formatting in various messages corrected.
7896  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 21 Nov 1995 20:15:18 +0000
7898 dpkg (1.0.5); priority=LOW
7900   * dpkg-split allows some space for the header.  (Bug#1649.)
7901   * dpkg-split now has --msdos option for 8.3 filenames.
7902   * dpkg-split --join &c will not complain about trailing garbage.
7904   * dselect & dpkg will no longer ignore SIGHUP will running subprocesses.
7906  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 13 Oct 1995 13:59:51 +0100
7908 dpkg (1.0.4); priority=MEDIUM (HIGH for dselect users with 1.0.3)
7910   * fixed bug which prevented dselect from displaying the bottom line of
7911     any listing screen.  This was introduced in 1.0.3, sorry !
7913   * a conffile will never cause a prompt if the package maintainer
7914     distributes a file identical to the user's, even if the file has
7915     been edited by both the user and the maintainer or is a
7916     newly-registered conffile.  (Bug#1639.)
7918   * dselect disk/cdrom method script says where to get Packages file.
7919   * dselect help has better descriptions of the functions of Return and Q.
7921   * postinst now warns about some problems with /usr/lib/dpkg/methods/hd.
7923  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 12 Oct 1995 01:45:38 +0100
7925 dpkg (1.0.3); priority=MEDIUM
7927   * dselect: fixed segfault when doing some multiple (de)selections.
7929  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 10 Oct 1995 03:21:12 +0100
7931 dpkg (1.0.2); priority=MEDIUM
7933   * problem with screen refresh after `o' (change order) corrected.
7935  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 9 Oct 1995 13:11:04 +0100
7937 dpkg (1.0.1); priority=LOW
7939   * much better dpkg performance on low-memory systems.
7940   * start-stop-daemon --name should now work. (oops!)
7941   * fixed typo which could turn into memory overwriting bug sometime.
7943  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 8 Oct 1995 20:12:29 +0100
7945 dpkg (1.0.0); priority=LOW
7947   * Version 1.0.0: dpkg is no longer beta.
7949   * tar extractor no longer looks up an empty string using getgrnam
7950     (this causes the libc to coredump when using NIS).
7952  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 1 Oct 1995 13:07:36 +0100
7954 dpkg (0.93.80); priority=LOW
7956   * dselect help screen intro changed to remove `much' before `help'.
7958   * update-alternatives.pl contains hardcoded ENOENT value, instead
7959     of requiring POSIX.pm to be present.
7961   * Makefiles changed to strip when installing instead of when building.
7963  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 30 Sep 1995 01:44:12 +0100
7965 dpkg (0.93.79) BETA; priority=LOW
7967   * DPKG_NO_TSTP environment variable which stops dpkg sending the
7968     process group a SIGTSTP (Bug#1496).
7969   * End key should work in dselect lists (Bug#1501).
7970   * various message typos (missing \n's) fixed (Bug#1504).
7972  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 29 Sep 1995 03:27:01 +0100
7974 dpkg (0.93.78) BETA; priority=LOW
7976   * dselect keystrokes help file typo fix.
7978  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 28 Sep 1995 20:31:02 +0100
7980 dpkg (0.93.77) BETA; priority=MEDIUM
7982   * dpkg --remove --pending will purge things when appropriate.
7984   * fixed failure to null-terminate dpkg conflict problem messages.
7985   * fixed bug in formatting of dependency version problem messages.
7987   * Conffiles resolution prompt for new conffile: typo fixed.
7988   * Changed dpkg usage error to suggest `-Dhelp' instead of `--Dhelp'.
7990  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 20 Sep 1995 23:44:35 +0100
7992 dpkg (0.93.76) BETA; priority=MEDIUM
7994   * dpkg --auto-deconfigure option (used automatically by dselect) allows
7995     `important' packages which many others depend on to be split.
7996   * dpkg should no longer fail an assertion during complicated
7997     multiple configurations involving packages which are on hold.
7999   * update-alternatives supports negative priorities.
8000   * /etc/alternatives is included in the .deb archive.
8002   * Package priorities changed: Required (Req), Important (Imp), Standard (Std),
8003     Optional (Opt) and Extra (Xtr).  For backward compatibility Base is an
8004     alias for Required, and Recommended is kept as a level just below Standard.
8006   * dselect shows introductory help screen when entering package lists (both
8007     main and recursive).
8008   * dselect help messages made more friendly.
8009   * dselect package list `quit, confirm, and check dependencies' key is
8010     now Return rather than lowercase `q'; likewise method list `select this
8011     one and configure it' key.
8012   * dselect selects packages with priority `standard' or better by default.
8013   * dselect `v=verbose' becomes `v=terse' when in verbose mode.
8015   * hard disk method unmounts /var/lib/dpkg/methods/mnt on failure.
8016   * disk methods' install message uses `stty' to find out what the
8017     interrupt character is, and uses that in the prompt (rather than ^C).
8018   * dpkg now tolerates ^Z characters in Packages files.
8019   * harddisk method doesn't display extra slash when updating packages file.
8020   * harddisk method burbles less if it doesn't have a good default.
8022   * dpkg-deb now supports new flexible format, but old format still default.
8024  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 20 Sep 1995 02:49:41 +0100
8026 dpkg (0.93.75) BETA; priority=MEDIUM
8028   * dselect no longer segfaults when you try to modify the last item.
8030   * dselect Makefile compiles with -g, and links without -s, but installs
8031     with -s, so that built source directory has debugabble binary.
8033  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 12 Sep 1995 02:59:29 +0100
8035 dpkg (0.93.74) BETA; priority=LOW
8037   * dpkg-split implemented and installed in /usr/bin/dpkg-split.
8038     (NB this is not compatible with Carl Streeter's old dpkg-split script.)
8039   * dpkg uses dpkg-split.
8040   * floppy disk method available - NB this is a first attempt only.
8042   * hard disk method uses --merge-avail rather than --update-avail.
8043   * installation by default of `standard' packages removed again.
8044     (I don't think this is the right place to do this.)
8045   * update-alternatives --remove correctly deletes all slave links;
8046     minor cosmetic improvements.
8048  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 11 Sep 1995 02:06:05 +0100
8050 dpkg (0.93.73) BETA; priority=LOW
8052   * dselect multi-package selection now done by `divider' lines
8053     actually in the package list, rather than horizontal highlight
8054     movement.
8055   * dselect help available, and keybindings rationalised.
8057   * postinst removes /usr/lib/dpkg/methods/hd if upgrading from
8058     0.93.42.3 or earlier.
8059   * `hold' flag changed to be settable by the user only, and
8060     made orthogonal to the `reinstallation required' flag.
8061   * dpkg will install by default any packages with priority of
8062     `standard' or better unless they're explictly deselected.
8064   * dselect dependency/conflict resolution will suggest marking absent
8065     packages for `purge' rather than `deinstall'.
8066   * disk method script produces message about invoking dpkg.
8067   * dpkg produces warning, not error, when it gets EPERM trying to
8068     remove a directory belonging to a package being removed.
8069   * dpkg, dpkg-deb usage error reporting improved.
8070   * dselect detects too-dumb terminals and stops.
8071   * dpkg-deb(8) updated a little (thanks to Bill Mitchell).
8073   * dselect debugmake script uses -O0.
8075  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 10 Sep 1995 12:23:05 +0100
8077 dpkg (0.93.72) BETA; priority=MEDIUM
8079   * /usr/sbin/update-alternatives added.
8081   * New names for certain control file fields (old names work
8082     as aliases): Optional -> Suggests, Recommended -> Recommends,
8083     Class -> Priority.
8084      
8085  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 3 Sep 1995 16:37:41 +0100
8087 dpkg (0.93.71) BETA; priority=LOW
8089   * dpkg doesn't silently overwrite `new' conffiles (Bug#1283).
8090   * case now not significant in Essential, Status and Class (Bug#1280).
8091   * dselect checks method scripts for execute, not for write.
8093   * spelling fixes in lib/dbmodify.c and dselect/helpmsgs.src.
8095   * dselect `clean' target deletes helpmsgs.cc and helpmsgs.cc.new.
8097  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 31 Aug 1995 13:56:08 +0100
8099 dpkg (0.93.70) BETA; priority=MEDIUM
8101   * dselect unmounted harddisk method has many silly bugs fixed.
8103   * dpkg --root option restored (was removed by mistake in 0.93.68).
8104   * minor cosmetic change to dselect subprocess failure message.
8106  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 9 Aug 1995 22:18:55 +0100
8108 dpkg (0.93.69) BETA; priority=MEDIUM
8110   * dpkg --configure and --remove should work properly when
8111     they have to defer processing (this tends to happen when many
8112     packages are processed at once).  (Bug#1209.)
8114   * dpkg --configure and --remove work better when `processing'
8115     several related packages with --no-act.
8117   * dpkg --auto is now two options, --pending or -a (for configure,
8118     remove, &c) and --recursive or -R (for install, unpack, &c).
8120   * dpkg debug options in usage message, and values available (-Dh).
8122  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 9 Aug 1995 22:18:55 +0100
8124 dpkg (0.93.68) BETA; priority=MEDIUM
8126   * dpkg won't get an internal error if you try to use the default
8127     conffiles response (ie, if you just hit return).  (Bug#1208.)
8129   * dselect hard disk and CD-ROM methods - the real thing, but ALPHA.
8131   * dselect allows you to go straight to `update' or `install' if
8132     you have already set up an access method.
8133   * new dpkg options --yet-to-unpack, --merge-avail and --update-avail.
8134   * dpkg -G is an abbreviation for dpkg --refuse-downgrade.
8135   * dpkg -R alias for --root withdrawn, pending reuse with different meaning.
8136   * dpkg --help message rationalised somewhat.
8138   * Obsolete `examples' and `dpkg-split' directories removed from
8139     source tree.  The `hello' package is a better example.
8141  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 7 Aug 1995 02:16:25 +0100
8143 dpkg (0.93.67) BETA; priority=LOW for C dpkg alpha testers, HIGH for others
8145   * dpkg no longer statically linked and -g.
8146   * calls to abort() changed to print string, file and line number first.
8147   * removed unused variable from dpkg source.
8149  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 4 Aug 1995 01:39:52 +0100
8151 dpkg (0.93.66) ALPHA; priority=MEDIUM
8153   * dpkg will correctly remove overwritten files from the lists of
8154     the package(s) that used to contain them.
8156   * dpkg --purge is now an action, rather than a modifier for --remove,
8157     and the -P alias for it is withdrawn.
8159   * dpkg --unpack/--install filenames in messages are now more sensible
8160     about when to use .../ (show as many trailing components as possible
8161     in 40 characters, or the whole path if that the last component is
8162     longer than that).
8164  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 3 Aug 1995 02:11:03 +0100
8166 dpkg (0.93.65) ALPHA; priority=MEDIUM
8168   * dpkg --remove should, when a package being removed is depended-on
8169     by another that is also queued for removal, defer the depended-on
8170     package rather than aborting it.  (Bug#1188.)
8172   * dpkg will not attempt to configure or remove a package more than
8173     once in the same run.  (Bug#1169.)
8175   * dpkg cosmetic fix to dependency problems message (this bug
8176     hasn't been triggered to my knowledge).
8178   * perl-dpkg no longer installed in /usr/bin.
8180  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 2 Aug 1995 13:02:58 +0100
8182 dpkg (0.93.64) ALPHA; priority=MEDIUM
8184   * dpkg marks a package as no longer `to be configured in this run'
8185     when an error occurs, so that other packages which depend on it
8186     will fail (rather than causing a loop and an assertion failure,
8187      packages.c:166: failed assertion `dependtry <= 4').
8189   * dselect initial selection granularity is single-package.
8190   * dpkg --no-also-select option renamed to --selected-only (old option
8191     still accepted, but no longer in --help).  Changed -N to -O.
8193   * dselect `update' option changed to `install' (and other options
8194     renamed too).  NB: old access methods will not work, because
8195     the `update' script should now be an `install' script.
8197   * dselect `installation methods' renamed to `access methods'.
8198   * dpkg --skip-same-version and --refuse-downgrade produce friendlier
8199     messages when they skip packages.
8200   * --licence option now properly mentioned in all programs' --version
8201     messages.
8203   * bad fix for ELF compile problem involving myopt.h removed (compile
8204     problem turned out to be a GCC bug.)
8206  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 1 Aug 1995 03:03:58 +0100
8208 dpkg (0.93.63) ALPHA; priority=LOW
8210   * preinst works around shell bug/misfeature involving `trap'.
8212   * dpkg --skip-same-version doesn't skip packages which have
8213     an error flag set or which aren't in a standard `installed' state.
8215   * dpkg --search now does a substring search if the string doesn't
8216     start with a wildcard character (*, [ or ?) or slash.
8218   * problem with C/C++ linkage of stuff in "myopt.h" fixed, to help
8219     with compiling with GCC 2.7.0.
8221   * dselect Makefile.in `clean' deletes curkeys.inc &c, so that they are
8222     not shipped in the distribution source and will be rebuilt on the
8223     target system.
8225  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 27 Jul 1995 13:38:47 +0100
8227 dpkg (0.93.62) ALPHA; priority=HIGH
8229   * dpkg purges leftover control scripts from /var/lib/dpkg/tmp.ci,
8230     rather than associating them with the wrong package.  (Bug#1101.)
8232   * dpkg won't `disappear' packages containing no files or directories,
8233     nor a package required for depends/recommended.  (Bug#1128.)
8235   * dpkg follows directory symlinks.  (Bug#1125.)
8237   * dselect fixups for ELF/GCC2.7.0 compilation.
8239  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 21 Jul 1995 21:43:41 +0100
8241 dpkg (0.93.61) ALPHA; priority=LOW
8243   * dselect keybindings and status characters and descriptions changed
8244     (in pursuance of Bug#1037, user interface problems, still open.)
8246   * Some cleanups to fix mistakes discovered by ELF-GCC 2.7.0, and fixup
8247     for newer C++ draft standard (`for' variable declaration scope change).
8249  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 18 Jul 1995 01:42:51 +0100
8251 dpkg (0.93.60) ALPHA; priority=HIGH
8253   * dpkg doesn't think packages have `disappeared' if you install
8254     several packages at once.  (later reported as Bug#1132.)
8256   * usage error messages tidied up.
8258  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 16 Jul 1995 17:56:56 +0100
8260 dpkg (0.93.59) ALPHA; priority=HIGH
8262   * dpkg doesn't break maintainer scripts &c if package `foo' exists
8263     when processing package `foobar'.  (Related to Bug#1101.)
8265   * dpkg implements `disappear' functionality.
8266   * dpkg/dselect remove dead entries from /var/lib/dpkg/status.
8268   * dpkg --list now sorted correctly and output somewhat improved.
8269   * some debugging messages moved from dbg_stupidlyverbose to dbg_scripts.
8270   * dpkg prints `Removing foo' message even if foo is not configured.
8271   * dpkg only prints `serious warning: files list file ... missing'
8272     once for each package.
8274  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 16 Jul 1995 02:32:11 +0100
8276 dpkg (0.93.58) ALPHA; priority=HIGH
8278   * dpkg should write out status even for packages which it has only
8279     encountered in the `available' file so far.
8281  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 14 Jul 1995 20:19:21 +0100
8283 dpkg (0.93.57) ALPHA; priority=LOW
8285   * dpkg does chroot when running maintainer scripts (--instdir
8286     should work right now, though I haven't been able to test it).
8288  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 14 Jul 1995 01:32:30 +0100
8290 dpkg (0.93.56) ALPHA; priority=HIGH
8292   * dpkg can now overwrite symlinks to directories, and will
8293     do correct handling of symlinks to plain files.
8294   * dpkg should not replace any directory with a symlink.
8296  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 13 Jul 1995 02:43:36 +0100
8298 dpkg (0.93.55) ALPHA; priority=MEDIUM
8300   * dpkg can now extract hardlinks.
8301   * dpkg configuration/removal works in the presence of dependency cycles.
8302   * dpkg should no longer fail an assertion at processarc.c:193.
8304  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Wed, 12 Jul 1995 01:34:44 +0100
8306 dpkg (0.93.54) ALPHA; priority=MEDIUM
8308   * dpkg and dselect no longer throw away all Class and Section
8309     information in /var/lib/dpkg/available.  (Oops.)
8310   * dpkg --refuse-<something> now works (this broke some dselect
8311     method scripts' attempts to use --refuse-downgrade).
8312   * dpkg --audit and --list implemented.
8314  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 10 Jul 1995 00:35:13 +0100
8316 dpkg (0.93.53) ALPHA; priority=LOW
8318   * dpkg --install/--unpack only skips on-hold packages with --auto.
8319   * dpkg doesn't fclose() the --fsys-tarfile pipe twice.
8320   * dpkg error handling and reporting cleaned up.
8321   * dpkg now lists any failed packages/files just before exiting.
8323  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 9 Jul 1995 16:31:36 +0100
8325 dpkg (0.93.52) ALPHA; priority=MEDIUM
8327   * dpkg won't segfault due to missing (Package_)Revision fields.
8328   * dpkg --search works.
8329   * dpkg will set execute permissions on scripts if necessary.
8330   * dpkg prints filenames in --unpack and --install.
8332  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 8 Jul 1995 12:41:39 +0100
8334 dpkg (0.93.51) ALPHA; priority=HIGH
8336   * dpkg --status and --listfiles now work.
8338   * dpkg --remove --auto won't try to remove everything (!)
8339   * dpkg --unpack doesn't coredump after unpacking the first package.
8340   * dpkg won't fail an assertion if it bombs out of --configure
8341     or --remove because of too many errors.
8343   * Support for `Essential' in dpkg (not yet in dselect).
8344   * `available' (Packages) file class and section override those
8345     from package control files.
8346   * `Essential: yes' added to control file.
8348   * Locking strategy changed, now uses flock (no more stale locks).
8349   * preinst now more helpful about conffiles upgrade problem.
8351  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 8 Jul 1995 01:15:26 +0100
8353 dpkg (0.93.50) ALPHA
8355   * C dpkg now in service.
8357   * dselect now installs in /usr/bin instead of /usr/sbin.
8358   * Improved `explanation of display' help and changed HSOC to EIOW.
8359   * dselect goes back to top of info display when you move the
8360     highlight.
8362   * Added <sys/types.h> to md5sum/md5.c, for the benefit of FreeBSD.
8363   * --admindir doesn't append `var/lib/dpkg' to its argument.
8365  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 19 May 1995 21:03:08 +0100
8367 dpkg (0.93.42.3) BETA; priority=LOW
8369   * Rebuilt using ncurses 1.9.2c-0.
8370   * Silenced `subcritical error' message if errno == ENOENT.
8372  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 12 Jun 1995 13:09:24 +0100
8374 dpkg (0.93.42.2) BETA; priority=HIGH
8376   * install-info --remove properly removes multi-line entries.
8377   * Slightly changed ^L redraw code in dselect package list.
8379  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sat, 10 Jun 1995 14:06:01 +0100
8381 dpkg (0.93.42.1) BETA; priority=HIGH esp. for new installations
8383   * update-rc.d default no longer adds K entries in runlevels 2345.
8385  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 6 Jun 1995 18:56:23 +0100
8387 dpkg (0.93.42) BETA; priority=LOW; HIGH for dselect users
8389   * Fix unitialised variable reference bug in dselect (#890).
8390   * Fix problem with wordwrapping package and method descriptions.
8391   * Create /var/lib/dpkg/methods/mnt.
8393  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 19 May 1995 21:03:08 +0100
8395 dpkg (0.93.41) BETA; priority=LOW
8397   * Create /var/lib/dpkg/methods.
8398   * dpkg.pl noisily ignores --skip-same-version rather than barfing.
8400  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 16 May 1995 13:28:27 +0100
8402 dpkg (0.93.40) BETA; priority=LOW
8404   * dselect's subprogram failure message made to stand out more.
8406   * When switching out of curses, always move the cursor to the
8407     bottom right corner of the screen.
8409  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Tue, 16 May 1995 01:03:38 +0100
8411 dpkg (0.93.39) BETA; priority=LOW
8413   * dselect can now:
8414     - allow you to select and configure an installation method;
8415     - invoke installation method scripts to update the available file
8416       and unpack packages;
8417     - invoke dpkg to configure and remove packages.
8418     There are no installation methods available yet.
8420   * Search feature in dselect works (it was purely an ncurses bug).
8422   * dpkg-*.nondebbin.tar.gz now available (built by debian.rules).
8424   * The target directory for dpkg-deb --extract (also available as
8425     dpkg --extract) is no longer optional.  dpkg-deb suggests the use
8426     of dpkg --install if you omit it.
8428   * Added <errno.h> to lib/lock.c and fixed ref. to `byte' in
8429     md5sum/md5.c, for portability to Solaris 2.
8431   * Rebuilt `configure' and `config.h.in' using autoconf 2.3.
8432   * Revised function attribute support checking in configure script.
8433   * Removed obsolete `dselect.pl' from scripts directory.
8434   * New option --licence on all the C programs.
8436  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Sun, 14 May 1995 18:05:38 +0100
8438 dpkg (0.93.38) BETA; priority=MEDIUM
8440   * Version number comparisons (in dpkg and dselect) now >= <=
8441     as documented (Bug#831; thanks to Christian Linhart).
8443   * dselect now has a non-superuser readonly mode.
8444   * dselect doesn't pop up unsatisfied `Optional's when quitting.
8445   * `unable to delete saved old file' message fixed dpkg_tmp to dpkg-tmp.
8447   * Made dpkg convert `revision' to `package_revision' when reading
8448     (eg) the `status' file.  libdpkg.a has `revision' as a synonym
8449     for `package_revision' and writes the former.
8451   * Major improvements and many changes to C option parsing, database
8452     management, error handling, Makefiles &c to support dpkg.
8453   * dpkg-deb should now work if sizeof(void*) < sizeof(void(*)()).
8455  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Mon, 24 Apr 1995 12:34:39 +0100
8457 dpkg (0.93.37) BETA; priority=LOW (MEDIUM for dselect users)
8459   * Fixed segfault if no description available (Bug#735);
8460     thanks to Peter Tobias for the bug report.
8461   * Fixed other assorted minor bugs in description displays.
8463   * Changed dpkg-deb --info short option from -i to -I, to make
8464     it unique across dpkg and dpkg-deb (-i still works with
8465     dpkg-deb for backwards compatibility).
8467   * Produce more sensible error when main package list is empty.
8469  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Fri, 7 Apr 1995 02:24:55 +0100
8471 dpkg (0.93.36) BETA; priority=LOW (MEDIUM for dselect users)
8473   * All the C code (including dselect) updated to support `provides'
8474     (virtual packages).
8475   * Revamped dselect's related package selection/deselection
8476     algorithms.
8477   * Everything can now handle arbitrary `class' values (as well
8478     as the predefined ones which we understand and can interpret).
8479   * Fixed bug that prevented display update when moving down a small
8480     recursive package list in dselect.
8481   * Column heading characters corrected from `SHOC' to `HSOC'.
8483  -- Ian Jackson <iwj10@cus.cam.ac.uk>  Thu, 6 Apr 1995 12:48:13 +0100
8485 dpkg (0.93.35) BETA; priority=MEDIUM
8487  * Preserve ownerships and permissions on configuration files.
8488  * Fix bug in conffile updating that could leave a hardlink
8489    <foo>.dpkg-new to the conffile <foo>.
8491  * Improved dselect's package list help messages.
8492  * Highlight now moves on after (de)selecting just one package.
8493  * Better algorithm for scrolling up/down when moving highlight.
8494  * Fixed bug in display of `preformatted' extended Description lines.
8495    (dselect is still ALPHA, but is fairly stable.)
8497  * Improved dpkg's message when configuring a package that doesn't
8498    exist, and when selecting or skipping a package that isn't
8499    currently selected (during unpack processing).
8501  * Description in control file expanded.
8503  * Scroll back to top when changing what is in the `info' area.
8505 dpkg (0.93.34) BETA; priority=LOW (HIGH for dselect users)
8507  * dselect: Fixed bug which caused a coredump if you exited the
8508    package list if you'd made any changes.  Ouch !
8510  * dselect: Improved selection algorithm to show fewer extraneous
8511    packages; improved display for unavailable packages.
8513  * dpkg: Improved progress messages during unpacking somewhat.
8515 dpkg (0.93.33) BETA; priority=LOW (HIGH for dselect users)
8517  * dselect now has a main menu.
8519  * Fixed nasty uninitialised data bug in dselect.
8521  * dselect now locks and unlocks the packages database.
8523 Mon, 27 Mar 1995 03:30:51 BST  Ian Jackson <iwj10@cus.cam.ac.uk>
8525         * dpkg (0.93.32): Alpha dselect released and installed in
8526                           /usr/sbin/dselect.
8527         * dpkg (0.93.32): Many portability enhancements: should now
8528                           compile using GCC 2.6.3, and dpkg-deb should
8529                           compile better on non-Linux systems.
8530         * dpkg (0.93.32): dpkg will not loop if its stdin disappears
8531                           and it needs to prompt.
8532         * dpkg (0.93.32): Fixed removal dependency error to show
8533                           correct package (Bug #648).
8534         * dpkg (0.93.32): Tidied up copyright notices.
8535         * dpkg (0.93.32): First draft of update-rc.d manpage, not yet
8536                           installed in /usr/man.
8537         * dpkg (0.93.32): Changes to top-level Makefile.in to improve
8538                           error trapping.
8539         * dpkg (0.93.32): Improved Makefile `clean' and `distclean'
8540                           targets.
8541         * dpkg (0.93.32): Deleted irrelevant `t.c' from lib and
8542                           dselect directories.
8543         * dpkg (0.93.32): Added vercmp.c with version comparison code.
8544         * dpkg (0.93.32): varbufextend message changed - varbufs not
8545                           just for input buffers.
8546         * dpkg (0.93.32): varbuf has C++ member functions in header
8547                           #ifdef __cplusplus.
8549 Changes in dpkg 0.93.31:
8551 * start-stop-daemon --pidfile now works (Bug#571).
8552 * Fixed dependency processing bugs which could require a rerun of
8553   dpkg --configure (Bug#566).
8554 * Fixed garbage output for `language' of control file in dpkg-deb --info.
8556 Changes in dpkg 0.93.30:
8558 * Added /usr/sbin/start-stop-daemon.
8560 Changes in dpkg 0.93.29:
8562 * Made postinst scripts really be run when dpkg --purge used.
8563 * Added new --force-extractfail option - VERY DANGEROUS.
8565 Changes in dpkg 0.93.28:
8567 * Removed undef of 0x_p21 in read_database_file, which caused the
8568   the whole status database to become trashed when any update files
8569   were read.
8570 * Make infinite-loop prevention and cycle detection work.
8571 * Made findbreakcycle work (ie, break properly when cycle detected).
8572 * New script, update-rc.d, to update links /etc/rc?.d/[KS]??*.
8573 * dpkg.pl now sets the umask to 022.
8574 * Cosmetic error message fix to dpkg-deb.
8575 * Deleted OLD directory altogether.
8576 * Improved error-trapping in top-level Makefile loops.
8578 Changes in dpkg 0.93.27:
8580 * Make version number specifications in Depends &c work.
8581 * Added AC_PROG_CXX to autoconf.in for dselect.
8582 * Changed myopt.h not to have cipaction field in cmdinfo (this was
8583   specially for dpkg-deb) - now we have a generic void*.
8584 * Renamed `class' member of `pkginfoperfile' to `clas' [sic].
8585 * Much work in `dselect' subdirectory.
8586 * Deleted executables, objects and libraries from OLD tree !
8587 * Minor changes to various copyright notices and top-of-file comments.
8588 * Don't install nasty Perl dselectish thing as /usr/bin/dselect.
8590 Changes in dpkg 0.93.26:
8592 * Added --no-also-select instead of not auto-selecting on --unpack
8593   but doing so on --install; removed --force-unpack-any.
8595 Changes in dpkg 0.93.25:
8597 * Fixed duplicate output (failure to flush before fork) bug.
8598 * More clarification of md5sum.c copyright.
8599 * Corrected typo in ChangeLog in 0.93.24 source package.
8601 Changes in dpkg 0.93.24:
8603 * dpkg could copy conffiles info from one package to another.  Aargh.
8604   Bug #426.
8605 * dpkg failed to initialise status if you tried to remove or
8606   configure a nonexistent package.  Bug #419.
8607 * install-info now handles START-INFO-DIR-ENTRY entries like:
8608    * Gdb::                         The GNU debugger.
8609   Previously it would only accept (Bug #407):
8610    * Gdb: (gdb).                   The GNU debugger.
8611 * When installing a new foo.info[.gz], install-info now replaces
8612    * Foo: (foo.info).              The Gnoo Foo.
8613   as well as just * Foo: (foo). ...
8614 * Moved option parsing out of dpkg-deb into libdpkg.
8615 * Assorted minor source code rearrangements.
8616 * Fixed assorted copyright notices, clarified md5sum copyright.
8617 * Corrected typo in 0.93.23 source package's ChangeLog.
8619 Changes in dpkg 0.93.23:
8621 * `dpkg-deb' --build now does a syntax check on the control file.
8622 * `dselect' is now no longer called `debian', spurious copy removed
8623   from package top-level source directory.
8624 * C control information parsing complete and somewhat tested.
8625 * Moved `global' include files into $(srcdir)/include from ../lib,
8626   added some files to the lib Makefile, and arranged for pop_cleanup().
8628 Changes in dpkg 0.93.22:
8630 * Fixed bug which caused dpkg to see failures of md5sum where there
8631   were none (would also have caused dpkg to miss a real failure).
8632 * Fixed failure to update some `status' database fields.
8634 Changes in dpkg 0.93.21:
8636 * Fixed error-handling bug which could corrupt database.
8638 Changes in dpkg 0.93.20:
8640 * Fixed bug which ran old (/var/adm/dpkg) postinst scripts.
8641 * Fixed dpkg usage message which claimed -i => both --install & --info.
8642 * Use Colin Plumb's MD5 code - faster, and better copyright.
8643 * Manpages: dpkg-deb(8), deb-control(5), deb(5) - thanks to Raul
8644   Deluth Miller.  Also, an xfig picture of some C program innards.
8646 Changes in dpkg 0.93.19:
8648 * Don't delete the `list' file from the dpkg database.
8649 * Fixed various bugs in the conffile handling.
8650 * Conffiles that are symlinks will now be treated as if the
8651   `dereferenced' name of the file was listed in conffiles.  This means
8652   that /etc/foo -> /usr/etc/foo will cause all conffile updates of
8653   /etc/foo to create /usr/etc/foo.dpkg-tmp &c instead.  However, the
8654   link will be removed if --purge is used to delete all the conffiles.
8655 * When doing a new installation, or when updating a conffile that
8656   wasn't listed as a conffile in the old version of the package, don't
8657   do any prompting but just install the version from the archive.
8658 * Corrected error message if exec of dpkg --vextract failed
8659   and --instroot or --root specified.
8660 * Added new --force-unpack-any option.
8661 * Extra newline after --status output.
8662 * Added -W options to CFLAGS.
8663 * Fixed mistake in previous ChangeLog entry.
8665 Changes in dpkg 0.93.18:
8667 * Fixed invocation of dpkg-deb --vextract if --root or --instdir
8668   not specified.
8669 * Create /var/lib/dpkg/updates.
8671 Changes in dpkg 0.93.17:
8673 * install-info --remove exits with status 0 if it doesn't find the
8674   thing to remove, instead of status 1.
8675 * Error handling functions have __attribute__((format...)) if GCC.
8676 * push_cleanup its arg takes void **argv instead of char **argv.
8677 * Top-level Makefile.in has set -e before `for' loops.
8678 * dpkg-deb --info not-an-existing-file produces fewer error messages.
8680 Changes in dpkg 0.93.16:
8682 * Made --root= option really extract to $instroot instead of `/'.
8683 * install-info clears the 0444 bits in its umask.
8684 * Fixed a few database handling bugs which cause dpkg always to fail,
8685   and usually to corrupt the status database in various ways.
8686 * dpkg-deb completely rewritten, now doesn't tinker with
8687   /var/{adm,lib}/dpkg.  Should be faster.
8688 * Directory structure and Makefiles in source package reorganised.
8690 Changes in dpkg 0.93.15:
8692 * Added `debian' (dselect), still very primitive.
8693 * Database format changed, and moved from /var/adm to /var/lib.
8694 * Added dpkg --avail mode, --list, --status and --search.
8695 * Set of dpkg => dpkg-deb pass-through operations changed (but
8696   dpkg-deb not yet updated).
8697 * Added --root, --admindir and --instdir, as well as --isok &c.
8698 * Moved much stuff into /usr/lib/dpkg-lib.pl, rewritten status
8699   database handling.
8700 * Put packages in `purge' state even if `deinstall' requested if
8701   they have no postrm and no conffiles.
8702 * Version number comparisons fixed.
8703 * insert-version.pl now installes lib.pl filename too.
8704 * Strip trailing slashes when reading files from file lists.
8706 Changes in dpkg 0.93.14:
8708 * Fixed parsing of DEPENDS &c fields with trailing whitespace.
8709 * postinst now fixes up broken ispell.control file.
8710 * Cyclic dependency/multiple package removal processing: don't consider
8711   packages we've just removed when looking for a reason not to go ahead.
8712 * Added call to postinst with `purge' argument for expunging old
8713   configuration etc. that aren't listed in conffiles.
8715 Changes in dpkg 0.93.13:
8717 * sub S_ISREG defined in dpkg.pl.
8718 * Checking of DEPENDS &c fields was too lax, causing an internal error
8719   if you fed it certain kinds of broken control file.
8720 * Fixed misleading message from bogus installationstatus call.
8721 * New -u and -U options to dpkg-deb which don't unpack the /DEBIAN
8722   directory, and use these in dpkg.pl; clean up /DEBIAN in postinst.
8724 Changes in dpkg 0.93.12:
8726 * No longer needs *.ph files, since these appear to be broken.
8727 * Postinst fixes up *.control files with curly brackets.
8728 * embryo of dselect.
8730 Changes in dpkg 0.93.11:
8732 * New --ignore-depends option.
8733 * This ChangeLog changed format here.
8735 Wed Nov 30 15:38:21 GMT 1994  Ian Jackson  <iwj10@cus.cam.ac.uk>
8737         * dpkg 0.93.11 released.
8739         * conffile updating fixed.
8741         * Message `updgrade' in dpkg changed to `replace'.
8743         * install-info now copes with multi-line entries.
8745         * version numbers now done automatically in dpkg and install-info.
8747         * more debugging around conffiles updates.
8749         * *.hash files not deleted so soon.
8751         * adds brand new packages to status array so we can install them.
8753         * postinst does h2ph for {sys,linux}/{stat,types}.ph if required.
8755 Mon Nov 28 02:00:13 GMT 1994  Ian Jackson  <iwj10@cus.cam.ac.uk>
8757         * dpkg 0.93.10 released.
8759         * dpkg.pl completely rewritten.
8761         * dpkg-deb: removed dabase-processing and --install option.
8763         * Makefiles reworked, debian.rules added.
8765         * Don't install anything in /usr/doc/examples.
8767         * dpkg-*.deb contains /usr/bin/dpkg-deb.dist, fixed up by postinst.
8769 Thu Oct 20 13:22:20 1994  Ian Murdock  (imurdock@debra.debian.org)
8771         * dpkg 0.93.9 released.
8773         * dpkg.pl: Use $argument, not $package, with `--build'.
8774         Make sure that saved postinst scripts are executable.
8776 Tue Oct 18 09:40:57 1994  Ian Murdock  (imurdock@debra.debian.org)
8778         * dpkg 0.93.8 released.
8780         * deb/remove.c (pkg_remove): Do not report an error from rmdir ()
8781         when `errno' is ENOTEMPTY (Directory not empty), because in this
8782         case we have found the highest-level directory in the package and
8783         are ready to exit the loop (i.e., it is a normal occurrence).
8785 Mon Oct 17 10:44:32 1994  Ian Murdock  (imurdock@debra.debian.org)
8787         * Makefile.in: Adapted all Makefiles to the GNU Coding Standards.
8789         * deb/remove.c (pkg_remove): Make sure that parent directories are
8790         removed LAST!  This will result in complete removal of packages
8791         when --remove is called.  dpkg 0.93.7 (and earlier) had problems
8792         with this because it tried to remove directories in order, which
8793         will work most of the time, but not necessarily all of the time.
8795         * deb/list.c (pkg_list): Output is sorted by package name.
8797 Tue Oct  4 12:27:10 1994  Ian Murdock  (imurdock@debra.debian.org)
8799         * deb/contents.c (pkg_contents): When a list file cannot be
8800         opened, silently fail and let the front-end explain the problem.
8802         * deb/util.c (return_info): When a control file cannot be opened,
8803         silently fail and let the front-end explain the problem.
8805         * deb/search.c (pkg_search): Exit 0 if the regular expression is
8806         matched and 1 if it is not.
8808 Mon Oct  3 18:38:53 1994  Ian Murdock  (imurdock@debra.debian.org)
8810         * dpkg.pl: New file.  Replaces dpkg.sh.
8812         * deb/Makefile.in: Renamed `dpkg-util.deb' to `dpkg-deb'.
8814         * deb/build.c (pkg_build): `--build' is less verbose, instead
8815         letting the front-end add verbosity where appropriate.
8817         * deb/install.c (pkg_install): Ditto.
8819         * deb/remove.c (pkg_remove): Ditto.
8821         * deb/search.c (pkg_search): Ditto.
8823         * deb/describe.c (pkg_describe): `--describe' is less verbose,
8824         instead letting the front-end add verbosity where appropriate.
8825         The ``Description:'' label has been removed.
8827         * deb/version.c (pkg_version): `--version' is less verbose,
8828         instead letting the front-end add verbosity where appropriate.
8829         The ``Version:'' label has been removed, as has the maintainer
8830         information.
8832 Mon Sep 12 14:22:04 1994  Ian Murdock  (imurdock@debra.debian.org)
8834         * deb/version.c (pkg_version): `--version' now reports the
8835         version number of dpkg if no argument is specified.
8837 Thu Sep  1 13:31:37 1994  Ian Murdock  (imurdock@debra.debian.org)
8839         * dpkg 0.93.7 released.
8841         * deb/build.c (pkg_build): check status and exit if non-zero.
8843         * deb/contents.c (pkg_contents): ditto.
8845         * deb/install.c (archive_extract): ditto.
8847 Thu Sep  1 13:20:08 1994  Ian Murdock  (imurdock@debra.debian.org)
8849         * deb/version.c (pkg_version): indent to the same point as
8850         pkg_describe.
8852 Thu Sep  1 12:21:11 1994  Ian Murdock  (imurdock@debra.debian.org)
8854         * Makefile.in (dist): added debian.rules binary, source and
8855         dist targets to make final distribution easier to make.
8856         (install): install programs to /usr/bin.
8858         * deb/Makefile.in (install): install programs to /usr/bin.
8860         * deb/list.c (pkg_list): enforce a maximum limit of ten characters
8861         for the package name in the output.
8862         (pkg_list): left-justify the version number to make it easier for
8863         the front-end to parse the output.
8864         (pkg_list): replace first '\n' character in packages[n].description
8865         with '\0'.
8867         * deb/install.c (archive_extract): use the `p' option to `tar' to
8868         ensure that permissions are preserved.
8870 Sat Aug 27 09:53:37 1994  Ian Murdock  (imurdock@debra.debian.org)
8872         * dpkg 0.93.6 released.
8874         * deb/util.c (return_info): only unlink CONTROL if ARCHIVE_FLAG is
8875         true!
8877 Fri Aug 26 15:38:22 1994  Ian Murdock  (imurdock@debra.debian.org)
8879         * dpkg 0.93.5 released.
8881         * deb/contents.c (pkg_contents): merged function archive_contents
8882         into function pkg_contents.
8884         * deb/contents.c (pkg_contents): use lstat (rather than stat) so
8885         that symbolic links are recognized.
8886         (pkg_contents): print the usual `<path> -> <link_to>' now that we
8887         recognize symbolic links.
8889         * deb/util.c (return_info): create a FIFO to pipe the needed
8890         information to the ``formatter'' rather than creating a directory
8891         in /tmp for the package information, which is what we used to do.
8893 Thu Aug 25 11:46:27 1994  Ian Murdock  (imurdock@debra.debian.org)
8895         * lib/fake-ls.c (mk_date_string): return a pointer to malloc'ed
8896         area.
8897         (mk_mode_string): ditto.
8899         * dpkg.sh: make sure the control information is extracted to a
8900         uniquely-named temporary directory during package installation.
8902         * dpkg.sh: execute the pre- and post-removal scripts during
8903         package removal.
8905         * dpkg.sh: exit immediately if dpkg-util.deb reports failure.
8907         * deb/install.c (pkg_control): make sure that `package' exists and
8908         is a Debian archive before doing anything.
8910         * deb/install.c (pkg_extract): make sure that `package' exists and
8911         is a Debian archive before doing anything.
8913         * deb/install.c (pkg_install): unlink `extract_output' when done.
8915         * deb/remove.c (pkg_remove): use lstat (rather than stat) so that
8916         --remove does not get confused and think that a symbolic link to a
8917         directory is actually a directory, which results in the symbolic
8918         link never being removed at all.
8920 ChangeLog begins Thu Aug 25 11:46:27 1994 for dpkg 0.93.5.