1 2009-03-02 Guillem Jover <guillem@debian.org>
3 * configure.ac: Release 1.15.0.
5 2009-03-02 Guillem Jover <guillem@debian.org>
7 * scripts/t/900_update_alternatives.t: Do not use $srcdir for t.tmp,
8 it's actually located in builddir.
10 2009-03-02 Guillem Jover <guillem@debian.org>
12 * scripts/update-alternatives.pl (load): Print an actual error on open
13 instead of an empty string.
15 2009-03-02 Guillem Jover <guillem@debian.org>
17 * scripts/update-alternatives.pl: Do not use non-ASCII strings on C
21 2009-03-02 Guillem Jover <guillem@debian.org>
23 * po/POTFILES.in: Remove reference to cleanup-info.pl.
24 * scripts/.gitignore: Likewise.
26 2009-02-27 Raphaël Hertzog <hertzog@debian.org>
28 * scripts/update-alternatives.pl: Avoid logging too many
29 useless messages about status change.
31 2009-02-27 Raphaël Hertzog <hertzog@debian.org>
33 * scripts/Dpkg/Shlibs/SymbolFile.pm (save, dump): Add new
34 parameter asking that #PACKAGE# be replaced on the fly.
35 * scripts/dpkg-gensymbols.pl: Replace #PACKAGE# while outputting
37 * man/dpkg-gensymbols.1: Document the new feature.
38 * scripts/t/200_Dpkg_Shlibs.t,
39 scripts/t/200_Dpkg_Shlibs/symbols.fake-2: Add test-case for
40 replacement of #PACKAGE# on the fly (together with test of dump).
42 2009-02-27 Raphaël Hertzog <hertzog@debian.org>
44 * scripts/update-alternatives.pl: Add one more sanity check
45 verifying that <link> and <path> are different (cf #509667 for a
48 2009-02-27 Raphaël Hertzog <hertzog@debian.org>
50 * scripts/update-alternatives.pl: Improve output messages
51 by identifying their origin and by being more consistent.
52 * scripts/t/900_update_alternatives.t: Adjust test suite
53 for one error message that's now on standard error instead
56 2009-02-27 Guillem Jover <guillem@debian.org>
58 * lib/tarfn.c (get_prefix_name): New function.
59 (DecodeTarHeader): On tar_format_ustar and if Prefix is not empty
60 call get_prefix_name instead of aborting.
61 * man/deb.5: Document that ustar format is now properly supported.
63 2009-02-27 Guillem Jover <guillem@debian.org>
65 * lib/tarfn.h (enum tar_format): New type.
66 (struct TarInfo): Add new format member.
67 * lib/tarfn.c (TAR_MAGIC_USTAR, TAR_MAGIC_GNU): New macros.
68 (struct TarHeader): Add new Prefix member.
69 (DecodeTarHeader): Detect tar formats based on the magic values.
70 Abort on tar_format_ustar and an non-empty Prefix.
72 2009-02-27 Guillem Jover <guillem@debian.org>
74 * lib/fields.c (f_boolean): Use PKGPFIELD to assign to the correct
75 member instead of hardcoding to the essential member.
77 2009-02-27 Guillem Jover <guillem@debian.org>
79 * lib/fields.c (f_boolean): Return if value is an empty string.
81 2009-02-26 Chris Coulson <chrisccoulson@googlemail.com>,
82 Guillem Jover <guillem@debian.org>
84 * configure.ac (AC_CHECK_HEADERS): Add 'sys/syscall.h'.
85 * man/start-stop-daemon.8: Document new option --iosched.
86 * utils/start-stop-daemon.c [HAVE_SYS_SYSCALL_H]: Include
88 (HAVE_IOPRIO_SET) [SYS_ioprio_set, linux]: New macro.
89 (IOPRIO_CLASS_NONE, IOPRIO_CLASS_RT): New anonymous enum.
90 (IOPRIO_CLASS_BE, IOPRIO_CLASS_IDLE): Likewise.
91 (IOPRIO_WHO_PROCESS, IOPRIO_WHO_PGRP, IOPRIO_WHO_USER): Likewise.
92 (IOPRIO_CLASS_SHIFT, IOPRIO_PRIO_VALUE, IO_SCHED_PRIO_MIN)
93 (IO_SCHED_PRIO_MAX): New macros.
94 (io_sched): New variable.
95 (do_help): Document --iosched.
96 (ioprio_set) [HAVE_IOPRIO_SET]: New function.
97 (parse_io_schedule, set_io_schedule): Likewise.
98 (parse_options): Add 'iosched' to longopts. Add 'I:' to getopt_long
99 call. Handle 'I' as getopt_long return value. Call parse_io_schedule
100 if io_schedule_str is not NULL.
101 (main): Print io_sched values if --test is used. Call set_io_schedule
102 if io_sched is not NULL.
104 2009-02-26 Romain Francoise <rfrancoise@debian.org>,
105 Guillem Jover <guillem@debian.org>
107 * src/filesdb.c: Include 'progress.h'.
108 (ensure_allinstfiles_available): Call progress_init instead of
109 directly printing. Call progress_step if needing to print on each
110 package iteration. And call progress_done if needing to print when
113 2009-02-26 Romain Francoise <rfrancoise@debian.org>,
114 Guillem Jover <guillem@debian.org>
116 * lib/Makefile.am (libdpkg_a_SOURCES): Add 'progress.h' and
118 * lib/progress.h: New file.
119 * lib/progress.c: Likewise.
121 2009-02-22 Raphaël Hertzog <hertzog@debian.org>
123 * scripts/update-alternatives.pl: Add new option --log to
124 log to another file than /var/log/dpkg.log.
125 * man/update-alternatives.8: Document the new option.
126 * scripts/t/900_update_alternatives.t: Call update-alternatives
127 with --log /dev/null since the test suite can be run with fakeroot
128 and it would try to write to /var/log/dpkg.log because fakeroot
129 makes it believe that it is writable.
131 2009-02-22 Raphaël Hertzog <hertzog@debian.org>
133 * scripts/update-alternatives.pl: update-alternatives should not
134 replace real files by symlinks. When --install is called, the
135 alternative link should either not exist or already be a link. It
136 that's not the case, it will simply skip installing that link and
137 display a warning. However if --force is given, it will (try to)
139 * man/update-alternatives.8: Document this behaviour.
140 * scripts/t/900_update_alternatives.t: Add corresponding tests in
143 2009-02-22 Raphaël Hertzog <hertzog@debian.org>
145 * man/update-alternatives.8: Document how --all can be used to
146 repair all alternatives on the system in a single command.
147 * scripts/update-alternatives.pl: Ensure the above explanation
148 is true by ensuring that --config does something sensible when
149 no alternative is currently selected and when the user input is
150 empty: it will auto-select the best alternative.
152 2009-02-22 Raphaël Hertzog <hertzog@debian.org>
154 * scripts/update-alternatives.pl: Implement --set-selections.
155 It's the the counterpart of --get-selections, it reads
156 configuration on standard input and reconfigures alternatives
158 * man/update-alternatives.8: Document this option.
159 * scripts/t/900_update_alternatives.t: Add corresponding tests in
162 2009-02-22 Raphaël Hertzog <hertzog@debian.org>
164 * scripts/update-alternatives.pl: Implement --get-selections.
165 The new option lists all master alternatives and their status in a
166 format simple to parse.
167 * man/update-alternatives.8: Document this option.
169 2009-02-22 Raphaël Hertzog <hertzog@debian.org>
171 * scripts/update-alternatives.pl: Installation of a slave
172 alternative link is only done if the corresponding slave file is
174 * man/update-alternatives.8: Document this behaviour.
175 * scripts/t/900_update_alternatives.t: Add corresponding tests in
178 2009-02-22 Raphaël Hertzog <hertzog@debian.org>
180 * scripts/update-alternatives.pl: Add more sanity check for
181 --install: ensure alternative path and links are absolute, ensure
182 master alternative path exists, forbid / and spaces in alternative
184 * scripts/t/900_update_alternatives.t: Add corresponding tests in
187 2009-02-22 Raphaël Hertzog <hertzog@debian.org>
189 * scripts/update-alternatives.pl: Checks that --install does not
190 reuse alternatives or links in a way that is not compatible with
192 * scripts/t/900_update_alternatives.t: Add corresponding tests in
195 2009-02-22 Raphaël Hertzog <hertzog@debian.org>
197 * scripts/update-alternatives.pl: Add logging to
200 2009-02-22 Raphaël Hertzog <hertzog@debian.org>
202 * man/update-alternatives.8: The vocabulary used was misleading
203 and not really uniform. Try to standardize and make it match with
204 the vocabulary used in the source code too.
205 Includes minor fixes to make it match the behaviour of the current
208 2009-02-22 Raphaël Hertzog <hertzog@debian.org>
210 * scripts/update-alternatives.pl: Rewrite it entirely in a more
211 object-oriented way. The only behaviour changes concern --config:
212 the output is nicer and sorted, it accets a path as well as the
214 * scripts/t/900_update_alternatives.t: Test suite adjusted to the
217 2009-02-22 Raphaël Hertzog <hertzog@debian.org>
219 * scripts/dpkg-gencontrol.pl, scripts/dpkg-gensymbols.pl: Reset
220 umask to 0022 to ensure that files created in the DEBIAN directory
221 have sane permissions.
223 2009-02-13 Guillem Jover <guillem@debian.org>
225 * src/query.c: Remove bogus comment about '--yet-to-unpack'.
227 2009-02-11 Raphaël Hertzog <hertzog@debian.org>
229 * scripts/Makefile.am: Drop cleanup-info.pl script.
230 * man/Makefile.am, man/po/po4a.cfg: Drop cleanup-info(8) manual page.
231 * README.feature-removal-schedule: Update information accordingly.
233 2009-02-11 Raphaël Hertzog <hertzog@debian.org>
235 * scripts/Makefile.am: Move update-alternatives, dpkg-divert and
236 dpkg-statoverride to /usr/bin as they can be useful to users since
237 they have --display or --list options that do not require
238 administrative rights.
239 * Makefile.am (EXTRA_DIST): Add debian/dpkg.links.
241 2009-02-11 Raphaël Hertzog <hertzog@debian.org>
243 * scripts/dpkg-buildpackage.pl: Add new option --target/-T to
244 allow a specific debian/rules target to be run. The new --as-root
245 option forces the target to be run with root rights.
246 Add support for the two common syntaxes for long
247 options ("--admindir=…" and "--admindir …").
248 * man/dpkg-buildpackage.1: Update documentation accordingly.
250 2009-02-11 Raphaël Hertzog <hertzog@debian.org>
252 * man/dpkg-buildpackage.1: Fix name of binary target in default
255 2009-02-10 Guillem Jover <guillem@debian.org>
257 * src/enquiry.c (assert_version_support): Rename verrev_buf argument
260 2009-02-10 Guillem Jover <guillem@debian.org>
262 * src/enquiry.c (assert_version_support): Add new feature_name
263 argument, and use it when printing the output messages. Fix all
266 2009-02-10 Guillem Jover <guillem@debian.org>
268 * src/enquiry.c (assert_version_support): Remove reqversion argument.
269 Do not initialize verrev_buf from reqversion, when the epoch is ~0UL.
270 (assertpredep): Pass a fully constructed versionrevision to
271 assert_version_support, rename versionrevision variable to version
272 and remove static keyword.
273 (assertepoch): Likewise.
274 (assertlongfilenames): Likewise.
275 (assertmulticonrep): Likewise.
277 2009-02-10 Guillem Jover <guillem@debian.org>
279 * src/enquiry.c (assertversion): Rename to ...
280 (assert_version_support): ... this.
282 2009-02-08 Guillem Jover <guillem@debian.org>
284 * lib/dpkg.h (ohshitvb): Remove function prototype.
285 * lib/ehandle.c (ohshitvb): Remove function definition.
287 2009-02-06 Raphaël Hertzog <hertzog@debian.org>
289 * scripts/t/900_update_alternatives.t: New test-suite for
291 * scripts/Makefile.am: Add the previous file.
293 2009-02-06 Raphaël Hertzog <hertzog@debian.org>
295 * scripts/update-alternatives.pl: Deal with empty
296 files in the administrative directory by ignoring them.
298 2009-02-06 Raphaël Hertzog <hertzog@debian.org>
300 * scripts/update-alternatives.pl: Ensure that a non-existant
301 alternative result in automatic mode configuration.
303 2009-02-06 Raphaël Hertzog <hertzog@debian.org>
305 * scripts/update-alternatives.pl: Change set_links() to
306 also reset the main alternative link. Add a parameter to
308 When --install reinstalls the current and manually selected entry,
309 let it recreate the symlinks in case something has gone wrong.
311 2009-02-06 Raphaël Hertzog <hertzog@debian.org>
313 * scripts/update-alternatives.pl: Remove the alternative when
314 the last choice is removed, even if we are in manual mode.
315 * man/update-alternatives.8: Update the documentation
316 accordingly to not be as strong about not touching links in manual
319 2009-02-06 Raphaël Hertzog <hertzog@debian.org>
321 * scripts/update-alternatives.pl (set_links): Remove slavelinks
322 if needed as well. We create slave links automatically, we should
323 remove them in the same way. Otherwise --config or --set will let
324 dangling symlinks on the system.
326 2009-02-06 Guillem Jover <guillem@debian.org>
328 * man/deb.5: Add detailed information of the currently supported
331 2009-02-06 Guillem Jover <guillem@debian.org>
333 * ostable: Add gnu-kopensolaris.
334 * triplettable: Add gnu-kopensolaris to kopensolaris mapping.
336 2009-02-06 Guillem Jover <guillem@debian.org>
338 * ostable: Reindent to make room for longer os names.
340 2009-02-05 Raphaël Hertzog <hertzog@debian.org>
342 * scripts/update-alternatives.pl (rename_mv): Integrate logic to
343 not fail if ENOENT is the reason why the rename failed.
345 2009-02-05 Raphaël Hertzog <hertzog@debian.org>
347 * scripts/update-alternatives.pl: Ensure that a broken link
348 in automatic mode doesn't lead to the alternative being set
349 on manual mode. Also displays by default (and not only
350 when --verbose is given) the message that indicates that
351 an alternative is switched to manual mode.
353 2009-02-05 Raphaël Hertzog <hertzog@debian.org>
354 Osamu Aoki <osamu@debian.org>
356 * scripts/update-alternatives.pl: Allow --config to continue when
357 the currently selected alternative doesn't match the only existing
358 one. Useful to be able to recover from a broken configuration.
359 Also offer the choice in --config mode to go back the automatic
360 mode. Add a new --skip-auto option to combine with --all and
361 easily review manual and broken alternatives.
362 * man/update-alternatives.8: Update the documentation accordingly.
364 2009-02-04 Raphaël Hertzog <hertzog@debian.org>
366 * scripts/Dpkg/Vendor/Ubuntu.pm: Ubuntu vendor object implementing
367 lookup of launchpad bugs in changelogs and a safety-check for
368 Maintainer fields of forked packages (launched during source
370 * scripts/Makefile.am (EXTRA_DIST): Add
371 'scripts/Dpkg/Vendor/Ubuntu.pm'.
372 * scripts/po/POTFILES.in: Add 'scripts/Dpkg/Vendor/Ubuntu.pm'.
374 2009-02-04 Raphaël Hertzog <hertzog@debian.org>
376 * scripts/Dpkg/Vendor/Default.pm: Generic vendor object that will
377 be used to hook vendor-specific behaviour in multiple places.
378 * scripts/Dpkg/Vendor/Debian.pm: Debian variant of that object.
379 * scripts/Dpkg/Vendor.pm (get_vendor_object, run_vendor_hook):
380 New functions to retrieve the current vendor object and run
381 vendor-specific code.
382 * scripts/dpkg-source.pl, scripts/dpkg-genchanges.pl: Add first
383 vendor hooks to be used by Ubuntu.
384 * scripts/Makefile.am (EXTRA_DIST): Add
385 'scripts/Dpkg/Vendor/Default.pm' and
386 'scripts/Dpkg/Vendor/Debian.pm'.
388 2009-01-29 Guillem Jover <guillem@debian.org>
390 * lib/Makefile.am (libdpkg_a_SOURCES): Add 'dpkg-test.h'.
391 * libcompat/Makefile.am (libcompat_a_SOURCES): Add 'compat.h'.
392 * man/Makefile.am (EXTRA_DIST): Add 'po/ChangeLog'.
394 2009-01-27 Raphaël Hertzog <hertzog@debian.org>
396 * scripts/t/900_Dpkg_Version.t: Renamed into...
397 * scripts/t/100_Dpkg_Version.t: and merged test cases previously
398 provided by this file so that there's no loss of tests. Also
399 adjusted test cases to match the change below.
400 * scripts/Dpkg/Version.pm (compare_versions): Handle "<" like "<="
401 and ">" like ">=" in order to be consistent with dpkg
402 --compare-versions. Emit warnings when they are used as they are
404 * scripts/Makefile.am: Drop scripts/t/900_Dpkg_Version.t from the
405 set of extra files to distribute.
406 * scripts/dpkg-genchanges.pl: Use "<<" instead of ambiguous "<" in
409 2009-01-22 Guillem Jover <guillem@debian.org>
411 * lib/log.c (statusfd_send): Use varbufsubstc to replace new lines
414 2009-01-22 Guillem Jover <guillem@debian.org>
416 * lib/dpkg-db.h (varbufsubstc): New function prototype.
417 * lib/varbuf.c (varbufsubstc): New function definition.
418 * lib/test/t-varbuf.c (test_varbuf_substc): New function.
419 (test): Call test_varbuf_substc.
421 2009-01-22 Guillem Jover <guillem@debian.org>
423 * configure.ac (AC_CONFIG_FILES): Add 'lib/test/Makefile'.
424 * lib/Makefile.am (SUBDIRS): New variable.
425 * lib/dpkg-test.h: New file.
426 * lib/test/Makefile.am: Likewise.
427 * lib/test/t-macros.c: Likewise.
428 * lib/test/t-path.c: Likewise.
429 * lib/test/t-pkginfo.c: Likewise.
430 * lib/test/t-string.c: Likewise.
431 * lib/test/t-test.c: Likewise.
432 * lib/test/t-varbuf.c: Likewise.
433 * lib/test/t-version.c: Likewise.
435 2009-01-20 Guillem Jover <guillem@debian.org>
437 * lib/dpkg-db.h (varbufaddbuf): Rename argument l to size.
438 * lib/nfmalloc.c (nfstrnsave): Likewise.
439 * lib/varbuf.c (varbufaddbuf): Likewise.
441 2009-01-20 Guillem Jover <guillem@debian.org>
443 * lib/dpkg-db.h (varbufdupc): Use size_t instead of ssize_t.
444 (varbufaddbuf): Use size_t instead of const int.
445 (nfstrnsave): Use size_t instead of int.
447 2009-01-14 Guillem Jover <guillem@debian.org>
449 * man/start-stop-daemon.8: Document new option --procsched.
450 * utils/start-stop-daemon.c [_POSIX_PRIORITY_SCHEDULING]: Include
452 [!_POSIX_PRIORITY_SCHEDULING]: Define SCHED_OTHER, SCHED_FIFO and
453 SCHED_RR with dummy values.
454 (struct res_schedule): New type.
455 (proc_sched): New variable.
456 (do_help): Document --procsched.
457 (parse_proc_schedule, set_proc_schedule): New functions.
458 (parse_options): Add 'procsched' to longopts. Add 'P:' to getopt_long
459 call. Handle 'P' as getopt_long return value. Call parse_proc_schedule
460 if proc_schedule_str is not NULL.
461 (main): Print proc_sched values if --test is used. Call
462 set_proc_schedule if proc_sched is not NULL.
464 2009-01-14 Guillem Jover <guillem@debian.org>
466 * utils/start-stop-daemon.c (xstrdup): New function.
467 (parse_options): Use xstrdup instead of strdup.
469 2009-01-10 Guillem Jover <guillem@debian.org>
471 * utils/start-stop-daemon.c (main): If changeuser is a uid, call
472 getpwuid to get the passwd entry and do the same setup as if it is
475 2009-01-07 Guillem Jover <guillem@debian.org>
477 * man/dpkg-deb.1: Document that -x will modify the extraction
478 directory permissions.
480 2009-01-05 Guillem Jover <guillem@debian.org>
482 * src/main.c (setobsolete): Use warning instead of fprintf call.
483 (setforce): Likewise.
485 2009-01-05 Guillem Jover <guillem@debian.org>
487 * man/start-stop-daemon.8: Clarify that the signal sent by default
490 2009-01-04 Guillem Jover <guillem@debian.org>
492 * utils/start-stop-daemon.c (signal_nr): Initialize with SIGTERM
493 instead of literal 15.
494 * man/start-stop-daemon.8: Refer to signal as TERM instead of
497 2009-01-04 Guillem Jover <guillem@debian.org>
499 * lib/dpkg.h (LOCALLIBDIR): Move macro to ...
500 * dselect/Makefile.am (INCLUDES): ... here, as a -D argument.
502 * lib/dpkg.h (DSELECT): Move macro to ...
503 * dselect/dselect.h: ... here.
505 * lib/dpkg.h (SPLITVERSION, SPLITPARTDEFMAX): Move macros to ...
506 * dpkg-split/dpkg-split.h: ... here.
508 * lib/dpkg.h (ARCHIVEVERSION, BUILDCONTROLDIR, EXTRACTCONTROLDIR)
509 (BUILDOLDPKGFORMAT, OLDARCHIVEVERSION, OLDDEBDIR, OLDOLDDEBDIR)
510 (MAXFIELDNAME, INTERPRETER_MAX): Move macros to ...
511 * dpkg-deb/dpkg-deb.h: ... here.
513 2009-01-04 Guillem Jover <guillem@debian.org>
515 * lib/dpkg.h (printforhelp): Move declaration to ...
516 * lib/myopt.h: ... here.
518 2009-01-04 Guillem Jover <guillem@debian.org>
520 * lib/dpkg-db.h (trig_note_pend_core, trig_note_pend): Make trig
522 * lib/triglib.c (trig_record_activation): Likewise.
523 (trig_file_activate): Remove now unneeded cast in
524 trig_record_activation call.
526 2009-01-04 Guillem Jover <guillem@debian.org>
528 * lib/myopt.h (MAX_CONFIG_LINE): New macro.
529 * lib/myopt.c (myfileopt): Use MAX_CONFIG_LINE instead of
532 2009-01-04 Guillem Jover <guillem@debian.org>
534 * lib/dpkg.h (SHELL, SHELLENVIR): Remove unused macros.
535 * src/main.h (check_libver): Remove unused prototype.
537 2009-01-04 Guillem Jover <guillem@debian.org>
539 * dselect/main.cc (findintable, dme, refreshmenu): Make static.
540 * dselect/method.cc (sthfailed): Likewise.
541 * dselect/pkgtop.cc (pkgprioritystring): Likewise.
543 2008-12-30 Guillem Jover <guillem@debian.org>
545 * lib/ehandle.c (badusage): Move function to ...
546 * lib/myopt.c: ... here. Include <stdarg.h>.
547 * lib/dpkg.h (badusage): Move declaration to ...
548 * lib/myopt.h: ... here.
549 * dpkg-split/split.c: Include <myopt.h>.
551 2008-12-30 Colin Watson <cjwatson@ubuntu.com>
553 * src/help.c (preexecscript): Call chdir after chroot.
555 2008-12-23 Guillem Jover <guillem@debian.org>
557 * lib/log.c (statusfd_send): Pass to write the remaining data, not
558 the same initial buffer.
560 2008-12-08 Raphaël Hertzog <hertzog@debian.org>
562 * scripts/Dpkg/Changelog.pm, scripts/dpkg-buildpackage.pl,
563 scripts/dpkg-genchanges.pl, scripts/dpkg-gencontrol.pl,
564 scripts/dpkg-source.pl: Also import the default exported functions
565 of Dpkg::ErrorHandling and not only the unusual ones.
567 2008-12-08 Guillem Jover <guillem@debian.org>
569 * dpkg-deb/build.c (do_build): Mark strings for translation.
570 * dpkg-deb/extract.c (extracthalf): Likewise.
571 * dpkg-split/info.c (read_info): Likewise.
572 * dpkg-split/join.c (reassemble): Likewise.
573 * dpkg-split/queue.c (do_queue): Likewise.
574 * dselect/pkglist.cc (packagelist::packagelist): Likewise.
575 (packagelist::display): Likewise.
576 * lib/log.c (statusfd_send): Likewise.
577 * scripts/Dpkg/Source/Package/V1.pm (do_build): Likewise.
578 * src/filesdb.c (ensure_packagefiles_available): Likewise.
579 (ensure_statoverrides): Likewise.
581 2008-12-08 Guillem Jover <guillem@debian.org>
583 * dpkg-deb/extract.c (extracthalf): Improve internerr strings, and add
584 the invalid value provoking the call.
585 * dpkg-split/queue.c (discardsome): Likewise.
586 * lib/dbmodify.c (modstatdb_init): Likewise.
587 * lib/dump.c (varbufdependency): Likewise.
588 * lib/parsehelp.c (varbufversion): Likewise.
589 * lib/vercmp.c (versionsatisfied3): Likewise.
590 * scripts/Dpkg/Source/Archive.pm (_add_entry): Likewise.
591 * src/archives.c (tarobject, archivefiles): Likewise.
592 * src/configure.c (deferred_configure, promptconfaction): Likewise.
593 * src/depcon.c (describedepcon, depisok): Likewise.
594 * src/enquiry.c (yettobeunpacked): Likewise.
595 * src/packages.c (packages, process_queue, dependencies_ok): Likewise.
596 * src/query.c (enqperpackage): Likewise.
597 * src/update.c (updateavailable): Likewise.
599 2008-12-08 Guillem Jover <guillem@debian.org>
601 * scripts/Dpkg/Deps.pm (implies): Do not mark internerr strings for
603 * scripts/Dpkg/Fields.pm (output): Likewise.
604 * scripts/Dpkg/Source/Package.pm (add_file): Likewise.
606 2008-12-08 Guillem Jover <guillem@debian.org>
608 * scripts/Dpkg/Deps.pm (parse): Do not use sprintf for warning.
609 (implies): Do not use sprintf for internerr.
611 2008-12-08 Guillem Jover <guillem@debian.org>
613 * dpkg-deb/build.c (do_build): Use internerr instead of ohshit. Do not
614 mark the string for translation.
615 * src/trigcmd.c (do_check): Use internerr instead of abort.
616 * lib/dump.c (w_status): Likewise.
617 * lib/triglib.c (trig_incorporate): Likewise. Remove <stdlib.h>
619 * scripts/Dpkg/IPC.pm (_sanity_check_opts): Use internerr instead of
621 (fork_and_exec): Likewise. Do not mark the string for translation.
622 (wait_child): Likewise.
623 * scripts/Dpkg/Source/Archive.pm: Use internerr instead of error from
625 (_add_entry, add_file, add_directory): Likewise.
626 * scripts/Dpkg/Source/CompressedFile.pm: Likewise.
627 (get_filename): Likewise.
628 * scripts/Dpkg/Source/Compressor.pm: Likewise.
629 (_sanity_check): Likewise.
630 * scripts/Dpkg/Source/Package.p (do_extract, do_build): Likewise.
631 * scripts/Dpkg/Source/Patch.pm (add_diff_file): Use error instead of
634 2008-12-08 Guillem Jover <guillem@debian.org>
636 * lib/dpkg.h (do_internerr): Reorder arguments. Support format
638 (internerr): Likewise.
639 * lib/ehandle.c (do_internerr): Likewise.
641 2008-12-08 Guillem Jover <guillem@debian.org>
643 * scripts/Dpkg/ErrorHandling.pm (@EXPORT): Remove 'failure'.
644 (failure): Remove function.
645 (syserr): Rename 'failure' string to 'error'.
646 (subprocerr): Use error instead of failure.
647 * scripts/Dpkg/Checksums.pm (extractchecksum): Likewise.
648 * scripts/Dpkg/Source/Functions.pm (erasedir): Likewise.
649 * scripts/changelog/debian.pl: Likewise.
650 * scripts/dpkg-gencontrol.pl: Likewise.
651 * scripts/dpkg-shlibdeps.pl: Likewise.
652 * scripts/dpkg-buildpackage.pl: Use syserr instead of failure.
654 2008-12-08 Guillem Jover <guillem@debian.org>
656 * scripts/Dpkg/ErrorHandling.pm (@EXPORT_OK): Move info, warning,
657 warnerror, error, errormsg, failure, syserr, internerr, subprocerr,
658 usageerr and syntaxerr to ...
659 (@EXPORT): ... here. Fix all users.
661 2008-12-08 Modestas Vainius <modestas@vainius.eu>
662 Raphaël Hertzog <hertzog@debian.org>
664 * scripts/Dpkg/Shlibs/Objdump.pm (parse): Split into add_object()
666 * scripts/Dpkg/Shlibs/SymbolFile.pm (merge_object_from_symfile):
667 New function to reintegrate symbols from previous symfiles.
668 * scripts/dpkg-shlibdeps.pl: Optimizes it by caching parsed
669 symbols files and objdump objects. This way neither of the
670 libraries or symbols files are parsed more than once.
672 2008-12-05 Guillem Jover <guillem@debian.org>
674 * lib/mlib.c: Remove <sys/wait.h> include.
675 (checksubprocerr, waitsubproc): Move to ...
676 * lib/subproc.c (checksubprocerr, waitsubproc): ... here.
677 Include <sys/types.h> and <sys/wait.h>.
679 2008-12-05 Guillem Jover <guillem@debian.org>
681 * lib/mlib.c (checksubprocerr): Split unrelated conditionals for n
684 2008-12-05 Guillem Jover <guillem@debian.org>
686 * lib/mlib.c (checksubprocerr): Return an explicit 0 instead of n.
688 2008-12-05 Guillem Jover <guillem@debian.org>
690 * lib/ehandle.c (warning): Print the current program name and a
692 * lib/mlib.c (checksubprocerr): Use warning() instead of a print
694 * src/archives.c (try_deconfigure_can): Likewise.
695 (check_breaks): Likewise.
696 (check_conflict): Likewise.
697 (wanttoinstall): Likewise.
698 * src/configure.c (deferred_configure): Likewise.
699 (conffderef): Likewise.
701 * src/errors.c (forcibleerr): Likewise.
702 * src/filesdb.c (ensure_packagefiles_available): Likewise.
703 * src/help.c (maintainer_script_alternative): Likewise.
704 * src/processarc.c (process_archive): Likewise.
705 * src/remove.c (deferred_remove): Likewise.
706 (removal_bulk_remove_leftover_dirs): Likewise.
707 * dpkg-deb/build.c (do_build): Likewise.
709 2008-12-05 Guillem Jover <guillem@debian.org>
711 * lib/ehandle.c (warning): Do not implicitly print the errno string.
712 * lib/myopt.c (myfileopt): Print the errno string in the warning.
714 2008-12-05 Guillem Jover <guillem@debian.org>
716 * lib/dpkg.h (warningf): Rename to ...
717 (warning): ... this. Fix all callers.
719 2008-11-19 Raphaël Hertzog <hertzog@debian.org>
721 * scripts/Dpkg/Source/Functions.pm (fixperms): Fix chmod call to
722 also work when POSIXLY_CORRECT is set.
724 2008-11-11 Guillem Jover <guillem@debian.org>
726 * scripts/dpkg-architecture.pl: Use new style functions calls.
727 * scripts/dpkg-distaddfile.pl: Likewise.
728 * scripts/dpkg-divert.pl: Likewise.
729 * scripts/dpkg-genchanges.pl: Likewise.
730 * scripts/dpkg-gencontrol.pl: Likewise.
731 * scripts/dpkg-gensymbols.pl: Likewise.
732 * scripts/dpkg-scanpackages.pl: Likewise.
733 * scripts/dpkg-statoverride.pl: Likewise.
734 * scripts/update-alternatives.pl: Likewise.
736 2008-11-08 Raphaël Hertzog <hertzog@debian.org>
738 * scripts/Dpkg/Shlibs/Objdump.pm (_parse): Support RUNPATH exactly
739 like RPATH but taking precedence over it.
741 2008-10-22 Guillem Jover <guillem@debian.org>
743 * lib/ehandle.c (error_unwind): Remove unused cleanupentry code.
745 2008-10-15 Guillem Jover <guillem@debian.org>
747 * lib/dbmodify.c (modstatdb_shutdown): Use importanttmpfile on unlink
748 instead of constructing the file name again.
750 2008-10-15 Guillem Jover <guillem@debian.org>
752 * src/Makefile.am (dpkg_query_SOURCES): Remove 'errors.c'.
753 * src/main.h (nerrs): Remove declaration.
754 * src/errors.c (nerrs): Change from extern to static.
755 * src/query.c (failures): New variable.
756 (errabort): Remove variable.
757 (listpackages): Use failures instead of nerrs.
758 (searchfiles): Likewise.
759 (showpackages): Likewise.
760 (enqperpackage): Likewise. Do not define nor initialize failures.
761 (main): Use failures variable instead of reportbroken_retexitstatus.
763 2008-09-14 Guillem Jover <guillem@debian.org>
765 * libcompat/scandir.c (scandir): Handle case when filter and cmp
766 function arguments are NULL.
768 2008-09-14 Guillem Jover <guillem@debian.org>
770 * libcompat/compat.h (scandir): Rename arguments from select to
771 filter and compar to cmp.
772 * libcompat/scandir.c (scandir): Likewise.
774 2008-09-14 Guillem Jover <guillem@debian.org>
776 * libcompat/compat.h (alphasort): Change argument types to match
777 modern system ones (the current ones were missing one indirection
779 * libcompat/alphasort.c (alphasort): Likewise. Properly dereference
781 * libcompat/scandir.c (scandir_comparfn): Remove static function
783 (scandir_compar): Remove function.
784 (scandir): Pass compar function directly to qsort.
786 2008-09-14 Guillem Jover <guillem@debian.org>
788 * libcompat/strerror.c (strerror): Change string for unknown value.
789 * libcompat/strsignal.c (strsignal): Likewise.
791 2008-09-14 Guillem Jover <guillem@debian.org>
793 * libcompat/strsignal.c (strsignal): Do not return a string for
796 2008-09-14 Guillem Jover <guillem@debian.org>
798 * libcompat/strsignal.c (sys_siglist): Insert a NULL entry at the
801 2008-09-14 Guillem Jover <guillem@debian.org>
803 * libcompat/strsignal.c (sys_siglist): Remove array size from
804 declaration. Remove unknown signal names.
805 (strsignal): Use sizeof to compute the array size instead of NSIG.
807 2008-09-14 Guillem Jover <guillem@debian.org>
809 * libcompat/vsnprintf.c (vsnprintf): Use SEEK_SET instead of a 0
812 2008-09-14 Guillem Jover <guillem@debian.org>
814 * libcompat/vsnprintf.c (vsnprintf): Change size and nr types from
815 unsigled long to size_t. Always return the amount that would be
816 written regardless of any truncation. Do not read one byte less from
819 2008-09-14 Guillem Jover <guillem@debian.org>
821 * libcompat/vsnprintf.c (vsnprintf): Use the return value from
822 vfprintf as the formatted string size instead of using fstat to get
825 2008-09-14 Guillem Jover <guillem@debian.org>
827 * libcompat/vsnprintf.c (vsnprintf): Check for negative return error
828 values instead of just EOF.
830 2008-09-14 Guillem Jover <guillem@debian.org>
832 * libcompat/snprintf.c (snprintf): Use vsnprintf instead of vsprintf.
834 2008-09-14 Guillem Jover <guillem@debian.org>
836 * libcompat/vsnprintf.c (vsnprintf): Use '\0' instead of NULL to
837 terminate the string.
839 2008-09-14 Guillem Jover <guillem@debian.org>
841 * libcompat/compat.h (unsetenv): Change return type from void to int.
842 * libcompat/unsetenv.c (unsetenv): Likewise. Return -1 on error, or
843 pass through the status code from putenv.
845 2008-09-14 Guillem Jover <guillem@debian.org>
847 * dselect/methkeys.cc: Remove unused headers <stdio.h>, <string.h>,
848 <assert.h> and <dpkg.h>.
849 * dselect/pkgkeys.cc: Likewise.
850 * dselect/basetop.cc: Likewise. Remove unused header <ctype.h>.
851 * dselect/curkeys.cc: Remove unused header <dpkg.h>.
852 * dselect/helpmsgs.h: Likewise.
853 * dselect/pkgcmds.cc: Likewise.
854 * dselect/pkgdisplay.cc: Likewise.
855 * dselect/pkginfo.cc: Likewise.
856 * lib/compression.c: Likewise.
857 * lib/dpkg-db.h: Remove unused header <string.h>. Include
859 * lib/md5.c: Remove unused header <netinet/in.h>.
861 2008-09-14 Guillem Jover <guillem@debian.org>
863 * src/main.c (commandfd): Remove left over debug printf.
865 2008-09-14 Guillem Jover <guillem@debian.org>
867 * lib/dpkg.h (IMPORTANTFMT): Remove out of sync comment.
869 2008-09-14 Guillem Jover <guillem@debian.org>
871 * lib/dpkg.h (standard_startup): Do not take prog, loadcfg and
872 cmdinfos as arguments, and do not call loadcfgfile. Fix all callers.
873 * src/main.c: Call loadcfgfile directly.
875 2008-09-14 Guillem Jover <guillem@debian.org>
877 * lib/dpkg.h: Do not include <myopt.h>.
878 (standard_startup): Do not take argc and argv as arguments, and do
879 not call myopt. Fix all callers.
880 * lib/myopt-util.c: Include <myopt.h>.
881 * dpkg-deb/build.c: Likewise.
882 * dpkg-split/info.c: Likewise.
883 * dpkg-split/join.c: Likewise.
884 * dpkg-split/queue.c: Likewise.
885 * src/select.c: Likewise.
886 * dpkg-deb/main.c (main): Call myopt directly.
887 * dpkg-split/main.c: Likewise.
888 * src/main.c: Likewise.
889 * src/query.c: Likewise.
890 * src/trigcmd.c: Likewise.
892 2008-09-14 Guillem Jover <guillem@debian.org>
894 * lib/dpkg.h (standard_shutdown): Remove unused freemem argument,
895 and do not call nffreeall. Fix all callers.
897 2008-09-14 Guillem Jover <guillem@debian.org>
899 * lib/dpkg-db.h: Move <stdlib.h> inclusion to ...
900 * dselect/pkglist.cc: ... here.
901 * lib/database.c: Likewise.
902 * lib/dump.c: Likewise.
903 * lib/parse.c: Likewise.
904 * lib/parsehelp.c: Likewise.
905 * lib/triglib.c: Likewise.
906 * src/filesdb.c: Likewise.
907 * src/help.c: Likewise.
908 * src/select.c: Likewise.
909 * src/trigproc.c: Likewise.
911 2008-09-14 Guillem Jover <guillem@debian.org>
913 * configure.ac (AC_CHECK_FUNCS): Move 'vsnprintf', 'snprintf',
914 'strerror', 'strsignal', 'scandir', 'alphasort' and 'unsetenv' to ...
915 (DPKG_CHECK_COMPAT_FUNCS): ... here.
916 * lib/Makefile.am (libdpkg_a_SOURCES): Remove 'compat.c'.
917 * lib/dpkg.h (strerror, strsignal, scandir, alphasort, unsetenv)
918 (offsetof, strtoul, va_copy, WCOREDUMP): Move declarations to ...
919 * libcompat/compat.h: ... here.
920 * libcompat/Makefile.am (libcompat_a_SOURCES): Add 'strerror.c',
921 'strsignal.c', 'snprintf.c', 'vsnprintf.c', 'alphasort.c',
922 'scandir.c' and 'unsetenv.c'.
923 * po/POTFILES.in: Remove 'lib/compat.c'.
924 * lib/compat.c: Split into ...
925 * libcompat/alphasort.c: ... here. New file.
926 * libcompat/scandir.c: Likewise.
927 * libcompat/snprintf.c: Likewise.
928 * libcompat/strerror.c: Likewise.
929 * libcompat/strsignal.c: Likewise.
930 * libcompat/unsetenv.c: Likewise.
931 * libcompat/vsnprintf.c: Likewise.
933 2008-09-14 Guillem Jover <guillem@debian.org>
935 * lib/compat.c: Do not include <dpkg.h> anymore.
936 (vsnprintf): Return negative on error instead of ohshite.
938 2008-09-14 Guillem Jover <guillem@debian.org>
940 * libcompat/compat.h: New file.
941 * dpkg-deb/build.c: Include <compat.h>.
942 * dpkg-deb/extract.c: Likewise.
943 * dpkg-deb/info.c: Likewise.
944 * dpkg-deb/main.c: Likewise.
945 * dpkg-split/info.c: Likewise.
946 * dpkg-split/join.c: Likewise.
947 * dpkg-split/main.c: Likewise.
948 * dpkg-split/queue.c: Likewise.
949 * dpkg-split/split.c: Likewise.
950 * dselect/basecmds.cc: Likewise.
951 * dselect/baselist.cc: Likewise.
952 * dselect/basetop.cc: Likewise.
953 * dselect/bindings.cc: Likewise.
954 * dselect/curkeys.cc: Likewise.
955 * dselect/helpmsgs.cc: Likewise.
956 * dselect/main.cc: Likewise.
957 * dselect/methkeys.cc: Likewise.
958 * dselect/methlist.cc: Likewise.
959 * dselect/method.cc: Likewise.
960 * dselect/methparse.cc: Likewise.
961 * dselect/pkgcmds.cc: Likewise.
962 * dselect/pkgdepcon.cc: Likewise.
963 * dselect/pkgdisplay.cc: Likewise.
964 * dselect/pkginfo.cc: Likewise.
965 * dselect/pkgkeys.cc: Likewise.
966 * dselect/pkglist.cc: Likewise.
967 * dselect/pkgsublist.cc: Likewise.
968 * dselect/pkgtop.cc: Likewise.
969 * lib/cleanup.c: Likewise.
970 * lib/compression.c: Likewise.
971 * lib/database.c: Likewise.
972 * lib/dbmodify.c: Likewise.
973 * lib/dump.c: Likewise.
974 * lib/ehandle.c: Likewise.
975 * lib/lock.c: Likewise.
976 * lib/log.c: Likewise.
977 * lib/md5.c: Likewise.
978 * lib/mlib.c: Likewise.
979 * lib/myopt-util.c: Likewise.
980 * lib/myopt.c: Likewise.
981 * lib/nfmalloc.c: Likewise.
982 * lib/parse.c: Likewise.
983 * lib/parsehelp.c: Likewise.
984 * lib/path.c: Likewise.
985 * lib/showpkg.c: Likewise.
986 * lib/string.c: Likewise.
987 * lib/subproc.c: Likewise.
988 * lib/triglib.c: Likewise.
989 * lib/utils.c: Likewise.
990 * lib/varbuf.c: Likewise.
991 * lib/vercmp.c: Likewise.
992 * src/archives.c: Likewise.
993 * src/cleanup.c: Likewise.
994 * src/configure.c: Likewise.
995 * src/depcon.c: Likewise.
996 * src/enquiry.c: Likewise.
997 * src/errors.c: Likewise.
998 * src/filesdb.c: Likewise.
999 * src/help.c: Likewise.
1000 * src/main.c: Likewise.
1001 * src/packages.c: Likewise.
1002 * src/pkg-list.c: Likewise.
1003 * src/pkg-show.c: Likewise.
1004 * src/processarc.c: Likewise.
1005 * src/query.c: Likewise.
1006 * src/remove.c: Likewise.
1007 * src/select.c: Likewise.
1008 * src/trigcmd.c: Likewise.
1009 * src/trigproc.c: Likewise.
1010 * src/update.c: Likewise.
1011 * lib/fields.c: Likewise. Do not include "strnlen.h", now implicitly
1012 included by <compat.h>.
1013 * lib/tarfn.c: Likewise.
1015 2008-09-14 Guillem Jover <guillem@debian.org>
1017 * lib/dpkg.h: Move <locale.h> inclusion and standard_startup locale
1019 * dpkg-deb/main.c (main): ... here.
1020 * dpkg-split/main.c (main): Likewise.
1021 * dselect/main.cc (main): Likewise.
1022 * src/main.c (main): Likewise.
1023 * src/query.c (main): Likewise.
1024 * src/trigcmd.c (main): Likewise.
1026 2008-09-14 Guillem Jover <guillem@debian.org>
1028 * lib/Makefile.am (libdpkg_a_SOURCES): Add 'dpkg-i18n.h'.
1029 * lib/dpkg.h: Move <gettext.h> inclusion and ...
1030 (_, N_): ... macros to ...
1031 * lib/dpkg-i18n.h: ... here. New file.
1032 * dpkg-deb/build.c: Include <dpkg-i18n.h>.
1033 * dpkg-deb/extract.c: Likewise.
1034 * dpkg-deb/info.c: Likewise.
1035 * dpkg-deb/main.c: Likewise.
1036 * dpkg-split/info.c: Likewise.
1037 * dpkg-split/join.c: Likewise.
1038 * dpkg-split/main.c: Likewise.
1039 * dpkg-split/queue.c: Likewise.
1040 * dpkg-split/split.c: Likewise.
1041 * dselect/basecmds.cc: Likewise.
1042 * dselect/baselist.cc: Likewise.
1043 * dselect/bindings.cc: Likewise.
1044 * dselect/helpmsgs.cc: Likewise.
1045 * dselect/main.cc: Likewise.
1046 * dselect/methlist.cc: Likewise.
1047 * dselect/method.cc: Likewise.
1048 * dselect/methparse.cc: Likewise.
1049 * dselect/pkgdisplay.cc: Likewise.
1050 * dselect/pkginfo.cc: Likewise.
1051 * dselect/pkglist.cc: Likewise.
1052 * dselect/pkgsublist.cc: Likewise.
1053 * dselect/pkgtop.cc: Likewise.
1054 * lib/compression.c: Likewise.
1055 * lib/database.c: Likewise.
1056 * lib/dbmodify.c: Likewise.
1057 * lib/dump.c: Likewise.
1058 * lib/ehandle.c: Likewise.
1059 * lib/fields.c: Likewise.
1060 * lib/lock.c: Likewise.
1061 * lib/log.c: Likewise.
1062 * lib/mlib.c: Likewise.
1063 * lib/myopt-util.c: Likewise.
1064 * lib/myopt.c: Likewise.
1065 * lib/nfmalloc.c: Likewise.
1066 * lib/parse.c: Likewise.
1067 * lib/parsehelp.c: Likewise.
1068 * lib/showpkg.c: Likewise.
1069 * lib/subproc.c: Likewise.
1070 * lib/trigdeferred.l: Likewise.
1071 * lib/triglib.c: Likewise.
1072 * lib/utils.c: Likewise.
1073 * src/archives.c: Likewise.
1074 * src/cleanup.c: Likewise.
1075 * src/configure.c: Likewise.
1076 * src/depcon.c: Likewise.
1077 * src/enquiry.c: Likewise.
1078 * src/errors.c: Likewise.
1079 * src/filesdb.c: Likewise.
1080 * src/help.c: Likewise.
1081 * src/main.c: Likewise.
1082 * src/packages.c: Likewise.
1083 * src/pkg-show.c: Likewise.
1084 * src/processarc.c: Likewise.
1085 * src/query.c: Likewise.
1086 * src/remove.c: Likewise.
1087 * src/select.c: Likewise.
1088 * src/trigcmd.c: Likewise.
1089 * src/trigproc.c: Likewise.
1090 * src/update.c: Likewise
1092 2008-09-14 Guillem Jover <guillem@debian.org>
1094 * dselect/baselist.cc (baselist::startdisplay): Unmark debug message
1096 * dselect/methlist.cc (methodlist::display): Likewise.
1097 * dselect/pkgdepcon.cc (packagelist::resolvedepcon): Likewise.
1098 * dselect/pkglist.cc (packagelist::addheading): Likewise.
1099 * dselect/pkgsublist.cc (packagelist::add): Likewise.
1101 2009-02-03 Guillem Jover <guillem@debian.org>
1103 * configure.ac: Release 1.14.25.
1105 2009-02-02 Guillem Jover <guillem@debian.org>
1107 * src/archives.c (tarobject): Do not call ensure_pathname_nonexisting
1108 for .dpkg-tmp and .dpkg-new if we are going to return due to already
1109 existing directory or a file to be skept.
1111 2008-02-02 Raphaël Hertzog <hertzog@debian.org>
1113 * dpkg-deb/build.c: Ensure that data.tar and control.tar
1114 archives created inside a .deb use the GNU format that is compatible
1115 with dpkg itself. And remove TAR_OPTIONS from environment to
1116 avoid unexpected user customizations of the resulting archives.
1118 2008-12-29 Guillem Jover <guillem@debian.org>
1120 * configure.ac: Bump version to 1.14.25~.
1122 2008-12-29 Guillem Jover <guillem@debian.org>
1124 * configure.ac: Release 1.14.24.
1126 2008-12-20 Guillem Jover <guillem@debian.org>
1128 * src/archives.c (tarobject): Move a 'continue' inside a conditional
1129 checking if the conffile to take over was obsolete on the other
1130 package by adding missing bracese.
1132 2008-12-01 Raphaël Hertzog <hertzog@debian.org>
1134 * scripts/Dpkg/Source/Archive.pm (extract): Do not create the temp
1135 directory in the current directory but in the parent directory of
1136 the target directory. Otherwise the code would fail when called
1137 from a non-writable dir and rename could fail due to filesystem
1138 boundaries beetwen the current dir and the target one.
1140 2008-12-01 Modestas Vainius <modestas@vainius.eu>
1142 * scripts/dpkg-shlibdeps.pl: Don't merge all dependency templates
1143 into the generated dependency when Build-Depends-Package is
1144 used in the symbols file. Instead simply modify the minimal
1145 version on any pre-existing dependency.
1147 2008-11-19 Raphaël Hertzog <hertzog@debian.org>
1149 * scripts/Dpkg/Shlibs/Objdump.pm (parse_dynamic_symbol): Fix the
1150 regular expression to not require two space between alignment and
1152 * scripts/t/200_Dpkg_Shlibs.t,
1153 scripts/t/200_Dpkg_Shlibs/objdump.ls: Add a non-regression test
1154 corresponding to the above case.
1156 2008-11-18 Guillem Jover <guillem@debian.org>
1158 * configure.ac: Bump version to 1.14.24~.
1160 2008-11-18 Guillem Jover <guillem@debian.org>
1162 * configure.ac: Release 1.14.23.
1164 2008-11-14 Guillem Jover <guillem@debian.org>
1166 * lib/ehandle.c (run_error_handler): In case of onerr_abort print an
1167 error message and exit, otherwise longjmp.
1169 2008-11-14 Guillem Jover <guillem@debian.org>
1171 * src/main.h (abort_processing): New variable declaration.
1172 * src/errors.c (abort_processing): New variable definition.
1173 * src/archives.c (print_error_perpackage): Use abort_processing
1174 instead of onerr_abort for non fatal errors.
1175 (reportbroken_retexitstatus): Likewise. Do not check onerr_abort
1176 for the exit value as it should not have reached this function.
1177 * src/packages.c (process_queue): Likewise. Return on entering if
1178 it should abort processing.
1180 2008-11-14 Guillem Jover <guillem@debian.org>
1182 * lib/ehandle.c (run_error_handler): New function.
1183 (push_error_handler): Use run_error_handler instead of directly
1186 (ohshitvb): Likewise.
1187 (ohshitv): Likewise.
1188 (ohshite): Likewise.
1190 2008-11-07 Raphaël Hertzog <hertzog@debian.org>
1192 * scripts/Dpkg/Version.pm: Synchronize code with version used by
1193 debbugs (add some bugfixes).
1194 * scripts/t/900_Dpkg_Version.t: Add non-regression tests for
1195 version comparison code.
1196 * scripts/Makefile.am: Add new file in the dist tarball.
1198 2008-10-20 Raphaël Hertzog <hertzog@debian.org>
1200 * scripts/Dpkg/Shlibs/SymbolFile.pm (load): Let the recursively
1201 nested calls to load() modify the name of the current object so
1202 that the header can be set in an included file (like it's already
1205 2008-09-26 Thiemo Seufer <ths@debian.org>
1207 * scripts/Dpkg/Shlibs/SymbolFile.pm: add "__gnu_local_gp" symbol
1208 to the blacklist (mips/mipsel specific symbol that appeared with
1211 2008-09-05 Raphaël Hertzog <hertzog@debian.org>
1213 * configure.ac: Bump version to 1.14.23~.
1215 2008-09-05 Raphaël Hertzog <hertzog@debian.org>
1217 * configure.ac: Release 1.14.22.
1219 2008-08-29 Raphaël Hertzog <hertzog@debian.org>
1221 * scripts/dpkg-gensymbols.pl: It was already skipping symlinks
1222 within the package build tree. Now it also skips real
1223 directories accessed through a symlink contained in the package
1224 build tree. Package like libc6-386 had symlinks usr/lib32
1225 pointing to some directories outside of the build tree and
1226 the LD_LIBRARY_PATH set by fakeroot led contained
1227 /usr/lib32/libfakeroot which made dpkg-gensymbols scan this
1228 directory and add libfakeroot to the libc6-386 symbols file!
1230 2008-08-29 Raphaël Hertzog <hertzog@debian.org>
1232 * scripts/Dpkg/Source/Package/V3/quilt.pm: run_quilt() can be run
1233 when no quilt series file exist yet. In that case we have to
1234 provide the name of the series file that we want to create (as the
1235 quilt command might create it). Up to now
1236 File::Spec->rel2abs(undef) returned the name of the current
1237 directory and we improperly used that as value of QUILT_SERIES.
1238 * scripts/Dpkg/Source/Package/V2.pm (do_build): Change permissions
1239 of the automatically generated patch which is initially created
1240 0600 with tempfile().
1242 2008-08-26 Guillem Jover <guillem@debian.org>
1244 * configure.ac: Bump version to 1.14.22~.
1246 2008-08-26 Guillem Jover <guillem@debian.org>
1248 * lib/gettext.h: Move to ..
1249 * libcompat/gettext.h: ... here.
1250 * lib/Makefile.am (libdpkg_a_SOURCES): Remove 'gettext.h'.
1251 * libcompat/Makefile.am (libcompat_a_SOURCES): Add 'gettext.h'
1253 2008-08-24 Guillem Jover <guillem@debian.org>
1255 * lib/dpkg-priv.h [HAVE_STDDEF_H]: Conditionalize <stddef.h> inclusion.
1257 2008-08-24 Guillem Jover <guillem@debian.org>
1259 * lib/dpkg-def.h (DPKG_BEGIN_DECLS, DPKG_END_DECLS): New macros.
1260 * lib/dpkg.h: Surround declarations with DPKG_BEGIN_DECLS and
1262 * lib/myopt.h: Likewise.
1263 * lib/dpkg-db.h: Likewise. Include <dpkg-def.h>.
1264 * lib/dpkg-priv.h: Include <dpkg-def.h>. Replace extern "C" context
1265 with DPKG_BEGIN_DECLS and DPKG_END_DECLS.
1266 * dselect/basecmds.cc: Remove surrounding extern "C" context from
1268 * dselect/baselist.cc: Likewise.
1269 * dselect/basetop.cc: Likewise.
1270 * dselect/bindings.cc: Likewise.
1271 * dselect/curkeys.cc: Likewise.
1272 * dselect/helpmsgs.h: Likewise.
1273 * dselect/main.cc: Likewise.
1274 * dselect/methkeys.cc: Likewise.
1275 * dselect/methlist.cc: Likewise.
1276 * dselect/method.cc: Likewise.
1277 * dselect/methparse.cc: Likewise.
1278 * dselect/pkgcmds.cc: Likewise.
1279 * dselect/pkgdepcon.cc: Likewise.
1280 * dselect/pkgdisplay.cc: Likewise.
1281 * dselect/pkginfo.cc: Likewise.
1282 * dselect/pkgkeys.cc: Likewise.
1283 * dselect/pkglist.cc: Likewise.
1284 * dselect/pkgsublist.cc: Likewise.
1285 * dselect/pkgtop.cc: Likewise.
1287 2008-08-24 Guillem Jover <guillem@debian.org>
1289 * lib/dpkg-def.h: Do not include <config.h>.
1290 * dselect/helpmsgs.h: Likewise.
1291 * dselect/helpmsgs.cc: Include <config.h>.
1292 * lib/cleanup.c: Likewise.
1293 * lib/md5.c: Include <config.h> instead of "config.h".
1294 * lib/mlib.c: Likewise.
1295 * utils/start-stop-daemon.c: Likewise.
1297 2008-08-22 Raphaël Hertzog <hertzog@debian.org>
1299 * man/dpkg-source.1: Clarify two points concerning the behaviour
1300 of the new 3.0 (quilt) source format.
1302 2008-08-18 Guillem Jover <guillem@debian.org>
1304 * lib/dpkg.h (ARCHBINFMT): Remove unused macro.
1306 2008-08-18 Guillem Jover <guillem@debian.org>
1308 * src/query.c: Remove left-over description from header comment.
1309 * src/remove.c: Remove partial change log from header comment.
1311 2008-08-18 Guillem Jover <guillem@debian.org>
1313 * lib/dpkg.h (CMETHOPTFILE, METHLOCKFILE, METHODSDIR)
1314 (IMETHODMAXLEN, IOPTIONMAXLEN, METHODOPTIONSFILE)
1315 (METHODSETUPSCRIPT, METHODUPDATESCRIPT, METHODINSTALLSCRIPT)
1316 (OPTIONSDESCPFX, OPTIONINDEXMAXLEN): Move macros ...
1317 * dselect/method.h: ... here.
1318 * dselect/methparse.cc: Include "method.h".
1320 2008-08-18 Guillem Jover <guillem@debian.org>
1322 * man/dpkg-trigger.1: Mark program names in bold.
1324 2008-08-18 Guillem Jover <guillem@debian.org>
1326 * man/cleanup-info.8: Use a troff special character for the copyright
1328 * man/deb-substvars.5: Likewise.
1329 * man/deb-version.5: Likewise.
1330 * man/dpkg-buildpackage.1: Likewise.
1331 * man/dpkg-checkbuilddeps.1: Likewise.
1332 * man/dpkg-deb.1: Likewise.
1333 * man/dpkg-distaddfile.1: Likewise.
1334 * man/dpkg-divert.8: Likewise.
1335 * man/dpkg-genchanges.1: Likewise.
1336 * man/dpkg-gencontrol.1: Likewise.
1337 * man/dpkg-gensymbols.1: Likewise.
1338 * man/dpkg-name.1: Likewise.
1339 * man/dpkg-parsechangelog.1: Likewise.
1340 * man/dpkg-query.1: Likewise.
1341 * man/dpkg-shlibdeps.1: Likewise.
1342 * man/dpkg-source.1: Likewise.
1343 * man/dpkg-split.1: Likewise.
1344 * man/dpkg-statoverride.8: Likewise.
1345 * man/install-info.8: Likewise.
1346 * man/update-alternatives.8: Likewise.
1348 2008-08-15 Guillem Jover <guillem@debian.org>
1350 * man/dpkg-deb.1 (BUGS): Improve comment about missing authentication
1351 and checksum support in .deb files.
1353 2008-08-05 Guillem Jover <guillem@debian.org>
1355 * lib/ehandle.c: Include <dpkg-priv.h>.
1356 (push_cleanup): Use sizeof_array instead of ad-hoc calculation.
1358 2008-08-05 Guillem Jover <guillem@debian.org>
1360 * scripts/dpkg-scanpackages.pl: Use usageerr instead of embedded code.
1362 2008-08-05 Guillem Jover <guillem@debian.org>
1364 * scripts/dpkg-distaddfile.pl: Use _g() instead of wrong and typoed
1367 2008-08-03 Guillem Jover <guillem@debian.org>
1369 * src/processarc.c (process_archive): Use blankpackageperfile instead
1370 of manually blanking the members.
1371 * src/remove.c (removal_bulk): Likewise.
1373 2008-08-03 Guillem Jover <guillem@debian.org>
1375 * utils/start-stop-daemon.c (pid_is_running) [!OSHURD]: Reimplement
1376 using kill instead of less-portable /proc.
1378 2008-08-03 Guillem Jover <guillem@debian.org>
1380 * utils/start-stop-daemon.c (check) [HAVE_KVM_H]: Call pid_is_exec.
1382 2008-08-03 Guillem Jover <guillem@debian.org>
1384 * src/pkg-show.c (limiteddescription): Assign directly to l_r instead
1385 of a temporary variable.
1387 2008-08-03 Guillem Jover <guillem@debian.org>
1389 * utils/start-stop-daemon.c: Move the different implementations
1390 of the same function for different operating systems together.
1392 2008-08-03 Guillem Jover <guillem@debian.org>
1394 * utils/start-stop-daemon.c (MIN_POLL_INTERVAL): Use proper UTF-8 mu
1395 symbol for the unit in the comment.
1397 2008-07-26 Guillem Jover <guillem@debian.org>
1399 * src/Makefile.am (dpkg_SOURCES): Add 'pkg-show.c'.
1400 (dpkg_query_SOURCES): Likewise.
1401 * src/main.h (limiteddescription): New function prototype.
1402 * src/enquiry.c (limiteddescription): Move function to ...
1403 * src/pkg-show.c: ... here. New file.
1404 * src/query.c (limiteddescription): Remove duplicate function.
1406 2008-07-26 Guillem Jover <guillem@debian.org>
1408 * lib/showpkg.c (parseformat): Do not set cur->type to field, as
1409 that's set in parsefield.
1411 2008-07-22 Guillem Jover <guillem@debian.org>
1413 * src/Makefile.am (dpkg_SOURCES): Add 'pkg-list.c'.
1414 (dpkg_query_SOURCES): Likewise.
1415 * src/enquiry.c (pkglistqsortcmp): Move function to ...
1416 * src/pkg-list.c: ... here. New file.
1417 * src/query.c (pkglistqsortcmp): Remove duplicate function.
1419 2008-07-22 Guillem Jover <guillem@debian.org>
1421 * src/main.h (struct pkg_deconf_list): Move declaration ...
1422 * src/archives.h: ... here.
1424 2008-07-22 Guillem Jover <guillem@debian.org>
1426 * src/main.h (struct packageinlist): Rename to ...
1427 (struct pkg_deconf_list): ... this. Fix all users.
1429 2008-07-22 Guillem Jover <guillem@debian.org>
1431 * src/main.h (struct packageinlist): Change 'void *xinfo' member to
1432 'struct pkginfo *pkg_removal'. Fix all users.
1434 2008-07-22 Guillem Jover <guillem@debian.org>
1436 * src/main.h (ignoredependss): Change type to 'struct pkginqueue'.
1437 * src/main.c (ignoredependss): Likewise.
1438 (ignoredepends): Change type for variable 'ni' to 'struct pkginqueue'.
1439 * src/help.c (ignore_depends): Likewise.
1441 2008-07-22 Guillem Jover <guillem@debian.org>
1443 * src/query.c (ignoredependss): Remove unused variable.
1445 2008-07-10 Raphaël Hertzog <hertzog@debian.org>
1447 * man/dpkg-buildpackage.1: Give a detailed explanation of what the
1448 command does. Drop any duplicate information contained in the
1449 dpkg-genchanges/dpkg-source manual pages.
1450 * man/dpkg-genchanges.1: Document the -A option (was missing).
1452 2008-07-10 Guillem Jover <guillem@debian.org>
1454 * lib/dpkg-priv.h (min, max): New macros.
1455 * lib/tarfn.c: Include <dpkg-priv.h>.
1456 * src/configure.c: Likewise.
1457 * src/enquiry.c: Likewise.
1459 * src/configure.c (conffderef): Use max instead of hardcoded test.
1460 * lib/tarfn.c (TarExtractor): Use min instead of hardcoded test.
1461 * lib/fields.c (conffvalue_lastword): Likewise.
1462 * src/enquiry.c (limiteddescription): Likewise.
1463 * src/main.c (setforce): Likewise.
1464 * src/query.c (limiteddescription): Likewise.
1466 2008-07-10 Guillem Jover <guillem@debian.org>,
1467 Timothy G Abbott <tabbott@mega-man.mit.edu>
1469 * src/configure.c (deferred_configure): Call namenodetouse to handle
1470 diverted conffiles. Use trig_file_activate on usenode, instead of
1471 trig_file_activate_byname, to activate the correct file trigger for
1472 the diverted conffile.
1474 2008-07-06 Guillem Jover <guillem@debian.org>
1476 * src/main.h: Remove comment about side effect in namenodetouse.
1477 * src/help.c (namenodetouse): Move call to trig_file_activate to ...
1478 * src/archives.c (tarobject): ... here.
1479 * src/processarc.c (process_archive): Likewise.
1480 * src/remove.c (removal_bulk_remove_files): Likewise.
1481 (removal_bulk_remove_leftover_dirs): Likewise.
1483 2008-07-06 Michel Lespinasse <walken@zoy.org>
1485 * dselect/baselist.cc (baselist::startdisplay): Create the
1486 pad with the list of the size of the display and not of the
1487 size of the list content itself.
1488 * dselect/basetop.cc (baselist::refreshlist): The part to
1489 display is always at the top of the pad.
1490 (baselist::redrawitemsrange): Simplified to redraw the real
1492 * dselect/pkglist.cc (packagelist::sortmakeheads): No need to reallocate
1493 the pad when the list changes.
1494 * dselect/pkgtop.cc (packagelist::redraw1itemsel): The line
1495 of the item in the infopad doesn't correspond to its index in
1496 the list any more. Adjust accordingly.
1498 2008-07-05 Guillem Jover <guillem@debian.org>
1500 * src/archives.c (filesavespackage): Do not mark debug message for
1503 2008-07-04 Raphaël Hertzog <hertzog@debian.org>
1504 Bruce Sass <bmsass@shaw.ca>
1506 * dselect/pkginfo.cc (packagelist::itd_description), dselect/pkgtop.cc
1507 (packagelist::redraw1itemsel): Use description of installed
1508 package as a fallback if the package is not more listed in the
1511 2008-07-02 Guillem Jover <guillem@debian.org>
1513 * lib/fields.c (convert_string): Remove unneeded variable assignments.
1514 Get rid this way of an int variable.
1516 2008-07-02 Guillem Jover <guillem@debian.org>
1518 * lib/fields.c (convert_string): Change nvip to be const and use a
1519 proper assignment instead of a sneaky cast through memcpy. Remove
1520 unneeded length caching as all current namevalue arrays have it
1523 2008-07-02 Guillem Jover <guillem@debian.org>
1525 * lib/fields.c (convert_string): Use a capped string length instead
1526 of using last namevalue length member when printing the disallowed
1529 2008-07-02 Guillem Jover <guillem@debian.org>
1531 * src/query.c (limiteddescription): Use NULL instead of 0.
1532 (list1package, searchfiles, enqperpackage, main): Likewise.
1533 (cipaction, ignoredependss, cmdinfos): Likewise.
1534 (ACTION, OBSOLETE): Likewise.
1535 * src/select.c (setselections): Likewise.
1536 * src/trigcmd.c (cmdinfos): Likewise.
1538 2008-07-02 Guillem Jover <guillem@debian.org>
1540 * src/remove.c (removal_bulk_remove_configfiles): Remove wrong comment
1541 not matching the code.
1543 2008-07-02 Guillem Jover <guillem@debian.org>
1545 * src/archives.c (tarfile_skip_one_forward): Make static.
1547 2008-07-02 Guillem Jover <guillem@debian.org>
1549 * lib/dpkg-priv.h: Include <stddef.h>.
1550 * lib/string.c: Include <config.h> and <dpkg-priv.h>.
1552 2008-07-02 Guillem Jover <guillem@debian.org>
1554 * dselect/Makefile.am (curkeys.h): Use '$(CPP)' instead of '$(CC) -E'.
1556 2008-07-01 Guillem Jover <guillem@debian.org>
1558 * src/depcon.c (findbreakcyclerecursive): Use the debug function
1559 instead of reimplementing its logic.
1560 * src/help.c (preexecscript): Likewise.
1562 2008-07-01 Egmont Koblinger <egmont@uhulinux.hu>
1564 * src/processarc.c (process_archive): Properly lstat the correct
1565 file on upgrade when using --root.
1567 2008-07-01 Guillem Jover <guillem@debian.org>
1569 * src/processarc.c (process_archive): Do not allocate a struct stat
1570 when lstat fails, instead assign a pointer to a static empty stat
1571 variable that will mark it as such.
1573 2008-06-30 Guillem Jover <guillem@debian.org>
1575 * lib/showpkg.c (parsefield): Remove unneeded 'const char *' cast.
1577 2008-06-30 Guillem Jover <guillem@debian.org>
1579 * lib/dpkg-db.h (struct arbitraryfield): Make all 'char *' members
1581 (struct filedetails): Likewise.
1582 (struct pkginfoperfile): Likewise.
1583 (struct trigpend): Likewise.
1585 * lib/parse.c (parsedb): Remove now unneeded 'const char **' casts.
1586 * src/processarc.c (process_archive): Change size variable before
1587 assigning the pointer.
1589 2008-06-30 Guillem Jover <guillem@debian.org>
1591 * dselect/baselist.cc (baselist::wordwrapinfo): Surround expression
1593 * dselect/pkgcmds.cc (packagelist::affectedmatches): Likewise.
1594 (packagelist::affectedrange): Switch a for with an empty body into a
1596 * dselect/basecmds.cc (baselist::displayhelp): Likewise.
1597 * dselect/bindings.cc (keybindings::bind, keybindings::find)
1598 (keybindings::operator(), keybindings::key2name)
1599 (keybindings::name2key): Likewise.
1600 * dselect/main.cc (urq_menu, main): Likewise.
1601 * dselect/methparse.cc (readmethods, getcurrentopt): Likewise.
1602 * dselect/pkgdepcon.cc (packagelist::resolvedepcon): Likewise.
1603 * dselect/pkgsublist.cc (packagelist::alreadydone): Likewise.
1605 2008-06-30 Guillem Jover <guillem@debian.org>
1607 * lib/trigdeferred.l: Define YY_NO_INPUT to make flex not include
1608 the unused input() in the resulting object.
1610 2008-06-29 Guillem Jover <guillem@debian.org>
1612 * lib/parsedump.h (parseerr, parsemustfield): Remove prototypes.
1613 (parse_error, parse_warn): New prototypes.
1614 (parse_must_have_field, parse_ensure_have_field): Likewise.
1615 * lib/parsehelp.c (parseerr): Split into ...
1616 (parse_error_msg, parse_error, parse_warn): ... these. New functions.
1618 (parsemustfield): Split into ...
1619 (parse_must_have_field, parse_ensure_have_field): ... there. New
1620 functions. Fix all callers.
1621 * lib/fields.c (convert_string): Remove now unused warning related
1622 arguments. Fix all callers.
1623 (conffvalue_lastword): Likewise.
1625 2008-06-29 Guillem Jover <guillem@debian.org>
1627 * lib/Makefile.am (libdpkg_a_SOURCES): Add 'string.c'.
1628 * lib/dpkg-priv.h (str_escape_fmt): New prototype.
1629 * lib/parsehelp.c: Include <dpkg-priv.h>.
1630 (parseerr): Refactor string format escaping to ,,,
1631 * lib/string.c (str_escape_fmt): ... here. New file.
1633 2008-06-28 Guillem Jover <guillem@debian.org>
1635 * lib/parsedump.h (parseerr, parsemustfield): Remove unused 'file'
1636 argument. Fix all callers.
1637 * lib/parsehelp.c (parseerr): Remove checks on 'file'.
1639 2008-06-28 Tollef Fog Heen <tfheen@err.no>
1641 * src/archives.c (tarobject): Refactor tarfile object skipping to ...
1642 (tarfile_skip_one_forward): ... here. New function.
1644 2008-06-28 Guillem Jover <guillem@debian.org>
1646 * lib/dpkg-db.h (skip_slash_dotslash): Move declaration ...
1647 * lib/dpkg-priv.h: ... here.
1648 * lib/parsehelp.c (skip_slash_dotslash): Move definition ...
1649 * lib/path.c: ... here.
1650 * lib/fields.c: Include <dpkg-priv.h>.
1651 * src/filesdb.c: Likewise.
1653 2008-06-28 Guillem Jover <guillem@debian.org>
1655 * lib/dpkg.h (onerr_abort): Move declaration to the ehandle.c section.
1656 * lib/mlib.c (onerr_abort): Move definition ...
1657 * lib/ehandle.c: ... here.
1659 2008-06-28 Guillem Jover <guillem@debian.org>
1661 * lib/mlib.c (checksubprocerr): Move the PROCNOERR check before
1662 the reporting, and exit directly instead in case of error.
1664 2008-06-28 Guillem Jover <guillem@debian.org>
1666 * lib/ehandle.c (badusage): Use ohshit instead of its own error
1669 2008-06-28 Guillem Jover <guillem@debian.org>
1671 * src/query.c (printforhelp): Remove trailing newlines.
1673 2008-06-27 Guillem Jover <guillem@debian.org>
1675 * dpkg-deb/build.c (do_build): Move string translation markers outside
1677 * src/help.c (ensure_pathname_nonexisting): Localize the 'failed'
1678 variable instead of expecting gettext to magically infer the formatted
1680 * src/processarc.c (process_archive): Likewise.
1682 2008-06-27 Raphaël Hertzog <hertzog@debian.org>
1684 * scripts/install-info.pl: Improve error message when the
1685 info file doesn't exist.
1687 2008-06-27 Raphaël Hertzog <hertzog@debian.org>
1689 * man/dpkg-query.1: Document the origin of the various fields and
1690 warn that they are not always available.
1692 2008-06-23 Raphaël Hertzog <hertzog@debian.org>
1694 * scripts/dpkg-source.pl: New option --require-valid-signature.
1695 * scripts/Dpkg/Source/Package.pm (check_signature): Updated to use
1696 Dpkg::IPC and to implement the checks related to
1697 --require-valid-signature.
1698 * man/dpkg-source.1: Document the new option.
1700 2008-06-23 Raphaël Hertzog <hertzog@debian.org>
1702 * scripts/Dpkg/IPC.pm (fork_and_exec): New nocheck option that is
1703 forwarded to wait_child().
1705 2008-06-23 Timothy G Abbott <tabbott@MIT.EDU>
1707 * scripts/dpkg-divert.pl: Add new option --listpackage to
1709 * man/dpkg-divert.1: Document new option.
1711 2008-06-22 Raphaël Hertzog <hertzog@debian.org>
1713 * man/dpkg.1, man/dpkg-query.1: Document the fact that the available
1714 file is mostly useful for dselect users and that the related commands
1715 are useless for APT users.
1717 2008-06-22 Raphaël Hertzog <hertzog@debian.org>
1719 * man/dpkg-buildpackage.1: Document -A option.
1721 2008-06-22 Raphaël Hertzog <hertzog@debian.org>
1723 * man/dpkg.1, man/dpkg-query.1: Clarify lisf of packages displayed
1724 in dpkg --get-selections and dpkg-query -l.
1726 2008-06-21 Raphaël Hertzog <hertzog@debian.org>
1728 * scripts/dpkg-shlibdeps.pl: If the binary analyzed is a library on a
1729 non-public path, assume it's likely a plugin and reduce the number of
1730 warnings displayed about symbols not found. Also use a different,
1731 hopefully less confusing message.
1732 * man/dpkg-shlibdeps.1: Document the above changes.
1734 2008-06-21 Raphaël Hertzog <hertzog@debian.org>
1736 * scripts/Dpkg/Vendor.pm: Provide simple parser for vendor-specific
1737 information stored in /etc/dpkg/origins/. The current vendor can
1738 be identified through get_current_vendor() and get_vendor_info()
1739 retrieves the information stores within those files.
1740 * scripts/dpkg-buildpackage.pl: Setup the DEB_VENDOR environment
1741 variable if possible.
1742 * man/dpkg-buildpackage.1: Document the above changes.
1743 * scripts/Dpkg/Source/Package/V3/quilt.pm (get_series_file): Use
1744 get_current_vendor() to decide the name of the vendor-specific
1745 series file that should be used.
1746 * scripts/Makefile.am, scripts/po/POTFILES.in: Include the new
1747 module in the dist tarball and in the list of files containing
1748 translatable strings.
1750 2008-06-19 Guillem Jover <guillem@debian.org>
1752 * lib/varbuf.c (varbufdupc): Store the old used size instead of the
1753 precomputed address, as varbufextend might change the buffer from
1756 2008-06-17 Guillem Jover <guillem@debian.org>
1758 * scripts/dpkg-divert.pl: Do not silently force --rename on --remove.
1760 2008-06-17 Juergen Kreileder <jk@blackdown.de>,
1761 Guillem Jover <guillem@debian.org>
1763 * scripts/dpkg-divert.pl (rename_mv): New function.
1764 (dorename): Use rename_mv instead of rename.
1766 2008-06-10 Guillem Jover <guillem@debian.org>
1768 * lib/varbuf.c (varbufvprintf): Call va_end when done with the va_list
1769 variable from va_copy.
1771 2008-06-10 Guillem Jover <guillem@debian.org>
1773 * lib/varbuf.c (varbufprintf): Use varbufvprintf instead of
1776 2008-06-09 Raphaël Hertzog <hertzog@debian.org>
1778 * scripts/Dpkg/BuildOptions.pm (parse, set): Use space as the
1779 official separator in DEB_BUILD_OPTIONS. Check for validity of
1780 flags and print a warning if a bad option is detected. Rewrote
1781 the logic of set() to avoid adding options twice in non-overwrite
1783 * scripts/t/300_Dpkg_BuildOptions.t: Adjust the test suite
1786 2008-06-09 Guillem Jover <guillem@debian.org>
1788 * scripts/Dpkg/Source/Package.pm ($diff_ignore_default_regexp): Add
1790 (@tar_ignore_default_pattern): Likewise.
1792 2008-06-09 Guillem Jover <guillem@debian.org>
1794 * src/query.c (searchfiles): Use VARBUF_INIT to initialize path
1797 2008-06-04 Guillem Jover <guillem@debian.org>
1799 * src/main.c (setpipe): Set file descriptors to close on exec.
1801 2008-06-04 Guillem Jover <guillem@debian.org>
1803 * dpkg-deb/build.c (getfi): Use m_realloc instead of realloc.
1804 * dpkg-deb/info.c (info_spew): Likewise.
1805 * lib/fields.c (f_dependency): Likewise.
1806 * lib/parse.c (parsedb): Likewise.
1807 * lib/varbuf.c (varbufextend): Likewise.
1808 * src/main.c (commandfd): Likewise.
1810 2008-06-04 Guillem Jover <guillem@debian.org>
1812 * lib/dpkg-db.h (varbufinit): Add a size argument, fix all callers.
1813 (varbuf::init): Add an optional size argument.
1814 (varbuf::varbuf): Likewise.
1815 * lib/varbuf.c (varbufinit): Allocate a buffer if size is not zero.
1816 * lib/dbmodify.c (modstatdb_init): Use varbufinit instead of its
1819 2008-06-04 Guillem Jover <guillem@debian.org>
1821 * lib/dpkg-db.h (VARBUF_INIT): New macro.
1822 * lib/compression.c (decompress_cat, compress_cat): Use VARBUF_INIT
1823 instead of varbufinit to initialize the variables.
1824 * lib/dump.c (writerecord, writedb): Likewise.
1825 * lib/mlib.c (buffer_copy_setup_dual): Likewise.
1826 * lib/showpkg.c (show1package): Likewise.
1827 * src/archives.c (check_breaks, check_conflict): Likewise.
1828 * src/configure.c (deferred_configure): Likewise.
1829 * src/depcon.c (describedepcon): Likewise.
1830 * src/main.c (commandfd): Likewise.
1831 * src/packages.c (breaks_check_one, dependencies_ok): Likewise.
1832 * src/query.c (searchfiles): Likewise.
1833 * src/remove.c (deferred_remove): Likewise.
1834 * src/select.c (setselections): Likewise.
1836 2008-06-04 Guillem Jover <guillem@debian.org>
1838 * src/archives.c (archivefiles): Use varbufreset instead of varbufinit
1839 to avoid possible leaks if this function is called more than once.
1841 2008-06-04 Guillem Jover <guillem@debian.org>
1843 * lib/log.c (log_message): Switch log from a pointer to struct varbuf
1844 to just struct varbuf.
1846 2008-06-04 Guillem Jover <guillem@debian.org>
1848 * src/main.c (setpipe): Fix the setting of more than one pipef.
1850 2008-06-04 Guillem Jover <guillem@debian.org>
1852 * src/select.c (setselections): Free varbuf variables.
1854 2008-06-04 Guillem Jover <guillem@debian.org>
1856 * lib/subproc.c (catch_signals): Remove array sentinel.
1858 2008-06-01 Guillem Jover <guillem@debian.org>
1860 * lib/varbuf.c (varbufdupc): Use memset instead of ad-hoc operation.
1862 2008-06-01 Guillem Jover <guillem@debian.org>
1864 * lib/subproc.c (setup_subproc_signals): Use size_t intead of int
1865 for the index, to fix a warning.
1866 (cu_subproc_signals): Likewise.
1868 2008-06-01 Guillem Jover <guillem@debian.org>
1870 * src/query.c (searchfiles): Use strpbrk instead of strcspn and
1873 2008-06-01 Guillem Jover <guillem@debian.org>
1875 * src/query.c: Include <dpkg-priv.h>.
1876 (searchfiles): Trim trailing '/' and '/.' from file searches only
1877 on path names, but not patterns.
1879 2008-06-01 Guillem Jover <guillem@debian.org>
1881 * lib/dpkg-priv.h (rtrim_slash_slashdot): Return the string size.
1883 2008-06-01 Raphaël Hertzog <hertzog@debian.org>
1885 * scripts/Dpkg/Control.pm (parse, parse_fh, new): Add a new function
1886 parse_fh() to be able to parse the control file from an arbitrary
1887 file handle. Change parse() to use it and modify new() to parse
1888 STDIN instead of a real file if the parameter is "-".
1890 2008-06-01 Daniel Hahler <debian-bugs@thequod.de>
1892 * src/archives.c (tarobject): Improve error message stating that
1893 dpkg is unable to create a file so that it also refers to the real
1894 filename instead of the non-diverted name only.
1896 2008-05-31 Raphaël Hertzog <hertzog@debian.org>
1898 * man/dpkg.1: Use the term conffile for a configuration file handled
1899 by dpkg. Drop reference to hamm. Updated description of values
1900 supported by -D to include those which are trigger related.
1902 2008-05-29 Colin Watson <cjwatson@debian.org>
1904 * lib/dbmodify.c (modstatdb_note): Add a comment around obscure bits
1905 of trigger handling code.
1906 * src/trigproc.c (trigproc): Likewise.
1908 2008-05-29 Colin Watson <cjwatson@debian.org>
1910 * lib/triglib.c (trig_incorporate): Fix typo in comment.
1912 2008-05-24 Guillem Jover <guillem@debian.org>
1914 * dpkg-deb/build.c (do_build): Move argument name into a parameter to
1915 coalesce similar strings for translation.
1916 * dpkg-split/info.c (do_info): Likewise.
1917 * dpkg-split/join.c (do_join): Likewise.
1918 * dpkg-split/queue.c (do_queue): Likewise.
1919 * src/enquiry.c (audit, unpackchk, assertversion, predeppackage)
1920 (printarch): Likewise.
1921 * src/select.c (setselections, clearselections): Likewise.
1923 2008-05-24 Guillem Jover <guillem@debian.org>
1925 * dpkg-deb/main.c: Include <dpkg-priv.h>.
1926 (setaction): Use sizeof_array instead of ad-hoc calculation.
1927 * dpkg-split/main.c: Include <dpkg-priv.h>.
1928 (setaction): Use sizeof_array instead of ad-hoc calculation.
1930 2008-05-24 Guillem Jover <guillem@debian.org>
1932 * src/trigcmd.c (main): Remove duplicate program name from badusage.
1934 2008-05-19 Martin Koeppe <mkoeppe@gmx.de>,
1935 Guillem Jover <guillem@debian.org>
1937 * dpkg-deb/Makefile.am (dpkg_deb_LDADD): Move 'libcompat.a' and
1938 '$(LIBINTL)' after 'libdpkg.a'.
1939 * dpkg-split/Makefile.am (dpkg_split_LDADD): Likewise.
1940 * dselect/Makefile.am (dselect_LDADD): Likewise.
1941 * /src/Makefile.am (dpkg_LDADD): Likewise.
1942 (dpkg_query_LDADD): Likewise.
1943 (dpkg_trigger_LDADD): Likewise.
1945 2008-05-19 Guillem Jover <guillem@debian.org>
1947 * scripts/Dpkg/Source/Package.pm ($diff_ignore_default_regexp): Add
1949 (@tar_ignore_default_pattern): Likewise.
1951 2008-05-12 Guillem Jover <guillem@debian.org>
1953 * scripts/dpkg-gencontrol.pl ($package_type): Rename to ...
1954 ($pkg_type): ... this, for uniformity.
1956 2008-05-12 Guillem Jover <guillem@debian.org>
1958 * src/help.c (do_script): Expand 'maint' to 'maintainer' in string.
1959 (vmaintainer_script_installed): Mark string for translation. Change
1960 strings so that they get merged by gettext with similar ones.
1961 (maintainer_script_new): Likewise.
1963 2008-05-12 Guillem Jover <guillem@debian.org>
1965 * lib/dpkg-priv.h (sizeof_array): New macro.
1966 * lib/parse.c: Include <dpkg-priv.h>.
1967 (NFIELDS): Remove macro.
1968 (nfields): Use sizeof_array instead of NFIELDS.
1969 (parsedb): Likewise.
1970 * lib/subproc.c (NCATCHSIGNALS): Remove macro.
1971 (uncatch_signals): Use sizeof_array instead of NCATCHSIGNALS.
1972 (setup_subproc_signals): Likewise.
1973 (cu_subproc_signals): Likewise.
1975 2008-05-12 Guillem Jover <guillem@debian.org>
1977 * dselect/method.cc: Include <dpkg-priv.h>. Use setup_subproc_signals
1978 and cu_subproc_signals instead of cu_restoresignals and duped code
1979 in falliblesubprocess.
1980 * lib/Makefile.am (libdpkg_a_SOURCES): Add 'subproc.c'.
1981 * ib/dpkg-priv.h (setup_subproc_signals): New prototype.
1982 (cu_subproc_signals): Likewise.
1983 * src/help.c: Include <dpkg-priv.h> and stop including <signal.h>.
1984 (cu_restorescriptsignals, script_catchsignals): Move to ...
1985 * lib/subproc.c (cu_subproc_signals, setup_subproc_signals): ... here.
1988 2008-05-12 Guillem Jover <guillem@debian.org>
1990 * lib/Makefile.am (libdpkg_a_SOURCES): Add 'dpkg-priv.h' and 'path.c'.
1991 * lib/dpkg-priv.h: New file.
1992 * lib/path.c: Likewise.
1994 2008-05-11 Raphaël Hertzog <hertzog@debian.org>
1996 * man/dpkg-source.1: Properly escape hyphen in -i option.
1998 2008-05-11 Pierre Habouzit <madcoder@debian.org>
2000 * lib/showpkg.c (show1package): Use %zd instead of %d in sprintf()
2001 call with a size_t parameter.
2003 2008-05-11 Pierre Habouzit <madcoder@debian.org>
2005 * scripts/update-alternatives.pl: Add a --query option that works
2006 like --display but outputs a machine parseable rfc822-like output.
2007 * man/update-alternatives.8: Document that new option, and the
2010 2008-05-05 Raphaël Hertzog <hertzog@debian.org>
2012 * man/dpkg-source.1: Improve explanation of -i when used with
2013 VCS-based source packages.
2015 2008-05-05 Raphaël Hertzog <hertzog@debian.org>
2017 * scripts/dpkg-gensymbols.pl: Do not accept empty parameters for
2020 2008-05-05 Raphaël Hertzog <hertzog@debian.org>
2022 * scripts/dpkg-shlibdeps.pl: Include the format of the desired
2023 library in the "library not found" error message.
2025 2008-05-02 Guillem Jover <guillem@debian.org>
2027 * scripts/update-alternatives.pl: Do not suggest manually changing
2028 the alternative symlinks on verbose mode.
2030 2008-04-29 Guillem Jover <guillem@debian.org>
2032 * configure.ac: Bump version to 1.15.0~.
2034 2008-08-26 Guillem Jover <guillem@debian.org>
2036 * configure.ac: Release 1.14.21.
2038 2008-08-26 Guillem Jover <guillem@debian.org>
2040 * man/dpkg.1: Escape hyphen in apt-get command.
2042 2008-08-17 Guillem Jover <guillem@debian.org>
2044 * man/dpkg.1: Change reference to dselect as being the preferred
2045 fron-end to aptitude. And 'apt-get dselect-upgrade' to be used to
2046 act on the current package selections. Add references to aptitude
2047 and apt man pages in 'SEE ALSO'.
2049 2008-08-16 Guillem Jover <guillem@debian.org>
2051 * src/main.c (setpipe): Set file descriptors to close on exec.
2053 2008-08-15 Guillem Jover <guillem@debian.org>
2055 * scripts/dpkg-buildpackage.pl (usage): Fix description of -si option.
2056 * man/dpkg-buildpackage.1: Match description of -si option with the
2057 one from dpkg-genchanges.1.
2059 2008-08-15 Raphaël Hertzog <hertzog@debian.org>
2061 * Dpkg/Source/Package.pm (new): Call init_options() only if
2062 initialize() has been called as it's supposed to be called
2063 only after the object has been upgraded to its target type.
2064 (init_options): add a comment that explains that this function is
2065 not called by Dpkg::Source::Package::V1::init_options() and
2066 render the function more robust.
2068 2008-08-15 Ian Jackson <ian@davenant.greenend.org.uk>
2070 * src/packages.c (process_queue): When onerr_abort is bigger than 0
2071 return instead of breaking out of the loop, to avoid wrongly
2072 asserting that !queue.length.
2074 2008-08-15 Guillem Jover <guillem@debian.org>
2076 * lib/dbmodify.c (modstatdb_note): Do not call modstatdb_note_core if
2077 cstatus does not allow writting. Move the core functionallity to ...
2078 (modstatdb_note_core): ... here. New function.
2079 * src/help.c (post_postinst_tasks_core): Do not call trig_incorporate
2080 if running under --no-act.
2081 * src/trigproc.c (trigproc): Do not call maintainer_script_postinst
2082 if running under --no-act.
2083 (trig_transitional_activate): Do not call trig_file_interests_save
2084 if cstatus does not allow writting.
2086 2008-08-15 Guillem Jover <guillem@debian.org>
2088 * lib/dpkg-db.h (trig_enqueue_awaited_pend): New function prototype.
2089 (trig_fixup_awaiters): Likewise.
2090 * lib/dbmodify.c (modstatdb_init): Call trig_fixup_awaiters.
2091 * lib/fields.c (f_trigaw): Call trig_enqueue_awaited_pend.
2092 * lib/triglib.c (struct pkg_list): New type.
2093 (trig_awaited_pend_head): New variable.
2094 (trig_enqueue_awaited_pend): New function definition.
2095 (trig_fixup_awaiters): Likewise.
2097 2008-06-24 Raphaël Hertzog <hertzog@debian.org>
2099 * debian/archtable: Add armel.
2101 2008-06-21 Raphaël Hertzog <hertzog@debian.org>
2103 * scripts/dpkg-buildpackage.pl, scripts/dpkg-genchanges.pl: Treat
2104 debian.tar.gz files (used by 3.0 (quilt) source packages) like
2105 diff.gz files when it comes to detection of the kind of upload.
2107 2008-06-21 Raphaël Hertzog <hertzog@debian.org>
2109 * scripts/Dpkg/Source/Package/V3/quilt.pm: Define QUILT_SERIES
2110 when running quilt in order to be able to use quilt series with
2111 non-standard names (like debian.series or ubuntu.series).
2113 2008-06-18 Raphaël Hertzog <hertzog@debian.org>
2115 * configure.ac: Bump version to 1.14.21~.
2117 2008-06-18 Raphaël Hertzog <hertzog@debian.org>
2119 * configure.ac: Release 1.14.20.
2121 2008-06-16 Guillem Jover <guillem@debian.org>
2123 * lib/triglib.c (trig_file_interests_ensure): Pass the proper mask
2124 to push_cleanup to make sure pop_cleanup closes the file.
2126 2008-06-15 Guillem Jover <guillem@debian.org>
2128 * scripts/dpkg-divert.pl (checkrename): Do not check the target file
2129 if the source does not exist and dorename was thus disabled.
2131 2008-06-09 Raphaël Hertzog <hertzog@debian.org>
2133 * scripts/dpkg-divert.pl, scripts/update-alternatives.pl,
2134 scripts/install-info.pl, scripts/dpkg-statoverride.pl: Set
2135 PERL_DL_NONLAZY to 1 so that the usage of Locale::Gettext doesn't
2136 cause run-time failures when this perl binary module is not
2137 compiled for the corresponding perl version (and this happens in
2138 configuration scripts, in particular preinst, during upgrades).
2140 2008-06-08 Raphaël Hertzog <hertzog@debian.org>
2142 * scripts/Dpkg/Source/Patch.pm (analyze): Be less strict in
2143 filenames accepted on ---/+++ lines. Don't blow up on absolute
2144 filenames if the other one is fine. Make sure to use the one that
2145 is relative and that corresponds to a real file when possible.
2147 2008-06-08 Raphaël Hertzog <hertzog@debian.org>
2149 * scripts/Dpkg/Source/Package/V3/quilt.pm: Use absolute path names
2150 when giving directories and filenames to quilt to avoid any
2151 problems due to quilt's feature of trying relative paths in parent
2154 2008-06-07 Raphaël Hertzog <hertzog@debian.org>
2156 * scripts/Dpkg/Source/Patch.pm (analyze): Accept unexpected
2157 end-of-file in patches if we're missing no more than 2 lines
2158 of context. Output a warning instead.
2160 2008-06-07 Raphaël Hertzog <hertzog@debian.org>
2162 * scripts/Dpkg/Source/Package/V3/quilt.pm (register_autopatch):
2163 Register the newly created patch with quilt only if quilt has
2164 already been used to apply the existing patches (or if we don't
2165 have any patch yet), otherwise register it manually at the end of
2168 2008-06-05 Raphaël Hertzog <hertzog@debian.org>
2170 * scripts/Dpkg/Source/Patch.pm (add_diff_directory): If option
2171 use_dev_null is set, then the label of the "old" file will be
2172 '/dev/null' if we're creating a new file (instead of using the
2173 name of the created file, like it's currently done in .diff
2174 of version "1.0" source packages).
2175 * scripts/Dpkg/Source/Package/V2.pm (prepare_build): Use the new
2176 option "use_dev_null" when creating the automatic patch.
2178 2008-06-05 Raphaël Hertzog <hertzog@debian.org>
2180 * scripts/Dpkg/Source/Package/V3/quilt.pm (get_patches): Really
2181 skip all comments in the series files.
2183 2008-06-04 Raphaël Hertzog <hertzog@debian.org>
2185 * scripts/Dpkg/Source/Patch.pm (analyze): Enhance function to
2186 parse correctly many more patches that are accepted by the patch
2188 - ignore/strip carriage return of patches with Windows end of lines
2189 - accept empty lines as contextual lines (instead of the expected " ")
2190 - accept spaces as separator between filename and timestamp if
2192 - accept a name that differs on the +++ line if the name in --- is
2193 correct, and use the name in +++ if this one exists while the one
2196 2008-05-28 Raphaël Hertzog <hertzog@debian.org>
2198 * scripts/Dpkg/Source/Package.pm (extract): If we extract a
2199 source package that uses a non-standard (!= 1.0) source package
2200 then we create debian/source/format to remember it.
2201 * scripts/dpkg-source.pl: Use debian/source/format as a new source
2202 of format to try when building the package. Prioritize it lower than
2203 command line and debian/control but higher than the default build
2205 * man/dpkg-source.1: Document the above changes.
2207 2008-05-28 Raphaël Hertzog <hertzog@debian.org>
2209 * scripts/Dpkg/Source/Package/V3/quilt.pm: Factorize calls to
2210 quilt in a new run_quilt() function. And check only once
2211 if quilt is available while setting the default value of
2212 without_quilt option. Last but not least, register properly the
2213 automatically generated patch with quilt import.
2215 2008-05-28 Raphaël Hertzog <hertzog@debian.org>
2217 * scripts/Dpkg/Source/Patch.pm (check_apply): New function to
2218 verify if a patch will successfully apply on top of a given
2220 * scripts/Dpkg/Source/Package/V3/quilt.pm (check_patches_applied):
2221 Don't trust debian/patches/.dpkg-source-applied blindly. Get a
2222 list of (supposedly unapplied) patches and verify if the first
2223 patch applies or not. If yes, then apply the patch series,
2224 otherwise do not (and assume that the patch series is already
2227 2008-05-26 Helge Kreutzmann <debian@helgefjell.de>
2229 * man/dselect.1: Fixed a typo and regenerated all po(t) files,
2230 including updating the German one.
2232 2008-05-23 Raphaël Hertzog <hertzog@debian.org>
2234 * scripts/Dpkg/Source/Package/V2.pm (do_build): Display a
2235 message when local modifications are stored in a new
2236 automatic patch. This messages includes a list of
2239 2008-05-23 Raphaël Hertzog <hertzog@debian.org>
2241 * scripts/Dpkg/Source/Package/V3/quilt.pm: Remove the .diff
2242 from the name of the automatically generated patch. It will
2243 facilitate the switch to this format: packages using
2244 patch system that apply debian/patches/*.{patch,diff}
2245 will not be bothered by the presence of the quilt serie
2246 created by dpkg-source itself.
2247 * man/dpkg-source.1: Update the documentation accordingly.
2249 2008-05-22 Raphaël Hertzog <hertzog@debian.org>
2251 * scripts/Dpkg/Source/Package/V3/quilt.pm: Add missing "use
2252 File::Path" for mkpath().
2254 2008-05-13 Guillem Jover <guillem@debian.org>
2256 * src/main.c (setforce): Add help output for '--force-breaks'.
2258 2008-05-13 Sven Joachim <svenjoac@gmx.de>
2260 * man/dpkg.1: Document triggers --debug values.
2262 2008-05-13 Guillem Jover <guillem@debian.org>
2264 * man/deb-version.5: Change '©' to '(C)'.
2266 2008-05-12 Guillem Jover <guillem@debian.org>
2268 * configure.ac: Bump version to 1.14.20~.
2270 2008-05-12 Guillem Jover <guillem@debian.org>
2272 * configure.ac: Release 1.14.19.
2274 2008-05-12 Guillem Jover <guillem@debian.org>
2276 * scripts/dpkg-gencontrol.pl: Get Package-Type field value also from
2279 2008-05-11 Raphaël Hertzog <hertzog@debian.org>
2281 * src/processarc.c (process_archive): While removing files that
2282 disappeared, move the call to namenodetouse before the test
2283 that skips directory shared with other packages. This is required
2284 because namenodetouse() handles trigger activation and we really
2285 want directories containing (only) removed files to activate the
2286 corresponding triggers.
2288 2008-05-08 Raphaël Hertzog <hertzog@debian.org>
2290 * scripts/Dpkg/Source/Package/V2.pm,
2291 scripts/Dpkg/Source/Package/V3/quilt.pm: Ensure the
2292 .dpkg-source-applied stamp file is created when an automatic patch
2293 is created so that a second build doesn't try to mistakenly
2296 2008-05-08 Raphaël Hertzog <hertzog@debian.org>
2298 * scripts/Dpkg/Source/Functions.pm (is_binary): New function
2299 to check if a file is binary by using diff against it.
2300 * scripts/Dpkg/Source/Package/V2.pm: Check that all files from the
2301 debian sub-directory are non-binary and only allow whitelisted
2303 * man/dpkg-source.1: Document this behaviour.
2305 2008-05-08 Raphaël Hertzog <hertzog@debian.org>
2307 * scripts/Dpkg/Changelog/Debian.pm (parse): Bugfix in creation of
2308 an unexpected new changelog entry that lacks an header line.
2310 2008-05-04 Marco d'Itri <md@linux.it>
2312 * scripts/Dpkg/Source/Patch.pm: Add missing import of internerr.
2314 2008-04-26 Raphaël Hertzog <hertzog@debian.org>
2316 * scripts/Dpkg/Source/Package.pm (upgrade_object_type): Instead
2317 of using the full Format: version to deduce the perl object name
2318 use only the major part of the version. The minor part is under
2319 control of the corresponding object, that way they can evolve
2320 and indicate that the source package has changed in a backwards
2322 http://lists.debian.org/debian-dpkg/2008/04/msg00045.html
2323 Also add a new parameter to disable update of the minor version in
2325 (initialize): Don't let the Format field be updated by
2326 upgrade_object_type() as this function only loads information from
2327 the .dsc into the object.
2328 * scripts/Dpkg/Source/Package/**: Rename V1_0.pm into V1.pm,
2329 V2_0.pm into V2.pm and V3_0/ into V3/. Fix perl package names
2330 accordingly. Integrated a $CURRENT_MINOR_VERSION set to "0"
2332 * scripts/Makefile.am, scripts/po/POTFILES.in: Update the lists
2333 according to above file renames.
2335 2008-04-25 Raphaël Hertzog <hertzog@debian.org>
2337 * scripts/Dpkg/Source/Package/V3_0/quilt.pm: Parse correctly
2338 series files with patch options and warn if something else than
2340 * man/dpkg-source.1: Document how dpkg-source handles those patch
2341 options in series files.
2343 2008-04-25 Raphaël Hertzog <hertzog@debian.org>
2345 * scripts/Dpkg/Source/Package/V3_0/native.pm: Fix permissions of
2346 generated tarball to "666 & ~umask()".
2348 2008-04-21 Helge Kreutzmann <debian@helgefjell.de>
2350 * man/dpkg-shlibdeps.1: Fix a typo.
2351 * man/dpkg-source.1: Improve a sentence (with agreement from Raphäel).
2353 2008-04-14 Raphaël Hertzog <hertzog@debian.org>
2355 * scripts/Dpkg/Fields.pm (find_custom_field, get_custom_field):
2356 New function to handle custom fields (X[SBC]*-*).
2357 * scripts/dpkg-genchanges.pl: Use Package-Type control field to
2358 decide if a package is an udeb instead of relying on the file
2359 extension of a generated package since that doesn't work when
2360 generating source-only uploads for example.
2362 2008-04-14 Raphaël Hertzog <hertzog@debian.org>
2364 * scripts/Dpkg/Source/Patch.pm (_fail_not_same_type): Fix
2365 inversion between new/old filetype.
2367 2008-04-12 Raphaël Hertzog <hertzog@debian.org>
2369 * scripts/Dpkg/Path.pm (check_files_are_the_same): Add a new
2370 parameter so that we can use stat() instead of lstat() and
2371 compare if pointed files are the same.
2372 * scripts/Dpkg/Source/Package.pm: Resolve symlinks before deciding
2373 if both original tarballs are the same or not. Use the new
2374 parameter of check_files_are_the_same() for this.
2375 * scripts/Dpkg/Source/Package/V1_0.pm: Remove useless import of
2376 check_files_are_the_same.
2378 2008-04-12 Sven Joachim <svenjoac@gmx.de>
2380 * scripts/Dpkg/Source/Package.pm: Add missing import of
2383 2008-04-12 Russell Coker <russell@coker.com.au>,
2384 Guillem Jover <guillem@debian.org>
2386 * src/archives.c (tarobject): Set scontext to NULL after freecon.
2388 2008-04-10 Sven Joachim <svenjoac@gmx.de>
2390 * src/trigcmd.c: Fix typo.
2392 2008-04-09 Sven Joachim <svenjoac@gmx.de>
2394 * THANKS: Update my e-mail address.
2396 2008-04-09 Helge Kreutzmann <debian@helgefjell.de>
2398 * man/deb-triggers.5: Fix typos.
2399 * man/dpkg-trigger.1: Likewise.
2401 2008-04-08 Guillem Jover <guillem@debian.org>
2403 * configure.ac: Bump version to 1.14.19~.
2405 2008-04-08 Guillem Jover <guillem@debian.org>
2407 * configure.ac: Release 1.14.18.
2409 2008-04-08 Guillem Jover <guillem@debian.org>
2411 * doc/triggers.txt: Fix wrong dpkg trigger related option names.
2413 2008-04-08 Guillem Jover <guillem@debian.org>
2415 * doc/triggers.txt: Move parts of the document into proper man pages.
2416 Add references to those.
2418 2008-04-08 Guillem Jover <guillem@debian.org>
2420 * man/dpkg.1: Document new trigger statuses, and new --triggers-only,
2421 --no-triggers and --triggers options.
2422 * man/deb-triggers.5: New file.
2423 * man/dpkg-trigger.1: Likewise.
2424 * man/Makefile.am (dist_man_MANS): Likewise.
2426 2008-04-08 Guillem Jover <guillem@debian.org>
2428 * man/dpkg.1: Sort package states.
2430 2008-04-05 Raphaël Hertzog <hertzog@debian.org>
2432 * scripts/Dpkg/Source/Package/V1_0.pm: Do not use
2433 diff -p to generate patches as dpkg-source of sarge doesn't accept
2436 2008-04-04 Raphaël Hertzog <hertzog@debian.org>
2438 * scripts/Dpkg/Shlibs/SymbolFile.pm (get_smallest_version): New
2439 function to retrieve the smallest "minver" of all symbols of a
2441 * scripts/dpkg-shlibdeps.pl: Do not initialize dependencies of
2442 libraries with symbols files as unversioned, instead use the
2443 smallest minimal version returned by the function above. This
2444 is required because the library might not have always been
2445 available in the package and the unversioned dependency thus
2446 doesn't ensure his presence.
2448 * scripts/t/800_Dpkg_IPC.t: Remove temporary files used by the
2451 2008-04-03 Peter Karlsson <peterk@debian.org>
2453 * man/dpkg-source.1: Corrected English.
2455 2008-04-02 Sven Joachim <svenjoac@gmx.de>
2457 * lib/triglib.c (trk_unknown_interest_change): Fix typo.
2458 * dselect/helpmsgs.cc (hlp_displayexplain1): Ditto.
2460 2008-04-02 Raphaël Hertzog <hertzog@debian.org>
2462 * scripts/Dpkg/Source/Package.pm, scripts/dpkg-genchanges.pl:
2463 Explicitly put Checksums-* fields before the Files field so that
2464 the Files field is last. This is a work-around for some braindead
2465 dsc parsers (dupload and sbuild for instance, see #473518 and
2468 2008-04-01 Raphaël Hertzog <hertzog@debian.org>
2470 * scripts/Dpkg/Source/Package/V2_0.pm: Add the option
2471 --skip-patches to not apply patches at the end of the source
2472 package extraction. Also works for Format: 3.0 (quilt).
2473 * man/dpkg-source.1: Document the above change.
2475 2008-04-01 Raphaël Hertzog <hertzog@debian.org>
2477 * scripts/Dpkg/Source/Package/V2_0.pm (do_extract): Create
2478 debian/patches/.dpkg-source-applied containing the list of patches
2479 applied during extraction.
2480 (prepare_build): apply patches before trying to build a source package
2481 when it's clear that they have not been applied because
2482 debian/patches/.dpkg-source-applied doesn't exist.
2483 * scripts/Dpkg/Source/Package/V3_0/quilt.pm: Likewise. If a .pc
2484 directory is present, then use "quilt unapplied" to check if all
2485 patches have been applied.
2486 * man/dpkg-source.1: Document the above changes.
2488 2008-04-01 Raphaël Hertzog <hertzog@debian.org>
2490 * scripts/Dpkg/IPC.pm (fork_and_exec): Handle redirection
2491 of STDERR with new options error_to_{file,pipe,string,handle}.
2493 2008-04-01 Guillem Jover <guillem@debian.org>
2495 * lib/trigdeferred.l (trigdef_update_start): Use TRIGGERSLOCKFILE
2496 instead of literal string.
2498 2008-04-01 Guillem Jover <guillem@debian.org>
2500 * src/enquiry.c (badstatinfos): Fix typos (processesing -> processing).
2502 2008-03-30 Raphaël Hertzog <hertzog@debian.org>
2504 * man/dpkg-source.1: Make it clear that Format: 2.0 is not really
2505 meant to be widely used by moving all the explanations in the
2506 section describing the format "3.0 (quilt)".
2508 2008-03-30 Guillem Jover <guillem@debian.org>
2510 * configure.ac: Bump version to 1.14.18~.
2512 2008-03-30 Guillem Jover <guillem@debian.org>
2514 * configure.ac: Release 1.14.17.
2516 2008-03-30 Guillem Jover <guillem@debian.org>
2518 * dselect/main.cc: Use <ncursesw/term.h> instead of <term.h>.
2519 * dselect/dselect.h: Use <ncursesw/curses.h> instead of <curses.h>.
2520 * dselect/Makefile.am (curkeys.h): Likewise.
2522 2008-03-30 Guillem Jover <guillem@debian.org>
2524 * po/POTFILES.in: Add 'lib/cleanup.c', 'lib/log.c', 'lib/myopt-util.c'
2525 and remove 'lib/showcright.c'.
2526 * scripts/Makefile.am (EXTRA_DIST): Add
2527 't/600_Dpkg_Changelog/regressions'.
2529 2008-03-30 Ian Jackson <ian@davenant.greenend.org.uk>,
2530 Guillem Jover <guillem@debian.org>
2532 * doc/triggers.txt: New file.
2533 * lib/dlist.h: Likewise.
2534 * lib/trigdeferred.l: Likewise.
2535 * lib/triglib.c: Likewise.
2536 * src/trigcmd.c: Likewise.
2537 * src/trigproc.c: Likewise.
2538 * configure.ac: Use AC_PROG_LEX.
2539 * Makefile.am (EXTRA_DIST): Add 'doc/triggers.txt'.
2540 * po/POTFILES.in: Add 'lib/trigdeferred.c', 'lib/triglib.c',
2541 'src/trigcmd.c' and 'src/trigproc.c'.
2542 * dselect/helpmsgs.cc (hlp_displayexplain1): Document the new trigger
2544 * dselect/pkgdepcon.cc (packagelist::useavailable): Treat the trigger
2545 statuses in the same way as installed status.
2546 (packagelist::deppossatisfied): Likewise.
2547 * dselect/pkgdisplay.cc (statusstrings): Add trigger statuses
2549 (statuschars): Likewise.
2550 * dselect/pkglist.cc (packagelist::ensurestatsortinfo): Mark trigger
2552 * lib/.gitignore: Add 'trigdeferred.c'.
2553 * lib/Makefile.am (libdpkg_a_SOURCES): Add 'dlist.h', 'triglib.c' and
2555 * lib/database.c (blankpackage): Initialize trigaw.head, trigaw.tail,
2556 othertrigaw_head and trigpend_head members.
2557 * lib/dbmodify.c (triggersdir, triggersfilefile): New variables.
2558 (triggersnewfilefile): Likewise.
2559 (fnis): Add 'TRIGGERSDIR', 'TRIGGERSDIR "/File"' and
2560 'TIGGERSDIR "/File.new"' entries.
2561 (modstatdb_init): Incorporate triggers.
2562 (modstatdb_note): Reset trigpend_head if status is not a trigger one.
2563 Remove awaited triggers if status is <= than configfiles. Clear
2565 * lib/dpkg-db.h (struct trigpend, struct trigaw): New types.
2566 (enum trigdef_updateflags, struct trigdefmeths): Likewise.
2567 (struct trigfileint, struct trig_hooks): Likewise.
2568 (enum pkgstatus): Add stat_triggersawaited and stat_triggerspending.
2569 (struct pkginfo): Add new trigaw, othertrigaw_head and trigpend_head
2571 (triggersdir, triggersfilefile, triggersnewfilefile): New variables.
2572 (trigdef, trig_new_deferred, trigh): Likewise.
2573 (trigdef_update_start, trigdef_yylex, trigdef_process_done): New
2574 functions prototypes.
2575 (trig_note_pend_core, trig_note_pend, trig_note_aw): Likewise.
2576 (trig_clear_awaiters, trig_incorporate): Likewise.
2577 (trig_file_activate_byname, trig_file_activate): Likewise.
2578 (trig_file_interests_ensure, trig_file_interests_save): Likewise.
2579 (trig_cicb_interest_delete, trig_cicb_interest_add): Likewise.
2580 (trig_cicb_statuschange_activate, trig_parse_ci): Likewise.
2581 (illegal_triggername): Likewise.
2582 (trig_parse_cicb): New function typedef.
2583 (TRIGHOOKS_DEFINE_NAMENODE_ACCESSORS): New macro.
2584 * lib/dpkg.h (TRIGGERSCIFILE, TRIGGERSDIR, TRIGGERSFILEFILE)
2585 (TRIGGERSDEFERREDFILE, TRIGGERSLOCKFILE, MAINTSCRIPTPKGENVVAR)
2586 (MAINTSCRIPTDPKGENVVAR, MAXTRIGDIRECTIVE): New macros.
2587 (MAXUPDATES): Set to 250.
2588 * lib/dump.c (w_configversion): Do not write the field if on trigger
2590 (w_status): Abort on unknown status. Assert the presence or not
2591 of awaited and pending triggers depending on the status.
2592 (w_trigpend, w_trigaw): New functions.
2593 * lib/fields.c (scan_word, f_trigpend, f_trigaw): Likewise.
2594 * lib/parse.c: Include <assert.h>.
2595 (fieldinfos): Add 'Triggers-Pending' and 'Triggers-Awaited' fields.
2596 (parsedb): Add new variable aw. Check for consistency between the
2597 triggers lists and the status. Initialize trigpend_head and trigaw.
2598 * lib/parsedump.h (f_trigpend, f_trigaw, w_trigpend, w_trigaw): New
2599 function prototypes.
2600 * lib/parsehelp.c (statusinfos): Add 'triggers-awaited' and
2602 * src/Makefile.am (bin_PROGRAMS): Add 'dpkg-trigger'.
2603 (dpkg_SOURCES): Add 'trigproc.c'.
2604 (dpkg_trigger_SOURCES, dpkg_trigger_LDADD): New variables.
2605 * src/archives.c (check_conflict): Treat trigger statuses the same way
2607 (archivefiles): Install trigger hooks. Make act_triggers perform
2608 process_queue. Do a deferred triggers process run.
2609 (wanttoinstall): Treat trigger statuses the same way as installed.
2610 Remove duped check about package being installed on forced
2612 * src/configure.c (deferred_configure): Activate file triggers on
2614 * src/depcon.c (depisok): Treat trigger statuses the same way as
2615 installed for the dependency and for breaks or conflicts. For depends,
2616 predepends, recommends and suggests treat triggerspending as installed
2617 and triggersawaited as halfconfigured.
2618 * src/enquiry.c (badstatinfos): Add stat_triggerspending and
2619 stat_triggersawaited entries.
2620 (yettobeunpacked): Treat trigger statuses as unpacked.
2621 (assertversion): Treat triggerspending the same way as installed,
2622 and triggersawaited as not fully installed.
2623 * src/filesdb.h (enum fnnflags): Add new fnn_nonew item.
2624 (struct filenamenode): Add new trig_interested member.
2625 * src/filesdb.c (ensure_package_clientdata): Initialize
2626 clientdata->trigprocdeferred.
2627 (findnamenode): Return NULL if flags has fnn_nonew and there is no
2628 match before creating a new one. Initialize trig_interested when
2630 * src/help.c (statusstrings): Add trigger statuses descriptions.
2631 (namenodetouse): Activate a file trigger before returning.
2632 (post_postinst_tasks): Initialize trigpend_head to NULL. Set status
2633 to stat_triggersawaited if trigaw.head otherwise to new_status.
2634 Call post_postinst_tasks_core. Move call to modstatdb_note to ...
2635 (post_postinst_tasks_core): ... here. New function. Incorporate
2637 (post_script_tasks): Incorportate triggers.
2638 (do_script): Set MAINTSCRIPTPKGENVVAR and MAINTSCRIPTDPKGENVVAR
2639 environment variables.
2640 * src/main.h (struct perpackagestate): Add new trigprocdeferred
2642 (enum action): Add new act_triggers item.
2643 (f_triggers): New variable definition.
2644 (namenodetouse): Add a comment about its new side effects.
2645 (post_postinst_tasks_core): Likewise. New prototype.
2646 (enum debugflags): Add dbg_triggers, dbg_triggersdetail and
2647 dbg_triggersstupid items.
2648 (trigproc_install_hooks, trigproc_run_deferred): New protoypes.
2649 (trigproc_reset_cycle, trigproc): Likewise.
2650 (trig_activate_packageprocessing): Likewise.
2651 * src/main.c (usage): Document '--triggers-only' and
2653 (f_triggers): New variable declaration
2654 (setdebug): Document new triggers debug flags.
2655 (cmdinfos): Add triggers-only, triggers and no-triggers entries.
2656 (main): Disable f_triggers when --triggers-only has been specified.
2657 * src/packages.c (progress_bytrigproc): New variable.
2658 (packages): Install trigger hooks. On act_configure skip the package
2659 also if trigpend_head is not valid. Handle act_triggers. Do a
2660 deferred triggers process run.
2661 (process_queue): New action_todo variable. Set the same value for
2662 istobe as on act_triggers as for act_configure. Print the same message
2663 when erasing the queue entry on act_triggers as for act_configure.
2664 Add packages which can be fixed by means of processing their triggers
2665 to the queue and set the action to act_configure. On act_triggers
2666 ohshit if trigpend_head is NULL, otherwise fall through to
2667 act_install. On act_configure call trigproc if there's pending
2668 triggers or call deferred_configure.
2669 (deppossi_ok_found): Add a new fixbytrig argument, fix all callers.
2670 Treat trigger statuses the same way as installed. Handle dependee
2672 (dependencies_ok): Handle packages which can be fixed by means of
2673 processing their triggers.
2674 * src/processarc.c (process_archive): Ensure file triggers intersts.
2675 Activate trigger package processsing. Parse package triggers control
2676 file before reading the conffiles. Treat trigger statuses the same
2677 way as installed. Activate trigger package processing for the package
2678 being deconfigured and for conflictors. Parse package control file
2679 to delete the package and parse it again to re-add it and then save
2680 the file triggers interests. Activate trigger package processing for
2681 disappearing packages.
2682 * src/query.c (list1package): Add trigger statuses to the listing
2683 header and to the one letter statuses.
2684 * src/remove.c (checkforremoval): Treat trigger statuses in the same
2686 (deferred_remove): Activate trigger package processing. Operate on
2687 packages with halfconfigured or higher status.
2688 (removal_bulk_remove_configfiles): Activate trigger package processing.
2690 2008-03-28 Ian Jackson <ian@davenant.greenend.org.uk>
2692 * src/packages.c (deppossi_ok_found): Refactor returning code.
2694 2008-03-28 Ian Jackson <ian@davenant.greenend.org.uk>
2696 * src/depcon.c (depisok): Improve whynot message by stating when a
2697 package is installed with 'is present'.
2699 2008-03-28 Ian Jackson <ian@davenant.greenend.org.uk>
2701 * src/help.c (cu_post_script_tasks): New function.
2702 (do_script): Install cu_post_script_tasks as a cleanup handler.
2703 (maintainer_script_alternative): Call post_script_tasks if the
2704 first do_script invokation fails instead of it succeeding.
2706 2008-03-28 Ian Jackson <ian@davenant.greenend.org.uk>,
2707 Guillem Jover <guillem@debian.org>
2709 * src/main.h (maintainer_script_postinst): New prototype.
2710 * src/help.c (post_script_tasks): New function.
2711 (maintainer_script_installed): Renamed to ...
2712 (vmaintainer_script_installed): ... this. Dot not call
2714 (maintainer_script_installed): New function.
2715 (maintainer_script_postinst): Likewise.
2716 (maintainer_script_new): Call post_script_tasks instead of directly
2717 calling ensure_diversions.
2718 (maintainer_script_alternative): Likewise.
2719 * src/cleanup.c (cu_prermupgrade): Use maintainer_script_postinst
2720 instead of maintainer_script_installed.
2721 (cu_prermdeconfigure): Likewise.
2722 (cu_prerminfavour): Likewise.
2723 (cu_prermremove): Likewise.
2724 (deferred_configure): Likewise.
2725 * src/configure.c (deferred_configure): Likewise.
2727 2008-03-28 Ian Jackson <ian@davenant.greenend.org.uk>,
2728 Guillem Jover <guillem@debian.org>
2730 * src/main.h (post_postinst_tasks): New prototype.
2731 * src/help.c (post_postinst_tasks): New function.
2732 * src/cleanup.c (cu_prermupgrade): Use post_postinst_tasks instead of
2734 (cu_prermdeconfigure): Likewise.
2735 (cu_prerminfavour): Likewise.
2736 (cu_prermremove): Likewise.
2737 * src/configure.c (deferred_configure): Likewise.
2739 2008-03-28 Guillem Jover <guillem@debian.org>
2741 * src/packages.c (process_queue): Fix typo in comment.
2743 2008-03-28 Ian Jackson <ian@davenant.greenend.org.uk>
2745 * src/help.c (statusstrings): Improve Breaks message by saying that
2746 it can be in that status due to a failed installation.
2748 2008-03-29 Raphaël Hertzog <hertzog@debian.org>
2750 * scripts/dpkg-buildpackage.pl: If the user request a cross-compilation,
2751 then define PKG_CONFIG_LIBDIR so that it will look in directories
2752 specidic to the target architecture.
2753 * man/dpkg-buildpackage.1: Document this change and also the -t option.
2755 2008-03-28 Raphaël Hertzog <hertzog@debian.org>
2757 * scripts/dpkg-buildpackage.pl: LDFLAGS now defaults to an empty
2758 value instead of "-Wl,-Bsymbolic-functions". The latter can break
2759 some libraries at run-time and such a change is best done
2760 at the beginning of a release cycle.
2762 2008-03-28 Raphaël Hertzog <hertzog@debian.org>
2764 * man/dpkg-source.1: Move a paragraph at its right place and some
2765 other presentation fixes.
2767 2008-03-27 Raphaël Hertzog <hertzog@debian.org>
2769 * scripts/Dpkg/Shlibs.pm: Support cross-compilation by adding
2770 directories containing libraries for the architecture that is
2773 2008-03-27 Raphaël Hertzog <hertzog@debian.org>
2774 Frank Lichtenheld <djpig@debian.org>
2775 Joey Hess <joeyh@debian.org>
2776 Colin Watson <cjwatson@debian.org>
2778 * Merge branch 'sourcev3'. It contains an extensive refactoring of
2779 dpkg-source around many new modules in scripts/Dpkg/Source/.
2781 General purpose changes:
2782 * scripts/Dpkg/IPC.pm: New module offering fork_and_exec() to
2783 conveniently execute any program in a child process. It hides
2784 all the error checking and lets you easily redirect input and
2786 * scripts/t/800_Dpkg_IPC.t: Non-regression tests for the module
2788 * scripts/Dpkg/Exit.pm: New module to register functions
2789 that would be called if the process was interrupted by a signal.
2790 Useful to cleanup temporary files if we're interrupted while doing
2791 some heavy I/O operation (as dpkg-source can do).
2792 * scripts/Dpkg/ErrorHandling.pm (info, errormsg): info() reports
2793 informational notices on STDOUT and errormsg() displays an error
2794 message on STDERR without dying. Use it only when you will die
2795 later on but want to display all errors before doing so.
2796 * scripts/dpkg-source.pl: Heavy rewrite/refactoring based on
2797 all the modules listed below.
2798 * man/dpkg-source.1: Update the manual page to document all the
2799 source package formats and the associated options.
2801 Dpkg::Source::* infrastructural modules:
2802 * scripts/Dpkg/Source/Compressor.pm: Compress and uncompress a
2804 * scripts/Dpkg/Source/CompressedFile.pm: Base class used to
2805 provide on-the-fly compression and decompression of any file.
2806 Dpkg::Source::Archive and Dpkg::Source::Patch inherit from it.
2807 * scripts/Dpkg/Source/Archive.pm: Create and manipulate tar files.
2808 * scripts/Dpkg/Source/Patch.pm: Create and manipulate patch files.
2809 * scripts/Dpkg/Source/Functions.pm: Misc helper functions.
2810 erasedir() removes recursively a directory in a safe manner.
2811 fixperms() make sure the permissions of all files in a tree
2814 Source package formats:
2815 * scripts/Dpkg/Source/Package.pm: Base class implementing the
2816 functions common to all source package formats.
2817 * scripts/Dpkg/Source/Package/V1_0.pm: Implement the actual
2818 "Format: 1.0" source package format.
2819 * scripts/Dpkg/Source/Package/V2_0.pm: Implement the wig&pen
2820 format as specified in http://www.dpkg.org/dpkg/NewSourceFormat.
2821 * scripts/Dpkg/Source/Package/V3_0/native.pm: Native source
2822 packages (single tarball) that supports all compressions
2823 methods. Compatible with "Format: 1.0" if gzip compression is
2825 * scripts/Dpkg/Source/Package/V3_0/quilt.pm: Next generation
2826 source package format based on wig&pen. It supports multiple
2827 .orig.tar files and all compressions schemes (gzip, bzip2, lzma).
2828 It uses quilt to apply patches at unpack time and is able to add
2829 a new patch at the end of the series if changes are present
2831 * scripts/Dpkg/Source/Package/V3_0/bzr.pm: Experimental format
2832 based on a bzr repository. Contributed by Colin Watson.
2833 * scripts/Dpkg/Source/Package/V3_0/git.pm: Experimental format
2834 based on a git repository. Contributed by Joey Hess.
2835 * scripts/Dpkg/Source/Package/V3_0/custom.pm: Special purpose
2836 format that can be used to create source packages with arbitrary
2837 files. Useful for helper tools (like git-buildpackage) which can
2838 generate source files by themselves.
2840 2008-03-25 Raphaël Hertzog <hertzog@debian.org>
2842 * scripts/dpkg-shlibdeps.pl: Let the user configure the set of
2843 warnings that he wants. Add a new warning for useless libraries
2844 on all binaries analyzed. Disable by default the warning that
2845 does the same but individually, for each binary analyzed.
2846 * man/dpkg-shlibdeps.1: Update manual page accordingly.
2848 2008-03-25 Ian Jackson <ian@davenant.greenend.org.uk>
2850 * lib/dpkg-db.h (modstatdb_note_ifwrite): New prototype.
2851 * ib/dbmodify.c (modstatdb_note_ifwrite): New function.
2853 2008-03-25 Ian Jackson <ian@davenant.greenend.org.uk>
2855 * src/archives.c (archivefiles): Call log_message.
2856 * src/configure.c (deferred_configure): Likewise.
2857 * src/packages.c (packages): Likewise.
2858 * src/processarc.c (process_archive): Call log_action after printing
2859 the action to perform to stdout.
2860 * src/help.c (log_action): Call statusfd_send.
2861 * man/dpkg.1: Document improved status-fd output.
2863 2008-03-25 Ian Jackson <ian@davenant.greenend.org.uk>,
2864 Guillem Jover <guillem@debian.org>
2866 * lib/dbmodify.c (status_pipes): Move definitions to ...
2867 * lib/log.c: ... here.
2868 * lib/dpkg-db.h (struct pipef, status_pipes): Move declarations to ...
2869 * lib/dpkg.h: ... here.
2870 (statusfd_send): New function protoype.
2871 * lib/log.c: Include <assert.h> and <unistd.h>.
2872 (statusfd_send): New function.
2873 * lib/dbmodify.c: Use statusfd_send instead of duplicate code.
2874 * src/configure.c: Likewise.
2875 * src/errors.c: Likewise.
2877 2008-03-25 Guillem Jover <guillem@debian.org>
2879 * lib/dbmodify.c (log_file, log_message): Move to ...
2880 * lib/log.c: ... here. New file.
2881 * lib/Makefile.am (libdpkg_a_SOURCES): Add 'log.c'.
2882 * lib/dpkg-db.h (log_file, log_message): Move declaration to ...
2883 * lib/dpkg.h: ... here.
2885 2008-03-25 Ian Jackson <ian@davenant.greenend.org.uk>,
2886 Guillem Jover <guillem@debian.org>
2888 * src/packages.c (struct pkginqueue): Move declaration to ...
2889 * src/main.h: ... here.
2890 (queuelen): Remove extern declaration.
2891 (struct pkgqueue): New declaration.
2892 (PKGQUEUE_DEF_INIT): New macro.
2893 (add_to_some_queue): New function prototype.
2894 (remove_from_some_queue): Likewise.
2895 * src/packages.c (queuehead, queuetail, queuelen): Replace with ...
2896 (queue): ... this. New variable. Fix all users.
2897 (add_to_queue): Refactor into ...
2898 (add_to_some_queue): ... this. Take a struct pkgqueue argument.
2899 (process_queue): Assert that the queue is empty at the end of the
2900 function. Refactor queue entry removal into ...
2901 (remove_from_some_queue): ... this. New function.
2902 (add_to_queue): New function.
2904 2008-03-25 Guillem Jover <guillem@debian.org>
2906 * src/main.h (ensure_package_clientdata): Move prototype to ...
2907 * src/filesdb.h: ... here.
2908 * src/help.c (ensure_package_clientdata): Move function to ...
2909 * src/filesdb.c: ... here.
2910 * src/query.c: Remove duplicate function.
2912 2008-03-25 Guillem Jover <guillem@debian.org>
2914 * lib/dpkg-db.h (unlockdatabase): Change prototype to not take any
2915 argument (as it was not being used). Fix all callers.
2916 * lib/lock.c (unlockdatabase): Likewise.
2918 2008-03-25 Ian Jackson <ian@davenant.greenend.org.uk>,
2919 Guillem Jover <guillem@debian.org>
2921 * lib/dpkg.h (lock_file): New function prototype.
2922 (unlock_file): Likewise.
2923 * lib/lock.c (cu_unlockdb): Rename to ...
2924 (cu_unlock_file): ... here. Rename dblockfd to lockfd, and take it
2926 (unlock_file): New function.
2927 (lock_file): Likewise.
2928 (dblockfd): Move variable to ...
2929 (lockdatabase): ... here. Call lock_file instead of doing the
2930 actual file locking.
2931 (unlockdatabase): Call unlock_file, instead if doing the actual
2934 2008-03-24 Ian Jackson <ian@davenant.greenend.org.uk>
2936 * lib/dpkg.h (error_printer): New function pointer type.
2937 (push_error_handler): Use error_printer instead of an explicit
2938 declaration in the argument list.
2939 (set_error_display): Likewise.
2940 * lib/ehandle.c (push_error_handler): Likewise.
2941 (set_error_display): Likewise.
2943 2008-03-23 Guillem Jover <guillem@debian.org>
2945 * configure.ac (DPKG_CHECK_COMPAT_FUNCS): Add 'strnlen'.
2946 * libcompat/Makefile.am [!HAVE_STRNLEN] (libcompat_a_SOURCES): Add
2947 'strnlen.c' and 'strnlen.h'.
2948 * libcompat/strnlen.c: New file (import from Simon Josefsson).
2949 * libcompat/strnlen.h: Likewise.
2950 * lib/tarfn.c: Include "strnlen.h".
2952 2008-03-22 Raphaël Hertzog <hertzog@debian.org>
2954 * scripts/t/200_Dpkg_Shlibs.t: Fix test suite to handle the
2955 recent addition of the "objid" field to symbol hash returned
2956 by Dpkg::Shlibs::Objump::Object->get_symbol().
2958 2008-03-22 Ian Jackson <ian@davenant.greenend.org.uk>
2960 * lib/dpkg-db.h (enum pkgstatus): Sort entries.
2961 * lib/dump.c (w_status): Change 'stat_configfiles' to 'stat_installed'
2962 in assert as that's the new last item.
2963 * src/processarc.c (process_archive): Likewise.
2964 * src/packages.c (process_queue): Likewise.
2965 (deppossi_ok_found): Match sorting of 'enum pkgstatus'.
2966 * dselect/pkgdisplay.cc (statusstrings): Likewise.
2967 (statuschars): Likewise.
2968 * src/help.c (statusstrings): Likewise.
2969 * src/query.c (list1package): Likewise.
2970 * lib/parsehelp.c (statusinfos): Likewise.
2972 2008-03-21 Guillem Jover <guillem@debian.org>
2974 * lib/parse.c (cu_parsedb): Remove duplicate function.
2975 (parsedb): Use cu_closefd instead of cu_parsedb.
2977 2008-03-21 Ian Jackson <ian@davenant.greenend.org.uk>
2979 * src/archives.c (tarobject): Make 'fd' static.
2980 * lib/parse.c (parsedb): Likewise. Use ehflag_normaltidy on
2981 push_cleanup and pop_cleanup. Move pop_cleanup call just before its
2983 * src/processarc.c (process_archive): Do not install two cleanup
2984 handlers to close the fsys-tarfile pipe. Mark pipe descriptors with
2985 invalid values when closed.
2987 2008-03-20 Guillem Jover <guillem@debian.org>
2989 * dpkg-deb/extract.c (safe_fflush): Change return type from int to
2992 2008-03-20 Ian Jackson <ian@davenant.greenend.org.uk>
2994 * lib/dpkg.h (cisspace): New prototype.
2995 * lib/utils.c (cisspace): New function definition.
2997 2008-03-20 Ian Jackson <ian@davenant.greenend.org.uk>
2999 * src/main.h (pkgadminfile): Move prototype to ...
3000 * lib/dpkg-db.h: ... here.
3001 * src/help.c (pkgadminfile): Move function definition to ...
3002 * lib/dbmodify.c: ... here.
3003 * src/query.c (pkgadminfile): Remove duplicated functions.
3005 2008-03-20 Ian Jackson <ian@davenant.greenend.org.uk>,
3006 Guillem Jover <guillem@debian.org>
3008 * src/query.c (cu_closepipe, cu_closefile, cu_closefd): Remove
3009 duplicated functions.
3010 * src/help.c (cu_closepipe, cu_closefile, cu_closedir)
3011 (cu_closefd): Move function definitions to ...
3012 * lib/cleanup.c: ... here. New file.
3013 * src/main.h (cu_closefile, cu_closepipe, cu_closedir)
3014 (cu_closefd): Move prototypes to ...
3015 * lib/dpkg.h: ... here.
3016 * lib/Makefile.am (libdpkg_a_SOURCES): Add 'cleanup.c'.
3018 2008-03-20 Ian Jackson <ian@davenant.greenend.org.uk>
3020 * lib/dpkg-db.h (modstatdb_checkpoint): New prototype.
3021 * lib/dbmodify.c (checkpoint): Remove static keyword. Rename to ...
3022 (modstatdb_checkpoint): ... this. Fix all callers.
3024 2008-03-20 Ian Jackson <ian@davenant.greenend.org.uk>
3026 * lib/tarfn.c (TarExtractor): Initialize h.LinkName and h.Name to
3029 2008-03-16 Raphaël Hertzog <hertzog@debian.org>
3031 * scripts/Dpkg/Shlibs/Objdump.pm: Add "objid" property to
3032 symbols and fake "soname" property with the basename of the
3033 object's filename if the object has no official SONAME.
3034 * scripts/dpkg-shlibdeps.pl: Add some more debugging messages.
3035 * scripts/dpkg-shlibdeps.pl: Also count usage of alternate sonames
3036 for symbols found in symbols files.
3038 2008-03-16 Guillem Jover <guillem@debian.org>
3040 * configure.ac (AC_CHECK_HEADERS): Add 'libintl.h'.
3041 * lib/gettext.h [!ENABLE_NLS]: Use HAVE_LIBINTL_H instead of
3044 2008-03-15 Erast Benson <erast@gnusolaris.org>
3046 * utils/start-stop-daemon.c (check): Move 'return' inside preprocessor
3047 conditionals, so that it does not just return on non-handled OSes.
3049 2008-03-15 Erast Benson <erast@gnusolaris.org>
3051 * utils/start-stop-daemon.c: Use __sun instead of __sparc__ to
3054 2008-03-15 Raphaël Hertzog <hertzog@debian.org>
3056 * debian/dpkg.prerm: Removed as it's empty.
3057 * Makefile.am: Remove debian/dpkg.prerm from EXTRA_DIST.
3059 2008-03-14 Raphaël Hertzog <hertzog@debian.org>
3061 * scripts/Dpkg/Changelog/Debian.pm: Fix regression by re-allowing
3062 capitals (like UNRELEASED!) in the distribution/package name.
3063 * scripts/t/600_Dpkg_Changelog/regressions: Add capitals in the
3064 distribution name as part of the non-regression tests.
3066 2008-03-14 Guillem Jover <guillem@debian.org>
3068 Fix errors spotted by Helge Kreutzmann.
3070 * man/dpkg-buildpackage.1: Refer to 'Debian' not 'debian'. Remove a
3071 space beofre a comma. Replace FFLAGS with CFLAGS when referring to
3072 usage similar to C for Fortran. Do not make bold a terminating
3074 * man/dpkg-checkbuilddeps.1: Mark 'debian/contorl' file with italics.
3076 2008-03-11 Ian Jackson <ian@davenant.greenend.org.uk>,
3077 Guillem Jover <guillem@debian.org>
3079 * lib/showcright.c: Rename to ...
3080 * lib/myopt-util.c: ... this.
3081 * lib/Makefile.am (libdpkg_a_SOURCES): Rename 'showcright.c' to
3084 * lib/dpkg.h (struct cmdinfo): Remove declaration.
3085 (showcopyright): Move prototype to ...
3086 * lib/myopt-util.c: ... here.
3087 (helponly, versiononly): New functions.
3088 * lib/myopt.h: Include <dpkg-def.h>.
3089 (showcopyright, helponly, versiononly, usage, printversion): New
3090 function prototypes.
3091 * dpkg-deb/main.c (printversion, usage): Remove static keyword.
3092 (helponly, versiononly): Remove function declarations and definitions.
3093 * dpkg-split/main.c: Likewise.
3094 * dselect/main.cc: Likewise.
3095 * src/main.c: Likewise.
3096 * src/query.c: Likewise.
3098 2008-03-11 Guillem Jover <guillem@debian.org>
3100 * lib/showcright.c (showcopyright): Move function prototype to ...
3101 * lib/dpkg.h: ... here, and replace existing one.
3103 2008-03-11 Guillem Jover <guillem@debian.org>
3105 * lib/Makefile.am (libdpkg_a_SOURCES): Add 'dpkg-def.h'.
3106 * lib/dpkg.h: Include 'dpkg-def.h'.
3107 (CONSTANT, PRINTFFORMAT, NONRETURNING, UNUSED): Move defninitions
3109 * lib/dpkg-def.h: ... here. New file.
3110 * utils/start-stop-daemon.c: Include 'dpkg-def.h'.
3111 (CONSTANT, PRINTFFORMAT, NONRETURNING, UNUSED): Remove defninitions.
3113 2008-03-11 Ian Jackson <ian@davenant.greenend.org.uk>
3115 * lib/dpkg.h (fgets_checked, fgets_must): New function declarations.
3116 * lib/utils.c: Include <string.h>.
3117 (fgets_checked, fgets_must): New function.
3118 * src/filesdb.c (ensure_diversions): Use new fgets_checked and
3119 fgets_must instead of duped code.
3121 2008-03-09 Ian Jackson <ian@davenant.greenend.org.uk>
3123 * dselect/pkgdisplay.cc (relatestrings): Change 'breaks with' to
3126 2008-03-09 Ian Jackson <ian@davenant.greenend.org.uk>
3128 * dselect/pkgdepcon.cc (packagelist::resolvedepcon): Move dep_breaks
3129 case after dep_conflicts so that it falls through.
3130 (packagelist::deppossatisfied): Handle dep_breaks in the same way as
3133 2008-03-09 Ian Jackson <ian@davenant.greenend.org.uk>
3135 * dselect/pkgdepcon.cc (packagelist::deppossatisfied): The new rule
3136 is that a Conflicts is violated if the target package is installed
3137 or to be error-preserved ie would_like_to_install() != 0 - except
3138 that we disregard packages which directly Conflict with themselves.
3140 2008-03-07 Raphaël Hertzog <hertzog@debian.org>
3142 * scripts/Dpkg/Fields.pm: Import Dpkg::Gettext since we use _g().
3144 2008-03-06 Sean Finney <seanius@seanius.net>
3146 * lib/dump.c (writedb): Free newfn and oldfn.
3147 * src/help.c (clear_istobes): Free pkgiterator 'it' by calling
3150 2008-03-02 Raphaël Hertzog <hertzog@debian.org>
3152 * scripts/dpkg-gencontrol.pl, scripts/dpkg-source.pl:
3153 Do not sort the dependency fields as order matters given
3154 the greedy algorithm that APT uses when trying to resolve
3155 dependencies. See discussion on debian-devel:
3156 http://lists.debian.org/debian-devel/2008/02/msg00893.html
3157 * man/dpkg-gencontrol.1: Document the above changes.
3159 * scripts/Dpkg/Deps.pm (simplify_deps): Tries to respect order put
3160 by the maintainer when simplifying dependencies.
3161 * scripts/t/400_Dpkg_Deps.t: Add a test-case to ensure that
3162 further changes respect this constraint.
3164 * scripts/dpkg-shlibdeps.pl: Sort generated dependencies to
3165 have a deterministic output.
3167 2008-02-29 Frank Lichtenheld <djpig@debian.org>
3169 * scripts/Dpkg/Changelog/Debian.pm (parse):
3170 One patch against the old parser that allowed
3171 chars '+' and '.' in distribution names was
3172 not forward ported into the new parser. Do
3174 * scripts/t/600_Dpkg_Changelog/regression:
3175 Add testcase for this regression.
3177 2008-02-22 Raphaël Hertzog <hertzog@debian.org>
3179 * man/dpkg-gensymbols.1: Fix some groff errors detected by lintian.
3180 * man/dpkg-query.1: Likewise..
3182 2008-02-22 Raphaël Hertzog <hertzog@debian.org>
3184 * man/deb-symbols.5: Escape some hyphens so that they do not end up
3186 * man/dpkg-architecture.1: Likewise.
3187 * man/dpkg-shlibdeps.1: Likewise.
3188 * man/start-stop-daemon.8: Likewise.
3190 2008-02-22 Raphaël Hertzog <hertzog@debian.org>
3191 Mike Frysinger <vapier@gentoo.org>
3193 * scripts/Makefile.am: Modify PATH during make check to include
3194 build directories containing dpkg and the scripts dpkg-*.
3196 2008-02-20 Raphaël Hertzog <hertzog@debian.org>
3198 * scripts/Dpkg/Changelog.pm (parse_changelog): Fallback
3199 into /usr/lib/dpkg/parsechangelog to find changelog parser
3200 in case $dpkglibdir points to another directory (for example
3201 when DPKG_DATADIR is manually set).
3203 2008-02-19 Frank Lichtenheld <djpig@debian.org>
3205 * m4/libs.m4 (DPKG_LIB_CURSES): Use libncursesw if
3207 * debian/control: Change build-dependency from
3208 libncurses5-dev to libncursesw5-dev.
3210 2008-02-19 Frank Lichtenheld <djpig@debian.org>
3212 * man/dpkg-source.1: Fix documentation of -sk and -sp. The directory
3213 with the unpacked original source will be removed, not the tarball.
3215 2008-02-17 Frank Lichtenheld <djpig@debian.org>
3217 * scripts/Dpkg.pm: Allow overriding $pkgdatadir
3218 with $ENV{DPKG_DATADIR}.
3219 * scripts/Makefile.am (check): Use DPKG_DATADIR.
3220 * debian/rules: Remove hack to copy data files
3223 2008-02-17 Frank Lichtenheld <djpig@debian.org>
3225 * man/dpkg-architecture.1: Document the files needed by
3228 2008-02-17 Frank Lichtenheld <djpig@debian.org>
3229 Matthias Klose <doko@cs.tu-berlin.de>
3231 * scripts/dpkg-buildpackage.pl: Set a set of environment variables
3232 for setting compiler and linker options, unless already set in the
3233 environment. See https://wiki.ubuntu.com/DistCompilerFlags for
3234 background information.
3235 * man/dpkg-buildpackage.1: Document the new behaviour for build
3236 related environment variables.
3238 2008-02-17 Zack Weinberg <zackw@panix.com>
3240 * man/deb-shlibs.5: Make this manual page a bit more elaborate and
3243 2008-02-13 Raphaël Hertzog <hertzog@debian.org>
3245 * scripts/Dpkg/Version.pm: Import Dpkg::Gettext since we use _g().
3247 2008-02-07 Guillem Jover <guillem@debian.org>
3249 * scripts/dpkg-gencontrol.pl: Do not output the Homepage field on udeb.
3251 2008-02-04 Guillem Jover <guillem@debian.org>
3253 * libcompat/Makefile.am (localedir): Remove unused variable.
3254 (INCLUDES): Do not pass -DLOCALEDIR nor -I$(top_srcdir)/lib.
3256 2008-02-03 Guillem Jover <guillem@debian.org>
3258 * m4/funcs.m4 (DPKG_CHECK_COMPAT_FUNCS): New macro.
3259 * configure.ac (DPKG_CHECK_COMPAT_FUNCS): Check getopt, getopt_long
3261 * libcompat/Makefile.am (libcompat_a_SOURCES): Set empty by default.
3262 Only add 'getopt.c getopt.h' if !HAVE_GETOPT. Only add 'getopt1.c'
3263 if !HAVE_GETOPT_LONG. Only add 'obstack.c obstack.h' if
3265 (INCLUDES): Add '-idirafter $(top_srcdir)/libcompat'.
3266 * dpkg-deb/Makefile.am (INCLUDES): Likewise.
3267 * dpkg-split/Makefile.am (INCLUDES): Likewise.
3268 * dselect/Makefile.am (INCLUDES): Likewise.
3269 * lib/Makefile.am (INCLUDES): Likewise.
3270 * src/Makefile.am (INCLUDES): Likewise.
3271 * utils/Makefile.am (INCLUDES): Use -idirafter instead of -I for
3272 '$(top_srcdir)/libcompat'.
3274 * src/Makefile.am (dpkg_LDADD): Add '../libcompat/libcompat.a'.
3275 (dpkg_query_LDADD): Likewise.
3276 * dpkg-deb/Makefile.am (dpkg_deb_LDADD): Likewise.
3277 * dpkg-split/Makefile.am (dpkg_split_LDADD): Likewise.
3278 * dselect/Makefile.am (dselect_LDADD): Likewise.
3280 2008-02-03 Guillem Jover <guillem@debian.org>
3282 * libcompat/Makefile.am (libcompat_a_SOURCES): Remove closeout.c,
3283 closeout.h, error.h, long-options.c and long-options.h.
3284 * libcompat/closeout.c: Remove unused file.
3285 * libcompat/closeout.h: Likewise.
3286 * libcompat/error.h: Likewise.
3287 * libcompat/long-options.c: Likewise.
3288 * libcompat/long-options.h: Likewise.
3290 2008-02-03 Raphaël Hertzog <hertzog@debian.org>
3292 * scripts/dpkg-shlibdeps.pl: Handle better the case when the
3293 library found has a different soname than the one used to look up
3294 the library file. Properly affect symbols coming from it to the
3295 soname wanted by the binary, thus avoiding invalid warnings about
3298 2008-01-31 Raphaël Hertzog <hertzog@debian.org>
3300 * scripts/dpkg-genchanges.pl: Always list all binary packages in
3301 the Description field of generated .changes files.
3303 2008-01-30 Frank Lichtenheld <djpig@debian.org>
3305 * scripts/dpkg-buildpackage.pl: Warn if build-dependencies
3306 are not satisfied during -S. Also warn that this might become
3307 an error in the future.
3309 2008-01-30 Justin Pryzby <jpryzby+d@quoininc.com>
3311 * utils/start-stop-daemon.c (do_help): Clarify --name and --user
3313 (parse_options): Reword --make-pidfile badusage.
3314 (pid_is_cmd): Fix typo in comment.
3315 * man/start-stop-daemon.8: Cosmetic fixes. Document that --chuid
3316 will change the group even if it has not been specified. Add EXIT
3317 STATUS and EXAMPLE sections.
3319 2008-01-29 Raphaël Hertzog <hertzog@debian.org>
3321 * scripts/dpkg-buildpackage.pl: Add a new -R option to be able to
3322 replace "debian/rules" by something else. The replacement command
3323 can contain parameters (and thus spaces). Fix -r option to also
3325 * man/dpkg-buildpackage.1: Document the new option and the changed
3328 2008-01-28 Guillem Jover <guillem@debian.org>
3330 * getopt: Rename to ...
3331 * libcompat: ... this.
3332 * configure.ac (AC_CONFIG_FILES): Likewise.
3333 * Makefile.am (SUBDIRS): Likewise.
3334 * utils/Makefile.am (INCLUDES): Likewise.
3335 (start_stop_daemon_LDADD): Use '../libcompat/libcompat.a' instead of
3336 '../getopt/libopt.a'.
3337 * libcompat/Makefile.am (noinst_LIBRARIES): Rename 'libopt.a' to
3339 (libopt_a_SOURCES): Rename to ...
3340 (libcompat_a_SOURCES): ... this.
3342 2008-01-27 Raphaël Hertzog <hertzog@debian.org>
3344 * README.feature-removal-schedule: Deprecate support of substvars
3345 in dpkg-source and dpkg-genchanges.
3346 * README.feature-removal-schedule, README.api: Deprecate support
3347 of custom changelog parsers that understand only the -v option.
3348 * README.feature-removal-schedule: Deprecate support of PGP.
3350 2008-01-27 Raphaël Hertzog <hertzog@debian.org>
3352 * scripts/Dpkg/Shlibs/SymbolFile.pm: Replace has_new_libs(),
3353 has_lost_libs(), has_new_symbols() and has_lost_symbols() by
3354 corresponding get_* functions.
3355 * scripts/dpkg-gensymbsols.pl: Display list of new/lost libs. Also
3356 display list of lost symbols when wildcards symbols have been
3358 * scripts/t/200_Dpkg_Shlibs.t: Adjust test suite to API change.
3360 2008-01-26 Frank Lichtenheld <djpig@debian.org>
3362 * scripts/Dpkg/Checksums.pm: New module for checksum handling
3363 in .changes and .dsc files.
3364 * scripts/dpkg-genchanges.pl, scripts/dpkg-source.pl: Use new
3365 module. Adds new 'Checksums-{Sha1,Sha256}' field
3366 to .changes and .dsc files. Increase changes format to 1.8.
3368 2008-01-25 Andreas Påhlsson <andreas.pahlsson@xcerion.com>
3370 * utils/start-stop-daemon.c (tsub): Remove function.
3371 (tmul): Fix normalization.
3372 (run_stop_schedule): Use timersub instead of tsub.
3374 2008-01-24 Raphaël Hertzog <hertzog@debian.org>
3376 * scripts/dpkg-genchanges.pl: Warn if the current version is
3377 smaller than the previous one.
3379 * scripts/dpkg-checkbuilddeps.pl: Add support of options -d and -c to
3380 use build dependencies/conflicts given on the command line instead of
3381 those retrieved from debian/control.
3382 * man/dpkg-checkbuilddeps.1: Document the new options.
3384 2008-01-22 Guillem Jover <guillem@debian.org>
3386 * dpkg-deb/extract.c (extracthalf): Refactor fflush and its buggy
3387 fpos handling to ...
3388 (safe_fflush): ... here. New function.
3390 2008-01-22 Guillem Jover <guillem@debian.org>
3392 * lib/vercmp.c [0] (verrevcmp): Remove dead code.
3394 2008-01-22 Guillem Jover <guillem@debian.org>
3396 * lib/dpkg.h [!offsetof] (offsetof): New compatibilty macro.
3397 * lib/parsedump.h (PKGIFPOFF): Use offsetof instead of ad-hoc
3399 (FILEFOFF): Likewise.
3400 (struct fieldinfo): Change integer member type to size_t.
3401 * lib/tarfn.c (TarChecksumOffset): Use offsetof instead of ad-hoc
3404 2008-01-22 Guillem Jover <guillem@debian.org>
3406 * configure.ac (AC_CHECK_HEADERS): Check for 'stddef.h'.
3408 2008-01-21 Colin Watson <cjwatson@debian.org>
3410 * dselect/pkgkeys.cc (packagelist_korgbindings): Add 'C'.
3411 (packagelist_kinterps): Add 'revertinstalled'.
3412 * dselect/bindings.cc (keybindings::descriptions): Likewise.
3413 * dselect/pkglist.h (class packagelist): Add kd_revertinstalled.
3414 * dselect/pkgcmds.cc (packagelist::kd_revertinstalled): New method.
3415 * man/dselect.1: Document new 'C' keybinding.
3417 2008-01-21 Guillem Jover <guillem@debian.org>
3419 * dpkg-deb/build.c (getfi): Use m_malloc instead of malloc.
3420 (do_build): Likewise.
3421 * dpkg-deb/extract.c (extracthalf): Likewise.
3422 * lib/mlib.c (buffer_write): Likewise.
3423 (buffer_copy): Likewise.
3424 * lib/myopt.c (loadcfgfile): Likewise.
3425 * lib/parse.c (parsedb): Likewise.
3426 * lib/showpkg.c (alloclstitem): Likewise.
3427 (parsefield): Likewise.
3428 (parsestring): Likewise.
3429 * lib/tarfn.c (StoC): Likewise.
3430 (TarExtractor): Likewise.
3431 * src/archives.c (try_deconfigure_can): Likewise.
3432 * src/main.c (execbackend): Likewise.
3434 2008-01-21 Guillem Jover <guillem@debian.org>
3436 * lib/mlib.c (m_strdup): New function.
3437 * lib/dpkg.h (m_strdup): New declaration.
3438 * lib/tarfn.c: Include <dpkg.h>.
3439 (TarExtractor): Use m_strdup instead of strdup.
3440 * lib/database.c (findpackage): Likewise.
3441 * lib/myopt.c (myfileopt): Likewise.
3442 * dpkg-deb/build.c (getfi): Likewise.
3443 * src/configure.c (md5hash): Likewise.
3444 * src/help.c (vbuildarglist): Likewis.
3445 * src/main.c (execbackend): Likewise.
3446 (commandfd): Likewise.
3448 2008-01-21 Guillem Jover <guillem@debian.org>
3450 * configure.ac: Bump version to 1.14.17~.
3452 2008-01-26 Raphaël Hertzog <hertzog@debian.org>
3454 * configure.ac: Release 1.14.16.6.
3456 2008-01-26 Raphaël Hertzog <hertzog@debian.org>
3458 * scripts/dpkg-gensymbols: Don't scan directories which are
3459 symlinks. They might point outside of the package build dir which
3460 results in addition of libraries which are not in the package.
3461 The libc6 package on amd64 is affected with a symlink "lib64" ->
3464 2008-01-24 Raphaël Hertzog <hertzog@debian.org>
3466 * configure.ac: Release 1.14.16.5.
3468 2008-01-24 Raphaël Hertzog <hertzog@debian.org>
3470 * scripts/Dpkg/Shlibs/SymbolFile.pm (load): Remove the loaded file
3471 from the %$seen hash at the end so that it's possible to include
3472 multiple times the same file (at the same level and not from any
3473 nested file obviously).
3475 * scripts/Dpkg/Shlibs/SymbolFile.pm: Blacklist many armel specific
3478 2008-01-23 Guillem Jover <guillem@debian.org>
3480 * configure.ac: Release 1.14.16.4.
3482 2008-01-23 Guillem Jover <guillem@debian.org>
3484 * scripts/Dpkg/Cdata.pm: Import capit from Dpkg::Fields.
3486 2008-01-22 Guillem Jover <guillem@debian.org>
3488 * configure.ac: Release 1.14.16.3.
3490 2008-01-22 Guillem Jover <guillem@debian.org>
3492 * utils/start-stop-daemon.c (tvselector): Remove typedef.
3493 (tvselector_sec): Remove function.
3494 (tvselector_usec): Likewise.
3495 (TVCALC_ELEM): Remove macro.
3497 (tsub): New function.
3499 (run_stop_schedule): Use tsub and tmul instead of TVCALC. Make sure
3500 the time is not negative.
3502 2008-01-22 Guillem Jover <guillem@debian.org>
3504 * utils/start-stop-daemon.c (main): Only call initgroups if changeuser
3507 2008-01-22 Guillem Jover <guillem@debian.org>
3509 * utils/start-stop-daemon.c (gid_in_current_groups): Remove function.
3510 (main): Call initgroups if the real user or group are different than
3511 the ones we should switch to. Call setgid before initgroups.
3513 2008-01-22 Raphaël Hertzog <hertzog@debian.org>
3515 * man/dpkg-parsechangelog.1: Fix typos reported by Helge Kreutzmann.
3517 2008-01-22 Raphaël Hertzog <hertzog@debian.org>
3519 * scripts/dpkg-genchanges.pl, scripts/dpkg-gencontrol.pl,
3520 scripts/dpkg-source.pl: Remove the IO-layer that converts to
3521 UTF-8. It's not as smart as I expected.
3523 * scripts/dpkg-genchanges.pl: Do not substitute variables on
3525 * man/dpkg-genchanges.pl: Document this change.
3527 2008-01-22 Guillem Jover <guillem@debian.org>
3529 * configure.ac: Release 1.14.16.2.
3531 2008-01-22 Guillem Jover <guillem@debian.org>
3533 * utils/start-stop-daemon.c (main): Move setuid code after initgroups
3536 2008-01-21 Frank Lichtenheld <djpig@debian.org>
3538 * configure.ac: Release 1.14.16.1
3540 * scripts/dpkg-source.pl: Fix "uninitialized value"
3543 * debian/control: Add libtimedate-perl to
3544 dpkg-dev's Depends and to Build-Depends (for
3545 build-time tests). This introduces our first
3546 run-time dependency on a perl module not shipped
3547 with Perl itself. But to me it seems not worth
3548 trying to replace that code.
3550 2008-01-21 Guillem Jover <guillem@debian.org>
3552 * configure.ac: Release 1.14.16.
3554 2008-01-21 Guillem Jover <guillem@debian.org>
3556 * README.api: New file.
3557 * README.feature-removal-schedule: Likewise.
3558 * Makefile.am (EXTRA_DIST): Add README.feature-removal-schedule and
3561 2008-01-21 Guillem Jover <guillem@debian.org>
3563 * configure.ac (AC_CHECK_FUNCS): Escape new lines.
3565 2008-01-21 Ian Jackson <ian@davenant.greenend.org.uk>
3567 * src/processarc.c (process_archive): Fix incorrect sizeof in a
3570 2008-01-21 Guillem Jover <guillem@debian.org>
3572 * utils/start-stop-daemon.c (main): Cast runas_uid and runas_gid to
3573 uid_t and gid_t when comparing to getuid() and getgid().
3575 2008-01-21 Guillem Jover <guillem@debian.org>
3577 * configure.ac (AC_CHECK_FUNCS): Merge arguments from both macro
3580 2008-01-21 Guillem Jover <guillem@debian.org>
3582 * configure.ac (AM_GNU_GETTEXT): Add external.
3583 (AC_CHECK_FUNCS): Add strtoul.
3584 (AC_CONFIG_FILES): Remove 'intl/Makefile'.
3585 * .gitignore: Remove intl.
3586 * Makefile.am (SUBDIRS): Likewise.
3587 * dpkg-deb/Makefile.am (INCLUDES): Remove '-I$(top_srcdir)/intl'.
3588 * dpkg-split/Makefile.am (INCLUDES): Likewise.
3589 * dselect/Makefile.am (INCLUDES): Likewise.
3590 * getopt/Makefile.am (INCLUDES): Likewise.
3591 * lib/Makefile.am (INCLUDES): Likewise.
3592 * src/Makefile.am (INCLUDES): Likewise.
3593 * utils/Makefile.am (INCLUDES): Likewise.
3595 2008-01-21 Guillem Jover <guillem@debian.org>
3597 * configure.ac (AC_CHECK_FUNCS): Add getdtablesize.
3598 * utils/start-stop-daemon.c (get_open_fd_max): New function.
3599 (main) [OShpux]: Remove.
3600 [!OShpux]: Use get_open_fd_max instead of hardcoded getdtablesize.
3602 2008-01-21 Guillem Jover <guillem@debian.org>
3604 * man/start-stop-daemon.8: Fix quotation to get rid of a spurious
3605 space between -c option and comma.
3607 2008-01-20 Guillem Jover <guillem@debian.org>
3609 * man/start-stop-daemon.8: Coalesce all matching options into a new
3610 section. List matching options by reference in the description
3613 2008-01-20 Guillem Jover <guillem@debian.org>
3615 * utils/start-stop-daemon.c (do_version): Change from 'Mandatory' to
3616 'Matching'. Suggested by Justin Pryzby.
3618 2008-01-20 Frank Lichtenheld <djpig@debian.org>
3620 * scripts/dpkg-buildpackage.pl: Move most functions to end of file
3621 to allow better reading of the program flow. This is a remnant of
3622 the shell script past.
3624 2008-01-19 Raphaël Hertzog <hertzog@debian.org>
3626 * scripts/dpkg-buildpackage.pl: Use
3627 Dpkg::Changelog::parse_changelog() instead of calling
3628 dpkg-parsechangelog.
3630 * scripts/dpkg-checkbuilddeps.pl: Fix a bug left-over from the
3631 switch to Dpkg::Control.
3633 2008-01-18 Raphaël Hertzog <hertzog@debian.org>
3635 * scripts/Dpkg/Shlibs/SymbolFile.pm,
3636 scripts/Dpkg/Shlibs/Objdump.pm, scripts/Dpkg/Shlibs.pm: Update and
3637 fix many syserr(), error(), warning() and subprocerr() calls to
3638 the new style where the sprintf call is integrated. Uniformize
3639 some error messages at the same time.
3641 2008-01-18 Raphaël Hertzog <hertzog@debian.org>
3643 * scripts/Dpkg/Shlibs/SymbolFile.pm (load): Parse *@<version>
3644 symbols names as wildcards and not as regular symbols. They
3645 provide the same dependency information for all symbols that share
3647 * scripts/Dpkg/Shlibs/SymbolFile.pm (merge_symbols): Use
3648 information provided by wildcards entries when new symbols are
3650 * scripts/dpkg-gensymbols.pl: Disable some checks which can't be
3651 done when symbols files have been generated with the help of
3653 * man/dpkg-gensymbols.1: Update the manual page to explain how to
3654 use wildcard entries.
3656 2008-01-18 Frank Lichtenheld <djpig@debian.org>
3658 * scripts/changelog/debian.pl: Don't hide failures inside eval().
3659 * scripts/Dpkg/Changelog.pm (data2rfc822): Don't fail if argument
3662 2008-01-18 Raphaël Hertzog <hertzog@debian.org>
3664 * scripts/Dpkg/Changelog.pm (parse_changelog): Rewrite it completely
3665 to not call dpkg-parsechangelog but do the work of this program by
3667 * scripts/dpkg-parsechangelog.pl: Rewrote it to use the enhanced
3668 parse_changelog() function.
3669 * scripts/dpkg-genchanges.pl, script/dpkg-gencontrol.pl: Adapted to use
3670 the modified parse_changelog().
3671 * scripts/dpkg-gensymbols.pl, scripts/dpkg-source.pl: Likewise.
3673 * scripts/dpkg-genchanges.pl: Change logic of -si option to
3674 include the original tarball only if the current upstream version
3675 differs from the upstream version of the previous changelog entry.
3677 * scripts/dpkg-genchanges.pl: Some code refactoring. Also fix the
3678 generation of the Description field to not have duplicate description
3679 in case of udeb (a single description per binary package is enough).
3680 Source only uploads will loose their Description: fields since they
3681 have no associated binary packages and Descriptions are only added
3682 for binary packages where we have a corresponding .deb to upload.
3684 2008-01-18 Guillem Jover <guillem@debian.org>
3686 * m4/arch.m4 (_DPKG_ARCHITECTURE): Do not use backticks inside double
3687 quotes, to support ancient shells.
3688 * m4/libs.m4 (DPKG_LIB_SELINUX): Likewise.
3690 2008-01-18 Guillem Jover <guillem@debian.org>
3692 * utils/start-stop-daemon.c (do_help): Coalesce mandatory options
3693 into a single paragraph, and state that at least one is required.
3695 2008-01-18 Guillem Jover <guillem@debian.org>
3697 * configure.ac (AC_CHECK_SIZEOF): Quote parameters.
3699 2008-01-18 Guillem Jover <guillem@debian.org>
3701 * THANKS: Add all the people that have contributed until now.
3703 2008-01-18 Guillem Jover <guillem@debian.org>
3705 * src/remove.c (ensure_pathname_nonexisting): Additionally check if
3706 errno is EEXIST after calling rmdir, per SUSv3 when the directory
3707 is not empty errno can be ENOTEMPTY or EEXIST.
3708 * src/help.c (removal_bulk_remove_files): Likewise.
3709 (removal_bulk_remove_leftover_dirs): Likewise.
3711 2008-01-18 Guillem Jover <guillem@debian.org>
3713 * scripts/update-alternatives.pl: Stop parsing '--test' as a valid
3715 ($testmode): Remove variable.
3716 (usage): Remove '--test' option help.
3717 * man/update-alternatives.8: Remove '--test' documentation.
3719 2008-01-18 Guillem Jover <guillem@debian.org>
3721 * utils/start-stop-daemon.c (do_help): Add missing semicolon.
3723 2008-01-17 Guillem Jover <guillem@debian.org>
3725 * THANKS: Convert to UTF-8.
3727 2008-01-17 Guillem Jover <guillem@debian.org>
3729 * utils/start-stop-daemon.c (do_help): Move version printing to ...
3730 (do_version): ... here. New function.
3731 (main): Call do_version instead of printf.
3733 2008-01-17 Raphaël Hertzog <hertzog@debian.org>
3735 * scripts/dpkg-source.pl: Revert to the old behaviour of not using
3737 * man/dpkg-source.1: Fix default value of -T parameter.
3739 2008-01-17 Raphaël Hertzog <hertzog@debian.org>
3741 * scripts/dpkg-genchanges.pl: Reinstate support of the ${Format}
3744 2008-01-17 Samuel Thibault <samuel.thibault@ens-lyon.org>,
3745 Guillem Jover <guillem@debian.org>
3747 * utils/start-stop-daemon.c (gid_in_current_groups): New function.
3748 (main): Call setuid only if requested to run as a different user
3749 than the current one. Call setgid only if requested to run as a group
3750 different than the current one, and initgroups only if the groups is
3751 not part of the supplementary groups.
3753 2008-01-16 Frank Lichtenheld <djpig@debian.org>
3755 * scripts/changelog/debian.pl: Restore the old default behaviour
3756 to parse STDIN. Also fix the -l option to specify a label for the
3757 parsed input, but the actual file. Still allow --file to be used for
3758 that. Use the new inhandle option of parse() to pass STDIN directly.
3759 This should be faster and removes the implicit dependency on
3762 * scripts/Dpkg/Changelog/Debian.pm (parse): Accept input in
3763 configuration item 'inhandle'. Allow to override the name of the
3764 file (used for reporting) with configuration item 'reportfile'.
3765 * scripts/Dpkg/Changelog.pm (init): Call parse if 'inhandle' is given.
3767 * scripts/dpkg-parsechangelog.pl: Remove one superfluous %s from a
3768 formatstring which was used to output $! before syserr() was used
3771 2008-01-16 Guillem Jover <guillem@debian.org>
3773 * utils/start-stop-daemon.c (do_stop): Do not print messages when
3774 running on quiet and test modes.
3775 (run_stop_schedule): Likewise.
3778 2008-01-16 Guillem Jover <guillem@debian.org>
3780 * utils/start-stop-daemon.c (do_pidfile): Cache pid value over
3783 2008-01-16 Guillem Jover <guillem@debian.org>
3785 * utils/start-stop-daemon.c: Fix indentation.
3787 2008-01-16 Guillem Jover <guillem@debian.org>
3789 * scripts/dpkg-divert.pl: Use :errno_h from POSIX.
3790 ($enoent): Remove variable.
3791 (ENOENT): Remove function.
3792 * scripts/update-alternatives.pl: Likewise.
3793 * utils/Makefile.am (pkglib_PROGRAMS): Remove variable.
3794 (enoent_SOURCES): Likewise.
3795 * utils/enoent.c: Remove file.
3797 2008-01-16 Guillem Jover <guillem@debian.org>
3799 * dpkg-deb/build.c (do_build): Use NULL instead of 0.
3800 * dpkg-deb/extract.c (extracthalf, do_fsystarfile): Likewise.
3801 * dpkg-deb/info.c (info_prepare, info_spew): Likewise.
3802 (do_contents, do_field): Likewise.
3803 * dpkg-deb/main.c (cipaction, action, cmdinfos, main): Likewise.
3804 * dpkg-split/join.c (do_join): Likewise.
3805 * dpkg-split/queue.c (do_auto): Likewise.
3806 * lib/dpkg.h (standard_startup, standard_shutdown): Likewise.
3807 * src/archives.c (destroyobstack, deconfigure, addfiletolist)
3808 (tarobject, check_breaks, check_conflict, archivefiles)
3809 (newconff_append): Likewise.
3810 * src/configure.c (deferred_configure, conffderef, md5hash): Likewise.
3811 * src/depcon.c (findbreakcyclerecursive, findbreakcycle)
3812 (depisok): Likewise.
3813 * src/enquiry.c (limiteddescription, badstatinfos, unpackchk)
3814 (assertversion, assertpredep, assertepoch, assertlongfilenames)
3815 (assertmulticonrep, predeppackage, cmpversions): Likewise.
3816 * src/errors.c (reports, print_error_perpackage): Likewise.
3817 * src/filesdb.c (diversions, diversionsfile, statoverridefile)
3818 (ensure_packagefiles_available, ensure_allinstfiles_available)
3819 (write_filelist_except, reversefilelist_init, reversefilelist_next)
3820 (ensure_diversions, iterfilestart, iterfilenext, filesdbinit)
3821 (findnamenode): Likewise.
3822 * src/help.c (checkpath, ensure_package_clientdata
3823 (vbuildarglist, cu_restorescriptsignals, script_catchsignals)
3824 (clear_istobes): Likewise.
3825 * src/main.c (cipaction, ignoredepends, forceinfos)
3826 (ACTION, OBSOLETE, ACTIONBACKEND, cmdinfos)
3827 (execbackend, commandfd, main): Likewise.
3828 * src/packages.c (queuehead, add_to_queue, packages, process_queue)
3829 (breakses_ok, dependencies_ok): Likewise.
3830 * src/processarc.c (process_archive): Likewise.
3831 * src/remove.c (deferred_remove, removal_bulk_remove_files)
3832 (removal_bulk_remove_leftover_dirs, removal_bulk_remove_configfiles)
3833 (removal_bulk): Likewise.
3834 * src/update.c (updateavailable): Likewise.
3835 * utils/start-stop-daemon.c (xgettimeofday, run_stop_schedule)
3836 (parse_options): Likewise.
3837 (pid_is_cmd, pid_is_user, pid_is_exec) [HAVE_KVM_H]: Likewise.
3839 2008-01-15 Raphaël Hertzog <hertzog@debian.org>
3841 * scripts/dpkg-shlibdeps.pl (filter_deps): Fix filtering of
3842 duplicated dependencies in fields of lesser priority. Dependencies
3843 coming from shlibs files have no associated version and this case
3844 wasn't handled properly.
3845 * scripts/dpkg-shlibdeps.pl: When the same binary is passed
3846 several times as parameters (associated to different fields),
3847 associate it to the most important field.
3849 2008-01-14 Raphaël Hertzog <hertzog@debian.org>
3851 * scripts/dpkg-genchanges.pl, scripts/dpkg-gencontrol.pl,
3852 scripts/dpkg-source.pl: Hint Perl into using UTF-8 for output
3853 on *.dsc, *.changes and DEBIAN/control files. Updated some open() calls
3854 for more consistency and added binmode() calls for filehandles that
3855 handle only binary data.
3857 2008-01-13 Raphaël Hertzog <hertzog@debian.org>
3859 * scripts/Dpkg/Fields.pm: Drop public function
3860 set_fields_importance() in favor of a method on
3861 Dpkg::Fields::Object. Integrate public function
3862 sort_field_by_importance() in the output() method where it was
3864 * scripts/Dpkg/Changelog.pm, scripts/dpkg-genchanges.pl,
3865 scripts/dpkg-gencontrol.pl, scripts/dpkg-source.pl: Updated to use
3866 the set_field_importance() method instead of the removed function.
3867 * scripts/Dpkg/Control.pm: Update pod documentation to refer to
3868 Dpkg::Fields::Object instead of the invalid Dpkg::Cdata::Object.
3870 2008-01-13 Frank Lichtenheld <djpig@debian.org>
3872 * scripts/Dpkg/Fields.pm (dump): Allow to omit the
3873 filehandle argument. If the function is called in
3874 non-void context, also remove the printed string
3875 to the caller. Together this avoids having to fiddle
3876 with filehandles if the caller doesn't want to.
3878 * scripts/Dpkg/Changelog.pm (data2rfc822): Simplify
3879 using this new behaviour.
3881 * scripts/t/600_Dpkg_Changelog.t: Add a new changelog
3882 'fields' that tests the handling of the different fields
3885 * scripts/Dpkg/Changelog.pm: Replace all field hashes
3886 with Dpkg::Changelog::Entry objects.
3887 (Dpkg::Changelog::Entry): Base on Dpkg::Fields::Object.
3888 (data2rfc822): Use Dpkg::Fields::Object->output and fix
3889 handling of user-defined fields.
3890 (data2rfc822_mult): Merge into data2rfc822 (autodetect
3891 whether the argument is an object or an array of object).
3892 * scripts/Dpkg/Changelog/Debian.pm: Adapt for
3893 Dpkg::Changelog::Entry changes.
3894 * scripts/t/600_Dpkg_Changelog.t: Likewise.
3896 2008-01-13 Frank Lichtenheld <djpig@debian.org>
3898 * man/dpkg-parsechangelog.1: Document the new command line options.
3900 2008-01-12 Raphaël Hertzog <hertzog@debian.org>
3902 * man/dpkg-shlibdeps.1: Fix a typo reported by Helge Kreutzmann.
3904 2008-01-12 Raphael hertzog <hertzog@debian.org>
3906 * scripts/Dpkg/Fields.pm, scripts/dpkg-source.pl: Add support of
3907 Dm-Upload-Allowed field. It automatically ends up in the dsc.
3909 2008-01-12 Raphael hertzog <hertzog@debian.org>
3911 * scripts/Dpkg/Fields.pm: Define variables containing
3912 authoritative list of fields for debian/control (one for source
3913 stanza, one for package stanza).
3914 * scripts/dpkg-genchanges.pl, scripts/dpkg-gencontrol.pl,
3915 scripts/dpkg-source.pl: Use the new variables to properly ignore
3916 valid fields. Some related cleanup.
3918 2008-01-11 Raphaël Hertzog <hertzog@debian.org>
3920 * scripts/dpkg-gencontrol.pl: Also force version in ${binary:Version}
3921 if dpkg-gencontrol -v<version> is used. That way we're consistent
3922 with the definition of that variable in deb-substvars(5).
3924 2008-01-10 Raphaël Hertzog <hertzog@debian.org>
3926 * man/dpkg-source.1: Explain better the first parameter of the '-b'
3929 2008-01-10 Raphaël Hertzog <hertzog@debian.org>
3931 * debian/control: Add a "Breaks: dpkg-dev (= 1.14.13),
3932 dpkg-dev (= 1.14.14)" on dpkg to force upgrade of those dpkg-dev
3933 versions that would break with the move of the compression related
3934 variables from Dpkg.pm into Dpkg/Compression.pm.
3936 2008-01-08 Raphaël Hertzog <hertzog@debian.org>
3938 * scripts/Dpkg/Version.pm: Import missing error function from
3939 Dpkg::ErrorHandling.
3941 * scripts/po/POTFILES.in: Add many modules containing translatable
3944 * scripts/Dpkg/Changelog.pm (parse_changelog): New function to
3945 replace controllib's parsechangelog.
3947 * scripts/dpkg-buildpackage.pl, scripts/dpkg-checkbuilddeps.pl,
3948 scripts/dpkg-genchanges.pl, scripts/dpkg-gencontrol.pl,
3949 scripts/dpkg-gensymbols.pl, scripts/dpkg-source.pl: Update scripts to
3950 use Dpkg::Changelog::parse_changelog instead of the old controllib.pl's
3951 parsechangelog. With this last change controllib.pl is no more used by
3954 * scripts/controllib.pl: Removed as it's no more used by any
3957 * debian/dpkg-dev.install: Add missing modules.
3959 2008-01-08 Frank Lichtenheld <djpig@debian.org>
3961 * scripts/dpkg-parsechangelog.pl: Make the
3962 -L option actually work (it's only been eleven
3965 * scripts/Dpkg/ErrorHandling.pm (report): export.
3967 2008-01-08 Raphaël Hertzog <hertzog@debian.org>
3969 * scripts/Dpkg/Cdata.pm, scripts/Dpkg/Control.pm: Add two new
3970 module to parse and manipulate files like debian/control.
3971 * scripts/t/600_Dpkg_Control.t,
3972 scripts/t/600_Dpkg_Control/control-1: Add non-regression tests for
3973 Dpkg::Control and Dpkg::Cdata.
3974 * scripts/dpkg-checkbuilddeps.pl, scripts/dpkg-genchanges.pl,
3975 scripts/dpkg-gencontrol.pl, scripts/dpkg-gensymbols.pl,
3976 scripts/dpkg-shlibdeps.pl, scripts/dpkg-source.pl: Update scripts
3977 to use the new modules Dpkg::Cdata, Dpkg::Control,
3978 Dpkg::Fields::Object and Dpkg::Substvars.
3980 * scripts/Dpkg/Version.pm (check_version): New function replacing
3981 checkversion of controllib.pl.
3982 * scripts/dpkg-source.pl, scripts/dpkg-buildpackage.pl: Use the
3985 * scripts/Dpkg/Vars.pm (set_source_package): New function to set
3986 and check the global variable $sourcepackage (replacing
3987 controllib's setsourcepackage).
3988 * scripts/dpkg-genchanges.pl, scripts/dpkg-gencontrol.pl,
3989 scripts/dpkg-source.pl: Use the new set_source_package.
3991 * scripts/dpkg-distaddfile.pl, scripts/dpkg-gencontrol.pl: Delete
3992 the chown(getfowner(), ...) on new files. It doesn't seem to do
3993 anything useful anymore as it got dropped from several other
3994 scripts over the years without problems.
3996 * scripts/dpkg-source.pl: Integrate readmd5sum from controllib here
3997 as it's the only user of that function.
3999 * scripts/controllib.pl: Get rid of everything except
4000 parsechangelog and its dependencies (parsecdata, syntax) that are
4003 * scripts/Makefile.am: Include all the new files in the
4004 distributed tarball.
4006 2008-01-08 Raphaël Hertzog <hertzog@debian.org>
4008 * scripts/Dpkg/ErrorHandling.pm (syntaxerr): New function to
4009 replace the syntax() function in controllib.pl.
4011 2008-01-07 Guillem Jover <guillem@debian.org>
4013 * scripts/dpkg-genchanges.pl: Ignore Homepage field in binary package
4015 * scripts/dpkg-source.pl: Likewise.
4017 2008-01-07 Guillem Jover <guillem@debian.org>
4019 * scripts/dpkg-checkbuilddeps.pl: Remove unused $dep_regex.
4021 2008-01-07 Guillem Jover <guillem@debian.org>
4023 * scripts/dpkg-checkbuilddeps.pl: Add build-essential as an implicit
4026 2008-01-07 Guillem Jover <guillem@debian.org>
4028 * configure.ac: Bump version to 1.14.16~.
4030 2008-01-07 Guillem Jover <guillem@debian.org>
4032 * configure.ac: Release 1.14.15.
4034 2008-01-07 Guillem Jover <guillem@debian.org>
4036 * src/archives.c (archivefiles): Use arglist instead of narglist.
4038 2008-01-07 Guillem Jover <guillem@debian.org>
4040 * lib/nfmalloc.c (nfmalloc): Remove inline keyword as extern inline
4041 changes semantics from GNU C to C99.
4042 * lib/varbuf.c (varbufaddc): Likewise.
4044 2008-01-07 Guillem Jover <guillem@debian.org>
4046 * dpkg-deb/extract.c (extracthalf): Move negative member length check
4048 (parseheaderlength): ... here. Change return type to size_t. Change
4049 variable r to ssize_t. Use strtol instead of strtoul to easily catch
4051 * dpkg-deb/info.c (info_spew): Use %zu in a format string instead of
4052 %lu to print pathlen, a size_t variable.
4053 * dpkg-split/queue.c (do_auto): Change j from unsinged int to int.
4054 Cast j to unsigned int when comparing it to i.
4055 * lib/varbuf.c (varbufprintf): Change ou from unsigned int to size_t.
4056 Change r from unsigned int to int. Cast value compared to r to int.
4057 (varbufprintf): Likewise.
4058 * src/archives.c (tarobject): Change r from size_t to ssize_t.
4059 Cast r to size_t when comparing it to symlinkfn.size.
4060 * src/main.c (setforce): Cast string difference to size_t instead of
4062 * utils/start-stop-daemon.c (parse_schedule): Change str_len from
4063 ptrdiff_t to size_t. Cast string difference to size_t instead of
4064 ptrdiff_t. Remove ptrdiff_t cast to sizeof.
4066 2008-01-07 Guillem Jover <guillem@debian.org>
4068 * scripts/Dpkg/BuildOptions.pm (set): Parse all options separated
4069 by spaces or comma, do not lowercase the option names, do not match
4070 on name substrings, and on recognized options with invalid values
4071 discard the value or the entire option.
4072 * scripts/t/300_Dpkg_BuildOptions.t: Adjust test suite.
4074 2008-01-06 Raphaël Hertzog <hertzog@debian.org>
4076 * man/deb-control.5: Explain better the ordering of call of
4077 postinst/prerm during installations and removal between a package
4078 and its dependencies.
4080 2008-01-06 Raphaël Hertzog <hertzog@debian.org>
4082 * scripts/Dpkg/Shlibs/Objdump.pm: Also retrieve dynamic relocation
4083 records from objdump by adding the -R option. Use this information
4084 to mark symbols affected by R_*_COPY relocations as undefined.
4085 They are initialized by the loader with values searched in the
4088 * scripts/Dpkg/BuildOptions.pm (set): Change the default value of
4089 the overwrite parameter to 1. The only use of this function in
4090 dpkg-buildpackage is missing the parameter and actually wants to
4091 overwrite the whole variable.
4092 * scripts/t/300_Dpkg_BuildOptions.t: Adjust the test suite for this
4095 2008-01-04 Raphaël Hertzog <hertzog@debian.org>
4097 * scripts/Dpkg/Shlibs/SymbolFile.pm: Replace #DEPRECATED by
4098 #MISSING in the output and recognize both while parsing. People
4099 understand better that way.
4101 2008-01-03 Raphaël Hertzog <hertzog@debian.org>
4103 * scripts/dpkg-shlibdeps.pl (find_symbols_file): When libraries
4104 are found in non-packaged files, first try to find the
4105 corresponding symbols file in the build tree containing that
4106 library. On the opposite, don't look up symbols files in debian/*
4107 build directories for libraries found in installed packages (build
4108 trees are scanned first and thus if they contain a needed library
4109 dpkg-shlibdeps will find the library there and not in an installed
4111 * scripts/dpkg-shlibdeps.pl (my_find_library): When defining the
4112 list of package build trees to scan, also consider those that
4113 contain symbols files (instead of only considering those that have
4115 * man/dpkg-shlibdeps.1: Document the change listed above.
4117 * scripts/dpkg-shlibdeps.pl: Add a new -S<pkgbuilddir> option to
4118 indicate a package build tree that should be scanned first when
4119 trying to find a library.
4120 * man/dpkg-shlibdeps.1: Document the new -S option.
4122 * scripts/dpkg-shlibdeps.pl (add_shlibs_dep): Use the same logic
4123 as find_symbols_files to find shlibs files. Check
4124 debian/*/DEBIAN/shlibs only when the library has not been found in
4125 an installed package, and give precedence to the shlibs provided
4126 by the binary package where the library has been found. Replaces
4127 the previous work-around that gave precedence to the package
4128 that contained the binary.
4129 * man/dpkg-shlibdeps.1: Document the above change in the shlibs
4132 2008-01-03 Guillem Jover <guillem@debian.org>
4134 * scripts/dpkg-buildpackage.pl: Do not automatically enable '-j'
4135 if DEB_BUILD_OPTIONS contains parallel=n, and allow overriding
4136 its value from the environment.
4137 * man/dpkg-buildpackage.1: Document new -j behaviour.
4139 2008-01-02 Guillem Jover <guillem@debian.org>
4141 * utils/start-stop-daemon.c [!__GNUC__] (fatal, badusage): Remove
4142 redundant function declarations.
4144 2008-01-02 Guillem Jover <guillem@debian.org>
4146 * src/main.h (struct stat): New forward declaration.
4148 2008-01-02 Guillem Jover <guillem@debian.org>
4150 * lib/dpkg.h (warningf): Add PRINTFFORMAT attribute.
4151 (buffer_copy_setup_PtrInt): Likewise.
4152 (buffer_copy_setup_PtrPtr): Likewise.
4153 (buffer_copy_setup_IntPtr): Likewise.
4154 (buffer_copy_setup_IntInt): Likewise.
4155 (decompress_cat): Likewise.
4156 (compress_cat): Likewise.
4157 * lib/dpkg-db.h (log_message): Likewise.
4159 2008-01-02 Guillem Jover <guillem@debian.org>
4161 * lib/dpkg.h (NONRETURNPRINTFFORMAT): Remove macro.
4162 (ohshit): Use NONRETURNING and PRINTFFORMAT instead of
4163 NONRETURNPRINTFFORMAT.
4164 (ohshite): Likewise.
4165 (badusage): Likewise.
4166 * utils/start-stop-daemon.c (NONRETURNPRINTFFORMAT): Remove macro.
4167 (fatal): Use NONRETURNING and PRINTFFORMAT instead of
4168 NONRETURNPRINTFFORMAT.
4170 2008-01-01 Guillem Jover <guillem@debian.org>
4172 * scripts/dpkg-buildpackage.pl: Use Dpkg::Compression. Use $comp_regex
4173 to match compressed diffs and tarballs.
4175 2008-01-01 Samuel Thibault <samuel.thibault@ens-lyon.org>
4177 * utils/start-stop-daemon.c (do_stop): Do not print 'failed to kill'
4178 warning when doing pid polling.
4180 2008-01-01 Guillem Jover <guillem@debian.org>
4182 * src/archives.c (archivefiles): Remove pointless strdup for execvp
4185 2008-01-01 Ian Zimmerman <itz@buug.org>
4187 * scripts/install-info.pl: Ignore wrapped lines when matching
4190 2008-01-01 John Zaitseff <J.Zaitseff@zap.org.au>
4192 * dselect/baselist.cc (baselist::wordwrapinfo): Stop processing when
4193 exceeding infopad line limit, and add a warning message.
4195 2008-01-01 Sven Rudolph <sr1@loom.sax.de>
4197 * dselect/baselist.cc (baselist::startdisplay): Set helpscreen_attr
4198 on monochrome terminals.
4200 2007-12-30 A. Costa <agcosta@gis.net>
4202 * man/dpkg-gensymbols.1, man/dpkg-shlibdeps.1: Fix some typos.
4203 * man/dpkg-source.1, man/deb-symbols.5: Likewise.
4205 2007-12-28 Raphaël Hertzog <hertzog@debian.org>
4207 * scripts/Dpkg.pm: Add a warning to avoid adding unnecessary stuff
4210 2007-12-27 Guillem Jover <guillem@debian.org>
4212 * scripts/Dpkg.pm (%EXPORT_TAGS, @EXPORT_OK): Remove.
4213 (@comp_supported, %comp_supported, %comp_ext, $comp_regex): Move
4215 * scripts/Dpkg/Compression.pm: ... here. New file.
4216 * scripts/dpkg-genchanges.pl: Use new module Dpkg::Compression
4217 instead of tag from Dpkg.
4218 * scripts/dpkg-source.pl: Likewise
4219 * scripts/Makefile.am (nobase_dist_perllib_DATA): Add
4220 'Dpkg/Compression.pm'.
4222 2007-12-27 Raphaël Hertzog <hertzog@debian.org>
4224 * scripts/Dpkg/Shlibs/SymbolFile.pm: Blacklist some armel specific
4225 symbols (__exidx_end, __exidx_start).
4227 2007-12-27 Raphaël Hertzog <hertzog@debian.org>
4229 * Makefile.am: Add some missing files in EXTRA_DIST. And add a
4230 dist-hook rule to check that all files contained in the git
4231 repository (except .gitignore) are included in the dist tarball.
4233 2007-12-27 Raphaël Hertzog <hertzog@debian.org>
4235 * configure.ac: Bump version to 1.14.15~.
4237 2007-12-27 Raphaël Hertzog <hertzog@debian.org>
4239 * configure.ac: Release 1.14.14.
4241 2007-12-27 Raphaël Hertzog <hertzog@debian.org>
4243 * debian/control: Bump dpkg dependency to >= 1.14.13 in dpkg-dev
4244 as dpkg-source needs the latest Dpkg.pm.
4245 * debian/control: Add libio-string-perl to Build-Depends as it's
4246 needed for a non-regression test (200_Dpkg_Shlibs.t).
4247 * debian/control: Fix priority of dselect to match the priority
4250 2007-12-27 Guillem Jover <guillem@debian.org>
4252 * configure.ac: Bump version to 1.14.14~.
4254 2007-12-27 Guillem Jover <guillem@debian.org>
4256 * configure.ac: Release 1.14.13.
4258 2007-12-27 Flavio Stanchina <flavio@stanchina.net>
4260 * scripts/dpkg-divert.pl (checkrename): Do not ignore ENOENT for
4263 2007-12-27 Daniel Leidert <daniel.leidert@wgdd.de>
4264 Guillem Jover <guillem@debian.org>
4266 * scripts/update-alternatives.pl: Refactor duplicate code into ...
4267 (checked_alternative): ... here. New function.
4268 (set_links): Call it.
4270 2007-12-27 Guillem Jover <guillem@debian.org>
4272 * scripts/update-alternatives.pl (gl): Use defined instead of length.
4274 2007-12-27 Guillem Jover <guillem@debian.org>
4276 * scripts/update-alternatives.pl (set_links): New function.
4277 (config_alternatives): Use set_links instead of duped code.
4278 (set_alternatives): Likewise.
4280 2007-12-27 Guillem Jover <guillem@debian.org>
4282 * scripts/update-alternatives.pl: Refactor all code to use
4283 checked_mv instead of duped code.
4285 2007-12-27 Guillem Jover <guillem@debian.org>
4287 * scripts/update-alternatives.pl: Refactor all code to use
4288 checked_symlink instead of duped code.
4290 2007-12-27 Guillem Jover <guillem@debian.org>
4292 * scripts/update-alternatives.pl (checked_rm): New function. Refactor
4293 all code to use it instead of duped code.
4295 2007-12-26 Raphaël Hertzog <hertzog@debian.org>
4297 * scripts/dpkg-source.pl: Provide a sane default $origtargz in all
4298 cases when such a file exists.
4300 2007-12-24 Guillem Jover <guillem@debian.org>
4302 * man/Makefile.am (all-local): Rename to ...
4303 (all-local-yes): ... this.
4304 (clean-local): Rename to ...
4305 (clean-local-yes): ... this.
4306 (install-data-local): Rename to ...
4307 (install-data-local-yes): ... this.
4308 (uninstall-local): Rename to ...
4309 (uninstall-local-yes): ... this.
4310 (all-local, all-local-no, clean-local, clean-local-no): New targets.
4311 (install-data-local, install-data-local-no): Likewise.
4312 (uninstall-local, uninstall-local-no): Likewise.
4314 2007-12-20 Raphaël Hertzog <hertzog@debian.org>
4316 * scripts/dpkg-shlibdeps.pl: Always consider the shlibs of the
4317 current package before the shlibs of other binary packages when
4318 looking for a dependency.
4320 2007-12-13 Raphaël Hertzog <hertzog@debian.org>
4322 * scripts/t/500_Dpkg_Path.t, scripts/Makefile.am: Add new
4323 non-regression tests for functions provided by the Dpkg::Path
4326 2007-12-12 Guillem Jover <guillem@debian.org>
4328 * scripts/dpkg-genchanges.pl: Fix typo (syserror() -> syserr()).
4330 2007-12-12 Guillem Jover <guillem@debian.org>
4332 * scripts/dpkg-gencontrol.pl (spfileslistvalue): Use || to fallback to
4333 a default value instead of using a temporary variable and checking if
4336 2007-12-12 Guillem Jover <guillem@debian.org>
4338 * scripts/dpkg-genchanges.pl: Use ||= instead of checking if the
4339 variables are not defined.
4340 * scripts/dpkg-gencontrol.pl: Likewise.
4341 * scripts/update-alternatives.pl (fill_missing_slavepaths): Likewise.
4343 2007-12-11 Raphaël Hertzog <hertzog@debian.org>
4345 * scripts/Dpkg/Deps.pm: Add a compare function that compares
4346 dependencies more intelligently than a comparison on their
4347 string representation. In particular we want >= and >> to sort
4348 lower than << and <= so that intervals are nicely displayed
4349 as "a (>= 1), a (<< 2)" instead of the ugly "a (<< 2), a (>= 1)".
4351 2007-12-10 Raphaël Hertzog <hertzog@debian.org>
4353 * README.translators: Explain how to format Git commit messages.
4355 2007-12-10 Raphaël Hertzog <hertzog@debian.org>
4357 * scripts/Dpkg/Shlibs/SymbolFile.pm (merge_symbols): Do not update
4358 the deprecated version of a symbol if it is already marked
4361 2007-12-09 Raphaël Hertzog <hertzog@debian.org>
4363 * scripts/Dpkg/Shlibs/SymbolFile.pm: Parse and dump properly
4364 new meta-information fields (on lines starting with an asterisk).
4365 Bugfix with alternate dependency handling that were not properly
4366 dumped. New functions get_dependencies() and get_field().
4367 * scripts/t/200_Dpkg_Shlibs.t,
4368 scripts/t/200_Dpkg_Shlibs/symbols.fake-2: Add a test case to
4369 verify that meta-information fields and alternate dependencies are
4370 properly parsed and dumped.
4371 * scripts/dpkg-shlibdeps.pl: Take into account the new
4372 Build-Depends-Package field in symbols files.
4373 * man/deb-symbols.5: Describe syntax of meta-information fields and
4374 document the Build-Depends-Package field.
4375 * man/dpkg-shlibdeps.1: Describe how the Build-Depends-Package field
4376 of symbols file is used.
4378 2007-12-09 Raphaël Hertzog <hertzog@debian.org>
4380 * scripts/Dpkg/Shlibs/SymbolFile.pm (load): Pass the current
4381 object as last parameter so that included files do not need to
4382 repeat the header line.
4383 * scripts/t/200_Dpkg_Shlibs/symbols.fake-1,
4384 scripts/t/200_Dpkg_Shlibs/symbols.include-1: Adjust some tests
4385 to also test inclusions with included files lacking a header line.
4386 * man/dpkg-gensymbols.1: Remove the restriction that included files
4387 must be valid symbol files on their own.
4389 2007-12-08 Raphaël Hertzog <hertzog@debian.org>
4391 * scripts/dpkg-shlibdeps.pl: Doesn't warn any more about libm.so.6
4392 being unused if the binary is also linked against libstdc++ since
4393 g++ always add an implicit -lm.
4395 2007-12-08 Raphaël Hertzog <hertzog@debian.org>
4397 * scripts/Dpkg/Shlibs.pm (find_library): When it finds a library
4398 in a directory which is just a symlink to another directory that
4399 is also considered, remember the other directory name as the
4401 * scripts/Dpkg/Path.pm: Add new function canonpath() and
4404 2007-12-05 Frank Lichtenheld <djpig@debian.org>
4406 * scripts/dpkg-buildpackage.pl: Add new
4407 -A option (passed to dpkg-genchanges).
4408 * scripts/dpkg-genchanges.pl: Add new -A
4409 option that will include only arch-indep
4410 packages into the upload.
4412 2007-12-05 Frank Lichtenheld <djpig@debian.org>
4413 Goswin von Brederlow <brederlo@informatik.uni-tuebingen.de>
4414 Bastian Blank <waldi@debian.org>
4416 * scripts/dpkg-genchanges.pl: Support more
4417 than one arch and more than one type of
4418 a package in debian/files.
4420 2007-12-04 Frank Lichtenheld <djpig@debian.org>
4422 * dpkg-deb/info.c (info_spew): Replace a
4423 %ld with %lu to fix compiler warning.
4425 * scripts/dpkg-genchanges.pl: Use comp_regex
4426 from Dpkg to correctly exlucde the .orig.tar
4427 even if it is not compressed with gzip.
4429 * scripts/dpkg-source.pl: Move definition
4430 of @comp_supported, %comp_supported, %comp_ext,
4432 * scripts/Dpkg.pm: ...here. Make them exportable
4433 via the :compression tag.
4435 * scripts/Dpkg/ErrorHandling.pm (usageerr):
4436 Support format strings like all the other
4437 error reporting functions.
4439 * scripts/Makefile.am (EXTRA_DIST): Add
4440 missing files from scripts/t/.
4442 * debian/rules: Call dh_installchangelogs
4443 and dh_installdocs for all packages instead
4445 * debian/dpkg-dev.docs: Symlink to dpkg.docs.
4446 * debian/dselect.docs: Likewise.
4447 * debian/dpkg-dev.preinst: Remove
4448 /usr/share/doc/dpkg-dev symlink on upgrade.
4449 * debian/dselect.preinst: Likewise.
4451 2007-11-29 Frank Lichtenheld <djpig@debian.org>
4453 * scripts/controllib.pl (parsecdata): Fix
4454 regex to determine the field name correctly
4455 if the field's value starts with a colon.
4457 2007-11-29 Frank Lichtenheld <djpig@debian.org>
4459 * man/deb-control.5: Move description of version format to...
4460 * man/deb-version.5: Take the section from policy describing version
4461 format and sorting since this is probably as good as it gets for
4464 2007-11-29 Guillem Jover <guillem@debian.org>
4466 * configure.ac: Bump version to 1.14.13~.
4468 2007-11-29 Guillem Jover <guillem@debian.org>
4470 * configure.ac: Release 1.14.12.
4472 2007-11-29 Guillem Jover <guillem@debian.org>
4474 * scripts/dpkg-scanpackages.pl: Use Dpkg::Version.
4475 (vercmp): Use compare_versions instead of 'dpkg --compare-versions'.
4477 2007-11-29 Guillem Jover <guillem@debian.org>
4479 * scripts/dpkg-scanpackages.pl: Use Dpkg::ErrorHandling. Use error
4480 syserr and subprocerr instead of die and sprintf.
4481 (load_override): Likewise.
4483 2007-11-29 Guillem Jover <guillem@debian.org>
4485 * scripts/dpkg-gencontrol.pl: Unify parsing of Section and Priority
4486 fields with Homepage.
4487 (%spvalue, %spdefault): Remove unued variables.
4488 (spfileslistvalue): Use %f instead of %spvalue.
4490 2007-11-29 Guillem Jover <guillem@debian.org>
4492 * scripts/dpkg-gencontrol.pl (spfileslistvalue): Add prototype. Move
4493 to the top of the file with the other functions.
4495 2007-11-29 Guillem Jover <guillem@debian.org>
4497 * src/main.c (log_file): Move definition to ...
4498 * lib/dpkg-db.h: ... here.
4499 * src/configure.c (status_pipes): Remove extern definition.
4500 * src/errors.c (status_pipes): Likewise.
4501 * lib/tarfn.c (TarExtractor): Do not declare as extern.
4503 2007-11-29 Guillem Jover <guillem@debian.org>
4505 * dpkg-deb/build.c (arbitrary_fields): Define as static.
4506 * lib/dbmodify.c (fnis): Likewise.
4507 * lib/fields.c (conffvalue_lastword): Likewise.
4508 * lib/tarfn.c (StoC): Likewise.
4509 * src/packages.c (breaks_check_target): Likewise.
4510 * utils/start-stop-daemon.c (siglist): Likewise.
4512 2007-11-28 Raphaël Hertzog <hertzog@debian.org>
4514 * scripts/dpkg-gensymbols.pl: The environment variable
4515 DPKG_GENSYMBOLS_CHECK_LEVEL can override the level of checks made
4516 by dpkg-gensymbols. This offers the possibility to unofficial
4517 ports to ignore errors due to symbols files that do not correspond.
4519 2007-11-28 Raphaël Hertzog <hertzog@debian.org>
4521 * scripts/dpkg-shlibdeps.pl: Harmonize a failure message.
4522 * man/dpkg-shlibdeps.1: Provide explanations concerning the two
4523 failures that dpkg-shlibdeps might generate. This is needed so
4524 that maintainers have an idea of what to do to fix the problems.
4526 2007-11-28 Raphaël Hertzog <hertzog@debian.org>
4528 * scripts/dpkg-shlibdeps.pl: Do not fail if it
4529 can't find unversioned libraries, just output a warning.
4530 Consequently skip the check on symbols when some libs were not
4531 found because one can not be sure that the symbols was not
4532 provided by the missing library.
4534 2007-11-28 Raphaël Hertzog <hertzog@debian.org>
4536 * scripts/dpkg-shlibdeps.pl (find_packages): Make sure to always
4537 return [''] for a miss in the 'dpkg -S' query.
4538 * scripts/dpkg-shlibdeps.pl: Always try the realpath($lib) as
4539 fallback to identify the package (even if it's not a symlink)
4540 because due to broken RPATH we might get library filenames such as
4541 "/usr/lib/gcc/i486-linux-gnu/4.2.3/../../../../lib/libssl.so.9.8"
4542 which is not a symlink and which can still be simplified to
4543 "/usr/lib/libssl.so.9.8" with realpath().
4545 2007-11-25 Raphaël Hertzog <hertzog@debian.org>
4547 * scripts/Dpkg/Shlibs.pm (find_library): Canonicalize paths before
4548 returning them as bad RPATH can lead to non-canonical paths
4549 causing us troubles in dpkg-shlibdeps.
4550 * scripts/dpkg-gensymbols.pl: Some formatting fixes.
4551 * scripts/dpkg-shlibdeps.pl: Likewise.
4553 2007-11-24 Raphaël Hertzog <hertzog@debian.org>
4555 * scripts/dpkg-gensymbols.pl: Add a new -I<file> option to force
4556 the usage of a specific file as basis for the generated symbols
4558 * man/dpkg-gensymbols.1: Document the new -I<file> option.
4560 2007-11-24 Guillem Jover <guillem@debian.org>
4562 * configure.ac: Bump version to 1.14.12~.
4564 2007-11-24 Guillem Jover <guillem@debian.org>
4566 * configure.ac: Release 1.14.11.
4568 2007-11-24 Guillem Jover <guillem@debian.org>
4570 * scripts/Makefile.am (clean-local): Run chmod only if t.tmp exists.
4572 2007-11-24 Guillem Jover <guillem@debian.org>
4574 * scripts/dpkg-scanpackages.pl (%vercache): Declare with 'my' instead
4576 * scripts/dpkg-shlibdeps.pl ($host_arch): Likewise.
4578 2007-11-24 Guillem Jover <guillem@debian.org>
4580 * scripts/Dpkg/Arch.pm (get_raw_host_arch): Do not shadow
4581 $gcc_host_gnu_type with a local variable.
4583 2007-11-24 Guillem Jover <guillem@debian.org>
4585 * scripts/dpkg-scanpackages.pl: Use parenthesis to force the
4586 precedence when checking if the specified override file exists.
4588 2007-11-24 Guillem Jover <guillem@debian.org>
4590 * scripts/dpkg-scanpackages.pl: Do not require controllib.pl anymore.
4592 2007-11-23 Aaron M. Ucko <ucko@debian.org>
4594 * scripts/dpkg-shlibdeps.pl: Optimize "dpkg -S" lookups by caching
4597 2007-11-23 Raphaël Hertzog <hertzog@debian.org>
4599 * scripts/dpkg-shlibdeps.pl: Limit the number of warnings
4600 displayed about symbols not found in libraries to 10 per binary.
4602 2007-11-23 Raphaël Hertzog <hertzog@debian.org>
4604 * scripts/dpkg-shlibdeps.pl: Look for libs in the package's build
4605 tree even if that package doesn't contain an shlibs file. Then
4606 don't complain about missing dependency information if the lib is in
4607 the same package than the binary. Also ignore it if the library is
4608 not versionned and can't have an shlibs file.
4609 * scripts/Dpkg/Path.pm (guess_pkg_root_dir)
4610 (check_files_are_the_same): New helper functions.
4612 2007-11-23 Guillem Jover <guillem@debian.org>
4614 * configure.ac: Bump version to 1.14.11~.
4616 2007-11-23 Guillem Jover <guillem@debian.org>
4618 * configure.ac: Release 1.14.10.
4620 2007-11-23 Guillem Jover <guillem@debian.org>
4622 * scripts/Dpkg/Arch.pm (get_build_arch): Rename to ...
4623 (get_raw_build_arch): ... this.
4624 (get_build_arch): New function.
4625 (get_host_arch): Rename to ...
4626 (get_raw_host_arch): ... this. Use get_raw_build_arch instead of
4628 (get_host_arch): New function.
4629 (@EXPORT_OK): Add get_raw_build_arch and get_raw_host_arch.
4630 * scripts/dpkg-architecture.pl: Import get_raw_build_arch and
4631 get_raw_host_arch instead of get_build_arch and get_host_arch.
4634 2007-11-23 Guillem Jover <guillem@debian.org>
4636 * scripts/dpkg-architecture.pl (%env): Rename to ...
4638 ($deb_build_arch, $deb_build_arch_os, $deb_build_arch_cpu)
4639 ($deb_build_gnu_cpu, deb_build_gnu_system, deb_build_gnu_type)
4640 ($deb_host_arch, $deb_host_arch_os, $deb_host_arch_cpu)
4641 ($deb_host_gnu_cpu, $deb_host_gnu_system, $deb_host_gnu_type): Use
4642 the %v hash to store those variables using the values from @ordered
4644 ($abi): New variable.
4646 2007-11-23 Guillem Jover <guillem@debian.org>
4648 * scripts/dpkg-gensymbols.pl (@librarypaths): Remove duplicated
4651 2007-11-23 Guillem Jover <guillem@debian.org>
4653 * scripts/Dpkg/Fields.pm (%fieldimps): Declare with 'my' instead
4656 2007-11-22 Guillem Jover <guillem@debian.org>
4658 * scripts/dpkg-name.sh (getname): Get the package extension from the
4659 Package-Type field, or fallback to deb if not present.
4660 * man/dpkg-name.1: Document that the Package-Type field is now
4663 2007-11-22 Raphaël Hertzog <hertzog@debian.org>
4665 * scripts/dpkg-shlibdeps.pl: Add more debug messages. Accept empty
4666 dependencies in shlibs files again. When symlinks to libraries are
4667 not found by "dpkg -S", try the same on the realpath of the
4668 library as fallback before deciding that it's a library being
4670 * scripts/Dpkg/Shlibs.pm: Always add paths from LD_LIBRARY_PATH
4671 at the beginning of the list of path to search, even if they
4672 are already listed (one might want to use LD_LIBRARY_PATH to
4673 change the search order).
4674 * scripts/dpkg-source.pl: Fix regex used to identify the extension
4675 of the orig.tar.{gz,bz2,lzma} file.
4677 2007-11-21 Raphaël Hertzog <hertzog@debian.org>
4679 * scripts/Dpkg/Shlibs/Objdump.pm (reset): Initialize HASH, GNU_HASH,
4681 (is_executable, is_public_library): Fix the checks.
4682 * scripts/t/200_Dpkg_Shlibs.t: Add some more tests to make sure
4683 the above functions behave as expected.
4684 * scripts/t/400_Dpkg_Deps.t: Add some more tests to make sure that
4685 empty dependency fields are correctly handled.
4686 * scripts/t/200_Dpkg_Shlibs/objdump.dbd-pg: New file.
4687 * scripts/t/200_Dpkg_Shlibs/objdump.ls: Likewise.
4688 * scripts/Makefile.am (EXTRA_DIST): Include
4689 't/200_Dpkg_Shlibs/objdump.dbd-pg' and 't/200_Dpkg_Shlibs/objdump.ls'.
4690 * scripts/controllib.pl (capit, set_field_importance)
4691 (sort_by_field_importance): Move functions to ...
4692 * scrips/Dpkg/Fields.pm: ... here. New file.
4693 * scripts/dpkg-shlibdeps.pl: Use Dpkg::Fields for capit().
4694 * scripts/dpkg-genchanges.pl: Use Dpkg::Fields for capit() and
4695 set_field_importance().
4696 * scripts/dpkg-gencontrol.pl: Likewise.
4697 * scripts/dpkg-source.pl: Likewise.
4699 2007-11-20 Guillem Jover <guillem@debian.org>
4701 * configure.ac: Bump version to 1.14.10~.
4703 2007-11-20 Guillem Jover <guillem@debian.org>
4705 * configure.ac: Release 1.14.9.
4707 2007-11-19 Raphaël Hertzog <hertzog@debian.org>
4709 * scripts/Dpkg/Path.pm: Fix behaviour of get_pkg_root_dir() when
4710 there's no DEBIAN subdirectory in none of the parent directories.
4711 * scripts/dpkg-shlibdeps.pl: Handle undef values returned by
4712 get_pkg_root_dir() and complain when it's likely to create a
4713 problem (when a RPATH contains $ORIGIN and when the value of
4714 this variable can't be determined because we don't know what
4715 is the root directory of the temporary tree).
4716 * scripts/Dpkg/Deps.pm: Fix parse() to handle empty fields instead
4719 2007-11-19 Guillem Jover <guillem@debian.org>
4721 * configure.ac: Bump version to 1.14.9~.
4723 2007-11-19 Guillem Jover <guillem@debian.org>
4725 * configure.ac: Release 1.14.8.
4727 2007-11-19 Guillem Jover <guillem@debian.org>
4729 * man/dpkg-architecture.1: Remove unneeded formatting surrounding '-c'
4730 in example command, as a side effect get rid of an undefined macro.
4731 * man/dpkg-checkbuilddeps.1: Remove usage of .UR macro, which was
4733 * man/dpkg-statoverride.8: Likewise.
4734 * man/dpkg-query.1: Likewise. Remove .T macro cruft.
4736 2007-11-19 Guillem Jover <guillem@debian.org>
4738 * scripts/dpkg-source.pl: Use %dep_field_type for the union option
4739 to Dpkg::Deps::parse, and use capit() to normalize the field names,
4740 instead of hardcoding them.
4742 2007-11-19 Guillem Jover <guillem@debian.org>
4744 * pkg-deb/build.c (arbitrary_fields): Add Package-Type,
4745 Subarchitecture, Kernel-Version and Installer-Menu-Item.
4746 * scripts/dpkg-scanpackages.pl (@fieldpri): Likewise.
4747 (%field_case): Add type argument.
4748 (usage): Document --type argument, and mark --udeb as obsolete.
4749 * man/dpkg-scanpackages.1: Likewise.
4750 * scripts/dpkg-gencontrol.pl: Parse Package-Type, Subarchitecture,
4751 Kernel-Version and Installer-Menu-Item from control file binary
4752 stanza. Warn if udeb specific fields are used on non-udeb packages.
4753 Add package with proper extension to the files list file.
4754 (@control_fields): Add Package-Type, Subarchitecture, Kernel-Version
4755 and Installer-Menu-Item.
4756 ($package_type): New variable.
4757 * scripts/dpkg-genchanges.pl: Ignore Package-Type, Subarchitecture,
4758 Kernel-Version and Installer-Menu-Item fields.
4759 * scripts/dpkg-source.pl: Likewise.
4761 2007-11-15 Guillem Jover <guillem@debian.org>
4763 * scripts/Dpkg/Arch.pm (read_cputable): Force a sane input record
4765 (read_ostable): Likewise.
4766 (read_triplettable): Likewise.
4768 2007-11-04 Guillem Jover <guillem@debian.org>
4770 * scripts/Makefile.am (clean): Set PERL5LIB to force use of shipped
4771 modules instead of system ones.
4773 2007-11-04 Guillem Jover <guillem@debian.org>
4775 * scripts/dpkg-architecture.pl: Move host and build arch detection
4777 * scripts/Dpkg/Arch.pm (get_host_arch): ... here.
4778 (get_build_arch, get_gcc_host_gnu_type): Likewise. New function.
4780 2007-11-04 Guillem Jover <guillem@debian.org>
4782 * scripts/dpkg-architecture.pl: Wrap long strings for die calls
4783 at less than 80 chars.
4785 2007-11-04 Guillem Jover <guillem@debian.org>
4787 * scripts/Dpkg/Arch.pm (debarch_to_gnutriplet): New function.
4788 (gnutriplet_to_debarch): Likewise.
4789 * scripts/dpkg-architecture.pl: Use debarch_to_gnutriplet and
4790 gnutriplet_to_debarch instead of nested calls to
4791 debtriplet_to_gnutriplet and debarch_to_debtriplet,
4792 debtriplet_to_debarch and gnutriplet_to_debtriplet.
4794 2007-11-04 Guillem Jover <guillem@debian.org>
4796 * scripts/dpkg-architecture.pl: Move setting of host and build arch
4797 variables after argument processing. Call list_arches from argument
4798 processing loop. Move architecture listing to ...
4799 (list_arches): ... here. New function.
4801 2007-11-04 Guillem Jover <guillem@debian.org>
4803 * scripts/Dpkg/Arch.pm (get_valid_arches): Return an array instead of
4804 printing the architectures.
4806 2007-10-29 Frank Lichtenheld <djpig@debian.org>
4808 * man/dpkg-query.1: Replace ' with \(aq in example.
4809 Reported by Daniel van Eeden <daniel_e -at- dds nl>
4810 * man/dpkg-source.1: Replace ' with \(aq in synopsis.
4812 2007-10-18 Raphaël Hertzog <hertzog@debian.org>
4814 * scripts/controllib.pl (parsedep, showdep): Remove unused functions.
4815 (@pkg_dep_fields, @src_dep_fields): Move variables to ...
4816 * scripts/Dpkg/Deps.pm: ... here. New file.
4817 * scripts/t/400_Dpkg_Deps.t: New file.
4818 * scripts/dpkg-checkbuilddeps.pl: Adapted to use the new
4820 * scripts/dpkg-source.pl: Likewise.
4821 * scripts/dpkg-scanpackages.pl: Likewise.
4822 * scripts/dpkg-gencontrol.pl: Likewise. Also gains new features
4823 such as automatic simplification of dependencies.
4824 * man/dpkg-gencontrol.1: Document the new behaviour with
4827 2007-10-18 Guillem Jover <guillem@debian.org>
4829 * scripts/Dpkg/ErrorHandling.pm (report): New function.
4830 (warning, warnerror, failure, syserr, error, internerr, unknown)
4831 (usageerr): Use report instead of sprintf. Accept a format string
4832 with variable number of arguments. Fix all callers.
4833 (subprocerr): Use failure instead of die and sprintf. Accept a
4834 format string with variable number of arguments. Fix all callers.
4836 2007-10-18 Guillem Jover <guillem@debian.org>
4838 * scripts/dpkg-buildpackage.pl (mustsetvar): Pass $text to sprintf
4841 2007-10-15 Raphaël Hertzog <hertzog@debian.org>
4843 * scripts/Dpkg/Version.pm: Fix compare_versions to handle properly
4844 the >= cases (it was improperly handled like >> due to a bad regexp).
4845 * debian/rules: Include cputable ostable triplettable in
4846 build-tree so that they are available during make check (Dpkg.pm
4847 exports ".." as $pkgdatadir during tests).
4848 * scripts/dpkg-shlibdeps.pl (my_find_library): Avoid unwanted
4849 modification of @pkg_shlibs.
4851 2007-10-14 Raphaël Hertzog <hertzog@debian.org>
4853 * scripts/Dpkg/Version.pm: Mark compare_versions as exportable.
4855 2007-10-13 Guillem Jover <guillem@debian.org>
4857 * scripts/Dpkg/Shlibs.pm: Do not call textdomain.
4858 * scripts/Dpkg/Shlibs/Objdump.pm: Likewise.
4859 * scripts/Dpkg/Shlibs/SymbolFile.pm: Likewise.
4861 2007-10-13 Guillem Jover <guillem@debian.org>
4863 * scripts/dpkg-gensymbols.pl: Use new Dpkg::Arch module.
4864 ($host_arch): Initialize with get_host_arch instead of direct call to
4865 'dpkg-architecture'.
4867 2007-10-12 Raphaël Hertzog <hertzog@debian.org>
4869 * scripts/dpkg-shlibdeps.pl: Use get_host_arch from Dpkg::Arch.
4871 2007-10-12 Guillem Jover <guillem@debian.org>
4873 * scripts/controllib.pl ($host_arch, get_host_arch, get_valid_arches)
4874 (@cpu, @os, %cputable, %ostable, %cputable_re, %ostable_re)
4875 (%debtriplet_to_debarch, %debarch_to_debtriplet, read_cputable)
4876 (read_ostable, read_triplettable, debtriplet_to_gnutriplet)
4877 (gnutriplet_to_debtriplet, debtriplet_to_debarch)
4878 (debarch_to_debtriplet, debwildcard_to_debtriplet)
4879 (debarch_eq, debarch_is): Move to ...
4880 * scripts/Dpkg/Arch.pm: ... here. New file.
4881 * scripts/Makefile.am (nobase_dist_perllib_DATA): Add 'Dpkg/Arch.pm'.
4882 * scripts/po/POTFILES.in: Add 'scripts/Dpkg/Arch.pm'.
4884 * scripts/controllib.pl: Use new Dpkg::Arch module.
4885 * scripts/dpkg-architecture.pl: Likewise.
4886 * scripts/dpkg-checkbuilddeps.pl: Likewise.
4887 * scripts/dpkg-genchanges.pl: Likewise.
4888 * scripts/dpkg-gencontrol.pl: Likewise.
4889 * scripts/dpkg-source.pl: Likewise.
4891 * scripts/dpkg-architecture.pl: Do not require controllib.pl anymore.
4893 2007-10-12 Frank Lichtenheld <djpig@debian.org>
4895 * scripts/t/300_Dpkg_BuildOptions.t: New file.
4896 Leads to the following fixes:
4897 * scripts/Dpkg/BuildOptions.pm (parse): Add
4898 support for nocheck and make it actually work.
4899 (set): Really set DEB_BUILD_OPTIONS. Discovered
4902 2007-10-12 Frank Lichtenheld <djpig@debian.org>
4904 * man/dpkg.1 (AUTHORS): Remove some unneccessary markup.
4905 Allows reuse of one more msgid.
4907 * man/Makefile.am (update-po): New target to easily
4908 update the .pot and .po files. Uses po4a --force.
4910 2007-10-11 Guillem Jover <guillem@debian.org>
4912 * scripts/controllib.pl ($warnable_error, $quiet_warnings): Remove
4913 variable declarations.
4914 (failure, syserr, error, internerr, warning, warnerror)
4915 (subprocerr): Remove functions.
4916 (unknown, usageerr): Move functions to ...
4917 * scripts/Dpkg/ErrorHandling.pm: ... here.
4918 (usageerr): Call usage from main::.
4919 (@EXPORT_OK): Add usageerr and unknown.
4921 * scripts/822-date.pl: Use Dpkg::ErrorHandling.
4922 * scripts/changelog/debian.pl: Likewise.
4923 * scripts/controllib.pl: Likewise.
4924 * scripts/dpkg-architecture.pl: Likewise.
4925 * scripts/dpkg-buildpackage.pl: Likewise.
4926 * scripts/dpkg-checkbuilddeps.pl: Likewise.
4927 * scripts/dpkg-distaddfile.pl: Likewise.
4928 * scripts/dpkg-genchanges.pl: Likewise.
4929 * scripts/dpkg-gencontrol.pl: Likewise.
4930 * scripts/dpkg-gensymbols.pl: Likewise.
4931 * scripts/dpkg-parsechangelog.pl: Likewise.
4932 * scripts/dpkg-shlibdeps.pl: Likewise.
4933 * scripts/dpkg-source.pl: Likewise.
4935 * scripts/dpkg-buildpackage.pl ($warnable_error): Import from
4936 Dpkg::ErrorHandling instead of declaring as our.
4937 * scripts/dpkg-source.pl ($warnable_error, $quiet_warnings): Likewise.
4939 * scripts/822-date.pl: Do not require controllib.pl anymore.
4940 * scripts/dpkg-parsechangelog.pl: Likewise.
4941 * scripts/dpkg-shlibdeps.pl: Likewise.
4943 2007-10-10 Guillem Jover <guillem@debian.org>
4945 * scripts/Dpkg/ErrorHandling.pm: Use Dpkg.
4946 ($progname): Do not set nor declare it.
4948 2007-10-10 Guillem Jover <guillem@debian.org>
4950 * scripts/Dpkg/ErrorHandling.pm ($warnable_error): Set to 1 to match
4953 2007-10-10 Guillem Jover <guillem@debian.org>
4955 * m4/arch.m4(_DPKG_ARCHITECTURE): Set PERL5LIB when calling
4956 dpkg-architecture.pl to use the shipped perl modules instead of
4959 2007-10-09 Guillem Jover <guillem@debian.org>
4961 * scripts/dpkg-gensymbols.pl: Use new Dpkg module. Do not declare
4962 nor initialize $version, $dpkglibdir and $progname anymore.
4964 2007-10-09 Frank Lichtenheld <djpig@debian.org>
4966 * scripts/dpkg-source.pl (usage): -W is the default
4967 for quite some time already. Adapt the description of
4969 * scripts/dpkg-buildpackage.pl (usage): Likewise.
4970 * man/dpkg-source.1: Likewise.
4971 * man/dpkg-buildpackage.1: Likewise.
4973 * scripts/dpkg-buildpackage.pl: Add -z/-Z to
4974 passthrough opts (will be passed to dpkg-source).
4975 * man/dpkg-buildpackage.1: Document all options only passed to
4976 dpkg-source. -s[nsAkurKUR], -z, and -Z were missing.
4978 * scripts/dpkg-source.pl: Support a subset of
4979 wig&pen (aka Format: 2.0) on build:
4980 Use .orig.tar.(bz2|lzma) if they are available
4981 and no .gz can be found. Also let the user specify
4982 via -Z(gzip|bzip2|lzma) how files that need to be
4983 generated should be compressed. -z([1-9]|best|fast)
4984 can be used to specify the compression level
4986 * man/dpkg-source.1: Change the rest of the man page to not contain
4987 any hardcoded .gz references. Document -Z and -z.
4989 2007-10-08 Raphaël Hertzog <hertzog@debian.org>
4990 Frank Lichtenheld <djpig@debian.org>
4992 Merge dpkg-shlibdeps-buxy branch.
4994 * scripts/Dpkg/ErrorHandling.pm: New file.
4995 * scripts/Dpkg/Gettext.pm: Likewise.
4996 * scripts/Dpkg/Path.pm: Likewise.
4997 * scripts/Dpkg/Shlibs.pm: Likewise.
4998 * scripts/Dpkg/Shlibs/Objdump.pm: Likewise.
4999 * scripts/Dpkh/Shlibs/SymbolFile.pm: Likewise.
5000 * scripts/Dpkg/Version.pm: Likewise.
5002 * scripts/dpkg-shlibdeps.pl: Add support for "symbols" files.
5003 * man/dpkg-shlibdeps.1: Document "symbols" files support.
5005 * scripts/dpkg-gensymbols.pl: New file.
5006 * man/dpkg-gensymbols.1: Likewise.
5008 * scripts/t/000_pod.t: New file.
5009 * scripts/t/100_Dpkg_Version.t: Likewise.
5010 * scripts/t/200_Dpkg_Shlibs.t: Likewise.
5011 * scripts/t/200_Dpkg_Shlibs/ld.so.conf: Likewise.
5012 * scripts/t/200_Dpkg_Shlibs/ld.so.conf_2: Likewise.
5013 * scripts/t/200_Dpkg_Shlibs/ld.so.conf.d/inf_recurse.conf: Likewise.
5014 * scripts/t/200_Dpkg_Shlibs/ld.so.conf.d/normal.conf: Likewise.
5015 * scripts/t/200_Dpkg_Shlibs/ld.so.conf.d/recursive.conf: Likewise.
5016 * scripts/t/200_Dpkg_Shlibs/objdump.glib-ia64: Likewise.
5017 * scripts/t/200_Dpkg_Shlibs/objdump.libc6-2.3: Likewise.
5018 * scripts/t/200_Dpkg_Shlibs/objdump.libc6-2.6: Likewise.
5019 * scripts/t/200_Dpkg_Shlibs/symbols.fake-1: Likewise.
5020 * scripts/t/200_Dpkg_Shlibs/symbols.fake-2: Likewise.
5021 * scripts/t/200_Dpkg_Shlibs/symbols.include-1: Likewise.
5022 * scripts/t/200_Dpkg_Shlibs/symbols.include-2: Likewise.
5024 2007-10-08 Guillem Jover <guillem@debian.org>
5026 * configure.ac: Bump version to 1.14.8~.
5028 2007-10-08 Guillem Jover <guillem@debian.org>
5030 * configure.ac: Release 1.14.7.
5032 2007-10-08 Guillem Jover <guillem@debian.org>
5034 * scripts/dpkg-source.pl: Do not replace substvars for build
5037 2007-10-08 Guillem Jover <guillem@debian.org>
5039 * man/deb-control.5: Document Origin and Bugs fields.
5041 2007-10-08 Guillem Jover <guillem@debian.org>
5043 * scripts/dpkg-gencontrol.pl: Refer to host architecture (instead of
5044 build) in error string, and quote architecture name.
5046 2007-10-08 Frank Lichtenheld <djpig@debian.org>,
5047 Guillem Jover <guillem@debian.org>
5049 * scripts/controllib.pl (debarch_is): Check if $alias is equal to
5050 $real or 'any' before mapping them to debtriplets.
5051 (debarch_to_debtriplet): Do not special case 'any' nor 'all'.
5052 (debarch_eq): Check if $a and $b are equal before mapping them to
5055 2007-10-07 Guillem Jover <guillem@debian.org>
5057 * scripts/dpkg-buildpackage.pl: Warn if run as root and $rootcommand
5058 has been specified. Error if run as non-root and $rootcommand is not
5061 2007-10-07 Guillem Jover <guillem@debian.org>
5063 * scripts/dpkg-buildpackage.pl (usage): Remove details about running
5064 fakeroot only if it's available.
5065 * man/dpkg-buildpackage.1: Document that fakeroot is now the default
5066 value in case -r is not specified.
5068 2007-10-07 Frank Lichtenheld <djpig@debian.org>
5069 Marcel Toele <mtoele@kern.nl>
5071 * scripts/dpkg-source.pl (handleformat): Include
5072 a trailing HT character in the diff labels if
5073 the filename contains spaces. Apparantly this is
5074 standard but undocumented diff behaviour.
5076 2007-09-30 Frank Lichtenheld <djpig@debian.org>
5078 * man/deb-control.5: Remove obsolete sentence regarding the role of
5079 the Priority and Section field. They have nothing to do with the
5080 archive layout since woody.
5082 * man/dpkg-source.1: Remove superfluous [options] from -b command
5085 2007-09-29 Frank Lichtenheld <djpig@debian.org>
5087 * scripts/dpkg-buildpackage.pl: Call checkversion()
5088 on version extracted from changelog. Since other
5089 program we call later will do the same there is
5090 really no reason not to fail early.
5092 * scripts/dpkg-buildpackage.pl (testcommand):
5093 Make the check more sensible. Instead of testing
5094 /usr/bin/$cmd, test `which $cmd`.
5096 * scripts/dpkg-buildpackage.pl (signfile): Call
5097 gpg with --utf8-strings since otherwise the key
5098 lookup fails with non-ASCII UTF8-encoded names.
5099 Since Debian changelogs should be UTF8 encoded,
5100 this is probably the more sane default. This
5101 will probably break if one uses a non-UTF8 locale
5102 and tries to give a uid on the commandline that
5103 contains non-ASCII chars. I think we can live with
5106 2007-09-28 Frank Lichtenheld <djpig@debian.org>
5108 * scripts/dpkg-buildpackage.pl (withecho): Remove
5109 empty strings at the begin of the command array.
5110 These can be caused by e.g. an emtpy $rootcommando.
5111 It is easiest to filter them out here.
5113 2007-09-24 Guillem Jover <guillem@debian.org>
5115 * scripts/dpkg-buildpackage.pl (signfile): Do not use absolute path
5118 2007-09-24 Guillem Jover <guillem@debian.org>
5120 * scripts/dpkg-buildpackage.pl (usage): Fix typo
5121 s/dpkg-genchangs/dpkg-genchanges/.
5123 2007-09-24 Guillem Jover <guillem@debian.org>
5125 * scripts/dpkg-buildpackage.pl ($warnable_errors): Rename to ...
5126 ($warnable_error): ... this, and declare as 'our'.
5128 2007-09-24 Frank Lichtenheld <djpig@debian.org>
5130 * man/dpkg-source.1: Rework documentation of -i and -I options to
5131 give clearer explanations and explain the differences between the
5132 two in syntax and semantics.
5134 2007-09-24 Jari Aalto <jari.aalto@cante.net>
5135 Frank Lichtenheld <djpig@debian.org>
5137 * scripts/dpkg-source.pl: Allow use of -I
5138 without filename pattern and load a list
5139 of default patterns which is in effect as
5140 similar as possible to the default regexp
5142 * man/dpkg-source.1: Document new behaviour of -I option.
5144 2007-09-23 Frank Lichtenheld <djpig@debian.org>
5146 * scripts/dpkg-buildpackage.pl: Add new option
5147 -j[<number>] that works like the make option of
5148 the same name. It will be passed to debian/rules in
5149 the MAKEFLAGS environment variable. Also the
5150 parallel=<n> DEB_BUILD_OPTIONS option will be honored
5151 and set correctly. The finally used value is determined by the
5152 following order: -j > DEB_BUILD_OPTIONS > MAKEFLAGS.
5153 Based on an idea by Robert Millan <rmh@aybabtu.com>.
5154 * scripts/Dpkg/BuildOptions.pm: Added. Support code
5155 for DEB_BUILD_OPTIONS handling by dpkg-buildpackage.
5156 * scripts/Makefile.am: Adapt.
5157 * man/dpkg-buildpackage.1: Document the new -j option.
5159 2007-09-23 Jari Aalto <jari.aalto@cante.net>
5161 * scripts/dpkg-source.pl ($diff_ignore_default_regexp): Add
5164 2007-09-20 Frank Lichtenheld <djpig@debian.org>
5166 * scripts/dpkg-sources.pl (version): Don't use
5167 printf if we don't need it, use print instead.
5169 * scripts/dpkg-buildpackage.sh (usage): Fix typo
5170 s/dpkg-genchangs/dpkg-genchanges/
5172 * scripts/Dpkg.pm: Make the regex for determining
5173 $progname more robust.
5175 * scripts/dpkg-buildpackage.sh: Move to...
5176 * scripts/dpkg-buildpackage.pl: Convert from
5178 * scripts/Makefile.am: Adapt to move.
5179 * scripts/po/POTFILES.in: Add dpkg-buildpackage.pl.
5181 2007-09-18 Guillem Jover <guillem@debian.org>
5183 * lib/mlib.c (checksubprocerr): Warn instead of erroring out in case
5184 of receiving a signal and having been asked to only warn.
5186 2007-09-18 Guillem Jover <guillem@debian.org>
5188 * src/remove.c (deferred_remove): Remove duplicate nested conditional,
5189 and move its contents to the outer one.
5191 2007-09-14 Brian M. Carlson <sandals@crustytoothpaste.ath.cx>
5193 * src/remove.c (deferred_remove): Store the previous package status
5194 when calling '<prerm> remove' and pass it to push_cleanup.
5195 * src/cleanup.c (cu_prermremove): Restore previous stored status if
5196 the '<postinst> abort-remove' call succeeds.
5198 2007-09-08 Guillem Jover <guillem@debian.org>
5200 * man/dpkg-scanpackages.1: Document that gzipped files are also used
5203 2007-09-08 A. Costa <agcosta@gis.net>
5205 * man/dpkg-deb.1: Fix typo ('seperated' -> 'separated').
5206 * man/start-stop-daemon.8: Fix typo ('themself' -> 'themselves').
5208 2007-09-08 Guillem Jover <guillem@debian.org>
5210 * scripts/dpkg-buildpackage.sh: Use fakeroot, if present, as default
5211 value for the '-r' option.
5213 2007-09-06 Guillem Jover <guillem@debian.org>
5215 * scripts/dpkg-genchanges.pl: Stop recognizing the obsolete Optional
5217 * scripts/dpkg-gencontrol.pl: Likewise.
5218 * scripts/dpkg-source.pl: Likewise.
5220 2007-09-06 Guillem Jover <guillem@debian.org>
5222 * scripts/dpkg-name.sh: Avoid escaped quotes messing with syntax
5223 highlighting by using $() instead of backticks.
5224 * scripts/dpkg-buildpackage.sh: Likewise.
5226 2007-09-06 Guillem Jover <guillem@debian.org>
5228 * scripts/dpkg-genchanges.pl ($host_arch): Do not declare as 'our'.
5229 * scripts/dpkg-gencontrol.pl ($host_arch): Likewise.
5231 2007-09-06 Guillem Jover <guillem@debian.org>
5233 * scripts/dpkg-genchanges.pl (%fieldimps): Remove unused variable.
5234 * scripts/dpkg-gencontrol.pl (%fieldimps): Likewise.
5235 * scripts/dpkg-source.pl (%fieldimps): Likewise.
5236 * scripts/controllib.pl (%fieldimps): Switch from 'our' to 'my'.
5238 2007-09-06 Guillem Jover <guillem@debian.org>
5240 * man/dpkg-scanpackages.1: Replace gzip with bzip2 as the requirement
5241 for compressed Packages files for apt.
5243 2007-09-06 Guillem Jover <guillem@debian.org>
5245 * scripts/822-date.pl: Add $dpkglib into @INC, needed by the
5246 controllib.pl require.
5248 2007-09-06 Guillem Jover <guillem@debian.org>
5250 * configure.ac: Bump version to 1.14.7~.
5252 2007-09-05 Guillem Jover <guillem@debian.org>
5254 * configure.ac: Release 1.14.6.
5256 2007-09-05 Guillem Jover <guillem@debian.org>
5258 * scripts/dpkg-gencontrol.pl: Properly override Homepage field from
5259 binary package stanzas.
5261 2007-08-31 Guillem Jover <guillem@debian.org>
5263 * dpkg-deb/build.c (arbitrary_fields): Add Tag.
5264 * scripts/dpkg-genchanges.pl: Ignore Tag field.
5265 * scripts/dpkg-gencontrol.pl: Parse Tag from binary package stanza.
5266 (@control_fields): Add Tag.
5267 * scripts/dpkg-scanpackages.pl (@fieldpri): Add Tag.
5268 * scripts/dpkg-source.pl: Ignore Tag field from binary package stanza.
5269 * man/deb-control.5: Document Tag field.
5270 * man/dpkg-query.1: Document Tag as a recognized field.
5272 2007-08-31 Guillem Jover <guillem@debian.org>
5274 * scripts/dpkg-genchanges.pl: Ignore Vcs-Browser, Vcs-Arch, Vcs-Bzr,
5275 Vcs-Cvs, Vcs-Darcs, Vcs-Git, Vcs-Hg, Vcs-Mtn and Vcs-Svn fields
5276 from control file source stanza.
5277 * scripts/dpkg-gencontrol.pl: Likewise.
5278 * scripts/dpkg-source.pl: Parse them instead.
5279 (@dsc_fields): Add them here.
5281 2007-08-31 Guillem Jover <guillem@debian.org>
5283 * scripts/dpkg-genchanges.pl: Do not leave unknown fields unwarned
5284 and explicitly ignore all known ones from control file source
5287 2007-08-30 Guillem Jover <guillem@debian.org>
5289 * scripts/dpkg-genchanges.pl: Ignore XB- fields instead of XC- fields
5290 from control file binary package stanzas.
5292 2007-08-28 Guillem Jover <guillem@debian.org>
5294 * scripts/update-alternatives.pl: Fix regression introduced on commit
5295 from 2007-08-08, which was producing a warning due to usage of
5296 uninitialized variables.
5298 2007-08-28 Guillem Jover <guillem@debian.org>
5300 * scripts/dpkg-gencontrol.pl: Add comments about the second pass
5301 parsing for dependency fields. Remove handling of uninteresting fields
5302 in the second pass parsing.
5304 2007-08-24 Guillem Jover <guillem@debian.org>
5306 * scripts/dpkg-gencontrol.pl: Allow a package stanza to override the
5307 Homepage field from the source stanza.
5309 2007-08-20 Guillem Jover <guillem@debian.org>
5311 * dpkg-deb/build.c (arbitrary_fields): New variable.
5312 (known_arbitrary_field): New function.
5313 (do_build): Call known_arbitrary_field to not warn on known arbitrary
5315 * scripts/dpkg-genchanges.pl: Ignore Homepage field.
5316 * scripts/dpkg-gencontrol.pl: Parse Homepage from source package
5318 (@control_fields): Add Homepage.
5319 * scripts/dpkg-scanpackages.pl (@fieldpri): Add Homepage.
5320 * scripts/dpkg-source.pl: Parse Homepage from source package stanza.
5321 (@dsc_fields): Add Homepage.
5322 * man/deb-control.5: Document Homepage field.
5323 * man/dpkg-query.1: Document Homepage as a recognized field.
5325 2007-08-18 Guillem Jover <guillem@debian.org>
5327 * scripts/dpkg-divert.pl (infol): Check if parameters are defined
5328 before using them. Use defined instead of length to check for undef
5331 2007-08-14 Guillem Jover <guillem@debian.org>
5333 * lib/parsehelp.c (parseerr): Switch from ternary operator to compose
5334 a string to a conditional call to the function with two different
5335 strings, making life easier for translators.
5336 * src/archives.c (tarobject): Likewise.
5337 * src/query.c (searchoutput): Switch from a loop with two iterations
5338 and ternary operators to compose strings to a conditional with two
5339 sequential calls with different strings, making life easier for
5342 2007-08-14 Guillem Jover <guillem@debian.org>
5344 * dpkg-split/main.c (rerr): Adjust string so that it gets merged by
5345 gettext with a similar one.
5347 2007-08-14 Guillem Jover <guillem@debian.org>
5349 * src/archives.c (linktosameexistingdir): Mark strings for translation.
5351 2007-08-11 Ian Jackson <iwj@ubuntu.com>
5353 * src/archives.c (linktosameexistingdir): New function.
5354 (tarobject): Call linktosameexistingdir if the tarball and the on-disk
5355 files are symlinks and ignore the symlink if it returns true.
5357 2007-08-08 Ian Jackson <iwj@ubuntu.com>
5359 * scripts/update-alternatives.pl: In the case where the slave is
5360 inapplicable do not attempt to create the slave link before
5363 2007-08-08 Guillem Jover <guillem@debian.org>
5365 * src/configure.c (deferred_configure): Do not print a new line
5366 if maintainer_script_installed returned true.
5368 2007-08-08 Guillem Jover <guillem@debian.org>
5370 * dpkg-deb/build.c (do_build): Use NULL instead of '(char *)0'.
5371 * dpkg-deb/extract.c (movecontrolfiles, extracthalf): Likewise.
5372 * dpkg-deb/info.c (cu_info_prepare, info_prepare): Likewise.
5373 * src/cleanup.c (cu_prermupgrade, cu_prermdeconfigure)
5374 (cu_prerminfavour, cu_preinstverynew, cu_preinstnew)
5375 (cu_preinstupgrade, cu_postrmupgrade, cu_prermremove): Likewise.
5376 * src/configure.c (deferred_configure, suspend): Likewise.
5377 * src/help.c (maintainer_script_alternative)
5378 (ensure_pathname_nonexisting): Likewise.
5379 * src/processarc.c (process_archive): Likewise.
5380 * src/remove.c (deferred_remove, removal_bulk_remove_files)
5381 (removal_bulk_remove_configfiles): Likewise.
5383 2007-08-08 Guillem Jover <guillem@debian.org>
5385 * src/cleanup.c (cu_prermdeconfigure): Split call to
5386 maintainer_script_installed depending on the conflictor variable.
5387 * src/packages.c (dependencies_ok): Remove comment stating that
5388 Breaks needs to be implemented.
5389 * src/depcon.c (depisok): Likewise. Remove return at the beggining
5390 of the function checking for a Breaks dependency, that was
5391 efectively making it a no-op in that case.
5392 * src/processarc.c (process_archive): Fix indentation. Split calls
5393 in deconfigure code to printf and maintainer_script_installed
5394 depending on the removing variable.
5396 2007-08-07 Guillem Jover <guillem@debian.org>
5398 * src/query.c (listpackages): Instead of allocating an additional
5399 packages array with room for the the current amount of packages,
5400 sort the existing one, and print the packages matching the pattern,
5401 which fixes segfaults when the resulting array was bigger than the
5402 current amount of packages.
5403 (showpackages): For each package show it only once it matches any
5404 of the patterns, so we avoid duplicated results.
5406 2007-08-07 Ian Jackson <iwj@ubuntu.com>
5408 * man/deb-control.5: Document Breaks field.
5409 * man/dpkg-query.1: Document Breaks as a recognized field.
5410 * man/dpkg.1: Add description of '--force-breaks'.
5411 * scripts/controllib.pl (@pkg_dep_fields): Add 'Breaks'.
5412 * scripts/dpkg-genchanges.pl: Ignore Breaks field.
5413 * scripts/dpkg-source.pl: Likewise.
5414 * src/archives.c (try_remove_can): Rename to ...
5415 (try_deconfigure_can): ... this. Generalize dependency force check
5416 by taking a function as argument. Store the possible package removal
5417 which caused the deconfiguration in the xinfo member of the package
5419 (try_remove_can): New function.
5420 (check_breaks): Likewise.
5421 * src/archives.h (check_breaks): New prototype.
5422 * src/cleanup.c (cu_prermdeconfigure): Handle case when argv[1]
5423 might be 0, if deconfigure was due to Breaks.
5424 * src/configure.c (deferred_configure): Call breakses_ok.
5425 * src/depcon.c (depisok): Add Breaks support.
5426 * src/help.c (force_breaks): New function.
5427 * src/main.c (fc_breaks): New variable.
5428 (forceinfo): Add 'breaks' as a supported option for '--force-...'.
5429 * src/main.h (struct perpackagestate): Add xinfo member.
5430 (fc_breaks): New variable definition.
5431 (breakses_ok): New prototype.
5432 (force_depends): Likewise.
5433 * src/packages.c (breaks_check_one): New function.
5434 (breaks_check_target): Likewise.
5435 (breakses_ok): Likewise.
5436 * src/processarc.c (process_archive): Check for Breaks dependencies,
5437 instead of bailing out if field found. Distinguish between deconfigure
5438 due to a removal due to Conflicts or Depends, and deconfigure due to
5439 an installation due to Breaks. Run the deconfiguration of each
5440 package to be deconfigured once, instead of once per each conflicting
5441 package being removed.
5443 2007-07-31 Ian Jackson <iwj@ubuntu.com>
5445 * src/archives.c (quote_filename): Change formatting to match the
5446 rest of the file (tab -> 2 spaces).
5448 2007-07-25 Guillem Jover <guillem@debian.org>
5450 * scripts/changelog/debian.pl: Switch from 'dpkg-gettext.pl' to
5453 2007-07-22 Guillem Jover <guillem@debian.org>
5455 * scripts/dpkg-gettext.pl: Move ...
5456 * scripts/Dpkg/Gettext.pm: ... here. Add a package statement.
5458 * scripts/Makefile.am (dist_pkglib_SCRIPTS): Remove 'dpkg-gettext.pl'.
5459 (nobase_dist_perllib_DATA): Add 'Dpkg/Gettext.pm'.
5461 * scripts/822-date.pl: Do not push $dpkglibdir into @INC anymore.
5462 * scripts/cleanup-info.pl: Likewise.
5463 * scripts/controllib.pl: Likewise.
5464 * scripts/dpkg-divert.pl: Likewise.
5465 * scripts/dpkg-scansources.pl: Likewise.
5466 * scripts/dpkg-statoverride.pl: Likewise.
5467 * scripts/install-info.pl: Likewise.
5468 * scripts/update-alternatives.pl: Likewise.
5470 2007-07-22 Guillem Jover <guillem@debian.org>
5472 * scripts/cleanup-info.pl: Use new Dpkg module, and remove variable
5473 declarations already present in the module.
5474 * scripts/controllib.pl: Likewise.
5475 * scripts/dpkg-architecture.pl: Likewise.
5476 * scripts/dpkg-checkbuilddeps.pl: Likewise.
5477 * scripts/dpkg-distaddfile.pl: Likewise.
5478 * scripts/dpkg-divert.pl: Likewise.
5479 * scripts/dpkg-genchanges.pl: Likewise.
5480 * scripts/dpkg-gencontrol.pl: Likewise.
5481 * scripts/dpkg-parsechangelog.pl: Likewise.
5482 * scripts/dpkg-scanpackages.pl: Likewise.
5483 * scripts/dpkg-scansources.pl: Likewise.
5484 * scripts/dpkg-shlibdeps.pl: Likewise.
5485 * scripts/dpkg-source.pl: Likewise.
5486 * scripts/dpkg-statoverride.pl: Likewise.
5487 * scripts/install-info.pl: Likewise.
5488 * scripts/update-alternatives.pl: Likewise.
5489 * scripts/822-date.pl: Likewise.
5490 * changelog/debian.pl: Likewise.
5492 * scripts/controllib.pl (init_substvars): Remove comment about
5493 $version needing to be a global variable set elsewhere.
5495 * scripts/dpkg-scanpackages.pl: Remove $0 mangling.
5496 (version, usage): Use $progname instead of $0.
5497 * scripts/dpkg-statoverride.pl: Likewise.
5498 * scripts/install-info.pl: Likewise.
5499 * scripts/dpkg-divert.pl: Likewise.
5500 (quit, badusage): Use $progname instead of $0.
5501 * scripts/update-alternatives.pl: Likewise.
5502 * scripts/dpkg-scansources.pl ($Me): Remove declaration.
5503 (xwarndie_mess, version, usage): Use $progname instead of $Me.
5505 2007-07-21 Guillem Jover <guillem@debian.org>
5507 * m4/perl.m4 (DPKG_PROG_PERL): Add support for user overridable
5508 PERL_LIBDIR variable, autodetected from the system installation.
5509 * scripts/Makefile.am (perllibdir): New variable.
5510 (nobase_dist_perllib_DATA): Likewise.
5511 (install-data-hook): New target.
5512 * scripts/Dpkg.pm: New file.
5514 2007-07-18 Guillem Jover <guillem@debian.org>
5516 * man/cleanup-info.8: Unify author and copyright information
5518 * man/deb-substvars.5: Likewise.
5519 * man/dpkg-checkbuilddeps.1: Likewise.
5520 * man/dpkg-deb.1: Likewise.
5521 * man/dpkg-divert.8: Likewise.
5522 * man/dpkg-name.1: Likewise.
5523 * man/dpkg-query.1: Likewise.
5524 * man/dpkg-split.1: Likewise.
5525 * man/dpkg-statoverride.8: Likewise.
5526 * man/install-info.8: Likewise.
5527 * man/update-alternatives.8: Likewise.
5529 2007-07-18 Guillem Jover <guillem@debian.org>
5531 * man/dpkg.1: Split independent options.
5532 * man/dpkg-buildpackage.1: Likewise.
5533 * man/dpkg-genchanges.1: Likewise.
5534 * man/dpkg-source.1: Likewise.
5536 2007-07-18 Guillem Jover <guillem@debian.org>
5538 * man/dpkg-buildpackage.1: Remove ', and' leftover from man page split.
5539 Substitute 'FILES' with 'SEE ALSO'.
5541 2007-07-18 Guillem Jover <guillem@debian.org>
5543 * man/dpkg-deb.1: Remove space before ellipsis in parameters.
5544 * man/dpkg-query.1: Likewise.
5545 * man/update-alternatives.8: Likewise.
5546 * man/dpkg.1: Likewise. Use commas instead if pipes to separate
5547 alternative options. Remove redundant preceding 'dpkg' from options.
5549 2007-07-18 Guillem Jover <guillem@debian.org>
5551 * man/dpkg.1: Fix italics and bold usage.
5552 * man/dpkg-divert.8: Likewise.
5553 * man/dpkg-buildpackage.1: Likewise.
5555 2007-07-10 Frank Lichtenheld <djpig@debian.org>
5557 * man/dpkg.1, man/dpkg-query.1, man/dpkg-deb.1: Synchronise usage
5558 information between these three man pages. Also fix some formatting
5559 oddities and small mistakes.
5561 2007-07-04 Frank Lichtenheld <djpig@debian.org>
5563 * man/Makefile.am (uninstall-local): New target to remove the
5564 translated man pages. Detected with the help of 'make distcheck'.
5566 2007-07-03 Frank Lichtenheld <djpig@debian.org>
5568 * configure.ac: Bump version to 1.14.6~.
5570 * configure.ac: Release 1.14.5.
5572 2007-07-02 Frank Lichtenheld <djpig@debian.org>
5574 * COPYING: Update to current version of GPL v2
5575 text. Updates FSF address and LGPL name.
5577 2007-07-01 Frank Lichtenheld <djpig@debian.org>
5579 * scripts/dpkg-source.pl: Warn that newly created empty files are
5580 not currently represented in the diff.
5582 2007-07-01 Ian Jackson <ian@davenant.greenend.org.uk>
5584 * scripts/dpkg-source.pl: Don't remove setgid bits
5585 on directories when extracting the .orig tarball
5586 since the user might prefer to have them. Also don't
5587 manually override user and group for extracted
5588 directories. Instead we will take tar take of most
5590 (extracttar): Explicetly specify --no-same-owner
5591 and --no-same-permissions. They are default anyway
5592 for non-root users, but no need to handle the source
5593 differently (i.e. more carelessly) if working as root.
5594 Since tar still insists on honoring the file permissions in the
5595 tar ball, fix them up so that they match what the user would
5596 expect according to his umask.
5598 2007-06-13 Guillem Jover <guillem@debian.org>
5600 * man/dpkg-source.1: Remove section describing few dpkg-gncontrol
5603 2007-06-12 Jiří Paleček <jpalecek@web.de>
5605 * dpkg-shlibdeps.pl: Support colon separated list of paths in the
5608 2007-06-12 Guillem Jover <guillem@debian.org>
5610 * man/dpkg-source.1: Fix explanation of '-b' option, remove a
5611 reference to checking for a missing empty string argument, and add a
5612 reference to '-sX' arguments affecting the behaviour.
5613 * man/install-info.8: Remove an additional space. Mark gzip in bold
5614 and remove redundant reference to GNU.
5616 2007-06-12 Guillem Jover <guillem@debian.org>
5618 * man/deb-substvars.5: Unify title header.
5619 * man/dpkg.1: Likewise.
5620 * man/dpkg-buildpackage.1: Likewise.
5621 * man/dpkg-checkbuilddeps.1: Likewise.
5622 * man/dpkg-deb.1: Likewise.
5623 * man/dpkg-divert.8: Likewise.
5624 * man/dpkg-scanpackages.1: Likewise.
5625 * man/dpkg-scansources.1: Likewise.
5626 * man/dpkg-shlibdeps.1: Likewise.
5627 * man/dpkg-source.1: Likewise.
5628 * man/dpkg-statoverride.8: Likewise.
5629 * man/install-info.8: Likewise.
5630 * man/update-alternatives.8: Likewise.
5632 2007-06-12 Guillem Jover <guillem@debian.org>
5634 * man/dpkg-divert.8: Mark dpkg-* commands in bold.
5635 * man/dpkg-buildpackage.1: Likewise.
5636 * man/dpkg-source.1: Likewise.
5637 * man/dpkg-statoverride.8: Likewise.
5639 2007-06-12 Guillem Jover <guillem@debian.org>
5641 * man/dpkg-source.1: Reference deb-substvars instead of dpkg-substvars.
5642 * man/dpkg-genchanges.1: Likewise.
5643 * man/dpkg-gencontrol.1: Likewise.
5645 2007-06-12 Guillem Jover <guillem@debian.org>
5647 * scripts/dpkg-scanpackages.pl: Move check for existence of $override
5648 outside load_override. Move load_override after having filled the
5649 %packages information.
5650 (load_override): Assume $override is always defined.
5652 2007-06-06 Guillem Jover <guillem@debian.org>
5654 * scripts/dpkg-source.pl ($diff_ignore_default_regexp): Add '.shelf'.
5656 2007-06-06 Guillem Jover <guillem@debian.org>
5658 * scripts/dpkg-source.pl (%archadded): Move to an outer scope to
5659 avoid duped entries in the output Architecture field.
5661 2007-05-24 Guillem Jover <guillem@debian.org>
5663 * ostable: Add gnulp-linux.
5664 * triplettable: Add gnulp-linux-i386 to lpia mapping.
5666 2007-05-24 Guillem Jover <guillem@debian.org>
5668 * configure.ac: Bump version to 1.14.5~.
5670 2007-05-24 Guillem Jover <guillem@debian.org>
5672 * configure.ac: Release 1.14.4.
5674 2007-05-24 Guillem Jover <guillem@debian.org>
5676 * scripts/controllib.pl (debarch_to_debtriplet): Match exactly 'any'
5677 or 'all', recognize again 'linux-<arch>', and do not accept unknown
5679 (debwildcard_to_debtriplet): New function.
5680 (debarch_is): Use debwildcard_to_debtriplet for the wildcard
5683 2007-05-23 Guillem Jover <guillem@debian.org>
5685 Revert commit on 2007-04-28 by Aaron M. Ucko <ucko@debian.org>.
5687 * scripts/dpkg-shlibdeps.pl: Trim down duplicated files from @libfiles
5688 only when passing it to dpkg-query instead.
5690 2007-05-23 Kylan Robinson <Kylan_Robinson@selinc.com>
5692 * scripts/dpkg-source.pl: Fix regex (/\.debian.tar/ ->
5695 2007-05-23 Guillem Jover <guillem@debian.org>
5697 * scripts/dpkg-source.pl ($copy_required): New variable.
5698 ($dumptardev, $dumptarino): Move declaration inside the block issues
5699 the stat call, and only compare them against $dsctardev and $dsctarino
5700 if the stat succeeded.
5702 2007-05-21 Guillem Jover <guillem@debian.org>
5704 * scripts/dpkg-statoverride.pl ($pat): Rename to ...
5705 ($pattern): ... this. Fixes $pattern being an unused variable.
5706 ($file): Move the declaration to its first usage in the for loop.
5708 2007-05-15 Guillem Jover <guillem@debian.org>
5710 * configure.ac: Bump version to 1.14.4~.
5712 2007-05-15 Guillem Jover <guillem@debian.org>
5714 * configure.ac: Release 1.14.3.
5716 2007-05-15 Guillem Jover <guillem@debian.org>
5718 * scripts/dpkg-divert.pl (checkmanymodes): Change the error message to
5719 say 'commands' instead of 'modes'.
5720 * scripts/dpkg-statoverride.pl (CheckModeConflict): Likewise. Use
5721 gettext for the string.
5723 2007-05-15 Guillem Jover <guillem@debian.org>
5725 * utils/start-stop-daemon.c (daemonize): Use _exit instead of exit, to
5726 avoid side effects while the parents terminate.
5728 2007-05-15 Guillem Jover <guillem@debian.org>
5730 * utils/start-stop-daemon.c (main): Move daemonizing code to ...
5731 (daemonize): ... here. New function. Fork twice.
5733 2007-05-15 Guillem Jover <guillem@debian.org>
5735 * scripts/update-alternatives.pl: Call fill_missing_slavepaths at the
5736 end of the 'install' conditional.
5737 (fill_missing_slavepaths): New function.
5739 2007-05-15 Guillem Jover <guillem@debian.org>
5741 * man/deb-control.5: Document comments in the control file.
5743 2007-05-15 Guillem Jover <guillem@debian.org>
5745 * man/install-info.8: Disambiguate the use of 'Info directory' with
5748 2007-05-15 Kurt B. Kaiser <kbk@shore.net>
5750 * man/install-info.8: Add missing commas, and information on the
5751 behaviour when no '--section' option is specifyied.
5753 2007-05-14 Guillem Jover <guillem@debian.org>
5755 * scripts/dpkg-divert.pl ($divertto, $package): Initialize to undef
5756 instead of an empty string.
5758 2007-05-13 Guillem Jover <guillem@debian.org>
5760 * scripts/controllib.pl (debarch_eq): Return 0 if
5761 debarch_to_debtriplet returns any undef value.
5762 (debarch_is): Likewise. As a side effect of changing to use arrays for
5763 the real and alias architectures, all parts of the triplet are now
5764 compared against 'any' as well.
5765 * scripts/dpkg-genchanges.pl: Remove redundant debarch_is being
5766 handled already in the grep.
5767 * scripts/dpkg-gencontrol.pl: Likewise.
5769 2007-05-12 Guillem Jover <guillem@debian.org>
5771 * scripts/controllib.pl (debian_arch_eq): Rename to ...
5772 (debarch_eq): ... this. Add prototype. Fix all callers.
5773 (debian_arch_is): Rename to ...
5774 (debarch_is): ... this. Add prototype. Fix all callers.
5776 2007-05-12 Guillem Jover <guillem@debian.org>
5778 * man/deb-substvars.5: Fix title to match the real section.
5780 2007-05-11 Guillem Jover <guillem@debian.org>
5782 * scripts/update-alternatives.pl ($manual): Rename to ...
5783 ($mode): ... this. Fix all users.
5784 (read_link_group): Change gl() name from 'manflag' to 'update_mode',
5785 and badfmt() string from 'manflag' to 'invalid update mode'.
5787 2007-05-11 Guillem Jover <guillem@debian.org>
5789 * scripts/update-alternatives.pl ($mode): Rename to ...
5790 ($action): ... this. Fix all users.
5791 (checkmanymodes): Rename to ...
5792 (check_many_actions): ... this. Fix all callers. Add prototype.
5793 Change the error message to say 'commands' instead of 'modes'.
5795 2007-05-10 Guillem Jover <guillem@debian.org>
5797 * scripts/dpkg-genchanges.pl: Only use the %p2f values if defined.
5799 2007-05-09 Guillem Jover <guillem@debian.org>
5801 * configure.ac: Bump version to 1.14.3~.
5803 2007-05-09 Guillem Jover <guillem@debian.org>
5805 * configure.ac: Release 1.14.2.
5807 2007-05-09 Guillem Jover <guillem@debian.org>
5809 * man/Makefile.am (install-data-local): Install the translated man
5810 pages from the srcdir.
5812 2007-05-09 Guillem Jover <guillem@debian.org>
5814 * Makefile.am (EXTRA_DIST): Add 'debian/dpkg-dev.lintian-overrides',
5815 'debian/dpkg.lintian-overrides', 'debian/dselect.lintian-overrides'
5816 and 'debian/source.lintian-overrides'.
5818 2007-05-09 Guillem Jover <guillem@debian.org>
5820 * scripts/update-alternatives.pl: Create the generic name symlinks
5821 when there's none, or when it differs to the current one.
5823 2007-05-09 Guillem Jover <guillem@debian.org>
5825 * scripts/update-alternatives.pl (config_message): Handle the case
5826 when @versions is empty. Return a negative value if there's nothing to
5828 (config_alternatives): Check for config_message exit value to decide
5829 to return instead of @versions being empty.
5831 2007-05-09 Guillem Jover <guillem@debian.org>
5833 * scripts/dpkg-buildpackage.sh: Remove check for variable being empty,
5834 as the path check quoted, thus removing the bashisms.
5836 2007-05-08 Guillem Jover <guillem@debian.org>
5838 * configure.ac: Bump version to 1.14.2~.
5840 2007-05-08 Guillem Jover <guillem@debian.org>
5842 * configure.ac: Release 1.14.1.
5844 2007-05-08 Guillem Jover <guillem@debian.org>
5846 * configure.ac: Bump version to 1.14.1~.
5848 2007-05-08 Guillem Jover <guillem@debian.org>
5850 * configure.ac: Release 1.14.0.
5852 2007-05-08 Guillem Jover <guillem@debian.org>
5854 * scripts/controllib.pl (read_cputable): Localize $_.
5855 (read_ostable): Likewise.
5856 (read_triplettable): Likewise.
5857 (parsedep): Check first for the negated architectures.
5858 * scripts/dpkg-checkbuilddeps.pl: Do not enable slurp mode globally.
5859 Use get_host_arch instead of directly dpkg-architecture.
5861 2007-05-08 Guillem Jover <guillem@debian.org>
5863 * scripts/dpkg-genchanges.pl ($pkgdatadir): New variable.
5864 * scripts/dpkg-gencontrol.pl: Likewise.
5865 * scripts/dpkg-source.pl: Likewise.
5866 * scripts/dpkg-checkbuilddeps.pl: Likewise.
5867 ($dpkglibdir): Change to '..'.
5869 2007-05-08 Guillem Jover <guillem@debian.org>
5871 * scripts/update-alternatives.pl: Do not exit with an error on
5872 '--remove' with a non-existing link group file for now, to be
5873 consistent with the case when trying to remove an non-existing path.
5875 2007-05-08 Guillem Jover <guillem@debian.org>
5877 * scripts/update-alternatives.pl: Fix warning when executed w/o any
5880 2007-05-08 Guillem Jover <guillem@debian.org>
5882 * Makefile.am (EXTRA_DIST): Rename debian/pseudo-tags to
5884 * man/Makefile.am (dist-hook): New target.
5885 (EXTRA_DIST): New variable.
5887 2007-05-07 Guillem Jover <guillem@debian.org>
5889 * ostable: Add gnueabi-linux.
5890 * triplettable: Add gnueabi-linux-arm to armel mapping.
5892 2007-05-07 Guillem Jover <guillem@debian.org>
5894 * scripts/controllib.pl (%debtriplet_to_debarch): New variable.
5895 (%debarch_to_debtriplet): Likewise.
5896 (split_gnu, split_debian): Remove functions.
5897 (debian_arch_fix, debian_arch_split): Likewise.
5898 (debian_to_gnu, gnu_to_debian): Likewise.
5899 (read_triplettable): New function.
5900 (gnutriplet_to_debtriplet, debtriplet_to_gnutriplet): Likewise.
5901 (debtriplet_to_debarch, debarch_to_debtriplet): Likewise.
5902 (get_valid_arches): Call read_cputable and read_ostable if @cpu or @os
5903 are empty. Use debtriplet_to_debarch instead of debian_arch_fix.
5904 (debian_arch_eq): Use debarch_to_debtriplet instead of
5905 debian_arch_split. Compare the whole Debian triplet.
5906 (debian_arch_is): Likewise.
5907 * scripts/dpkg-architecture.pl: Do not call the now internal functions
5908 read_cputable and read_ostable. Use debtriplet_to_gnutriplet,
5909 gnutriplet_to_debtriplet, debarch_to_debtriplet and
5910 debtriplet_to_debarch instead of debian_to_gnu, gnu_to_debian.
5911 * debian/archtable: Update comment to reflect the new Debian triplet.
5912 * cputable: Likewise.
5913 * ostable: Likewise. Include the ABI information in the Debian name.
5914 * triplettable: New file.
5915 * Makefile.am (dist_pkgdata_DATA): Add triplettable.
5917 2007-05-04 Guillem Jover <guillem@debian.org>
5919 * scripts/dpkg-architecture.pl: Use get_valid_arches instead of
5920 directly using @os and @cpu variables.
5921 ($pkgdatadir): Change from a 'my' to an 'our' variable.
5922 (@cpu, @os, %cputable, %ostable, %cputable_re, %ostable_re,
5923 read_cputable, read_ostable, split_debian, debian_to_gnu,
5924 split_gnu, gnu_to_debian): Move to ...
5925 * scripts/controllib.pl: ... here.
5926 ($pkgdatadir): Declare as 'our'.
5927 (get_valid_arches): New function.
5929 2007-05-04 Guillem Jover <guillem@debian.org>
5931 * scripts/update-alternatives.pl: Call read_link_group also in
5932 'install' mode, but do not exit nor print an error if the link goup
5933 file does not exist.
5935 2007-05-02 Guillem Jover <guillem@debian.org>
5937 * scripts/update-alternatives.pl: Move the ENOENT errno check from
5938 the if conditionals to the block body to avoid comparing against an
5939 undef value on the next elsif conditional.
5941 2007-04-28 Aaron M. Ucko <ucko@debian.org>
5943 * scripts/dpkg-shlibdeps.pl (unique_libfiles): New variable. Do not
5944 track duped libraries already on it.
5946 2007-04-11 Guillem Jover <guillem@debian.org>
5948 * scripts/dpkg-parsechangelog.pl: Use static and warnings. Declare
5949 variables with 'my'.
5950 * scripts/dpkg-scansources.pl: Likewise.
5951 * scripts/controllib.pl: Likewise. Globals with 'our'.
5952 * scripts/822-date.pl: Likewise.
5953 * scripts/dpkg-architecture.pl: Likewise.
5954 * scripts/dpkg-checkbuilddeps.pl: Likewise.
5955 * scripts/dpkg-distaddfile.pl: Likewise.
5956 * scripts/dpkg-genchanges.pl: Likewise.
5957 * scripts/dpkg-gencontrol.pl: Likewise.
5958 * scripts/dpkg-shlibdeps.pl: Likewise.
5959 * scripts/dpkg-source.pl: Likewise.
5960 * scripts/controllib.pl (parsecdata): Use 'my' instead of 'local'.
5961 (subprocerr): Likewise.
5962 (debian_arch_fix): Likewise.
5963 * scripts/dpkg-architecture.pl (debian_to_gnu): Likewise.
5964 (gnu_to_debian): Likewise.
5965 * scripts/controllib.pl (getfowner): Remove redundant closures of
5968 2007-04-11 Guillem Jover <guillem@debian.org>
5970 * man/Makefile.am (man.stamp): Use a stamp file for now until po4a
5971 supports them internally.
5972 (all-local): Depend on man.stamp.
5973 (clean-local): Remove the man.stamp file.
5975 2007-04-11 Guillem Jover <guillem@debian.org>
5977 * scripts/controllib.pl (@pkg_dep_fields): Reorder fields by
5979 (set_field_importance): New function.
5980 (sort_field_by_importance): Likewise.
5981 (outputclose): Use sort_field_by_importance instead of direct sorting.
5982 * scripts/changelog/debian.pl (%fieldimps): Do not set directly, use
5983 set_field_importance instead.
5984 * scripts/dpkg-genchanges.pl: Likewise.
5985 * scripts/dpkg-gencontrol.pl: Likewise.
5986 * scripts/dpkg-source.pl: Likewise.
5987 * scripts/changelog/debian.pl (@changelog_fields): New variable.
5988 * scripts/dpkg-genchanges.pl (@changes_fields): New variable.
5989 * scripts/dpkg-gencontrol.pl (@control_fields): New variable.
5990 * scripts/dpkg-source.pl (@dsc_fields): New variable.
5991 * scripts/dpkg-scanpackages.pl: Require 'controllib.pl'.
5992 (@pkg_dep_fields): Declare as 'our'.
5993 (@fieldpri): Reorder fields, use '@pkg_dep_fields' instead of
5996 2007-04-05 Guillem Jover <guillem@debian.org>
5998 * scripts/controllib.pl (get_host_arch): New function.
5999 (findarch): Rename to ...
6000 (init_substvar_arch): ... this. Use get_host_arch to set the substvar.
6002 (parsedep): Use get_host_arch instead of directly calling
6004 * scripts/dpkg-genchanges.pl: Use '$host_arch' instead of '$arch'.
6005 (init_substvar_arch): Delay call until after init_substvars.
6006 * scripts/dpkg-gencontrol.pl: Likewise.
6008 2007-04-03 Guillem Jover <guillem@debian.org>
6010 * dpkg-genchanges.pl: Mark string for translation.
6012 2007-04-03 Guillem Jover <guillem@debian.org>
6014 * scripts/controllib.pl (warn): Rename to ...
6015 (warning): ... this, to avoid collisions with the perl builtin. Fix
6018 2007-04-03 Guillem Jover <guillem@debian.org>
6020 * scripts/controllib.pl: Use defined instead of length, when variables
6022 * scripts/update-alternatives.pl: Likewise.
6023 * scripts/dpkg-source.pl: Likewise.
6024 * scripts/dpkg-genchanges.pl: Likewise.
6025 * scripts/dpkg-gencontrol.pl: Likewise.
6026 * scripts/dpkg-shlibdeps.pl: Likewise.
6028 2007-04-03 Guillem Jover <guillem@debian.org>
6030 * scripts/dpkg-checkbuilddeps.pl ($control): Remove redundant
6033 2007-04-03 Guillem Jover <guillem@debian.org>
6035 * scripts/dpkg-source.pl (fieldimps): Add 'Uploaders'.
6037 2007-03-25 Nicolas François <nicolas.francois@centraliens.net>
6039 * m4/libs.m4: Fix typo (supoprt->support).
6041 2007-03-23 Guillem Jover <guillem@debian.org>
6043 * debian/pseudo-tags: Renamed to ...
6044 * debian/usertags: ... this. Updated with the usertags information.
6045 * debian/dpkg.docs: Install usertags instead of pseudo-tags.
6047 2007-03-21 Jeffrey W. Baker <jwbaker@acm.org>
6048 Guillem Jover <guillem@debian.org>
6050 * src/archives.c (wanttoinstall): Use vdew_nonambig instead of
6051 vdew_never on versiondescribe.
6052 * src/configure.c (deferred_configure): Likewise.
6053 * src/query.c (list1package): Likewise.
6054 * dselect/pkgsublist.cc (packagelist::add): Likewise.
6055 * dselect/pkgtop.cc (packagelist::redraw1itemsel): Likewise.
6057 2007-03-21 Guillem Jover <guillem@debian.org>
6059 * dselect/main.cc: Remove duplicated included files <sys/types.h> and
6060 <sys/stat.h>. Move <fcntl.h> to the system block.
6062 2007-03-21 Guillem Jover <guillem@debian.org>
6064 * dselect/method.h: Fix typo in copyright year ('20001'-> '2001').
6066 2007-03-21 Guillem Jover <guillem@debian.org>
6068 * configure.ac (AM_GNU_GETTEXT_VERSION): Quote the argument.
6069 (AC_CHECK_HEADERS): Check for 'locale.h'.
6070 * lib/gettext.h: Updated file from gettext 0.16.1.
6072 2007-03-21 Guillem Jover <guillem@debian.org>
6074 * configure.ac (AM_GNU_GETTEXT_VERSION): Bump to 0.16.1.
6076 2007-03-20 Guillem Jover <guillem@debian.org>
6078 * scripts/dpkg-source.pl ($diff_ignore_default_regexp): Add '.hg'.
6080 2007-03-13 Guillem Jover <guillem@debian.org>
6082 * scripts/controllib.pl (parsechangelog): Only binmode CDATA from the
6083 parent side of the opened pipe, on the child side binmode STDOUT.
6085 2007-03-13 Guillem Jover <guillem@debian.org>
6087 * scripts/dpkg-shlibdeps.pl: Use new style file handler references.
6089 2007-03-13 Guillem Jover <guillem@debian.org>
6091 * lib/compression.c (compress_cat): Support compress_type_lzma.
6092 * dpkg-deb/build.c (do_build): Likewise.
6093 * dpkg-deb/main.c (usage): Document that '-Z' now accepts lzma as well.
6094 (setcompresstype): Parse 'lzma' as compress_type_lzma.
6095 * man/dpkg-deb.1: Move '-z' to it's own OPTIONS entry. Document '-Z',
6096 and the new 'lzma' value.
6098 2007-03-12 Guillem Jover <guillem@debian.org>
6100 * man/dpkg-source.1: Split individual man pages to ...
6101 * man/deb-shlibs.5: ... here and ...
6102 * man/deb-substvars.5: ... here and ...
6103 * man/dpkg-buildpackage.1: ... here and ...
6104 * man/dpkg-distaddfile.1: ... here and ...
6105 * man/dpkg-genchanges.1: ... here and ...
6106 * man/dpkg-gencontrol.1: ... here and ...
6107 * man/dpkg-parsechangelog.1: ... here and ...
6108 * man/dpkg-shlibdeps.1: ... here.
6109 * man/Makefile.am (all-local): Do not make the symlinks anymore.
6110 (dpkg_source_aliases): Move to ...
6111 (dist_man_MANS): ... here.
6112 (man_MANS): Remove variable.
6113 (CLEANFILES): Likewise.
6115 2007-03-12 Guillem Jover <guillem@debian.org>
6117 * man/Makefile.am (dist_man_MANS): Add deb-override.5.
6118 * man/dpkg-scanpackages.1: Move override file information to ...
6119 * man/deb-override.5: ... here.
6121 * man/dpkg-scanpackages.1: Add a reference to deb-override.5.
6122 * man/dpkg-scansources.1: Likewise.
6124 2007-03-12 Guillem Jover <guillem@debian.org>
6126 * scripts/changelog/debian.pl: Fix call to outputclose by not passing
6128 ($varlistfile): Remove unused variable.
6130 2007-03-12 Guillem Jover <guillem@debian.org>
6132 * lib/dpkg.h (compression_type): Rename to ...
6133 (compress_type): ... this. Fix all users.
6134 (CAT): Rename to ...
6135 (compress_type_cat): ... this. Fix all users.
6137 (compress_type_gzip): ... this. Fix all users.
6138 (BZ2): Rename to ...
6139 (compress_type_bzip2): ... this. Fix all users.
6141 2007-03-06 Guillem Jover <guillem@debian.org>
6143 * lib/compression.c (fd_fd_filter): New function, refactored. As
6144 a side effect the 'failed to exec' string gets unified, and all
6145 commands use oshite now.
6146 (decompress_cat): Use fd_fd_filter instead of the duped code.
6147 (compress_cat): Likewise.
6149 2007-03-06 Guillem Jover <guillem@debian.org>
6151 * scripts/dpkg-scanpackages.pl (usage): Documemt that the override
6152 file is now optional.
6153 (load_override): New function, refactored. Handle the case where
6154 '$override' is undefined.
6155 * man/dpkg-scanpackages.1: Mark the override argument as optional.
6157 2007-03-06 Guillem Jover <guillem@debian.org>
6159 * man/update-alternatives.8: Reorder EXAMPLES section.
6161 2007-03-06 Guillem Jover <guillem@debian.org>
6163 * man/cleanup-info.8: Unify the summary. Unify '--help' and
6164 '--version' descriptions. Remove unneeded quotes in section names.
6165 * man/update-alternatives.8: Likewise.
6166 * man/start-stop-daemon.8: Likewise.
6167 * man/dpkg-deb.1: Likewise.
6168 * man/dpkg-divert.8: Likewise.
6169 * man/dpkg-query.1: Likewise.
6170 * man/dpkg-name.1: Likewise.
6171 * man/dpkg-checkbuilddeps.1: Likewise.
6172 * man/dpkg-architecture.1: Likewise.
6173 * man/dpkg-split.1: Likewise.
6174 * man/dpkg-statoverride.8: Likewise.
6175 * man/dpkg-scanpackages.1: Likewise.
6176 * man/dpkg-scansources.1: Likewise.
6178 * man/dpkg-deb.1: Split option aliased names with ',' instead of '|'.
6179 * man/dpkg-name.1: Likewise.
6180 * man/dpkg-split.1: Likewise.
6181 * man/dpkg-query.1: Likewise.
6182 * man/start-stop-daemon.8: Likewise.
6184 * man/dpkg-divert.8: List each options in the OPTIONS section.
6185 * man/dpkg-scanpackages.1: Likewise.
6186 * man/start-stop-daemon.8: Likewise.
6188 * man/dpkg-divert.8: Remove redundant '<>' characters to delimit a
6189 replacable argument.
6190 * man/dpkg-statoverride.8: Likewise.
6192 * man/update-alternatives.8: Mark commands in examples as bold.
6193 * man/dpkg-architecture.1: Reorder sections. Indent examples.
6194 * man/dpkg-name.1: Do not specify in which programming language the
6195 program is written in.
6196 * man/dpkg-deb.1: Split '--extract' and '--vextract' options.
6198 2007-02-28 Guillem Jover <guillem@debian.org>
6200 * scripts/dpkg-checkbuilddeps.pl: Make getopt parse '--admindir'.
6201 ($admindir): New variable.
6202 (usage): Document '--admindir'.
6203 (parse_status): The status argument is not optional anymore.
6204 * scripts/dpkg-shlibdeps.pl: Parse '--admindir'.
6205 ($admindir): New variable.
6206 ($shlibsppdir): Initialize it after parsing the arguments.
6207 (usage): Document '--admindir'.
6208 * scripts/dpkg-buildpackage.sh: Parse '--admindir', and document it in
6209 usage output. Pass it to dpkg-checkbuilddeps.
6210 * man/dpkg-source.1: Document new option '--admindir'.
6211 * man/dpkg-checkbuilddeps.1: Likewise.
6213 2007-02-28 Guillem Jover <guillem@debian.org>
6215 * scripts/update-alternatives.pl (usage): Use '$altdir' instead of
6216 hardcoding its value.
6218 2007-02-28 Colin Watson <cjwatson@ubuntu.com>
6220 * scripts/dpkg-gencontrol.pl: Add missing parenthesis in regular
6221 expression handling Origin, Bugs and Maintainer for control file
6224 2007-02-17 Guillem Jover <guillem@debian.org>
6226 * scripts/dpkg-source.pl (checkstats): Take '$dscdir' as an explicit
6227 argument. Fix all callers.
6228 (checktype): Take '$dir', '$fn' and '$type' as explicit arguments. Fix
6231 2007-02-17 Guillem Jover <guillem@debian.org>
6233 * scripts/update-alternatives.pl: Check if '$alink' is defined before
6234 using '$aslavelinkcount{$alink}'. Only read_link_group if '$mode' is
6236 ($dataread): Remove now unused variable.
6237 (read_link_group): New function (refactored).
6238 (find_best_version): Likewise.
6239 (display_link_group): Likewise.
6240 (list_link_group): Likewise.
6241 (config_all): Move exit to outside the function.
6243 2007-02-17 Guillem Jover <guillem@debian.org>
6245 * scripts/controllib.pl (parsecdata): Change CDATA to a reference
6246 taken from the arguments. Fix all callers.
6248 2007-02-13 Guillem Jover <guillem@debian.org>
6250 * src/archives.c (MAXCONFLICTORS): New macro.
6251 (conflictor): Use MAXCONFLICTORS instad of hardcoded value '20', and
6252 remove non-matching comments.
6253 (check_conflict): Exit with an error instead of an assert. Move part
6254 of the comment to the error message, remove the rest as non-matching.
6256 2007-02-13 Guillem Jover <guillem@debian.org>
6258 * dpkg-deb/build.c (getfi): Exit with an error instead of an assert.
6260 2007-02-13 Guillem Jover <guillem@debian.org>
6262 * dpkg-deb/dpkg-deb.h (MAXFILENAME): New macro.
6263 * dpkg-deb/build.c (getfi): Use MAXFILENAME instead of the hardcoded
6266 2007-02-13 Guillem Jover <guillem@debian.org>
6268 * lib/compression.c (decompress_cat): Use BZ_IO_ERROR instead of
6269 Z_ERRNO for the error value returned by BZ2_bzerror.
6271 2007-02-12 Guillem Jover <guillem@debian.org>
6273 * scripts/dpkg-shlibdeps.pl: Move syserr:s to be or'ed after exec:s.
6275 2007-02-12 Guillem Jover <guillem@debian.org>
6277 * scripts/controllib.pl (outputclose): Change argument from a boolean
6278 to an optional filename argument. Fix all callers.
6279 (parsecontrolfile): Take '$controlfile' as an explicit argument.
6281 (parsesubstvars): Take '$varlistfile' as an explicit argument.
6283 (parsechangelog): Take '$changelogfile' as an explicit argument,
6284 '$changelogformat' and '$since' as optional arguments. Fix all
6286 (setsourcepackage): Take '$v' as an explicit argument.
6288 2007-02-11 Guillem Jover <guillem@debian.org>
6290 * dselect/pkglist.h (packagelist::severalinfoblurb): Do not take a
6291 string argument. Fix all callers.
6292 * dselect/pkginfo.cc (packagelist::severalinfoblurb): Likewise.
6293 (packagelist::itd_relations): Capitalize and make whatinfo setting
6294 common and move it outside of the if block, and do not add the
6296 (packagelist::itd_description): Likewise.
6297 (packagelist::itd_statuscontrol): Likewise.
6298 (packagelist::itd_availablecontrol): Likewise.
6299 * dselect/baselist.cc (baselist::itd_keys): Capitalize whatinfo string.
6300 * dselect/methlist.cc (methodlist::itd_description): Likewise and do
6301 not print the method name.
6303 2007-02-11 Ian Jackson <iwj@ubuntu.com>
6304 Guillem Jover <guillem@debian.org>
6306 * src/depcon.c (describedepcon): Use format arguments to make the
6307 strings l10n-friendlier.
6309 2007-02-04 Julien Cristau <jcristau@debian.org>
6311 * scripts/dpkg-source.pl ($diff_ignore_default_regexp): Add
6314 2007-01-24 Guillem Jover <guillem@debian.org>
6316 * scripts/controllib.pl: Move substvar initializations to ...
6317 (init_substvars): ... here.
6319 2007-01-24 Frank Lichtenheld <djpig@debian.org>
6321 * scripts/822-date.pl: Convert the script to be a simple wrapper
6323 * man/822-date.1: 822-date is now deprecated. Document this fact in
6326 2007-01-23 Sven Joachim <sven_joachim@web.de>
6327 Guillem Jover <guillem@debian.org>
6329 * dselect/helpmsgs.cc (hlp_listkeys): Fix up and down keystrokes.
6330 (hlp_methkeys): Reorder up and down keystrokes.
6332 2007-01-23 Guillem Jover <guillem@debian.org>
6334 * scripts/dpkg-source.pl: Fix typo in variable name from $dirc to
6335 $dircreate, and append a "/" on each loop.
6337 2007-01-16 Nicolas François <nicolas.francois@centraliens.net>
6339 * configure.ac: There are no more Makefiles to generate in the
6340 man/ subdirectories.
6341 * man/C/: Move the manpages to the root of the man/ directory.
6342 * man/C/Makefile.am, man/po4a.mk: The languages makefiles are no
6343 more needed. Also remove the language directories.
6344 * man/Makefile.am: New build system.
6345 The goal of these changes is to simplify the build system (less
6346 files, less Makefiles, lower the depth of the file hierarchy).
6348 2007-01-15 Ian Jackson <iwj@ubuntu.com>
6350 * src/processarc.c (process_archive): Add a missing newline to a
6353 2007-01-15 Guillem Jover <guillem@debian.org>
6355 * scripts/dpkg-gettext.pl: Remove duplicate 'use static'.
6356 * scripts/cleanup-info.pl: Use static and warnings.
6357 * scripts/dpkg-divert.pl: Likewise. Declare variables with 'my'.
6358 * scripts/dpkg-statoverride.pl: Likewise.
6359 * scripts/update-alternatives.pl: Likewise.
6361 2007-01-12 Mark Rosenstand <mark@borkware.net>
6363 * src/help.c (checkpath): Check for the value of the macro
6364 WITH_START_STOP_DAEMON instead of it being defined.
6366 2007-01-11 Riku Voipio <riku.voipio@iki.fi>
6367 Guillem Jover <guillem@debian.org>
6369 * scripts/controllib.pl: Move the getlogin and fowner initialization
6371 (getfowner): ...here. New function.
6372 * scripts/dpkg-source.pl: Use getfowner() instead of @fowner.
6373 * scripts/dpkg-gencontrol.pl: Likewise.
6374 * scripts/dpkg-distaddfile.pl: Likewise.
6375 * scripts/dpkg-shlibdeps.pl: Likewise.
6377 2007-01-10 Julian Gilbey <jdg@polya.uklinux.net>
6379 * scripts/dpkg-buildpackage.sh: Allow '-b' to properly override a
6380 previously passed '-B'.
6382 2007-01-09 Nicolas Francois <nicolas.francois@centraliens.net>
6384 * man/C/dpkg-deb.1: Make the copyright match the one from the source.
6385 * man/C/dpkg-split.1: Likewise.
6387 2007-01-09 Guillem Jover <guillem@debian.org>
6389 * configure.ac: Bump version to 1.14.0~.
6391 2007-01-02 Guillem Jover <guillem@debian.org>
6393 * configure.ac: Release 1.13.25.
6395 2007-01-01 Guillem Jover <guillem@debian.org>
6397 * scripts/dpkg-shlibdeps.pl (@librarypaths): Add '/emul/ia32-linux/lib'
6398 and '/emul/ia32-linux/usr/lib'.
6400 2006-11-24 Guillem Jover <guillem@debian.org>
6402 * scripts/dpkg-source.pl: Add lzma extracting support.
6403 (checkdiff): Likewise.
6404 (forkgzipread): Likewise.
6405 * lib/dpkg.h (LZMA): New macro.
6406 (compression_type): Add compress_type_lzma.
6407 * lib/compression.c (decompress_cat): Handle compress_type_lzma
6409 * dpkg-deb/dpkg-deb.h (DATAMEMBER_LZMA): New macro.
6410 (DATAMEMBER_COMPAT_LZMA): Likewise.
6411 * dpkg-deb/extract.c (extracthalf): Handle DATAMEMBER_LZMA and
6412 DATAMEMBER_COMPAT_LZMA members.
6414 2006-11-24 Brendan O'Dea <bod@debian.org>
6416 * scripts/controllib.pl (subprocerr): Require POSIX for WIFEXITED,
6417 WEXITSTATUS, WIFSIGNALED and WTERMSIG.
6419 2006-11-24 Tomas Pospisek <tpo_deb@sourcepole.ch>
6421 * man/C/update-alternatives.8: Document that it requires cooperation
6422 from all packages dealing with the same file.
6424 2006-10-13 Guillem Jover <guillem@debian.org>
6426 * configure.ac: Bump version to 1.13.25~.
6428 2006-10-13 Guillem Jover <guillem@debian.org>
6430 * configure.ac: Release 1.13.24.
6432 2006-10-13 Guillem Jover <guillem@debian.org>
6434 * dselect/pkgdisplay.cc (relatestrings): Add a string for the Breaks
6435 field as it should match the enum debtype in 'lib/dpkg-db.h'.
6437 2006-10-12 Guillem Jover <guillem@debian.org>
6439 * configure.ac: Bump version to 1.13.24~.
6441 2006-10-12 Guillem Jover <guillem@debian.org>
6443 * configure.ac: Release 1.13.23.
6445 2006-10-06 Guillem Jover <guillem@debian.org>
6447 * README.translators: Add references to the new scripts/po/ChangeLog
6448 file. State that the languages should be listed alphabetically in
6451 2006-09-29 Nicolas Francois <nicolas.francois@centraliens.net>
6453 * man/C/dpkg-scansources.1: Fix a typo.
6455 2006-09-27 Guillem Jover <guillem@debian.org>
6457 * m4/compiler.m4: Add a new line at the end of the file, to cope with
6458 an autoreconf failure due to the new m4 1.4.7.
6460 2006-09-27 Ian Jackson <iwj@ubuntu.com>
6462 * dselect/pkgdepcon.cc (packagelist::resolvedepcon): Recognise the
6463 dep_breaks dependency type in the dependency and conflict resolution.
6465 2006-08-10 Guillem Jover <guillem@debian.org>
6467 * dselect/helpmsgs.cc: Replace the comment header about the file being
6468 autogenerated with a proper copyright and license one. Reindented.
6469 * dselect/helpmsgs.h: Likewise.
6471 2006-08-08 Guillem Jover <guillem@debian.org>
6473 * scripts/dpkg-architecture.pl (dpkglibdir): Set to '.' where
6474 controllib.pl is located.
6475 (pkgdatadir): Set to '..' where cputable and ostable are located.
6476 * m4/arch.m4 (_DPKG_ARCHITECTURE): New macro.
6477 (DPKG_CPU_TYPE): Use _DPKG_ARCHITECTURE instead of parsing cputable.
6478 (DPKG_OS_TYPE): Use _DPKG_ARCHITECTURE instead of parsing ostable.
6479 (DPKG_ARCHITECTURE): Use _DPKG_ARCHITECTURE instead of constructing
6480 the value from cpu_type and os_type.
6482 2006-08-08 Ian Jackson <iwj@ubuntu.com>
6484 * lib/dpkg-db.h (deptype): Add dep_breaks.
6485 * lib/fields.c (f_dependency): Bail out if the Breaks field has an
6486 alternative through a '|'.
6487 * lib/parse.c (fieldinfos): Add support for the Breaks field when
6488 parsing them as a depedency field.
6489 * src/depcon.c (describedepcon): Support displaying the Breaks
6491 (depisok): Ignore the Breaks field by adding dep_breaks to the assert
6492 and returning as succeeded.
6493 * src/processarc.c (process_archive): Print a message stating that
6494 current dpkg does not support the Breaks field. Do not bail out in
6495 case the Breaks references packages to ignore for dependency handling.
6496 * src/packages.c (dependencies_ok): Add a place holder comment to
6497 be replaced by the code to prevent configuration of Broken packages.
6499 2006-08-05 Nicolas Francois <nicolas.francois@centraliens.net>
6501 * man/C/dpkg-architecture.1: Remove linux-alpha from the architecture
6502 wildcard examples, and fix a formatting issue.
6504 2006-08-05 Nicolas Francois <nicolas.francois@centraliens.net>
6506 * man/C/dpkg-source.1: Typo fix.
6507 * man/C/dpkg-architecture.1: Likewise.
6509 2006-08-02 Nicolas Francois <nicolas.francois@centraliens.net>
6511 * man/C/dpkg.1: Typo fix.
6512 * man/C/dpkg-divert.8: Likewise.
6513 * man/C/deb-control.5: Likewise.
6515 2006-07-29 Nicolas Francois <nicolas.francois@centraliens.net>
6517 * man/C/dpkg-architecture.1: Typo fix.
6518 * man/C/dpkg-statoverride.8: Likewise.
6520 2006-07-29 Nicolas Francois <nicolas.francois@centraliens.net>
6522 * man/C/dpkg-name.1: Typo fix.
6524 2006-07-27 Nicolas Francois <nicolas.francois@centraliens.net>
6526 * man/C/cleanup-info.8: Typo fix.
6527 * man/C/deb.5: Likewise.
6528 * man/C/dpkg-scanpackages.1: Likewise.
6529 * man/C/dpkg-scansources.1: Likewise.
6531 2006-07-23 Helge Kreutzmann <debian@helgefjell.de>
6533 * man/C/822-date.1: Fix the manpage's modification date.
6535 2006-07-23 Nicolas Francois <nicolas.francois@centraliens.net>
6537 * man/C/start-stop-daemon.8: Typo fix.
6539 2006-07-07 Nicolas François <nicolas.francois@centraliens.net>
6541 * dpkg-deb/build.c: Specify --null before the -T option to avoid
6542 the "tar: -: file name read contains nul character" warning.
6544 2006-07-22 Helge Kreutzmann <debian@helgefjell.de>
6546 * man/C/start-stop-daemon.8: Typo fix.
6547 * man/C/update-alternatives.8: Likewise.
6549 2006-06-21 Guillem Jover <guillem@debian.org>
6551 * configure.ac: Bump version to 1.13.23~.
6553 2006-06-21 Guillem Jover <guillem@debian.org>
6555 * configure.ac: Release 1.13.22.
6557 2006-06-21 Guillem Jover <guillem@debian.org>
6559 * utils/start-stop-daemon.c (signal_str, schedule_str): Move
6560 variables inside ...
6561 (parse_options): ... here.
6563 2006-06-21 Guillem Jover <guillem@debian.org>
6565 * utils/start-stop-daemon.c (umask_value): New variable.
6566 (do_help): Print information about the new '--umask' option.
6567 (parse_umask): New function.
6568 (parse_options): Parse the new option using parse_umask.
6569 (main): Set umask, and do not set for the background case if we set
6571 * man/C/start-stop-daemon.8: Document the new '--umask' option.
6573 2006-06-21 Guillem Jover <guillem@debian.org>
6575 * scripts/controllib.pl (usageerr): Do not mark "%s: %s" for
6577 * scripts/changelog/debian.pl: Remove "or argument" from the
6578 "unkown option" string to merge it with other similar ones.
6579 * scripts/dpkg-distaddfile.pl: Quote '%s' in the "unknown option"
6581 * scripts/dpkg-source.pl: Likewise.
6582 * scripts/cleanup-info.pl (ulquit): Print the program name.
6583 Change all callers to not print the program name, and modify the
6584 strings to merge them with similar ones.
6585 * scripts/dpkg-divert.pl: Change strings referring to command line
6586 argument to use '%s' instead of such argument, thus merging them.
6587 (quit): Do not mark the string for translation. Do not hardcode the
6588 program name and use '$0' instead.
6589 (badusage): Likewise. Make it call usage.
6590 * scripts/dpkg-statoverride.pl: Likewise.
6591 * scripts/update-alternatives.pl: Likewise.
6592 * scripts/install-info.pl: Call quit instead of die and do not print
6593 the program name. Prepend "unable to" to most of those strings to
6594 merge them with similar ones. Fix other strings to merge them.
6595 (ulquit): Make it call quit instead of die and do not print the
6597 (checkpipe): Likewise.
6598 (quit): New function.
6599 * lib/fields.c (f_dependency): Make strings use '%s' instead of
6600 hardcoded character, to merge both.
6601 * lib/dbmodify.c (createimptmp): Quote and increase to 255 the
6602 parameter '%.250s' to merge the string with the other ones.
6604 2006-06-18 Frank Lichtenheld <djpig@debian.org>
6606 * scripts/dpkg-buildpackage.sh: Fix testing
6607 the content of $signinterface by moving the
6608 test to a place where it can actually fail.
6609 Give the user a correct warning message about
6610 what we do (i.e. defaulting to pgp style).
6612 2006-06-17 Guillem Jover <guillem@debian.org>
6614 * man/C/dpkg-architecture.1: Clarify new -e and -i options, give
6615 backward compatibility information and add some examples.
6617 2006-06-17 Frank Lichtenheld <djpig@debian.org>
6619 * scripts/dpkg-source.pl: Fix typo in regex that caused
6620 spurious warnings for user defined fields even though they
6621 used the correct XB- syntax.
6623 2006-06-16 Robert Luberda <robert@debian.org>
6625 * man/C/dpkg-deb.1: Fix typo ("--show-format" -> "--showformat").
6627 2006-06-16 Guillem Jover <guillem@debian.org>
6629 * scripts/controllib.pl (parsechangelog): Move substvar initialization
6631 (init_substvars): ... here. New function. Move the dpkg substvars
6632 initialization to this function.
6633 * scripts/dpkg-source.pl: Call init_substvars after parsechangelog.
6634 * scripts/dpkg-genchanges.pl: Replace setting dpkg substvars with
6635 init_substvars. If the version field or the one forced from command
6636 line differs from the substvar, add the later to the output Source
6637 field inside parenthesis.
6638 * scripts/dpkg-gencontrol.pl: Likewise.
6640 2006-06-16 Andrew Ferrier <andrew@new-destiny.co.uk>
6641 Guillem Jover <guillem@debian.org>
6643 * scripts/update-alternatives.pl (usage): Clarify the legend for the
6646 2006-06-16 Guillem Jover <guillem@debian.org>
6648 * scripts/update-alternatives.pl (config_message): Print '--config'
6649 listing layout evenly spaced.
6651 2006-06-07 Guillem Jover <guillem@debian.org>
6653 * scripts/dpkg-scansources.pl: Remove invalid comment mentioning
6654 documentation being after __END__.
6656 2006-06-07 Guillem Jover <guillem@debian.org>
6658 * scripts/dpkg-source.pl ($diff_ignore_default_regexp): Add
6661 2006-06-04 Guillem Jover <guillem@debian.org>
6663 * configure.ac: Bump version to 1.13.22~.
6665 2006-06-04 Guillem Jover <guillem@debian.org>
6667 * configure.ac: Release 1.13.21.
6669 2006-06-04 Ian Jackson <ian@davenant.greenend.org.uk>
6671 * src/depcon.c (foundcyclebroken): Replace possi->ed argument to
6672 findbreakcyclerecursive call with dependedon.
6673 (findbreakcyclerecursive): Remove the last foundcyclebroken call
6674 which was wrongly using the unrelated provider->installed.depended
6675 linked list. Remove findbreakcyclerecursive call which may lead to
6678 2006-06-04 Guillem Jover <guillem@debian.org>
6680 * scripts/dpkg-parsechangelog.pl: Pass forward the '-l' option to
6682 * scripts/changelog/debian.pl: Add '-l' option and set $changelogfile.
6683 (usage): Document the new '-l' option.
6684 (clerror): Print $changelogfile instead of 'changelog'.
6687 2006-06-02 Guillem Jover <guillem@debian.org>
6689 * scripts/install-info.pl: Do not use English non-essential module.
6691 2006-06-02 Guillem Jover <guillem@debian.org>
6693 * scripts/dpkg-shlibdeps.pl (@librarypaths): Add '/lib32' and
6696 2006-06-02 Guillem Jover <guillem@debian.org>
6698 * src/query.c (setaction): Print also the short command line action.
6699 * src/main.c (setaction): Likewise.
6700 * dpkg-deb/main.c (setaction): Likewise.
6701 * dpkg-split/main.c (setaction): Likewise.
6703 2006-05-31 Guillem Jover <guillem@debian.org>
6705 * configure.ac: Bump version to 1.13.21~.
6707 2006-05-31 Guillem Jover <guillem@debian.org>
6709 * configure.ac: Release 1.13.20.
6711 2006-05-31 Koblinger Egmont <egmont@uhulinux.hu>
6713 * src/processarc.c (process_archive): Do not pass to parsedb
6714 pdb_weakclassification, so that the Section and Priority fields
6715 gets updated with new packages.
6717 2006-05-31 Julian Gilbey <jdg@debian.org>
6719 * scripts/changelog/debian.pl: Remove duped string ' , at changelog '.
6721 2006-05-31 Guillem Jover <guillem@debian.org>
6723 * src/enquiry.c (cmpversions): Prefix the bad syntax error with a
6724 'dpkg: ' and print the bogus version string.
6726 2006-05-25 Guillem Jover <guillem@debian.org>
6728 * scripts/install-info.pl: Exit if the lock file already exists.
6729 This change was lost when doing the i18n of the scripts.
6731 2006-05-25 Ben Pfaff <blp@cs.stanford.edu>
6733 * scripts/install-info.pl: Use %! instead if $! to check for EEXIST.
6734 * man/C/install-info.8: Correct default info directory for '--infodir'.
6736 2006-05-23 Guillem Jover <guillem@debian.org>
6738 * scripts/controllib.pl (parsechangelog): Do not strip the epoch from
6739 the source:Upstream-Version substvar.
6740 * man/C/dpkg-source.1: Document that the source:Upstream-Version
6741 substvar can have an epoch.
6743 2006-05-23 Guillem Jover <guillem@debian.org>
6745 * scripts/controllib.pl (usageerr): Use usage instead of
6747 * scripts/dpkg-statoverride.pl (UsageVersion): Rename to ...
6748 (usageversion): ... this.
6749 * scripts/dpkg-parsechangelog.pl (usageversion): Split into usage
6750 and version functions. Print to stdout. Standarize output format.
6751 Add '--help' and '--version'.
6752 * scripts/dpkg-shlibdeps.pl: Likewise.
6753 * scripts/dpkg-distaddfile.pl: Likewise.
6754 * scripts/dpkg-gencontrol.pl: Likewise.
6755 * scripts/dpkg-genchanges.pl: Likewise.
6756 * scripts/dpkg-source.pl: Likewise.
6757 * scripts/changelog/debian.pl: Likewise.
6758 * scripts/dpkg-statoverride.pl: Likewise. Basename $0.
6759 * scripts/dpkg-architecture.pl: Likewise. Do not basename $0,
6760 use $progname instead.
6761 * scripts/dpkg-checkbuilddeps.pl: Use $progname instead of $me.
6762 (me): Remove variable.
6763 (usage): Standarize output format. Print to stdout. Add '-h' option.
6764 * scripts/dpkg-buildpackage.sh (usageversion): Split into
6765 showversion and usage functions. Print to stdout. Standarize output
6766 format. Add '--help' and '--version'.
6767 (version): Rename variable to ...
6768 (changesversion): ... this, otherwise there was no program version
6770 * scripts/dpkg-scanpackages.pl: Basename $0.
6771 (options): Pass a sub to the help option calling usage and exit.
6773 (usage): Switch variable to a function. Print to stdout. Standarize
6775 (version): New function.
6776 * scripts/dpkg-scansources.pl (Version): Rename variable to ...
6777 (version): ... this (so it will be automaitcally updated by the
6779 (Option_spec): Pass \&usage to help option and \&version to version.
6780 (Usage): Remove variable.
6781 (version): New function.
6782 (usage): Move xwarn call to where the actual check is made. Replace
6783 the die call with a printf and an exit.
6784 * scripts/dpkg-name.sh: Standarize output format.
6785 * scripts/dpkg-divert.pl: Basename $0.
6786 (showversion): Rename to ...
6787 (version): ... this. Print to stdout. Standarize output format.
6788 * scripts/update-alternatives.pl: Basename $0.
6789 (usageversion): Split into usage and version functions. Print to
6790 stdout. Standarize output format.
6791 * scripts/cleanup-info.pl: Basename $0.
6792 (version): Print to stdout. Standarize output format.
6793 (usage): Likewise. Print option descriptions.
6794 * scripts/install-info.pl: Basename $0. Add '--version'. On
6795 argument error print only usage.
6796 (version): Print to stdout. Standarize output format.
6797 (usage): Likewise. Print option descriptions.
6798 * man/C/dpkg-source.1: Add '--help' and '--version' options.
6799 * man/C/dpkg-architecture.1: Likewise.
6800 * man/C/dpkg-checkbuilddeps.1: Add '-h' option.
6801 * man/C/dpkg-divert.8: Option '--help' does not print the version
6803 * man/C/update-alternatives.8: Likewise.
6804 * man/C/dpkg-statoverride.8: Likewise. Add '--version' option.
6806 2006-05-19 David Lopez Moreno <david.lopez.moreno@hispalinux.es>
6808 * dpkg-deb/build.c (do_build): If failing to stat a
6809 conffile check for trailing whitespace in the conffiles
6810 file to give a more useful error message.
6812 2006-05-19 Piotr Engelking <inkerman42@gmail.com>
6814 * lib/database.c (informative): Don't regard
6815 architecture information alone as informative.
6816 * src/processarc.c (process_archive): Also
6817 delete origin, bugs and architecture information
6818 for disappearing packages.
6819 * src/remove.c (removal_bulk): Likewise for
6822 2006-05-19 Frank Lichtenheld <djpig@debian.org>
6824 * src/help.c (hasdirectoryconffiles): New function
6825 to test wether a directory contains conffiles of
6827 * src/main.h: Add declaration of hasdirectoryconffiles.
6828 * src/remove.c (removal_bulk_remove_files): Don't
6829 drop directories from our file list that hold
6831 (removal_bulk_remove_leftover_dirs) Likewise.
6833 * utils/enoent.c: Add a comment at the top of the
6834 file explaining why we use this odd program at all.
6836 2006-05-18 Frank Lichtenheld <djpig@debian.org>
6838 * lib/showpkg.c (show1package): Test the correct
6839 pointer against NULL so that arbitrary fields get
6842 2006-05-18 Frank Lichtenheld <djpig@debian.org>
6844 * man/C/dpkg-query.1: Document that user defined
6845 fields can also be printed with --showformat.
6847 2006-05-17 Frank Lichtenheld <djpig@debian.org>
6849 * man/C/dpkg.1: We don't actually set DPKG_OLD_CONFFILE and
6850 DPKG_NEW_CONFFILE on subshells, so we shouldn't claim to do so.
6852 2006-05-15 Nicolas François <nicolas.francois@centraliens.net>
6854 * src/packages.c: Use fc_dependsversion (set by
6855 --force-depends-version) when only the version of a
6856 dependency is not satisfied. fc_dependsversion is never
6859 2006-05-15 Nicolas François <nicolas.francois@centraliens.net>
6861 * src/configure.c: Flush the terminal's input before
6864 2006-05-15 Frank Lichtenheld <djpig@debian.org>
6866 * debian/archtable: Update to reflect current
6867 archive: Add amd64 and remove sh.
6869 * src/depcon.c (findbreakcyclerecursive): Try
6870 to find cycles also by moving up Provides links.
6872 2006-05-15 Ian Jackson <iwj@ubuntu.com>
6874 * debian/control (dpkg[Depends]): Move
6875 coreutils dependency to Pre-Depends and
6876 depend on >= 5.93-1 to ensure that md5sum
6878 * debian/dpkg.postinst: Don't create a
6879 diversion from coreutil's md5sum.
6880 * debian/dpkg.prerm: Delete the code
6881 that removed the diversion generated
6882 in the postinst. We rely on coreutils
6883 to clean up the mess we created.
6885 2006-05-12 Frank Lichtenheld <djpig@debian.org>
6887 * src/main.c (ignoredepends): Fix parsing of the
6888 --ignore-depends argument value.
6890 * dpkg-deb/info.c (info_spew): Prepend the name of the
6891 directory we're in to the control component name. This
6892 way we don't spew out garbage if we get an absolute
6893 path as component name.
6895 * scripts/dpkg-scanpackages.pl: Print usage
6896 information on stderr instead of stdout in
6897 case of error. Only print it on stdout if
6900 * scripts/dpkg-architecture.pl: Convert encoding
6901 of the file from iso-8859-1 to utf-8.
6903 2006-05-12 Nicolas François <nicolas.francois@centraliens.net>,
6904 Frank Lichtenheld <djpig@debian.org>
6906 * scripts/dpkg-gettext.pl: New module. Acts like a
6907 wrapper around Locale::gettext so that the scripts
6908 are usable without it, too.
6909 * debian/dpkg.install: Install dpkg-gettext.pl.
6910 * scripts/Makefile.am (dist_pkglib_SCRIPTS): Add dpkg-gettext.pl.
6912 * po/POTFILES.in: Add scripts installed with dpkg
6914 * po/Makevars (XGETTEXT_OPTIONS): Add _g to list of keywords.
6915 * debian/dpkg-dev.install: Install .mo files.
6916 * debian/control (dpkg-dev[Depends]): Bump dependency on dpkg
6917 to 1.13.20 since it needs dpkg-gettext.pl.
6918 * scripts/cleanup-info.pl: Add gettext support.
6919 * scripts/controllib.pl: Likewise.
6920 * scripts/dpkg-architecture.pl: Likewise.
6921 * scripts/dpkg-checkbuilddeps.pl: Likewise.
6922 * scripts/dpkg-distaddfile.pl: Likewise.
6923 * scripts/dpkg-divert.pl: Likewise.
6924 * scripts/dpkg-genchanges.pl: Likewise.
6925 * scripts/dpkg-gencontrol.pl: Likewise.
6926 * scripts/dpkg-parsechangelog.pl: Likewise.
6927 * scripts/debian/changelog.pl: Likewise.
6928 * scripts/dpkg-scanpackages.pl: Likewise.
6929 * scripts/dpkg-scansources.pl: Likewise.
6930 * scripts/dpkg-shlibdeps.pl: Likewise.
6931 * scripts/dpkg-source.pl: Likewise.
6932 * scripts/dpkg-statoverride.pl: Likewise.
6933 * scripts/install-info.pl: Likewise.
6934 * scripts/update-alternatives.pl: Likewise.
6936 2006-05-10 Frank Lichtenheld <djpig@debian.org>
6938 * scripts/dpkg-buildpackage.sh: Pass all
6939 remotely sensible -sX option through to
6940 dpkg-source (-s[nsAkurKUR]).
6942 * scripts/changelog/debian.pl: Use same regex for
6943 distribution names as for packages. Since the policy
6944 doesn't define these names very strict, we should give
6945 the user more freedom here though all official names
6946 are matched by a way stricter regex. (Characters now
6947 allowed are '+' and '.').
6949 2006-05-10 Robert Millan <rmh@aybabtu.com>,
6950 Frank Lichtenheld <djpig@debian.org>
6952 * scripts/dpkg-source.pl: When checking the
6953 signature of a .dsc file, use the Debian
6954 keyring if available.
6956 2006-05-10 Frank Lichtenheld <djpig@debian.org>
6958 * man/C/dpkg-deb.1: Mention the --show-format option also
6959 seperatly, not just in the description of --show.
6960 Point the reader to the explanation of --show-format
6961 in dpkg-query.1 to avoid having to duplicate it.
6963 2006-05-10 Frank Lichtenheld <djpig@debian.org>
6965 * man/C/dpkg-deb.1: Mention the --show-format option also
6966 seperatly, not just in the description of --show.
6967 Point the reader to the explanation of --show-format
6968 in dpkg-query.1 to avoid having to duplicate it.
6970 * man/C/dpkg-scanpackages.1: Add remark that apt ignores
6971 uncompressed Packages files on non-local access.
6972 * man/C/dpkg-scansources.1: Likewise (with Sources instead of
6973 Packages files of course).
6975 2006-05-10 Nicolas François <nicolas.francois@centraliens.net>
6977 * lib/showpkg.c (show1package): Honour the requested tabbing
6978 of fields even if they are empty.
6980 2006-05-04 Guillem Jover <guillem@debian.org>
6982 * configure.ac: Bump version to 1.13.20~.
6984 2006-05-04 Guillem Jover <guillem@debian.org>
6986 * configure.ac: Release 1.13.19.
6988 2006-05-04 Guillem Jover <guillem@debian.org>
6990 * man/C/dpkg-divert.8: Escape hyphens used in command line.
6991 * man/C/dpkg-architecture.1: Likewise.
6992 * man/C/dpkg-statoverride.8: Likewise.
6994 2006-05-04 Guillem Jover <guillem@debian.org>
6996 * scripts/dpkg-genchanges.pl: Do not use $version to refer to the
6997 source package version, as it denotes the dpkg version.
6999 2006-05-04 Nicolas François <nicolas.francois@centraliens.net>,
7000 Guillem Jover <guillem@debian.org>
7002 * scripts/install-info.pl: Use the numerical value of $! instead of
7003 the string when checking if the locking error was due to an already
7004 existing file, which is locale dependent, and die accordingly.
7006 2006-05-04 Nicolas François <nicolas.francois@centraliens.net>
7008 * scripts/install-info.pl: Add a new line after adding the last
7009 entry at the end of the dir file, which makes the info readers
7010 able to see those last entries.
7012 2006-05-04 Wayne Davison <wayned@users.sourceforge.net>,
7013 Guillem Jover <guillem@debian.org>
7015 * scripts/install-info.pl: Make '--dir-file' option compatible
7016 with GNU install-info by renaming the infodir variable to dirfile
7017 and not appending the '/dir' string except when initializing from
7018 '--info-dir' or '--infodir'.
7020 2006-05-04 Guillem Jover <guillem@debian.org>
7022 * scripts/dpkg-gencontrol.pl: Use the source:Version substvar when
7023 setting the Source field version, in case the binary package
7024 has a different one from the source package.
7026 2006-05-02 Guillem Jover <guillem@debian.org>
7028 * utils/start-stop-daemon.c (do_help): Standarize output format.
7030 2006-05-02 Guillem Jover <guillem@debian.org>
7032 * dselect/main.cc (usage): Split string and align so duped strings get
7034 * dpkg-deb/main.c (usage): Likewise.
7035 * dpkg-split/main.c (usage): Likewise.
7036 * src/query.c (usage): Likewise.
7037 * src/main.c (usage): Likewise.
7039 2006-05-02 Guillem Jover <guillem@debian.org>
7041 * scripts/dpkg-genchanges.pl: Rename dpkg:UpstreamVersion to
7042 dpkg:Upstream-Version. Make dpkg:Version and dpkg:Upstream-Version
7043 get the current dpkg versions instead of the package being built.
7044 * scripts/dpkg-gencontrol.pl: Likewise.
7045 * man/C/dpkg-source.1: Rename dpkg:UpstreamVersion to
7046 dpkg:Upstream-Version.
7048 2006-05-02 Ken Bloom <kbloom@gmail.com>,
7049 Jeroen van Wolffelaar <jeroen@wolffelaar.nl>,
7050 Guillem Jover <guillem@debian.org>
7052 * scripts/controllib.pl (parsechangelog): Add new source:Version,
7053 source:Upstream-Version and binary:Version substvars.
7054 * man/C/dpkg-source.1: Document new source:Version,
7055 source:Upstream-Version and binary:Version substvars.
7057 2006-04-29 Justin Pryzby <justinpryzby@users.sourceforge.net>
7059 * src/filesdb.c: Fix a typo (unexecpted -> unexpected).
7061 2006-04-21 Guillem Jover <guillem@debian.org>
7063 * src/query.c (enqperpackage): Change dynamically constructed
7064 grammar to proper sentences.
7065 * src/packages.c (deppossi_ok_found): Likewise.
7066 * src/main.c (commandfd): Do not use digits, use textual numbers.
7067 * lib/dbmodify.c (createimptmp): Use proper verb forms.
7068 * lib/showcright.c (showcopyright): Remove trailing space from string.
7069 * lib/parsehelp.c (illegal_packagename): Clarify what is the last '%s'.
7070 * dpkg-deb/extract.c (movecontrolfiles): Likewise.
7071 (extracthalf): Do not use abbreviations in the strings.
7073 2006-04-21 Guillem Jover <guillem@debian.org>
7075 * src/main.c (printforhelp, setdebug, setforce): Quote each string
7076 line instead of escaping its new line at the end.
7078 2006-04-19 Nicolas Francois <nicolas.francois@centraliens.net>
7080 * man/C/install-info.8: Add a missing quote arround the date.
7081 * man/C/dpkg-source.1: Add a reference to the Debian Policy Manual
7082 for a detailed description of the shlibs format.
7083 Thanks to Russ Allbery.
7085 2006-04-16 Nicolas Francois <nicolas.francois@centraliens.net>
7087 * man/C/dpkg-source.1: Document the shlibs.local format.
7089 2006-04-11 Frank Lichtenheld <djpig@debian.org>
7091 * src/archives.c (quote_filename): Fix typo in
7092 variable name. If hit, this could lead to a
7093 infinite loop and OOM in varbufvprintf. (A
7094 good way to hit it is installing files with
7095 long non-ASCII filenames in UTF-8 locales).
7096 Fixed also some typos in the comment for this
7099 * scripts/dpkg-scanpackages.pl: Add -follow
7100 to @find_args. This was lost in a previous patch
7103 2006-04-10 Guillem Jover <guillem@debian.org>
7105 * configure.ac: Bump version to 1.13.19~.
7107 2006-04-10 Guillem Jover <guillem@debian.org>
7109 * configure.ac: Release 1.13.18.
7111 2006-04-10 Guillem Jover <guillem@debian.org>
7113 * man/C/dpkg.1: Document the new way to replicate the package status
7114 to another installation by using '--clear-selections'.
7116 2006-04-10 Andrew Suffield <asuffield@debian.org>
7118 * src/main.h (clearselections): New prototype.
7119 * src/main.c (usage): Print '--clear-selections' option description.
7120 (cmdinfos): Add clear-selectons action.
7121 * src/select.c (clearselections): New function.
7122 * man/C/dpkg.1: Document the new '--clear-selections' option.
7124 2006-04-10 Guillem Jover <guillem@debian.org>
7126 * src/main.h (fc_autoselect): Remove.
7127 * src/main.c (fc_autoselect): Likewise.
7128 (forceinfos): Mark 'auto-select' as obsolete.
7129 (setforce): Remove mention of 'auto-select' from the help text.
7130 Handle obsolete options, and display a warning.
7131 * man/C/dpkg.1: Remove mention of obsolete force/refuse 'auto-select'
7134 2006-04-09 Guillem Jover <guillem@debian.org>
7136 * man/C/dpkg.1: Document that '--get-selections' without a pattern
7137 will not list packages in state purge.
7138 * man/C/dpkg-query.1: Document that '-l' without a pattern will not
7139 list packages in state purge.
7141 2006-04-09 Guillem Jover <guillem@debian.org>
7143 * scripts/dpkg-shlibdeps.pl: Support system library directories
7144 symlinked from '/lib/ldconfig/'.
7146 2006-04-09 Branden Robinson <branden@debian.org>,
7147 Guillem Jover <guillem@debian.org>
7149 * src/main.c (execbackend): Pass '--admindir' over to dpkg-query
7150 when passing '--admindir' or '--root' to dpkg.
7152 2006-04-04 Andrew Suffield <asuffield@debian.org>
7154 * dpkg-buildpackage.sh: Use mustsetvar to set sversion variable.
7156 2006-04-04 Jared Spiegel <jrrs@frontiernet.net>
7158 * utils/start-stop-daemon.c (do_help): Add '-r' option to the help
7161 2006-04-04 Guillem Jover <guillem@debian.org>
7163 * utils/start-stop-daemon.c (main): Prefix the chroot path, if any,
7164 when stating the exec file.
7166 2006-03-30 Guillem Jover <guillem@debian.org>
7168 * src/main.c (setforce): Add a '[!]' next to 'all' to denote that
7169 '--force-all' is dangerous.
7171 2006-03-20 Guillem Jover <guillem@debian.org>
7173 * configure.ac: Bump version to 1.13.18~.
7175 2006-03-20 Guillem Jover <guillem@debian.org>
7177 * configure.ac: Release 1.13.17.
7179 2006-03-20 Guillem Jover <guillem@debian.org>
7181 * utils/start-stop-daemon.c [OSLinux] (pid_is_exec): Revert back to
7182 take a struct stat instead of an execname. Get the filename pointed
7183 by the '/proc/<pid>/exe' symlink, strip any ' (deleted)' string, and
7184 stat that filename comparing the result with the new argument.
7186 2006-03-15 Guillem Jover <guillem@debian.org>
7188 * scripts/controllib.pl.in: Rename to ...
7189 * scripts/controllib.pl: ... this.
7190 (debian_arch_expand): Remove function. Fix all callers.
7191 (pkgdatadir, read_cputable, read_ostable): Move to ...
7192 * scripts/dpkg-architecture.pl: ... here.
7193 * scripts/Makefile.am (%.pl): Remove rule.
7195 2006-03-05 Guillem Jover <guillem@debian.org>
7197 * scripts/controllib.pl.in (quiet_warnings): New variable.
7198 (warn): Do not print if quiet_warnings.
7199 * dpkg-source.pl (usageversion): Document new option `-q'.
7201 2006-03-05 Guillem Jover <guillem@debian.org>
7203 * debian/control (Build-Depends): Do not depend on libselinux1-dev
7204 in GNU/kFreeBSD amd64.
7206 2006-03-04 Christian Perrier <bubulle@debian.org>
7208 * man/C/dpkg-architecture.1: Typo corrections.
7209 * man/C/dpkg-checkbuilddeps.1: Likewise.
7210 * man/C/dpkg-name.1: Likewise.
7211 * man/C/dpkg-source.1: Likewise.
7212 * man/C/deb-control.5: Likewise.
7214 2006-02-28 Guillem Jover <guillem@debian.org>
7216 * man/C/dpkg.1 (SEE ALSO): Add dpkg-query(1).
7218 2006-02-28 Guillem Jover <guillem@debian.org>
7220 * man/C/822-date.1: Lower case title header. Put options in bold,
7221 files and arguments to options in italic. Escape hyphens used in
7222 command line. Unescape dashes. Remove spaces after full stops and
7223 after end of line. Separete sections with a dot. Do not put the
7224 manpage section number in bold.
7225 * man/C/cleanup-info.8: Likewise.
7226 * man/C/deb.5: Likewise.
7227 * man/C/deb-control.5: Likewise.
7228 * man/C/deb-old.5: Likewise.
7229 * man/C/dpkg.1: Likewise.
7230 * man/C/dpkg.cfg.5: Likewise.
7231 * man/C/dpkg-checkbuilddeps.1: Likewise.
7232 * man/C/dpkg-deb.1: Likewise.
7233 * man/C/dpkg-divert.8: Likewise.
7234 * man/C/dpkg-name.1: Likewise.
7235 * man/C/dpkg-query.1: Likewise.
7236 * man/C/dpkg-scanpackages.1: Likewise.
7237 * man/C/dpkg-source.1: Likewise.
7238 * man/C/dpkg-split.1: Likewise.
7239 * man/C/dpkg-statoverride.8: Likewise.
7240 * man/C/dselect.1: Likewise.
7241 * man/C/dselect.cfg.5: Likewise.
7242 * man/C/install-info.8: Likewise.
7243 * man/C/start-stop-daemon.8: Likewise.
7244 * man/C/update-alternatives.8: Likewise.
7245 * man/C/dpkg-scansources.1: Likewise. Remove '.IX' entries.
7246 * man/C/dpkg-architecture.1: Likewise. Split most of the body of the
7247 section DESCRIPTION into OPTIONS and ACTIONS.
7249 2006-02-28 Matt Kraai <kraai@ftbfs.org>
7251 * scripts/dpkg-gencontrol.pl: Fix typo (occoured -> occurred).
7252 * scripts/dpkg-source.pl: Likewise.
7254 2006-02-20 Matt Kraai <kraai@ftbfs.org>
7256 * man/C/dpkg-source.1: Add missing parentheses around manpage
7259 2006-02-19 Guillem Jover <guillem@debian.org>
7261 * po/README.translators: Move to ...
7262 * README.translators: ... here. Formatting fixes. Update to refer
7263 to latest new ChangeLog files, and rules.
7265 2006-02-19 Frank Lichtenheld <djpig@debian.org>
7267 * scripts/dpkg-scanpackages.pl: Fix option
7268 parsing of arch option. Also fix a mistake
7269 in constructing @find_args.
7271 2006-02-18 Frank Lichtenheld <djpig@debian.org>
7273 * scripts/dpkg-gencontrol.pl: Call parsedep
7274 with use_arch and reduce_arch parameters to
7275 allow using architectures in dependency
7276 fields of binary packages in debian/control.
7278 * scripts/dpkg-gencontrol.pl: Fix handling of
7279 debian/files when architecture is set via -D
7280 command line option. The value override was
7283 * configure.ac: Bump version to 1.13.17~.
7285 * configure.ac: Release 1.13.16.
7287 2006-02-18 A. Costa <agcosta@gis.net>
7289 * man/C/dpkg-deb.1: Typo fix.
7290 * man/C/dpkg-statoverride.8: Likewise.
7291 * man/C/install-info.8: Likewise.
7292 * man/C/start-stop-daemon.8: Likewise.
7293 * man/C/update-alternatives.8: Likewise.
7294 * man/C/dpkg.1: Likewise.
7295 * man/C/dpkg.cfg.5: Likewise.
7297 2006-02-17 Frank Lichtenheld <djpig@debian.org>
7299 * man/ChangeLog: Start an own changelog for the
7302 * scripts/dpkg-scanpackages.pl: Fix override handling
7303 which was broken by the latest changes.
7305 * scripts/dpkg-gencontrol.pl: Make -isp the default
7307 * man/C/dpkg-source.1: Document the behaviour
7308 change in dpkg-gencontrol.
7310 * man/Makefile.am (updatepo): New target that calls
7311 'make updatepo' in all subdirectories.
7313 2006-02-17 Guillem Jover <guillem@debian.org>
7315 * debian/dselect.install: Install only dselect domain.
7316 * debian/dpkg.install: Install only dpkg domain.
7317 * dselect/po: New directory.
7318 * dselect/main.cc (main): Use DSELECT domain.
7319 * dselect/Makefile.am (SUBDIRS): Add po.
7320 * configure.ac (AC_CONFIG_FILES): Add dselect/po/Makefile.in.
7322 2006-02-17 Guillem Jover <guillem@debian.org>
7324 * methods/: Move directory to dselect/methods/.
7325 * Makefile.am (SUBDIRS): Move methods to ...
7326 * dselect/Makefile.am (SUBDIRS): ... here. New variable.
7327 * configure.ac (AC_CONFIG_FILES): Rename methods/Makefile to
7328 dselect/methods/Makefile.
7330 2006-02-17 Guillem Jover <guillem@debian.org>
7332 * configure.ac: Require gettext 0.14.5.
7334 2006-02-17 Guillem Jover <guillem@debian.org>
7336 * configure.ac: Use AC_CONFIG_AUX_DIR to move auxiliary scripts to
7339 2006-02-16 Frank Lichtenheld <djpig@debian.org>
7341 * configure.ac: Bump version to 1.13.16~.
7343 2006-02-15 Frank Lichtenheld <djpig@debian.org>
7345 * configure.ac: Release 1.13.15.
7347 2006-02-13 Jordi Mallach <jordi@debian.org>
7349 * src/processarc.c (process_archive): Add missing closing parenthesis
7352 2006-02-12 Frank Lichtenheld <djpig@debian.org>
7354 * configure.ac: Bump version to 1.13.15~.
7356 * configure.ac: Release 1.13.14.
7358 2006-02-11 Denis Barbier <barbier@debian.org>
7360 * man/C/dpkg.1: Escape ` and ', otherwise they are converted to
7361 quotation marks, which makes cut and paste useless.
7362 * man/C/dpkg-query.1: Likewise.
7363 * man/C/dpkg-name.1: Likewise.
7364 * man/C/dpkg-architecture.1: Likewise.
7366 2006-02-11 Frank Lichtenheld <djpig@debian.org>
7368 * scripts/dpkg-source.pl: Add .git to
7369 $diff_ignore_default_regexp.
7371 * scripts/dpkg-source.pl: Remove any
7372 newlines from Uploaders field to allow
7373 people to make it multi-line in the
7376 2006-02-10 Denis Barbier <barbier@linuxfr.org>
7378 * scripts/dpkg-source.pl: Touch all patched files
7379 to have the same timestamp. This should mitigate
7380 time-skew problems until we can finally add proper
7381 timestamps to the diffs.
7383 2006-02-10 Ian Jackson <iwj@ubuntu.com>
7385 * src/configure.c: Differentiate between modified
7386 and deleted configuration files. Gives and more
7387 accurate description to the user and eliminates
7388 a warning that was produced when trying to
7389 backup a non-existant file.
7391 * lib/dpkg-db.h (conffile): Add `obsolete' field.
7392 * lib/dump.c (w_conffiles): Write "obsolete" at the
7393 end of conffile entry if obsolete is set.
7394 * lib/fields.c (f_conffiles): Parse entries for
7395 obsolete conffiles correctly.
7396 * src/filesdb.h (filenamenode.flags): Add new
7397 flag for obsolete conffiles.
7398 * src/remove.c (removal_bulk_remove_configfiles):
7399 Handle obsolete conffiles.
7400 * src/archives.c (newconff_append): New function
7401 to append a filenamenode to a fileinlist.
7402 (addfiletolist): New function to add a filenamenode
7404 (tarobject): Use new addfiletolist function.
7405 Handle case where a new package takes over
7406 an obsolete conffile from another package.
7407 * src/archives.h: Add declaration of the
7408 addfiletolist function.
7409 * src/processarc.c (process_archive): Use new
7410 newconff_append function from archives.c.
7411 Detect obsoleted conffiles and mark them as such.
7412 * src/help.c (chmodsafe_unlink): Make it possible
7413 to differentiate between failed chmod and failed
7414 unlink by adding a new `failed' argument which
7415 will be set to the name of the failed command.
7416 (chmodsafe_unlink_statted): New function that
7417 can be called if we already have a stat result for
7418 the file/directory to be removed.
7419 (ensure_pathname_nonexisting): Give better error
7420 messages by utilizing the changes to
7422 * src/main.h: Reflect changes in archives.c
7423 and help.c (add declarations for newconff_append
7424 and chmodsafe_unlink_statted and change the
7425 one of chmodsafe_unlink).
7426 (conffopt): Add new isold flag.
7428 2006-02-10 James R. Van Zandt <jrvz@comcast.net>
7430 * man/C/dpkg.1: Document the default log file. The behaviour in case
7431 of multiple --log options. And add a reference to dpkg.cfg manpage.
7433 2006-02-10 Philippe Batailler <philippe.batailler@free.fr>,
7434 Guillem Jover <guillem@debian.org>
7436 * man/C/dpkg-query.1: Use dots instead of blank lines to logically
7438 (SYNOPSIS): Add command descriptions.
7439 (COMMANDS): Use package-name instead of package.
7440 (OPTIONS): Give an example for --showformat.
7441 (SEE ALSO): Add a final dot to reference.
7443 2006-02-08 Guillem Jover <guillem@debian.org>
7445 * man/po4a.mk (%): Replace % with $@ as the former is not substituted
7446 in the rule's command.
7448 2006-02-08 Guillem Jover <guillem@debian.org>
7450 * debian/contrl (Build-Depends): Depend on version >= 1.28-4 of
7451 libselinux1-dev as it has pkg-config support. Remove libsepol1-dev,
7452 now dragged by libselinux1-dev. Add pkg-config.
7453 * m4/libs.m4 (DPKG_LIB_SELINUX): Use pkg-config to get the static
7454 and dynamic linker flags, thus no more hardcoding the transitional
7457 2006-02-07 Nicolas François <nicolas.francois@centraliens.net>
7459 * man/C/dselect.1: Fix a typo: replace '.sh' by '.sp'.
7460 * man/C/dpkg-scansources.1: Fix a typo: replace '.Sp' by '.sp'.
7462 2006-02-07 Guillem Jover <guillem@debian.org>
7464 * man/C/update-alternatives.8: Remove trailing 'C'.
7466 2006-02-06 Changwoo Ryu <cwryu@debian.org>,
7467 Guillem Jover <guillem@debian.org>
7469 * lib/dump.c (writerecord): Mark strings as translatable.
7470 * lib/fields.c (f_priority): Likewise.
7471 * lib/mlib.c (checksubprocerr): Likewise.
7473 2006-02-06 Guillem Jover <guillem@debian.org>
7475 * src/main.c (printversion): Do not split strings with a macro in
7476 the middle, use C format arguments. Use printf instead of fputs.
7477 * src/query.c (printversion): Likewise.
7478 * dpkg-deb/main.c (printversion): Likewise.
7479 * dpkg-split/main.c (printversion): Likewise.
7481 * src/main.c (usage): Use printf instead of fprintf. Uppercase initial
7482 letter for commands descriptions. Quote strings per line. Standarize
7483 indentation. Split globally common strings. Remove program name prefix
7484 from command descriptions. Standarize 'Usage:' and 'Commands:'
7485 headings. Split independent commands into different lines.
7486 * src/query.c (usage): Likewise.
7487 * dpkg-deb/main.c (usage): Likewise.
7488 * dpkg-split/main.c (usage): Likewise.
7490 * src/main.c (printforhelp): Use 'license' instead of 'licence'.
7491 * src/query.c (printforhelp): Likewise.
7493 * dselect/main.cc (programdesc): Add version string from ...
7494 (copyrightstring): ... here. Move GPL license notice to ...
7495 (licensestring): ... here. New variable.
7496 (printversion): Use printf instead of fprintf. Give proper arguments
7497 to the new formated strings. Print 'licensestring'.
7498 (usage): Use printf instead of fprintf. Standarize indentation. Add
7499 options descriptions. Add a new line after each section.
7500 (curseson): Do not split strings with a macro in the middle, use
7502 (refreshmenu): Fix arguments given to 'programdesc' and
7503 'copyrightstring' variables. Print 'licensestring' variable.
7505 2006-02-06 Guillem Jover <guillem@debian.org>
7507 * utils/start-stop-daemon.c (main): When using --chuid set the HOME
7508 environment variable.
7510 2006-02-05 Christian Perrier <bubulle@debian.org>
7512 * man/*: Switch all translations to po4a. Work contributed
7513 by Nicolas François.
7515 2006-01-30 Frank Lichtenheld <djpig@debian.org>
7517 * scripts/dpkg-shlibdeps.pl: Fix some variable name
7518 typos that lead to semantic errors. Also change
7519 the names of the variables to prevent such errors
7522 2006-01-29 Frank Lichtenheld <djpig@debian.org>
7524 * man/C/dpkg-scanpackages.1: Document new dpkg-scanpackages
7525 -m option added by Don Armstrong.
7526 * scripts/dpkg-scanpackages.pl: Fix some bugs introduced by
7529 * man/C/dpkg-source.1: Document that the -sX switches for
7530 dpkg-source are mutually exclusive and only one can be in
7532 * scripts/dpkg-source.pl: Warn if more than one -sX switch
7533 is specified on the command line.
7535 * scripts/dpkg-source.pl: Make dpkg-source -b more robust
7536 regarding to existing symlinks by creating all files
7537 in secure temporary files and renaming them afterwards.
7538 This fixes problems with packages retrieved with
7539 apt-get source from local repositories.
7541 2006-01-29 Don Armstrong <don@debian.org>
7543 * scripts/dpkg-scanpackages.pl: Rewrite the script to support
7544 multiple versions of packages in a single Packages file;
7545 use Getopt::Long instead of attempting to parse the command line
7546 ourselves and doing it badly;
7547 get rid of unecessary hashes and arrays that aren't used at all;
7548 output help when given the --help/-h/-? options
7550 2006-01-29 maximilian attems <debian@sternwelten.at>
7552 * scripts/dpkg-source.pl: Add files and
7553 dirs used by bzr to $diff_ignore_default_regexp.
7555 2006-01-29 Julian Gilbey <jdg@debian.org>
7557 * scripts/dpkg-buildpackage.sh: Create .changes
7558 file even if signing .dsc file fails to make it
7559 easier to just sign the package later.
7561 * scripts/dpkg-buildpackage.sh: Change heuristics
7562 of gpg check so that it allows for more complex
7565 2006-01-29 Anand Kumria <wildfire@progsoc.org>
7567 * scripts/dpkg-source.pl (checkdiff): Ignore comments
7568 hunk header line as used by diff -p.
7570 2006-01-29 Guillem Jover <guillem@debian.org>
7572 * utils/start-stop-daemon.c (do_help): Print the proper version
7573 giving it as an argument to printf, instead of printing 'VERSION'.
7575 2006-01-29 Guillem Jover <guillem@debian.org>
7577 * configure.ac: Bump version to 1.13.14~.
7579 2006-01-28 Frank Lichtenheld <djpig@debian.org>
7581 * configure.ac: Release 1.13.13.
7583 2006-01-28 Guillem Jover <guillem@debian.org>
7585 * scripts/dpkg-architecture.pl: Do not print the warning about a
7586 missmatch between gcc target machine type and GNU target system
7587 type if the actions are '-e' or '-i'.
7589 2006-01-27 Frank Lichtenheld <djpig@debian.org>
7591 * scripts/dpkg-shlibdeps.pl: Honor LD_LIBRARY_PATH when
7592 searching for shared libraries.
7593 * scripts/dpkg-shlibdeps.pl: Don't recurse into package
7594 directories when searching for local shlibs files.
7596 2006-01-26 Zefram <zefram@fysh.org>,
7597 Guillem Jover <guillem@debian.org>
7599 * man/C/dpkg-query.1: Document the correct format string for
7600 the '--showformat' option. Update '-l' example. Lower case program
7601 name in title header.
7603 2006-01-26 Christoph Maser <cm@financial.com>
7605 * utils/start-stop-daemon.c (do_help): Fix typo ('-C' -> '-d').
7607 2006-01-26 A Costa <agcosta@gis.net>
7609 * man/C/dselect.1: Fix typos.
7611 2006-01-26 Bastian Kleineidam <calvin@debian.org>
7613 * man/C/dpkg.1: Document the --no-debsig option.
7615 2006-01-26 Marc Haber <mh+debian-packages@zugschlus.de>
7617 * man/C/dpkg-statoverride.8: Fix typo.
7619 2006-01-24 Frank Lichtenheld <djpig@debian.org>
7621 * debian/control (Section): dpkg and dselect are now in section
7622 admin, not section base. Correct info in the control file.
7623 (Standards-Version): Bump Standards-Version to 3.6.2 (no changes).
7625 * man/C/dpkg-architecture.1: Fix typo.
7627 2006-01-23 Vasilis Vasaitis <v.vasaitis@sms.ed.ac.uk>
7629 * utils/start-stop-daemon.c (pid_is_exec) [OSLinux]: Change function
7630 prototype to take a constant string instead of a struct stat. Compare
7631 the filename pointed by the '/proc/<pid>/exe' symlink, instead of the
7632 stat device and inode numbers. Fix all callers.
7634 2006-01-23 Frank Lichtenheld <djpig@debian.org>
7636 * scripts/dpkg-shlibdeps.pl: Rewrite of the script
7637 to not use the path information from ldd anymore (which
7638 is unreliable in the case of symlinked directories and
7639 not necessarily available for biarch builds). Instead
7640 build an own representation of the search patch.
7642 * scripts/dpkg-source.pl: Don't use \b to match the end
7643 of the version in filenames, use (?=[.-]) and (?=\.) instead.
7644 \b doesn't work in case the version ends with ~.
7646 * AUTHORS: Updated for new maintainance team
7647 * debian/copyright: Add myself as copyright holder since
7648 I also added a note to that effect with my dpkg-shlibdeps
7651 2006-01-23 Guillem Jover <guillem@debian.org>
7653 Support for architecture wildcards.
7655 * scripts/controllib.pl: Rename to ...
7656 * scripts/controllib.pl.in: ... this.
7657 * scripts/dpkg-architecture.pl: Add new actions '-e' and '-i' that
7658 call debian_arch_eq and debian_arch_is, to check for architecture
7659 equality and identity respectively. Use debian_arch_fix instead of
7660 the duplicated code.
7661 (pkgdatadir, read_cputable, read_ostable): Move to ...
7662 * scripts/controllib.pl.in: ... here.
7663 (debian_arch_fix): New function. Fix normalized kernel-cpu input to
7664 legacy Debian architecture output.
7665 (debian_arch_split): New function. Normalize and split input into
7666 kernel and cpu components.
7667 (debian_arch_eq): New function. Compare two tuples for equality after
7668 having normalized them with debian_arch_split.
7669 (debian_arch_is): New function. Check two tuples for identity after
7670 having normalized them with debian_arch_split.
7671 (debian_arch_expand): New function. Expand the normalized input
7672 into all possible legacy Debian architectures matching the wildcard.
7673 (parsedep): Use debian_arch_is to check if the host architecture is
7674 part of the architecture listed in the dependency relationship.
7675 (showdep): Use debian_arch_expand to normalize the architectures for
7676 binary and source packages, so generated packages will be backward
7677 compatible in regard to architecture format.
7678 * scripts/dpkg-genchanges.pl: Use new dpkg_arch_is and dpkg_arch_eq
7679 instead of the hardcoded checks.
7680 * scripts/dpkg-gencontrol.pl: Likewise.
7681 * scripts/dpkg-source.pl: Likewise. Use dpkg_arch_expand to fill
7682 the Architecture field with the legacy Debian architecures.
7683 * scripts/Makefile.am: New rule to generate .pl from .pl.in files.
7684 * man/C/dpkg-architecture.1: Update. Add new options, and few words
7685 about the format of the wildcards.
7687 2006-01-23 Guillem Jover <guillem@debian.org>
7689 * scripts/dpkg-source.pl: Add a missing '+' in the architecture
7692 2006-01-23 Bart Martens <bart.martens@advalvas.be>,
7693 Guillem Jover <guillem@debian.org>
7695 * debian/contrl (Build-Depends): Add libsepol1-dev as a temporary
7696 workaround until libselinux1-dev has pkg-config support.
7697 * m4/libs.m4 (DPKG_LIB_SELINUX): Explicitly statically link against
7700 2006-01-20 Aurelien Jarno <aurel32@debian.org>
7702 * debian/control (Build-Depends): Do not depend on libselinux1-dev
7705 2006-01-20 Lennert Buytenhek <buytenh+debian@wantstofly.org>
7707 * cputable: Add armeb.
7709 2006-01-18 Joey Hess <joeyh@debian.org>
7711 * scripts/dpkg-shlibdeps.pl: Add possibility to specify a package
7712 type in the shlibs file and add a -t switch to dpkg-shlibdeps to
7713 specify the wanted type. Entries without package type will have
7714 type 'deb' and will serve as fallback if no entry with the correct
7716 * man/C/dpkg-source.1: Document new -t switch for dpkg-shlibdeps.
7718 2005-10-11 Frank Lichtenheld <djpig@debian.org>
7720 * man/C/*.[158]: Update references to dpkg and dselect
7721 man pages with correct section (8->1).
7722 * man/C/dselect.1: Update reference to debconf
7723 man page with correct section (8->1).
7725 * scripts/dpkg-source.pl: Warn on -b if we add a file with
7726 special (i.e. exectuable or set{u,g}id) permission in the
7727 diff since this mode will get lost.
7729 2005-10-07 Frank Lichtenheld <djpig@debian.org>
7731 * scripts/controllib.pl (checkversion): Add generic check for valid
7733 (checkpackagename): Add generic check for valid package names.
7734 (readmd5sum): Add generic function to extract md5sum from md5sum
7735 program output. This also fixes the handling of md5sum -b output in
7737 (setsourcepackage): Call checkpackagename on new value.
7738 * scripts/dpkg-source.pl: Use the new checks added to
7739 controllib to ensure validity of version and packagename
7740 on build, too. Previously this was only done on
7743 * scripts/dpkg-source.pl: Test on build if directories
7744 added by diff already exist with other type in the original
7745 source since we already tested that on unpack.
7747 * scripts/dpkg-source.pl (addfile): Test if files are added
7748 twice. Should not happen but as we error out on unpack
7749 better make sure it doesn't.
7751 2005-10-04 Frank Lichtenheld <djpig@debian.org>
7753 * scripts/dpkg-source.pl: Check build relation
7754 fields for correctness before putting them into
7755 the .dsc when building. This also normalizes the
7758 2005-10-03 Matt Zimmerman <mdz@debian.org>,
7759 Frank Lichtenheld <djpig@debian.org>
7761 * scripts/dpkg-source.pl: If gpg is installed, check
7762 the signature of the .dsc file before unpacking.
7763 Allow the unpacking to suceed if the .dsc is unsigned
7764 but error out if the signature is bad. If gpg exits
7765 with a code >2 (e.g. missing key), show the user the gpg
7766 output but continue.
7768 2005-10-03 Frank Lichtenheld <djpig@debian.org>
7770 * scripts/dpkg-source.pl: Try to chown files extracted from
7771 a tar file to the uid and gid of the user. This should make
7772 dpkg-source -x safer to use as root. Also create the temporary
7773 directory mode 0700 to not allow anyone exploiting races
7774 between the extraction and the chown.
7776 * scripts/dpkg-gencontrol.pl: Warn about illegal architecture
7777 strings. This will warn e.g. about comma-separated architecture
7779 * scripts/dpkg-source.pl: Also check architecture strings and
7780 error out if we find illegal ones.
7782 2005-08-27 Frank Lichtenheld <djpig@debian.org>
7784 * scripts/dpkg-gencontrol.pl: Bail out with an error if parsedep
7785 found an error while parsing a dependency field.
7787 2005-08-17 Scott James Remnant <scott@netsplit.com>
7789 * configure.ac: Bump version to 1.13.12~.
7791 * configure.ac: Release 1.13.11.
7793 * scripts/dpkg-source.pl: Re-work the logic that handles the Files
7794 field when unpacking source packages; always remove the revision
7795 component and thereby allow -$rev.orig.tar.gz as well as native
7796 diff.gz or debian.tar.gz; improve the "unrecognised file" error to
7797 give the full filename, not the mangled suffix; check whether the
7798 revision has length, rather than is non-zero ("0" is false in Perl).
7800 2005-08-17 Frank Lichtenheld <djpig@debian.org>
7802 * scripts/controllib.pl (parsedep): Correct a bug that caused wrong
7803 architecture requirements in some cases, due to only "my"ing the
7804 @arches list in some circumstances.
7806 2005-08-17 Colin Watson <cjwatson@ubuntu.com>
7808 * src/processarc.c (process_archive): When copying the forward
7809 dependency tree, blank the version field of unversioned dependencies
7810 rather than leaving them uninitialised.
7812 2005-08-17 Scott James Remnant <scott@netsplit.com>
7814 * scripts/dpkg-source.pl: Fix a few problems found with the
7815 $diff_ignore_default_regexp value; it'd match any path with
7816 DEADJOE in it somewhere (or .cvsignore, etc.), wouldn't match
7817 an initial CVS or {arch}, etc.
7818 Took the opportunity to reformat the string and add some comments,
7819 which get stripped out before it's used.
7820 Added tla/baz junk ",,.*" to the list of filters.
7822 * lib/dbmodify.c (log_message): Call setcloexec() on the log
7823 file descriptor, otherwise we leak it to our children.
7825 2005-08-17 Ludovic Rousseau <rousseau@debian.org>
7827 * src/filesdb.c: Replace all references to "statusoverride" file
7828 with "statoverride".
7830 2005-08-17 Scott James Remnant <scott@netsplit.com>
7832 * src/query.c (enqperpackage): Only output a newline between
7833 different packages and not after the last one.
7835 * man/C/dpkg-deb.1: Document -W/--show and --showformat.
7837 2005-08-14 Bastian Kleineidam <calvin@debian.org>
7839 * man/C/dpkg-architecture.1: Fix typo.
7841 2005-08-14 Frank Lichtenheld <djpig@debian.org>
7843 * scripts/dpkg-genchanges.pl: Give a warning when one tries
7844 to use -sd on a native Debian package.
7846 * scripts/dpkg-source.pl: Handle absolute paths in the argument
7849 * scripts/dpkg-source.pl: Give more meaningful error message
7850 if first argument to dpkg-source -x is a directory
7852 * scripts/controllib.pl (parsecdata): Ignore trailing newlines
7853 in single paragraph control files.
7855 * scripts/controllib.pl (parsedep): Give a warning explaining
7856 the problem when failing to parse the dependency.
7857 * scripts/dpkg-checkbuilddeps.pl: Pass the dependency field name
7858 to all calls to &build_depends() and &build_conflicts(), which
7859 both call &check_line().
7860 (check_line): Take an argument specifying the field name, and
7861 use it to output an error if the dependency list is not
7862 defined (caused by a failure of &parsedep()).
7864 * scripts/controllib.pl: Remove the %capit map, it's no longer
7865 used and everything uses the &capit() function instead.
7866 (capit): Uppercase all letters that come after a minus ('-'),
7868 2005-08-14 Moritz Muehlenhoff <jmm@inutil.org>,
7869 Frank Lichtenheld <djpig@debian.org>
7871 * scripts/controllib.pl (parsedep): Allow whitespace before
7872 version operators in dependencies.
7874 2005-08-14 Goswin Brederlow <brederlo@informatik.uni-tuebingen.de>
7876 * scripts/dpkg-name.sh (stderr): Use shell redirect rather than
7879 2005-08-14 Scott James Remnant <scott@netsplit.com>
7881 * debian/control ([dselect]Description): Remove "a" from the start
7882 of the description synopsis line.
7883 ([dpkg]Description): De-capitalise description synopsis line.
7884 ([dpkg-dev]Description): Likewise.
7886 2005-08-14 Guillem Jover <guillem@debian.org>
7888 * scripts/dpkg-architecture.pl (usageversion): Correct punctuation
7889 in copyright message and escape the @ so Perl doesn't treat it as
7890 an array reference. Same for initial comment.
7892 2005-07-17 Scott James Remnant <scott@netsplit.com>
7894 * src/remove.c (removal_bulk_remove_files): Call lstat() rather
7895 than stat() when removing a character, block or setuid file so
7896 we change the thing itself and not what the symlink points to.
7897 * src/processarc.c (process_archive): Likewise.
7899 * src/processarc.c (process_archive): Call ohshit() after finding
7900 out we don't have an errno, not ohshite().
7902 * src/cleanup.c (cu_preinstverynew): Blank the status information
7903 of a newly installed package that we aborted the install of,
7904 to avoid having packages in a not-installed state but with a version.
7906 2005-07-16 Scott James Remnant <scott@netsplit.com>
7908 * src/filesdb.h (filenamenode.flags): Add fnnf_placed_on_disk flag
7909 to indicate that the file is now on the disk, and thus needs to be
7910 removed in cleanup if that happens.
7911 * src/cleanup.c (cu_installnew): If <foo>.dpkg-tmp did not exist,
7912 and the fnnf_placed_on_disk flag is set, we now remove the newly
7914 * src/archives.c (tarobject): Set the fnnf_placed_on_disk flag once
7915 the rename to the final destination succeeds. Add additional
7916 comments to the source so we know what's on the disk at each point.
7917 Fix up the #ifdef syntax to not confuse emacs.
7919 * src/archives.c (filesavespackage): Check whether the file we're
7920 going to install is going to be diverted, before whether it's in the
7923 * src/processarc.c (process_archive): When removing files that
7924 were in the old version of the package only, don't just call
7925 isdirectoryinuse(), actually check whether it's a directory first;
7926 otherwise we won't remove diverted things.
7928 2005-07-15 Scott James Remnant <scott@netsplit.com>
7930 * lib/ehandle.c (run_cleanups): Modify the value of flagset
7931 according to the checkpoint mask and value after processing,
7932 otherwise we'll run handlers we didn't mean to.
7933 (pop_cleanup): Remove the flagset setting, we don't mix
7934 checkpoints and calls anywhere.
7936 2005-06-28 Scott James Remnant <scott@netsplit.com>
7938 * configure.ac: Bump version to 1.13.11~.
7940 * configure.ac: Release 1.13.10.
7942 * debian/dpkg.preinst (create_logfile): Remove from preinst.
7943 * debian/dpkg.postinst (create_logfile): To postinst; I can't think
7944 of any particular reason it needs to happen before configuration.
7945 In addition, use numeric ids for the chown call to avoid requirement
7946 that base-passwd be configured first.
7948 2005-06-28 Manoj Srivastava <srivasta@debian.org>
7950 * src/archives.c: Look at the security context of the final
7951 destination, not the temporary file.
7953 2005-06-24 Scott James Remnant <scott@netsplit.com>
7955 * po/POTFILES.in: Remove lib/star.c.
7957 2005-06-24 Manoj Srivastava <srivasta@debian.org>
7959 * src/archives.c: Restore selinux code incorrectly placed in
7960 lib/star.c, modified to fit in with tarobject.
7962 2005-06-17 Scott James Remnant <scott@netsplit.com>
7964 * debian/dpkg.preinst (confirm_dselect_split): When set -e,
7965 following a command with "|| return" doesn't eat the exit status.
7967 * lib/dbmodify.c (log_message): Set the log to be line-buffered.
7969 2005-06-16 Scott James Remnant <scott@netsplit.com>
7971 * lib/star.c: Remove, it's unused code and causes confusion.
7972 * lib/Makefile.am (libdpkg_a_SOURCES): Don't compile star.c.
7974 2005-06-15 Bastian Kleineidam <calvin@debian.org>
7976 * man/C/dpkg.cfg.5: Correct reference to dpkg(8) to dpkg(1).
7978 2005-06-14 Scott James Remnant <scott@netsplit.com>
7980 * man/C/dpkg-architecture.1: Add missing "recent" from paragraph
7981 on backward compatibility.
7983 2005-06-13 Scott James Remnant <scott@netsplit.com>
7985 * debian/rules: Check DEB_HOST_ARCH_OS and only add the option
7986 to enable SELinux if we're on Linux.
7987 * debian/control (Build-Depends): Don't build-depend on
7988 libselinux1-dev on hurd-i386. The complete list is too long to
7989 maintain, so wait until we can put "[linux-any]" in here.
7991 * scripts/dpkg-source.pl: Handle native tarballs with a
7994 * lib/dbmodify.c (log_message): Use the local time, not UTC;
7995 this is more consistent with syslog.
7997 2005-06-13 Johannes Veser <veser@gmx.de>
7999 * debian/dpkg.prerm (undivert_md5sum): dpkg-divert takes the
8000 diverted filename, not the destination.
8002 2005-06-13 Scott James Remnant <scott@netsplit.com>
8004 * debian/dpkg.install: Remove start-stop-daemon rule, as that
8005 copies it rather than moves it.
8006 * debian/rules (binary-arch): Move start-stop-daemon into sbin
8009 2005-06-12 Scott James Remnant <scott@netsplit.com>
8011 * configure.ac: Bump version to 1.13.10~.
8013 * configure.ac: Release 1.13.9.
8015 2005-06-11 Scott James Remnant <scott@netsplit.com>
8017 * scripts/dpkg-source.pl: Add .arch-inventory to default diff
8020 * scripts/dpkg-source.pl: If two arguments are given to dpkg-source,
8021 use the second to set $newdirectory rather than creating it ourselves.
8022 It's an error to specify an output directory that exists.
8023 (usageversion): Document optional second argument to dpkg-source -x.
8025 * man/C/dpkg-source.1: Document optional second argument.
8027 2005-06-11 Matt Kraai <kraai@alumni.cmu.edu>,
8028 Scott James Remnant <scott@netsplit.com>
8030 * scripts/dpkg-source.pl: Move the .orig directory out of the way
8031 during the duration of the script, moving it back again afterwards.
8033 2005-06-11 Brendan O'Dea <bod@debian.org>
8035 Support unpacking of "Wig And Pen" (Format: 2.0) source packages.
8037 * scripts/dpkg-source.pl: When unpacking a source package with a
8038 2.x format, allow multiple orig tarballs and allow the diff to be
8039 replaced by a debian.tar. Additional orig tarballs are named
8040 "*.orig-xxx.tar" where the "xxx" is the name of the sub-directory
8041 of the source where they should be unpacked. The debian.tar is
8042 unpacked as the debian sub-directory of the source and may contain
8043 binaries (which the diff can't) and patches (in a patches
8044 sub-directory) which are automatically applied during unpacking.
8045 (checkdiff): Move diff checking code into sub-routine as we call
8046 it multiple times now. Allow uncompressed patches, cruft
8047 at the start of a patcha and be less strict about patched directory
8048 name (including allowing /dev/null). Skip "Index:" header generated
8050 (forkgzipread): Run either gunzip or bunzip2 depending on the
8051 filename, allowing us to support .tar.bz2, and .diff.bz2.
8052 (handleformat): Compare a range of major versions, as we now
8053 support both 1.0 and 2.0 formats.
8054 (def_dscformat): Generate 1.0 format packages by default.
8055 (setfile): Removed unused function.
8056 * debian/control ([dpkg-dev]Recommends): Recommend bzip2, it's
8057 not an absolute dependency until bz2 packages are supported by
8060 2005-06-11 Scott James Remnant <scott@netsplit.com>
8062 * m4/libs.m4 (DPKG_LIB_ZLIB, DPKG_LIB_BZ2): Rewrite to match the
8063 way --with-selinux works. Actually check whether the library and
8064 header files we need are available, using the configure option to
8065 determine whether the tests should be skipped (=no) or cause a
8066 hard failure if not present (=yes or =static).
8067 * lib/Makefile.am (INCLUDES): Remove ZLIB_CFLAGS and BZ2_CFLAGS as
8068 we don't set these to anything in configure anymore (WITH_ZLIB and
8069 WITH_BZ2 are set in config.h) and users would set CFLAGS itself to
8070 supply missing -I arguments.
8071 * dpkg-deb/Makefile.am (INCLUDES): Remove ZLIB_CFLAGS and BZ2_CLFAGS.
8072 * src/Makefile.am (dpkg_query_LDADD): Remove ZLIB_LIBS and CFLAGS_LIBS
8073 as dpkg-query doesn't use them.
8075 * m4/libs.m4 (DPKG_LIB_SELINUX): Add new test for the selinux
8076 library and header. This works a little differently from the
8077 current --with-{zlib,bz2} tests in that if no option is given it
8078 still tries to enable it if possible. If "yes" or "static" is given,
8079 that forces the requirement (configure fails if not present), if "no"
8080 is given the tests are skipped.
8081 * configure.ac: Include selinux test.
8083 2005-06-11 Manoj Srivastava <srivasta@debian.org>
8085 * lib/star.c (ExtractFile, SetModes): If dpkg is compiled with
8086 SELinux, test once whether SELinux is enabled on the system. If it
8087 is enabled, find out the security context of the file from its path
8088 and either set what we think it should be or let the default security
8089 context for the process be applied.
8090 * debian/control (Build-Depends): Add libselinux1-dev as a build
8092 * debian/rules: Compile-in support for selinux and link statically.
8093 * dpkg-deb/Makefile.am (dpkg_deb_LDADD): Link dpkg-deb with
8095 * src/Makefile.am (dpkg_LDADD): Link dpkg with SELINUX_LIBS.
8097 2005-06-10 Scott James Remnant <scott@netsplit.com>
8099 * lib/dbmodify.c (log_message): New function that writes a
8100 formatted string to the log file, opening it if it hasn't been
8101 yet. In case of error, we print it and don't try to open the
8103 (modstatdb_note): Replace log writing code with call to new
8104 log_message function.
8105 * src/configure.c (promptconfaction): Replace log writing code
8106 with call to log_message function.
8107 * src/help.c (log_action): Simplify to just a log_message call.
8108 * lib/dpkg-db.h: Remove extern definition of log_pipes, replace
8109 with log_message function.
8110 * src/main.c (cmdinfos): Change --log argument action to just
8111 storing the string in the log_file variable.
8112 (setfile): Remove function.
8113 * lib/myopt.c (myfileopt): strdup the string option argument
8114 before storing it, otherwise it just gets overwritten by the next
8117 * configure.ac: Bump version to 1.13.9~.
8119 * configure.ac: Release 1.13.8.
8121 * lib/parse.c (parsedb): Check whether the file size is greater
8122 than zero bytes in size before trying to mmap or malloc it, if it
8123 isn't don't process the file.
8125 2005-06-09 Scott James Remnant <scott@netsplit.com>
8127 * configure.ac: Bump version to 1.13.8~.
8129 * configure.ac: Release 1.13.7.
8131 * src/main.c (setfile): Make inability to open the log file a
8132 warning only, rather than bailing out; and if not running as root,
8133 don't even show the warning.
8135 2005-06-09 Colin Watson <cjwatson@ubuntu.com>
8137 * man/C/dpkg-architecture.1: Include example debian/rules snippet
8138 to support older versions of dpkg-dev after updating to use new
8141 2005-06-09 Scott James Remnant <scott@netsplit.com>
8143 * man/C/dpkg-architecture.1: Clean up examples using .nf and .fi
8144 to produce a pre-like effect. Indent the examples a little.
8146 2005-06-06 Scott James Remnant <scott@netsplit.com>
8148 * configure.ac: Bump version to 1.13.7~.
8150 * debian/dpkg.install: Don't use dh_install to copy the logrotate
8151 file because it can't rename things.
8152 * debian/rules (binary-arch): Install and rename manually instead.
8153 * configure.ac: Release 1.13.6 (Brown Paper Bag).
8155 * configure.ac: Bump version to 1.13.6~.
8157 * configure.ac: Release 1.13.5.
8159 2005-06-06 Philippe Batailler <philippe.batailler@free.fr>
8161 * man/fr/*: All french man pages updated
8163 2005-06-06 Christian Perrier <bubulle@debian.org>
8165 * man/pt_BR/update-alternatives.8: Syntax error corrected.
8167 2005-06-06 Kevin Ryde <user42@zip.com.au>
8169 * man/sv/dpkg-deb.1: Syntax error corrected.
8170 * man/es/dpkg-scanpackages.1: Syntax error corrected.
8172 2005-06-06 Scott James Remnant <scott@netsplit.com>
8174 * src/configure.c (promptconfaction): Record user's decision about
8175 a conffile in the log file as either "install" or "keep".
8176 * man/C/dpkg.1: Document the conffile output that'll appear in the
8179 * debian/dpkg.cfg: Create a log-file by default.
8180 * debian/dpkg.logrotate: Include a logrotate file for the log.
8181 * debian/dpkg.install: Install the debian/dpkg.logrotate file as
8182 /etc/logrotate.d/dpkg
8183 * Makefile.am (EXTRA_DIST): Ship the debian/dpkg.logrotate file.
8184 * debian/dpkg.preinst (create_logfile): Create a log file with
8185 the default permissions.
8186 * debian/dpkg.postrm (remove_logfile): Remove log files when dpkg
8187 is purged (not that it will happen, but it pays to be compliant).
8189 * debian/dpkg.preinst (confirm_dselect_split): Only check process
8190 list for dselect if ps is installed; this should be the case during
8193 * debian/dpkg.prerm (undivert_md5sum): Remove md5sum diversion
8194 when the package is removed or downgraded to a version where
8195 we supplied our own md5sum.
8196 * debian/dpkg.postinst (divert_md5sum): Divert md5sum as long as
8197 there isn't one, don't explicitly check for the textutils file
8198 being there as it may be installed afterwards.
8200 2005-05-26 Scott James Remnant <scott@netsplit.com>
8202 * debian/control (Maintainer): I'm going to officially take blame for
8203 this package Ian-style, we'll keep bugs going to the list using the
8206 2005-05-25 Scott James Remnant <scott@netsplit.com>
8208 * scripts/dpkg-source.pl: Recognise Enhances in the package's
8209 section of control files.
8211 2005-05-23 Scott James Remnant <scott@netsplit.com>
8213 * cputable: Change GNU name of the i386 CPU to i486, to reflect
8215 * debian/archtable: Update first field of i386 and hurd-i386 to
8216 use i486 as the CPU name.
8218 2005-04-03 Scott James Remnant <scott@netsplit.com>
8220 * scripts/dpkg-architecture.pl (gnu_to_debian): Check cputable
8221 and ostable in file order.
8222 * ostable: Place hurd at the bottom so it's checked last.
8224 2005-03-29 Scott James Remnant <scott@netsplit.com>
8226 * configure.ac: Bump version to 1.13.5~.
8228 * configure.ac: Release 1.13.4.
8230 2005-03-28 Scott James Remnant <scott@netsplit.com>
8232 * scripts/dpkg-architecture.pl: Catch -L and list every possible
8233 os and cpu combination.
8234 (usageversion): Add -L option to description.
8235 (read_cputable): Add in-order list of cpu values to @cpu array.
8236 (read_ostable): Add in-order list of os values to @os array.
8237 * man/C/dpkg-architecture.1: Document -L option.
8239 2005-03-27 Scott James Remnant <scott@netsplit.com>
8241 * m4/arch.m4 (DPKG_OS_TYPE): Allow a vendor to appear at the start
8243 * scripts/dpkg-architecture.pl (gnu_to_debian): Don't strip the
8244 vendor out, just allow it to appear at the start of the string.
8246 2005-03-21 Scott James Remnant <scott@netsplit.com>
8248 * configure.ac: Bump version to 1.13.4~.
8250 * configure.ac: Release 1.13.3.
8252 * scripts/controllib.pl (unknown): Output field name we have in
8253 hand, rather than trying to look it up in a dictionary in which
8254 it doesn't exist yet.
8256 * scripts/changelog/debian.pl: Revert accidental half-patch that
8257 turned the Maintainer field into a Changed-By field.
8259 2005-03-21 Marc Dequènes <duck@duckcorp.org>
8261 * scripts/dpkg-gencontrol.pl: Fix filename regexp to allow '-'
8262 in architecture names.
8264 2005-03-20 Scott James Remnant <scott@netsplit.com>
8266 * scripts/dpkg-buildpackage.sh: Output "source changed by"
8267 rather than "source maintainer is".
8269 * man/C/dpkg.1: Document that --get-selections takes a package
8270 name pattern. Document format of file --set-selections takes.
8272 * man/C/dpkg-source.1: Remove unnecessary references to policy
8273 and non-existant packaging manual. Refer to dpkg-shlibdeps(1)
8274 for shlibs file format. Will need to document changelog format
8276 * man/C/dselect.1: Remove unnecessary reference to policy, refer
8277 other reference to the package by name.
8278 * man/C/deb-old.5: Remove reference to non-existant packaging
8280 * man/C/deb.5: Remove reference to non-existant packaging
8281 manual, will have to document control contents better here later.
8283 * man/C/dpkg.1: Fix typo (fileis -> file is).
8285 * origins/debian: Remove trailing line.
8287 2005-03-20 Mathias Weidner <mathias@weidner.in-bad-schmiedeberg.de>
8289 * scripts/dpkg-scansources.pl (getopt): Add (@) to prototype.
8291 2005-03-20 Scott James Remnant <scott@netsplit.com>
8293 * man/C/update-alternatives.8: Document what the '+' and '*'
8294 marked choices in --config output mean.
8296 * src/main.c (usage): Make aptitude quoting consistent.
8298 * man/C/dpkg-divert.8: Mention --truename alongside the comment
8301 * src/main.c (printforhelp): Mention aptitude alongside dselect.
8302 * dpkg-deb/main.c (usage): Mention aptitude alongside dselect.
8304 * lib/ehandle.c (warningf): Add missing newline to end of format
8307 * man/C/update-alternatives.8: Harmonise names for arguments to
8310 * man/C/dpkg.1: Remove "medium-level" from dpkg's description,
8311 it's somewhere between medium and low. The fact it's a package
8312 manager is sufficient description.
8314 * src/query.c (listpackages): Create a second filtered list of
8315 packages, sort that (rather than the complete list) and use that
8316 when calling list1package. This means we only expand to the
8317 longest field in the result, not the database. Hopefully the
8318 speed gain of only sorting a filtered list outweights the slighty
8319 extra computation time.
8321 2005-03-18 Scott James Remnant <scott@netsplit.com>
8323 * configure.ac: Bump version to 1.13.3~.
8325 * configure.ac: Release 1.13.2.
8327 * src/query.c (getwidth): Return -1 if we're not on a tty.
8328 (list1package): Take a package list as well, and if getwidth()
8329 returns -1 determine the longest name, version and description
8330 and use those for output.
8331 (listpackages): Pass the package list and length to both
8332 calls to list1package to allow them to go wide.
8334 * lib/dbmodify.c (modstatdb_note): Every time we'd output a
8335 status change to the status-fd, also output a log message to
8336 the log-fd if we have one.
8337 * lib/dpkg-db.h: Add definition of log_pipes.
8338 * src/help.c (log_action): Write an action line to the log-fd.
8339 * src/processarc.c (process_archive): Log installation and
8341 * src/remove.c (removal_bulk_remove_configfiles): Log purge
8343 (deferred_remove) Log remove action.
8344 * src/main.c (setfile): Take a filename, open it and add the
8345 file descriptor to a list of pipes.
8346 (cmdinfos): Add log command-line option that takes a filename
8347 and adds it to log_pipes.
8348 (usage): Add --log=<filename> usage.
8349 * man/C/dpkg.1: Document --log=filename.
8350 * debian/dpkg.cfg: Include a commented-out log option.
8352 2005-03-18 Peter van Dijk <peter@dataloss.nl>
8354 * lib/tarfn.c (TarExtractor): Only remove the last character
8355 from directory names if it's a trailing slash.
8357 2005-03-18 Scott James Remnant <scott@netsplit.com>
8359 * man/C/dpkg-divert.8: Add an EXAMPLES section giving the two
8360 most common uses of dpkg-divert, for both add and remove.
8362 * man/C/dpkg-architecture.1: Update (should have done this with
8363 the changes below, really).
8365 * src/help.c (preexecscript): The first member of argv is always
8366 NULL because it's filled in by the return value of this function,
8367 so increment argv first when debug-outputting maintainer script
8370 * utils/md5sum.c: Remove file.
8371 * lib/dpkg.h (MD5SUM): Remove definition of md5sum program name.
8372 * utils/Makefile.am (bin_PROGRAMS): Remove md5sum.
8373 * man/C/md5sum.1: Remove manual page.
8374 * man/C/Makefile.am (dist_man_MANS): Remove md5sum.1.
8375 * man/de/md5sum.1: Remove manual page.
8376 * man/de/Makefile.am (dist_man_MANS): Remove md5sum.1.
8377 * man/es/md5sum.1: Remove manual page.
8378 * man/es/Makefile.am (dist_man_MANS): Remove md5sum.1.
8379 * man/ja/md5sum.1: Remove manual page.
8380 * man/ja/Makefile.am (dist_man_MANS): Remove md5sum.1.
8381 * man/sv/md5sum.1: Remove manual page.
8382 * man/sv/Makefile.am (dist_man_MANS): Remove md5sum.1.
8383 * debian/dpkg.postinst (divert_md5sum): Divert the version of
8384 md5sum installed by textutils or coreutils to the place where we
8385 used to put our copy, include its manual page.
8386 * debian/control ([dpkg]Depends): Depend on coreutils, which has
8387 always included md5sum, or the version of textutils that has.
8388 * debian/dpkg.install: Remove md5sum-related files.
8389 * debian/copyright: Remove mentions of utils/md5sum.c.
8390 * debian/pseudo-tags: Remove md5sum tag; no point filing bugs on
8391 a non-existant program.
8393 * ostable (netbsd): Restore missing "*" on the end of the regex.
8395 Take a further step towards having separate CPU and system names
8396 instead of just a joined architecture name; in particular add
8397 support to dpkg-architecture.
8399 * cputable: Create new table of cpu names with canonical GNU
8400 names and a regex to match against config.guess output.
8401 * ostable: Create new table of operating system names with
8402 canonical GNU names and a regex to match against config.guess
8404 * archtable: Move to debian directory.
8405 * debian/archtable: Reduce to a simple set of architecture names
8406 in Debian's sid distribution.
8407 * scripts/dpkg-architecture.pl: Add support for split cputable
8408 and ostable, including new DEB_*_ARCH_OS and DEB_*_ARCH_CPU
8409 variables containing the Debian system and cpu names appropriately.
8410 (usageversion): Remove list of known architectures, as we can't
8411 easily compute this anymore (cputable * ostable).
8412 (read_archtable): Removed function, we no longer touch archtable.
8413 (read_cputable): Add function to parse cputable.
8414 (read_ostable): Add function to parse ostable.
8415 (split_debian): Add function to split a Debian "os-cpu" name.
8416 (debian_to_gnu): Add function to split and look up the GNU names
8417 for the Debian os and cpu, and return the joined GNU name.
8418 (split_gnu): Add function to split a GNU triplet/quartet.
8419 (gnu_to_debian): Add function to split and look up the Debian
8420 names for the GNU os and cpu (by regex), and return the joined
8422 (rewrite_gnu): Removed, replaced by regexes in the tables.
8423 * m4/arch.m4 (DPKG_CPU_TYPE): Use awk to parse the new cputable
8424 and define an ARCHITECTURE_CPU macro with the result.
8425 (DPKG_OS_TYPE): Use awk to parse the new ostable and define an
8426 ARCHITECTURE_OS macro with the result.
8427 (DPKG_ARCHITECTURE): Simply join the os and cpu names together,
8428 or omit the os name if "linux".
8429 * Makefile.am (dist_pkgdata_DATA): Remove archtable, add
8430 cputable and ostable instead.
8431 (EXTRA_DIST): Add debian/archtable.
8432 * debian/dpkg.install: Install debian/archtable in /usr/share/dpkg
8433 for packages that still want it.
8434 * debian/pseudo-tags: Replace mention of archtable.
8436 * archtable: Add ppc64 for powerpc-linux.
8437 * scripts/dpkg-architecture.pl (rewrite_gnu): Rewrite powerpc64
8438 and ppc64 into powerpc64 for archtable.
8440 2005-03-17 Scott James Remnant <scott@netsplit.com>
8442 * debian/dpkg.preinst (confirm_dselect_split): Check that dselect
8443 is running before bitching; it's easy to do and will stop this
8444 question more often than not.
8446 2005-03-17 Scott James Remnant <scott@ubuntu.com>,
8447 Anthony Towns <aj@azure.humbug.org.au>
8449 * src/archives.c (tarobject): Detect when installing a file that
8450 exists in a package that replaces the one being installed. Leave
8451 that on the disk and remove the file from the list for the package
8454 2005-03-16 Scott James Remnant <scott@netsplit.com>
8456 * lib/parsedump.h: Move definitions of fieldinfos and nicknames
8457 arrays to the bottom of the file, to ensure we know the size of
8458 the arrays we're declaring.
8459 * lib/mlib.c (buffer_write): Cast unsigned char * to plain old
8460 char * when calling sprintf.
8462 2005-03-12 Frank S. Thomas <frank@thomas-alfeld.de>
8464 * man/C/dpkg-architecture.1: Correct typo (variales -> variables).
8466 2005-03-08 Scott James Remnant <scott@netsplit.com>
8468 * Makefile.am (package): Remove rule, as it is only really
8469 required outside of arch (otherwise you have a tarball).
8470 * Makefile.maint: New file holding the package rule.
8472 2005-03-03 Scott James Remnant <scott@netsplit.com>
8474 * archtable: Describe column 2 as the value returned by
8475 dpkg --print-architecture not --print-installation-architecture
8476 which we deprecated in the last release.
8478 * configure.ac: Bump version to 1.13.2~.
8480 * configure.ac: Release 1.13.1.
8482 2005-03-03 Michael Vogt <mvo@ubuntu.com>
8484 * src/configure.c (promptconfaction): Output conffile-prompt
8485 status onto status-fd to let front-ends capture conflicts.
8486 * src/errors.c (print_error_perpackage): Output package errors
8487 onto status-fd to let front-ends capture them.
8488 * man/C/dpkg.1: Document how errors and configuration file
8489 conflicts are reported on the status-fd.
8491 2005-01-22 Scott James Remnant <scott@netsplit.com>
8493 * man/C/dpkg.1: Remove --print-gnu-build-architecture and
8494 --print-installation-architecture from documentation, correct
8495 --print-architecture.
8496 * man/C/dpkg-architecture.1: Give --print-architecture in examples,
8497 instead of --print-installation-architecture.
8498 * scripts/dpkg-name.sh (getname): Call 'dpkg --print-architecture'
8499 instead of 'dpkg --print-installation-architecture'.
8500 * scripts/dpkg-architecture.pl: Set the default $pkgdatadir to
8501 point at an installed copy.
8502 Call 'dpkg --print-architecture' instead of
8503 'dpkg --print-installation-architecture'.
8504 * methods/disk/setup (iarch): Call dpkg --print-architecture.
8505 * debian/control ([dpkg-dev]Depends, [dselect]Depends): Depend on
8506 dpkg (>= 1.13.1) so we get a dpkg with the right print options.
8508 * src/enquiry.c (printarch): Completely nuke this function, we'll
8509 no longer parse the compiler output and look up things in archtable.
8510 (printinstarch): Rename to printarch, and change the output message
8511 to refer to --print-architecture.
8512 (badlgccfn): Remove unused function.
8513 * src/main.c (cmdinfos): Remove --print-gnu-build-architecture option,
8514 make --print-installation-architecture call printarch.
8515 (usage): Remove both --print-gnu-build-architecture and
8516 --print-installation-architecture and describe --print-architecture
8517 as doing what --p-i-a used to do. Use dpkg-architecture for host
8519 * src/main.h (action): Remove act_printgnuarch from enum, leave
8520 act_printinstarch so we can later deprecate use of the longer command.
8521 * src/Makefile.am (archtable.h): No need to generate archtable.h
8522 seeing as we don't parse it within dpkg, remove rule to generate it.
8523 (CLEANFILES): We don't generate archtable.h, so no need to clean it.
8524 * src/.arch-inventory: Don't treat archtable.h specially.
8525 * archtable: Remove unused third field, entirely inaccurate too.
8526 Correct typo 'she3eb' -> 'sh3eb'.
8527 * scripts/dpkg-architecture.pl (read_archtable): Parse only two
8528 fields from archtable.
8530 * scripts/dpkg-architecture.pl: Remove out-of-date history from the
8531 top, ChangeLog serves better now and is less confusing.
8532 Reset $gcc if we get less than, or more than one archtable result.
8533 Remove extra newline from mismatched -a/-t warning.
8534 (usageversion): Pedant the usage message while we scroll past.
8535 (read_archtable): New function to read /usr/share/dpkg/archtable
8536 rather than hard-coding some values in the script.
8537 (rewrite_gnu): Rewrite along the lines of the code in m4/arch.m4 so
8538 they should actually be vaguely consistent now.
8540 * scripts/Makefile.am (do_perl_subst): Replace occurances of
8541 $pkgdatadir in scripts with the right value.
8543 2005-01-22 Robert Millan <rmh@debian.org>
8545 * configure.ac: Check for kvm.h.
8546 * utils/start-stop-daemon.c: Remove includes for <sys/user.h>,
8547 <sys/sysctl.h> and <kvm.h> for the BSDs unless configure found
8549 (fatal): Output the message associated with errno.
8551 2005-01-22 Rakesh 'arky' Ambati <rakesh_ambati@yahoo.com>
8553 * scripts/dpkg-architecture.pl: Correct typo, 'filed' to 'failed'.
8555 2005-01-22 Robert Millan <rmh@debian.org>,
8556 Scott James Remnant <scott@netsplit.com>
8558 * m4/arch.m4 (DPKG_CPU_TYPE): Add a new macro to turn common
8559 groups of CPU names into a single type (e.g. i*86 to i386).
8560 (DPKG_OS_TYPE): Match linux*-gnu* for Linux (in case we get a
8561 non-GNU Linux at some point) and produce a 'linux' type. Remove
8562 the initial '*' from the rest of the entries. Restore gnu* as
8563 gnu (for the Hurd). Add support for darwin* as darwin. Sort
8564 into almost-alphabetical order with i386/linux at the top.
8565 (DPKG_ARCHITECTURE): Call DPKG_CPU_TYPE and use $cpu_type instead of
8567 * archtable: Rewrite the top comment to be a little clearer and
8568 correct the lie that the third column is 'dpkg --print-architecture'
8569 when it is, in fact, 'dpkg --print-gnu-build-architecture'. Correct
8570 third columns of the non-Linux architecture to actually return a
8571 GNU name. Sort the file into i386/linux-first alphabetical order.
8573 2005-01-22 Robert Millan <rmh@debian.org>
8575 * archtable: Add x86_64-kfreebsd to archtable as 'kfreebsd-amd64'.
8576 * scripts/dpkg-architecture.pl: Add 'kfreebsd-amd64' to archtable.
8578 2005-01-22 NIIBE Yutaka <gniibe@fsij.org>
8580 * archtable: Add m32r-linux-gnu to archtable as 'm32r'.
8581 * scripts/dpkg-architecture.pl: Add 'm32r' to archtable.
8583 2005-01-22 Scott James Remnant <scott@netsplit.com>
8585 * src/query.c (cmdinfos): Make -f alternative for --showformat.
8586 * src/query.c (usage): Document that -f is alternative for
8588 * man/C/dpkg-query.1: Update documentation to match.
8590 2005-01-22 Stephane Bortzmeyer <stephane@sources.org>
8592 * scripts/dpkg-source.pl (diff_ignore_default_regexp): Add the
8593 darcs _darcs directory to the ignore list.
8595 2005-01-22 Scott James Remnant <scott@netsplit.com>
8597 * utils/md5sum.c (main): Correct md5sum according to the wishes
8598 of the Debian technical committee; when given a file on standard
8599 input, it now simply outputs the md5sum and does not append " -"
8600 or " *-" on the end.
8602 2005-01-22 Adam Heath <doogie@debian.org>
8604 * lib/tarfn.c (TarExtractor): Fix handling of GNU longname and
8605 longlink support when there is both types for the same file entry
8608 2005-01-19 Dafydd Harries <daf@muse.19inch.net>
8610 * man/C/dpkg-source.1: Make the summary for dpkg-source -b invocation
8611 in the manpage match that output by dpkg-source --help. (I.e. indicate
8612 the possibility of specifying the upstream tarball rather than the
8613 upstream source directory as a second parameter.)
8615 2005-01-17 Scott James Remnant <scott@netsplit.com>
8617 * debian/dpkg.preinst (confirm_dselect_split): Support pre-sarge
8618 upgrades by checking that they've upgraded dselect first, and
8619 prompting if they haven't.
8621 2005-01-14 Scott James Remnant <scott@netsplit.com>
8623 * .arch-inventory: Ignore the upload result file as well.
8625 * configure.ac: Bump version to 1.13.1~.
8627 * configure.ac: Release 1.13.0.
8629 * dpkg-deb/main.c (main): Remove NONRETURNING declaration as
8630 this function does actually call return sometimes.
8631 * dpkg-split/main.c (main): Remove NONRETURNING declaration as
8632 this function does actually call return sometimes.
8633 * utils/start-stop-daemon.c (main): Remove NONRETURNING declaration
8634 as this function does actually call return sometimes.
8635 * m4/compiler.m4 (SJR_COMPILER_WARNINGS): Enable warnings for CXX
8636 too, my original macro doesn't do this.
8638 * configure.ac: Use AC_GNU_SOURCE to get some of the extra goodies
8639 in the GNU C library, use DPKG_C_C99 to test for C99 features.
8640 * m4/compiler.m4 (DPKG_C_C99): New macro to determine whether
8641 compiler supports C99 features.
8642 (SJR_COMPILER_WARNINGS): Don't use -pedantic yet, dpkg isn't ready
8645 * lib/dpkg.h: Provide C99-conformant variadic macros if the
8646 compiler supports them in place of gnu-style ones.
8647 * lib/tarfn.c: Add missing include of config.h to get some useful
8648 information (and prototype of strnlen).
8649 * src/help.c: Cast arguments to (char * const *) explicitly.
8650 * dpkg-deb/main.c: Include dpkg-db.h to get nffreeall prototype.
8651 * .arch-inventory: Ignore config.cache if the user uses it.
8653 * scripts/controllib.pl: Add #!/usr/bin/perl to satisfy lintian.
8654 * debian/control ([dpkg]Pre-Depends): Needs to pre-depend on shlibs
8655 dependencies like libc6, accidentally dropped earlier.
8656 ([dpkg-dev]Recommends): Added gcc as first choice for c-compiler.
8657 * debian/rules: Generate shlibdeps for all arch packages, not just
8658 dselect (so we get them for dselect too).
8659 * debian/.arch-inventory: Ignore dpkg.substvars.
8660 * debian/dpkg.conffiles: Removed, debhelper does the right thing.
8661 * debian/dpkg-dev.conffiles: Removed, debhelper does the right thing.
8662 * debian/dselect.conffiles: Removed, debhelper does the right thing.
8663 * Makefile.am (EXTRA_DIST): Updated for debian directory changes.
8664 (package): Add missing distdir dependency, also don't treat lintian
8665 problems as errors, just report them.
8666 * man/C/dpkg.8: Moved to section 1 where it belongs.
8667 * man/C/dpkg-query.8: Moved to section 1 where it belongs.
8668 * man/C/dpkg-split.8: Moved to section 1 where it belongs.
8669 * man/C/dselect.8: Moved to section 1 where it belongs.
8670 * man/C/Makefile.am: Install dpkg.1, dpkg-query.1, dselect.1
8671 * man/es/dpkg.8: Moved to section 1 where it belongs.
8672 * man/es/dpkg-split.8: Moved to section 1 where it belongs.
8673 * man/es/dselect.8: Moved to section 1 where it belongs.
8674 * man/es/Makefile.am: Install dpkg.1, dpkg-split.1, dselect.1
8675 * man/fr/dpkg.8: Moved to section 1 where it belongs.
8676 * man/fr/dpkg-query.8: Moved to section 1 where it belongs.
8677 * man/fr/dpkg-split.8: Moved to section 1 where it belongs.
8678 * man/fr/Makefile.am: Install dpkg.1, dpkg-query.1, dpkg-split.1
8679 * man/ja/dpkg.8: Moved to section 1 where it belongs.
8680 * man/ja/dpkg-query.8: Moved to section 1 where it belongs.
8681 * man/ja/dselect.8: Moved to section 1 where it belongs.
8682 * man/ja/Makefile.am: Install dpkg.1, dpkg-query.1, dselect.1
8683 * man/pt_BR/dpkg.8: Moved to section 1 where it belongs.
8684 * man/pt_BR/dselect.8: Moved to section 1 where it belongs.
8685 * man/pt_BR/Makefile.am: Install dselect.1, dpkg.1
8686 * man/ru/dpkg.8: Moved to section 1 where it belongs.
8687 * man/ru/Makefile.am: Install dpkg.1
8688 * man/sv/dpkg.8: Moved to section 1 where it belongs.
8689 * man/sv/dpkg-query.8: Moved to section 1 where it belongs.
8690 * man/sv/dpkg-split.8: Moved to section 1 where it belongs.
8691 * man/sv/dselect.8: Moved to section 1 where it belongs.
8692 * man/sv/Makefile.am: Install dpkg.1, dpkg-query.1, dpkg-split.1,
8694 * debian/dpkg.install: Install dpkg.1, dpkg-query.1, dpkg-split.1
8695 * debian/dselect.install: Install dselect.1
8697 * Makefile.am (EXTRA_DIST): Distribute files in the debian directory
8698 in the source tarball.
8699 (package): Create source and binary packages using dpkg-buildpackage
8700 and some magic to give us a directory containing only 'dist' files.
8701 Check the resulting changes file with lintian if we have it.
8703 * .arch-inventory: Apply l33t regex skills to ignore source tarballs,
8704 packages and the dist directory.
8706 * utils/Makefile.am (rootsbin_PROGRAMS): Install start-stop-daemon
8707 into the ordinary sbindir by default.
8708 * debian/dpkg.install: Install usr/sbin/start-stop-daemon into /sbin.
8710 * debian/control (Build-Depends): The source tarball now includes
8711 the generated gmo files, so there's no reason for the package to
8712 build-depend on gettext.
8714 * getopt/getdate.c: Remove unused file.
8716 * methods/disk/update: Remove {...} glob, as it's a bashism.
8718 * debian/control (Build-Depends): Fix dependency on virtual
8719 package `libncurses-dev'.
8721 * m4/funcs.m4 (DPKG_FUNC_VA_COPY): Wrap TRY_RUN and TRY_COMPILE
8722 calls in AC_CACHE_CHECK, missed when I copied it over and updated.
8724 * debian/dpkg.prerm: Give the script a bit of a spring clean,
8725 add a comment block at the top to serve as documentation of how
8726 prerm is called for anyone wanting a quick reference; this seems
8727 a reasonable place to do it as any. Don't remove the historic
8728 info scripts anymore (dating back to 1.3.3) as we haven't shipped
8729 them in ages and 1.3.3's upgrade script did it anyway.
8730 * debian/dpkg.postrm: Equal spring clean and documentation comment
8731 added to the top. Removed code to purge dpkg.cfg now we include it
8732 in the package as a conffile again anyway.
8733 * debian/dpkg.preinst: Equal spring clean and documentation comment
8734 added to the top. Separated each discreet piece of upgrade behaviour
8735 for the 0.93.50 jump into different functions.
8736 * debian/dpkg.postinst: Equal spring clean and documentation comment
8737 added to the top. Separated each bit of behaviour into a separate
8739 (move_info_directory): No longer create symlinks to the new location.
8740 (remove_info_symlink): Remove /usr/info or /usr/info/dir symlinks.
8742 2005-01-13 Scott James Remnant <scott@netsplit.com>
8744 * debian/control (Build-Depends): Add forgotten build-depend on
8745 debhelper, I picked 4.1.81 after reading the changelog as it has the
8746 first feature we need (upstream and debian changelogs in a native
8749 * man/C/Makefile.am (dpkg_source_aliases): I missed a whole bunch
8750 of manpages created as aliases to dpkg-source, put the rules in to
8752 * man/C/.arch-inventory: Ignore generated aliased pages.
8754 * debian/rules: Rewrite from scratch to use debhelper, this breaks
8755 being able to bootstrap dpkg from its own source directory; but that
8756 didn't really work anyway. You can always just 'make install' first.
8757 * debian/compat: Set debhelper compatibility to v4.
8758 * debian/dpkg.docs: List documentation to ship with dpkg.
8759 * debian/dpkg.install: List files that belong to dpkg.
8760 * debian/dselect.install: List files that belong to dselect.
8761 * debian/dpkg-dev.install: List files that belong to dpkg-dev.
8762 * .arch-inventory: Ignore build-tree, created by debian/rules.
8763 * debian/.arch-inventory: Ignore files and directories created by
8766 * lib/Makefile.am (INCLUDES): Correct sharedstatedir to datadir,
8767 common-licenses isn't in /usr/com (whatever that is).
8769 * dpkg-split/Makefile.am (install-data-local): Use $(mkdir_p) instead
8770 of $(MKINSTALLDIRS), better style.
8771 * methods/Makefile.am (install-data-local): Use $(mkdir_p) instead of
8772 $(MKINSTALLDIRS) here too.
8773 * origins/Makefile.am (install-data-local): And here.
8774 * scripts/Makefile.am (install-exec-local): Here as well.
8775 (install-data-local): Likewise.
8776 * src/Makefile.am (install-data-local): And finally, here too.
8778 * scripts/Makefile.am: Automake doesn't create out-of-tree output
8779 directories for us, so do so if it they don't exist (but quiet, like).
8780 (do_perl_subst): Remove space in #! line.
8781 * dpkg-split/Makefile.am: Create out-of-tree directories.
8782 (do_perl_subst): Remove space in #! line.
8784 * lib/dpkg.h: Include locale.h, for LC_ALL which is expanded in
8785 a macro here. This is needed if we build without optimisations
8786 as libintl.h won't include it for us.
8788 2005-01-12 Scott James Remnant <scott@netsplit.com>
8790 * debian/pseudo-tags: Rewrite and clear up, put tags into a decent
8791 order and add a new [DEPENDS] tag to track dependency handling
8794 * debian/shlibs.default: Clean up.
8795 * debian/shlibs.override: Clean up.
8797 * debian/dselect.cfg: Clean up atrocious English spelling.
8798 * debian/dpkg.cfg: Clean up atrocious English spelling; remove old
8799 configuration values as this file would be useful to be installed
8800 to describe its use.
8801 * debian/dpkg.conffiles: Add dpkg.cfg.
8803 * debian/copyright: Clean up, utf-8ify and add missing copyright
8806 * debian/control (Build-Depends): Remove SGML-related tools now we no
8807 longer have docs in that format; increase gettext build-dependency to
8808 0.14.1; remove build-dependency on autotools-dev.
8809 (Standards-Version): Bump to keep lintian happy, we're conformant.
8810 ([dpkg]Pre-Depends): Remove pre-dependency on dselect put in place
8811 to ease transition between woody and sarge where dselect was split
8812 into a separate binary package.
8813 ([dpkg]Suggests): It's about time we suggested apt.
8814 ([dpkg]Description): The dselect program is no longer included in the
8815 dpkg package, so don't mention it in the description.
8816 ([dselect]Description): Rewrite as dselect is no longer the primary
8817 interface for package management, and that users may prefer apt-based
8820 * debian/control (dpkg-static): The dpkg (and dpkg-deb) binaries
8821 have been linked statically to zlib for some time, and the
8822 dpkg-static package hasn't actually been created either. Remove
8823 from the control file.
8825 * debian/control (dpkg-doc): The documentation shipped in the
8826 dpkg-doc package was rather incomplete and out-of-date, so was
8827 removed from the distribution. Remove package from control file.
8828 * debian/dpkg-doc.doc-base: Remove dpkg-doc file.
8829 * debian/dpkg-doc.postinst: Remove dpkg-doc maintainer script.
8830 * debian/dpkg-doc.prerm: Remove dpkg-doc maintainer script.
8831 * debian/README.compile: Removed this file as it's both out of
8832 date, and entirely replaced by Build-Depends anyway for those
8833 that care about such things.
8835 * Makefile.am: Remove rules to install common documentation and
8836 licence under /usr/share/doc/dpkg, leave that up to the package.
8837 * lib/Makefile.am (INCLUDES): Define COPYINGFILE to point to
8838 /usr/share/common-licenses/GPL-2.
8840 2005-01-11 Colin Watson <cjwatson@debian.org>
8842 * dselect/basecmds.cc (baselist::displayhelp): Revert to former
8843 Space/Enter/'Q' behaviour, so that Space leaves the help screen
8844 and Enter and 'Q' do nothing. It's dangerous to encourage users
8845 to press Enter or 'Q', since they commit changes in the package
8847 * dselect/helpmsgs.cc (hlp_readonlyintro, hlp_recurintro): Update
8849 (hlp_mainintro): 'Q' quits and overrides dependency problems;
8850 'X' quits without saving changes.
8852 2005-01-10 Scott James Remnant <scott@netsplit.com>
8854 * configure.ac: Fix --without-dselect and --without-start-stop-daemon
8855 so they actually work, Autoconf was preserving the old value of the
8856 variable. Always call AC_PROG_CXX otherwise things aren't happy
8857 as it gets partially expanded.
8859 * dpkg-split/Makefile.am (EXTRA_DIST): Distribute mksplit.pl.
8860 * dselect/Makefile.am (EXTRA_DIST): Distribute mkcurkeys.pl.
8861 * lib/Makefile.am (libdpkg_a_SOURCES): Distribute gettext.h.
8862 * scripts/Makefile.am (EXTRA_DIST): Distribute the scripts and
8863 README.alternatives, oops.
8864 (all-local): Build install-info from install-info.pl manually.
8865 (install-exec-local): Install install-info manually.
8866 (uninstall-local): Remove install-info manually.
8867 * scripts/.arch-inventory: Ignore install-info-stamp file we need.
8868 * src/Makefile.am (dpkg_query_SOURCES): There is no errors.h.
8870 * Makefile.conf.in: Remove file used by old build system.
8872 * lib/mlib.c (buffer_write): Remove cast from lvalue, deprecated
8873 in recent versions of gcc.
8874 * m4/compiler.m4 (SJR_COMPILER_OPTIMISATIONS): Explicitly set -O0
8875 when disabling compiler optimisations, as recent versions of gcc
8876 have some on by default.
8878 Now we're not using CVS at all, replace the old .cvsignore files
8879 with .arch-inventory files Arch can use to ignore generated files.
8881 * .cvsignore: Remove old file.
8882 * .arch-inventory: Replace with more complete regex rules.
8883 * dpkg-deb/.cvsignore: Remove old file.
8884 * dpkg-deb/.arch-inventory: Replace with more complete regex rules.
8885 * dpkg-split/.cvsignore: Remove old file.
8886 * dpkg-split/.arch-inventory: Replace with more complete regex rules.
8887 * dselect/.cvsignore: Remove old file.
8888 * dselect/.arch-inventory: Replace with more complete regex rules.
8889 * getopt/.cvsignore: Remove old file.
8890 * getopt/.arch-inventory: Replace with more complete regex rules.
8891 * lib/.cvsignore: Remove old file.
8892 * lib/.arch-inventory: Replace with more complete regex rules.
8893 * m4/.arch-inventory: Ignore files copied in by 'autopoint'.
8894 * man/.cvsignore: Remove old file.
8895 * man/.arch-inventory: Replace with more complete regex rules.
8896 * man/C/.cvsignore: Remove old file.
8897 * man/C/.arch-inventory: Replace with more complete regex rules.
8898 * man/de/.cvsignore: Remove old file.
8899 * man/de/.arch-inventory: Replace with more complete regex rules.
8900 * man/es/.arch-inventory: Ignore generated 'Makefile' and 'Makefile.in'.
8901 * man/fr/.cvsignore: Remove old file.
8902 * man/fr/.arch-inventory: Replace with more complete regex rules.
8903 * man/ja/.cvsignore: Remove old file.
8904 * man/ja/.arch-inventory: Replace with more complete regex rules.
8905 * man/pt_BR/.cvsignore: Remove old file.
8906 * man/pt_BR/.arch-inventory: Replace with more complete regex rules.
8907 * man/ru/.cvsignore: Remove old file.
8908 * man/ru/.arch-inventory: Replace with more complete regex rules.
8909 * man/sv/.cvsignore: Remove old file.
8910 * man/sv/.arch-inventory: Replace with more complete regex rules.
8911 * methods/.cvsignore: Remove old file.
8912 * methods/.arch-inventory: Replace with more complete regex rules.
8913 * origins/.arch-inventory: Ignore generated 'Makefile'
8915 * po/.cvsignore: Remove old file.
8916 * po/.arch-inventory: Replace with more complete regex rules.
8917 * scripts/.cvsignore: Remove old file.
8918 * scripts/.arch-inventory: Replace with more complete regex rules.
8919 * scripts/changelog/.arch-inventory: Ignore generated file.
8920 * src/.cvsignore: Remove old file.
8921 * src/.arch-inventory: Replace with more complete regex rules.
8922 * utils/.cvsignore: Remove old file.
8923 * utils/.arch-inventory: Replace with more complete regex rules.
8925 * man/sv/.check.pl: Remove as it uses CVS to check whether the
8926 translations are up to date, and we don't use that anymore.
8927 * dselect/checkunimp.pl: Remove unused file.
8928 * dselect/keys.c: Remove unused file.
8930 For at least the second time in dpkg's history, convert the build
8931 system to use GNU Automake. I'm sure some future maintainer will
8932 come along and get rid of it again, but for now, Automake is the
8935 * Makefile.in: Remove old file.
8936 * Makefile.am: Replace with shiny Automake goodness, don't distribute
8937 TODO anymore; it's only useful for developers.
8938 * dpkg-deb/Makefile.in: Remove old file.
8939 * dpkg-deb/Makefile.am: Replace with shiny Automake goodness, don't
8940 include rules to build dpkg-deb-static.
8941 * dpkg-split/Makefile.in: Remove old file.
8942 * dpkg-split/Makefile.am: Replace with shiny Automake goodness.
8943 * dselect/Makefile.in: Remove old file.
8944 * dselect/Makefile.am: Replace with shiny Automake goodness.
8945 * getopt/Makefile.in: Remove old file.
8946 * getopt/Makefile.am: Replace with shiny Automake goodness.
8947 * lib/Makefile.in: Remove old file.
8948 * lib/Makefile.am: Replace with shiny Automake goodness.
8949 (libdpkg_a_SOURCES): add refugee files from 'include'.
8950 * man/Makefile.in: Remove old file.
8951 * man/Makefile.am: Replace with shiny Automake goodness.
8952 * man/C/Makefile.in: Remove old file.
8953 * man/C/Makefile.am: Replace with shiny Automake goodness.
8954 * man/de/Makefile.in: Remove old file.
8955 * man/de/Makefile.am: Replace with shiny Automake goodness.
8956 * man/es/Makefile.in: Remove old file.
8957 * man/es/Makefile.am: Replace with shiny Automake goodness.
8958 * man/fr/Makefile.in: Remove old file.
8959 * man/fr/Makefile.am: Replace with shiny Automake goodness.
8960 * man/ja/Makefile.in: Remove old file.
8961 * man/ja/Makefile.am: Replace with shiny Automake goodness.
8962 * man/pt_BR/Makefile.in: Remove old file.
8963 * man/pt_BR/Makefile.am: Replace with shiny Automake goodness.
8964 * man/ru/Makefile.in: Remove old file.
8965 * man/ru/Makefile.am: Replace with shiny Automake goodness.
8966 * man/sv/Makefile.in: Remove old file.
8967 * man/sv/Makefile.am: Replace with shiny Automake goodness.
8968 * methods/Makefile.in: Remove old file.
8969 * methods/Makefile.am: Replace with shiny Automake goodness, taking
8970 into account the new filesystem structure.
8971 * origins/Makefile.am: New Automake file to install origin files.
8972 * scripts/Makefile.in: Remove old file.
8973 * scripts/Makefile.am: Replace with shiny Automake goodness.
8974 * src/Makefile.in: Remove old file.
8975 * src/Makefile.am: Replace with shiny Automake goodness, don't
8976 include rules to build either dpkg-static or dpkg-query-static.
8977 * utils/Makefile.in: Remove old file.
8978 * utils/Makefile.am: Replace with shiny Automake goodness, don't
8979 include rules to build md5sum-static.
8981 * dpkg-deb/build.c: Replace USE_ZLIB with WITH_ZLIB.
8982 * dpkg-deb/extract.c: Replace USE_ZLIB with WITH_ZLIB.
8983 * dpkg-deb/main.c: Remove version.h include.
8984 * dpkg-split/main.c: Remove version.h include.
8985 * dselect/main.cc: Remove version.h include.
8986 * lib/compression.c: Replace USE_ZLIB with WITH_ZLIB and USE_BZ2
8988 * src/help.c: Remove version.h include and replace
8989 USE_START_STOP_DAEMON with WITH_START_STOP_DAEMON.
8990 * src/main.c: Remove version.h include.
8992 We're going to move to using 'autoreconf' to generate the build
8993 scripts after a checkout and 'make dist' to get a clean tarball.
8994 Various files will get copied automatically so there's no point
8995 having them under version control, they'll still appear in the
8998 * INSTALL: Remove from version control.
8999 * config.guess: Remove from version control.
9000 * config.sub: Remove from version control.
9001 * install-sh: Remove from version control.
9002 * autogen.sh: Remove unnecessary script, just run 'autoreconf'.
9003 * release.sh: Remove unnecessary script, just run 'make dist'.
9005 The old 'configure.in' arranged for a bunch of code to be added
9006 to the bottom of 'config.h' with the assumption that it'd be
9007 included everywhere. That's not good style, the file is only
9008 supposed to contain settings and not real code. Put the code in
9009 real header files and source.
9011 * lib/dpkg.h: Include <sys/cdefs.h> and <stddef.h> if available.
9012 (INTERPRETER_MAX): Define to PATH_MAX or 1024 if not available.
9013 (DPKG_VERSION_ARCH): Define using PACKAGE_VERSION instead of
9014 DPKG_VERSION, which no longer exists.
9015 (ADMINDIR): Remove definition, define in Makefiles where needed.
9016 (CONFIGDIR): Remove definition, define in Makefiles where needed.
9017 (LIBDIR): Remove definition, define in Makefiles where needed.
9018 (CONSTANT, PRINTFFORMAT, NONRETURNING, UNUSED, NONRETURNPRINTFFORMAT):
9019 Define attribute markers used in function prototypes.
9020 (strerror, strsignal, scandir, alphasort, unsetenv): Define prototypes
9021 for functions in 'compat.c' if the system lacks them.
9022 (strtoul, va_copy, WCOREDUMP): Provide compatible macros for functions
9024 (BUILDOLDPKGFORMAT): Define here.
9025 (_, N_): Include gettext.h and define friendlier macros.
9026 * lib/gettext.h: Include from gettext distribution useful header
9027 file that does the heavy lifting of enabling or disabling gettext.
9028 * lib/md5.h: Add code to define UWORD32 used by this implementation.
9029 * getopt/error.h (error, error_at_line): Remove printf format
9030 attribute marker from prototypes to keep the code clean.
9031 * getopt/getopt.c (store_args_and_env): Remove unused attribute
9032 marker from function to keep the code clean.
9033 * utils/md5sum.c: Let gettext.h (included through dpkg.h) do the
9034 heavy lifting and define the right things for us.
9035 * utils/start-stop-daemon.c: Duplicate includes of <sys/cdefs.h>
9036 and <stddef.h> along with attribute marker definitions to avoid
9037 having to include 'dpkg.h'.
9039 * configure.in: Rename to 'configure.ac' and rewrite from the
9040 ground-up with Autoconf 2.59 in mind.
9041 * m4/arch.m4: New file of macros for 'configure.ac':
9042 (DPKG_OS_TYPE): Code from old 'configure.in' to turn output from
9043 'config.guess' into an operating system name we recognise.
9044 (DPKG_ARCHITECTURE): Code from old 'configure.in' to look up
9045 CPU and operating system name in the 'archtable'.
9046 * m4/compiler.m4: New file of macros for 'configure.ac':
9047 (SJR_COMPILER_WARNINGS): Add my standard macro to enable additional
9048 compiler warnings and treat them as errors.
9049 (SJR_COMPILER_OPTIMISATIONS): Add my standard macro to allow
9050 disabling of optimisations.
9051 (DPKG_C_ATTRIBUTE): Macro to check whether the C compiler supports
9052 __attribute__, we assume that compilers that do ignore unknown
9053 attributes like gcc does.
9054 * m4/funcs.m4: New file of macros for 'configure.ac':
9055 (DPKG_FUNC_VA_COPY): Code from old 'configure.in' to determine
9056 whether the system supports va_copy or directly copying the values.
9057 * m4/libs.m4: New file of macros for 'configure.ac':
9058 (DPKG_LIB_ZLIB): Rework of old 'configure.in' code to allow the
9059 user to decide whether to use zlib, and whether to link it statically.
9060 (DPKG_LIB_BZ2): Rework of old 'configure.in' code to allow the user
9061 to decide whether to use the bz2 library, and whether to link it
9063 (DPKG_LIB_CURSES): Code from old 'configure.in' to pick the right
9064 curses library on the system.
9065 (DPKG_LIB_SSD): Code from old 'configure.in' to look for libraries
9066 used by start-stop-daemon.
9067 * m4/linker.m4: New file of macros for 'configure.ac':
9068 (SJR_LINKER_OPTIMISATIONS): Add my standard macro to enable linker
9069 optimisations and allow them to be disabled.
9070 * m4/perl.m4: New file of macros for 'configure.ac':
9071 (DPKG_PROG_PERL): Macro to locate the Perl interpreter in the PATH,
9072 or allow the user to specify it with PERL=.
9073 * m4/types.m4: New file of macros for 'configure.ac':
9074 (DPKG_TYPE_PTRDIFF_T): Macro to replace obsolete AC_TYPE_PTRDIFF_T
9075 macro from Autoconf.
9076 (DPKG_DECL_SYS_SIGLIST): Macro to replace obsolete AC_DECL_SYS_SIGLIST
9077 macro from Autoconf.
9078 (DPKG_CHECK_DEFINE): Rework of old 'automake/dpkg.m4' code.
9079 * version-nr: Remove, version should be changed in configure.ac
9081 * automake: Remove older Autoconf macros.
9083 * po/ChangeLog: Add new ChangeLog to describe changes affecting
9084 translations and their infrastructure.
9086 * origin: Move to 'origins/debian' so we can ship additional
9089 Rearrange changelog parsers under 'scripts' into a separate
9090 directory so they also don't need to be renamed on installation.
9092 * scripts/cl-debian.pl: Move to 'scripts/changelog/debian.pl'.
9094 Rearrange 'methods' directory into the same hierarchy used when
9095 installed to save having to rename files on installation.
9097 * methods/disk.desc.cdrom: Move to 'methods/disk/desc.cdrom'.
9098 * methods/disk.desc.harddisk: Move to 'methods/disk/desc.harddisk'.
9099 * methods/disk.desc.mounted: Move to 'methods/disk/desc.mounted'.
9100 * methods/disk.desc.nfs: Move to 'methods/disk/desc.nfs'.
9101 * methods/disk.install: Move to 'methods/disk/install' and chmod +x.
9102 * methods/disk.names: Move to 'methods/disk/names'.
9103 * methods/disk.setup: Move to 'methods/disk/setup' and chmod +x.
9104 * methods/disk.update: Move to 'methods/disk/update' and chmod +x.
9105 * methods/floppy.desc.floppy: Move to 'methods/floppy/desc.floppy'.
9106 * methods/floppy.install: Move to 'methods/floppy/install' and
9108 * methods/floppy.names: Move to 'methods/floppy/names'.
9109 * methods/floppy.setup: Move to 'methods/floppy/setup' and chmod +x.
9110 * methods/floppy.update: Move to 'methods/floppy/update' and chmod +x.
9111 * methods/hd.setup: Remove unused method script.
9112 * methods/hd.unpack: Remove unused method script.
9113 * methods/hd.update: Remove unused method script.
9115 Consolidate the library code into one directory, so the headers are
9116 alongside the code rather than somewhere else.
9118 * include/dpkg-db.h: Move to 'lib'.
9119 * include/myopt.h: Move to 'lib'.
9120 * include/parsedump.h: Move to 'lib'.
9121 * include/tarfn.h: Move to 'lib'.
9122 * include/dpkg.h.in: Move to 'lib' and rename to 'dpkg.h', we'll
9123 set ADMINDIR, CONFIGDIR and LIBDIR in Makefile where needed as they
9124 can contain shell paths.
9125 * include: Remove directory.
9127 * AUTHORS: Add new file detailing the original authors of dpkg and
9128 the maintainers through the years.
9129 * COPYING: Update to include correct FSF address.
9130 * NEWS: Add new file that just points to debian/changelog for major
9131 changes between releases.
9132 * README: Add new file to briefly describe the package.
9134 Instead of scattering manpages throughout the source, we'll keep
9135 all of the original pages in one place under 'man/C'. This should
9136 make it easier to keep track of them, especially translators.
9138 * dpkg-deb/dpkg-deb.1: Move to 'man/C'.
9139 * dpkg-split/dpkg-split.8: Move to 'man/C'.
9140 * dselect/dselect.8: Move to 'man/C'.
9141 * scripts/822-date.1: Move to 'man/C'.
9142 * scripts/cleanup-info.8: Move to 'man/C'.
9143 * scripts/dpkg-architecture.1: Move to 'man/C'.
9144 * scripts/dpkg-checkbuilddeps.1: Move to 'man/C'.
9145 * scripts/dpkg-divert.8: Move to 'man/C'.
9146 * scripts/dpkg-name.1: Move to 'man/C'.
9147 * scripts/dpkg-scanpackages.1: Move to 'man/C'.
9148 * scripts/dpkg-scansources.1: Move to 'man/C'.
9149 * scripts/dpkg-source.1: Move to 'man/C'.
9150 * scripts/dpkg-statoverride.8: Move to 'man/C'.
9151 * scripts/install-info.8: Move to 'man/C'.
9152 * scripts/update-alternatives.8: Move to 'man/C'.
9153 * src/dpkg-query.8: Move to 'man/C'.
9154 * src/dpkg.8: Move to 'man/C'.
9155 * utils/md5sum.1: Move to 'man/C'.
9156 * utils/start-stop-daemon.8: Move to 'man/C'.
9158 * man/en: Rename directory to 'man/C', reserving country codes for
9159 manpages that have actually undergone translation. These are the
9160 "original" format, and like the strings in the code itself don't
9161 really belong to any particular locale.
9163 Continuing the spirit of having only one markup format for manpages,
9164 fix up the two generated from POD and remove the POD.
9166 * scripts/dpkg-architecture.1: Generate with pod2man and remove
9167 damage from the top, turning it into respectable nroff.
9168 * scripts/dpkg-architecture.pl: Remove POD documentation from script.
9169 * scripts/dpkg-scansources.1: Generate with pod2man and remove
9170 damage from the top, turning it into respectable nroff.
9171 * scripts/dpkg-scansources.pl: Remove POD documentation from script.
9173 Remove the SGML files containing the same content as the manpages,
9174 but which were never used to generate them. This avoids confusion,
9175 and as one markup format is just as good as another, we'll settle
9176 on nroff's man format.
9178 * man/en/cleanup-info.8.sgml: Remove SGML format documentation.
9179 * man/en/deb-control.5.sgml: Remove SGML format documentation.
9180 * man/en/deb-old.5.sgml: Remove SGML format documentation.
9181 * man/en/deb.5.sgml: Remove SGML format documentation.
9182 * man/en/dpkg-checkbuilddeps.1.sgml: Remove SGML format documentation.
9183 * man/en/dpkg.8.sgml: Remove SGML format documentation.
9184 * man/en/dpkg.cfg.5.sgml: Remove SGML format documentation.
9185 * man/en/dselect.8.sgml: Remove SGML format documentation.
9186 * man/en/dselect.cfg.5.sgml: Remove SGML format documentation.
9187 * man/paths.ent.in: Remove now we have no SGML format pages.
9189 * attic: Remove historical interest directory, that's what version
9191 * doc: Remove obsolete, incomplete and out-of-date documentation
9192 including that licenced under the GFDL (ie the entire directory).
9193 * md5sum: Remove empty directory.
9195 * main: Rename directory to 'src' so it's consistent with 'lib'.
9196 * optlib: Rename directory to 'getopt' as that's what's really in it.
9197 * split: Rename directory to 'dpkg-split' so it's consistent with
9200 Tue Nov 09 15:23:54 CEST 2004 Christian Perrier <bubulle@debian.org>
9202 * po/dpkg.pot: msguniq to remove duplicate entries
9204 Tue Nov 09 15:21:54 CEST 2004 Bartosz Fenski aka fEnIo <fenio@o2.pl>
9208 Fri Oct 29 21:55:54 CEST 2004 Carlos Liu <carlos_liu@yahoo.com>
9210 * po/zh_CN.po: Fix errors
9212 Fri Oct 29 08:58:54 CEST 2004 Bart Cornelis <cobaco@linux.be>
9216 Fri Oct 29 08:55:54 CEST 2004 Carlos Liu <carlos_liu@yahoo.com>
9218 * po/zh_CN.po: Mess cleaned
9220 Fri Oct 29 08:50:00 CEST 2004 Christian Perrier <bubulle@debian.org>
9222 * po/*po: msguniq and msgcat on all files
9224 Thu Oct 28 09:39:00 CEST 2004 Christian Perrier <bubulle@debian.org>
9226 * po/dpkg.pot: regenerated
9227 * po/*po: synced with dpkg.pot
9228 * po/fr.po: complete the translation
9230 Thu Oct 28 15:55:14 BST 2004 Scott James Remnant <scott@netsplit.com>
9232 * dpkg-deb/dpkg-deb.h: Add '/' onto the end of the COMPAT values for
9235 Wed Oct 27 12:22:08 BST 2004 Scott James Remnant <scott@netsplit.com>
9237 * version-nr, debian/changelog: Bump version to 1.13~.
9239 Wed Oct 27 10:14:29 BST 2004 Scott James Remnant <scott@netsplit.com>
9241 * version-nr, debian/changelog: Bump version to 1.10.25~.
9243 Wed Oct 27 09:58:27 BST 2004 Scott James Remnant <scott@netsplit.com>
9245 * lib/compression.c: Which revealed some brown-paper bag issues:
9246 Replace "BZFILE" with "BZFILE *", "file" with "bzfile"
9247 and "bzdopen" to "BZ2_bzdopen".
9249 Wed Oct 27 09:49:15 BST 2004 Scott James Remnant <scott@netsplit.com>
9251 * lib/compression.c: Replace USE_BZ2 with USE_BZ2LIB to match configure.in.
9253 Tue Oct 26 19:24:54 CEST 2004 Havard Korsvoll <korsvoll@skulelinux.no>
9257 Tue Oct 26 17:24:54 CEST 2004 Carlos Liu <carlos_liu@yahoo.com>
9259 * po/zh_CN.po: Updated
9261 Tue Oct 26 06:54:54 CEST 2004 Peter Karlsson <peter@softwolves.pp.se>
9265 Tue Oct 26 06:54:54 CEST 2004 CEST 2004 Piarres Beobide Egana <pi@beobide.net>
9269 Tue Oct 26 06:54:54 CEST 2004 Miguel Figueiredo <elmig@debianpt.org>
9273 Mon Oct 25 18:26:54 CEST 2004 Miroslav Kure <kurem@upcase.inf.upol.cz>
9277 Mon Oct 25 18:26:54 CEST 2004 Michael Piefel <piefel@debian.org>
9281 Mon Oct 25 18:26:54 CEST 2004 Yuri Kozlov <yuray@id.ru>
9285 Mon Oct 25 15:09:43 CEST 2004 Trorrr [Héctor Fernández] <trorrr@yahoo.es>
9289 Mon Oct 25 08:03:00 CEST 2004 Lele Gaifax <lele@nautilus.homeip.net>
9293 Mon Oct 25 07:18:36 CEST 2004 Changwoo Ryu <cwryu@debian.org>
9297 Mon Oct 25 07:18:36 CEST 2004 Kenshi Muto <kmuto@topstudio.co.jp>
9301 Mon Oct 25 07:18:36 CEST 2004 Claus Hindsgaul <claus_h@image.dk>
9305 Mon Oct 25 07:18:36 CEST 2004 Javier Fernandez-Sanguino Pena <jfs@dat.etsit.upm.es>
9309 Sun Oct 24 21:51:55 CEST 2004 Jordi Mallach <jordi@debian.org>
9311 * po/ca.po: Updated Catalan translation.
9313 Sun Oct 24 20:16:43 CEST 2004 Lele Gaifax <lele@nautilus.homeip.net>
9317 Sun Oct 24 20:06:43 CEST 2004 Trorrr [Héctor Fernández] <trorrr@yahoo.es>
9321 Sun Oct 24 19:20:43 CEST 2004 Bartosz Fenski aka fEnIo <fenio@o2.pl>
9325 Sun Oct 24 19:20:43 CEST 2004 Andre Luis Lopes <andrelop@debian.org>
9327 * po/pt_BR.po: Updated
9329 Sun Oct 24 19:20:43 CEST 2004 Bart Cornelis <cobaco@linux.be>
9333 Sun Oct 24 16:18:52 CEST 2004 Christian Perrier <bubulle@debian.org>
9335 * po/dpkg.pot: regenerated
9336 * po/*po: synced with dpkg.pot
9337 * po/fr.po: complete the translation
9339 Sun Oct 24 09:40:27 CEST 2004 Christian Perrier <bubulle@debian.org>
9341 * po/nl.po: Correct obvious typo from the translator
9343 Sun Oct 24 09:21:17 CEST 2004 Christian Perrier <bubulle@debian.org>
9345 * debian/changelog: Close *all* Portuguese translation bug reports
9347 Sun Oct 24 12:58:36 BST 2004 Scott James Remnant <scott@netsplit.com>
9349 * po/POTFILES.in: Add lib/compression.c here.
9351 Fri Jun 18 17:04:44 BST 2004 Scott James Remnant <scott@netsplit.com>
9353 * configure.in: Add checks for bz2 in a similar manner to zlib.
9354 * Makefile.conf.in: Add definitions for BZ2LIB macros.
9355 * lib/compression.c: New file taken from HEAD that implements
9356 compression and decompression for gzip, bzip2 and pass-through.
9357 * lib/Makefile.in: Compile the new source file.
9358 * include/dpkg.h.in: Add BZIP2 macro expanding to the name of the
9359 bzip2 tool. Add compression_type enum and headers for functions in
9361 * dpkg-deb/Makefile.in: Also link static bzip2 libraries to static dpkg-deb.
9362 * dpkg-deb/build.c: Remove internalGzip() function, replace calling
9363 code with call to new compress_cat() function. Choose the appropriate
9364 name for the data member based on compress_type.
9365 * dpkg-deb/extract.c: Remove gzip calling code, replace with call to
9366 new decompress_cat() function. Add code to detect compression type
9368 * dpkg-deb/main.c: Add new -Z option to set compression type, set
9370 * dpkg-deb/dpkg-deb.h: Add extern definition of compress_type option,
9371 add macros to define the bzip2 and pass-through data member filenames.
9373 Tue Oct 19 08:28:46 CEST 2004 Javier Fernández-Sanguino Peña <jfs@computer.org>
9375 * po/es.po: updated (complete)
9377 Sun Oct 17 08:40:46 CEST 2004 Piarres Beobide Egana <pi@beobide.net>
9379 * po/eu.po: updated (complete)
9381 Thu Oct 14 17:01:21 CEST 2004 Michael Piefel <piefel@debian.org>
9383 * po/de.po: updated (now complete)
9385 Wed Oct 13 17:01:31 CEST 2004 George Papamichelakis <george@step.gr>
9389 Wed Oct 13 08:45:54 CEST 2004 Peter Karlsson <peterk@debian.org>
9391 * man/sv/dpkg-split.8: Updated
9392 * man/sv/start-stop-daemon.8: Updated
9393 * man/sv/deb-control.5: Updated
9394 * man/sv/dpkg.8: Updated
9395 * man/sv/md5sum.1: Updated
9396 * man/sv/dpkg-deb.1: Updated
9397 * man/sv/dpkg-query.8: Updated
9398 * man/sv/dselect.8: Updated
9400 Tue Oct 12 22:22:55 CEST 2004 Miroslav Kure <kurem@upcase.inf.upol.cz>
9402 * po/cs.po: Updated (now complete)
9404 Tue Oct 12 22:22:55 CEST 2004 Peter Karlsson <peter@softwolves.pp.se>
9406 * po/sv.po: Updated (now complete)
9408 Tue Oct 12 07:50:21 CEST 2004 Philippe Batailler <philippe.batailler@free.fr>
9410 * man/fr/cleanup-info.8: updated
9411 * man/fr/dpkg.8: updated
9412 * man/fr/dpkg-deb.1: updated
9413 * man/fr/dpkg-divert.8: updated
9414 * man/fr/dpkg-name.1: updated
9415 * man/fr/dpkg-query.8: updated
9416 * man/fr/dpkg-source.1: updated
9417 * man/fr/dpkg-split.8: updated
9418 * man/fr/dpkg-statoverride.8: updated
9419 * man/fr/install-info.8: updated
9420 * man/fr/start-stop-daemon.8: updated
9421 * man/fr/update-alternatives.8: updated
9423 Mon Oct 11 18:11:54 CEST 2004 Robert Luberda <robert@debian.org>
9427 Mon Oct 11 18:11:54 CEST 2004 Lior Kaplan <webmaster@guides.co.il>
9431 Mon Oct 11 18:11:54 CEST 2004 Piarres Beobide Egana <pi@beobide.net>
9435 Mon Oct 11 18:11:54 CEST 2004 Yongtao Yang <yongtao.yang@telia.com>
9437 * po/zh_CN.po: Added
9439 Mon Oct 11 18:11:54 CEST 2004 Miguel Figueiredo <elmig@debianpt.org>
9443 Mon Oct 11 18:11:54 CEST 2004 Yuri Kozlov <yuray@id.ru>
9447 Mon Oct 11 18:11:54 CEST 2004 Kenshi Muto <kmuto@debian.org>
9451 Mon Oct 11 18:11:54 CEST 2004 Changwoo Ryu <cwryu@debian.org>
9455 Mon Oct 11 18:11:54 CEST 2004 Bart Cornelis <cobaco@linux.be>
9459 Mon Oct 11 18:11:54 CEST 2004 Havard Korsvoll <korsvoll@skulelinux.no>
9463 Mon Oct 11 18:11:54 CEST 2004 Miroslav Kure <kurem@upcase.inf.upol.cz>
9467 Mon Oct 11 18:11:54 CEST 2004 Andre Luis Lopes <andrelop@debian.org>
9469 * po/pt_BR.po: Updated
9471 Mon Oct 11 18:11:54 CEST 2004 Ruben Porras <nahoo82@telefonica.net>
9473 * man/es/md5sum.1: updated
9474 * man/es/start-stop-daemon.8: updated
9475 * man/es/dpkg-scansources.1: updated
9476 * man/es/dpkg-scanpackages.1: updated
9477 * man/es/update-alternatives.8: updated
9478 * man/es/dpkg-divert.8: updated
9479 * man/es/cleanup-info.8: updated
9480 * man/es/dpkg-checkbuilddeps.1: updated
9481 * man/es/dpkg-split.8: updated
9482 * man/es/dpkg-statoverride.8: updated
9483 * man/es/dpkg.8: updated
9484 * man/es/dselect.8: updated
9485 * man/es/dpkg-source.1: updated
9486 * man/es/dpkg-deb.1: updated
9487 * man/es/dpkg-name.1: updated
9489 Mon Oct 11 18:11:54 CEST 2004 Christian Perrier <bubulle@debian.org>
9491 * configure.in: Added he to ALL_LINGUAS.
9492 * configure.in: Added eu to ALL_LINGUAS.
9493 * configure.in: Added zh_CN to ALL_LINGUAS.
9495 Mon Oct 11 16:33:49 CEST 2004 George Papamichelakis <george@step.gr>
9499 Mon Oct 11 16:33:49 CEST 2004 Christian Perrier <bubulle@debian.org>
9501 * configure.in: Added el to ALL_LINGUAS.
9503 Mon Jul 19 20:17:09 BST 2004 Scott James Remnant <scott@netsplit.com>
9505 * version-nr, debian/changelog: Bump version to 1.10.24.
9507 Sat Jun 26 18:38:34 CEST 2004 David Weinehall <tao@debian.org>
9509 * scripts/dpkg-buildpackge.sh, scripts/dpkg-name.sh, methods/disk.update,
9510 methods/disk.setup: Change non-POSIX -a and -o test options to shell
9511 && and || for portability.
9513 Sat Jun 26 16:41:31 CEST 2004 Changwoo Ryu <cwryu@debian.org>
9515 * po/ko.po: Updated.
9517 Wed Jun 23 17:57:45 BST 2004 Changwoo Ryu <cwryu@debian.org>
9520 * configure.in: Added ko to ALL_LINGUAS.
9522 Tue Jun 22 17:50:57 BST 2004 Christian Perrier <bubulle@debian.org>
9524 * po/fr.po: Updated.
9526 Tue Jun 22 17:48:22 BST 2004 Claus Hindsgaul <claus_h@image.dk>
9528 * po/da.po: Updated.
9530 Sat Jun 19 23:11:38 BST 2004 Scott James Remnant <scott@netsplit.com>
9532 * dselect/Makefile.in: Remove helpmsgs.h from the GENFILES list so
9533 we don't wipe it on "make clean" (it's not generated anymore).
9535 Fri Jun 18 11:49:21 BST 2004 Ognyan Kulev <ogi@fmi.uni-sofia.bg>
9537 * utils/start-stop-daemon.c: Moved pid_is_running inside OSHURD sentry,
9538 provided Hurd version. Removed dependency on C99 code and replaced
9539 constructor with an init function.
9541 Fri Jun 18 06:34:43 BST 2004 Scott James Remnant <scott@netsplit.com>
9543 * archtable: Requested the technical committee to make the mentioned
9544 decision -- we're going with amd64 (that'll please my boss :-)
9545 * scripts/dpkg-architecture.pl: Likewise.
9547 Tue Jun 15 19:19:36 BST 2004 Bartosz Fenski aka fEnIo <fenio@o2.pl>
9549 * po/pl.po: Updated.
9551 Mon Jun 14 09:35:30 BST 2004 Ruben Porras <nahoo82@telefonica.net>
9553 * man/es/dpkg-scanpackages.1, man/es/start-stop-daemon.8,
9554 man/es/dpkg-scansources.1, man/es/dpkg.8, man/es/dpkg-checkbuilddeps.1,
9555 man/es/dselect.8, man/es/dpkg-deb.1: Updated again from the BTS, for
9556 some reason the previous update lost the foreign characters.
9558 Mon Jun 14 09:12:08 BST 2004 Scott James Remnant <scott@netsplit.com>
9560 * scripts/dpkg-divert.8: Correct typo (ibrary -> library).
9562 Mon Jun 14 08:58:27 BST 2004 Lele Gaifax <lele@nautilus.homeip.net>
9564 * po/it.po: Updated.
9566 Mon Jun 7 17:47:13 CEST 2004 Jordi Mallach <jordi@debian.org>
9568 * po/ca.po: Update Catalan translation.
9570 Thu Jun 3 12:03:49 BRT 2004 Scott James Remnant <scott@netsplit.com>
9572 * archtable, scripts/dpkg-architecture.pl: Remove support for amd64/x86-64,
9573 the porters clearly can't make up their mind what they want.
9575 Wed Jun 2 15:32:47 BRT 2004 Scott James Remnant <scott@netsplit.com>
9577 * version-nr, debian/changelog: Bump version to 1.10.23.
9579 Tue Jun 1 17:42:58 BRT 2004 Scott James Remnant <scott@netsplit.com>
9581 * scripts/Makefile.in: Move dpkg-scanpackages and dpkg-scansources
9582 manpages to section 1.
9583 * scripts/dpkg-scanpackages.8: Renamed to dpkg-scanpackages.1, adjusted
9584 reference to dpkg-scansources.
9585 * scripts/dpkg-scansources.pl: Adjusted reference to dpkg-scanpackages.
9586 * dselect/dselect.8: Adjusted reference to dpkg-scanpackages.
9588 * man/es/Makefile.in: Move dpkg-scanpackages and dpkg-scansources
9589 manpages to section 1.
9590 * man/es/dpkg-scanpackages.8: Renamed to dpkg-scanpackages.1, adjusted
9591 reference to dpkg-scansources.
9592 * man/es/dpkg-scansources.8: Renamed to dpkg-scansources.1,
9594 * man/fr/Makefile.in: Move dpkg-scanpackages and dpkg-scansources
9595 manpages to section 1.
9596 * man/fr/dpkg-scanpackages.8: Renamed to dpkg-scanpackages.1, adjusted
9597 reference to dpkg-scansources.
9598 * man/fr/dpkg-scansources.8: Renamed to dpkg-scansources.1
9600 * man/ja/Makefile.in: Move dpkg-scanpackages and dpkg-scansources
9601 manpages to section 1.
9602 * man/ja/dpkg-scanpackages.8: Renamed to dpkg-scanpackages.1, adjusted
9603 refence to dpkg-scansources.
9604 * man/ja/dpkg-scansources.8: Renamed to dpkg-scansources.1, adjusted
9605 reference to dpkg-scanpackages.
9606 * man/ja/dselect.8: Adjusted references to dpkg-scanpackages.
9608 * man/pt_BR/dselect.8: Adjusted reference to dpkg-scanpackages.
9609 * man/sv/.check.pl: Adjusted reference to dpkg-scanpackages.
9610 * man/sv/dselect.8: Adjusted reference to dpkg-scanpackages.
9612 Tue Jun 1 17:27:50 BRT 2004 Scott James Remnant <scott@netsplit.com>
9614 * scripts/dpkg-shlibdeps.pl: Guard chown call with a check that we're
9615 running as root, if we're not, it's not necessary.
9617 Tue Jun 1 17:23:30 BRT 2004 Scott James Remnant <scott@netsplit.com>
9619 * script/dpkg-source.1: Documented dpkg:Version and dpkg:UpstreamVersion
9622 Tue Jun 1 14:52:27 BRT 2004 KISE Hiroshi <kise@fuyuneko.jp>
9624 * man/ja/dpkg-checkbuilddeps.1: Updated.
9625 * man/ja/dpkg-divert.8: Updated.
9627 Tue Jun 1 14:45:47 BRT 2004 Nikolai Prokoschenko <nikolai@prokoschenko.de>
9629 * po/ru.po: Updated.
9631 Tue Jun 1 14:41:30 BRT 2004 Helge Kreutzmann <kreutzm@itp.uni-hannover.de>
9633 * man/de/start-stop-daemon.8: New translation.
9634 * man/de/Makefile.in: Added new manpage.
9636 Tue Jun 1 14:37:52 BRT 2004 Ruben Porras <nahoo82@telefonica.net>
9638 * man/es/dpkg-divert.8: Updated.
9640 Tue Jun 1 13:53:29 BRT 2004 Lele Gaifax <lele@nautilus.homeip.net>
9642 * po/it.po: Updated.
9644 Mon May 31 20:44:21 BRT 2004 Scott James Remnant <scott@netsplit.com>
9646 * archtable: Change amd64 to x86-64 or x86_64 to match the GNU strings
9647 until someone better than me makes a real decision about this.
9648 * scripts/dpkg-architecture.pl: Likewise.
9650 Mon May 31 12:48:35 BRT 2004 Michal Cihar <michal@cihar.com>
9652 * dpkg-deb/extract.c: Swap %zi and %ld in printf expression.
9653 * split/info.c: Correct %zi and %lu in printf expression.
9654 * split/main.c: Include missing sys/types.h and sys/stat.h headers.
9656 Sun May 30 19:51:52 BRT 2004 Robert Millan <zeratul2@wanadoo.es>
9658 * archtable: Change i386-kfreebsd-gnu to kfreebsd-i386 and add
9660 * scripts/dpkg-archtable.pl: Return i386-freebsd for freebsd-i386 and
9661 i386-kfreebsd-gnu for kfreebsd-i386 instead. Add knetbsd-i386.
9662 * configure.in: Identify knetbsd-gnu.
9664 Fri May 28 18:45:26 BRT 2004 Steinar H. Gunderson <sesse@dessverre.samfundet.no>
9666 * main/depcon.c: Colour packages as we check them for break cycles to
9667 reduce the amount of recursion required to break a cycle.
9668 * include/dpkg-deb.h, lib/database.c: Add colour to the package structure.
9669 * main/main.h, main/configure.c, main/remove.c: Remove second
9670 argument from findbreakcycle() function.
9672 Wed May 26 23:05:01 BRT 2004 Ognyan Kulev <ogi@fmi.uni-sofia.bg>
9674 * utils/start-stop-daemon.c: On hurd, proc_stat_set_flags may return
9675 NULL as Hurd can have processes with no uid, replace ihash_iterate
9676 with HURD_IHASH_ITERATE.
9678 Sat May 22 15:28:33 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9680 * utils/md5sum.1: s/asterix/asterisk/. Thanks to Matt Zimmermann for
9683 Wed May 12 23:25:16 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9685 * main/packages.c: Apply patch from Daniel Kobras to disappear empty
9686 packages that are replaced in the same run.
9688 Fri May 7 04:46:01 BST 2004 Scott James Remnant <scott@netsplit.com>
9690 * doc/Makefile.in: Ensure that $(docdir) exists before attempting
9691 to install the ChangeLog there.
9693 Fri May 7 01:21:49 BST 2004 Scott James Remnant <scott@netsplit.com>
9695 * dselect/pkginfo.cc: Replace &c. with the slightly clearer etc.
9697 * main/dpkg.8: Update from sgml, document --force-bad-verify.
9698 * main/dpkg-query,8: Correct --list documentation, without pattern it
9699 searches status not available.
9700 * scripts/dpkg-divert.8: Remove obsolete reference to the Debian Packaging
9702 * scripts/dpkg-source.1: Rather than keeping dpkg-source(1) always up to
9703 date with the -i option, document the intent of the default.
9704 * scripts/dpkg-statoverride.8: Correct typo and documentation of --update.
9705 * scripts/update-alternatives.8: Correct documentation of --install
9706 and --remove actions.
9707 * man/en/dpkg.8.sgml: Add missing </para> from last commit.
9708 * utils/start-stop-daemon.c: Correct typo.
9709 * utils/start-stop-daemon.8: Correct --pidfile documentation and mention
9710 what happens if you don't supply it; document that it will chdir("/")
9711 unless -d is specified.
9713 * dpkg-deb/dpkg-deb.1, main/dpkg.8, main/dpkg-query.8, scripts/cleanup-info.8,
9714 scripts/dpkg-checkbuilddeps.1, scripts/dpkg-divert.8, scripts/dpkg-name.1,
9715 scripts/dpkg-scanpackages.8, scripts/dpkg-source.1,
9716 scripts/dpkg-statoverride.8, scripts/install-info.8,
9717 scripts/update-alternatives.8, split/dpkg-split.8, utils/md5sum.1,
9718 utils/start-stop-daemon.8: Correct manpage hyphenation for those in a
9721 Fri May 7 01:13:36 BST 2004 Scott James Remnant <scott@netsplit.com>
9723 * man/en/dpkg.8.sgml: Add a new Additional Functionality section at the
9724 bottom where we can refer readers to other packages that provide the
9725 functionality they may be looking for. Suggest aptitude and debsums.
9727 Fri May 7 00:55:39 BST 2004 Scott James Remnant <scott@netsplit.com>
9729 * man/en/dpkg.8.sgml: Document dselect update alongside --update-avail.
9731 Fri May 7 00:47:39 BST 2004 Geoff Richards <qef@rosies-dumplings.co.uk>
9733 * scripts/dpkg-source.1: Suggest 'fakeroot' for the dpkg-source -r command.
9735 Fri May 7 00:42:44 BST 2004 Scott James Remnant <scott@netsplit.com>
9737 * main/main.c: Suggest 'aptitude' as well as 'dselect' now that
9740 Fri May 7 00:39:01 BST 2004 Christian Perrier <bubulle@debian.org>
9742 * po/fr.po: Updated French translation.
9744 Fri May 7 00:04:28 BST 2004 Scott James Remnant <scott@netsplit.com>
9746 * lib/parsehelp.c, scripts/dpkg-source.pl, scripts/cl-debian.pl: Remove
9747 restriction that package names be at least two characters long.
9749 Thu May 6 23:57:52 BST 2004 Andrew Shugg <andrew@neep.com.au>
9751 * utils/md5sum.c: Add support for DOS line-endings (\r\n).
9753 Thu May 6 23:52:28 BST 2004 Daniel Kobras <kobras@debian.org>
9755 * archtable: Add ia64-unknown-linux-gnu.
9757 Thu May 6 23:50:17 BST 2004 Daniel Kobras <kobras@debian.org>
9759 * main/enquiry.c: Remove dereference of unitialised and unused pointer
9760 variable, fixing segfault on when "gcc -dumpmachine" returns a
9761 non-matching triplet.
9763 Thu May 6 23:44:55 BST 2004 Colin Watson <cjwatson@debian.org>
9765 * dselect/helpmsgs.cc: Pressing 'n' repeats the last search, not
9766 moves down; pressing 'p' does nothing.
9768 Thu May 6 23:39:59 BST 2004 Helge Kreutzmann <kreutzm@itp.uni-hannover.de>
9770 * man/de/Makefile.in: Install update-alternatives.8
9771 * man/de/update-alternatives.8: Translated into German.
9773 Thu May 6 23:23:10 BST 2004 Scott James Remnant <scott@netsplit.com>
9775 * utils/md5sum.1, man/es/md5sum.1, man/de/md5sum.1, men/ja/md5sum.1:
9776 Correct "et al" to "et al."
9777 * main/main.c, man/en/dpkg.8.sgml: Correct description of
9778 --compare-versions command to describe versions as "empty" rather
9779 than "missing" or "no version" as "" has to be passed.
9780 * man/en/dpkg.8.sgml: Add dpkg-reconfigure(8) to SEE ALSO section.
9781 * utils/start-stop-daemon.8: Move documentation of --retry to the
9782 paragraph about --stop where it belongs.
9783 * scripts/update-alternatives.8: Remove strange " usage and
9784 replace with appropriate .BR.
9786 Sun May 2 10:22:25 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9788 * scripts/dpkg-scanpackages.pl: Give proper case for Origin and
9791 Sun May 2 10:04:25 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9793 * scripts/controllib.pl: Fix unknown() so it actually manages to pick
9794 out the correct field name.
9796 Fri Apr 30 11:20:13 CEST 2004 Jordi Mallach <jordi@debian.org
9798 * po/ca.po: Update Catalan translation.
9800 Tue Apr 27 21:49:25 BST 2004 Ruben Porras <nahoo82@telefonica.net>
9802 * man/es/dpkg-scansources.8: Added Spanish manpage.
9803 * man/es/Makefile.in: Install it.
9805 Tue Apr 27 19:47:37 BST 2004 Scott James Remnant <scott@netsplit.com>
9807 * scripts/dpkg-architecture.pl (rewrite_gnu): Add a new regexp for
9808 parsing i386-gnu style triplets on the Hurd.
9810 Tue Apr 27 19:23:01 BST 2004 Scott James Remnant <scott@netsplit.com>
9812 * main/dpkg.8: Correct reference to non-existant --force-reinstreq
9813 option to --force-remove-reinstreq.
9815 Tue Apr 27 19:01:28 BST 2004 Ruben Porras <nahoo82@telefonica.net>
9817 * man/es/start-stop-daemon.8, man/es/dselect.8, man/es/dpkg.8,
9818 man/es/dpkg-checkbuilddeps.8, man/es/dpkg-deb.1,
9819 man/es/dpkg-scanpackages.8: Updated Spanish manpages.
9821 Mon Apr 26 20:28:58 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9823 * scripts/dpkg-architecture.pl, archtable: Add AMD64/x86_64 support.
9824 Also reindent archtable so the columns line up nicely.
9826 Mon Apr 26 18:53:15 BST 2004 Scott James Remnant <scott@netsplit.com>
9828 * configure.in: Put the man page directories in alphabetical order.
9829 * man/Makefile.in: Likewise
9830 * debian/rules: Extract manual page directories from Makefile.in and
9831 use that list instead of hardcoding them.
9833 Sun Apr 25 19:00:20 BST 2004 Scott James Remnant <scott@netsplit.com>
9835 * version-nr, debian/changelog: Bump version to 1.10.22.
9837 Sun Apr 25 18:02:34 BST 2004 Scott James Remnant <scott@netsplit.com>
9839 * scripts/install-info.pl: Add --dir-file option for compatibility
9840 with GNU install-info. Correct code to break infinite loop.
9842 Sun Apr 25 17:57:46 BST 2004 Scott James Remnant <scott@netsplit.com>
9844 * scripts/dpkg-divert.8: Document that diverting shared libraries
9845 can be troublesome when combined with ldconfig.
9847 Sun Apr 25 17:53:06 BST 2004 Scott James Remnant <scott@netsplit.com>
9849 * scripts/dpkg-checkbuilddeps.1: This script no longer checks for
9850 build-essential, so don't document that it does.
9852 Sun Apr 25 17:45:47 BST 2004 Scott James Remnant <scott@netsplit.com>
9854 * scripts/dpkg-genchanges.pl: Group the -o expression to find
9857 Sun Apr 25 17:17:16 BST 2004 Scott James Remnant <scott@netsplit.com>
9859 * man/es/Makefile.in: Add new dpkg-source.1 manpage.
9861 Sun Apr 25 17:08:57 BST 2004 Scott James Remnant <scott@netsplit.com>
9863 * man/ja/Makefile.in: Add new dpkg-source.1 manpage.
9865 Sun Apr 25 16:59:09 BST 2004 Scott James Remnant <scott@netsplit.com>
9867 * configure.in: Add Norwegian Nynorsk and Portugese linguas.
9869 Sun Apr 25 12:27:38 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9871 * main/archive.c: make block and char devices work properly when
9872 extracting. mknod can create other kinds of devices than just char
9873 and block devices, so we need to pass the type of device to mknod in
9876 Sun Apr 25 00:46:38 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9878 * split/mksplit.pl: cut off anything after the first piece of whitespace
9879 when getting the md5sum, since we now get a different-formatted md5sum
9880 back. (It now has a trailing dash.)
9882 Sun Apr 25 00:23:27 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9884 * lib/dump.c: Terminate buffer in order to not display garbage when
9885 displaying dependency fields.
9887 Sun Apr 25 00:12:27 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9889 * main/query.c, dpkg-deb/main.c: Fix up the query format to be
9890 consistent with what the library expects. Remove the pkg: prefix from
9891 the default showformat.
9893 Sun Apr 25 00:06:27 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9895 * scripts/dpkg-statoverride.pl: Make sure the permissions passed to
9896 dpkg-statoverride are numeric.
9898 Sat Apr 24 23:11:12 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9900 * include/dpkg.h.in, lib/ehandle.c, lib/myopt.c: Failed opening of
9901 configuration files are no longer a fatal error. Thanks to Max
9902 Vozeler <max@hinterhof.net> for the patch.
9904 Mon Apr 19 12:24:40 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9906 * scripts/dpkg-shlibdeps.pl: Set LC_ALL to C before spawning off dpkg
9907 --search, to avoid searching on localized strings.
9909 Sun Mar 28 18:32:19 CEST 2004 Jordi Mallach <jordi@debian.org>
9911 * po/ca.po: Update Catalan translation.
9913 Fri Mar 12 19:02:21 GMT 2004 Scott James Remnant <scott@netsplit.com>
9915 * main/remove.c (removal_bulk_remove_configfiles): Don't change the
9916 "previous pointer" pointer if we remove the node from the linked list,
9917 ensuring that if the next node is to be removed the right thing will
9920 This corrects the bug where every second shared or diverted conffile
9921 would be incorrectly deleted by dpkg.
9923 Fri Mar 12 15:05:52 GMT 2004 Scott James Remnant <scott@netsplit.com>
9925 * utils/start-stop-daemon.c: Don't require an argument for -V (version).
9927 Thu Mar 11 11:36:06 GMT 2004 Scott James Remnant <scott@netsplit.com>
9929 * version-nr, debian/changelog: Bump version to 1.10.21.
9931 Thu Mar 11 11:23:09 GMT 2004 Scott James Remnant <scott@netsplit.com>
9933 * man/ja/Makefile.in: Add new pages to Makefile.in so they get
9936 Thu Mar 11 11:18:29 GMT 2004 Scott James Remnant <scott@netsplit.com>
9938 * scripts/dpkg-buildpackage.sh: Revert change suggested by Javier
9939 Fernandez-Sanguino Pena, and don't echo a blank line when dealing
9940 with PGP. PGP itself will fail if we do this, it's needed to
9941 satisfy pgpgp, which quite frankly is a bug in pgpgp's emulation
9944 Thu Mar 8 01:10:00 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9946 * po/pt_BR.po: Fix typo.
9948 Thu Mar 8 01:10:00 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9950 * man/de/md5sum.1: Fix spelling error as per patch in #230750
9952 Thu Mar 8 01:00:00 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9954 * man/fr/dpkg-source.1 man/fr/update-alternatives.8
9955 man/fr/start-stop-daemon.8 man/fr/dpkg.8 man/fr/dpkg-query.8
9956 man/fr/deb-control.5 man/fr/dpkg-scanpackages.8: Update French translation
9957 per patches in #218713
9959 Thu Mar 8 00:54:00 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9961 * man/ja/{dpkg-architecture.1,dpkg-query.8,dselect.8}: Update Japanese
9962 translation. Closes: #224616
9964 Thu Mar 8 00:38:00 CEST 2004 Tollef Fog Heen <tfheen@debian.org>
9966 * release.sh: Remove .svn directories as well.
9968 Mon Mar 8 19:37:00 GMT 2004 Scott James Remnant <scott@netsplit.com>
9970 * version-nr, debian/changelog: Bump version to 1.10.20.
9972 Mon Mar 8 19:02:25 GMT 2004 Andrew Suffield <asuffield@debian.org>
9974 * utils/md5sum.c: Check the bounds of the line before processing.
9976 Mon Mar 8 18:55:13 GMT 2004 Brian M. Carlson <sandals@crustytoothpaste.ath.cx>
9978 * utils/md5sum.c: Don't print offending lines as they may not be NULL
9981 Mon Mar 8 18:34:16 GMT 2004 Goswin Brederlow <brederlo@informatik.uni-tuebingen.de>
9983 * lib/parse.c, main/processarc.c: Store Architecture in the status file
9984 and don't remove it when processing. This is a first step towards
9985 multi-arch support in a future release of Debian.
9987 Mon Mar 8 18:28:07 GMT 2004 Robert Millan <rmh@debian.org>
9989 * archtable, configure.in, scripts/dpkg-architecture.pl: Update
9990 support for Debian FreeBSD.
9992 Mon Mar 8 18:20:38 GMT 2004 Javier Fernandez-Sanguino Pena <jfs@computer.org>
9994 * scripts/dpkg-buildpackage.sh: Add blank line to .dsc before
9997 Mon Mar 8 18:10:06 GMT 2004 Scott James Remnant <scott@netsplit.com>
9999 * debian/control: Remove duplicated uploaders field and add myself
10000 to the one that's left.
10002 Mon Mar 8 16:49:13 GMT 2004 Christian Haggstrom <chm@c00.info>
10004 * lib/mlib.c: Remove extraneous %s in ohshite() call when out of
10005 disk space so that condition gets handled correctly and not with
10008 Mon Mar 8 10:14:27 GMT 2004 Colin Watson <cjwatson@debian.org>
10010 * dselect/methlist.cc, dselect/pkgdisplay.cc: Set the total display width
10011 to the maximum of TOTAL_LIST_WIDTH and COLS, improving display on wide
10014 Thu Mar 4 13:28:11 GMT 2004 Scott James Remnant <scott@netsplit.com>
10016 * lib/tarfn.c: Copy the Name and LinkName elements and ensure they
10017 are NULL-terminated, freeing these copies before returning. The
10018 tar spec doesn't require a NULL byte if the filename is exactly
10019 100 characters long.
10021 Sun Feb 29 21:56:25 GMT 2004 Scott James Remnant <scott@netsplit.com>
10023 * scripts/dpkg-checkbuilddeps.pl: Push build-conflicts errors into
10024 @conflicts instead of @unmet, this looks like an accidental error
10025 introduced by bad copy&pasteing.
10027 Mon Mar 8 17:26:06 GMT 2004 Scott James Remnant <scott@netsplit.com>
10029 * debian/changelog, version-nr: Bump to 1.10.19.
10031 Thu Feb 26 01:48:15 GMT 2004 Scott James Remnant <scott@netsplit.com>
10033 * main/processarc.c (process_archive): Copy code from main/remove.c
10034 to ensure that hardlinks to devices, setuid files or setgid files
10035 cannot be stashed away in the hope that they become compromisable
10036 in the future. This was handled when removing a package, but not
10037 when upgrading one.
10039 Thu Feb 26 01:23:13 GMT 2004 Scott James Remnant <scott@netsplit.com>
10041 * version-nr: Bump to 1.10.18.1
10043 Mon Feb 23 22:46:21 GMT 2004 Scott James Remnant <scott@netsplit.com>
10045 * dpkg-deb/main.c: Clean up previous badly applied multiline string
10048 Mon Feb 23 01:30:13 CET 2004 Steinar H. Gunderson <sesse@debian.org>
10050 * main/remove.c: Terminate string buffer correctly.
10052 Fri Feb 20 10:22:24 CET 2004 Colin Watson <cjwatson@debian.org>
10054 * dpkg-deb/main.c: Don't use multiline strings (a removed GCC extension).
10056 Tue Jan 27 20:08:12 CST 2003 Adam Heath <doogie@debian.org>
10058 * debian/control: Update dpkg conflicts to << 1.10, instead of 1.9.
10060 Mon Oct 27 13:39:56 CST 2003 Adam Heath <doogie@debian.org>
10062 * version-nr, debian/changelog: Rebuild, tagging and releasing correctly
10063 from cvs this time.
10065 Mon Oct 27 13:01:12 CST 2003 Adam Heath <doogie@debian.org>
10067 * scripts/dpkg-gencontrol.pl: Fix errors with dependency fields that
10068 reference ${dpkg:Version}.
10070 Mon Oct 27 18:45:19 CET 2003 Jordi Mallach <jordi@debian.org>
10072 * po/ca.po: Update Catalan translation and recode to UTF-8.
10074 Mon Oct 27 11:06:25 CST 2003 Adam Heath <doogie@debian.org>
10076 * debian/dpkg.postinst: Don't assume /usr/info/dir exists if /usr/info
10079 Mon Oct 27 10:57:54 CST 2003 Adam Heath <doogie@debian.org>
10081 * scripts/dpkg-source.pl: Add .#* to the default ignore filter.
10083 Mon Oct 27 09:49:29 CST 2003 Adam Heath <doogie@debian.org>
10085 * scripts/dpkg-scanpackages.pl: Add -u -a<arch> commands.
10087 Mon Oct 27 09:42:57 CST 2003 Adam Heath <doogie@debian.org>
10089 * scripts/dpkg-checkbuilddeps.pl: Set $reduce_arch when calling parsedep.
10091 Sun Oct 26 19:29:16 CST 2003 Adam Heath <doogie@debian.org>
10093 * scripts/dpkg-checkbuilddeps.pl: s/dpkg-checkbuild/dpkg-checkbuilddeps/
10095 * version-nr: Bump to 1.10.17.
10096 * debian/changelog: Make the date UNRELEASED.
10098 Sun Oct 26 14:55:53 CET 2003 Wichert Akkerman <wichert@wiggy.net>
10100 * dselect/pkgdepcon.cc: change return value for pkgdepcon() to indicate
10101 a conflict resolution is needed when dealing with autoselected
10104 Sat Oct 25 15:46:16 CDT 2003 Adam Heath <doogie@debian.org>
10106 * debian/changelog: Tag for 1.10.16 release date(for real this time).
10108 Sat Oct 25 15:45:48 CDT 2003 Adam Heath <doogie@debian.org>
10110 * scripts/install-info.pl: Change formatting of info.dir.
10112 Sat Oct 25 15:04:41 CDT 2003 Adam Heath <doogie@debian.org>
10114 * lib/mlib.c, include/dpkg.h.in, utils/md5sum.c: Change limit and the
10115 return value for buffer_copy to off_t, which fixes large file handling.
10117 Sat Oct 25 15:02:27 CDT 2003 Adam Heath <doogie@debian.org>
10119 * almost all .c files: Almost *EVERY* damn file was including config.h in
10120 the wrong spot. After making it the first include, then
10121 off_t/size_t/etc could actually be redefined to be 64-bit compatible.
10123 Sat Oct 25 12:47:22 CDT 2003 Adam Heath <doogie@debian.org>
10125 * scripts/dpkg-checkbuilddeps.pl: Fix dpkg-checkbuilddeps calling of
10126 parsedep. It wasn't setting use_arch.
10128 Tue Sep 23 12:20:35 CDT 2003 Adam Heath <doogie@debian.org>
10130 * configure.in: Add man/es/Makefile.
10132 Tue Sep 23 12:12:38 CDT 2003 Adam Heath <doogie@debian.org>
10134 * debian/changelog: Set release date for 1.10.16.
10136 Sat Sep 20 21:17:45 CDT 2003 Adam Heath <doogie@debian.org>
10138 * utils/md5sum.c: Fix handling of large files.
10140 Sat Sep 20 20:42:35 CDT 2003 Adam Heath <doogie@debian.org>
10143 * Imported several translated manpages, from debian-doc cvs:
10144 * Spanish: 822-date.1 cleanup-info.8 deb-control.5 deb-old.5
10145 deb.5 dpkg-checkbuilddeps.1 dpkg-deb.1 dpkg-divert.8 dpkg-name.1
10146 dpkg-scanpackages.8 dpkg-split.8 dpkg-statoverride.8 dpkg.8
10147 dselect.8 md5sum.1 start-stop-daemon.8 update-alternatives.8
10149 * Portuguese: dpkg.8 dselect.8
10150 * main/dpkg.8: -O had an inverted word.
10151 * po/cz.po: Improve translation of: "dpkg - warning: ignoring request to
10152 remove %s which isn't installed."
10153 * po/it.po: Fix missing space in translation when listing files, and the
10157 * Fix translation of 'conflicts with'
10158 * po/ja.po: Fix typo in translation of dpkg --force-help; dowgrade ->
10161 * Fix translation when listing files, and the file is diverted.
10162 * Fix missing space in translation of: "%s - warning: downgrading %.250s
10163 from %.250s to %.250s.\n"
10164 * po/da.po: Fix translation of(was missing the leading space): " does not
10165 appear to be available\n"
10167 Sat Sep 20 18:45:11 CDT 2003 Adam Heath <doogie@debian.org>
10169 * utils/start-stop-daemon.[c8]:
10170 * Add a -d|--chdir option to start-stop-daemon.
10171 * Split the background block into 2 parts: one that does the fork, and
10172 opens /dev/tty and /dev/null, and one that does everything else. The
10173 second block is then moved to be run right before the exec. This
10174 allows error messages to be seen from the child(previously, they were
10175 lost), and allows for the chroot to not require the device files.
10176 * When --start, --startas and --pidfile are given, print 'process'
10177 instead of '(null)' for the process name, if it's already running.
10179 Sat Sep 20 17:44:40 CDT 2003 Adam Heath <doogie@debian.org>
10181 * configure.in, include/dpkg.h.in: Fix (non-)detection of setlocale.
10183 Fri Sep 19 20:02:19 CDT 2003 Adam Heath <doogie@debian.org>
10185 * debian/changelog: Set date/time for 1.10.15 release.
10187 Fri Sep 19 19:56:48 CDT 2003 Adam Heath <doogie@debian.org>
10189 * lib/varbuf.c, configure.in: Fix va_copy detection.
10190 * scripts/dpkg-buildpackage.sh: Back out debian/rules build-arch
10191 detection. It is *not* possible *at all* to detect available targets
10192 in a rules file. Period.
10194 Fri Sep 19 12:26:54 CDT 2003 Adam Heath <doogie@debian.org>
10196 * scripts/{controllib,dpkg-{source,checkbuilddeps,control}}.pl:
10197 * Rewrote the parsedep stuff, so that it wasn't done during control
10198 file parsing. Scripts that need the internal parsed format should
10199 call parsedep on the field's value.
10200 * Split the substvars parsing into a separate function.
10201 * No longer validate dependency fields when reading the control file.
10202 Some fields may have vars in them, which breaks the validation.
10203 * dpkg-gencontrol calls substvars after parsing the control file, and
10204 then validates the substituted depends lines. Originally,
10205 substitution occured only during writing of the final output file.
10206 * Andreas Barth <aba@not.so.argh.org>:
10207 Fix bad regex that didn't allow spaces in dependency field parsing.
10208 It now directly matches what the c code expects. It previously was
10209 allowing all of \S, which matched on '('.
10211 * debian/control: Remove stale debug that would have broken installation
10213 * debian/rules: We were calling our own local copy of dpkg-gencontrol,
10214 but the system-installed copy of dpkg-shlibdeps. Now, both are called
10215 from the build directory.
10217 Wed Sep 17 13:26:14 CDT 2003 Adam Heath <doogie@debian.org>
10219 * debian/changelog, version-nr: Updated to 1.10.13.
10221 Wed Sep 17 13:23:15 CDT 2003 Adam Heath <doogie@debian.org>
10223 * scripts/controllib.pl: Fix parsing of deps when both () and [] are
10225 * scripts/controllib.pl: Set $host_arch in controllib.pl:parsedep.
10226 * scripts/dpkg-checkbuilddeps.pl: Don't output the [] stuff when finding
10229 Tue Sep 16 13:44:06 CDT 2003 Adam Heath <doogie@debian.org>
10231 * scripts/dpkg-source.pl: Fix generation of dependency lines.
10233 Tue Sep 16 13:06:01 CDT 2003 Adam Heath <doogie@debian.org>
10235 * scripts/dpkg-genchanges.pl: Ignore 'o:.*' in %fi.
10237 Tue Sep 16 13:02:10 CDT 2003 Adam Heath <doogie@debian.org>
10239 * scripts/dpkg-source.pl: Ignore 'o:.*' in %fi.
10241 Tue Sep 16 12:57:02 CDT 2003 Adam Heath <doogie@debian.org>
10243 * po/update.sh: Remove helpmsgs.cc generation.
10245 Tue Sep 16 12:52:42 CDT 2003 Adam Heath <doogie@debian.org>
10247 * version-nr, debian/changelog: Updated for 1.10.11 release.
10249 Tue Sep 16 12:50:44 CDT 2003 Adam Heath <doogie@debian.org>
10251 * scripts/update-alternatives.pl: Remove -w, as it causes runtime
10252 warnings. The code isn't clean enough yet to support it.
10254 Mon Sep 15 19:08:28 CDT 2003 Adam Heath <doogie@debian.org>
10256 * debian/rules: No longer generate any BYHAND files. Also, fix bug in
10257 pseudo-tags installation.
10259 Mon Sep 15 18:53:06 CDT 2003 Adam Heath <doogie@debian.org>
10261 * debian/rules, debian/pseudo-tags: Install
10262 /usr/share/doc/dpkg/pseudo-tags, which talks about the bug titling we
10263 use to mark bugs for filtering in the Debian bts.
10265 Mon Sep 15 18:48:39 CDT 2003 Adam Heath <doogie@debian.org>
10267 * scripts/dpkg-buildpackage.sh: Call debian/rules -qn build-arch, and if
10268 it's available, modify -B handling appropriately. If build-arch is not
10269 available, then when -B was called, do *not* pass -B on to
10270 dpkg-checkbuilddeps.
10272 Sun Sep 14 21:45:44 CDT 2003 Adam Heath <doogie@debian.org>
10274 * configure.in: Fix broken os_type detection on linux.
10276 Sun Sep 14 21:44:01 CDT 2003 Adam Heath <doogie@debian.org>
10278 * po/ca.po: Updated.
10280 Sun, 14 Sep 2003 21:16:18 -0500 Adam Heath <doogie@debian.org>
10282 * scripts/controllib.pl, scripts/dpkg-checkbuilddeps.pl: Moved dependency
10283 parsing logic from dpkg-checkbuilddeps. The dpkg-checkbuilddeps parser
10284 didn't support empty fields, while the controllib parser did.
10285 * scripts/controllib.pl:
10286 * Dependency fields are now parsed into a nested list structure.
10287 * All dependency fields now support [arch] constructs. Those that
10288 don't apply for the current host_arch are removed during parsing.
10289 * Comment lines(those that start with '#') are ignored during parsing.
10290 * Store the original field's casing with 'o:' prepended in %fi.
10291 * scripts/dpkg-checkbuilddeps.pl: Because of the above controllib.pl
10292 changes, this script is much simpler now.
10293 * scripts/dpkg-gencontrol.pl:
10294 * Use the original casing of field names when reporting unknown fields.
10295 * scripts/dpkg-gencontrol.pl, scripts/controllib.pl: After opening files,
10298 Sun Sep 14 17:24:20 CDT 2003 Adam Heath <doogie@debian.org>
10300 * dselect/{Makefile.in,helpmsgs.{cc,h,src},mkhelpmsgs.pl,.cvsignore}:
10301 No longer generate helpmsgs.{cc,h}.
10303 Sun Sep 14 16:53:09 CDT 2003 Adam Heath <doogie@debian.org>
10305 * scripts/update-alternatives.{pl,8}:
10306 * Apply patch that provides --set and --remove-all commands.
10307 * --all calls --config on all alternatives.
10308 * scripts/update-alternatives.pl:
10309 * Alter --config prompt, to be more clear, that one must 'press' enter
10310 to accept the default.
10311 * Fix some -w issues.
10312 * Check whether the target path exists when removing.
10314 Sat Sep 13 20:48:02 CDT 2003 Adam Heath <doogie@debian.org>
10316 * scripts/update-alternatives.8: Add --config to action section, and add
10317 as EXAMPLES section.
10318 * scripts/install-info.pl: install-info --version and --help now display
10320 * main/dpkg{,-query}.8: Mention what -S will not find.
10321 * main/dpkg.8: Mention that downgrading a package can have serious
10323 * scripts/dpkg-scanpackages.8: Include small note that other tools might
10324 use the generated Packages file.
10325 * scripts/dpkg-source.1: Fix some typos.
10326 * dselect/dselect.8: dselect is not the only interface for installing
10328 * utils/start-stop-daemon.8: Note that --nicelevel takes an argument.
10329 * man/en/deb-control.8: Remove duplicate 'can'.
10330 * scripts/dpkg-scansources.pl: Fix short description.
10331 * main/dpkg.8: Move dpkg-query options to their own subsection, like
10333 * main/main.c, main/dpkg.8: Add --dry-run and --simulate as synonyms to
10335 * scripts/dpkg-architecture.pl: Fix wrong reference to
10336 DEB_BUILD_GNU_SYSTEM on --host
10337 * man/en/deb-control.5: s/Usuaully/Usually/
10338 * dselect/dselect.8: Removed reference in dselect(8) about recommends not
10339 being handled well.
10340 * scripts/dpkg-parsechangelog.pl: s/dpkg-source/dpkg-parsechangelog/ in
10342 * scripts/dpkg-source.1: Unhighlight "May be repeated multiple times."
10343 * dpkg-deb/main.c: Make all actions in -h lower case.
10344 * utils/start-stop-daemon.[c8]: Add -g|--group.
10345 * main/dpkg.8: s/THANKS/THANKS.gz/
10346 * main/dpkg.8: Mention running dselect, install after --set-selections.
10347 * main/main.c: Remove disabled --command-fd from help.
10349 Sat Sep 13 18:42:27 CDT 2003 Adam Heath <doogie@debian.org>
10351 * Makefile.conf.in, archtable, configure.in, dselect/Makefile.in,
10352 lib/varbuf.c, scripts/dpkg-{architecture,shlibdeps}.pl,
10353 utils/start-stop-daemon.c: Support OpenBSD.
10355 Sat Sep 13 18:39:41 CDT 2003 Adam Heath <doogie@debian.org>
10357 * archtable: Added alphaev68-linux-gnu to archtable.
10359 Sat Sep 13 17:18:46 CDT 2003 Adam Heath <doogie@debian.org>
10361 * scripts/dpkg-source.pl: Add .svn, {arch}, and .arch-ids to dpkg-source
10364 Sat Sep 13 16:34:53 CDT 2003 Adam Heath <doogie@debian.org>
10366 * lib/parse.c: Change use of strncpy in parsedb to memcpy.
10368 Sat Sep 13 16:28:52 CDT 2003 Adam Heath <doogie@debian.org>
10370 * main/main.c: Fix segfault with --status-fd.
10372 Sat Sep 13 16:26:36 CDT 2003 Adam Heath <doogie@debian.org>
10374 * scripts/dpkg-source.pl: Add .cvsignore to dpkg-source's default diff
10375 ignore regex. Also fix missing \ escape for .deps.
10377 Sat Sep 13 16:16:52 CDT 2003 Adam Heath <doogie@debian.org>
10379 * main/remove.c: Retry removing empty dirs during purge.
10381 Sat Sep 13 16:09:13 CDT 2003 Adam Heath <doogie@debian.org>
10383 * main/filesdb.c: Increase filesdb bin size, and alter hashing function.
10385 Sat Sep 13 16:04:37 CDT 2003 Adam Heath <doogie@debian.org>
10387 * scripts/dpkg-statoverride.pl: Fix "stripping trailing /" message from
10390 Sat Sep 13 15:56:13 CDT 2003 Adam Heath <doogie@debian.org>
10392 * automake/tools.m4, dselect/Makefile.in, methods/disk.setup,
10393 scripts/dpkg-parsechangelog.pl, scripts/dpkg-source.pl: Apply patch to
10394 make dpkg work with POSIX 1003.1-2001.
10396 Sat Sep 13 15:40:39 CDT 2003 Adam Heath <doogie@debian.org>
10398 * lib/database.c: Apply patch to change hashing function, and increase
10399 bin size, for the package database.
10401 Sat Sep 13 15:20:56 CDT 2003 Adam Heath <doogie@debian.org>
10403 * lib/enquiry.c, scripts/dpkg-architecture.pl: dpkg --print-architecture
10404 now does gcc -dumpmachine instead of --print-libgcc-file-name.
10406 Sat Sep 13 14:38:55 CDT 2003 Adam Heath <doogie@debian.org>
10408 * debian/dpkg-doc.postinst: Add set -e.
10410 Sat Sep 13 14:36:37 CDT 2003 Adam Heath <doogie@debian.org>
10412 * lib/parse.c: Fix inverted test of eof in parsedb, while looking for eof
10415 Sat Sep 13 14:34:10 CDT 2003 Adam Heath <doogie@debian.org>
10417 * scripts/update-alternatives.pl: Fix inversion test of $state against
10418 'expected' when removing an alternative.
10420 Sat Sep 13 14:31:22 CDT 2003 Adam Heath <doogie@debian.org>
10422 * lib/startup.c, lib/Makefile.in, include/dpkg.h.in: Change
10423 standard_startup and standard_shutdown into macros.
10425 Sat Sep 13 14:24:14 CDT 2003 Adam Heath <doogie@debian.org>
10427 * scripts/install-info.pl: Apply patch, to handle missing infodir.bak,
10430 Sat Sep 13 14:21:13 CDT 2003 Adam Heath <doogie@debian.org>
10432 * config.sub, config.guess: Updated
10434 Sat Sep 13 14:20:12 CDT 2003 Adam Heath <doogie@debian.org>
10436 * debian/control: Add build-depends on sgml-base, and increase
10437 gettext build-depends to 0.12.1-3.
10439 Sat Sep 13 14:18:02 CDT 2003 Adam Heath <doogie@debian.org>
10442 * Change AC_SYS_SIGLIST_DECLARED to AC_DECL_SYS_SIGLIST.
10443 * Add locale.h to list of checked headers.
10444 * Pass external to AM_GNU_GETTEXT
10446 Sat Sep 13 13:57:22 CDT 2003 Adam Heath <doogie@debian.org>
10448 * Makefile.conf.in: s/top_srcdir/abs_top_srcdir/
10450 Sat Sep 13 13:56:23 CDT 2003 Adam Heath <doogie@debian.org>
10452 * lib/compat.c: s/SYS_SIGLIST_DECLARED/HAVE_DECL_SYS_SIGLIST/
10454 Sat Sep 13 13:55:25 CDT 2003 Adam Heath <doogie@debian.org>
10456 * po/Makevars: Define MSGID_BUGS_ADDRESS
10458 Fri, 12 Sep 2003 17:15:33 +0200 Wichert Akkerman <wichert@deephackmode.org>
10460 * srcipts/dpkg-source.pl: allow ~ in version numbers
10462 Sat Apr 26 15:10:24 CDT 2003 Adam Heath <doogie@debian.org>
10464 * version-nr, debian/changelog: Updated for 1.10.10 release.
10466 Sat Apr 26 15:09:10 CDT 2003 Adam Heath <doogie@debian.org>
10468 * debian/control: Updated to standards-version 3.5.8.
10469 * debian/{dpkg,{-dev,-doc},dselect}.{prerm,postinst}, debian/rules: No
10470 longer manage /usr/doc symlinks.
10472 Sat Apr 26 14:28:17 CDT 2003 Adam Heath <doogie@debian.org>
10474 * .cvsignore, po/.cvsignore: Added generated/symlinked files.
10476 Sat Apr 26 14:24:05 CDT 2003 Adam Heath <doogie@debian.org>
10478 * mkinstalldirs: removed, as this is generated.
10480 Sat Apr 26 14:22:16 CDT 2003 Adam Heath <doogie@debian.org>
10482 * po/Makevars: Needed to work with the newer gettext.
10484 Sat Apr 26 11:29:30 CDT 2003 Adam Heath <doogie@debian.org>
10486 * configure.in, Makefile.in: Updated for gettext 0.11.5.
10489 Tue Apr 15 11:32:22 CDT 2003 Adam Heath <doogie@debian.org>
10491 * archtable, utils/start-stop-daemon.c, scripts/dpkg-architecture.pl:
10492 Add netbsd support.
10493 * scripts/dpkg-architecture.pl: Support hypenated values.
10495 Tue Apr 15 01:05:04 CDT 2003 Adam Heath <doogie@debian.org>
10497 * config.sub, config.guess: Updated.
10499 Tue Apr 15 00:48:06 CDT 2003 Adam Heath <doogie@debian.org>
10501 * debian/control, debian/rules, debian/changelog: Modified to use
10504 Tue Apr 15 00:35:40 CDT 2003 Adam Heath <doogie@debian.org>
10506 * scripts/dpkg-statoverride.pl: Strip trailing / from the file args in
10509 Tue Apr 15 00:26:06 CDT 2003 Adam Heath <doogie@debian.org>
10511 * Makefile.in: Surround sed call with ''.
10513 Tue Apr 15 00:16:44 CDT 2003 Adam Heath <doogie@debian.org>
10515 * debian/control: Make the dpkg-iasearch conflicts versioned.
10517 Mon Apr 14 21:13:04 CDT 2003 Adam Heath <doogie@debian.org>
10519 * archtable: Updated for hurd.
10521 Sun Sep 15 13:25:29 CDT 2002 Adam Heath <doogie@debian.org>
10523 * scripts/dpkg-architecture.pl: Add s390x.
10525 Sun Sep 15 13:21:38 CDT 2002 Adam Heath <doogie@debian.org>
10527 * debian/changelog: Set date for 1.10.9 release.
10529 Sun Sep 15 13:19:40 CDT 2002 Adam Heath <doogie@debian.org>
10531 * archtable: Add s390x.
10533 Sun Sep 15 12:48:36 CDT 2002 Adam Heath <doogie@debian.org>
10535 * main/help.c: Fix dereference in cu_closefd(), which was the cause of
10536 close(random number) on most arches, but close(0) on s390x.
10538 Sun Sep 15 12:43:00 CDT 2002 Adam Heath <doogie@debian.org>
10540 * version-nr, debian/changelog: Set 1.10.9 version.
10542 Thu Sep 5 16:32:01 CDT 2002 Adam Heath <doogie@debian.org>
10544 * debian/changelog: Set date for 1.10.8 release.
10546 Thu Sep 5 16:31:11 CDT 2002 Adam Heath <doogie@debian.org>
10548 * scripts/install-info.pl: Make the multiline regex have an upper bound,
10549 instead of being unbounded, as newer perls have a larger stack frame,
10550 which cause them to segfault quicker with larger inputs.
10552 Thu Sep 5 16:29:39 CDT 2002 Adam Heath <doogie@debian.org>
10554 * version-nr, debian/changelog: Set 1.10.8 version.
10556 Tue Sep 3 18:59:19 CDT 2002 Adam Heath <doogie@debian.org>
10558 * debian/changelog: Set date for 1.10.7 release.
10560 Tue Sep 3 18:40:08 CDT 2002 Adam Heath <doogie@debian.org>
10562 * lib/dbmodify.c: Fix double free in modstatdb_init, in the case that
10563 modstatdb_shutdown was called previously.
10565 Tue Sep 3 18:37:45 CDT 2002 Adam Heath <doogie@debian.org>
10567 * lib/nfmalloc.c: Protect duplicate calls to obstack_free(),
10568 as obstack_free segfaults when called without initializing.
10570 Tue Sep 3 18:36:42 CDT 2002 Adam Heath <doogie@debian.org>
10572 * version-nr, debian/changelog: Set 1.10.7 version.
10574 Sun Sep 1 23:46:04 CDT 2002 Adam Heath <doogie@debian.org>
10576 * debian/changelog: Set date for 1.10.6 release.
10578 Sat Aug 31 23:46:04 CDT 2002 Adam Heath <doogie@debian.org>
10580 * dpkg-deb/main.c, dselect/main.cc, include/dpkg.h.in, lib/startup.c
10581 main/main.c, main/query.c, split/main.c: Don't call nffreeall, in any
10582 of the c/c++ programs. It appears dselect slightly corrupts it's
10583 memory enough that it can't be freed without segfaulting.
10585 Sat Aug 31 23:42:08 CDT 2002 Adam Heath <doogie@debian.org>
10587 * version-nr, debian/changelog: Modified for version 1.10.6.
10589 Thu Aug 29 16:43:45 CDT 2002 Adam Heath <doogie@debian.org>
10591 * debian/changelog: Set date for release.
10593 Thu Aug 29 16:38:15 CDT 2002 Adam Heath <doogie@debian.org>
10595 * main/filesdb.c: Back out one memleak fix.
10597 Thu Aug 29 15:13:59 CDT 2002 Adam Heath <doogie@debian.org>
10599 * debian/rules: Remove /usr/sbin/start-stop-daemon.
10601 Thu Aug 29 14:51:35 CDT 2002 Adam Heath <doogie@debian.org>
10603 * lib/dbmodify.c, lib/dump.c, lib/lock.c, lib/startup.c, lib/tarfn.c
10604 main/configure.c, main/filesdb.c, main/query.c: Fix several minor
10607 Thu Aug 29 14:42:05 CDT 2002 Adam Heath <doogie@debian.org>
10609 * lib/parsehelp.c: Fix corruption of available file, caused by use of
10610 memory that was previously freed.
10612 Thu Aug 29 14:31:22 CDT 2002 Adam Heath <doogie@debian.org>
10614 * lib/parse.c: Check for eof before we getc(), not after.
10616 Sat Aug 24 15:36:41 CDT 2002 Adam Heath <doogie@debian.org>
10618 * scripts/install-info.pl: Previous install-infos(before 1.10) handled
10619 multiple dir file entries, because they would copy the entire stanza
10620 unmodified. The newest version does not do this, as it reformats the
10621 options, and thereby only takes the first line. So, we now split all
10622 the lines from the stanza, and process them all.
10624 Sat Aug 24 14:47:56 CDT 2002 Adam Heath <doogie@debian.org>
10626 * archtable: Add i386-gnu0.3.
10627 * main/Makefile.in, utils/Makefile.in: Fix handling of static compiles,
10628 with regard to zlib.
10630 Sat Aug 24 14:41:45 CDT 2002 Adam Heath <doogie@debian.org>
10632 * lib/fields.c: Allow spaces between the end of a version, and the
10635 Sat Aug 24 14:16:13 CDT 2002 Adam Heath <doogie@debian.org>
10637 * lib/archives.c: Fix segfault when --auto-deconfigure is given. This is
10638 causes because the deconfigure list is allocated in an obstack, but
10639 then freed with normal free().
10641 Thu Aug 22 23:37:45 CDT 2002 Adam Heath <doogie@debian.org>
10643 * lib/database.c, lib/parse.c, lib/parsehelp.c, main/main.c: Fix several
10644 read pass buffer bugs, and a memleak.
10646 Thu Aug 22 23:25:23 CDT 2002 Adam Heath <doogie@debian.org>
10648 * lib/nfmalloc.c: Fix read past buffer in lib/nfmalloc.c.
10650 Thu Aug 22 23:16:02 CDT 2002 Adam Heath <doogie@debian.org>
10652 * utils/md5sum.c: Handle directories better in md5sum.
10654 Thu Aug 22 23:06:39 CDT 2002 Adam Heath <doogie@debian.org>
10656 * scripts/dpkg-scanpackages.pl: Fix extraction of md5sum in
10659 Thu Aug 22 23:01:53 CDT 2002 Adam Heath <doogie@debian.org>
10661 * utils/md5sum.c: Fix segfault in md5sum if the file being checked
10664 Thu Aug 22 22:59:54 CDT 2002 Adam Heath <doogie@debian.org>
10666 * version-nr, debian/changelog: Modified for 1.10.5.
10668 Sun Jul 14 15:10:22 CDT 2002 Adam Heath <doogie@debian.org>
10670 * configure.in: Remove -ffunction-sections and -fdata-sections.
10671 * Makefile.conf.in, Makefile.in, debian/rules: Install archtable into
10674 Sun Jul 14 15:09:24 CDT 2002 Adam Heath <doogie@debian.org>
10676 * version-nr, debian/changelog: Updated for 1.10.4 version.
10678 Thu Jul 11 23:33:13 CDT 2002 Adam Heath <doogie@debian.org>
10680 * debian/control: dselect replaces dpkg << 1.10.3, as we moved the
10681 dselect config file and manpages from dpkg.deb to dselect.deb.
10683 Thu Jul 11 22:26:30 CDT 2002 Adam Heath <doogie@debian.org>
10685 * utils/start-stop-daemon.c: If in --test mode, and --stop is given,
10686 increment n_killed, so that start-stop-daemon returns the proper exit
10687 value. Thanks Thomas Morin <thomas.morin@enst-bretagne.fr>.
10689 Thu Jul 11 22:19:12 CDT 2002 Adam Heath <doogie@debian.org>
10691 * utils/start-stop-daemon.c: Fix test inversion in start-stop-daemon,
10692 when checking the pid given in a pid file. Thanks Thomas Morin
10693 <thomas.morin@enst-bretagne.fr>.
10695 Sun Jul 7 14:54:44 CDT 2002 Adam Heath <doogie@debian.org>
10697 * debian/rules: Fix install location of /usr/lib/dpkg/methods.
10699 Sat Jul 6 23:51:03 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
10701 * debian/rules: Move dselect.cfg to dselect package.
10703 Thu Jul 4 21:31:57 CDT 2002 Adam Heath <doogie@debian.org>
10705 * debian/rules: Install debian/dselect.conffiles.
10707 Thu Jul 4 19:33:20 CDT 2002 Adam Heath <doogie@debian.org>
10709 * scripts/dpkg-source.pl: Remove -Z from patch call, as it makes patch
10710 warn about missing timestamps.
10712 Tue Jul 2 12:11:59 CDT 2002 Adam Heath <doogie@debian.org>
10714 * debian/changelog, debian/control: dpkg + dpkg-static conflict dpkg-dev
10715 << 1.9, as dpkg-source 1.9 doesn't work with md5sum 1.10.
10717 Tue Jul 2 12:29:52 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
10720 + lib/myopt: check for malloc failure and actually look in $HOME for
10721 file instead of looking in confdir twice
10723 Tue Jul 2 10:20:40 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
10725 * debian/rules: cp instead of mv since we need files for both dpkg
10726 and dpkg-static (ugh)
10728 Tue Jul 2 10:08:18 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
10730 * debian/rules: Remove autom4te.cache in clean target
10732 Tue Jul 2 09:52:41 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
10734 * debian/rules: move dpkg.cfg.5 and dselect.cfg.5 into dpkg package
10736 Tue Jul 2 09:46:01 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
10739 + scripts/dpkg-genchanges.pl: Add ~ to the list of legal characters
10740 in a package filename
10741 + scripts/dpkg-checkbuilddeps.pl: remove forced check for build-essential,
10742 we should not hardcode Debian policy into dpkg
10744 Tue Jul 2 09:41:44 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
10746 * debian/control: sync dpkg and dpkg-static dependencies, fix double
10749 Tue Jul 2 01:04:29 CDT 2002 Adam Heath <doogie@debian.org>
10751 * debian/rules: Don't always call autoheader during build.
10753 Mon Jul 1 14:45:11 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
10755 * debian/control: add conflict with dpkg-iasearch which intruded on
10756 our namespace and replace manpages-de which includes one of our manpages
10758 Fri Jun 21 21:53:24 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
10760 * debian/dpkg.postinst: Merge patch from Josip Rodin to improve
10761 the move from /usr/info to /usr/share/info
10763 Fri Jun 21 21:11:02 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
10765 * po/ca.po: Updated
10767 Fri Jun 21 19:09:38 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
10769 * scripts/dpkg-genchanges.pl: Handle substvars in the Binary field
10771 Thu Jun 20 00:54:54 CDT 2002 Adam Heath <doogie@debian.org>
10773 * scripts/install-info.pl: Fix broken merge from 1.9 branch.
10775 Sat Jun 1 23:22:19 CDT 2002 Adam Heath <doogie@debian.org>
10777 * dpkg-deb/main.c, main/main.c, main/query.c, dselect/main.cc,
10778 split/main.c: Revert last modification. It'll be fixed properly for
10781 Sat Jun 1 16:45:13 CDT 2002 Adam Heath <doogie@debian.org>
10783 * dpkg-deb/main.c, main/main.c, main/query.c, dselect/main.cc,
10784 split/main.c: Fixed printversion(), to allow translations to be done
10787 Sat Jun 1 16:17:59 CDT 2002 Adam Heath <doogie@debian.org>
10789 * po/pt_BR.po: Updated.
10791 Sat Jun 1 22:04:02 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
10793 * po/ru.po: Updated
10795 Fri May 31 21:46:03 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
10797 * man/fr/dpkg-scanpackages.8, man/fr/dpkg-source.1, man/fr/dpkg.8,
10798 man/fr/start-stop-daemon.8, man/fr/deb-control.5: Updated
10800 Mon May 27 21:13:00 CDT 2002 Adam Heath <doogie@debian.org>
10802 * po/de.po, po/fr.po, po/gl.po: Updated.
10804 Sun May 26 18:50:10 CET 2002 Peter Karlsson <peterk@debian.org>
10806 * man/sv/dpkg.8, man/sv/start-stop-daemon.8, po/sv.po: Updated Swedish
10809 Sun May 26 01:35:34 CDT 2002 Adam Heath <doogie@debian.org>
10811 * lib/tarfn.c: dpkg now reorders symlinks when extracting debs. However,
10812 this is also still done when building debs. After a stable release of
10813 Debian has occurred with this modified dpkg, the reordering when
10814 building can be removed.
10816 Sun May 26 01:28:00 CDT 2002 Adam Heath <doogie@debian.org>
10818 * debian/dpkg.postinst: Fix /usr/info/dir moving/symlink code.
10820 Sun May 26 01:10:24 CDT 2002 Adam Heath <doogie@debian.org>
10822 * Fix some mis-merging of the 1.9 branch:
10823 * debian/rules, debian/dpkg.conffiles: dselect was split to a separate
10824 deb, no longer install dselect.cfg into dpkg.deb. Also, dpkg.cfg is
10825 no longer a conffile.
10827 Sat May 25 22:45:06 CDT 2002 Adam Heath <doogie@debian.org>
10829 * Merge changes from 1.9.20 and 1.9.21.
10830 * utils/start-stop-daemon.8: Fix some nroff formatting errors
10831 ? po.ru.po: Fix mistranslation
10832 * main/dpkg.8: document --force-confmiss, improve description for
10833 --force-conf{old,new}
10834 * lib/mlib.c: Detect truncated debs, and abort the unpack.
10835 * debian/rules: install dpkg.cfg in docdir, install dpkg.postrm. Also
10836 install dselect.cfg in /etc/dpkg.
10837 * debian/dpkg.cfg: add force-overwrite
10838 * debian/dpkg.postrm: new file
10839 ? po/sv.po: Removed fuzzy translation.
10840 ? po/sv.po: Fixed broken c-format escapes which would make some error
10841 messages display incorrectly.
10842 * debian/control: Fix build-depends on zlib1g-dev to >= 1:1.1.3-19.1.
10843 * debian/changelog: The missing 1.9 entries.
10845 Fri May 24 22:38:01 CDT 2002 Adam Heath <doogie@debian.org>
10847 * scripts/dpkg-scanpackages.8: Add dpkg-scansources to
10848 dpkg-scanpackages(8).
10850 Fri May 24 22:14:04 CDT 2002 Adam Heath <doogie@debian.org>
10852 * scripts/dpkg-source.1: Fix typo in dpkg-source(1), s/-su/-sU/.
10854 Fri May 24 22:11:53 CDT 2002 Adam Heath <doogie@debian.org>
10856 * scripts/dpkg-source.1: Fix documentation of -v<version> for
10857 dpkg-parsechangelog, removing the requirement that the version has to
10858 be in the changelog.
10860 Fri May 24 22:06:48 CDT 2002 Adam Heath <doogie@debian.org>
10862 * scripts/dpkg-gencontrol.pl: Close the old debian/files file,
10863 before doing a rename.
10865 Fri May 24 22:00:01 CDT 2002 Adam Heath <doogie@debian.org>
10867 * scripts/dpkg-buildpackage.sh, scripts/dpkg-source.pl,
10868 scripts/dpkg-source.1: Add -I<filename> to dpkg-buildpackage and
10869 dpkg-source, to excludes files from tar, when building a native
10872 Fri May 24 21:49:52 CDT 2002 Adam Heath <doogie@debian.org>
10874 * scripts/controllib.pl: Properly count recursive expansion of variables,
10875 instead of just counting all variable expansions.
10877 Fri May 24 21:20:04 CDT 2002 Adam Heath <doogie@debian.org>
10879 * scripts/cl-debian.pl: Recognize emergency as valid in changelogs.
10881 Fri May 24 21:12:36 CDT 2002 Adam Heath <doogie@debian.org>
10883 * scripts/dpkg-architecture.pl: s/build on/built on/; same for
10886 Fri May 24 21:03:43 CDT 2002 Adam Heath <doogie@debian.org>
10888 * scripts/dpkg-scanpackages.pl: Give proper case for Source and
10891 Fri May 24 01:10:45 CDT 2002 Adam Heath <doogie@debian.org>
10893 * scripts/dpkg-source.pl, debian/changelog: Match fields case
10894 insensitively in debian/control.
10896 Fri May 24 00:22:39 CDT 2002 Adam Heath <doogie@debian.org>
10898 * scripts/dpkg-source.pl: Clean up after ctrl-c is received.
10900 Fri May 24 00:11:01 CDT 2002 Adam Heath <doogie@debian.org>
10902 * include/dpkg.h.in, include/myopt.h, lib/Makefile.in, lib/myopt.c,
10903 main/main.c main/query.c dpkg-deb/main.c split/main.c dselect/main.cc,
10904 lib/startup.c: New functions, standard_startup, standard_shutdown, that
10905 contain the most common functions that all dpkg binaries call.
10907 Thu May 23 23:23:03 CDT 2002 Adam Heath <doogie@debian.org>
10909 * lib/lock.c: Use setcloexec wrapper instead of calling fcntl directly.
10911 Thu May 23 15:21:09 CDT 2002 Adam Heath <doogie@debian.org>
10913 * TODO: Add items for --reconfigure and --call-maint-script.
10915 Thu May 23 11:16:28 CDT 2002 Adam Heath <doogie@debian.org>
10917 * lib/lock.c: Always set CLOEXEC on the lock fd.
10919 Wed May 22 13:03:41 CDT 2002 Adam Heath <doogie@debian.org>
10921 * lib/Makefile.in: Remove hash.c from SOURCES, as it is a test file.
10923 Tue May 21 17:20:12 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
10925 * debian/dpkg.postinst: remove compat stuff for ancient dpkg versions.
10926 This also enables the /usr/info/dir move code which was never reached
10928 Mon May 20 00:58:17 CDT 2002 Adam Heath <doogie@debian.org>
10930 * main/enquiry.c, main/main.h, utils/md5sum.c, split/dpkg-split.h,
10931 split/split.c, lib/Makefile.in, include/dpkg.h.in, dpkg-deb/build.c,
10932 dpkg-deb/dpkg-deb.h: Even more gcc warning fixes.
10934 Sun May 19 23:39:02 CDT 2002 Adam Heath <doogie@debian.org>
10936 * <all Makefile.in>, Makefile.conf.in: Add rules to Makefile.conf, to
10937 rebuild Makefile if $(srcdir)/Makefile.in is modified. This also
10938 required adding a 'default' target to all Makefiles.
10940 Sun, 19 May 2002 22:56:41 -0500 Adam Heath <doogie@debian.org>
10942 * utils/md5sum.c: Fairly heavy work(net no lines changed), to fix
10943 longjmp() clashing variable warnings. Also, a few miscellaneous gcc
10946 Sun May 19 20:25:05 CDT 2002 Adam Heath <doogie@debian.org>
10948 * lib/showpkg.c, lib/utils.c, optlib/long-options.c, main/archives.c,
10949 main/configure.c, main/main.c, main/main.h, main/query.c,
10950 optlib/long-options.c, lib/showpkg.c, lib/utils.c: Several more gcc
10953 Sun May 19 18:48:39 CDT 2002 Adam Heath <doogie@debian.org>
10955 * debian/rules: Fix overzealous running of autoheader for every build.
10957 Sun May 19 06:05:24 CDT 2002 Adam Heath <doogie@debian.org>
10959 * configure.in: Split out the -W*-prototype warnings into separate
10962 Sun May 19 06:01:31 CDT 2002 Adam Heath <doogie@debian.org>
10964 * configure.in, automake/dpkg.m4: Make a new macro, DPKG_C_GCC_ATTRIBUTE.
10966 Sun May 19 05:57:24 CDT 2002 Adam Heath <doogie@debian.org>
10968 * automake/dpkg.m4. Gah, I hate gcc. AC_TRY_COMPILE() produces code
10969 of the form 'int main() { ... }'. When -Werror -Wstrict-prototypes is
10970 given to gcc, it thinks the above code snippet is an error, and aborts.
10971 This was making DPKG_C_GCC_TRY_WARNS disable some -W options. So, I
10972 no longer use AC_TRY_COMPILE.
10974 Sun May 19 04:56:51 CDT 2002 Adam Heath <doogie@debian.org>
10976 * debian/rules: Oops. The command to run is aclocal, not aclocal.m4.
10978 Sun May 19 04:45:41 CDT 2002 Adam Heath <doogie@debian.org>
10980 * configure.in, config.h.bot(removed), acconfig.h(removed): The latest
10981 autoheader/autoconf combination allows us to do everything in
10982 configure.in. config.h.bot is now in AH_BOTTOM(), and the
10983 descriptions for all the defines(from acconfig.h) are now part of
10986 Sun May 19 04:41:07 CDT 2002 Adam Heath <doogie@debian.org>
10988 * debian/rules: All the hard-coded calls to scripts/dpkg-gencontrol.pl
10989 are now down thru a variable, GENCONTROL.
10991 Sun May 19 04:26:58 CDT 2002 Adam Heath <doogie@debian.org>
10993 * debian/rules: Remove all calls to $(shell pwd), and use $(CURDIR).
10994 Also, `pwd` is removed. There was a var, DIR := $(shell pwd);
10995 instances of this var were also replaced with CURDIR.
10997 Sun May 19 04:18:46 CDT 2002 Adam Heath <doogie@debian.org>
10999 * debian/rules: If automake/*.m4 is modified, rebuild aclocal.m4. If
11000 aclocal.m4 or configure.in are modified, rebuild configure.in.
11001 config.h.in gets rebuilt if configure.in is modified. And, lastly,
11002 configure is rerun, if configure or config.h.in is modified.
11004 Sun May 19 04:09:25 CDT 2002 Adam Heath <doogie@debian.org>
11006 * debian/rules: Fix targets, so that if configure fails, but actually
11007 succeeds in creating config.status(as might happen if one has a
11008 c-style comment in configure.in, and the shell trys running /foo), then
11009 the build will actually fail correctly.
11011 Sun May 19 02:31:11 CDT 2002 Adam Heath <doogie@debian.org>
11013 * acconfig.h: Oops. Forgot to add #undef HAVE_GNUC25_UNUSED.
11015 Sun May 19 02:31:11 CDT 2002 Adam Heath <doogie@debian.org>
11017 * config.h.bot, configure.in, optlib/getopt.c: Define an UNUSED macro,
11018 for __attribute__((unused)).
11020 Sun May 19 02:31:11 CDT 2002 Adam Heath <doogie@debian.org>
11022 * optlib/error.h, optlib/getopt.c, utils/start-stop-daemon.c: Use
11023 the configure detected gcc __attribute__ macros, instead of
11026 Thu May 16 19:09:48 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
11028 * po/da.po: New version from Claus Hindsgaul <claus_h@image.dk>
11030 Mon May 13 22:44:48 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
11032 * man/en/dpkg.8.sgml: document --force-confmiss and --force-bad-verify
11034 Mon May 6 16:26:51 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
11036 * lots-a-files: update email address for Ian Jackson
11038 Sun May 5 22:27:50 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
11040 * configure.in: expand all paths before doing substitution
11042 Sun May 5 17:42:21 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
11044 * Makefile.conf.in: use @PACKAGE@ for dpkgconfdir as well
11045 * man/paths.ent.in: new file
11046 * configure.in: generate man/paths.ent
11048 Sun Apr 21 12:23:40 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
11050 * include/dpkg.h.in: add DIFF #define
11051 * main/configure.c: use it
11053 Sun Apr 14 16:13:16 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
11055 * man/en/deb-old.5.sgml: DocBook version of deb-old manpage
11056 * man/en/cleanup-info.8.sgml: DocBook version of cleanup-info manpage
11057 * man/en/dpkg-checkbuilddeps.1.sgml: DocBook version of dpkg-checkbuilds
11060 Sun Apr 14 00:49:09 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
11062 * scripts/controlllib.pl: accept multilpe consecutive empty lines
11064 Sat Apr 13 22:59:25 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
11066 * man/en/deb-control.5.sgml: DocBook version of deb-control manpage
11068 Sat Apr 13 18:07:48 CET 2002 peter karlsson <peterk@debian.org>
11070 * po/sv.po: Removed fuzzy translation.
11072 Sat Apr 13 18:34:09 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
11074 * man/en/dselect.8.sgml: DocBook version of dselect manpage
11075 * man/en/dselect.cfg.5.sgml: DocBook version of dselect.cfg manpage
11076 * man/en/dpkg.cfg.5.sgml: DocBook version of dpkg.cfg manpage
11077 * man/en/deb.5.sgml: DocBook version of deb manpage
11079 Fri Apr 12 18:46:16 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
11081 * man/en/dpkg.8.sgml: DocBook version of dpkg manpage
11083 Wed Apr 10 00:39:58 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
11085 * configure.in: use AC_SYS_LARGEFILE and bump autoconf requirement to 2.50
11086 since 2.13 does not include AC_SYS_LARGEFILE
11087 * utils/md5sum.h: include config.h earlier so we pick up the LFS flags
11088 before including the system includefiles
11089 * scripts/dpkg-source.1: fix typo (shlib instead of shlibs)
11091 Mon Apr 1 18:57:02 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
11093 * dselect/pkgdepcon.cc: treat enhances like suggests in
11094 packagelist::resolvedepcon()
11096 Mon Mar 11 23:22:37 CST 2002 Adam Heath <doogie@debian.org>
11098 * configure.in: Bad Wichert. Always modify configure.in when adding
11099 subdirs(add pt_BR).
11101 Fri Mar 1 23:51:06 CST 2002 Adam Heath <doogie@debian.org>
11103 * Makefile.in: Allow for make -j to work thru the top-level targets.
11104 There are problems, however, as the system will try to compile the
11105 programs before libdpkg is done.
11107 Fri Mar 1 23:27:16 CST 2002 Adam Heath <doogie@debian.org>
11109 * main/help.c, debian/changelog: Fix segfault with getenv("PATH") returns
11112 Fri Mar 1 23:22:55 CST 2002 Adam Heath <doogie@debian.org>
11114 * configure.in: Remove old doc/*/Makefile. Bad Wichert.
11116 Fri Mar 1 23:21:35 CST 2002 Adam Heath <doogie@debian.org>
11118 * po/pt_BR.po: Fix broken translations.
11120 Mon Feb 25 15:22:34 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11122 * scripts/dpkg-gencontrol.pl: Fix test for incorrect packagename
11125 Sat Feb 16 15:14:30 CET 2002 peter karlsson <peterk@debian.org>
11127 * man/sv/deb-control.5, deb-old.5, deb.5, dpkg-split.8,
11128 start-stop-daemon.8: Fixed CVS revision pointers after move and
11129 updated translations to match latest versions.
11130 * man/sv/dpkg.cfg.5, man/sv/dselect.cfg.5: Translated new files.
11131 * man/en/dselect.cfg.5: Fixed numerous copy'n'paste errors.
11133 Sun Feb 10 01:40:52 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11135 * utils/start-stop-daemon.c: add FreeBSD support
11137 Sun Feb 10 01:31:57 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11139 * man/en/dselect.cfg.5, man/en/dpkg.cfg.5: new files
11140 * man/en/Makefile.in: install new manpages
11142 Sun Feb 10 01:16:58 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11144 * scripts/update-alternatives.pl: Improve working of --config output
11146 Thu Feb 7 15:27:35 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11148 * main/processarc.c: copy origin and bugs info into status file
11150 Thu Feb 7 00:38:42 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11152 * po/pt_BR.po: Fix bogosity in previous update
11154 Thu Feb 7 00:28:35 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11156 * scripts/update-alternatives.pl: fix logic error, alternatives are
11157 now correctly restored to auto when removing a manually selected
11160 Wed Feb 6 12:29:18 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11162 * dselect/method.cc: check fgetc() for EOF return so we don't spin
11163 if we can't read input
11165 Sun Feb 3 22:21:08 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11167 * po/fr.po: Updated
11169 Sun Feb 3 20:44:20 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11171 * po/pt_BR.po: Updated
11173 Sun Feb 3 01:50:02 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11175 * doc/reference.sgml: new file
11177 Sat Feb 2 23:00:25 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11179 * More imports from v1_9
11180 * debian/changelog: add changes from 1.9.18 and 1.9.19
11181 * debian/dpkg.conffiles: Mark /etc/alternatives/README as a conffile.
11182 * debian/control: Changed maintainer to debian-dpkg@lists and add Uploaders
11183 * main/processarc.c: Fix MD5Sum corruption when upgrading a package, and
11184 the width of the ASCII representation of the file system increased by
11185 one, thereby overwriting the start of the MD5Sum field. This may also
11186 fix a segfault in certain cases.
11188 Sat Feb 2 22:59:06 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11190 * scripts/install-info.pl: Continue to read all data from a pipe, until
11193 Sat Feb 2 22:52:50 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11195 * scripts/dpkg-gencontrol: Make dpkg-gencontrol not warn about Uploaders.
11197 Sat Feb 2 18:14:24 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11199 * man/Makefile.in: add pt_BR to SUBDIRS
11200 * man/pt_BR/Makefile.in, man/pt_BR/update-alternatives.8,
11201 man/pt_BR/.cvsignore: new files
11203 Sat Feb 2 16:47:41 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11205 * Makefile.in: add man to subdirs
11206 * man/*: new directory with all manpages
11208 Sat Feb 2 16:23:43 CET 2002 Adam Heath <doogie@debian.org>
11210 * po/da.po: Updated
11212 Sat Feb 2 00:18:04 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11214 * automake/dpkg.m4: add DPKG_CHECK_DEFINE
11215 * configure.in: test for TIOCNOTTY in sys/ioctl.h
11216 * utils/start-stop-daemon.c: move tty change outside OS specific ifdef
11217 and use the new TIOCNOTTY test instead
11219 Fri Feb 1 19:10:02 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11221 * po/ca.po: New Catalan translation
11222 * configure.in: Add ca to LINGUAS
11224 Fri Feb 1 17:37:24 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11226 * configure.in: add test for setsid
11227 * utils/start-stop-daemon.c: use setsid if it exists and only use
11228 setpgid if it does not exist
11230 Fri Feb 1 16:41:23 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11232 * utils/start-stop-daemon.c: Merge patch from Andres Voegele
11233 <voegelas@users.sourceforge.net> to add HP-UX support
11235 Fri Feb 1 13:58:59 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11237 * po/fr.po: updated.
11239 Thu Jan 31 21:34:14 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11241 * scripts/install-info.pl: add -c option to gzip invocation
11243 Thu Jan 31 14:56:38 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11245 * doc/fr/install-info.8, doc/fr/update-alternatives.8: updated with
11246 new version from Philippe Batailler
11248 Wed Jan 30 10:31:38 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11250 * scripts/update-alternative.pl: exit with non-zero exitcode when
11251 doing --display for a nonexisting alternative
11253 Wed Jan 30 00:29:07 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11255 * split/Makefile.in: create parts directory
11257 Wed Jan 30 00:24:36 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11259 * utils/start-stop-daemon.c: Fix tyop in help message
11261 Fri Jan 18 20:40:42 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11263 * scripts/dpkg-source.pl: Use -Z option for patch and set TZ to UTC0
11264 when calling diff. This gives us reliable timestamps in diffs.
11266 Thu Jan 3 15:49:14 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11268 * scripts/dpkg-genchanges.pl, scripts/dpkg-scanpackages.pl,
11269 scripts/dpkg-scansources.pl: Accept GNU md5sum style output
11271 Thu Jan 3 15:20:25 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11273 * utils/md5sum.c: add error handling to do_check
11275 Wed Jan 2 16:08:02 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11277 * scripts/dpkg-source.pl: Update default ignore expression to also
11278 match *~ and *.swp in subdirs.
11280 Wed Jan 2 15:00:26 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11282 * scripts/dpkg-checkbuilddeps.pl: use space seperated output instead
11285 Tue Jan 1 14:10:55 CET 2002 Wichert Akkerman <wakkerma@debian.org>
11287 * archtable, scripts/dpkg-architecture.pl: Update SuperH architecture
11289 Mon Dec 31 17:38:26 CET 2001 Wichert Akkerman <wakkerma@debian.org>
11291 * dselect/main.cc, main/main.c, main/query.c: no longer set LC_CTYPE
11292 to C since that breaks the braindead gettext.
11293 * dpkg-deb/build.c, lib/dbmodify.c, lib/vercmp.c, main/remove.c: Switch
11294 to using cisdigit and cisalpha.
11296 Mon Dec 31 17:28:10 CET 2001 Wichert Akkerman <wakkerma@debian.org>
11298 * lib/utils.c: new file with general utility functions. Add
11299 cisalpha() and cisdigit() functions, similar to the ctype is*
11300 ones but which only accept C locale
11301 * lib/Makefile.in: add utils.c
11302 * include/dpkg.h: add utils.c functions
11304 Mon Dec 31 15:25:46 CET 2001 Wichert Akkerman <wakkerma@debian.org>
11306 * scripts/dpkg-architecture.pl: fix syntax error
11308 Wed Nov 28 18:11:38 CST 2001 Adam Heath <doogie@debian.org>
11310 * scripts/dpkg-checkbuilddeps.{1,pl}: Make dpkg-checkbuilddeps always
11311 check for build-essential.
11313 Wed Nov 28 17:46:23 CST 2001 Adam Heath <doogie@debian.org>
11315 * debian/changelog: Note that the dselect.deb split closes a bug.
11317 Wed Nov 28 17:40:52 CST 2001 Adam Heath <doogie@debian.org>
11319 * scripts/update-alternatives.{pl,8}: Apply patch from debian bug 120924,
11320 to give update-alternatives a --list command.
11322 Wed Nov 28 17:30:16 CST 2001 Adam Heath <doogie@debian.org>
11324 * utils/md5sum.c: When parsing stdin, md5sum now displays '-' as the
11325 filename, to match textutils md5sum.
11327 Wed Nov 28 17:20:28 CST 2001 Adam Heath <doogie@debian.org>
11329 * scripts/install-info.pl: Copy dir from backup if the file is empty
11332 Sat Nov 17 17:20:52 CET 2001 Wichert Akkerman <wakkerma@debian.org>
11334 * doc/sv/Makefile.in: install dpkg-query and dpkg-deb manpages
11336 Sat Nov 17 17:16:44 CET 2001 Wichert Akkerman <wakkerma@debian.org>
11338 * debian/control: add missing space in dpkg-doc description
11340 Sat Nov 17 15:57:57 CET 2001 peter karlsson <peterk@debian.org>
11342 * doc/sv/dpkg-query.8, dpkg-deb.1: Initial Swedish translation.
11343 dpkg.8: Translation fixups.
11344 * dpkg/dpkg-query.8: Corrected spelling.
11346 Thu Oct 25 16:56:06 JST 2001 Wichert Akkerman <wakkerma@debian.org>
11348 * po/{de,it,pt_BR,sv}.po: Fix translation with inconsistent printf
11351 Sun Oct 21 12:58:04 CDT 2001 Adam Heath <doogie@debian.org>
11353 * optlib/Makefile.in: Run ranlib after creating the library.
11355 Sun Oct 21 12:56:37 CDT 2001 Adam Heath <doogie@debian.org>
11357 * archtable, scripts/dpkg-architecture.pl: Add darwin. The source
11358 doesn't quite work yet on darwin however, as some of the changes are
11361 Sun Oct 21 03:57:08 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11363 * po/pl.po: Updated
11365 Wed Oct 17 12:34:19 CDT 2001 Adam Heath <doogie@debian.org>
11367 * Merge 1.9.17 branch:
11368 * debian/rules: remove update-rc.d from the package
11369 * debian/control: update conflict with sysvinit to deal with moved
11372 Tue Oct 16 13:09:21 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11374 * po/pl.po: Updated
11376 Sun Oct 14 15:04:24 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11378 * po/da.po: Updated
11380 Mon Oct 8 19:51:36 CDT 2001 Adam Heath <doogie@debian.org>
11382 * main/main.c: Turn setstatuspipe into a generic setpipe, in preparation
11385 Mon Oct 8 19:48:28 CDT 2001 Adam Heath <doogie@debian.org>
11387 * main/main.c: Make sure the integer passed to --result-fd is correct
11388 before manipulating the pointers(we checked after we manipulated
11391 Sun Oct 7 22:23:54 CDT 2001 Adam Heath <doogie@debian.org>
11393 * Makefile.in: Remove dulicate inclusion of utils in SUBDIRS.
11395 Sun Oct 7 19:38:56 CDT 2001 Adam Heath <doogie@debian.org>
11397 * scripts/install-info.pl: oops. We weren't adding '\n' when printing
11398 out the reformated info text.
11400 Sun Oct 7 05:00:02 CDT 2001 Adam Heath <doogie@debian.org>
11402 * scripts/install-info.pl: Don't print out the info entry every time we
11405 Sun Oct 7 03:12:35 CDT 2001 Adam Heath <doogie@debian.org>
11407 * debian/control: Several fixes:
11408 * dpkg-static needs the same set of Depends(and others) lines as dpkg.
11409 * Modify the dpkg-static description to note that it's a static
11411 * Bump the conflicts on sysvinit to 2.82-1, as that is the version
11412 that actually has the proper replaces line.
11413 * debian/rules: dpkg-static was actually being built as dpkg.deb.
11415 Thu Sep 20 17:06:48 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11417 * debian/rules: strip enoent as well
11419 Sat Sep 15 20:19:57 CDT 2001 Adam Heath <doogie@debian.org>
11421 * scripts/install-info.pl: Several fixes:
11422 * Move /usr/info/dir to /usr/share/info/dir.
11423 * Improve message when locking and /usr/share/info/dir doesn't exist.
11424 * Use /var/backups/infodir.bak if the above doesn't exist.
11425 * Allow for relative filenames, and add a --remove-exactly option.
11426 * Use section from the .info file if --section is not given.
11427 * Include current filename in error messages.
11428 * Format /usr/share/info/dir entries to uniform width.
11429 * --calign|--align|--maxwidth are now ignored.
11431 Wed Sep 12 18:45:57 CDT 2001 Adam Heath <doogie@debian.org>
11433 Fixes for building of dpkg-static.deb.
11434 * Can't build both dpkg.deb and dpkg-static.deb in single run, because
11435 /etc is moved from $(INSTALL_TMP), instead of copied.
11436 * dpkg-static.deb is added to debian/files, even if it isn't created.
11437 * dpkg-static.tar.gz is added to debian/files, even if it doesn't exist.
11439 Wed Sep 12 17:28:57 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11441 * dpkg-deb/main.c: Fix unterminated line in usage text
11443 Mon Sep 10 12:57:21 PDT 2001 Wichert Akkerman <wakkerma@debian.org>
11445 * dpkg-deb/dpkg-deb.h: add parseformat prototype
11446 * dpkg-deb/main.c: add parseformat and show options, change layout
11447 for usage info, remove copyright from version output and refer to
11448 the dpkg --license option instead
11449 * dpkg-deb/info.c: implement do_show
11451 Mon Sep 10 12:41:14 PDT 2001 Wichert Akkerman <wakkerma@debian.org>
11453 * main/showpkg.c: move to lib/ so multiple tools can share it
11454 * main/Makefile.in: remove showpkg.c
11455 * lib/Makefile.in: add showpkg.c
11456 * include/dpkg-db.h: add showpkg.c prototypes
11457 * main/query.h: obsolete now, removed
11459 Mon Sep 10 12:07:20 PDT 2001 Wichert Akkerman <wakkerma@debian.org>
11461 * dpkg-deb/info.c: count how many control components are missing
11463 * main/processarc.c: change two more 0s into NULLs
11465 Mon Sep 10 10:59:53 PDT 2001 Wichert Akkerman <wakkerma@debian.org>
11467 * include/parsedump.h, lib/dump.c: add flags to fwritefunction.
11468 Implement fw_printheader to toggle printing of field headers.
11469 * main/showpkg.c: modify show1package() to no longer remove the
11470 fieldname and newline itself but make wcall not print it instead
11472 Mon Sep 10 09:44:54 PDT 2001 Wichert Akkerman <wakkerma@debian.org>
11474 * lib/dump.c: make w_booleandefno get the fieldname from the fip
11475 instead of hardcoding Essential
11476 * lib/fields.c: don't harcode `essential' fieldname in f_boolean
11477 convert_string call
11479 Sun Aug 19 15:20:53 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11481 * utils/start-stop-daemon.c: do not start a command if the pidfile
11482 option is used and the pid in that file is still running
11484 Sun Aug 19 00:25:12 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11486 * doc/fr/dpkg-{query,split,statoverride}.8: added
11487 * doc/fr/*: Updated
11489 Thu Aug 16 00:43:23 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11491 * po/fr.po: Updated
11493 Sat Aug 11 22:54:18 CEST 2001 peter karlsson <peterk@debian.org>
11495 * po/sv.po, doc/sv/dpkg.8: Updated Swedish translation.
11497 Wed Aug 1 17:31:23 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11499 * main/dpkg-query.8: added
11500 * main/Makefile.in, debian/rules: install dpkg-query.8
11502 Wed Aug 1 16:37:47 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11504 * main/dpkg.8: remove Linux references
11506 Wed Aug 1 15:35:32 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11508 * debian/copyright: mention we have copyright for 2001 as well
11509 * main/query.c: improve help and version texts
11510 * main/main.c: use DPKG define in printversion output
11512 Wed Aug 1 15:10:06 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11514 * main/query.c: fmt can't be const since we free it in the same function
11516 Tue Jul 31 12:26:41 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11518 * po/de.po: Updated
11519 * main/query.c: Fix help texts a bit to reflect that dpkg-query is
11521 * dselect/main.cc: Use `colour' consistently for printed texts.
11523 Fri Jul 27 04:21:51 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11525 * debian/control: fix typo in section for dpkg-doc, correct
11526 replaces for dselect and remove Linux references
11528 Fri Jul 27 04:05:55 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11530 * po/POTFILES.in: add main/query.c and main/showpkg.c
11532 Fri Jul 27 04:04:26 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11534 * po/da.po: Updated
11536 Fri Jul 27 03:54:34 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11538 * lib/parsedump.h: move to include/parsedump.h so dpkg-query can
11541 Fri Jul 27 03:52:33 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11543 * main/Makefile.in: changed things around to dpkg-query builds more
11546 Fri Jul 27 03:43:52 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11548 * main/query.c: remove -D from usage, we don't support it
11549 * main/showpkg.c: add support for field width specification
11551 Thu Jul 26 14:27:23 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11553 * scripts/Makefile.in, doc/fr/Makefile.in, doc/ja/Makefile.in,
11554 debian/rules: no longer install update-rc.d, it moved to the sysvinit
11556 * debian/control: Update sysvinit conflicts to version 2.80
11557 * doc/ja/update-rc.d.8, doc/fr/update-rc.d.8, scripts/update-rc.d.8,
11558 scripts/update-rc.d.pl: removed
11560 Thu Jul 26 13:52:43 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11562 * utils/start-stop-daemon.c: seems glibc has a completely non-standard
11563 return value for nice(2), so deal with that properly now so things also
11564 work on non-glibc systems.
11566 Tue Jul 24 19:07:43 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11568 * main/showpkg.c, main/query.h: new files
11569 * main/query.c: add support for show options
11571 Wed Jul 18 17:28:38 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11573 * main/Makefile.in, debian/rules: install dpkg-query as well
11575 Wed Jul 18 01:04:15 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11577 * doc/ru.po: Updated
11579 Tue Jul 17 16:53:12 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11581 * Merge changes from v1_9 branch
11582 + debian/changelog: add 1.9.15 and 1.9.16 releases
11583 + scripts/dpkg-source.pl:
11584 - Add handleformat sub to check if we can handle a dscformat
11585 - Revert dscformat to 1.0. Technically we changed a few things
11586 but older versions of dpkg-source did not handle minor updates
11587 to the dscformat. New policy is that minor updates (last digit
11588 changes) to the dscformat have to be fully backward and forward
11590 - restore test if tar exited with exited with a non-zero exitcode
11591 - remove a bunch of commented debug statements
11592 + main/help.c: fix narglist construction building and usage in do_script()
11594 Tue Jul 17 00:36:32 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11596 * dselect/dselect.8: document new search features
11598 Mon Jul 16 18:14:16 CEST 2001 peter karlsson <peterk@debian.org>
11600 * po/sv.po, doc/sv/deb.5, doc/sv/deb-old.5, doc/sv/dselect.8, doc/sv/dpkg.8:
11601 Swedish translation updates.
11603 Mon Jul 16 17:19:21 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11605 * dselect/basecmds.cc, dselect/dselect.h:
11606 + add checksearch and matchsearch functions to abstract searching algorithm
11607 + add displayerror member function
11608 * dselect/baselist.cc: use new checkserach and matchsearch functions to
11609 do the real search/matching
11610 * dselect/pkglist.cc, dselect/pkglist.h: implement checksearch and
11611 matchsearch using regular expressions
11613 Mon Jul 16 15:20:07 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11615 * main/main.c, main/query,c. dselect/main.cc: use C locale for LC_CTYPE
11616 so we can be sure packagename and version comparisons work as expected
11618 Mon Jul 16 14:10:18 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11620 * lib/vercmp.c: New verrevcmp() from Anthony Towns
11622 Mon Jul 16 13:27:44 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11624 * Merge a modified patch from Josip Rodin:
11625 + dselect/basecmds.cc: Improve some help texts and helpscreen keybindings
11626 + dselect/helpmsgs.src: Improve text
11628 Mon Jul 16 12:55:49 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11630 * utils/start-stop-daemon.c: Fix test for nice(2) failure
11632 Mon Jul 16 12:44:51 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11634 * dselect/dselect.h: make baselist::setheights() virtual
11635 * dselect/method.h: add setheights() member and fix protection
11636 * dselect/methlist.cc: override setheights() to make list_height 1
11637 higher then the default so we draw the list correctly
11638 * dselect/methkeys.cc: make Q do abort so we are consistent with the pkglist
11640 Mon Jul 16 01:50:58 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11642 * Merge a reworked version of a patch from Joey Hess
11643 + dselect/dselect.8: Document new colour options
11644 + dselect/basecmds.cc: properly draw the background using helpscreen_attr
11645 + dselect/baselist.cc: change drawing code to use new changeable colours
11646 + dselect/dselect.h: Add all the colour structures
11647 + dselect/main.cc: Parse --colour options
11649 Mon Jul 16 00:01:24 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11651 * dselect/baselist.cc: include unistd.h which is needed to get the
11652 ioctl prototype on Solaris
11654 Sun Jul 15 00:37:13 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11656 * debian/preinst: removed (we now use dpkg.preinst)
11658 + add dselect package
11659 + fix section of dpkg-doc
11660 * debian/dpkg.conffiles: remove dselect.cfg
11661 * debian/dselect.{conffiles,postinst,prerm}: added
11663 + add German to list of manpage translations
11664 + split out dselect into its own package
11665 + strip enoent and start-stop-daemon as well
11667 Sat Jul 14 23:35:57 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11669 * dselect/main.cc, dpkg/main.c: add per-user configuration file
11671 Sat Jul 14 01:38:27 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11673 * Merge dselect patch from Joey Hess
11674 + dselect/dselect.h: add manual_install prototype
11675 + dselect/pkgcmds.cc, dselect/pkgsublist.cc: modify kd_select() and
11676 repeatedly display() to set/unset manual_install so we can identify
11677 user-selected packages
11678 + dselect/pkglist.h: add dp_should priority
11679 + dselect/pkgdepcon.cc: modify resolvedepcon() to handle recommends
11680 and suggests differently
11682 Sat Jul 14 01:18:33 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11684 * doc/de/Makefile.in: fix syntax error
11686 Fri Jul 13 20:39:24 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11688 * doc/deb-old.5, doc/deb.5: remove emacs hints and Linux references
11689 * dpkg-deb/dpkg-deb.1: Fix typo
11690 * scripts/dpkg-name.1: Don't mention the non-existing dpkg(5)
11691 * dselect/dselect.8: Merged changes from Joost Kooij
11693 Fri Jul 13 00:54:24 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11695 * doc/de/Makefile.in, doc/de/md5sum.1: added
11696 * configure.in, doc/Makefile.in: Process German documentation
11698 Fri Jul 13 00:46:02 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11700 * po/de.po: New version
11702 Fri Jul 13 00:43:23 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11704 * scripts/dpkg-architecture.pl: improve documentation
11706 Mon May 21 03:48:29 CEST 2001 Marcus Brinkmann <brinkmd@debian.org>
11708 * scripts/dpkg-checkbuilddeps.pl: Call dpkg-architecture instead dpkg
11709 to determine the host architecture. Rename BUILD_ARCH to HOST_ARCH.
11711 Fri Jul 6 00:27:17 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11713 * scripts/dpkg-divert.8: Fix layout error in synopsis
11715 Mon Jul 2 00:00:04 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11717 * configure.in: add doc/ru/Makefile.in
11718 * debian/rules: don't pass CFLAGS to configure
11719 * dselect/pkgkeys.cc: make `n' do searchagain instead
11721 Sun Jul 1 16:12:30 CDT 2001 Adam Heath <doogie@debian.org>
11723 * main/archives.c: When a package is on hold, -E will not skip the same
11724 version when installing.
11726 Sat Jun 30 01:48:15 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11728 * doc/ru/*: Added Russian translations from Alexey Mahotkin
11729 <alexm@hsys.msk.ru>
11731 Mon Jun 25 03:31:55 CDT 2001 Adam Heath <doogie@debian.org>
11733 * Merged in changes from 1.9.11 to 1.9.14 branches.
11735 + scripts/dpkg-source.pl: Disable source package sanity checking.
11736 + scripts/dpkg-source.pl: make Uploaders optional.
11737 + scripts/controllib.pl: Set the default to convert warnerrors
11739 + scripts/dpkg-source.pl: Remove a warnable error if the orig.tar.gz
11741 + scripts/dpkg-source.pl: Handle symlinks in the tarball, and don't
11742 error out if found.
11743 + scripts/dpkg-source.pl: Add support for an Uploaders field, which is
11744 read from the first paragraph of debian/control, and propagated to
11745 the .dsc. This lists the people allowed to upload a package. If it
11746 is not set, then the value of the Maintainer is placed into this
11747 field of the .dsc. This bumps the .dsc format to 1.1.
11748 + scripts/dpkg-source.pl: Handle stating of truncated cpio filenames
11749 (100 char limit, bah)
11750 + scripts/dpkg-source.pl: Set LC_ALL before calling external programs,
11751 when we are going to parse their output.
11752 + scripts/dpkg-source.pl: Move the check for '\n' and '././@LongLink'
11753 before the check for leading './'.
11754 + dselect/main.cc: Handle window resize in main menu
11755 + scripts/dpkg-source.pl: Add a warnable error if the orig.tar.gz
11757 + scripts/dpkg-source.pl: Handle the case where a single directory
11758 exists in the orig.tar.gz, but it is NOT of the form <pkg>-<ver>.
11759 + scripts/dpkg-source.pl: Don't error out if the files in the tar
11761 + scripts/dpkg-source.pl, scripts/controllib.pl, scripts/dpkg-source.1,
11762 scripts/dpkg-buildpackage.sh: Add support for -W, which turns certain
11763 errors into warnings, and -E, which turns them back into errors again.
11764 + scripts/dpkg-source.pl: When the tarball doesn't contain directories,
11765 only display the warning once for each directory.
11766 + THANKS: Added Colin Watson. Also put in an email address for Colin
11768 + scripts/dpkg-source.pl: Grumble. Fix case where top-dir in
11769 orig.tar.gz was renamed to .orig.
11771 Fri Jun 22 19:26:41 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11773 * dselect/main.cc: Handle window resize in main menu
11775 Wed Jun 20 18:56:35 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11777 * main/help.c: actually use narglist in do_script()
11779 Wed Jun 20 11:28:25 CDT 2001 Adam Heath <doogie@debian.org>
11781 * Merged in changes from 1.9.10 to 1.9.11 branch.
11783 + scripts/dpkg-source.pl: Fix typo.
11784 + scripts/dpkg-buildpackage.sh: Option -a implies option -d.
11785 Set ARCH correctly to host architecture, rather than build arch.
11786 + scripts/dpkg-gencontrol.pl: Error if an illegal package name is used.
11787 + scripts/cl-debian.pl: Change list of allowed urgencies to: low, medium,
11788 high, and critcial.
11789 + scripts/dpkg-scanpackages.pl: warn instead of die when find returns
11790 an error(which happens if there is a dangling symlink, because we use
11792 + scripts/dpkg-source.pl: Apply patch from Colin Watson:
11793 * Reset SIGPIPE to DEFAULT when forking gzip.
11794 * set LANG to C before execing cpio, as we parse its output.
11795 * In checktarcpio() and checktarsane(), use the previously open pipes,
11796 instead of the opening files on disk(which was the old, ancient way).
11797 * Improve the output parsing of tar in checktarsane().
11798 + scripts/dpkg-source.pl: When both arch: all and arch: <arch> packages
11799 exist in debian/control, don't promote the source arch: to any, but
11800 only list all and <arch>.
11801 + scripts/dpkg-source.pl: Make it work with GNU md5sum.
11802 + scripts/dpkg-source.1: Document -nc for dpkg-buildpackage.
11803 + scripts/dpkg-genchanges.pl: Set the Architecture to 'source' only when
11804 doing source only uploads in the generated changes files.
11805 + scripts/dpkg-shlibdeps.pl: Fix infinite directory recursion thru
11807 + doc/deb.5: Changed see-also reference to deb-old(5).
11808 + scripts/{Makefile.in,dpkg-architecture.1}: Removed the manpage, and
11809 generate it from the script now.
11810 + scripts/dpkg-architecture.pl: Apply patch to correctly check the output
11812 + scripts/dpkg-checkbuilddeps.pl: Fix logic error that kept everything
11813 but Build-Deps from working.
11814 + scripts/dpkg-checkbuilddeps.pl: Trim trailing spaces from packages.
11816 Sat Jun 16 18:52:17 CDT 2001 Adam Heath <doogie@debian.org>
11818 * Merge changes from v1_9_10 tag:
11819 + scripts/update-alternatives.pl: Fix switching to auto mode if
11820 alternative symlink goes missing.
11821 + scripts/dpkg-source.pl: s/DEAD_JOE/DEADJOE/
11822 + scripts/dpkg-divert.pl: Fix cleanup of devert.tmp files.
11823 + scripts/dpkg-checkbuilddeps.pl: Fix [arch] parsing, and handle
11824 more variations of spaces.
11826 Sat Jun 16 22:04:04 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11828 * po/es.po: Updated
11830 Sat Jun 09 10:48:14 CEST 2001 peter karlsson <peterk@debian.org>
11832 * po/sv.po, doc/sv/dpkg.8: Updated
11834 Sat Jun 9 00:28:11 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11836 * debian/changelog: import 1.9 releases
11837 * debian/control: add sgmltools-lite to Build-Depends
11838 * Merge changes from v19 branch:
11839 + archtable: add i386-gnu0.2
11840 + dpkg-deb/extract.c: More %z format fixes.
11841 + dselect/method.cc: don't include curses.h since dselect.h already
11843 + dselect/method.cc: handle interrupted getc in falliblesubprocess()
11845 + include/dpkg.h.in: add setcloexec declaration
11846 + lib/mlib.c: add setcloexec(), utility function to set FD_CLOEXEC flag
11847 + lib/dbmodify.c: use setcloexec() on status file
11848 + main/filesdb.c: use setcloexec for diversions and statoverride files
11849 + main/archives.c: add functions to initialize and destroy the obstack,
11850 ensure obstack is initialized in try_remove_can() as well
11851 + lib/parsehelp.c: Correctly handle trailing spaces in versions.
11852 + main/dpkg.8: it's /etc/dpkg/dpkg.cfg, not /etc/dpkg.cfg
11853 + main/dpkg.8: Improve description of --force-confdef
11854 + main/help.c: don't ignore failed maintainer scripts
11855 + scripts/dpkg-architecture.pl: spell dependency consistently
11856 + scripts/dpkg-checkbuilddeps.1: spell dependency consistently
11857 + scripts/dpkg-source.1: spell dependency consistently
11858 + scripts/dpkg-buildpackage: fix pausing logic, and use $changedby as the
11860 + scripts/dpkg-checkbuilddeps.pl: Handle varied use of spaces.
11861 + scripts/dpkg-checkbuilddeps.pl: handle multi-line fields
11862 + scripts/dpkg-divert.pl: fix test for illegal packagename
11863 + split/info.c: Change format string, to handle size_t.
11864 + utils/start-stop-daemon.c: consistently use pid_t and uid_t
11865 + debian/control: use a Conflict for sysvinit instead of a Depends
11867 Fri Jun 8 19:42:43 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11869 * po/fr.po: updated
11871 Sat Jun 2 15:09:01 CDT 2001 Adam Heath <doogie@debian.org>
11873 * scripts/dpkg-architecture.pl: Remove bogus check of $!.
11875 Sat Jun 2 15:04:09 CDT 2001 Adam Heath <doogie@debian.org>
11877 * scripts/dpkg-source.pl: Reset SIGPIPE back to a default handler, for
11878 callers that have it masked off.
11880 Sat Jun 2 14:48:35 CDT 2001 Adam Heath <doogie@debian.org>
11882 * scripts/dpkg-checkbuilddeps.pl: Handle varied use of spaces.
11884 Sat Jun 2 14:09:28 CDT 2001 Adam Heath <doogie@debian.org>
11886 * lib/parsehelp.c: Remove leading and trailing spaces from versions, and
11887 check if there are embedded spaces in versions.
11889 Tue May 29 07:27:31 CEST 2001 peter karlsson <peterk@debian.org>
11891 * po/sv.po: Updated.
11893 Mon May 28 22:54:35 CDT 2001 Adam Heath <doogie@debian.org>
11895 * configure.in: AC_REQUIRE is not valid outside of AC_DEFUN.
11896 * automake/dpkg.m4: DPKG_CACHED_TRY_COMPILE was defined with both
11897 AC_DEFUN() AND define().
11899 Mon May 28 19:07:15 CDT 2001 Adam Heath <doogie@debian.org>
11901 * debian/changelog: Update for 1.9.7.
11903 Mon May 28 19:02:52 CDT 2001 Adam Heath <doogie@debian.org>
11905 * scripts/dpkg-divert.pl: Fix cleanup of .dpkg-devert.tmp files.
11907 Mon May 28 16:40:19 CDT 2001 Adam Heath <doogie@debian.org>
11909 * po/it.po: Updated.
11911 Mon May 28 16:27:43 CDT 2001 Adam Heath <doogie@debian.org>
11913 * main/archives.c: If extracting a directory, and it doesn't already
11914 exist on disk, and is shared with another package, don't error cause an
11917 Mon May 28 16:23:26 CDT 2001 Adam Heath <doogie@debian.org>
11919 * doc/ja/822-date.1, doc/ja/Makefile.in, doc/ja/cleanup-info.8,
11920 doc/ja/deb-control.5, doc/ja/deb-old.5, doc/ja/deb.5,
11921 doc/ja/dpkg-checkbuilddeps.1, doc/ja/dpkg-deb.1, doc/ja/dpkg-divert.8,
11922 doc/ja/dpkg-name.1, doc/ja/dpkg-scanpackages.8,
11923 doc/ja/dpkg-scansources.8, doc/ja/dpkg-statoverride.8, doc/ja/dpkg.8,
11924 doc/ja/install-info.8, doc/ja/start-stop-daemon.8,
11925 doc/ja/update-alternatives.8, doc/ja/update-rc.d.8: Updated.
11927 Mon May 28 16:19:51 CDT 2001 Adam Heath <doogie@debian.org>
11929 * dpkg-deb/extract.c, dselect/main.cc, lib/database.c, main/help.c,
11930 main/main.c, split/info.c, utils/start-stop-daemon.c: Fix some
11933 Mon May 7 23:07:01 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11935 * main/depcon.c: restore previous statement to break reverse cycles
11937 Mon May 7 23:04:55 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11939 * main/dump.c: break up an assertion so it is easier to figure out what
11942 Sun May 6 13:20:07 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11944 * main/archives.c: add safe_read() to read from a pipe and deal
11945 with partial reads. Modify tarobject() and tarfileread() to use
11948 Sat May 5 00:49:31 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11950 * pl/cs.po: Updated
11951 * pl/de.po: Updated
11952 * po/pl.po: Updated
11953 * dselect/pkgtop.cc: Mark another strang as translatable
11955 Fri May 4 00:19:05 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11957 * dselect/main.cc: oops, swapped j and k key bindings for main menu
11959 Wed May 2 20:41:10 CDT 2001 Adam Heath <doogie@debian.org>
11961 * include/dpkg.h.in, main/Makefile.in main/enquiry.c main/main.c,
11962 main/query.c: Split out code for commands -sSlLp into a separate
11963 binary, dpkg-query, and have the normal dpkg binary exec this. Also,
11964 dpkg now uses a macro to define external backends to call.
11966 Wed May 2 12:32:24 CDT 2001 Adam Heath <doogie@debian.org>
11968 * configure.in: If --without-zlib was given, and static programs were
11969 enabled, the compile would fail.
11971 Tue May 1 23:05:48 CDT 2001 Adam Heath <doogie@debian.org>
11973 * lib/parse.c: Oops. EOF_mmap was incorrectly detecting the end of the
11975 * main/depcon.c: After fixing the above bug, and using debootstrap to
11976 build a sid chroot, I discovered that my previous dependency cycle fix
11977 could cause segfaults in some situations.
11979 Tue May 1 00:24:49 CDT 2001 Adam Heath <doogie@debian.org>
11981 * acconfig.h, config.h.bot, configure.in, lib/varbuf.c, debian/changelog:
11982 Check for __va_copy, and use it, instead of a direct assignment, for
11983 broken arches, like ppc.
11985 Mon Apr 30 17:34:47 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
11987 * configure.in: remove last list reference.
11989 Mon Apr 30 14:22:25 EDT 2001 Adam Heath <doogie@debian.org>
11991 * debian/changelog: Recompile for 1.9.2, to fix badly generated
11994 Mon Apr 30 10:04:36 CDT 2001 Adam Heath <doogie@debian.org>
11996 * lib/mlib.c: EAGAIN patch from 1.8 branch was not applied to HEAD.
11998 Sun Apr 29 22:39:55 CDT 2001 Adam Heath <doogie@debian.org>
12000 * lib/database.c, lib/fields.c: Fix Eterm/eterm problem. findpackage()
12001 now does tolower() before searching for a name, and f_name() uses the
12002 name field from the return value of findpackage().
12004 Sun Apr 29 22:08:37 CDT 2001 Adam Heath <doogie@debian.org>
12006 * Makefile.conf.in, configure.in, debian/control, debian/rules,
12007 dpkg-deb/Makefile.in, main/Makefile.in, utils/Makefile.in,
12008 .cvsignore debian/.cvsignore: Added -static support. There is support
12009 for building a dpkg-static.deb, but this is not used during a normal
12010 run. However, a -static.nondebbin.tar.gz file is created, in addition
12011 to the normal nondebbin.tar.gz.
12013 Mon Apr 30 02:35:02 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12015 * debian/control: update section and priorities to match the dinstall
12018 Sat Apr 28 16:34:24 CDT 2001 Adam Heath <doogie@debian.org>
12020 * version-nr: Oops, forgot to update this.
12022 Sat Apr 28 16:17:58 CDT 2001 Adam Heath <doogie@debian.org>
12024 * utils/md5sum.c, debian/changelog: Fix md5sum -c.
12026 Sat Apr 28 15:22:25 CDT 2001 Adam Heath <doogie@debian.org>
12028 * lib/nfmalloc.c: in nfstrnsave, don't set the char after the end, but
12029 set the end, to \0.
12030 * lib/parse.c: Don't loose the last char of a field value, when EOF is
12033 Sat Apr 28 14:31:27 CDT 2001 Adam Heath <doogie@debian.org>
12035 * scripts/dpkg-divert.pl, debian/changelog: Fix removing of diversions.
12036 This has always been broken, but was just masked by another bug, that
12039 Sat Apr 28 12:18:55 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12041 * scripts/dpkg-buildpackage.sh: only check for valid sign interface
12042 when the user specifies one
12044 Sat Apr 28 03:33:28 CDT 2001 Adam Heath <doogie@debian.org>
12046 * debian/dpkg.cfg: Changed to include no-debsig by default, as no debs
12047 are currently signed, and we get false errors when debsig-verify is
12048 installed. This will be removed in the future, when the archive tools
12049 support package signatures.
12051 Fri Apr 27 20:43:25 CDT 2001 Adam Heath <doogie@debian.org>
12053 * lib/nfmalloc.c: nfstrnsave() was not allocated n+1 chars, and was not
12054 setting the n+1 byte to \0.
12056 Sat Apr 28 02:52:56 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12058 * scripts/dpkg-shlibdeps.pl: do not care if dpkg --search returns
12059 with an error: it will do that know if we search for something
12060 that is not installed which is a valid case for us.
12062 Fri Apr 27 13:14:04 CDT 2001 Adam Heath <doogie@debian.org>
12064 * lib/parse.c, debian/changelog: Fix a segfault when reading an empty
12065 file in parsedb(), imported from head.
12067 Thu Apr 26 13:15:02 CDT 2001 Adam Heath <doogie@debian.org>
12069 * main/configure.c: Update to work with recent lib/mlib.c change in
12072 Thu Apr 26 11:51:34 CDT 2001 Adam Heath <doogie@debian.org>
12074 * split/{info,join,main,queue,split}.c: s/0/NULL/
12076 Thu Apr 26 13:36:41 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12078 * utils/md5sum.c: use libdpkg error handling since fd_md5 uses that
12081 Wed Apr 25 20:20:07 CDT 2001 Adam Heath <doogie@debian.org>
12083 * utils/md5sum.c, lib/mlib.c: Modified mlib.c, to malloc enough space
12084 for the digest, instead of modifying the static buffer that was
12085 previously passed in.
12087 Thu Apr 26 00:32:35 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12089 * po/da.po: Updated
12091 Wed Apr 25 18:46:47 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12093 * dselect/dselect.8: document dselect.cfg
12095 Wed Apr 25 17:27:36 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12097 * po/es.po: Updated
12099 Wed Apr 25 13:15:41 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12101 * main/dpkg.8: document dpkg.cfg
12103 Wed Apr 25 13:05:13 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12105 * main/dpkg.8: Fix formating error
12107 Wed Apr 25 02:20:40 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12109 * po/gl.po: Updated
12111 Wed Apr 25 01:09:50 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12113 * po/{ja,ru}.po: fix inconsistencies in line endings wrt \n
12115 Wed Apr 25 00:56:14 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12117 * po/ru.po: Updated
12119 Wed Apr 25 00:29:51 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12121 * po/da.po: New Danish translation
12122 * configure.in: add da to ALL_LINGUAS
12124 Tue Apr 24 20:57:48 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12126 * po/ja.po: Updated
12128 Tue Apr 24 20:28:04 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12130 * po/cs.po: Updated
12131 * po/pl.po: Updated
12133 Tue Apr 24 17:23:05 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12135 * main/main.c, po/*.po: fix typo
12137 Tue Apr 24 14:44:28 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12139 * bunch-o-files: move dpkg-scansources manpage to section 8
12141 Tue Apr 24 14:31:41 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12143 * debian/rules: install enoent in the dpkg package
12145 Tue Apr 24 14:29:03 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12147 * debian/rules: actually install French manpages as well
12149 Tue Apr 24 13:38:58 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12151 * scripts/dpkg-divert.pl: Fix wrong errno test
12153 Tue Apr 24 13:35:08 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12155 * po/it.po: New version from Lele Gaifax
12157 Tue Apr 24 13:21:39 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12159 * Merge SuperH patch from YAEGASHI Takeshi
12160 * archtable: add SuperH variants
12161 * scripts/dpkg-architecture.pl: fix typo (shed -> sheb)
12162 * scripts/dpkg-buildpackage.sh: fix dpkg-architecture call
12164 Tue Apr 24 13:03:54 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12166 * utils/enoent.c: new utility to get ENOENT value at runtime
12167 * utils/Makefile.in: install ENOENT in dpkglibdir
12168 * scripts/dpkg-divert.pl, update-alternatives.pl: use enoent to get
12171 Tue Apr 24 13:01:28 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12173 * dselect/Makefile.in, main/Makefile.in, utils/Makefile.in: use
12174 INSTALL_PROGRAM to install programs
12176 Tue Apr 24 11:57:48 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12178 * main/archives.c: spell recursive correctly
12179 * po/sv.po: updated so it still translates the fixed message
12180 * po/ru.po: updated
12182 Tue Apr 24 07:02:01 CEST 2001 peter karlsson <peterk@debian.org>
12184 * doc/sv/dpkg.8, po/sv.po: Updated Swedish translation.
12186 Tue Apr 24 02:55:21 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12188 * po/de.po: remove Language-Team header, the debian-l10n-german
12189 list it pointed to does not exist.
12191 Tue Apr 24 02:41:23 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12193 * main/enquiry.c: add missing newline after error message
12195 Tue Apr 24 02:13:43 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12197 * dselect/main.cc: use myfileopt as well to read dselect.cfg
12198 * debian/dselect.cfg: new file
12199 * debian/rules: install dselect.cfg
12200 * debian/dpkg.conffiles: add dselect.cfg
12202 Tue Apr 24 01:40:11 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12204 * dselect/pkglist.cc: repair qsort_compareentries
12206 Mon Apr 23 18:08:37 CDT 2001 Adam Heath <doogie@debian.org>
12208 * lib/parsehelp.c: Reduce memory a tad.
12209 * debian/changelog: Close additional bugs.
12210 * debian/rules: Added a build-static rule.
12212 Mon Apr 23 17:17:35 CDT 2001 Adam Heath <doogie@debian.org>
12214 * main/enquiry.c: Additional add error returns for -L, -s, and -p.
12215 * debian/changelog: Close a debian bug because of this.
12217 Mon Apr 23 23:54:34 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12219 * main/main.h: add declaration for nerrs
12220 * main/enquiry.c: exit with non-zero exitcode if -l or -S do not
12223 Mon Apr 23 16:09:38 CDT 2001 Adam Heath <doogie@debian.org>
12225 * include/dpkg.h.in, lib/mlib.c, main/archives.c, debian/changelog: Added
12226 new PROCNOERR flag, which disabled the error message that is displayed
12227 when a process has an error return.
12229 Mon Apr 23 22:26:23 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12231 * main/dpkg.8: note that force-overwrite is not enabled per default
12233 Mon Apr 23 15:39:37 CDT 2001 Adam Heath <doogie@debian.org>
12235 * dpkg-deb/{build,extract,info}.c, include/dpkg.h.in, lib/mlib.c,
12236 main/{archives,enquiry,help,processarc}.c: Convert waitsubproc and
12237 checksubprocerr to use a flags variable, instead of separate ints.
12239 Mon Apr 23 15:36:58 CDT 2001 Adam Heath <doogie@debian.org>
12241 * main/depcon.c, debian/changelog: When walking the list of providers of
12242 a dependency, the arguments were passed in reverse to the cyclebreak
12243 checker, so cycles involving provides were never detected.
12244 * debian/changelog: Document that we fixed a segfault.
12246 Mon Apr 23 14:13:48 CDT 2001 Adam Heath <doogie@debian.org>
12248 * main/help.c: Fix bad memory access do_script(), introduced when the
12249 casting errors were fixed previously.
12251 Mon Apr 23 06:27:47 CDT 2001 Adam Heath <doogie@debian.org>
12253 * lib/*.c: Changed 0 to NULL.
12255 Mon Apr 23 06:25:36 CDT 2001 Adam Heath <doogie@debian.org>
12257 * dpkg-deb/extract.c: More %z format fixes.
12259 Mon Apr 23 05:31:03 CDT 2001 Adam Heath <doogie@debian.org>
12261 * split/info.c: Change format string, to handle size_t.
12263 Mon Apr 23 04:45:23 CDT 2001 Adam Heath <doogie@debian.org>
12265 * main/main.c: s/--no-debsign/--no-debsig/ in help.
12267 Mon Apr 23 03:21:10 CDT 2001 Adam Heath <doogie@debian.org>
12269 * dpkg-deb/{build,extract,main}.c, split/{info,join,main,queue}.c,
12270 split/dpkg-split.h, lib/{dump,ehandle,fields,mlib,parse{,help},varbuf,
12271 vercmp}.c, lib/parsedump.h, main/{archives,configure,enquiry,filesdb,
12272 help,main,packages,processarc,remove}.c, main/{filesdb,main}.h,
12273 utils/{md5sum, start-stop-daemon}.c, dselect/pkg{list.cc,list.hh,
12274 top.cc}, include/dpkg{-db.h,.h.in}: Fixed up several warning types.
12275 const, casting, incorrect sizes, signed/unsigned comparisons.
12277 Mon Apr 23 02:17:26 CDT 2001 Adam Heath <doogie@debian.org>
12279 * dpkg-deb/info.c, main/processarc.c: Add comments telling why we
12280 use tempnam() and tmpnam().
12282 Sun Apr 22 23:59:00 CDT 2001 Adam Heath <doogie@debian.org>
12284 * archtable: Added alphaev67-linux-gnu.
12286 Sun Apr 22 19:02:12 CDT 2001 Adam Heath <doogie@debian.org>
12288 * lib/parse.c: s/PARSE_MMAP/HAVE_MMAP/, so that we now use mmap
12289 to read status and available(and like files).
12291 Sun Apr 22 18:32:02 CDT 2001 Adam Heath <doogie@debian.org>
12293 * lib/parse.c: Fix another segfault when parsing single-paragraph
12294 files(ie, tmp.ci/control).
12296 Sun Apr 22 17:13:17 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12298 * main/filesdb.c: fix putat logic we broke earlier today
12300 Sun Apr 22 16:42:22 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12302 * main/filesdb.c: don't read a statoverride or .list file if they
12305 Sun Apr 22 15:15:56 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12307 * main/help.c: ensure_package_clientdata() only needs to allocate memory
12308 for a perpackagestate struct, not a pkginfoperfile.
12310 Sun Apr 22 02:46:06 CDT 2001 Adam Heath <doogie@debian.org>
12312 * dpkg-deb/build.c, dpkg-deb/extract.c, dpkg-deb/main.c, lib/mlib.c(*),
12313 lib/showcopyright.c, main/enquiry.c, main/main.c, split/main.c,
12314 split/split.c, utils/md5sum.c, utils/start-stop-daemon.c: Added
12315 macro NONRETURNING to several functions.
12317 Sun Apr 22 02:02:34 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12319 * main/filesdb: change initialization of putat in
12320 ensure_packagefiles_available() so gcc won't warn about possible
12321 uninitialized usage
12323 Sun Apr 22 01:45:25 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12325 * utils/start-stop-daemon.c: no longer use deprecated multi-line string
12326 * utils/md5sum.c: include stdlib.h to get declaration of exit
12328 Sat Apr 21 18:00:31 CDT 2001 Adam Heath <doogie@debian.org>
12330 * main/main.c: reworked \\ parsing in commandfd.
12331 * lib/dbmodify.c: fix non-full initalizer.
12333 Sun Apr 22 00:48:18 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12335 * main/main.c: fixed some bizar pointer usage
12337 Sun Apr 22 00:33:26 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12339 * Makefile.conf.in: remove no longer used warning flags
12341 Sat Apr 21 17:16:28 CDT 2001 Adam Heath <doogie@debian.org>
12343 * main/help.c, main/processarc.c, main/filesdb.c, main/configure.c,
12344 main/archives.c, lib/parse.c: Fix int/pointer casting warnings.
12345 * include/dpkg.h.in, lib/mlib.c: Rewrote buffer_copy_setup, to avoid
12346 int/pointer casting warnings. These means there are several
12347 variations of buffer_copy_setup. Also, converted the desc parameter
12350 Sun Apr 22 00:09:58 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12352 * optlib/long-options.c, lib/showcright.c: include stdlib.h to get
12353 declaration of exit
12355 Sat Apr 21 17:10:32 CEST 2001 peter karlsson <peterk@debian.org>
12357 * po/sv.po, doc/sv/dpkg.8, doc/sv/start-stop-daemon.8:
12358 Updated Swedish translation.
12360 Fri Apr 20 16:02:51 CDT 2001 Adam Heath <doogie@debian.org>
12362 * debian/changelog: Document stuff that was done in December.
12364 Sat Apr 21 04:02:58 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12366 * main/dpkg.8: remove Linux reference
12368 Sat Apr 21 02:39:37 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12370 * scripts/dpkg-scanpackages.pl: fix typo in vercmp version cache
12371 * scripts/dpkg-shlibdeps.pl: remove statement that was basically
12373 * scripts/controllib.pl: give syntax error for unexpected PGP signature
12374 * debian/changelog: updated
12376 Fri Apr 20 19:46:38 CDT 2001 Adam Heath <doogie@debian.org>
12378 * po/pl.po: Remove spurious '%s' in Polish translation
12380 Fri Apr 20 19:37:00 CDT 2001 Adam Heath <doogie@debian.org>
12382 * scripts/dpkg-source.pl: Import fix for broken dpkg-source.pl from
12385 Fri Apr 20 19:05:44 CDT 2001 Adam Heath <doogie@debian.org>
12387 * lib/dbmodify.c: Fix varbufprintf call in modstatdb_note(found when
12388 printf format warnings were enabled).
12390 Fri Apr 20 19:02:46 CDT 2001 Adam Heath <doogie@debian.org>
12392 * configure.in: New option, --with-Werror, to convert all warnings
12395 Fri Apr 20 18:21:45 CDT 2001 Adam Heath <doogie@debian.org>
12397 * automake/dpkg.m4, configure.in: Add support for gcc attributes,
12400 Fri Apr 20 18:18:20 CDT 2001 Adam Heath <doogie@debian.org>
12402 * lib/database.c: initialize otherpriority with 0, not an int.
12404 Sat Apr 21 00:43:41 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12406 * lib/parse.c: swap order for %.*s formats
12408 Fri Apr 20 22:59:39 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12410 * lib/database.c: initialize otherpriority as well in blankpackage()
12412 Fri Apr 20 22:59:39 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12414 * lib/ehandle.c: make sure we never overflow errmsgbuf
12416 Fri Apr 20 14:59:14 CDT 2001 Adam Heath <doogie@debian.org>
12418 * main/main.c: Accidentally commited a debug fprintf stmt in the last ci.
12420 Fri Apr 20 13:42:12 CDT 2001 Adam Heath <doogie@debian.org>
12422 * main/main.c: Disabled --command-fd, until further testing can be done.
12424 Fri Apr 20 13:02:23 CDT 2001 Adam Heath <doogie@debian.org>
12426 * po/fr.po: Fix typo.
12427 * debian/changelog: Close additional bugs, from other already commited
12430 Thu Apr 19 15:18:05 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12432 * scripts/cl-debian.pl: make regexps for Closes consistent again
12434 Thu Apr 19 13:36:58 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12436 * utils/install-info.{c,8}: merge patch from Ian Jackson to add a
12437 --retry option to start-stop-daemon
12439 Thu Apr 19 00:14:39 CDT 2001 Adam Heath <doogie@debian.org>
12441 * main/enquiry.c: Errors during dpkg -s(and other similiar commands) are
12442 now printed on stderr.
12444 Thu Apr 19 00:03:16 CDT 2001 Adam Heath <doogie@debian.org>
12446 * main/archives.c: Apply patch from Fumitoshi UKAI <ukai@debian.or.jp>,
12447 that escapes invalid characters in filenames(intl).
12449 Wed Apr 18 23:53:40 CDT 2001 Adam Heath <doogie@debian.org>
12451 * lib/database.c: In blankpackage, intialize ->installed and ->available.
12452 Found by me and Fumitoshi UKAI <ukai@debian.or.jp>. This should help
12453 several segfaults that people have been seeing in dpkg.
12455 Wed Apr 18 23:42:16 CDT 2001 Adam Heath <doogie@debian.org>
12457 * lib/mlib.c: If the buffer size is 0 in buffer_copy, then return, and
12460 Wed Apr 18 23:42:16 CDT 2001 Adam Heath <doogie@debian.org>
12462 * configure.in, debian/control: New upstream gettext. Since we had
12463 to change our build, to comply with the new upstream, we also
12464 need to modify the build-depends.
12465 * po/dpkg.pot, po/nl.po: Fixed broken translations.
12467 Wed Apr 18 18:01:21 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12469 * scripts/install-info.{8,pl}: modify install-info to take relative
12470 filesnames, and add a --remove-exactly option to only remove exact
12471 matches (Rob Browning)
12473 Sun Apr 15 22:42:11 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12475 * config.sub, config.guess: updated
12476 * archtable: add hppa64-linux-gnu
12477 * po/ja.po: remove some translations that gettext can't handle on hppa
12479 Thu Apr 12 13:12:16 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12481 * po/it.po: installed new version from Lele Gaifax
12482 * dselect/main.cc: translate menu option as well in dme()
12484 Wed Apr 11 12:19:25 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
12486 * dselect.main.cc: retry getch if it fails with EINTR
12488 Sun Mar 11 19:24:58 CET 2001 peter karlsson <peterk@debian.org>
12490 * po/sv.po: Updated Swedish translation.
12492 Sat Mar 10 15:59:39 CST 2001 Adam Heath <doogie@debian.org>
12494 * main/filesdb.c: Use a pure file descriptor, instead of a stream, to
12495 load the data, in ensure_packagefiles_available.
12497 Sat Mar 10 01:33:15 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12499 * main/main,h, main/main.c: add --no-debsig option using f_nodebsign
12500 * main/processarc: don't check signatures of f_nodebsign is set
12502 Fri Mar 9 21:23:03 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12504 * include/dpkg.h.in: add DEBSIGVERIFY
12505 * main/main.h, main/main.c: add bad-verify override
12507 Fri Mar 9 19:30:22 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12509 * scripts/controllib.pl: change outputclose to deal with comma-related
12510 syntax errors after processing substvars
12512 Mon Mar 5 16:34:55 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12514 * doc/fr/Makefile.in: add more files
12515 * doc/fr/dpkg.8,doc/fr/install-info.8,doc/fr/update-rc.d.8: updated
12516 * doc/fr/cleanup-info.8,doc/fr/dpkg-divert.8,doc/fr/dpkg-name.1,
12517 doc/fr/dpkg-scanpackages.8,doc/fr/dpkg-scansources.1,doc/fr/dpkg-source.1:
12520 Mon Mar 5 14:03:49 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12522 * configure.in: add more warning flags for gcc
12524 Sun Mar 04 21:37:34 CET 2001 peter karlsson <peterk@debian.org>
12526 * po/sv.po, doc/sv/dpkg.8, doc/sv/822-date.1, doc/sv/start-stop-daemon.8:
12527 Updated Swedish translation.
12528 * main/dpkg.8, utils/start-stop-daemon.8: Fixed typos.
12530 Fri Mar 2 17:29:02 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12532 * The Copenhagen Commit
12533 * ChangeLog: undo file corruption (ugh)
12534 * utils/start-stop-daemon.8: fix typo
12535 * configure.in: use AC_C_INLINE instead of our own test
12536 * lib/nfmalloc, include/dpkg-db.h: remove HAVE_INLINE tests, use extern
12538 * lib/varbuf.c: add inline keyowrd to varbufaddc
12539 * optlib/Makefile.in: undo earlier patch and build libopt.a again
12540 * lib/Makefile.in: use libopt.a again, and a rule to build it
12541 * Makefile.in: build optlib before lib
12542 * Makefile.conf.in: add RANLIB
12543 * dselect/method.h, dselect/methlist.cc, dselect/method.cc,
12544 dselect/methparse.cc: rename struct option to dselect_option to prevent
12545 conflict with getopt.h
12546 * main/help.c: rework do_script a bit to compile without errors
12547 * scripts/dpkg-gencontrol.pl: add -n option to specify filename
12548 * scripts/dpkg-source.1:
12549 + document -n option for dpkg-gencontrol
12550 + fix confusing wording for dpkg-buildpackage -uc option
12551 + fix layout error for dpkg-distaddfile section
12552 + it's DEADJOE, not DEAD_JOE
12553 * scripts/dpkg-architecture.pl:
12554 + apply cleanup patch from Julian Gilbey
12555 + modify gcc regexp to recognize gcc versions like 2.96-ia64-000717
12556 * scripts/dpkg-checkbuilddeps.pl, scripts/dpkg-checkbuilddeps.1: new
12557 script from Joey Hess to check build dependencies
12558 * THANKS: Add Joey Hess
12559 * scripts/dpkg-parsechangelog.pl:
12560 + support reading changelog from stdin
12561 + remove Linux reference
12562 * scripts/dpkg-statoverride.pl: exit with exitcode 1 if we do --list but
12563 don't output anything, and use exitcode 2 if we try to remove a
12564 non-exiting override (unless --force is given).
12565 * scripts/dpkg-statoverride.8: document new exitcode for --list
12566 * main/main.c, main/dpkg.8: remove --smallmem and --largemem references
12567 * scripts/dpkg-buildpackage.sh:
12568 + don't bother to specify architecture settings on commandlines since
12569 we put them in the environment already
12570 + remove debsign support, it's useless and debsign can't handle it
12571 + use DEB_BUILD_ARCH to get build architecture, not DEB_HOST_ARCH
12572 + remove Linux reference
12573 * scripts/dpkg-scanpackages.pl: mark last argument as optional in
12575 * scripts/dpkg-scanpackages.8, scripts/dpkg-name.1,
12576 scripts/dpkg-shlibdeps.pl, scripts/dpkg-source.pl, scripts/822-date.1,
12577 scripts/cl-debian.pl, scripts/cleanup-info.pl, scripts/dpkg-genchanges.pl,
12578 scripts/dpkg-distaddfile.pl, scripts/dpkg-source.1,
12579 scripts/dpkg-divert.pl, scripts/install-info.pl, scripts/install-info.8,
12580 scripts/dpkg-gencontrol.pl, scripts/update-alternatives.pl,
12581 scripts/update-rc.d.8: remove Linux references
12583 Sun Feb 25 20:26:03 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12585 * version-nr: update to 1.9.0
12587 Sun Feb 25 19:17:53 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12589 * debian/changelog: merged additions from v1.8 branch
12590 * scripts/controllib.pl:
12591 + no need to have Origin in capit
12592 + consistently use &warn
12593 + fix -s to export all variables instead of just the first
12594 * scripts/dpkg-genchanges.pl: do not complain about missing packages
12595 if doing a source-only build
12596 * scripts/dpkg-buildpackage.sh:
12597 + correct filename for secret keyring in gpg test
12599 + skip signing pause of building unsigned packages
12601 + test for invalid signinterface
12603 Sun Feb 25 19:10:33 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12605 * doc/fr/dpkg.8, doc-fr/install-info.8, doc-fr/update-alternatives.8,
12606 doc-fr/update-rc.d.8: updated
12607 * doc/fr/dpkg-deb.1: added
12609 Fri Feb 23 16:10:49 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12611 * po/de.po: updated
12612 * po/fr.po: updated
12614 Fri Feb 23 15:54:00 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12616 * utils/start-stop-daemon.c: Add OpenBSD support
12617 * utils/md5sum.c: include unistd.h to things compile on OpenBSD
12618 * configure.in: test to see if we need to link to kvm
12620 Fri Feb 23 10:22:02 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12622 * scripts/dpkg-divert.pl: fix typo in usage message
12623 * main/help.c: mangle argv[0] in do_script to always be the full path
12624 * include/dpkg-db.h: include string.h so things compile on ia64
12625 * scripts/dpkg-architecture.pl: add ia64
12627 Thu Feb 15 11:24:46 EST 2001 Ben Collins <bcollins@debian.org>
12629 * utils/Makefile.in: Do not use libopt.a, since libdpkg.a now includes those
12631 * optlib/Makefile.in: do not generate libopt.a
12632 * lib/Makefile.in: build libdpkg.a to include the objects from optlib
12633 * Makefile.conf.in: Add optlib to -I includes
12635 Sat Feb 3 18:25:25 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12637 * debian/rules: use POSIX glob instead of regexp
12639 Sat Feb 3 18:18:42 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12641 * scripts/dpkg-source.1: fix description for dpkg-gencontrol
12642 * archtable: add entry for OpenBSD 2.8 for i386
12643 * scripts/dpkg-architecture.p: add openbsd-i386 entry
12645 Sat Feb 3 18:12:18 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12647 * configure.in: check for ranlib
12648 * lib/Makefile.in: run ranlib on libdpkg.a
12650 Fri Feb 2 14:27:47 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12652 * scripts/dpkg-statoverride.pl: use -e instead of -f to test
12653 for filesystem object existance
12654 * scripts/dpkg-source.pl: swap chdir and open in extracttar to
12655 prevent race with source-directory being removed while the
12656 sh/grep process is still running. Patch from Colin Watson
12658 Thu Feb 1 18:22:05 EST 2001 Wichert Akkerman <wakkerma@debian.org>
12660 * scripts/dpkg-source.pl: fix error in error message
12661 * utils/Makefile.in: set top_builddir
12662 * Makefile.in: spell version-nr correctly
12664 Sun Jan 28 22:38:02 EST 2001 Wichert Akkerman <wakkerma@debian.org>
12666 * scripts/dpkg-source.pl: modify how we handle the dscformat: we now
12667 assume all major versions are upwards and backwards compatibly. This
12668 allows us to add new fields without breaking older versions of
12671 Sun Jan 21 20:09:36 SGT 2001 Wichert Akkerman <wakkerma@debian.org>
12673 * scripts/dpkg-divert.pl: only allow absolute filenames
12674 * main/configure.c: add -N option to diff invocation
12676 Mon Jan 15 07:27:10 CET 2001 peter karlsson <peterk@debian.org>
12678 * po/sv.po: Updated Swedish translation.
12680 Mon Jan 15 00:26:45 EST 2001 Ben Collins <bcollins@debian.org>
12682 * lib/nfmalloc.c: use obstack_copy/obstack_copy0 for nfstrsave and
12683 nfstrnsave respectively. Also, use an 8k chunk size for now. Should reduce
12684 some overhead, and be faster.
12686 Sun Jan 14 23:37:30 EST 2001 Ben Collins <bcollins@debian.org>
12688 * include/dpkg-db.h: redeclare nfmalloc(), remove obstack definitions
12689 * lib/dbmodify.c (modstatdb_init): remove obstack init
12690 * lib/nfmalloc.c: redefine nfmalloc to be an inline function. It now checks
12691 to make sure db_obs is initliazed.
12692 * main/archives.c (tarobject): declare our own obstack, and use it instead
12693 (cu_fileslist) just call obstack_free
12694 * main/processarc.c: correct calling of cu_fileslist
12696 Sun Jan 14 18:23:07 CST 2001 Adam Heath <doogie@debian.org>
12698 * main/dpkg.8: Document --command-fd.
12700 Sun Jan 14 13:54:46 EST 2001 Ben Collins <bcollins@debian.org>
12702 * optlib/obstack.[ch]: New files for non GNU systems
12703 * optlib/Makefile.in (SOURCES): add obstack.c
12704 * lib/nfmalloc: remove nfmalloc()
12705 * include/dpkg-db.h: define obstack initializers, and define nfmalloc as a
12706 macro for obstack_alloc
12707 * lib/dbmodify.c (modstatdb_init): initialize obstack if it hasn't been already
12709 Sun Jan 14 12:29:46 CST 2001 Adam Heath <doogie@debian.org>
12711 * lib/mlib.c, lib/fields.c, lib/parse.c, main/help.c, main/main.c,
12712 po/dpkg.pot: Fix -Wall messages. Also, fix handling of user-defined
12713 fields in parsedb().
12715 Sun Jan 14 02:46:14 CST 2001 Adam Heath <doogie@debian.org>
12717 * po/dpkg.pot: Bring up to date.
12719 Sun Jan 14 02:37:05 CST 2001 Adam Heath <doogie@debian.org>
12721 * main/cleanup.c, main/help.c, main/processarc.c: Removed duplicate
12722 code that was used to exec maintainer scripts, and moved it to a
12723 single function. In the future, this single function could be used
12724 for tracking script execution.
12726 Sun Jan 14 02:27:48 CST 2001 Adam Heath <doogie@debian.org>
12728 * main/main.h, main/main.c: Change --{status,command}-pipe to
12729 --{status,command}-fd.
12731 Sun Jan 14 02:19:18 CST 2001 Adam Heath <doogie@debian.org>
12733 * main/main.c, main/archives.c: Add a --command-pipe. This allows
12734 multiple commands to be passed to a single instance of dpkg, over
12735 the file descriptor passed on the cmdline.
12737 Thu Jan 11 09:35:00 PST 2001 Wichert Akkerman <wakkerma@debian.org>
12739 * scripts/dpkg-statoverride.pl: do chown before chmod so we don't
12742 Mon Jan 8 15:46:13 PST 2001 Wichert Akkerman <wakkerma@debian.org>
12744 * scripts/dpkg-statoverride.{pl,8}: remove --import option now that
12745 suidmanager can convert everything
12747 Mon Jan 8 15:12:21 PST 2001 Wichert Akkerman <wakkerma@debian.org>
12749 * scripts/dpkg-source.pl: add vim swapfiles to the default ignore regexp
12751 Mon Jan 8 10:38:28 PST 2001 Wichert Akkerman <wakkerma@debian.org>
12753 * po/fr.po: updated
12755 Sun Jan 7 14:31:38 CST 2001 Adam Heath <doogie@debian.org>
12757 * lib/dbmodify.c: After N calls(which does a checkpoint()), reset
12760 Sun Jan 7 14:27:57 CST 2001 Adam Heath <doogie@debian.org>
12762 * include/dpkg-db.h: Forgot the status-pipe struct.
12764 Fri Jan 5 22:36:24 CST 2001 Adam Heath <doogie@debian.org>
12766 * main/main.c, lib/dbmodify.c, main/dpkg.8: Add a --status-pipe.
12768 Fri Jan 5 22:25:06 CST 2001 Adam Heath <doogie@debian.org>
12770 * lib/varbuf.c: varbuf(v)printf now return the number of characters
12771 they added to the buffer.
12773 Thu Jan 4 01:20:27 CST 2001 Adam Heath <doogie@debian.org>
12775 * dpkg-deb/build.c, dpkg-deb/extract.c, dpkg-deb/info.c,
12776 include/dpkg.h.in, lib/mlib.c, main/archives.c, main/enquiry.c,
12777 main/help.c main/processarc.c: Add 'warn' parameter to waitsubproc
12778 and checksubprocerr, and also add a return value. This fixes my
12779 last checkin, where maintainer_script_alternative would run
12780 both the old and new script.
12782 Thu Jan 04 05:19:37 CET 2001 peter karlsson <peterk@debian.org>
12784 * po/sv.po: Updated Swedish translation.
12786 Wed Jan 3 10:35:49 CET 2001 Wichert Akkerman <wakkerma@debian.org>
12788 * configure.in: add doc/fr/Makefile
12790 Tue Jan 2 22:44:14 CST 2001 Adam Heath <doogie@debian.org>
12792 * lib/help.c: Removed an 'inlined' version of waitsubproc, and call
12793 the function instead.
12795 Mon Jan 1 02:07:47 CST 2001 Adam Heath <doogie@debian.org>
12797 * lib/varbuf.c, include/dpkg-db.h: Add varbufdupc().
12799 Mon Jan 1 02:04:26 CST 2001 Adam Heath <doogie@debian.org>
12801 * lib/parse.c: Use of PKGIOFF macro was checked in prematurely.
12803 Sat Dec 30 23:08:00 CET 2000 Wichert Akkerman <wakkerma@debian.org>
12805 * doc/Makefile.in: add fr to SUBDIRS
12806 * doc/fr: new directory with French manpages
12807 * THANKS: add philippe batailler who translated the manpages to French
12809 Sat Dec 30 20:38:20 CST 2000 Adam Heath <doogie@debian.org>
12811 * utils/start-stop-daemon.c: --name is now allowed on the command
12814 Fri Dec 29 12:39:09 CST 2000 Adam Heath <doogie@debian.org>
12816 * lib/parse.c: Properly parse control files that only have one
12817 paragraph, which means no double ending new line.
12819 Thu Dec 28 18:43:37 CST 2000 Adam Heath <doogie@debian.org>
12821 * lib/database.c: Fix minor memleak in used function hashreport.
12822 Thanks to Adrian Bridgett <bridgett@debian.org>.
12824 Wed Dec 27 14:54:55 CST 2000 Adam Heath <doogie@debian.org>
12826 * lib/parse.c: Removed use of getc(), and instead use pointers
12827 into a gigantic memory buffer(either thru mmap, or by copying
12828 into a large buffer(#define PARSE_MMAP)). Nice little speedup,
12829 and also had the added benefit of removing varbuf* code from
12832 Wed Dec 27 04:58:22 CST 2000 Adam Heath <doogie@debian.org>
12834 * lib/fields.c: Removed use of varbuf* code from f_dependency(),
12837 Wed Dec 27 04:55:14 CST 2000 Adam Heath <doogie@debian.org>
12839 * lib/fields.c: Detect and issue an error when a space is in a
12842 Wed Dec 27 04:00:32 CST 2000 Adam Heath <doogie@debian.org>
12844 * lib/nfmalloc.c, include/dpkg-db.h: Added nfstrnsave().
12846 Tue Dec 26 17:07:11 CST 2000 Adam Heath <doogie@debian.org>
12848 * lib/md5.c, lib/md5.h: Oops, forgot to add these files.
12850 Tue Dec 26 08:28:17 CST 2000 Adam Heath <doogie@debian.org>
12852 * main/main.c: Removed extraneous debug prints, that displayed the
12853 state of all force options. Doh!
12855 Tue Dec 26 04:34:02 CST 2000 Adam Heath <doogie@debian.org>
12857 * lib/fields.c, lib/parsehelp.c, include/dpkg-db.h: Increased the
12858 speed of convert_string() by a factor of 2, by storing the length
12859 of each string inside the struct(this function is used to convert
12860 strings into integer values).
12862 Tue Dec 26 03:43:17 CST 2000 Adam Heath <doogie@debian.org>
12864 * acconfig.h, config.h.bot, configure.in, main/filesdb.c,
12865 automake/sysinfo.m4(removed): Removed all references to
12868 Tue Dec 26 03:24:38 CST 2000 Adam Heath <doogie@debian.org>
12870 * main/main.c, main/files.c: Removed --smallmem code.
12872 Mon Dec 25 00:46:47 CST 2000 Adam Heath <doogie@debian.org>
12874 * utils/md5sum.c: Don't use FILE * in mdfile.
12876 Mon Dec 25 00:31:05 CST 2000 Adam Heath <doogie@debian.org>
12878 * include/dpkg.h.in, lib/mlib.c: Added generic setup code to buffer
12881 Sun Dec 24 23:48:45 CST 2000 Adam Heath <doogie@debian.org>
12883 * include/dpkg.h.in, lib/Makefile.in, lib/mlib.c, utils/Makefile.in,
12884 utils/md5sum.c: Moved md5 code into generic buffer_copy loop.
12886 Sun Dec 24 13:59:36 CST 2000 Adam Heath <doogie@debian.org>
12888 * Use DESTDIR when installing /etc/dpkg/origins/dpkg
12890 Sun Dec 24 17:35:12 CET 2000 Wichert Akkerman <wakkerma@debian.org>
12892 * dselect/main.cc: make commandline options work again
12893 * Makefile.conf.in, configure.in,automake/dpkg.m4: revert changes from Adam
12894 * Makefile.conf.in: add @CWARNS@ to CFLAGS
12895 * configure.in: add AC_SUBST for CWARNS
12897 Sun Dec 24 17:05:45 CET 2000 Wichert Akkerman <wakkerma@debian.org>
12899 * scripts/dpkg-genchanges.pl: output descriptions for udebs as well
12901 Sun Dec 24 06:31:55 CST 2000 Adam Heath <doogie@debian.org>
12903 * scripts/dpkg-name.sh: Add -k|--symlink option.
12905 Sun Dec 24 05:58:48 CST 2000 Adam Heath <doogie@debian.org>
12907 * dselect/main.cc: Made the accelerator keys in dselect's main
12908 menu separate options, so that they can be translated separately.
12910 Sun Dec 24 05:31:27 CST 2000 Adam Heath <doogie@debian.org>
12912 * debian/control: Added depends on sysvinit (>= 2.72), so that we
12913 can make sure that /etc/rcS.d exists.
12915 Sun Dec 24 05:24:23 CST 2000 Adam Heath <doogie@debian.org>
12917 * scripts/update-rc.d: Changed documentation and help, as -f only
12918 applies during remove.
12920 Sun Dec 24 05:10:29 CST 2000 Adam Heath <doogie@debian.org>
12922 * main/main.c: Added a --force-all option.
12924 Sun Dec 24 04:32:34 CST 2000 Adam Heath <doogie@debian.org>
12926 * main/main.c: Format help string for --abort-after like other
12927 option help strings.
12929 Sun Dec 24 02:38:38 CST 2000 Adam Heath <doogie@debian.org>
12931 * methods/disk.install, methods/disk.setup, methods/disk.update,
12932 methods/floppy.install, methods/floppy.update, methods/hd.setup,
12933 methods/hd.unpack, methods/hd.update: Fix to pass on admindir
12934 from dselect to dpkg.
12936 Sun Dec 24 01:00:59 CST 2000 Adam Heath <doogie@debian.org>
12938 * scripts/dpkg-source.pl: Minor tweak so that when patch 2.5.4 is
12939 manually used to apply a diff, it doesn't get applied multiple
12942 Sat Dec 23 23:28:52 CST 2000 Adam Heath <doogie@debian.org>
12944 * utils/start-stop-daemon.c: Add --nicelevel, to alter a
12945 programs priority before starting.
12947 Sat Dec 23 22:56:16 CST 2000 Adam Heath <doogie@debian.org>
12949 * main/dpkg.8: Document that --largemem is the default, and that
12950 the test point is 24 megs.
12952 Sat Dec 23 22:53:23 CST 2000 Adam Heath <doogie@debian.org>
12954 * main/dpkg.8: Document that --set-selections does not actually
12955 install any packages.
12957 Sat Dec 23 22:41:47 CST 2000 Adam Heath <doogie@debian.org>
12959 * dpkg-deb/dpkg-deb.1: Fix typo.
12961 Sat Dec 23 22:24:23 CST 2000 Adam Heath <doogie@debian.org>
12963 * scripts/dpkg-divert.pl: Add --truename option.
12965 Sat Dec 23 21:40:32 CST 2000 Adam Heath <doogie@debian.org>
12967 * main/dpkg.8: Document COLUMNS environment variable.
12969 Sat Dec 23 21:20:43 CST 2000 Adam Heath <doogie@debian.org>
12971 * dpkg-deb/extract.c, include/dpkg.h.in, lib/mlib.c,
12972 main/enquiry.c, main/filesdb.c, main/packages.c, main/remove.c,
12973 utils/start-stop-daemon.c: Clean up a few gcc warnings. Note,
12975 "deprecated conversion from string constant to `char *'"
12976 is actually a bug in ncurses-dev(which has been filed as 80410)
12977 not setting the fmt argument as const.
12979 Sat Dec 23 19:33:05 CST 2000 Adam Heath <doogie@debian.org>
12981 * automake/dpkg.m4, configure.in, Makefile.conf.in:
12982 Modified DPKG_C_GCC_TRY_WARNS() to call AC_SUBST, so that we can
12983 use the result of the test during build time.
12985 Sat Dec 23 16:44:25 CST 2000 Adam Heath <doogie@debian.org>
12987 * main/depcon.c: Added description for "suggests" in describedepcon().
12989 Sat Dec 23 16:24:31 CST 2000 Adam Heath <doogie@debian.org>
12991 * debian/dpkg.postinst: Remove bashism.
12993 Sat Dec 23 03:06:19 CST 2000 Adam Heath <doogie@debian.org>
12995 * scripts/cl-debian.pl: Make '#' optional in Closes: tags.
12997 Sat Dec 23 02:11:27 CST 2000 Adam Heath <doogie@debian.org>
12999 * scripts/dpkg-buildpackage.sh: Add -t to -h output.
13001 Fri Dec 22 12:35:43 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13003 * scripts/update-alternatives.8: use FHS instead of FSSTND
13005 Thu Dec 21 19:30:56 CET 2000 peter karlsson <peterk@debian.org>
13007 * po/sv.po, doc/sv/dpkg.8: The "Even Merrier Christmas" update of the
13008 Swedish translation.
13010 Thu Dec 21 03:41:56 CST 2000 Adam Heath <doogie@debian.org>
13012 * debian/changelog: Closes bug 49581, because we don't use
13013 external gzip anymore.
13015 Thu Dec 21 03:35:56 CST 2000 Adam Heath <doogie@debian.org>
13017 * main/enquiry.c: s/--cmpversions/--compare-versions/
13019 Thu Dec 21 03:29:04 CST 2000 Adam Heath <doogie@debian.org>
13021 * main/dpkg.8: Remove duplicate -R(it doesn't set --root).
13023 Thu Dec 21 03:24:38 CST 2000 Adam Heath <doogie@debian.org>
13025 * archtable: Add armv3l.
13027 Thu Dec 21 01:40:02 CST 2000 Adam Heath <doogie@debian.org>
13029 * lib/mlib.c, include/dpkg.h.in: Switch all size parameters to
13030 ssize_t. Also, return totalread, not bytesread, in buffer_copy.
13032 Thu Dec 21 01:22:22 CST 2000 Adam Heath <doogie@debian.org>
13034 * lib/mlib.c: Handle EINTR on reading and writting in buffer_copy.
13036 Thu Dec 21 06:58:21 CET 2000 peter karlsson <peterk@debian.org>
13038 * po/sv.po: The "Merry Christmas" update of the Swedish translation.
13040 Wed Dec 20 12:50:55 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13042 * main/processarc.c: revert change from Adam: reading the trailing
13043 zeroes is essential, not reading them can give us a SIGPIPE
13046 Wed Dec 20 02:41:39 CST 2000 Adam Heath <doogie@debian.org>
13048 * dpkg-deb/build.c, dpkg-deb/extract.c, dpkg-deb/info.c,
13049 include/dpkg-db.h, lib/myopt.c, lib/parse.c, lib/varbuf.c,
13050 lib/vercmp.c, main/archives.c, main/enquiry.c, main/filesdb.c,
13051 main/processarc.c, po/dpkg.pot: Fix -Wall messages.
13053 Wed Dec 20 02:21:43 CST 2000 Adam Heath <doogie@debian.org>
13055 * include/dpkg.h.in: Make {stream,fd}_null_copy use [lf]seek, and fall
13056 back on the buffer code, if stream/fd refer to a pipe.
13058 Wed Dec 20 02:17:56 CST 2000 Adam Heath <doogie@debian.org>
13060 * configure.in, Makefile.conf.in: Move -D_GNU_SOURCE from configure.in
13061 to Makefile, and from CFLAGS to DEFS. This macro was getting lost
13062 if someone was setting CFLAGS on the cmdline. Perhaps this should
13063 be moved into config.h.in?
13065 Wed Dec 20 01:39:30 CST 2000 Adam Heath <doogie@debian.org>
13067 * main/processarc.c: Don't copy trailing zeros from dpkg-deb
13069 * main/archives.c: Fix some i8ln.
13070 * dpkg-deb/extract.c: Remove skipmember(), and use the buffer
13073 Wed Dec 20 01:31:28 CST 2000 Adam Heath <doogie@debian.org>
13075 * lib/nfmalloc.c, lib/parsehelp.c: Lesson the memory footprint.
13077 Wed Dec 20 01:11:13 CST 2000 Adam Heath <doogie@debian.org>
13079 * dpkg-deb/build.c: Fix building of debs, when there is no given
13080 compression on the cmdline.
13082 Wed Dec 20 01:55:59 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13084 * scripts/dpkg-architecture.pl: fix typo / syntax error
13086 Mon Dec 18 07:37:10 CET 2000 peter karlsson <peterk@debian.org>
13088 * po/sv.po: Updated Swedish translation.
13090 Sun Dec 17 13:34:06 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13092 * debian/control: fix typo in Build-Depends and add zlib1g-dev
13094 + lib/mlib.c, include/dpkg.h.in: make do_fd_copy even more modular
13095 + dpkg-deb/{build.c,extract.c,info.c}, lib/showcright.c,
13096 main/{enquiry.c,filesdb.c}: updated for new do_fd_copy routines
13097 + main/{archives,[ch],main/processarc.c}: use fds instead of streams
13098 so we don't mix fd and stream-based IO which can cause havoc
13100 Wed Dec 13 16:48:47 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13102 * main/archives.c: create files, fifos, devices and directories with mode 0
13103 too close a small window when they are readable before we apply the correct
13105 * main/archives.c: newtarobject_allmodes() updated to handle statoverrides
13106 * main/dpkg.8: grammar fix
13108 Tue Dec 12 16:27:59 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13110 * scripts/dpkg-statoverride.pl: fix warning when trying to remove a
13111 non-existing override.
13113 Mon Dec 11 01:10:19 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13115 * debian/control: add gettext to the build-depends
13117 Sun Dec 10 00:10:27 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13119 * lib/mlib.c: remove no longer used struct
13120 * lib/mlib.c: return number of bytes read in do_fd_read
13121 * main/enquiry.c: one more place where we cah use read_fd_vbuf
13123 Sat Dec 09 12:21:35 CET 2000 peter karlsson <peterk@debian.org>
13125 * po/sv.po, doc/sv/deb.5, doc/sv/deb-old.5, doc/sv/dpkg.8:
13126 Updated Swedish translation.
13127 * doc/sv/start-stop-daemon.8: Fixed a typo.
13129 Sat Dec 9 01:51:51 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13131 * archtable, scripts/dpkg-architecture.pl: add linux s/390
13132 * Makefile.conf.in, configure.in: add new option to use libz
13133 * dpkg-deb/Makefile.in, dpkg-deb/build.c, dpkg-deb/extract.c: use libz
13135 * debian/rules: default to using static libz
13136 * include/{dpkg-db.h,dpkg.h.in}, lib/mlib.c, lib/varbuf.c: generalize
13138 * main/filesdb.c: udpates to use read_fd_buf
13140 Tue Dec 05 07:43:05 CET 2000 peter karlsson <peterk@debian.org>
13142 * po/sv.po: Updated Swedish translation.
13144 Mon Dec 4 14:42:01 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13146 * scripts/dpkg-statoverride.pl, main/filesdb.c: merge patch from
13147 Robert Luberda <robert@pingu.ii.uj.edu.pl> to fix statoverrides
13148 using numerical [ug]ids
13149 * Merge updats from the v17 branch:
13150 + scripts/dpkg-buildpackage.sh: Quote test options for usepause
13151 + scripts/dpkg-shlibdeps.pl: resolve library paths using a combination
13152 of the libc major version, and ldconfig -p output. Solves problems
13153 with errant libc5 deps.
13154 + scripts/dpkg-shlibdeps.pl: Make it parse soname's in the format of
13155 "libfoo-X.X.so" (e.g. libdb-3.1.so) and use it. Also make it give a
13156 warning if there is a NEEDED line in the objdump output that we cannot
13158 + scripts/update-rc.d.pl: fix typo in regexp for scripts
13159 + debian/rules: remove final occurance of emacs
13161 Mon Dec 4 01:34:57 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13163 * Merge more of Adams handywork to bring dpkg up to speed (literally :)
13164 + include/dpkg.h.in: remove defines for cat and dpkg-safelist since they
13166 + lib/mlib.c: split up do_fd_copy
13167 + lib/varbuf.c: add varbufvprintf
13168 + lib/parse.c: use memset to initialize fieldencountered
13169 + main/filesdb.c: use new read_fd_into_buf
13171 Sun Dec 3 22:11:22 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13173 * dpkg-deb/extract.c: apply one of Adams do_fd_copy patches
13175 Thu Nov 30 02:45:42 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13177 * scripts/dpkg-statoverride.{pl,8}:
13178 + add new --import option to import settings from /etc/suid.conf
13179 + fix ENOENT issues
13180 + use %owner consistently instead of %owner and %user
13182 Wed Nov 29 17:56:43 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13184 * po/gl.po: updated
13186 Tue Nov 28 18:48:52 CET 2000 peter karlsson <peterk@debian.org>
13188 * po/sv.po: Terminology changes
13190 Sat Nov 25 22:05:19 CET 2000 peter karlsson <peterk@debian.org>
13192 * po/sv.po: Updated Swedish translation
13194 Fri Nov 24 16:49:26 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13196 * scripts/dpkg-scansources.pl: Fix getopt usage since perl5.6 complains
13198 * doc/deb-old.5,doc/deb.5,main/dpkg.8,scripts/dpkg-name.1,
13199 split/dpkg-split.8 : update to reflect that dpkg-deb is in section 1
13201 Thu Nov 23 19:13:21 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13203 * lib/myopt.c: properly chomp read lines
13205 Thu Nov 23 17:52:44 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13207 * lib/fields.c, lib/dump.c: fix two memory leaks
13208 * More Adam Heath patches:
13209 + lib/mlib.c, include/dpkg.h.in: add new option for do_fd_copy to
13211 + dpkg-deb/build.c, lib/info.c, lib/showcright.c: update for new
13213 + dpkg-deb/extract.c: use do_fd_copy to read data instead of reading
13215 * lib/mlib.c: fix error reporting for reading data in do_fd_copy
13216 * optlib/Makefile.am: remove (can't believe this still existed!)
13217 * utils/Makefile.in: link md5sum with our own libintl if needed
13218 * archtable, scripts/dpkg-architecture.pl: add freebsd-i386
13219 * acconfig.h, configure.in, doc/Makefile.in: make building documentation
13220 and start-stop-daemon optional
13221 * main/help.c: only check for start-stop-daemon in checkpatch() if we
13224 Thu Nov 23 15:48:53 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13226 * scripts/dpkg-buildpackage.sh: Name .changes file properly if
13227 we are doing a source-only build
13229 Thu Nov 9 13:53:21 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13231 * doc/Makefile.in: use internals.html/index.html as dependency target
13232 so we only rebuild the docs when really needed
13234 Wed Nov 8 14:55:48 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13236 * Makefile.conf, debian/rules: no longer install any emacs support stuff
13237 * debian/50dpkg-dev.el, scripts/debian-changelog-mode.el: removed
13238 * archtable: add powerpc-linux-gnu entry
13239 * debian/dpkg.conffiles: sync with dpkg-17 tree
13241 Tue Nov 7 22:05:48 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13243 * lib/myopt.c: chop read lines in myfileopt
13245 Tue Nov 7 00:45:00 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13247 * scripts/dpkg-statoverride.8: fix typos
13248 * scripts/dpkg-statoverride.pl:
13249 + replace dpkglibdir with admindir (oops)
13250 + open new file for writing in WriteOverrides
13251 * scripts/update-alternatives.pl: handle the fact that the Makefile
13252 changes our $admindir assignment so we have to manually add
13253 "/alternatives" to the path
13255 Mon Nov 06 07:24:11 CET 2000 peter karlsson <peterk@debian.org>
13257 * po/sv.po: Updated.
13259 Sun Nov 5 16:28:26 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13261 * debian/dpkg.conffiles: added missing file
13262 * debian/rules, main/main.c: rename dpkg configfile to dpkg.cfg
13263 * debian/rules, debian/origin: add new origin file
13264 * scripts/dpkg-gencontrol.pl: rename Bugs-Submit-To to Bugs
13265 * debian/control: add Bugs and Origin entries
13266 * lib/database.c, parse.c: add Origin and Bugs to fieldinfos table
13267 * include/dpkg-db.h: add Origin and Bugs to pkginfoperfile struct
13268 * dpkg-deb/main.c, dpkg-deb/dpkg-deb.h: fix type for compression
13269 * Makefile.in: install origin file
13270 * scripts/dpkg-buildpackage.sh: fix logic error in source-only building
13271 * scripts/dpkg-source.pl: handle Bugs and Origin tags
13273 Sun Nov 5 10:00:31 EST 2000 Ben Collins <bcollins@debian.org>
13275 * Create branch point for versioned provides
13276 * Revert patches for it from the HEAD
13278 Sun Oct 29 23:33:48 CET 2000 peter karlsson <peterk@debian.org>
13280 * po/sv.po: some corrections
13282 Sun Oct 29 01:47:59 CEST 2000 peter karlsson <peterk@debian.org>
13284 * po/sv.po: translated readfail message parameters from extract.c
13286 Sat Oct 28 15:41:04 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13288 * scripts/dpkg-genchanges.pl: make a missing package a warning instead
13290 * dpkg-deb/extract.c: mark readfail message parameters as translateable
13292 Wed Oct 25 00:14:06 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13294 * po/nl.po: new Dutch translation from Ivo Timmermans
13296 * configure.in: add nl to linguas
13298 Thu Oct 19 00:59:40 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13300 * utils/start-stop-daemon.c
13301 + fix a buffer overflow in cmdname handling
13302 + Only abort if we fail to open an existing pidfile
13303 * utils/start-stop-daemon.8: update formating
13305 Wed Oct 18 17:48:15 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13307 * scripts/dpkg-source.pl: patch from Colin Watson to not rename a
13310 Mon Oct 16 10:45:47 EDT 2000 Ben Collins <bcollins@debian.org>
13312 * main/packages.c: Hack up things so a package which
13313 provides/conflicts/replaces it's own virtual can be installed (can't
13314 be removed yet, but hey...)
13316 Sat Oct 7 22:18:43 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13318 * po/gl.po, configure.in: add new Galician translation from Alberto Garcia
13319 * po/pt_BR.po, configure.in: add new Brazilian translation from
13321 * THANKS: add Alberto and Carlos
13323 Wed Oct 4 16:37:08 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13325 * main/processarc.c: read trailing zeroes from tar output
13327 Tue Oct 03 23:13:59 CEST 2000 peter karlsson <peterk@debian.org>
13329 * po/sv.po: Updated Swedish translation.
13331 Sun Oct 1 20:09:42 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13333 * main/enquiry.c: fix the listpackage output logic
13334 * main/filesdb.c: fix error cleanup in ensure_statoverride
13335 * lib/myopt.[ch]: add myoptfile() so we can read configuration files
13336 * main/main.c: call new myoptfile()
13337 * include/Makefile.in, include/dpkg.h.in: add dpkgconfdir
13339 Mon Sep 25 16:19:05 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13341 * scripts/dpkg-divert.pl: don't print version twice on --help
13343 Thu Sep 21 16:29:32 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13345 * debian/shlibs-default.template: removed
13346 * debian/shlibs-{default,override}: new files
13347 * debian/rules: install shlibs-{default,override} in /etc/dpkg in dpkg-dev
13348 * scripts/{dpkg-buildpackage.sh,dpkg-genchanges.pl}: add -S option to only
13350 * scripts/dpkg-source.1: document new -S option
13352 Sun Sep 17 01:50:34 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13354 * scripts/dpkg-source.1: document -k option for dpkg-buildpackage
13356 Sat Sep 16 22:55:49 CEST 2000 peter karlsson <peterk@debian.org>
13358 * doc/sv/822-date.1, doc/sv/dpkg-split.8: Initial Swedish translation.
13359 * doc/sv/Makefile.in: Added more Swedish manual pages to install.
13360 * po/sv.po: Fixes and updates.
13362 Fri Sep 15 23:45:21 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13364 * THANKS: update email address for dhd
13365 * merge hppa fixed from dhd:
13366 + archtable: add hppa, fixup SuperH entries
13367 + scripts/dpkg-architecture.pl: add hppa
13368 + config.sub, config.guess: updated to support hppa
13369 + main/enquiry.c: fix printarch()
13371 Fri Sep 15 08:00:44 CEST 2000 peter karlsson <peterk@debian.org>
13373 * po/sv.po: Some consistency changes for the translation.
13374 * doc/sv/deb.5, doc/sv/dpkg.8, doc/sv/dselect.8: Translation fixes.
13376 Thu Sep 14 22:31:15 CEST 2000 peter karlsson <peterk@debian.org>
13378 * po/sv.po: Updated Swedish translation.
13379 * doc/sv/deb-control.5, doc/sv/deb-old.5, doc/sv/dpkg.8, doc/sv/md5sum.1,
13380 doc/sv/start-stop-daemon.8: Initial Swedish translation.
13381 * doc/sv/Makefile.in: Added more Swedish manual pages to install.
13383 Sun Sep 10 23:31:02 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13385 * scripts/dpkg-scanpackages.pl: modify to use most recent version
13386 of a package if multiple versions are found
13388 Sat Sep 9 21:17:37 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13390 * debian/control: add dependency on binutils for dpkg-dev (needed for
13392 * scripts/dpkg-shlibdeps.pl: really make it do what the documentation
13394 * scripts/update-alternatives.pl:
13395 + set alternative to manual mode when doing --config
13396 + Fix typo in test for removed manual alternative
13397 + Merge patch from Camm Maguire to fix updating of slave links
13399 Fri Sep 8 12:28:34 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13401 * configure.in: add de to ALL_LINGUAS
13402 * po/de.po: New German translation from Hartmut Koptein
13403 * THANKS: Add Hartmut
13404 * main/enquiry.c: fix silly type error
13405 * scripts/dpkg-divert.pl: change $dpkglibdir to $admindir
13406 * scripts/Makefile.in: set $admindir as well in scripts
13408 Tue Sep 5 20:28:17 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13410 * scripts/dpkg-source.1: note that dpkg-shlibdeps uses objdump now
13412 Sat Sep 2 18:29:56 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13414 * archtable, scripts/dpkg-architecture.pl: add entries for SuperH
13416 Wed Aug 30 14:24:53 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13418 * main/enquiry.c: modify listformatstring() to check if output is
13419 being sent to a tty. If not and no COLUMNS is set use a width of 80
13421 Mon Aug 21 12:58:15 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13423 * lib/lock.c, main/filesdb.c, main/archives.c, main/configure.c,
13424 dpkg-deb/build.c, dpkg-deb/extract.c: updates from Chip Salzenberg
13425 to clean up fd handling
13427 Thu Aug 10 21:08:00 CEST 2000 peter karlsson <peterk@debian.org>
13429 * po/sv.po: More corrections and translation updates.
13431 Mon Aug 7 12:02:16 PDT 2000 Wichert Akkerman <wakkerma@debian.org>
13433 * main/enquiry.c: cache value of packagelist formatstring instead
13434 of recreating it for every package
13436 Tue Aug 1 10:56:52 EDT 2000 Ben Collins <bcollins@debian.org>
13438 * main/packages.c: fix thinko with versioned deps
13439 * debian/rules:clean: remove distclean call, we purge the whole build
13441 * main/main.c: add --assert-versioned-provides option
13442 main/main.h: prototype it
13443 main/enquiry.c: add assertverprov()
13445 Mon Jul 31 23:38:56 EDT 2000 Ben Collins <bcollins@debian.org>
13447 * archtable: add ia64; revert sparc64 so that it turns into sparc. There
13448 wont be a full binary-sparc64 port.
13449 * dselect/main.cc: small fixups to get it to compile with gcc-2.96
13451 Wed Jul 26 21:27:30 CEST 2000 peter karlsson <peterk@debian.org>
13453 * po/sv.po: Updated translation.
13455 Sun Jul 23 15:23:15 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13457 * main/enquiry.c: mark another string as translateable
13459 Sun Jul 16 12:43:59 EDT 2000 Wichert Akkerman <wakkerma@debian.org>
13461 * scripts/dpkg-gencontrol.pl: add Origin, Submit-Bugs-To and
13462 Submit-Bugs-Style fields.
13463 * scripts/dpkg-source.1: slight formatting update
13464 * debian/copyright: merge two entries for Miquel van Smoorenburg
13466 Sat Jul 15 14:55:00 CEST 2000 peter karlsson <peterk@debian.org>
13468 * po/sv.po: More corrections.
13470 Thu Jul 13 10:22:43 EDT 2000 Wichert Akkerman <wakkerma@debian.org>
13472 * lib/fields.c: make a non-exact versioned provides a warning instead
13475 Tue Jul 4 17:29:06 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13477 * main/enquiry.c: modify getttywidth() to check COLUMNS environment
13478 * scripts/controllib.pl: remove warnings for LOGNAME stuff
13480 Wed Jun 28 19:50:00 CEST 2000 peter karlsson <peterk@debian.org>
13482 * po/sv.po: Updated Swedish translation from comments received.
13484 Wed Jun 28 00:04:40 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13486 * lib/showcright.c: don't translate function-name in do_fd_copy call
13488 Tue Jun 27 19:19:00 CEST 2000 peter karlsson <peterk@debian.org>
13490 * po/sv.po: Updated Swedish translation from comments received.
13492 Sat Jun 17 21:57:00 CEST 2000 peter karlsson <peterk@debian.org>
13494 * po/sv.po: Updated Swedish translation.
13495 * THANKS: Updated my e-mail address.
13497 Fri Jun 16 08:59:47 EDT 2000 Ben Collins <bcollins@debian.org>
13499 * main/depcon.c: really fixup versioned provides this time. basically we
13500 ignore the dvr_* of the provide, and use the version to decide if we
13501 want to use it to satisfy the dep
13502 * main/enquiry.c: ignore dvr_* type when checking for provides
13504 Thu Jun 15 13:41:28 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13506 * lib/parse.c: add Enhances to fieldinfos[]
13508 + initialize dop->backrev as well when creating new dependency
13509 + only allow exact version relations when dealing with provides
13510 * TODO: remove versioned provides
13511 * debian/rules: don't fail if make clean fails (which happens on a
13514 Thu Jun 15 10:09:03 EDT 2000 Ben Collins <bcollins@debian.org>
13516 * main/depcon.c: remove if() that prevented versioned deps from checking
13517 provides to satisfy them
13518 * dselect/pkgsublist.cc: Same
13520 Tue Jun 13 22:11:22 CEST 2000 peter karlsson <peter@softwolves.pp.se>
13522 * po/sv.po: Updated Swedish translation
13524 Tue Jun 13 19:23:37 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13526 * scripts/dpkg-statoverride.pl:
13527 + fix two typos in the help message
13528 + Add code to implement --update when adding an override
13529 * scripts/dpkg-statoverride.8: new file
13530 * debian/dpkg.postinst: create statoverride file if it doesn't exist
13532 Mon Jun 12 19:38:17 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13534 * scripts/dpkg-statoverride.pl: fix two typos in the help message
13535 * debian/dpkg.postinst: create statoverride file if it doesn't exist
13537 Mon Jun 12 16:35:26 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13539 * configure.in: generate doc/sv/Makefile as well
13540 * main/filesdb.c: fix logic when reading statusoverride-file
13541 * scripts/.cvsignore: add all the perl scripts
13542 * scripts/dpkg-divert.pl:
13543 + turn $admindir into $dpkglibdir, which the Makefile will handle
13544 + fix glob->regexp logic for --list
13545 * scripts/Makefile.in:
13546 + replace one `sed' with `$(SED)'
13547 + add dpkg-statoverride
13548 * scripts/dpkg-statoverride.pl: new util to manage statoverrides
13549 * debian/rules: move Swedish manpages into the package as well
13551 Fri Jun 9 15:52:28 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13553 * Merge things from the potato branch:
13555 + THANKS: Add Lele Gaifax
13556 + configure.in: add Italian to LINGUAS
13557 + doc/sv: new directory with Swedish manpages
13558 + doc/*: removed "GNU/Linux" since this runs on HURD as well
13559 + doc/ja/update-alternatives.8: new version
13560 + dpkg-deb/main.c: remove preprocessor define from gettextized string
13561 + dselect/main.c: remove preprocessor define from gettextized string
13562 + lib/showcright.c: remove preprocessor define from gettextized string
13563 + main/enquiry.c: can't use prepocessor defines in a gettextized string
13564 + dselect/pkgdisplay.cc: Replace empty string for eflags with a space
13565 + dselect/pkgsublist.cc: mark another string as translateable
13566 + dselect/pkgtop.cc: change code to reflect that the empty case for
13567 an eflagstring is now a single space, not an empty string (since
13568 gettext can't handle empty strings).
13569 + main/help.c: allocate a bit more space for the path buffer in checkpath()
13570 + main/main.c: fix location of --abort-after in --help output
13571 + scripts/debian-changelog-mode.el: fix documentation string for
13572 debian-changelog-finalise-last
13573 + scripts/dpkg-source.pl: fix typo
13574 + scripts/udate-alternatives.8: fixed errors found while Japanese
13575 translation was made.
13576 * methods/Makefile.am: removed
13578 Sun May 28 17:24:09 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13580 * dpkg-deb/build.c: remove extra closing brace
13581 * include/dpkg.h.in: add define for statusoveride file
13582 * main/filedb.[ch]: add code to manage the statoverride list
13583 * main/archives.c: modify tarobject() to check for statoverrides
13584 * TODO: remove integrating suidmanager note, it's partially done now
13586 Sun Apr 30 14:19:41 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
13588 * doc/*: remove all references to GNU/Linux and just mention `Debian
13589 system': we just as well on other operating systems.
13590 * scripts/dpkg-source.pl: add Format-field to .dsc files
13591 * debian/changelog: include changes from 1.6.12.99
13593 Sat Apr 15 14:53:23 EDT 2000 Wichert Akkerman <wakkerma@debian.org>
13596 * debian/rules: explicitly strip the setgid bit for debian/tmp-*.
13597 This is needed since the kernel copies it when we create subdirs
13598 and install doesn't strip it even though we explicitly ask for
13599 a mode 755 directory. Updated clean target to run make distclean
13600 to remove generated sourcefiles as well.
13601 * dpkg-deb/build.c: add comments to describe what we are doing.
13602 Add code to get a list of files to be added to the archive, reorder
13603 it and feed it to tar and use this to put symlinks after all other
13605 * scripts/dpkg-gencontrol.pl: add dpkg:Version and dpkg:UpstreamVersion
13606 to list of substvars
13608 Thu Apr 13 09:57:52 EDT 2000 Wichert Akkerman <wakkerma@debian.org>
13610 * configure.in: add -D_GNU_SOURCE to CFLAGS so we can get strsignal
13611 * scripts/dpkg-genchanges.pl: output Changed-By just after Maintainer
13612 * scripts/cl-debian.pl: really allow a single whitespace to between # and
13613 a bugnumber that will be closed.
13614 * Synchronize with potato-branch again:
13615 + scripts/dpkg-divert.pl: fixed typo
13616 + debian/dpkg-dev.{postinst,prerm}: remove emacsen-common stuff
13617 + po/{es,sv}.po: updated
13618 + debian/changelog: include changes for 1.6.12
13619 + dpkg-genchanges: recognize non-deb packages (tarballs, such as
13620 dpkg-non-deb and boot-floppies disk tarballs). This makes sure that we
13621 include them when figuring up the Arch field in the .changes
13622 + scripts/dpkg-buildpackage.sh: Don't default to no signing until
13623 after we parsed the options, otherwise we will miss overrides.
13625 Wed Apr 12 19:06:27 EDT 2000 Wichert Akkerman <wakkerma@debian.org>
13627 * scripts/dpkg-genchanges.pl: add dpkg:Version and dpkg:UpstreamVersion
13628 to list of substvars
13630 Sat Mar 18 19:08:20 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13632 * Synchronize with potato-branch again:
13633 + scripts/dpkg-buildpackage: improve test for default signcommand
13634 + po/ja.po: updated
13635 + dselect/*.cc: remove includes for signal.h and curses.h
13636 + dselect/dselect.h: include both signal.h and curses.h and #undef
13637 the ERR from sys/ucontext.h which breaks curses
13638 + scripts/dpkg-divert.pl: fix syntax error
13640 Sat Mar 4 16:52:38 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13642 * Synchronize with potato-branch again:
13643 + debian/changelog: update to 1.6.10
13644 + scripts/dpkg-divert.pl: reinstate last writeability-patch. Modified
13645 to not abort on ENOENT: this indicates a directory does not (yet)
13646 exist. If this happens don't try to rename.
13647 + scripts/update-alternatives.pl:
13648 + update usage-warning to reflect the new --config option
13649 + Document some global variables
13650 + Switch back to auto-mode when removing a manually selected alternative
13651 + dselect/{dselect.h,main.cc,pkglist.cc}: remove CAN_RESIZE stuff
13652 + dselect/methlist.cc: don't abort if getch fails due to interrupted syscall
13653 + dselect/pkglist.cc: don't abort if getch fails due to interrupted syscall
13654 + dselect/baselist.cc: put debug-statement in sigwinchhandler and
13655 actually resize the current terminal before redisplaying the screen
13657 Thu Mar 2 17:03:04 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13659 * dselect/methkeys.cc: remove old bindings for `n' and `p', which
13660 frees `n' to do searchagain
13662 Mon Feb 28 15:12:05 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13664 * utils/Makefile.in: fix link command for start-stop-daemon
13666 Mon Feb 21 18:05:55 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13668 * dselect/pkgsublist.cc: mark another string as translateable
13670 Thu Feb 17 22:01:38 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13672 * doc/ja/dselect.8: Updated
13674 Wed Feb 16 17:13:09 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13676 * dselect/pkgtop.cc: flag two more strings as translateable
13678 Tue Feb 15 19:57:45 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13680 * Merge the potato branch:
13681 * main/dpkg.8: don't list all authors but refer to THANKS file
13682 * debian/control: correct Build-Dependencies for ncurses
13683 * debian/control: update extended description to not list dependencies
13685 * Update lots of documentation
13686 * main/enquiry.c: handle failed open of /dev/tty
13687 * main/remove.c: revert earlier patch from Oct 11 1999 to remove
13688 conffiles before removing directories. Due to the changed execution
13689 order conffiles were no longer around when the postrm was run.
13690 which is not what we want.
13691 * methods/Makefile.in: create $(admindir)/methods/mnt
13692 * scripts/dpkg-gencontrol.pl: undo Source-Version changes
13693 * scripts/dpkg-source.pl: remove sticky bits from directory when
13695 * scripts/install-info.pl: partially apply patch from Jammin Wheeler
13696 <jammin@life.eu.org> to clean up errors
13697 * scripts/update-alternatives.pl: implement --verbose
13699 Sun Feb 13 01:06:46 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13701 * scripts/dpkg-buildpackage.sh: we know that dpkg-architecture is
13702 installed since we provide it, so don't test for its existance
13703 * More updates from Marcus Brinkman:
13704 + archtable: Change first column format from CPU to CPU-OS.
13705 Add entry for i386-gnu. Update comment.
13706 + configure.in: Check Debian architecture revamped:
13707 More appropriate check title. Check for CPU-OS in arhctable (instead
13708 just CPU). Enclose result message in [...] (because of the comma
13709 character). After the test, $dpkg_archset can't be empty, so remove
13710 following test which is always true.
13711 + Remove internal use of --print-architecture:
13712 scripts/controllib.pl: Use always dpkg-architecture -qDEB_HOST_ARCH
13713 scripts/dpkg-buildpackage: Don't set $arch at command line parsing time,
13714 instead, always set it later with dpkg-architecture -qDEB_HOST_ARCH
13715 dpkg-name.pl: Fall back to dpkg --print-installation-architecture.
13717 Sat Feb 12 17:11:33 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13719 * configure.in: don't try to outguess what CFLAGS should be
13720 * scripts/update-alternatives.8: fix typo
13721 * `Merge Marcus Brinkman patches day':
13722 + scripts/dpkg-architecture.pl: architecture -q should not imply -f
13723 + scripts/dpkg-shlibdeps.pl: build a list of packages instead of
13724 overwriting previous results.
13725 + utils/start-stop-daemon.c: update HURD specifics
13726 + configure.in: revamp HURD detection stuff
13727 + debian/rules: use dpkg-buildarchitecture to get proper info,
13728 set config_arg if we are crosscompiling
13729 + debian/rules: typo in clean target, scan start-stop-daemon for
13732 Tue Feb 8 21:33:58 EST 2000 Ben Collins <bcollins@debian.org>
13734 * main/{processarc,archive}.c: Make the conflictor an array of structs and
13735 make sure that check_conflicts uses that and increments a global indexs
13736 for the array. The reason that multiple conflicts/replaces were getting
13737 borked had something to do with thre first one in the hash not being
13738 processed. This was the result of bad pointer games, so this makes it a
13741 Wed Jan 19 16:41:04 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13743 * scripts/controllib.pl: add comment with description of global variables
13744 * scripts/dpkg-genchanges.pl:
13745 + add comment with description of global variables
13746 + Change Format number to 1.7
13747 + `Maintainer' is now the actual maintainer as listed in control
13748 + add `Changed-By' field with maintainer as listed in changelog. Add -e
13749 flag to override this value
13750 * scripts/dpkg-buildpackage.sh: pass -e on to dpkg-genchanges
13751 * scripts/dpkg-source.1: document new -e option, update copyright
13753 Mon Jan 17 21:20:35 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13755 * dselect/Makefile.in: not all shells support == for strings comparisons
13756 * version-nr: update to 1.6.8
13757 * scripts/dpkg-shlibdeps.pl: update to version from dpkg_test_bz2_syslog_sigs
13759 + use objdump instead of ldd
13760 + correct checks on shlibs.local
13762 Sun Jan 16 22:07:12 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13764 * main/dpkg.8: note that --force-overwrite is off by default
13765 * po/.cvsignore: add all the .gmo files
13767 Sat Jan 15 03:48:47 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13769 * doc/ja/dpkg-deb.5: updated with patch from Hiroshi KISE <fuyuneko@ryukyu.ne.jp>
13770 * THANKS: Add Hiroshi KISE
13772 Tue Jan 11 03:34:22 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13774 * scripts/dpkg-genchanges.pl: also upload full source if version is *-0.1
13775 * doc/ja/dpkg.8: updated with patch from Hiroshi KISE <fuyuneko@ryukyu.ne.jp>
13777 Tue Jan 11 18:32:52 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13779 * configure.in: Fix include in test for alphasort
13780 * Makefile.in: add intl to subdirectory-list
13781 * dpkg-deb/Makefile.in: set top_builddir
13782 * dselect/Makefile.in: set top_builddir
13783 * main/Makefile.in: set top_builddir
13784 * lib/compat.c: add really simple snprintf (doesn't do range-checking)
13785 * lib/compat.c: add sys_siglist
13786 * configure.in: add tests for snprintf and sys_siglist
13787 * include/dpkg.h.in: don't include sys/sysinfo.h, filesdb.c is the only
13788 thing that needs it and it has its own include.
13790 Tue Jan 11 02:02:00 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13792 * dselect/baselist.cc: don't specify SA_INTERRUPT, since it's
13793 not portable and the default behaviour
13794 * main/enquiry.c: include sys/termios.h (needed on Solaris)
13795 * lib/lock.c: use EACCESS instead of EWOULDBLOCK
13796 * dselect/main.cc: fix help for -D
13797 * dselect/main.cc: try to lock admindir instead of using readwrite
13798 * dselect/method.cc: switch to using fcntl for lock since that is more
13799 portable, and revamp lockingcode to reduce code duplication
13801 Mon Jan 10 20:55:45 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13803 * Update Swedish and Russian translation
13805 Sun Jan 9 16:11:39 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13807 * Merge patches from Josip Rodin:
13808 + various text and manpage updates
13809 + dselect/method.cc: don't abort if locking fails but give a
13811 + THANKS: fix various small errors
13813 Sun Jan 9 01:40:23 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13815 * scripts/cl-debian.pl: Allow space between `#' and the bugnumber in the
13817 * scripts/start-stop-daemon.c: test for __sparc__ instead
13818 * scripts/Makefile.in: add optlib to CFLAGS
13819 * utils/start-stop-daemon.c: add option to chroot first, patch from Marco d'Itri
13820 * utils/start-stop-daemon.8: document chroot option
13821 * dselect/pkgtop.cc: use waddnstr to print package description instead of waddch
13823 Fri Jan 7 18:24:45 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13825 * dselect/method.cc: pass admindir to dpkg
13826 * dselect/Makefile.in: fix rule to build helpmessages
13827 * dselect/curkeys.h: use curses.h instead of ncurses.h, since someone
13828 decided to play nasty and just remove that
13829 * scripts/: remove dpkg-safelist
13830 * dpkg-deb/build.c: remove dpkg-safelist calls
13831 * main/enquiry.c: redo formula to get fieldwidths for packages
13833 Wed Jan 5 17:09:45 CET 2000 Wichert Akkerman <wakkerma@debian.org>
13835 * Merge patch from Tom Lees <tom@lpsg.demon.co.uk>:
13836 + scripts/dpkg-buildpackage.sh: support debsign
13837 * scripts/update-alternatives.8: fix wrong order of parameters
13839 * Updated Polish translation
13841 Sun Dec 26 01:31:08 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13843 * Update copyright for Swedish translation to SPI instead of Debian
13845 Sat Dec 25 04:04:48 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13847 * dselect/pkgtop.cc: use waddnstr instead of waddch so we don't strip
13848 the 8th bit of characters
13849 * Replace `Debian Linux' with `Debian GNU/Linux' in some more places
13850 * Update Spanish translation
13851 * main/enquire.c: always use a minimum width of 80 in list1package
13852 * debian/rules: install dpkg-safefilelist
13854 Sat Dec 25 02:50:31 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13856 * Oops, forgot to add scripts/dpkg-safefilelist.{1,pl}
13857 * debian/control: remove double empty line
13858 * dpkg-deb/main.c: Fix help-message
13860 Fri Dec 24 17:34:30 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13862 * version-nr: update to 1.6.5
13863 * doc/Makefile.in: install THANKS
13864 * TODO: remove items that have been done
13865 * lib/showcright.c: exit(0) after showing the copyright since
13866 we don't exec cat anymore
13867 * Patch from David Huggins-Daines <dhd@eradicator.org>:
13868 + main/configure.c: add NULL to execlp() parameters; this fixes the random
13869 segfaults when showing the conffile-diff
13871 Fri Dec 24 15:35:29 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13873 * debian/control: add Build-Depends
13874 * THANKS: new file which lists everyone who contributed to the code
13875 * Change `Debian Linux' to `Debian GNU/Linux' in a couple of manpages
13876 * main/enquiry.c: modify list1package to use the full width of the tty
13877 * main/main.c: fix wrong call to fputs
13878 * Merge patches from Adam Heath:
13879 + lib/mlib.c: new function do_fd_copy to read a file into a fd
13880 + dpkg-deb/build.c: use do_fd_copy
13881 + dpkg-deb/build.c: use dpkg-deb-filelist to reorder files when
13883 + dpkg-deb/info.c: use do_fd_copy
13884 + lib/showcright.c: use do_fd_copy to read license
13885 + scripts/dpkg-safelist.{1,pl}: new script to reorder a filelist to
13886 make sure symlinks are listed after their targets.
13887 + dpkg-deb/main.c: add -z option to set compression level
13888 + dpkg-deb/build.c: pass new -z options to gzip
13889 * dpkg-deb/dpkg-deb.1: document new -z option
13891 Wed Dec 22 13:41:41 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13893 * main/main.c: cleanup printversion
13895 Wed Dec 22 12:07:40 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13897 * debian/dpkg-doc.postrm: Use doc-name instead of file-name (probably
13898 need to change the filename, but I'll be lazy now :)
13899 * dselect/pkgdisplay.cc: Replace empty string for eflags with a space
13900 so gettext doesn't use the translation-info
13901 * po/update.sh: Generate dselect/helpmsgs.{cc,h} so we can translate them.
13902 * po/POTFILES.in: add dselect/helpmsgs.cc
13903 * dselect/Makefile.in: put helpmsgs.{cc,h} in $(srcdir), since gettext
13904 will barf on us if we put them in the builddir. (The real issue here is
13905 that when we generate the .po-files we don't know what the builddir will
13906 be and gettext can't handle VPATH).
13907 * dselect patches from Dan Gohman <gohmandj@mrs.umn.edu>:
13908 + dselect/pkgtop.cc: use ACS_HLINE instead of `-'
13909 + dselect/baselist.cc: change colour of column headings
13910 + dselect: add a new --expert mode which suppresses the display of the
13913 Tue Dec 21 15:59:35 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13915 * scripts/dpkg-scansoures.pl: don't use \z since that is perl5.005-specific.
13916 Patch from Roderick Schertler <roderick@argon.org>
13917 * debian/rules: fix typo so cleanup-info.8 actually gets installed
13919 Fri Dec 17 00:41:50 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13921 * Makefile.conf.in: use @libdir@ and @admindir@
13922 * configure.in: add --with-admindir option and change the default
13924 * debian/rules: add --with-admindir=/var/lib/dpkg
13925 * scripts/debian-changelog-mode.el: update location of GPL
13926 * scripts/dpkg-name.sh: update location of GPL
13928 Thu Dec 16 15:20:11 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13930 * utils/start-stop-daemon.c: Fix OS-detection for sunos
13931 * utils/update-rc.d: Accept single-number values, since they are
13932 always in the [0,99] range
13934 Wed Dec 15 16:08:47 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13936 * autogen.sh: copy gettextm4, lcmessage.m4 and progtest.m4 to automake/
13937 for systems without gettext installed
13938 * Makefile.in: remove the gettext-macros in distclean
13939 * utils/Makefile.in: fix clean target, link md5sum and start-stop-daemon
13941 * optlib/*: getopt implementation for systems without GNU getopt.
13943 Wed Dec 15 00:18:30 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13945 * configure.in: Add option to disable building dselect
13946 * configure.in: Test for ptrdiff_t and stddef.h
13947 * config.h.bot: iclude stddef.h if it exists
13948 * Add config.sub and config.guess
13950 Tue Dec 14 20:08:58 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13952 * automake/sysconf.m4: really add the file this time
13953 * po/sv.po: new version with minor corrections
13954 * main/depcon.c: minor corrections to depisok()
13955 * scripts/dpkg-buildpackage.sh: fix -nc option
13957 Mon Dec 13 15:18:03 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13959 * scripts/dpkg-gencontrol.pl: use findarch to get the architecture
13961 Sun Dec 12 23:59:25 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13963 * dselect/main.cc: We need to printf programdesc as well
13964 * autogen.sh: Remove libtoolize call
13965 * automake/sysconf.m4: new autoconf-macros for sysconf
13966 * filesdb/main.c: also check MEMINFO_IN_SYSINFO
13967 * configure.in: remove ugly sysinfo-hacks to use new ac macros instead
13968 * utils/start-stop-daemon.c: modify to build on sunos
13970 Sun Dec 12 17:20:12 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13972 * Update the Swedish translation
13973 * start-stop-daemon.c: check exitnodo-flag if we fail to kill a
13976 Sun Dec 12 00:41:01 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13978 * Add Swedish translation from Peter Karlsson <pk@mds.mdh.se>
13980 Wed Dec 8 01:36:35 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13982 * Update Czech translation
13984 Tue Dec 7 17:41:17 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13986 * Drop the emacs bytecompile-stuff completely
13988 Tue Dec 7 14:08:21 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13990 * Fix display of copyright in menu
13992 Tue Dec 7 01:26:21 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13994 * Comment changes made in pkgdepcon.cc; they're not completely
13997 Mon Dec 6 01:37:08 CET 1999 Wichert Akkerman <wakkerma@debian.org>
13999 * Correct uid/gid-changes in start-stop-daemon, patch from
14000 Topi Miettinen <Topi.Miettinen@nic.fi>
14002 Sun Dec 5 18:09:36 CET 1999 Wichert Akkerman <wakkerma@debian.org>
14004 * Add manpages from Josip Rodin <joy@cibalia.gkvk.hr> for
14005 cleanup-info and dpkg-divert
14006 * New dpkg-scansources from Roderick to allow trailing blanks on lines
14007 * Correct generation of manual-version
14008 * Merge patch from Richard Kettlewell <rjk@sfere.greenend.org.uk> to
14009 eliminate string copies while reading .list files
14010 * Fix earlier translation-patch for dselect so it builds again
14012 Sat Dec 4 04:22:49 CET 1999 Wichert Akkerman <wakkerma@debian.org>
14014 * Update the polish translation
14016 Mon Nov 29 21:11:35 CET 1999 Wichert Akkerman <wakkerma@debian.org>
14018 * Change default lispdir to $(prefix)/emacs/site-lisp/$PACKAGE
14020 Sun Nov 28 21:56:32 CET 1999 Wichert Akkerman <wakkerma@debian.org>
14022 * dselect/pkgdepcon.cc: don't treat recommends like (pre-)depends.
14023 Instead make it similar to suggests but default to selecting the package.
14025 Sat Nov 27 09:46:26 EST 1999 Ben Collins <bcollins@debian.org>
14027 * utils/start-stop-daemon.c: call initgroups() prior to seteuid()
14029 Fri Nov 26 18:36:22 EST 1999 Ben Collins <bcollins@debian.org>
14031 * dselect/main.cc: fixed three cases where gettext usage was not
14032 possible die to macros inlined in the strings
14034 Fri Nov 26 18:09:17 EST 1999 Ben Collins <bcollins@debian.org>
14036 * configure.in: generate utils/Makefile
14037 * utils/configure.in: removed so top level configure will take over this
14040 Fri Nov 26 02:21:56 CET 1999 Wichert Akkerman <wakkerma@debian.org>
14042 * Fix .so-entries for script manpages
14044 Thu Nov 25 23:59:24 CET 1999 Wichert Akkerman <wakkerma@debian.org>
14046 * Correct location of documentation in debian/dpkg-doc.doc-base
14048 Thu Nov 25 04:55:18 CET 1999 Wichert Akkerman <wakkerma@debian.org>
14050 * Correct name of source tarball in debian/rules
14052 Thu Nov 25 03:45:23 CET 1999 Wichert Akkerman <wakkerma@debian.org>
14054 * Merge the new buildsystem from the wta_build branch. If you want
14055 the old buildsystem check the last-of-automake tag
14057 Fri Nov 19 15:04:10 CET 1999 Wichert Akkerman <wakkerma@debian.org>
14059 * `n' is also searchagain in dselect now
14060 * Do searchagain if an empty searchstring is entered
14062 Thu Nov 18 10:27:35 EST 1999 Ben Collins <bcollins@debian.org>
14064 * utils/start-stop-daemon.c: Added ability for user.group arg to
14065 --chuid. Also, always call initgroups() when using --chuid.
14066 * utils/start-stop-daemon.8: Document above change, also add note to the
14067 --make-pidfile option concerning its problem with daemons that fork
14069 Fri Nov 12 21:21:21 CET 1999 Wichert Akkerman <wakkerma@debian.org>
14071 * Rename japanses translation to just jp
14073 Thu Nov 11 20:14:02 EST 1999 Ben Collins <bcollins@debian.org>
14075 * lib/tarfn.c: add braces around if to fix compiler warning
14077 Fri Nov 12 01:47:24 CET 1999 Wichert Akkerman <wakkerma@debian.org>
14079 * Correct names for build-depency names according to Bug# 49792
14080 * .. and for dpkg-source.pl as well
14082 Mon Nov 8 17:45:50 CET 1999 Wichert Akkerman <wakkerma@debian.org>
14084 * Add support for enhances to dpkg and dselect. dselect doesn't
14085 take any action on it yet though
14087 Tue Nov 2 20:19:48 CET 1999 Wichert Akkerman <wakkerma@debian.org>
14089 * Fix some language mixups: our Polish translation was actually
14090 Czech, and we somehow lost the real Polish text..
14092 Mon Nov 1 23:25:32 CET 1999 Wichert Akkerman <wakkerma@debian.org>
14094 * Add partial Russian translation from Michael Sobolev <mss@transas.com>
14096 Sat Oct 30 16:22:00 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14098 * Fix file conflict between dpkg-dev, dpkg
14099 * Move changelog.manual to dpkg-doc
14101 Sat Oct 30 03:31:30 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14103 * Make it all build again
14104 * retro-actively add this ChangeLog entry
14105 * Removed bogus po/dpkg.po file
14106 * No longer translater internal errors.. we want to see the English text
14109 Fri Oct 29 20:16:43 EDT 1999 Ben Collins <bcollins@debian.org>
14111 * po/update.sh: make sure we only update when there are changes,
14112 also autodetect list of .po files we need to change
14113 * release.sh: likewise for .gmo generation
14115 Fri Oct 29 16:51:03 EDT 1999 Ben Collins <bcollins@debian.org>
14117 * main/archives.c: s/DPK/DPKG/ from one of the gettext changes
14119 Fri Oct 29 21:16:21 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14121 * Fix name for Polish translation
14123 Fri Oct 29 10:37:16 EDT 1999 Ben Collins <bcollins.debian.org>
14125 * dpkg-divert: Fix check for writable filesystem, closes: #48646
14127 Thu Oct 28 22:14:49 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14129 * Add Polish translation from Piotr Roszatycki <dexter@fnet.pl>
14131 Thu Oct 28 10:10:23 EDT 1999 Ben Collins <bcollins.debian.org>
14133 * dpkg-shlibdeps: fix ordering for shlibs.default
14135 Wed Oct 27 21:33:19 EDT 1999 Ben Collins <bcollins.debian.org>
14137 * release.sh: remove attic/ and doc/obsolete/
14138 * dpkg-gencontrol: add "Source" to the fields placed in the control file
14139 * dpkg-parsechangelog: fixed loop for parsepath
14141 Tue Oct 26 19:35:53 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14143 * Also translate helpmessages for dselect
14145 Mon Oct 25 21:08:06 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14147 * Added Czech translation from Petr Cech <cech@atrey.karlin.mff.cuni.cz>
14149 Mon Oct 25 19:10:50 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14151 * Mark more strings for translation in libdpkg and dpkg
14152 * Don't bother translating debug-statements
14154 Mon Oct 25 11:55:35 EDT 1999 Ben Collins <bcollins.debian.org>
14156 * scripts/dpkg-shlibdeps: start using objdump as opposed to ldd, this
14157 works much more cleanly, works with libc5, and allows from better
14158 error reporting. Also corrected checks on shlibs.local, which wasn't
14159 really being parsed, it now works as advertised.
14160 * scripts/{dpkg-gencontrol,dpkg-source,controllib.pl}: fixed references
14161 to old style build dep fields to match current policy ammendment
14163 Mon Oct 25 17:12:34 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14165 * gettextize dselect
14167 Mon Oct 25 08:42:52 EDT 1999 Ben Collins <bcollins.debian.org>
14169 * debian/rules: fix symlink creaton for /usr/share/doc/dpkg-dev -> dpkg,
14170 also compress the info and ps files for internals in dpkg-doc
14172 Mon Oct 25 06:50:17 EDT 1999 Ben Collins <bcollins.debian.org>
14174 * main/processarc.c: fixes calculation of package filename display (the
14175 ".../foo.deb" one) where it was showing the full path if the basename
14176 was longer than 30 chars. Now shows just the basename if it can't
14177 squeez the full path to < 30 chars (even if the basename is > than 30
14180 Mon Oct 25 02:27:49 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14182 * dselect/main.cc: Fixup error message for invalid parameter to reflect
14183 we are dselect, not dpkg
14185 Sun Oct 24 20:46:44 EDT 1999 Ben Collins <bcollins.debian.org>
14187 * scripts/dpkg-source.pl: we want to 'delete' the POSIXLY_CORRECT env
14190 Sun Oct 24 20:25:11 EDT 1999 Ben Collins <bcollins.debian.org>
14192 * debian/dpkg-doc-{postrm,prerm}: Added install-info for internals.info
14193 * debian/dpkg-internals: fixed misplaced description
14195 Sun Oct 24 11:39:21 EDT 1999 Ben Collins <bcollins.debian.org>
14197 * debian/control: added dpkg-doc
14198 * debian/dpkg-doc-{postinst,prerm}: new files for dpkg-doc package
14199 * debian/dpkg-internals: doc-base support for dpkg-doc
14200 * debian/rules: added build rules for dpkg-doc to binary-indep target
14201 * doc/Makefile.am: changed build setup for internals.sgml to use the
14202 debiandoc tools, and removed internals.* stuff from being built by
14203 default. Two new targets, internals and internals-install, now handle
14205 * doc/changelog: removed, duplicate of ChangeLog
14206 * doc/internals.sgml: converted to debiandoc format, now builds correctly
14208 * doc/manuals-version: removed since it is generated at build time
14209 * doc/texinfo.*: moved to doc/obsolete/ since the debiandoc format doesn't
14211 * main/filesdb.c: fixed compiler warning
14213 Sat Oct 23 21:23:08 EDT 1999 Ben Collins <bcollins.debian.org>
14215 * Added 'D' to the list of choices for conffile handling
14217 Sat Oct 23 16:25:16 EDT 1999 Ben Collins <bcollins.debian.org>
14219 * main/{processarc.c,depcon.c}: added new structure for conflictors,
14220 which contains a struct for conflicts. This is used to create an array
14221 of conflicting packages, which are going to be replaced. Allows for
14222 multiple conflicts and replaces. All conflictor handlers were
14223 converted to loops to handle each one (processarc.c).
14225 Sat Oct 23 09:22:16 EDT 1999 Ben Collins <bcollins.debian.org>
14227 * Leave file info intact in available when installing packages. MD5sum,
14228 Filename, and MSDOS-Filename used to get lost when installing a package.
14229 * Backout dep check patch (merged from v1_4_1_18)
14230 * Added armv4l to archtable
14232 Thu Oct 21 12:57:31 EDT 1999 Ben Collins <bcollins.debian.org>
14234 * Fixed incorrect patch for --print-architecture (oops, oh well
14235 it was already broken when there was no gcc anyway :)
14236 * Fixed missing mipseb that was supposed to be in the archtable
14237 * Better output in update-alternatives --config, now shows the
14238 current, and the prefered choices.
14239 * dpkg-name: ignore epoch when getting version
14240 * 50dpkg-dev.el: add it as a conffile for dpkg-dev
14241 * dpkg-shlibdeps: redirect STDERR to /dev/null for the dpkg fork so we
14242 don't see dpkg's errors
14243 * internals.sgml: Removed references to the versions of build tools,
14244 they date the document.
14245 * debian-changelog-mode.el: added hint for better log-email handling
14246 * Added recognition for new source-depends fields for policy
14247 referenced in bug #41232
14248 * dpkg-buildpackage: add -ap option to force a pause prior to starting
14249 the sign process. This helps for people who don't keep their signatures
14250 on the filesystem (on a floppy perhaps, then mount as needed).
14251 * minor script corrections
14252 * dpkg-dev control: Change gcc to c-compiler in the recommends field, and
14253 move cpio, patch and make to the depends line
14255 Thu Oct 21 10:22:43 EDT 1999 Ben Collins <bcollins.debian.org>
14257 * Fixed the check that was added to dpkg-divert.
14258 * Removed the lib version checking.
14259 * Oops, somehow the --config feature went missing from update-
14262 Thu Oct 21 13:22:42 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14264 * Update copyright (taken from dpkg-iwj tree, with Ben added)
14265 * Add support for long filenames in tarfiles. Based on a patch
14266 from Andrew Hobson <ahobson@eng.mindspring.net>
14267 * Add a --assert-longfilenames option
14269 Thu Oct 21 06:37:24 EDT 1999 Ben Collins <bcollins.debian.org>
14271 * Fixed some compiler warnings
14272 * Make start-stop-daemon exit(1) when we don't find one of the
14273 pid's we are trying to kill, in accordance with the man page.
14274 * When running --configure on an already installed package, just
14275 say it's installed, and not that it is in an unconfigurable
14277 * Bah, add all the prefix/datadir... stuff back to the install
14278 target in debian/rules (po/ doesn't use it)
14279 * Add function to libdpkg that dpkg can call to make sure it's
14280 compiled version matches that of the library. If it fails,
14281 complain loudly, but allow to proceed
14282 * Make dpkg check for uid 0 requirement, before checking the path
14283 since not being root, is probably the reason that the PATH is
14284 borked in the first place
14285 * Make -p short for --print-avail, and -P short for --purge
14286 * Fix typo in md5sum(1) man page
14287 * start-stop-daemon: Add --background and --make-pidfile options
14288 * update-alternatives: make sure we remove "old" symlinks when they
14289 are no longer pertinent. Add /etc/alternatives/README that refers
14290 to the update-alternatives(8) man page.
14291 * dpkg-divert: Add check for being able to write to the old/new
14292 destination before doing a rename. We fail on this, without
14293 changing the diversion registry
14294 * Fix bad regex in update-rc.d
14296 Tue Oct 19 18:07:28 EDT 1999 Ben Collins <bcollins.debian.org>
14298 * Ok, TMPDIR usage is back in dpkg-deb and working
14299 * {include,scripts}/Makefile.am: Fix for using DESTDIR
14300 * debian/rules: really convert to DESTDIR on install target this
14301 time. chmod -x everything in /usr/lib to make lintian happy.
14302 in the clean phase just rm -rf $(BUILD), we don't need to run
14303 distclean and all that other stuff. Don't run "make dist", we
14304 simply copy the .tar.gz that dpkg-source creates for the byhand
14307 Tue Oct 19 09:59:22 EDT 1999 Ben Collins <bcollins.debian.org>
14309 * Reverted the new tmpfile stuff in dpkg-deb. For some reason it's
14310 completely corrupting the new package
14312 Mon Oct 18 18:40:35 EDT 1999 Ben Collins <bcollins.debian.org>
14314 * Reimplemented a better *stat cache for the removal checking code,
14315 this helps a lot when doing upgrades where the packages are a lot
14316 different in layout. Note, I tested the first way and this new way
14317 against package foo (version 1 & 2) each had 5000 files (different
14318 in version 2 than in version 1). basically this meant the old way
14319 needed to do about 2.5 million lstats, and the new way only needs
14320 10,000 lstats. This sped it up about %6000 percent (the old way took
14321 over 1 hour on a 333Mhz, the new way was 2 minutes and 20 seconds).
14322 Note that this is an extreme case since most per package upgrades
14323 a) don't have 5000 files
14324 b) don't have all the files different
14325 * Increased largemem auto detection to >= 24megs, since it's not uncommon
14326 for dpkg to actually use 16megs of ram all on its own when using the
14327 largemem setting (old minimum was 16megs)
14329 Mon Oct 18 09:25:30 EDT 1999 Ben Collins <bcollins.debian.org>
14331 * Add mipseb to the archtable too, since mips and mipseb are
14332 both viable names for the mips big endian arch
14333 * Update dpkg-architecure's archtable
14334 * Removed the maintainer-configure portion in debian/rules, since
14335 we should be shipping the source with all the auto* stuff
14336 already generated anyway
14337 * Removed the ltconfig patch, and resort to a debian/rules fix
14338 to libtool itself after running configure, much cleaner, and
14339 reversible since libtool is a generated file
14340 * Use DESTDIR when installing instead of specifying all our
14341 dest dirs seperately in the make line. Also fix some of the
14342 make files to use DESTDIR when installing files
14343 * Regenerated .po files and dpkg.pot. Also added update.sh to the po/
14344 subdir for easier regenerating for cvs only
14345 * Make release.sh generate .gmo files
14346 * Removed shlibs.default.i386. It's now a template for arch porting to
14347 Debian/dpkg, we install it still, if there exists a file matching the
14350 Sun Oct 17 13:40:46 EDT 1999 Ben Collins <bcollins.debian.org>
14352 * Removed references to dpkg(5) which seems to not exist anymore
14353 * Fixed `dpkg-deb --help' and dpkg-deb(1) from reporting --no-check
14354 when it's actually --nocheck (went with the hardcoded option, so
14355 this is just a documentation fix).
14356 * Added better check in disk.setup for a working NFS server. Makes
14357 it compatible with other non-Linux servers.
14358 * Corrected dpkg(8)'s example of using dpkg -i (showed it used with
14359 a .tar.gz instead of a .deb)
14360 * Applied patch to correct improper TMPDIR handling in dpkg-deb
14361 * When encountering an error in extracting the tar archives in the
14362 packages, we should abort the install, not simply give an error
14364 * Make dpkg give the builtin arch if there was an error while exec()'ing
14365 the C compiler with --print-architecture. We still fail if the
14366 output from gcc was bad in some way, since they may be of importance.
14368 Sun Oct 17 11:51:36 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14370 * Revert to hardcoding ENOENT again, since the necessary parts of
14371 the perl POSIX module aren't in perl-*-base. sigh.
14373 Sat Oct 16 11:43:45 EDT 1999 Ben Collins <bcollins.debian.org>
14375 * Added --chuid option to start-stop-daemon to allow switching to
14376 a different uid when starting a process
14377 * Added mipsel to the archtable for completeness
14378 * Added --config option to update-alternatives to allow easy changing
14379 of the registered alternatives for a specific name
14380 * Updated the deb-control(5) man page with all the current fields
14382 * Made the large info screen show 5 lines of the pkglist so that
14383 it scrolled properly, and still showed the cursor
14385 Thu Oct 14 04:51:14 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14387 * Don't use Errno module but the POSIX module, since that *is*
14389 * Fixup debian/rules
14391 Thu Oct 14 04:39:25 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14393 * Update dpkg manpage to add new --force-conf* options
14395 Thu Oct 14 04:16:25 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14397 * Reinstate patch to not read available-file with doing listfiles.
14398 * Don't forget to get the correct SHELL before showing a diff of
14400 * Merge a patch from Ben Collins to add a bunch of --force options
14401 to handle changed conffiles
14403 Thu Oct 14 03:37:52 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14405 * Add mips to archtable
14406 * Use Errno module to get ENOENT instead of hardcoding it
14408 Thu Oct 14 02:47:40 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14410 * Fix C error we introduced in checkpath() earlier
14412 Wed Oct 13 20:41:16 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14414 * Update oldfile-check in process_archive so we don't experience
14417 Wed Oct 13 17:51:17 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14419 * Merge patches from Ben Collins <bcollins@debian.org>:
14420 + fix windowresizing in dselect
14421 + when upgrading check if a file is not also in the new package before
14422 removing it, so we don't remove new files due to symlinks confusing us
14423 + fix logic error in checkforremoval: it was breaking cycles in for the
14425 + fix findbreakcycle to remove cycles even for packages we are not changing
14427 Mon Oct 11 22:19:01 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14429 * Add the option to show a diff of the old and new conffile when
14430 configuring a package
14432 Tue Oct 12 17:15:08 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14434 * don't die if we can't open a package in dpkg-scanpackages, just print
14435 a warning and skip the package.
14437 Mon Oct 11 18:18:25 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14439 * Move dselect into its own package
14441 Mon Oct 11 17:37:47 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14443 * Added support for HURD to start-stop-daemon
14444 * Create new directory utils/ for extra C-programs, and move
14445 start-stop-daemon there.
14447 Mon Oct 11 15:47:18 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14449 * Preparation to move start-stop-daemon from scripts to utils
14450 * Merge patches from Ben Collins <bcollins@debian.org>:
14451 + modify remove_buld to remove conffiles when purging a package before we
14452 remove its directories.
14453 + check if we violate conflicts/depends/pre-depends of other packages when
14454 processing an archive.
14456 Mon Oct 11 02:13:15 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14458 * Merge patch from Ben Collins <bcollins@debian.org> to make dpkg-deb
14459 handle packages created with Linux ar.
14461 Thu Oct 7 01:16:23 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14463 * Check if sequencecode is between 0 and 99 instead of just checking
14464 for a number in update-rc.d
14466 Wed Oct 6 14:40:33 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14468 * Lock complete lockfile for database: it's empty anyway, and Hurd
14469 doesn't support partial locks currently
14470 * Don't use PATH_MAX but allocate necessay memory in checkpath().
14471 Useful for system that don't have PATH_MAX (like Hurd)
14473 Tue Oct 5 19:16:38 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14475 * Set docdir to $(datadir)/doc
14476 * Install /etc/emacs/site-start.d/50dpkg-dev.el with mode 644
14478 Tue Oct 5 04:08:41 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14480 * Make /usr/share/doc/dpkg-dev a symlink to /usr/share/doc/dpkg
14482 Mon Oct 4 15:38:42 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14484 * Update GPL and documentation location in debian/copyright
14486 Sat Oct 2 16:00:38 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14488 * Update deb.5 to say it's in section 5, not 8
14490 Tue Sep 28 13:38:50 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14492 * Make dpkg-source work again on empty diffs, patch from Roman Hodek
14493 <Roman.Hodek@informatik.uni-erlangen.de>
14495 Tue Sep 28 01:14:14 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14497 * Fix typo in dpkg-buildpackage that broke signing if only -sgpg was given
14499 Mon Sep 27 04:25:32 CEST 1999 Wichert Akkerman <wakkerma@debian.org>
14501 * Change changelog-style for ChangeLog, the package-style doesn't work
14503 * Merged patch from Adam Heath <doogie@debian.org> to make update-alternatives.pl
14504 work across filesystems
14506 dpkg (1.4.1.12) unstable; urgency=low
14508 * Non-maintainer release.
14509 * Fix typo in chmodsafe_unlink that made dpkg chmod files that
14510 weren't setuid or setgid
14512 -- Wichert Akkerman <wakkerma@debian.org> Sun, 26 Sep 1999 02:41:30 +0200
14514 dpkg (1.4.1.11) unstable; urgency=low
14516 * Non-maintainer release.
14517 * Added sparc64 to archtable
14518 * Added entries for newer alpha architectures to the archtable
14519 * Always run patch and diff with LANG set to C.
14520 * Handle diff warning for files with no newline at the end of file
14523 -- Wichert Akkerman <wakkerma@debian.org> Fri, 24 Sep 1999 03:23:54 +0200
14525 dpkg (1.4.1.10) unstable; urgency=low
14527 * Non-maintainer release.
14528 * Build dpkg-scansources manpages using pod2man
14529 * dpkg-buildpackage changes:
14530 + fix signinterface-detection
14531 + use gpg by default if $HOME/.gnupg/secring.gpg exists
14533 -- Wichert Akkerman <wakkerma@debian.org> Thu, 16 Sep 1999 15:36:43 +0200
14535 dpkg (1.4.1.9) unstable; urgency=low
14537 * Non-maintainer release.
14538 * Updated dpkg-scansources to current version from Roderick Schertler
14539 * Update location of GPL in internals-manual
14540 * Update location of GPL and dpkg copyright in all manpages
14541 * Include patch from Roman Hodek for dpkg-source to handle diffs of files
14542 with lines that begin with two dashes.
14543 * Move dpkg-scansources to dpkg-dev package
14544 * Move dpkg-scansources manpage to section 8
14545 * Fix error that moved a lot of manpages to the dpkg package.
14546 * It looks like not reading the available-file for listfiles was not greeted
14547 with much enthiousiasm, so reverse the change.
14549 -- Wichert Akkerman <wakkerma@debian.org> Wed, 15 Sep 1999 03:45:07 +0200
14551 dpkg (1.4.1.8) unstable; urgency=low
14553 * Non-maintainer release.
14554 * Merge dpkg-doc-ja
14555 * Add patch from Raphaël Hertzog <rhertzog@hrnet.fr> for dpkg-scansources
14556 to skip comments in signatures. This allows packages to also use GnuPG.
14558 -- Wichert Akkerman <wakkerma@debian.org> Mon, 13 Sep 1999 04:16:33 +0200
14560 dpkg (1.4.1.7) unstable; urgency=low
14562 * Non-maintainer release.
14563 * Use /usr/share/doc
14564 * Merge changes from dpkg-iwj tree:
14565 + change section in dpkg-deb.1 to 1
14566 + Use COPYINGFILE instead of hardcoded GPL-location in showcopyright()
14567 + varbufprintf (used for some error messages) vsnprintf return value
14568 assumption changed to correspond to reality rather than glibc-doc.
14569 + Don't read available-info when not needed (slightly improved from
14570 dpkg-iwj: don't read for listfiles either :)
14571 + Cleanup --assert-* code
14572 + Assume largemem on systems without sysinfo(2).
14573 + modify preexec-script for easier script execution
14574 + Do not chmod(".../path/to/symlink",0600) causing many bad perms.
14575 + Sanity-check numbers for parameters
14576 + Move some logic from process_archive into wantinstall
14577 + Print '0' in dpkg-scanpackages if no packages found.
14579 -- Wichert Akkerman <wakkerma@debian.org> Fri, 10 Sep 1999 04:06:32 +0200
14581 dpkg (1.4.1.6) unstable; urgency=low
14583 * Non-maintainer release.
14584 * scripts/dpkg-architecture.pl: Update to latest version.
14585 * scripts/dpkg-architecture.1: Likewise.
14587 -- Marcus Brinkmann <brinkmd@debian.org> Sat, 24 Jul 1999 18:24:21 +0200
14589 dpkg (1.4.1.5) unstable; urgency=low
14591 * Non-maintainer release.
14592 * (dpkg-dev): Use emacsen-common for debian-changelog-mode.el
14593 (closes:Bug#20776,#31030).
14594 * Removed references to the packaging and policy manuals from debian/control.
14595 * Put debian-changelog-mode.el in dpkg-dev and remove from dpkg (closes:Bug#29271).
14596 * Fix paths in 50dpkg-dev.el using Roderick Schertler's patch
14597 (closes:Bug#28270,#29702,#26876,#29184,and others).
14598 * Note that bug number 17367 was fixed in 1.4.0.26.
14599 * Add Zack Weinberg's install-info patch for GNU install-info
14600 compatibility (closes:Bug#28965).
14601 * Add dpkg-architecture stuff from Marcus Brinkmann.
14602 * Remove debian-keyring suggests from dpkg.
14603 * Add -k<keyid> flag to dpkg-buildpackage.
14604 * --textmode works in gpg, remove kluge from dpkg-buildpackage.
14605 * Cleanup configure.in slightly (stop using tl_ macros, fix gettext stuff).
14606 * Attempt to make Debian source useful for non-Debian systems
14607 (i.e. distclean tree instead of maintainer-clean tree).
14608 * Sync with wichert's 1.4.1.4.
14609 * Add my ltconfig-1.3.2.diff (RPATH workaround).
14610 * Add dpkg-scansources program and man page.
14611 * Man pages in /usr/share/man.
14613 -- Joel Klecker <espy@debian.org> Tue, 13 Jul 1999 18:12:15 -0700
14615 dpkg (1.4.1.4) unstable; urgency=low
14617 * Also change developer-keyring to debian-keyring for dpkg-dev package
14618 * Include spanish translation from Nicolás Lichtmaier <nick@debian.org>
14619 * Depend on perl5 instead of perl
14621 -- Wichert Akkerman <wakkerma@debian.org> Mon, 5 Jul 1999 00:04:14 +0200
14623 dpkg (1.4.1.3) unstable; urgency=low
14625 * Modify tarobject() so it does not complain if we are creating a
14626 directory that replaces a removed file. This works around the
14627 problem that the filedatabase doesn't remember what filetype a
14628 file was by assuming it already was a directory
14630 -- Wichert Akkerman <wakkerma@debian.org> Mon, 31 May 1999 23:49:23 +0200
14632 dpkg (1.4.1.2) unstable; urgency=low
14634 * Non-maintainer upload
14635 * Rebuild, so this is glibc2.1 (unless you're on m68k), which is rumoured
14636 to also fix the i8n-problems.
14637 * Incorporate 1.6 format of .changes, patch from Guy Maor
14638 * Fix bug in section-handling of dpkg-scanpackages, patch from Guy Maor
14639 * Disable force-overwrites again, since we're in unstable
14640 * Assume largemem on systems for which sysinfo is not available, Bug# 33658
14642 -- Wichert Akkerman <wakkerma@debian.org> Wed, 26 May 1999 15:50:17 +0200
14644 dpkg (1.4.1.1) unstable; urgency=low
14646 * Non-maintainer upload
14647 * Install emacs-startup scripts with mode 0644 (lintian)
14648 * Incorporate changes in NMU 1.4.0.32 made by Vincent Renardias
14649 <vincent@waw.com> for slink:
14650 + Apply patch from Jim Pick for update-alternatives.pl to
14651 fix 'Important' bugs #30891 in dpkg and (#27382, #27383, #27696,
14652 #27703, #27736, #27097(merged bugs)) in jdk1.1.
14653 * Incorporate changes in NMU 1.4.0.33 made by me for slink:
14654 + Fix illegal perl construct (Bug# 30985)
14655 + Initialize oialtname->useinstead and oicontest->camefrom to 0 (Bug# 30397)
14656 + Update shlibs.default for libncurses 4 (Bug# 30332)
14657 + Suggest debian-keyring instead of developer-keyring (Bug# 27376, 30248)
14658 + Abort dpkg-divert when attempting to divert a directory (Bug# 30126)
14659 + Make dpkg-deb.1 aware that it is in section 1, not 8
14660 + Fix section in reference to dpkg-deb in dpkg.8 (Bug# 29740)
14661 + Fix typo in --force-help (Bug# 26193)
14662 + Correct path for debian-changelog-mode.el (Bug# 24606)
14663 + Make disk-method for dpkg use /var/run instead of /tmp to fix
14664 symlink-attacks (Bug# 21399)
14665 + Document -n and -f options for update-rc.d in manpage (Bug# 15913)
14666 + Add --abort-after option to change after how many errors we abort and
14667 change the default to 50 (Bug# 22940)
14668 + Fix controllib.pl: don't check debian/substvars unless needed, and
14669 don't depend on language settings (Bug# 31508)
14670 + Allow a - in the architecture-field (Bug# 25537)
14672 -- Wichert Akkerman <wakkerma@debian.org> Mon, 1 Feb 1999 00:44:01 +0100
14674 dpkg (1.4.1) unstable; urgency=low
14676 * Maintainer release by IWJ.
14677 * Changed Maintainer: field description.
14678 * Various changes to make the damn thing build.
14679 * Add .cvsignore files.
14681 -- Ian Jackson <ian@davenant.greenend.org.uk> Sun, 1 Nov 1998 17:33:38 +0000
14683 dpkg (1.4.0.31) unstable; urgency=low
14685 * dpkg/processarc.c: Make newfileslist static like the other arguments
14686 for register_cleanup's cu_* functions.
14687 * N-th fix for controllib.pl (simulate old behavior by trying stdin,
14688 stdout, and stderr for getlogin()).
14689 * Enable --force-overwrite for slink release, and comment where to do
14691 * Recompile against ncurses4.
14693 -- Daniel Jacobowitz <dan@debian.org> Thu, 22 Oct 1998 17:37:23 -0400
14695 dpkg (1.4.0.30) unstable; urgency=low
14697 * dpkg-dev isn't allowed to have a Recommends: debian-keyring (as that's
14698 in contrib), so it's now lowered to a Suggests: . Thanks to James Troup
14699 for pointing this out.
14701 -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sat, 26 Sep 1998 13:59:23 +0200
14703 dpkg (1.4.0.29) unstable; urgency=low
14705 * For now, prefer PGP over GPG.
14707 -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Tue, 22 Sep 1998 09:38:09 +0200
14709 dpkg (1.4.0.28) unstable; urgency=low
14711 * Added gpg (GNU Privacy Guard) support:
14712 * scripts/buildpackage.sh: default to GPG (unless no GPG, but only a PGP
14713 secret key file is found), as GPG, unlike PGP, is DFSG-free.
14714 * Updated dpkg-source(1), and added gpg(1) and pgp(1) to the SEE ALSO
14716 * Worked around broken textmode implementation in GPG.
14717 * dpkg-dev now Suggests: gnupg .
14718 * No longer includes developer-keys.pgp . Instead, dpkg now Suggests: and
14719 dpkg-dev now Recommends: developer-keyring.
14720 * Compiled with latest libstdc++ (2.9).
14722 -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Mon, 21 Sep 1998 13:17:14 +0200
14724 dpkg (1.4.0.27) unstable; urgency=low
14726 * REALLY fixed dpkg-dev, and new attempt to placate installer on internals.
14728 -- Daniel Jacobowitz <dan@debian.org> Fri, 27 Jul 1998 15:58:04 -0400
14730 dpkg (1.4.0.26.0.1) unstable; urgency=low
14732 * Binary-only upload for x86 and fixed dpkg-dev
14734 -- Daniel Jacobowitz <dan@debian.org> Fri, 24 Jul 1998 15:58:04 -0400
14736 dpkg (1.4.0.26) unstable; urgency=low
14738 * Non-maintainer upload.
14740 * Make --root work with maintainer scripts (Patch by Scott Barker,
14741 bugs #4863 and #3170).
14742 * Fix $(lispdir) bug if compiling without emacs (noticed by Joey Hess).
14744 -- Daniel Jacobowitz <dan@debian.org> Thu, 23 Jul 1998 12:02:04 -0400
14746 dpkg (1.4.0.25) unstable; urgency=low
14748 * Non-maintainer upload.
14750 * Add the requested -nc option to dpkg-buildpackage (Do
14751 not clean source tree, useful in debugging cycles).
14752 * controllib.pl: Again by popular acclamation, fix the getlogin() warnings.
14753 I redirected STDERR onto fd 0 before calling getlogin().
14754 * tools.m4: Fix display of whether c++ works.
14755 * dpkg-deb/extract.c: glibc 2.1 and some kernels want to make
14756 fflush() move the current fpos. Until someone can fix that,
14758 * Add an extra 0, to dselect/{pkg,meth}keys.cc so it compiles again.
14759 * Start using lchown() if available.
14760 * Really fix #20353. (aclocal.m4 was the wrong place; that's a generated
14761 file. The correct place is in tl_canon.m4.)
14763 -- Daniel Jacobowitz <dan@debian.org> Tue, 21 Jul 1998 03:14:14 -0400
14765 dpkg (1.4.0.24) unstable; urgency=low
14767 * Non-maintainer upload.
14769 * dpkg/main.c: Turn --force-overwrite off as default.
14770 * dpkg/main.c: don't list --force-overwrite as default in --force-help,
14771 noticed by Peter Weiss <Peter.Weiss@Informatik.Uni-Oldenburg.DE> and
14772 others. [#23542, part of #17409].
14773 * dpkg/dpkg.8: replaced with a newer version from Jim Van Zandt
14774 <jrv@vanzandt.mv.com>. [#21061]
14776 * dpkg-deb/build.c (do_build): add missing \n and improve error message
14777 when conffile name is too long. [#7057]
14779 * scripts/update-alternatives.8: replaced with better man page from
14780 Charles Briscoe-Smith <cpb4@ukc.ac.uk>. [#17283]
14781 * scripts/dpkg-source.1: corrected logic error in documentation for
14782 dpkg-gencontrol's -p option, as noticed by Oliver Elphick
14783 <olly@linda.lfix.co.uk>. [#14655]
14784 * scripts/controllib.pl (findarch): correct typo in error message,
14785 noticed by Yann Dirson <ydirson@a2points.com>. [#22106]
14786 * scripts/dpkg-buildpackage.sh: fix typo s/source version/source
14787 maintainer/, noticed by Joey Hess <joey@kite.ml.org>, Adam P. Harris
14788 <apharris@onshore.com> and others. [#10175, #15559]
14789 * scripts/dpkg-genchanges.pl: applied patch from Roman Hodek
14790 <Roman.Hodek@informatik.uni-erlangen.de> which solves problems with
14791 architecture specific packages in mostly architecture independent
14792 multi-binary source packages. [#14341, #20192].
14794 * doc/Makefile.am: remove any reference to the packaging manual, as it is
14795 now provided by the separate "packaging-manual" package.
14796 * doc/packaging.sgml: removed.
14797 * doc/developer-keys.pgp: updated to the current debian keyring.
14799 * aclocal.m4: applied patch from Joel Klecker <jk@espy.org> to handle
14800 egcs' --print-libgcc-file-name output. [#20353]
14802 * debian/copyright: correct FSF address.
14803 * debian/rules: add code from lesstif's debian/rules to make libtool
14804 less of a fool (i.e. not use -rpath and to link shared libraries
14805 against libraries it depends on). Code by Richard Braakman
14806 <dark@xs4all.nl> and Yann Dirson <dirson@debian.org>.
14807 * debian/rules: remove all reference to the packaging manual as it is
14808 now provided by the seperate "packaging-manual" package. [#21581,
14809 #21186, #22698, #23342]
14810 * debian/rules: link dpkg-divert.1.gz to undocumented.7.gz as the lack
14811 of a real manpage has been reported in #11093.
14812 * debian/README.compile: removed gawk and bogus comment about gettext
14813 being in experimental, as reported by Santiago Vila <sanvila@unex.es>
14814 [#23344]. Added libpaperg (debiandoc2ps needs paperconf).
14815 * debian/shlibs.default.i386: updated for glibc, reported by Herbert Xu
14816 <herbert@gondor.apana.org.au>. [#13140]
14817 * debian/control (dpkg-dev): depend on perl as POSIX (not a part of
14818 perl-base) is needed by most of the perl dpkg-* scripts, noticed by
14819 Joel Klecker <jk@espy.org>. [#22115]
14821 -- James Troup <jjtroup@comp.brad.ac.uk> Wed, 24 Jun 1998 14:38:52 +0200
14823 dpkg (1.4.0.23.2) frozen unstable; urgency=low
14825 * Non-maintainer upload.
14826 * dpkg/main.c: Turn --force-overwrite back on as default.
14828 -- James Troup <jjtroup@comp.brad.ac.uk> Tue, 23 Jun 1998 22:19:26 +0200
14830 dpkg (1.4.0.23.1) frozen unstable; urgency=low
14832 * No real changes, only a new version code to make this go to frozen too.
14834 -- Nils Rennebarth <nils@debian.org> Wed, 10 Jun 1998 17:29:58 +0200
14836 dpkg (1.4.0.23) frozen unstable; urgency=low
14838 * Non-maintainer bug-fix release
14839 * Update the disk method to the hamm directory structure (Bug#21000)
14841 -- Nils Rennebarth <nils@debian.org> Sun, 7 Jun 1998 19:14:51 +0200
14843 dpkg (1.4.0.22) frozen unstable; urgency=medium
14845 * Non-maintainer bug-fix release
14846 * Install main changelog file as `changelog.gz' instead of
14847 `changelog.dpkg.gz' (Debian Policy, section 5.8) (Bug#6052,15157)
14848 * Avoid use of /tmp/*.$$ in preinst and postinst (Bug#19712)
14849 * Make sure diversions file is always created with mode 0644 (Bug#19494)
14850 * When removing a file, chmod it to 000 if it's a char or block
14851 device or remove its s[ug]id bits, if any (Bug#6006)
14852 * Minor fixes in the programmer's manual (Bug#6206)
14853 * Always create readable status and available files
14854 (Bug#9869,11887,14636,15786,19146)
14855 * Make dpkg-gencontrol honour -DArchtecture=xxxx (Bug#9893)
14856 * Allow different archs for the same binary in debian/files (Bug#9894)
14857 * Added workaround in /usr/lib/dpkg/methods/disk/setup
14858 to avoid bash warning (Bug#10111,10131)
14859 * Recognize old .deb packages with other locales (Bug#12232)
14860 * Added `SHELL=bash' to debian/rules: it uses bash-specific structs
14861 * Move some files from dpkg to dpkg-dev (part of Bug#13295)
14862 * Minor fix in packaging manual regarding to Standards-Version (Bug#14696)
14863 * Fixed --altdir and --admindir in update-alternatives (Bug#15332)
14864 * Strip /usr/lib/libdpkg* (Bug#15671)
14865 * dpkg: send output of --help, --force-help and -Dhelp to stdout
14867 * send correct signals with start-stop-daemon (Bug#17258)
14868 * Make `dpkg-divert --test --remove' work as expected (Bug#19531)
14869 * Determine properly the architecture if gcc is egcs (Bug#20353)
14871 -- Juan Cespedes <cespedes@debian.org> Sun, 5 Apr 1998 17:37:01 +0200
14873 dpkg (1.4.0.21) unstable; urgency=low
14875 * Non-maintainer release to include a new update-rc.d
14876 * Fixed date on files in the archive from 2017 and 2018 by running
14877 touch foo; find . -newer foo | xargs -r touch; rm foo
14878 * Changed start-stop-deamon message "No <program> found; none killed." to
14879 "No <program> found running; none killed."
14881 -- Miquel van Smoorenburg <miquels@cistron.nl> Thu, 5 Mar 1998 14:19:46 +0100
14883 dpkg (1.4.0.20) unstable; urgency=low
14885 * Disabled --force-overwrites.
14886 * Removed core file from source
14888 -- Michael Alan Dorman <mdorman@debian.org> Tue, 9 Jan 1998 03:34:28 -0500
14890 dpkg (1.4.0.19) unstable; urgency=low
14892 * Changed methods/disk.setup to use output of
14893 'dpkg --print-installation-architecture' instead of hard-coded
14894 '1386' (fixes #10995).
14895 * Patched dpkg-source to properly quote metacharacters in strings
14896 before using them in pattern-matching expressions (fixes #10811).
14897 * Fixed several documentation typos (fixes #10764).
14898 * dpkg-source now works around 100-character filename limitation of cpio
14900 * dpkg-source now properly handles '\ no newline in source' message from
14901 patch (fixes #5041).
14903 -- Klee Dienes <klee@debian.org> Sun, 13 Jul 1997 19:28:22 -0700
14905 dpkg (1.4.0.18) unstable; urgency=low
14907 * dpkg-source now uses new -z option to GNU patch (still needs to be
14908 changed to detect and use old version as well) (fixes #9904, #10005, #10007).
14909 * Added i686 to archtable.
14910 * shlibs.default now uses xlib6 instead of elf-x11r6lib (fixes #9926).
14911 * debian-changelog-mode now uses interruptible completing type-in fields
14912 instead of the previous 'select-a-letter method'. I consider this
14913 better and more standard than the previous way, but I'd welcome
14914 opinions to the contrary. Consider this a 'probationary' change for
14915 now (fixes #9873, #9874).
14917 -- Klee Dienes <klee@debian.org> Sun, 25 May 1997 09:56:08 -0400
14919 dpkg (1.4.0.17) unstable; urgency=low
14921 * All of the dpkg binaries (but not dpkg-dev or dselect) now speak
14922 french, thanks to patches from Christophe Le Bars <clebars@teaser.fr>
14923 * Fix leading spaces before day in 822-date.
14924 * Changes from Tom Lees <tom@lpsg.demon.co.uk> to better support
14925 building on non-Debian systems; minor Makefile fixes.
14926 * Added 'ppc powerpc powerpc' to archtable.
14927 * Changed documentation paper size to US/Letter instead of A4 (A4
14928 may be better, but it's easier to print US/Letter on A4 than it is
14929 to print A4 on US/Letter).
14931 -- Klee Dienes <klee@debian.org> Tue, 13 May 1997 15:24:31 -0400
14933 dpkg (1.4.0.16) experimental; urgency=low
14935 * Added generated sources to GNU-format source archive so it no longer
14936 requires perl to build.
14938 -- Klee Dienes <klee@debian.org> Sat, 10 May 1997 17:34:29 -0400
14940 dpkg (1.4.0.15) experimental; urgency=low
14942 * Changed dpkg-genchanges to check for ($arch == $substvar{'Arch'}), not
14943 ($arch ne 'all') (fixes #9688).
14944 * Fixed bug in start-stop-daemon.c (was using optarg after argument
14945 parsing was over) (fixes #9597, #9603, #9364).
14946 * Provide 50dpkg-dev.el for xemacs as well as emacs.
14947 * Explicitly provide path for debian-changelog-mode in 50dpkg-dev to use
14948 .el file as workaround until xemacs can read emacs19 .elc files.
14949 * Pass top_distdir explicitly to 'make dist' to accomodate bug in
14951 * Fix debian/build to make html documentation without including
14952 directories in tar archives (fixes #9348).
14954 -- Klee Dienes <klee@debian.org> Fri, 9 May 1997 13:17:18 -0400
14956 dpkg (1.4.0.14) experimental; urgency=low
14958 * Fixed buglet in install-info.pl (fixes #9438).
14959 * Re-write of update-rc.d.pl, primarily by Miquel van Smoorenburg
14960 <miquels@cistron.nl> (fixes #9434, #9436).
14961 * Renamed "dpkg Programmer's Manual" to "dpkg Internals Manual".
14963 -- Klee Dienes <klee@debian.org> Tue, 6 May 1997 22:01:07 -0400
14965 dpkg (1.4.0.13) experimental; urgency=low
14967 * Fix to start-stop-daemon so that it still takes numeric arguments (had
14968 been broken in 1.4.0.12) (fixes #9598).
14969 * Fix 822-date to sanity-check localtime() output (seconds must be the
14971 * Patch from Guy Maor <maor@ece.utexas.edu> to dpkg-source.pl to support
14972 pristine (MD5-equivalent) upstream sources.
14973 * Patch from Michael Alan Dorman <mdorman@calder.med.miami.edu> to
14974 update-rc.d.pl to fix handling multiple start/stop entries on a single
14976 * Several fixes to dpkg-genchanges to support -B option (added in
14977 1.4.0.12) (fixes #9340).
14978 * Handle errors from 822-date in debian-changelog-mode.el.
14979 * Changed cl-debian.pl to correctly handle extra whitespace in changelog
14982 -- Klee Dienes <klee@debian.org> Mon, 5 May 1997 18:12:43 -0400
14984 dpkg (1.4.0.12) experimental; urgency=low
14986 * Re-wrote 822-date for clarity and to support timezone offsets >= 12h
14987 (New Zealand in DST is +1300, for example) (fixes #7130).
14988 * Patch from Juergen Menden <menden@morgana.camelot.de> to support
14989 archdependent-only builds (fixes #8912, #9245, #5359).
14990 * Fix archtable entry for powerpc (fixes #8794).
14991 * Strip /sbin/* and /usr/sbin/* in debian/rules (fixes #8853).
14992 * Moved start-stop-daemon to /sbin (fixes #8669).
14993 * Set sharedstatedir and localstatedir for $(MAKE) install in
14994 debian/rules (fixes #8852).
14995 * Fixes for update-rc.d(8) from Jim Van Zandt <jrv@vanzandt.mv.com>
14997 * No longer do variable substitutions when generating change file (fixes
14999 * Support symbolic signal names in start-stop-daemon (fixes #7715).
15000 * Add autoload for debian-changelog-mode to /etc/emacs/site-start.d
15001 (fixes #4519, #5841).
15002 * Add recommendation for gcc and make in dpkg-dev (gcc is needed for dpkg
15003 --print-architecture, used by dpkg-gencontrol; make is needed for any
15004 debian/rules file) (fixes #8470).
15005 * Minor changes to packaging manual section on source package
15006 conversion (fixes #6801).
15007 * Renamed "programmer's manual" to 'packaging manual'.
15008 * Start of new "programmer's manual" containing information on dpkg
15009 internals and build information. This manual uses the new
15010 TeXinfo-SGML format, currently included in doc/.
15011 * dselect/pkgdepcon.cc now checks for debug not NULL, not just depdebug.
15012 * Changed makefiles to support building outside of source directory.
15013 * Include GNU-format source distribution with other non-debian packages.
15015 -- Klee Dienes <klee@debian.org> Sun, 4 May 1997 11:08:19 -0500
15017 dpkg (1.4.0.11) experimental; urgency=low
15019 * Patches for alpha and libc6 from Michael Alan Dorman
15020 <mdorman@calder.med.miami.edu>.
15021 * Fixed minor problems in dpkg-shlibdeps regular expressions for libc6.
15022 * Fix regex to detect directory creation in dpkg-source.pl.
15023 * Minor changes for automake-1.1n.
15025 -- Klee Dienes <klee@debian.org> Sun, 23 Mar 1997 18:09:33 -0500
15027 dpkg (1.4.0.10) unstable; urgency=medium
15029 * Fixed bug in controllib.pl (@fowner was entire passwd entry,
15030 not just [uid, gid] as it should have been).
15032 -- Klee Dienes <klee@debian.org> Thu, 20 Mar 1997 13:06:52 -0500
15034 dpkg (1.4.0.9) unstable; urgency=low
15036 * Check fputs() return values for (ret >= 0), not (ret != 0) (fixes #7522).
15037 * dpkg-shlibdeps no longer gives error for Java and statically linked
15038 binaries (fixes #4988).
15039 * Change 'details of the old format' to 'details of the new format' in
15040 deb-old.5 (fixes #7605).
15041 * dpkg-source -b now warns (was previously silent) if maintainer changes
15042 create new subdirectories. dpkg-source -x now warns (previously gave
15043 error) if maintainer changes create new subdirectories (partially
15044 fixes #6866, #6671, #5045, #6482).
15045 * Added manual page for start-stop-daemon (8).
15046 * Added C version of start-stop-daemon by
15047 Marek Michalkiewicz <marekm@i17linuxb.ists.pwr.wroc.pl> (fixes #1670).
15048 * Converted to use GNU automake for the build process by Tom Lees
15049 <tom@lpsg.demon.co.uk>.<
15050 * Preliminary support for dpkg functions as a shared library (now
15051 provides libdpkg.so, but much work needs to be done in better
15052 segregating and defining the interface).
15053 * Preliminary internationalization support by Galen Hazelwood
15054 <galenh@debian.org>. Only the library, dpkg-deb, md5sum, and dpkg
15055 have been converted so far. No translations have yet been
15057 * Handle 'libc.so.6 => /lib/libc.so.6 (0x40010000)' format from libc6
15058 ldd (fixes #7603, #7926, #8688, #9179, #9134, #8516).
15059 * Removed policy.sgml (it has been moved to the debian-policy package).
15060 * Include patch from Darren Stalder <torin@daft.com> for
15061 dpkg-buildpackage to choose PGP key based on Maintainer: field of
15062 package being built (or -m<maintainer> option, if present) (fixes
15064 * Changed controllib.pl to use $ENV{LOGNAME}, getlogin(), and $<
15065 (in that order) to determine the intended ownership of
15066 debian/{files,substvars}, (fixes #7324, #6823, #5659, #5965, #5929,
15068 * Don't sign .dsc file in dpkg-buildpackage if building a binary-only
15069 release (fixes #7260).
15070 * Updated developer-keys.pgp to latest revision (fixes #6134).
15072 -- Klee Dienes <klee@debian.org> Mon, 17 Mar 1997 16:11:24 -0500
15074 dpkg (1.4.0.8) unstable; urgency=medium
15076 * Corrected update-rc.d for bash 2.0
15077 * Updated developer-keys.pgp from
15078 http://www.iki.fi/liw/debian/debian-keyring.tar.gz
15080 -- Guy Maor <maor@ece.utexas.edu> Mon, 3 Feb 1997 04:05:01 -0600
15082 dpkg (1.4.0.7) stable unstable; urgency=HIGH
15084 * Fixed --assert-support-predepends failing between unpack & configure.
15085 * Added --assert-working-epoch option.
15087 -- Guy Maor <maor@ece.utexas.edu> Sat, 25 Jan 1997 23:02:11 -0600
15089 dpkg (1.4.0.6) stable unstable; urgency=high
15091 * Patched lib/vercmp.c to hopefully fix dselect epoch processing
15092 (Bug#6204), (Bug#4590).
15093 * Patched scripts/dpkg-buildpackage, scripts/dpkg-genchanges,
15094 scripts/dpkg-gencontrol for epoch processing, courtesy of Loic Prylli
15095 <lprylli@graville.fdn.fr> (Bug#6138, Bug#5225).
15096 * Patched dpkg-genchanges to actually honor the -u switch to specify
15097 directory (Bug#5564).
15098 * Applied patch to main/archive.c to correct problems setting set[gu]id
15099 binaries, courtesy of Herbert Xu <herbert@greathan.apana.org.au>
15101 * Applied patch to dpkg-source to correct debian-only package names,
15102 courtesy of Guy Maor <maor@ece.utexas.edu> (Bug#5355).
15104 -- Michael Alan Dorman <mdorman@calder.med.miami.edu> Thu, 2 Jan 1997 11:36:09 -0500
15106 dpkg (1.4.0.5) stable frozen unstable; urgency=medium
15108 * Distribution for frozen too.
15110 -- Heiko Schlittermann <heiko@lotte.sax.de> Thu, 5 Dec 1996 09:13:42 +0100
15112 dpkg (1.4.0.4) stable unstable; urgency=medium
15114 * Bug2962 fixed: patch from Ian Jackson applied
15115 (cursor keys won't work after search)
15118 -- Heiko Schlittermann <heiko@lotte.sax.de> Fri, 15 Nov 1996 20:21:18 +0100
15120 dpkg (1.4.0.3) unstable; urgency=medium
15122 * dpkg-source -x: created bad permissions (set x-bit for
15123 all files pointed to by a symlink)
15125 -- Heiko Schlittermann <heiko@lotte.sax.de> Fri, 18 Oct 1996 18:32:06 +0200
15127 dpkg (1.4.0.2) unstable; urgency=medium
15129 * dpkg-buildpackage.sh: reverted the quoting change -- (you
15130 should use super, sudo, realy, but not su. Or write a wrapper
15132 * dpkg-buildpackge.sh: passing -m, -C, -v options to dpkg-genchanges
15133 more the way Ian likes ;-)
15134 * dpkg-source.pl: new function deoctify() as replacement for eval()
15135 (turn \ddd into the corresponding character) [rem: probably better
15136 solution would be to convert cpios output names into complete \ddd
15137 representation as well tars output names]
15138 * dpkg-source.pl: fixed 2 typos in failure message on creating
15139 $origtargz.tmp-nest.
15140 * main/main.c: typo `tread' -> `treat'
15141 * main/enquiry.c: fixed the ignorance for some relations in --compare-versions
15142 * main/enquiry.c: missing version is now handled as described in `dpkg --help'
15143 (or at least as I understood `dpkg --help' PLEASE TRY IT)
15144 * lib/parsehelp.c: fixed parsing of epoch information
15146 -- Heiko Schlittermann <heiko@lotte.sax.de> Sun, 6 Oct 1996 23:27:47 +0200
15148 dpkg (1.4.0.1) unstable; urgency=medium
15150 * dpkg-source: doesn't get screwed up from hardlinks
15152 * dpkg-source: doesn't get screwed up from `unprintable' characters
15153 in file names (e.g. from the kbd package)
15154 * controllib.pl: $varlistvile -> $varlistfile (thanx Karl Sackett)
15155 * dpkg-buildpackge: quoting for $rootcommand (thanx Michael Meskes)
15156 and `eval' as default $rootcommand
15157 * dpkg-*, controllib.pl: created debian/files and debian/substvars
15158 are chown'ed to `getlogin()' and its group
15159 * doc/: mv changed to mv -f
15160 * dpkg-buildpackage: added an option -a for overriding the
15161 architecture in the changes _file_name_
15162 * dpkg-buildpackage: pass -m* -v* .. options to dpgk-genchangelog
15163 * dpkg-name moved to dpkg-dev
15165 -- Heiko Schlittermann <heiko@lotte.sax.de> Sat, 21 Sep 1996 22:06:01 +0200
15167 dpkg (1.4.0) unstable; urgency=low (HIGH for new source format)
15169 * Corrected buffer overrun when dpkg-deb generates filename. (Bug#4467.)
15170 * dpkg-shlibdeps works with DEBIAN/shlibs (thanks Heiko Schlittermann).
15171 * Added libm.so.5 to shlibs.default for i386/m68k.
15173 * Split binary package into two: dpkg and dpkg-dev.
15174 * dpkg-source(1) documents mode and ownership setting during extraction.
15176 * dpkg-scanpackages moved to /usr/bin.
15177 * Include /usr/bin/dpkg-deb, not dpkg-deb.dist; don't rename in scripts.
15178 * Copyright file changed slightly.
15179 * debian-changelog-mode uses magic key substitution strings. (Bug#4419.)
15180 * Changed email address in control file to <ian@chiark.greenend.org.uk>.
15181 * Manuals and own Standards-Version: updated to 2.1.1.0.
15183 -- Ian Jackson <ian@chiark.greenend.org.uk> Thu, 12 Sep 1996 01:13:33 +0100
15185 dpkg (1.3.14) unstable; urgency=low
15187 * dpkg-buildpackage new -tc (clean source tree) option.
15189 * Formatted documentation removed by `make clean' and so not in source.
15190 * Manuals and own Standards-Version: updated to 2.1.0.0.
15191 * Distribute {policy,programmer}.{html.tar,ps}.gz with each upload.
15193 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sun, 1 Sep 1996 20:43:40 +0100
15195 dpkg (1.3.13) unstable; urgency=low (HIGH for building new src X programs)
15197 * X shared libraries added to shlibs.default (=> `elf-x11r6lib').
15198 * dpkg-source tar invocation fixed so that TAPE env var doesn't break it.
15199 * dpkg-source copes better with missing final newline messages from diff.
15201 * dpkg-buildpackage usage message fixed: -si is the default. (Bug#4350.)
15202 * dpkg-source error message about src dir mismatch typo fixed. (Bug#4349.)
15204 * dpkg-source(1) has suggestions for dpkg-buildpackage -r option.
15205 * dpkg-source change date fixed. (Bug#4351.)
15206 * More developers' keys.
15207 * Manual updates, own Standards-Version updated.
15209 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 31 Aug 1996 20:08:18 +0100
15211 dpkg (1.3.12) unstable; urgency=medium
15213 * dpkg prints old version number when upgrading. (Bug#4340.)
15214 * dpkg-deb tries to detect and flag corruption by ASCII download.
15216 * dpkg-genchanges and dpkg-buildpackage say what source is included.
15218 * dpkg-buildpackage passes +clearsig=on to PGP (or pgpcommand). (Bug#4342.)
15220 * dpkg-source prints better error for cpio not honouring -0t.
15221 * control file Suggests cpio >= 2.4.2, rather than just cpio.
15223 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Fri, 30 Aug 1996 15:31:51 +0100
15225 dpkg (1.3.11) unstable; urgency=low
15227 * EBUSY when dpkg removes a directory is only a warning.
15229 * dpkg-genchanges generates sensible warning (not confusing error
15230 about mismatch) for missing Section/Priority in binary packages.
15232 * Added dpkg --print-gnu-build-architecture option.
15233 * shlibs.default for m68k provided, as a copy of i386 version.
15235 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 29 Aug 1996 14:05:02 +0100
15237 dpkg (1.3.10) unstable; urgency=medium
15239 * dpkg-source(1) manpage alias symlinks are not dangling.
15240 * dselect selects things by default if they are installed.
15241 * Added `pentium' as alias for `i386' architecture.
15242 * Added `Suggests: cpio, patch' and explanatory text to Description.
15243 (Bugs #4262, #4263.)
15245 * More developers' PGP keys.
15246 * Manual updates, new source format released.
15248 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 26 Aug 1996 14:30:44 +0100
15250 dpkg (1.3.9) unstable; urgency=low (high for new source format)
15252 * dpkg --get-selections and --set-selections added.
15253 * New dpkg --force-not-root flag.
15255 * Don't replace directory with another package's file. (Bug#4202.)
15257 * All manpages now installed compressed.
15258 * Copyright file moved to /usr/doc/dpkg/copyright.
15259 * Standards-Version updated (0.2.1.1).
15261 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 24 Aug 1996 19:09:30 +0100
15263 dpkg (1.3.8) unstable; urgency=low (high for new source format)
15265 * dpkg-buildpackage -sa, -si options work correctly.
15267 * update-rc.d(8) updated to reflect design and reality.
15268 * Programmers' and policy manual updates.
15270 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Fri, 23 Aug 1996 12:48:26 +0100
15272 dpkg (1.3.7) unstable; urgency=low (medium for source pkg docs)
15274 * dselect +/-/_/= on lines for all broken, new, local or whatever
15275 packages do not affect _all_ packages. (Bug#4129.)
15277 * Support for diff-only uploads in source packaging tools.
15278 * dpkg-genchanges -d<descripfile> option renamed to -C.
15279 * dpkg-buildpackage understands -m, -v, -C (for dpkg-genchanges).
15280 * Support for debian/shlibs.local added to dpkg-shlibdeps.
15281 * Shared library files' search order defined in dpkg-source(1), and
15282 relevant files added to the FILES section.
15284 * Programmers' manual describes source packaging tools.
15285 * Policy manual mentions shared library control area file.
15286 * dpkg-source manpage includes dpkg-shlibdeps in title line.
15287 * Manuals have changelog and automatic version numbering.
15288 * changelogs (for dpkg and for manuals) installed.
15289 * binary target split into binary-arch and binary-indep in manual.
15290 * Manpages should be compressed.
15291 * Copyright file is moved to /usr/doc/<package>/copyright.
15292 * Changelogs must be installed in /usr/doc/<package>.
15294 * dpkg-deb(8) moved to dpkg-deb(1).
15296 * binary target split into binary-arch and binary-indep in source.
15297 * changelog entry for 1.2.14 copied from that (forked) release.
15299 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 22 Aug 1996 15:36:12 +0100
15301 dpkg (1.3.6) experimental; urgency=low (HIGH for new source format)
15303 * dpkg-source now has broken argument unparsing for tar. (Bug#4195.)
15305 * dpkg-gencontrol writes to debian/tmp/DEBIAN/control by default.
15306 * dpkg-shlibdeps script added.
15308 * Back to old sh update-rc.d, and removed manpage, because new Perl
15309 version and the manpage have different syntax and semantics.
15310 * update-rc.d prints usage message for missing terminal `.'. (Bug#4122.)
15312 * Use rm -rf instead of just rm -r in dpkg-deb --info &c. (Bug#4200.)
15314 * Added support for Installed-Size to dpkg-gencontrol, and documented.
15315 * Source packaging substitution variables and name syntax rationalised.
15316 * dpkg-source scripts' usage messages improved slightly.
15317 * dpkg-source works with non-empty second (orig dir) argument.
15319 * Added rationale for copyright policy to manual.
15320 * More developers' PGP keys.
15321 * Control database handling cleanups (usu. Source field blanked).
15323 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 20 Aug 1996 15:39:58 +0100
15325 dpkg (1.3.5) experimental; urgency=low (high for debian-changelog-mode)
15327 * 822-date script included. (Bug#4136.)
15328 * debian-changelog-add-version works on empty file.
15329 * debian-changelog-mode mode-help works properly.
15331 * dpkg-source tells patch not to make numbered backups. (Bug#4135.)
15333 * More developers' PGP keys.
15334 * Paragraph on uucp -a and -g options removed from policy manual.
15336 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 14 Aug 1996 14:46:47 +0100
15338 dpkg (1.3.4) experimental; urgency=low
15340 * Removed debugging output from dpkg-source -x. Oops.
15341 * Removed section on source package permissions from policy manual -
15342 dpkg-source now sorts these out.
15344 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sun, 11 Aug 1996 13:25:44 +0100
15346 dpkg (1.3.3) experimental; urgency=low
15348 * Programmers' & policy manuals in source tree; HTML in /usr/doc/dpkg.
15349 * Old guidelines.info and text files in /usr/doc/dpkg removed.
15351 * dpkg-source sets permissions on extracted debianised source tree
15352 and does not copy ownerships out of archive even if running as root.
15354 * Emacs mode `dpkg changelog' renamed to `Debian changelog'.
15355 * Default changelog format renamed from `dpkg' to `debian'.
15357 * debian-changelog-mode sets fill-prefix correctly.
15358 * debian-changelog-mode urgencies except HIGH lowercase by default.
15359 * debian-changelog-mode displays keymap in doc string and so mode help.
15361 * More maintainers' PGP keys.
15363 * Remove built changelog parsers with `clean' target in source.
15365 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 10 Aug 1996 23:35:51 +0100
15367 dpkg (1.3.2) experimental; urgency=LOW (MEDIUM for dpkg-source)
15369 * Faster update-rc.d written in Perl by Miquel van Smoorenburg.
15370 * install-info --test doesn't lock dir. (Bug#3992, thanks Darren).
15372 * dpkg-source doesn't break in the presence of any symlinks.
15374 * More developers' keys added to doc/developer-keys.pgp.
15375 * Install developers' keys in /usr/doc/dpkg/developer-keys.pgp.
15376 * dpkg-source documents undefined substvar behaviour.
15377 * minor debian/rules cleanups.
15379 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 10 Aug 1996 02:13:47 +0100
15381 dpkg (1.3.1) experimental; urgency=LOW
15383 * manpage for dpkg-source et al now available.
15384 * dpkg-changelog-mode.el installed in site-lisp, but still no autoload.
15386 * dpkg-source prints correct string for not-understood tar -vvt output.
15387 * dpkg-source parsing of tar -vvt output made more robust.
15389 * dpkg-buildpackage prints usage message on usage error.
15390 * dpkg-gencontrol can print usage message.
15391 * -T<varlistfile> option added to dpkg-source.
15392 * Description of -f<fileslistfile> corrected in dpkg-distaddfile usage.
15393 * -m<maintainer> synopsis changed in dpkg-genchanges usage.
15394 * debian/substvars may now contain blank lines.
15396 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 8 Aug 1996 02:36:04 +0100
15398 dpkg (1.3.0) experimental; urgency=LOW
15400 * dpkg can install named pipes.
15401 * dpkg-deb supports directory for destination, generates filename.
15402 * dpkg-{source,gencontrol,genchanges,parsechangelog,buildpackage},
15403 dpkg-distaddfile scripts to support new source package format.
15404 * a.out build no longer supported.
15405 * Changed to new source package format.
15407 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 6 Aug 1996 02:31:52 +0100
15410 dpkg (1.2.14) stable unstable; urgency=MEDIUM
15412 * dselect +/-/_/= on lines for all broken, new, local or whatever
15413 packages do not affect _all_ packages. (Bug#4129.)
15415 * NOTE - THE HISTORY FORKS HERE. 1.2.14's change appears in 1.3.7.
15417 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 22 Aug 1996 00:39:52 +0100
15420 dpkg (1.2.13) unstable; urgency=LOW
15422 * dpkg --search produces correct output for diversions.
15423 * dpkg-name remove unnecessary arch missing warning. (Bug#3482.)
15425 * dpkg-deb --build warns about uppercase chars in package name.
15427 * dpkg-scanpackages error messages updated and manpage provided
15428 (thanks to Michael Shields).
15429 * dpkg-scanpackages warns about spurious entries in override file.
15430 * dpkg-scanpackages `noverride' renamed to `override' everywhere.
15431 * dpkg-scanpackages field ordering to put Architecture higher.
15432 * dpkg-scanpackages field names capitalised appropriately.
15433 * dpkg-scanpackages invokes find with -follow. (Bug#3956.)
15435 * guidelines say #!/usr/bin/perl everywhere, not #!/bin/perl.
15436 * Many developers' PGP keys added.
15438 * configure script uses ${CC} instead of $(CC) (again :-/).
15439 * developers' keys included in dpkg source tree and /usr/doc.
15440 * configure remade using autoconf 2.10-3 (was 2.4-1).
15442 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 1 Aug 1996 02:46:34 +0100
15444 dpkg (1.2.12); priority=LOW
15446 * dpkg --search and --list understand and comment on diversions.
15447 * dpkg-divert displays diversions more intelligibly.
15449 * Guidelines are somewhat clearer about descriptions.
15450 * deb(5) describes new format; old moved to deb-old(5). (Bug#3435.)
15451 * deb-control(5) carries a warning about being out of date.
15453 * Added 1996 to dselect version/copyright.
15455 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 4 Jul 1996 15:04:49 +0100
15457 dpkg (1.2.11); priority=MEDIUM
15459 * dselect had dependency bug if installed package newer than avail.
15460 * Added `replaces' to dselect's list of package relationship strings.
15462 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 1 Jul 1996 02:51:11 +0100
15464 dpkg (1.2.10); priority=MEDIUM
15466 * Fixed bug in old-style version/revision number parsing. (Bug#3440.)
15468 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 29 Jun 1996 03:32:45 +0100
15470 dpkg (1.2.9); priority=MEDIUM
15472 * Fixed status database updates reading bug.
15473 * `Setting up' message includes version number.
15474 * `existence check' message changed to say `cannot access archive'.
15476 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 27 Jun 1996 13:39:36 +0100
15478 dpkg (1.2.8); priority=LOW
15480 * dpkg --record-avail puts data in Size field.
15481 * strip / for rmdir(2) in cleanup to work around kernel bug. (Bug#3275.)
15482 * dpkg-split --msdos no longer allows `-' and other chars in filenames.
15484 * manual dpkg-split(8) written.
15485 * dpkg-split minor typo in --auto usage error message fixed.
15486 * dpkg-deb(8) very minor cosmetic fix to --build option.
15488 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 25 Jun 1996 03:00:14 +0100
15490 dpkg (1.2.7); priority=LOW
15492 * dpkg-scanpackages syntax errors fixed.
15494 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Fri, 21 Jun 1996 04:10:38 +0100
15496 dpkg (1.2.6); priority=MEDIUM
15498 * NFS, CDROM and partition dselect methods include mountpoint
15499 in paths given to dpkg in [I]install, so they should now work.
15501 * Removed some leftover files from source tree.
15503 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 12 Jun 1996 14:35:19 +0100
15505 dpkg (1.2.5); priority=MEDIUM
15507 * Allow, but do not create, packages in half-installed state
15508 with no version number. (Aargh.)
15510 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 10 Jun 1996 04:55:43 +0100
15512 dpkg (1.2.4); priority=MEDIUM
15514 * New dpkg-name from Erick (<pkg>_<version>_<arch>.deb convention).
15515 * Disappeared packages can't own conffiles any more ! (Bug#3214.)
15516 * install-info creates Miscellaneous sections with a newline
15517 following the heading. (Bug#3218.)
15518 * cleanup-info script installed in /usr/sbin; called as appropriate
15519 by postinst. Thanks to Kim-Minh Kaplan. (Bug#3125.)
15520 * Allow superseded Essential packages to be purged after they've
15521 been removed (clear the Essential flag on removal, and ignore it
15522 on packages that are in stat_configfiles).
15524 * dselect disk methods understand `y' as well as `yes' for using
15526 * dselect doesn't make packages appear as `new' again if update
15527 of available packages fails.
15528 * dselect places method selection cursor over option last selected.
15530 * dpkg-scanpackages doesn't die when repeated packages are found.
15531 * dpkg-scanpackages allows many old maintainers (`//'-separated).
15533 * `Version' field is now mandatory (some operations already
15534 wouldn't work right anyway if it was't there).
15536 * update-rc.d(8) now says you must remove the script. (Bug#3215.)
15537 * dpkg --force-help says that --force-overwrite is on by default.
15538 * dpkg-deb manpage rewritten.
15539 * debian.README (= /usr/doc/copyright/dpkg) edited slightly.
15541 * Some database parsing grunge removed (pdb_preferversion, &c).
15542 * Source tree doc/sgml contains some embryonic manuals.
15543 * Leftover files in lib directory in source tree deleted.
15545 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 10 Jun 1996 03:52:01 +0100
15547 dpkg (1.2.3); priority=HIGH
15549 * install-info doesn't replicate section headings (Bug#3125, #2973).
15550 * New dpkg-name manpage broken off from script (oops!).
15551 * dselect help screens made consistent with new strings, flags, &c.
15552 * dselect error flag column labelled E (Error), not H (Hold).
15553 * `Escape' no longer bound to `exit list without saving' in dselect.
15555 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 28 May 1996 02:14:57 +0100
15557 dpkg (1.2.2); priority=MEDIUM
15559 * Fixed dselect coredump found by Erick Branderhorst (thanks).
15560 * Sort obsolete removed packages separately, not under Available.
15562 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 23 May 1996 21:31:05 +0100
15564 dpkg (1.2.1); priority=MEDIUM
15566 * `=' key in dselect really does `hold' rather than `unhold'.
15567 * dselect dependency processing now interacts better with `hold'.
15568 * dselect `I' key (not `i') modifies display of the info window.
15569 * dselect shows unavailable packages as being unavailable.
15570 * dselect main menu headings and many other strings changed to try to
15571 discourage people from deselecting every package and using [R]emove.
15572 Notably, `select' changed to `mark' throughout.
15574 * dselect disk methods now print a few fewer double slashes.
15575 * dselect disk access methods will offer to use dpkg --record-avail
15576 to scan the available packages, if no Packages file is found.
15578 * New dpkg --compare-versions option, for the benefit of scripts &c.
15579 * New dpkg --clear-avail option forgets all available packages info.
15580 * New dpkg --print-avail option, prints `available' data (from Packages, &c).
15581 * dpkg usage message is more informative, but no longer fits on screen.
15582 * dpkg --avail option renamed --record-avail.
15584 * Latest dpkg-name from Erick Branderhorst.
15585 * dpkg-scanpackages has more sensible problem reporting.
15586 * postinst configure now gets null argument (not <unknown> or <none>)
15587 when there is no previously configured version.
15589 * Guidelines say that postinst configure is given previous version.
15590 * Guidelines don't refer to maintainer-script-args.txt in main text.
15591 * Guidelines (Texinfo source) uploaded separately.
15593 * Own version of strcpy (used for debugging) removed.
15594 * Interface to access methods document in source (doc/dselect-methods.txt).
15595 * debian.buildscript moves changes file into parent directory.
15597 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 22 May 1996 01:26:31 +0100
15599 dpkg (1.2.0); priority=MEDIUM
15601 * dselect can sort packages by available and installed states, and
15602 display their version numbers. (Use O, o and V.)
15603 * Hold is properly integrated as a real `wanted state', rather than
15605 * Epochs in version numbers implemented, using the syntax
15606 <epoch>:<version>-<revision>. (Epoch not usually displayed.)
15607 * dselect disk method is architecture-independent (uses dpkg's
15608 installation architecture, and looks in the right part of the tree).
15610 * dselect disk method doesn't try to satisfy the predependencies of
15611 packages which are on hold.
15612 * Fixed conflict-related assertion failure. (Bug#2784.)
15613 * conffiles do not cause file conflicts if the conflicting package
15614 is in the `configuration only' state. (Bug#2720.)
15615 * Fixed messages where available version number was reported as installed
15616 version in conflict and dependency messages. (Bug#2654, Bug#2974.)
15618 * New format .deb files are default even for a.out compiles (but
15619 a.out version of dpkg is in old format).
15620 * Characters @:= (at colon equals) in package names now strictly
15621 forbidden everywhere (_ is still allowed in existing packages).
15622 * New dpkg --print-installation-architecture option prints installation
15623 architecture (compiled in), rather than build architecture (determined
15624 from gcc -print-libgcc-file-name).
15626 * Version messages show whether compiled a.out or ELF (i386 only).
15627 * Fixed missing space in version syntax error messages.
15628 * Manpage dpkg.8 installed with warning about inaccuracy.
15630 * Guidelines don't say to stop and restart daemons in runlevels 2345;
15631 instead they say to start in 2345 and stop in 016.
15632 * Guidelines and version messages say just Debian Linux.
15633 * Guidelines typo fix `"stop2' => `"stop"'. (Bug#2867.)
15635 * doc/Makefile.in clean properly deletes various guidelines.info* files.
15637 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 16 May 1996 00:01:21 +0100
15639 dpkg (1.1.6); priority=MEDIUM
15641 * Check virtual dependencies when removing (ouch! - thanks SDE.)
15642 * Fixed bug in internal database validity management that could
15643 make dselect and dpkg dump core. (Bug#2613.)
15644 * Fixed two coredumping bugs when using local diversions. (Bug#2804.)
15645 * Fixed disappearance of overwritten packages. (Bug#2696.)
15646 * install-info won't modify dir file before start of menu.
15647 * install-info will create Miscellaneous heading if no sections yet.
15649 * Only alphanums and +-. allowed in package names - enforced by
15650 dpkg-deb --build and documented in Guidelines.
15651 * dselect doesn't display packages unless they are installed, selected
15653 * dselect doesn't show spurious section and priority headings.
15654 * dselect has a few extra keybindings (from Lee Olds).
15655 * --force message changed to `--force enabled' so that default is OK.
15657 * dpkg-name now includes architecture component in .deb filename,
15658 and translates - in package name to _.
15659 * .deb file has architecture component in filename.
15661 * Guidelines changed to say Pre-Depends is for experts only.
15662 * Guidelines say to provide a unidiff (-u) rather than an old context diff.
15663 * Guidelines say 755 root.root for shared libraries.
15665 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 1 May 1996 00:47:22 +0100
15667 dpkg (1.1.5); priority=MEDIUM (HIGH for diversions users)
15669 * Fixed coredump when using diversions. (Bug#2603.)
15670 * Fixed typo in dpkg-divert which could lose diversions. (Bug#2662.)
15672 * --force-overwrite is the default.
15673 * diversions.text provides better examples.
15675 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 10 Apr 1996 13:59:30 +0100
15677 dpkg (1.1.4); priority=MEDIUM
15679 * Allow overwriting of conflicting packages being removed. (Bug#2614.)
15681 * a.out control file says Pre-Depends: libc4 | libc. (Bug#2640.)
15682 * ELF control file and libc dependencies changed to use finalised scheme.
15683 * ELF control file and libc dependencies for i386 only. (Bug#2617.)
15685 * Guidelines say use only released libraries and compilers.
15686 * Install wishlist as /usr/doc/dpkg/WISHLIST.
15687 * Remove spurious entries for Guidelines in info dir file.
15689 * dpkg-deb --build checks permissions on control (DEBIAN) directory.
15691 * Spaces in control file fields not copied by dpkg-split. (Bug#2633.)
15692 * Spaces in split file part control data ignore. (Bug#2633.)
15694 * Portability fixes, including patch from Richard Kettlewell.
15695 * Fixed minor configure.in bug causing mangled GCC -W options.
15697 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 4 Apr 1996 01:58:40 +0100
15699 dpkg (1.1.3); priority=LOW
15701 * dselect disk methods support Pre-Depends installation ordering.
15702 * When dpkg fails and --auto-deconfigure would help it says so.
15703 * dpkg --search output lists several packages with same file on one line.
15704 * Improved dpkg usage message somewhat.
15706 * dpkg-deb --build checks permissions and types of maintainer scripts.
15707 * dpkg-deb --build treats misspecified conffiles as error, not warning.
15708 * dpkg --print-architecture prints compiler's architecture while
15709 dpkg --version (&c) print system's arch (this to help cross-compiling).
15710 * More minor guidelines changes, including dir entry fixup.
15712 * configure script caches more values.
15713 * Changed maintainer email address to ian@chiark.chu.cam.ac.uk.
15715 -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 16 Mar 1996 19:18:08 +0000
15717 dpkg (1.1.2); priority=LOW
15719 * Packaging guidelines installed properly (and as guidelines
15720 rather than debian-guidelines).
15721 * ELF version has more checks to stop you wrecking your dpkg installation.
15722 * dselect disk methods now look for a `local' tree as well, for
15723 people who want locally-available software of various kinds.
15724 * dpkg-divert has debugging message removed.
15725 * Minor guidelines changes.
15727 * Various makefile cleanups, mainly to do with ELF vs. a.out support.
15728 * debian.rules cleans out ~ files itself, as well as calling make clean.
15729 * debian.rules names .nondebbin.tar.gz file ELF too, if appropriate.
15731 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 14 Mar 1996 03:38:29 +0000
15733 dpkg (1.1.1elf); priority=LOW
15735 * Added /usr/lib/dpkg/elf-executables-ok and elf-in-kernel.
15736 * Replaces field now allows automatic removal of conflicting packages.
15737 * Replaces field now required to overwrite other packages' files.
15738 * Architecture field, and dpkg --print-architecture, supported.
15739 * build new format archives by default when compiled with ELF compiler.
15741 * symlinks are now installed atomically (good for shared libraries).
15742 * create /var/lib/dpkg/diversions in postinst if necessary (Bug#2465.)
15743 * Pre-Depends now correctly fails if package never configured.
15744 * dselect disk methods mount with -o nosuid,nodev.
15745 * update-rc.d defaults doesn't add both K and S in any one runlevel;
15746 dpkg postinst fixes up this situation if it sees it.
15748 * Assorted fixups to the Guidelines, which are now in one piece.
15749 * dpkg --list prints version string in one piece.
15750 * dpkg-scanpackages doesn't produce notice on output with list of
15751 packages with Section and/or Priority control file fields.
15753 * control file and debian.rules work both for ELF and non-ELF compiles.
15754 * most files compiled with -O2 (-O3 only for some critical files) -
15755 this fixes ELF build.
15757 -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 11 Mar 1996 04:25:28 +0000
15759 dpkg (1.1.0); priority=LOW
15761 * dpkg supports Pre-Depends.
15762 * postinst script gets most-recently-configured version as $2.
15764 * lib/tarfn.c #includes <errno.h> (portability fix).
15766 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 11 Feb 1996 21:07:03 +0000
15768 dpkg (1.0.17); priority=LOW
15770 * dpkg --recursive follows symlinks (useful for devel tree).
15772 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 10 Feb 1996 15:58:46 +0000
15774 dpkg (1.0.16); priority=LOW
15776 * dpkg-deb much faster reading new format archives. (Bug#2256.)
15777 * Developers' documentation in /usr/doc/dpkg/, /usr/info/.
15779 * Fixed typo in control file Description.
15781 * configure script tries to improve matters wrt sysinfo.
15782 * any debian-tmp.deb is deleted by `./debian.rules clean'.
15784 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 4 Feb 1996 15:51:59 +0000
15786 dpkg (1.0.15); priority=LOW
15788 * dselect disk methods should never unmount things they didn't mount.
15789 * debian.README aka /usr/doc/copyright updated.
15791 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 30 Jan 1996 15:05:39 +0000
15793 dpkg (1.0.14); priority=MEDIUM
15795 * fixed file descriptor leak in dpkg introduced in 1.0.11.
15796 * included dpkg-name in this package (conflicts with dpkg-name).
15798 * redraw in dselect main menu changed to use clearok (like in lists).
15799 * sa_restorer in struct sigaction no longer used (portability fix).
15800 * removed Guidelines from source package.
15802 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 30 Jan 1996 02:52:29 +0000
15804 dpkg (1.0.13); priority=MEDIUM
15806 * dselect partition and mounted methods work again.
15807 * dpkg-deb --no-act in usage message.
15809 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 26 Jan 1996 18:37:03 +0000
15811 dpkg (1.0.12); priority=MEDIUM (HIGH for users of 1.0.11)
15813 * Fixed frequent dpkg coredump introduced in 1.0.11. (Bug#2219.)
15814 * dpkg-deb ensures version numbers start with alphanumerics.
15816 -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 24 Jan 1996 00:42:31 +0000
15818 dpkg (1.0.11); priority=MEDIUM
15820 * corrected potentially serious problem with dpkg low-memory in-core
15822 * dpkg-split --msdos puts output files in right directory. (Bug#2165.)
15824 * diversions implemented - see `dpkg-divert --help'.
15826 * dselect shows and uses (for dependencies) currently installed
15827 version of a package if that is more recent.
15828 * dpkg --force-... options are in separate help screen.
15829 * better error messages for corrupted .deb archives. (Bug#2178.)
15830 * dselect NFS method will unmount correct copy of NFS area if mounted
15833 * removes some ELF compilation warnings.
15835 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 19 Jan 1996 02:41:46 +0000
15837 dpkg (1.0.10); priority=MEDIUM
15839 * dpkg-deb option parsing unmuddled (-I option was removed
15840 in 1.0.9 and broke dpkg-deb). (Bug#2124.)
15842 * dpkg-split will work when ELF `ar' is installed, and is faster.
15844 * nfs dselect method now available.
15845 * disk methods don't prompt spuriously for Packages files.
15846 * cdrom+harddisk methods can find Packages files.
15848 * dpkg-scanpackages (creates Packages files) now in /usr/sbin.
15850 * various changes to help compilation of dpkg-deb, dpkg-split
15851 and md5sum on non-Debian systems.
15852 * <sys/fcntl.h> replaced by <fcntl.h> throughout.
15854 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 14 Jan 1996 02:55:19 +0000
15856 dpkg (1.0.9); priority=MEDIUM
15858 * dselect uninitialised variable coredump fixed (thanks Carl).
15860 * version numbers printed by --version fixed. (Bug#2115.)
15861 * disk method problem with missing Packages files fixed. (Bug#2114.)
15862 * dependency version relationships now <= >= << >> =. (Bug#2060.)
15864 * install-info is in /usr/sbin, not /usr/bin. (Bug#1924.)
15865 * dpkg regards Revision field as obsolete.
15867 * <asm/unistd.h> changed to <linux/unistd.h> (for m68k port).
15868 * scripts/Makefile.in `clean' target deletes scripts.
15870 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 11 Jan 1996 20:51:20 +0000
15872 dpkg (1.0.8); priority=LOW
15874 * update-alternatives slightly more helpful message. (Bug#1975.)
15875 * cosmetic improvements to disk installation method. (Bug#1970,1956.)
15876 * mounted filesystem and unmounted partition separate methods. (Bug#1957.)
15878 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 12 Dec 1995 04:07:47 +0000
15880 dpkg (1.0.7); priority=MEDIUM (HIGH to upgrade syslogd)
15882 * dselect harddisk/CDROM method script handles multiple package
15884 * Everything has a manpage, though many are very unhelpful indeed.
15886 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 30 Nov 1995 03:59:14 +0000
15888 dpkg (1.0.6); priority=MEDIUM (HIGH to upgrade syslogd)
15890 * conffiles can now be taken over properly from one package by
15891 another which replaces it. (Bug#1482.)
15892 * dpkg will not deconfigure essential packages when --auto-deconfigure
15893 is set (this bug was fairly unlikely ever to be exercised).
15895 * dpkg checks for the presence of certain important programs on the PATH.
15896 * dselect is now more informative when a dependency is missing, saying
15897 "<package> does not appear to be available". (Bug#1642, 1705).
15899 * `make distclean' fixed; config.* &c removed from source archive.
15900 * lib/lock.c now uses fcntl rather than flock, for better portability.
15902 * `Package_Revision: 0' removed from control file.
15903 * Some inaccuracies and bad formatting in various messages corrected.
15905 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 21 Nov 1995 20:15:18 +0000
15907 dpkg (1.0.5); priority=LOW
15909 * dpkg-split allows some space for the header. (Bug#1649.)
15910 * dpkg-split now has --msdos option for 8.3 filenames.
15911 * dpkg-split --join &c will not complain about trailing garbage.
15913 * dselect & dpkg will no longer ignore SIGHUP will running subprocesses.
15915 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 13 Oct 1995 13:59:51 +0100
15917 dpkg (1.0.4); priority=MEDIUM (HIGH for dselect users with 1.0.3)
15919 * fixed bug which prevented dselect from displaying the bottom line of
15920 any listing screen. This was introduced in 1.0.3, sorry !
15922 * a conffile will never cause a prompt if the package maintainer
15923 distributes a file identical to the user's, even if the file has
15924 been edited by both the user and the maintainer or is a
15925 newly-registered conffile. (Bug#1639.)
15927 * dselect disk/cdrom method script says where to get Packages file.
15928 * dselect help has better descriptions of the functions of Return and Q.
15930 * postinst now warns about some problems with /usr/lib/dpkg/methods/hd.
15932 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 12 Oct 1995 01:45:38 +0100
15934 dpkg (1.0.3); priority=MEDIUM
15936 * dselect: fixed segfault when doing some multiple (de)selections.
15938 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 10 Oct 1995 03:21:12 +0100
15940 dpkg (1.0.2); priority=MEDIUM
15942 * problem with screen refresh after `o' (change order) corrected.
15944 -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 9 Oct 1995 13:11:04 +0100
15946 dpkg (1.0.1); priority=LOW
15948 * much better dpkg performance on low-memory systems.
15949 * start-stop-daemon --name should now work. (oops!)
15950 * fixed typo which could turn into memory overwriting bug sometime.
15952 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 8 Oct 1995 20:12:29 +0100
15954 dpkg (1.0.0); priority=LOW
15956 * Version 1.0.0: dpkg is no longer beta.
15958 * tar extractor no longer looks up an empty string using getgrnam
15959 (this causes the libc to coredump when using NIS).
15961 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 1 Oct 1995 13:07:36 +0100
15963 dpkg (0.93.80); priority=LOW
15965 * dselect help screen intro changed to remove `much' before `help'.
15967 * update-alternatives.pl contains hardcoded ENOENT value, instead
15968 of requiring POSIX.pm to be present.
15970 * Makefiles changed to strip when installing instead of when building.
15972 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 30 Sep 1995 01:44:12 +0100
15974 dpkg (0.93.79) BETA; priority=LOW
15976 * DPKG_NO_TSTP environment variable which stops dpkg sending the
15977 process group a SIGTSTP (Bug#1496).
15978 * End key should work in dselect lists (Bug#1501).
15979 * various message typos (missing \n's) fixed (Bug#1504).
15981 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 29 Sep 1995 03:27:01 +0100
15983 dpkg (0.93.78) BETA; priority=LOW
15985 * dselect keystrokes help file typo fix.
15987 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 28 Sep 1995 20:31:02 +0100
15989 dpkg (0.93.77) BETA; priority=MEDIUM
15991 * dpkg --remove --pending will purge things when appropriate.
15993 * fixed failure to null-terminate dpkg conflict problem messages.
15994 * fixed bug in formatting of dependency version problem messages.
15996 * Conffiles resolution prompt for new conffile: typo fixed.
15997 * Changed dpkg usage error to suggest `-Dhelp' instead of `--Dhelp'.
15999 -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 20 Sep 1995 23:44:35 +0100
16001 dpkg (0.93.76) BETA; priority=MEDIUM
16003 * dpkg --auto-deconfigure option (used automatically by dselect) allows
16004 `important' packages which many others depend on to be split.
16005 * dpkg should no longer fail an assertion during complicated
16006 multiple configurations involving packages which are on hold.
16008 * update-alternatives supports negative priorities.
16009 * /etc/alternatives is included in the .deb archive.
16011 * Package priorities changed: Required (Req), Important (Imp), Standard (Std),
16012 Optional (Opt) and Extra (Xtr). For backward compatibility Base is an
16013 alias for Required, and Recommended is kept as a level just below Standard.
16015 * dselect shows introductory help screen when entering package lists (both
16016 main and recursive).
16017 * dselect help messages made more friendly.
16018 * dselect package list `quit, confirm, and check dependencies' key is
16019 now Return rather than lowercase `q'; likewise method list `select this
16020 one and configure it' key.
16021 * dselect selects packages with priority `standard' or better by default.
16022 * dselect `v=verbose' becomes `v=terse' when in verbose mode.
16024 * hard disk method unmounts /var/lib/dpkg/methods/mnt on failure.
16025 * disk methods' install message uses `stty' to find out what the
16026 interrupt character is, and uses that in the prompt (rather than ^C).
16027 * dpkg now tolerates ^Z characters in Packages files.
16028 * harddisk method doesn't display extra slash when updating packages file.
16029 * harddisk method burbles less if it doesn't have a good default.
16031 * dpkg-deb now supports new flexible format, but old format still default.
16033 -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 20 Sep 1995 02:49:41 +0100
16035 dpkg (0.93.75) BETA; priority=MEDIUM
16037 * dselect no longer segfaults when you try to modify the last item.
16039 * dselect Makefile compiles with -g, and links without -s, but installs
16040 with -s, so that built source directory has debugabble binary.
16042 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 12 Sep 1995 02:59:29 +0100
16044 dpkg (0.93.74) BETA; priority=LOW
16046 * dpkg-split implemented and installed in /usr/bin/dpkg-split.
16047 (NB this is not compatible with Carl Streeter's old dpkg-split script.)
16048 * dpkg uses dpkg-split.
16049 * floppy disk method available - NB this is a first attempt only.
16051 * hard disk method uses --merge-avail rather than --update-avail.
16052 * installation by default of `standard' packages removed again.
16053 (I don't think this is the right place to do this.)
16054 * update-alternatives --remove correctly deletes all slave links;
16055 minor cosmetic improvements.
16057 -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 11 Sep 1995 02:06:05 +0100
16059 dpkg (0.93.73) BETA; priority=LOW
16061 * dselect multi-package selection now done by `divider' lines
16062 actually in the package list, rather than horizontal highlight
16064 * dselect help available, and keybindings rationalised.
16066 * postinst removes /usr/lib/dpkg/methods/hd if upgrading from
16067 0.93.42.3 or earlier.
16068 * `hold' flag changed to be settable by the user only, and
16069 made orthogonal to the `reinstallation required' flag.
16070 * dpkg will install by default any packages with priority of
16071 `standard' or better unless they're explictly deselected.
16073 * dselect dependency/conflict resolution will suggest marking absent
16074 packages for `purge' rather than `deinstall'.
16075 * disk method script produces message about invoking dpkg.
16076 * dpkg produces warning, not error, when it gets EPERM trying to
16077 remove a directory belonging to a package being removed.
16078 * dpkg, dpkg-deb usage error reporting improved.
16079 * dselect detects too-dumb terminals and stops.
16080 * dpkg-deb(8) updated a little (thanks to Bill Mitchell).
16082 * dselect debugmake script uses -O0.
16084 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 10 Sep 1995 12:23:05 +0100
16086 dpkg (0.93.72) BETA; priority=MEDIUM
16088 * /usr/sbin/update-alternatives added.
16090 * New names for certain control file fields (old names work
16091 as aliases): Optional -> Suggests, Recommended -> Recommends,
16094 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 3 Sep 1995 16:37:41 +0100
16096 dpkg (0.93.71) BETA; priority=LOW
16098 * dpkg doesn't silently overwrite `new' conffiles (Bug#1283).
16099 * case now not significant in Essential, Status and Class (Bug#1280).
16100 * dselect checks method scripts for execute, not for write.
16102 * spelling fixes in lib/dbmodify.c and dselect/helpmsgs.src.
16104 * dselect `clean' target deletes helpmsgs.cc and helpmsgs.cc.new.
16106 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 31 Aug 1995 13:56:08 +0100
16108 dpkg (0.93.70) BETA; priority=MEDIUM
16110 * dselect unmounted harddisk method has many silly bugs fixed.
16112 * dpkg --root option restored (was removed by mistake in 0.93.68).
16113 * minor cosmetic change to dselect subprocess failure message.
16115 -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 9 Aug 1995 22:18:55 +0100
16117 dpkg (0.93.69) BETA; priority=MEDIUM
16119 * dpkg --configure and --remove should work properly when
16120 they have to defer processing (this tends to happen when many
16121 packages are processed at once). (Bug#1209.)
16123 * dpkg --configure and --remove work better when `processing'
16124 several related packages with --no-act.
16126 * dpkg --auto is now two options, --pending or -a (for configure,
16127 remove, &c) and --recursive or -R (for install, unpack, &c).
16129 * dpkg debug options in usage message, and values available (-Dh).
16131 -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 9 Aug 1995 22:18:55 +0100
16133 dpkg (0.93.68) BETA; priority=MEDIUM
16135 * dpkg won't get an internal error if you try to use the default
16136 conffiles response (ie, if you just hit return). (Bug#1208.)
16138 * dselect hard disk and CD-ROM methods - the real thing, but ALPHA.
16140 * dselect allows you to go straight to `update' or `install' if
16141 you have already set up an access method.
16142 * new dpkg options --yet-to-unpack, --merge-avail and --update-avail.
16143 * dpkg -G is an abbreviation for dpkg --refuse-downgrade.
16144 * dpkg -R alias for --root withdrawn, pending reuse with different meaning.
16145 * dpkg --help message rationalised somewhat.
16147 * Obsolete `examples' and `dpkg-split' directories removed from
16148 source tree. The `hello' package is a better example.
16150 -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 7 Aug 1995 02:16:25 +0100
16152 dpkg (0.93.67) BETA; priority=LOW for C dpkg alpha testers, HIGH for others
16154 * dpkg no longer statically linked and -g.
16155 * calls to abort() changed to print string, file and line number first.
16156 * removed unused variable from dpkg source.
16158 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 4 Aug 1995 01:39:52 +0100
16160 dpkg (0.93.66) ALPHA; priority=MEDIUM
16162 * dpkg will correctly remove overwritten files from the lists of
16163 the package(s) that used to contain them.
16165 * dpkg --purge is now an action, rather than a modifier for --remove,
16166 and the -P alias for it is withdrawn.
16168 * dpkg --unpack/--install filenames in messages are now more sensible
16169 about when to use .../ (show as many trailing components as possible
16170 in 40 characters, or the whole path if that the last component is
16173 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 3 Aug 1995 02:11:03 +0100
16175 dpkg (0.93.65) ALPHA; priority=MEDIUM
16177 * dpkg --remove should, when a package being removed is depended-on
16178 by another that is also queued for removal, defer the depended-on
16179 package rather than aborting it. (Bug#1188.)
16181 * dpkg will not attempt to configure or remove a package more than
16182 once in the same run. (Bug#1169.)
16184 * dpkg cosmetic fix to dependency problems message (this bug
16185 hasn't been triggered to my knowledge).
16187 * perl-dpkg no longer installed in /usr/bin.
16189 -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 2 Aug 1995 13:02:58 +0100
16191 dpkg (0.93.64) ALPHA; priority=MEDIUM
16193 * dpkg marks a package as no longer `to be configured in this run'
16194 when an error occurs, so that other packages which depend on it
16195 will fail (rather than causing a loop and an assertion failure,
16196 packages.c:166: failed assertion `dependtry <= 4').
16198 * dselect initial selection granularity is single-package.
16199 * dpkg --no-also-select option renamed to --selected-only (old option
16200 still accepted, but no longer in --help). Changed -N to -O.
16202 * dselect `update' option changed to `install' (and other options
16203 renamed too). NB: old access methods will not work, because
16204 the `update' script should now be an `install' script.
16206 * dselect `installation methods' renamed to `access methods'.
16207 * dpkg --skip-same-version and --refuse-downgrade produce friendlier
16208 messages when they skip packages.
16209 * --licence option now properly mentioned in all programs' --version
16212 * bad fix for ELF compile problem involving myopt.h removed (compile
16213 problem turned out to be a GCC bug.)
16215 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 1 Aug 1995 03:03:58 +0100
16217 dpkg (0.93.63) ALPHA; priority=LOW
16219 * preinst works around shell bug/misfeature involving `trap'.
16221 * dpkg --skip-same-version doesn't skip packages which have
16222 an error flag set or which aren't in a standard `installed' state.
16224 * dpkg --search now does a substring search if the string doesn't
16225 start with a wildcard character (*, [ or ?) or slash.
16227 * problem with C/C++ linkage of stuff in "myopt.h" fixed, to help
16228 with compiling with GCC 2.7.0.
16230 * dselect Makefile.in `clean' deletes curkeys.inc &c, so that they are
16231 not shipped in the distribution source and will be rebuilt on the
16234 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 27 Jul 1995 13:38:47 +0100
16236 dpkg (0.93.62) ALPHA; priority=HIGH
16238 * dpkg purges leftover control scripts from /var/lib/dpkg/tmp.ci,
16239 rather than associating them with the wrong package. (Bug#1101.)
16241 * dpkg won't `disappear' packages containing no files or directories,
16242 nor a package required for depends/recommended. (Bug#1128.)
16244 * dpkg follows directory symlinks. (Bug#1125.)
16246 * dselect fixups for ELF/GCC2.7.0 compilation.
16248 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 21 Jul 1995 21:43:41 +0100
16250 dpkg (0.93.61) ALPHA; priority=LOW
16252 * dselect keybindings and status characters and descriptions changed
16253 (in pursuance of Bug#1037, user interface problems, still open.)
16255 * Some cleanups to fix mistakes discovered by ELF-GCC 2.7.0, and fixup
16256 for newer C++ draft standard (`for' variable declaration scope change).
16258 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 18 Jul 1995 01:42:51 +0100
16260 dpkg (0.93.60) ALPHA; priority=HIGH
16262 * dpkg doesn't think packages have `disappeared' if you install
16263 several packages at once. (later reported as Bug#1132.)
16265 * usage error messages tidied up.
16267 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 16 Jul 1995 17:56:56 +0100
16269 dpkg (0.93.59) ALPHA; priority=HIGH
16271 * dpkg doesn't break maintainer scripts &c if package `foo' exists
16272 when processing package `foobar'. (Related to Bug#1101.)
16274 * dpkg implements `disappear' functionality.
16275 * dpkg/dselect remove dead entries from /var/lib/dpkg/status.
16277 * dpkg --list now sorted correctly and output somewhat improved.
16278 * some debugging messages moved from dbg_stupidlyverbose to dbg_scripts.
16279 * dpkg prints `Removing foo' message even if foo is not configured.
16280 * dpkg only prints `serious warning: files list file ... missing'
16281 once for each package.
16283 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 16 Jul 1995 02:32:11 +0100
16285 dpkg (0.93.58) ALPHA; priority=HIGH
16287 * dpkg should write out status even for packages which it has only
16288 encountered in the `available' file so far.
16290 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 14 Jul 1995 20:19:21 +0100
16292 dpkg (0.93.57) ALPHA; priority=LOW
16294 * dpkg does chroot when running maintainer scripts (--instdir
16295 should work right now, though I haven't been able to test it).
16297 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 14 Jul 1995 01:32:30 +0100
16299 dpkg (0.93.56) ALPHA; priority=HIGH
16301 * dpkg can now overwrite symlinks to directories, and will
16302 do correct handling of symlinks to plain files.
16303 * dpkg should not replace any directory with a symlink.
16305 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 13 Jul 1995 02:43:36 +0100
16307 dpkg (0.93.55) ALPHA; priority=MEDIUM
16309 * dpkg can now extract hardlinks.
16310 * dpkg configuration/removal works in the presence of dependency cycles.
16311 * dpkg should no longer fail an assertion at processarc.c:193.
16313 -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 12 Jul 1995 01:34:44 +0100
16315 dpkg (0.93.54) ALPHA; priority=MEDIUM
16317 * dpkg and dselect no longer throw away all Class and Section
16318 information in /var/lib/dpkg/available. (Oops.)
16319 * dpkg --refuse-<something> now works (this broke some dselect
16320 method scripts' attempts to use --refuse-downgrade).
16321 * dpkg --audit and --list implemented.
16323 -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 10 Jul 1995 00:35:13 +0100
16325 dpkg (0.93.53) ALPHA; priority=LOW
16327 * dpkg --install/--unpack only skips on-hold packages with --auto.
16328 * dpkg doesn't fclose() the --fsys-tarfile pipe twice.
16329 * dpkg error handling and reporting cleaned up.
16330 * dpkg now lists any failed packages/files just before exiting.
16332 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 9 Jul 1995 16:31:36 +0100
16334 dpkg (0.93.52) ALPHA; priority=MEDIUM
16336 * dpkg won't segfault due to missing (Package_)Revision fields.
16337 * dpkg --search works.
16338 * dpkg will set execute permissions on scripts if necessary.
16339 * dpkg prints filenames in --unpack and --install.
16341 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 8 Jul 1995 12:41:39 +0100
16343 dpkg (0.93.51) ALPHA; priority=HIGH
16345 * dpkg --status and --listfiles now work.
16347 * dpkg --remove --auto won't try to remove everything (!)
16348 * dpkg --unpack doesn't coredump after unpacking the first package.
16349 * dpkg won't fail an assertion if it bombs out of --configure
16350 or --remove because of too many errors.
16352 * Support for `Essential' in dpkg (not yet in dselect).
16353 * `available' (Packages) file class and section override those
16354 from package control files.
16355 * `Essential: yes' added to control file.
16357 * Locking strategy changed, now uses flock (no more stale locks).
16358 * preinst now more helpful about conffiles upgrade problem.
16360 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 8 Jul 1995 01:15:26 +0100
16362 dpkg (0.93.50) ALPHA
16364 * C dpkg now in service.
16366 * dselect now installs in /usr/bin instead of /usr/sbin.
16367 * Improved `explanation of display' help and changed HSOC to EIOW.
16368 * dselect goes back to top of info display when you move the
16371 * Added <sys/types.h> to md5sum/md5.c, for the benefit of FreeBSD.
16372 * --admindir doesn't append `var/lib/dpkg' to its argument.
16374 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 19 May 1995 21:03:08 +0100
16376 dpkg (0.93.42.3) BETA; priority=LOW
16378 * Rebuilt using ncurses 1.9.2c-0.
16379 * Silenced `subcritical error' message if errno == ENOENT.
16381 -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 12 Jun 1995 13:09:24 +0100
16383 dpkg (0.93.42.2) BETA; priority=HIGH
16385 * install-info --remove properly removes multi-line entries.
16386 * Slightly changed ^L redraw code in dselect package list.
16388 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 10 Jun 1995 14:06:01 +0100
16390 dpkg (0.93.42.1) BETA; priority=HIGH esp. for new installations
16392 * update-rc.d default no longer adds K entries in runlevels 2345.
16394 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 6 Jun 1995 18:56:23 +0100
16396 dpkg (0.93.42) BETA; priority=LOW; HIGH for dselect users
16398 * Fix unitialised variable reference bug in dselect (#890).
16399 * Fix problem with wordwrapping package and method descriptions.
16400 * Create /var/lib/dpkg/methods/mnt.
16402 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 19 May 1995 21:03:08 +0100
16404 dpkg (0.93.41) BETA; priority=LOW
16406 * Create /var/lib/dpkg/methods.
16407 * dpkg.pl noisily ignores --skip-same-version rather than barfing.
16409 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 16 May 1995 13:28:27 +0100
16411 dpkg (0.93.40) BETA; priority=LOW
16413 * dselect's subprogram failure message made to stand out more.
16415 * When switching out of curses, always move the cursor to the
16416 bottom right corner of the screen.
16418 -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 16 May 1995 01:03:38 +0100
16420 dpkg (0.93.39) BETA; priority=LOW
16423 - allow you to select and configure an installation method;
16424 - invoke installation method scripts to update the available file
16425 and unpack packages;
16426 - invoke dpkg to configure and remove packages.
16427 There are no installation methods available yet.
16429 * Search feature in dselect works (it was purely an ncurses bug).
16431 * dpkg-*.nondebbin.tar.gz now available (built by debian.rules).
16433 * The target directory for dpkg-deb --extract (also available as
16434 dpkg --extract) is no longer optional. dpkg-deb suggests the use
16435 of dpkg --install if you omit it.
16437 * Added <errno.h> to lib/lock.c and fixed ref. to `byte' in
16438 md5sum/md5.c, for portability to Solaris 2.
16440 * Rebuilt `configure' and `config.h.in' using autoconf 2.3.
16441 * Revised function attribute support checking in configure script.
16442 * Removed obsolete `dselect.pl' from scripts directory.
16443 * New option --licence on all the C programs.
16445 -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 14 May 1995 18:05:38 +0100
16447 dpkg (0.93.38) BETA; priority=MEDIUM
16449 * Version number comparisons (in dpkg and dselect) now >= <=
16450 as documented (Bug#831; thanks to Christian Linhart).
16452 * dselect now has a non-superuser readonly mode.
16453 * dselect doesn't pop up unsatisfied `Optional's when quitting.
16454 * `unable to delete saved old file' message fixed dpkg_tmp to dpkg-tmp.
16456 * Made dpkg convert `revision' to `package_revision' when reading
16457 (eg) the `status' file. libdpkg.a has `revision' as a synonym
16458 for `package_revision' and writes the former.
16460 * Major improvements and many changes to C option parsing, database
16461 management, error handling, Makefiles &c to support dpkg.
16462 * dpkg-deb should now work if sizeof(void*) < sizeof(void(*)()).
16464 -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 24 Apr 1995 12:34:39 +0100
16466 dpkg (0.93.37) BETA; priority=LOW (MEDIUM for dselect users)
16468 * Fixed segfault if no description available (Bug#735);
16469 thanks to Peter Tobias for the bug report.
16470 * Fixed other assorted minor bugs in description displays.
16472 * Changed dpkg-deb --info short option from -i to -I, to make
16473 it unique across dpkg and dpkg-deb (-i still works with
16474 dpkg-deb for backwards compatibility).
16476 * Produce more sensible error when main package list is empty.
16478 -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 7 Apr 1995 02:24:55 +0100
16480 dpkg (0.93.36) BETA; priority=LOW (MEDIUM for dselect users)
16482 * All the C code (including dselect) updated to support `provides'
16483 (virtual packages).
16484 * Revamped dselect's related package selection/deselection
16486 * Everything can now handle arbitrary `class' values (as well
16487 as the predefined ones which we understand and can interpret).
16488 * Fixed bug that prevented display update when moving down a small
16489 recursive package list in dselect.
16490 * Column heading characters corrected from `SHOC' to `HSOC'.
16492 -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 6 Apr 1995 12:48:13 +0100
16494 dpkg (0.93.35) BETA; priority=MEDIUM
16496 * Preserve ownerships and permissions on configuration files.
16497 * Fix bug in conffile updating that could leave a hardlink
16498 <foo>.dpkg-new to the conffile <foo>.
16500 * Improved dselect's package list help messages.
16501 * Highlight now moves on after (de)selecting just one package.
16502 * Better algorithm for scrolling up/down when moving highlight.
16503 * Fixed bug in display of `preformatted' extended Description lines.
16504 (dselect is still ALPHA, but is fairly stable.)
16506 * Improved dpkg's message when configuring a package that doesn't
16507 exist, and when selecting or skipping a package that isn't
16508 currently selected (during unpack processing).
16510 * Description in control file expanded.
16512 * Scroll back to top when changing what is in the `info' area.
16514 dpkg (0.93.34) BETA; priority=LOW (HIGH for dselect users)
16516 * dselect: Fixed bug which caused a coredump if you exited the
16517 package list if you'd made any changes. Ouch !
16519 * dselect: Improved selection algorithm to show fewer extraneous
16520 packages; improved display for unavailable packages.
16522 * dpkg: Improved progress messages during unpacking somewhat.
16524 dpkg (0.93.33) BETA; priority=LOW (HIGH for dselect users)
16526 * dselect now has a main menu.
16528 * Fixed nasty uninitialised data bug in dselect.
16530 * dselect now locks and unlocks the packages database.
16532 Mon, 27 Mar 1995 03:30:51 BST Ian Jackson <iwj10@cus.cam.ac.uk>
16534 * dpkg (0.93.32): Alpha dselect released and installed in
16536 * dpkg (0.93.32): Many portability enhancements: should now
16537 compile using GCC 2.6.3, and dpkg-deb should
16538 compile better on non-Linux systems.
16539 * dpkg (0.93.32): dpkg will not loop if its stdin disappears
16540 and it needs to prompt.
16541 * dpkg (0.93.32): Fixed removal dependency error to show
16542 correct package (Bug #648).
16543 * dpkg (0.93.32): Tidied up copyright notices.
16544 * dpkg (0.93.32): First draft of update-rc.d manpage, not yet
16545 installed in /usr/man.
16546 * dpkg (0.93.32): Changes to top-level Makefile.in to improve
16548 * dpkg (0.93.32): Improved Makefile `clean' and `distclean'
16550 * dpkg (0.93.32): Deleted irrelevant `t.c' from lib and
16551 dselect directories.
16552 * dpkg (0.93.32): Added vercmp.c with version comparison code.
16553 * dpkg (0.93.32): varbufextend message changed - varbufs not
16554 just for input buffers.
16555 * dpkg (0.93.32): varbuf has C++ member functions in header
16556 #ifdef __cplusplus.
16558 Changes in dpkg 0.93.31:
16560 * start-stop-daemon --pidfile now works (Bug#571).
16561 * Fixed dependency processing bugs which could require a rerun of
16562 dpkg --configure (Bug#566).
16563 * Fixed garbage output for `language' of control file in dpkg-deb --info.
16565 Changes in dpkg 0.93.30:
16567 * Added /usr/sbin/start-stop-daemon.
16569 Changes in dpkg 0.93.29:
16571 * Made postinst scripts really be run when dpkg --purge used.
16572 * Added new --force-extractfail option - VERY DANGEROUS.
16574 Changes in dpkg 0.93.28:
16576 * Removed undef of 0x_p21 in read_database_file, which caused the
16577 the whole status database to become trashed when any update files
16579 * Make infinite-loop prevention and cycle detection work.
16580 * Made findbreakcycle work (ie, break properly when cycle detected).
16581 * New script, update-rc.d, to update links /etc/rc?.d/[KS]??*.
16582 * dpkg.pl now sets the umask to 022.
16583 * Cosmetic error message fix to dpkg-deb.
16584 * Deleted OLD directory altogether.
16585 * Improved error-trapping in top-level Makefile loops.
16587 Changes in dpkg 0.93.27:
16589 * Make version number specifications in Depends &c work.
16590 * Added AC_PROG_CXX to autoconf.in for dselect.
16591 * Changed myopt.h not to have cipaction field in cmdinfo (this was
16592 specially for dpkg-deb) - now we have a generic void*.
16593 * Renamed `class' member of `pkginfoperfile' to `clas' [sic].
16594 * Much work in `dselect' subdirectory.
16595 * Deleted executables, objects and libraries from OLD tree !
16596 * Minor changes to various copyright notices and top-of-file comments.
16597 * Don't install nasty Perl dselectish thing as /usr/bin/dselect.
16599 Changes in dpkg 0.93.26:
16601 * Added --no-also-select instead of not auto-selecting on --unpack
16602 but doing so on --install; removed --force-unpack-any.
16604 Changes in dpkg 0.93.25:
16606 * Fixed duplicate output (failure to flush before fork) bug.
16607 * More clarification of md5sum.c copyright.
16608 * Corrected typo in ChangeLog in 0.93.24 source package.
16610 Changes in dpkg 0.93.24:
16612 * dpkg could copy conffiles info from one package to another. Aargh.
16614 * dpkg failed to initialise status if you tried to remove or
16615 configure a nonexistent package. Bug #419.
16616 * install-info now handles START-INFO-DIR-ENTRY entries like:
16617 * Gdb:: The GNU debugger.
16618 Previously it would only accept (Bug #407):
16619 * Gdb: (gdb). The GNU debugger.
16620 * When installing a new foo.info[.gz], install-info now replaces
16621 * Foo: (foo.info). The Gnoo Foo.
16622 as well as just * Foo: (foo). ...
16623 * Moved option parsing out of dpkg-deb into libdpkg.
16624 * Assorted minor source code rearrangements.
16625 * Fixed assorted copyright notices, clarified md5sum copyright.
16626 * Corrected typo in 0.93.23 source package's ChangeLog.
16628 Changes in dpkg 0.93.23:
16630 * `dpkg-deb' --build now does a syntax check on the control file.
16631 * `dselect' is now no longer called `debian', spurious copy removed
16632 from package top-level source directory.
16633 * C control information parsing complete and somewhat tested.
16634 * Moved `global' include files into $(srcdir)/include from ../lib,
16635 added some files to the lib Makefile, and arranged for pop_cleanup().
16637 Changes in dpkg 0.93.22:
16639 * Fixed bug which caused dpkg to see failures of md5sum where there
16640 were none (would also have caused dpkg to miss a real failure).
16641 * Fixed failure to update some `status' database fields.
16643 Changes in dpkg 0.93.21:
16645 * Fixed error-handling bug which could corrupt database.
16647 Changes in dpkg 0.93.20:
16649 * Fixed bug which ran old (/var/adm/dpkg) postinst scripts.
16650 * Fixed dpkg usage message which claimed -i => both --install & --info.
16651 * Use Colin Plumb's MD5 code - faster, and better copyright.
16652 * Manpages: dpkg-deb(8), deb-control(5), deb(5) - thanks to Raul
16653 Deluth Miller. Also, an xfig picture of some C program innards.
16655 Changes in dpkg 0.93.19:
16657 * Don't delete the `list' file from the dpkg database.
16658 * Fixed various bugs in the conffile handling.
16659 * Conffiles that are symlinks will now be treated as if the
16660 `dereferenced' name of the file was listed in conffiles. This means
16661 that /etc/foo -> /usr/etc/foo will cause all conffile updates of
16662 /etc/foo to create /usr/etc/foo.dpkg-tmp &c instead. However, the
16663 link will be removed if --purge is used to delete all the conffiles.
16664 * When doing a new installation, or when updating a conffile that
16665 wasn't listed as a conffile in the old version of the package, don't
16666 do any prompting but just install the version from the archive.
16667 * Corrected error message if exec of dpkg --vextract failed
16668 and --instroot or --root specified.
16669 * Added new --force-unpack-any option.
16670 * Extra newline after --status output.
16671 * Added -W options to CFLAGS.
16672 * Fixed mistake in previous ChangeLog entry.
16674 Changes in dpkg 0.93.18:
16676 * Fixed invocation of dpkg-deb --vextract if --root or --instdir
16678 * Create /var/lib/dpkg/updates.
16680 Changes in dpkg 0.93.17:
16682 * install-info --remove exits with status 0 if it doesn't find the
16683 thing to remove, instead of status 1.
16684 * Error handling functions have __attribute__((format...)) if GCC.
16685 * push_cleanup its arg takes void **argv instead of char **argv.
16686 * Top-level Makefile.in has set -e before `for' loops.
16687 * dpkg-deb --info not-an-existing-file produces fewer error messages.
16689 Changes in dpkg 0.93.16:
16691 * Made --root= option really extract to $instroot instead of `/'.
16692 * install-info clears the 0444 bits in its umask.
16693 * Fixed a few database handling bugs which cause dpkg always to fail,
16694 and usually to corrupt the status database in various ways.
16695 * dpkg-deb completely rewritten, now doesn't tinker with
16696 /var/{adm,lib}/dpkg. Should be faster.
16697 * Directory structure and Makefiles in source package reorganised.
16699 Changes in dpkg 0.93.15:
16701 * Added `debian' (dselect), still very primitive.
16702 * Database format changed, and moved from /var/adm to /var/lib.
16703 * Added dpkg --avail mode, --list, --status and --search.
16704 * Set of dpkg => dpkg-deb pass-through operations changed (but
16705 dpkg-deb not yet updated).
16706 * Added --root, --admindir and --instdir, as well as --isok &c.
16707 * Moved much stuff into /usr/lib/dpkg-lib.pl, rewritten status
16709 * Put packages in `purge' state even if `deinstall' requested if
16710 they have no postrm and no conffiles.
16711 * Version number comparisons fixed.
16712 * insert-version.pl now installes lib.pl filename too.
16713 * Strip trailing slashes when reading files from file lists.
16715 Changes in dpkg 0.93.14:
16717 * Fixed parsing of DEPENDS &c fields with trailing whitespace.
16718 * postinst now fixes up broken ispell.control file.
16719 * Cyclic dependency/multiple package removal processing: don't consider
16720 packages we've just removed when looking for a reason not to go ahead.
16721 * Added call to postinst with `purge' argument for expunging old
16722 configuration etc. that aren't listed in conffiles.
16724 Changes in dpkg 0.93.13:
16726 * sub S_ISREG defined in dpkg.pl.
16727 * Checking of DEPENDS &c fields was too lax, causing an internal error
16728 if you fed it certain kinds of broken control file.
16729 * Fixed misleading message from bogus installationstatus call.
16730 * New -u and -U options to dpkg-deb which don't unpack the /DEBIAN
16731 directory, and use these in dpkg.pl; clean up /DEBIAN in postinst.
16733 Changes in dpkg 0.93.12:
16735 * No longer needs *.ph files, since these appear to be broken.
16736 * Postinst fixes up *.control files with curly brackets.
16737 * embryo of dselect.
16739 Changes in dpkg 0.93.11:
16741 * New --ignore-depends option.
16742 * This ChangeLog changed format here.
16744 Wed Nov 30 15:38:21 GMT 1994 Ian Jackson <iwj10@cus.cam.ac.uk>
16746 * dpkg 0.93.11 released.
16748 * conffile updating fixed.
16750 * Message `updgrade' in dpkg changed to `replace'.
16752 * install-info now copes with multi-line entries.
16754 * version numbers now done automatically in dpkg and install-info.
16756 * more debugging around conffiles updates.
16758 * *.hash files not deleted so soon.
16760 * adds brand new packages to status array so we can install them.
16762 * postinst does h2ph for {sys,linux}/{stat,types}.ph if required.
16764 Mon Nov 28 02:00:13 GMT 1994 Ian Jackson <iwj10@cus.cam.ac.uk>
16766 * dpkg 0.93.10 released.
16768 * dpkg.pl completely rewritten.
16770 * dpkg-deb: removed dabase-processing and --install option.
16772 * Makefiles reworked, debian.rules added.
16774 * Don't install anything in /usr/doc/examples.
16776 * dpkg-*.deb contains /usr/bin/dpkg-deb.dist, fixed up by postinst.
16778 Thu Oct 20 13:22:20 1994 Ian Murdock (imurdock@debra.debian.org)
16780 * dpkg 0.93.9 released.
16782 * dpkg.pl: Use $argument, not $package, with `--build'.
16783 Make sure that saved postinst scripts are executable.
16785 Tue Oct 18 09:40:57 1994 Ian Murdock (imurdock@debra.debian.org)
16787 * dpkg 0.93.8 released.
16789 * deb/remove.c (pkg_remove): Do not report an error from rmdir ()
16790 when `errno' is ENOTEMPTY (Directory not empty), because in this
16791 case we have found the highest-level directory in the package and
16792 are ready to exit the loop (i.e., it is a normal occurrence).
16794 Mon Oct 17 10:44:32 1994 Ian Murdock (imurdock@debra.debian.org)
16796 * Makefile.in: Adapted all Makefiles to the GNU Coding Standards.
16798 * deb/remove.c (pkg_remove): Make sure that parent directories are
16799 removed LAST! This will result in complete removal of packages
16800 when --remove is called. dpkg 0.93.7 (and earlier) had problems
16801 with this because it tried to remove directories in order, which
16802 will work most of the time, but not necessarily all of the time.
16804 * deb/list.c (pkg_list): Output is sorted by package name.
16806 Tue Oct 4 12:27:10 1994 Ian Murdock (imurdock@debra.debian.org)
16808 * deb/contents.c (pkg_contents): When a list file cannot be
16809 opened, silently fail and let the front-end explain the problem.
16811 * deb/util.c (return_info): When a control file cannot be opened,
16812 silently fail and let the front-end explain the problem.
16814 * deb/search.c (pkg_search): Exit 0 if the regular expression is
16815 matched and 1 if it is not.
16817 Mon Oct 3 18:38:53 1994 Ian Murdock (imurdock@debra.debian.org)
16819 * dpkg.pl: New file. Replaces dpkg.sh.
16821 * deb/Makefile.in: Renamed `dpkg-util.deb' to `dpkg-deb'.
16823 * deb/build.c (pkg_build): `--build' is less verbose, instead
16824 letting the front-end add verbosity where appropriate.
16826 * deb/install.c (pkg_install): Ditto.
16828 * deb/remove.c (pkg_remove): Ditto.
16830 * deb/search.c (pkg_search): Ditto.
16832 * deb/describe.c (pkg_describe): `--describe' is less verbose,
16833 instead letting the front-end add verbosity where appropriate.
16834 The ``Description:'' label has been removed.
16836 * deb/version.c (pkg_version): `--version' is less verbose,
16837 instead letting the front-end add verbosity where appropriate.
16838 The ``Version:'' label has been removed, as has the maintainer
16841 Mon Sep 12 14:22:04 1994 Ian Murdock (imurdock@debra.debian.org)
16843 * deb/version.c (pkg_version): `--version' now reports the
16844 version number of dpkg if no argument is specified.
16846 Thu Sep 1 13:31:37 1994 Ian Murdock (imurdock@debra.debian.org)
16848 * dpkg 0.93.7 released.
16850 * deb/build.c (pkg_build): check status and exit if non-zero.
16852 * deb/contents.c (pkg_contents): ditto.
16854 * deb/install.c (archive_extract): ditto.
16856 Thu Sep 1 13:20:08 1994 Ian Murdock (imurdock@debra.debian.org)
16858 * deb/version.c (pkg_version): indent to the same point as
16861 Thu Sep 1 12:21:11 1994 Ian Murdock (imurdock@debra.debian.org)
16863 * Makefile.in (dist): added debian.rules binary, source and
16864 dist targets to make final distribution easier to make.
16865 (install): install programs to /usr/bin.
16867 * deb/Makefile.in (install): install programs to /usr/bin.
16869 * deb/list.c (pkg_list): enforce a maximum limit of ten characters
16870 for the package name in the output.
16871 (pkg_list): left-justify the version number to make it easier for
16872 the front-end to parse the output.
16873 (pkg_list): replace first '\n' character in packages[n].description
16876 * deb/install.c (archive_extract): use the `p' option to `tar' to
16877 ensure that permissions are preserved.
16879 Sat Aug 27 09:53:37 1994 Ian Murdock (imurdock@debra.debian.org)
16881 * dpkg 0.93.6 released.
16883 * deb/util.c (return_info): only unlink CONTROL if ARCHIVE_FLAG is
16886 Fri Aug 26 15:38:22 1994 Ian Murdock (imurdock@debra.debian.org)
16888 * dpkg 0.93.5 released.
16890 * deb/contents.c (pkg_contents): merged function archive_contents
16891 into function pkg_contents.
16893 * deb/contents.c (pkg_contents): use lstat (rather than stat) so
16894 that symbolic links are recognized.
16895 (pkg_contents): print the usual `<path> -> <link_to>' now that we
16896 recognize symbolic links.
16898 * deb/util.c (return_info): create a FIFO to pipe the needed
16899 information to the ``formatter'' rather than creating a directory
16900 in /tmp for the package information, which is what we used to do.
16902 Thu Aug 25 11:46:27 1994 Ian Murdock (imurdock@debra.debian.org)
16904 * lib/fake-ls.c (mk_date_string): return a pointer to malloc'ed
16906 (mk_mode_string): ditto.
16908 * dpkg.sh: make sure the control information is extracted to a
16909 uniquely-named temporary directory during package installation.
16911 * dpkg.sh: execute the pre- and post-removal scripts during
16914 * dpkg.sh: exit immediately if dpkg-util.deb reports failure.
16916 * deb/install.c (pkg_control): make sure that `package' exists and
16917 is a Debian archive before doing anything.
16919 * deb/install.c (pkg_extract): make sure that `package' exists and
16920 is a Debian archive before doing anything.
16922 * deb/install.c (pkg_install): unlink `extract_output' when done.
16924 * deb/remove.c (pkg_remove): use lstat (rather than stat) so that
16925 --remove does not get confused and think that a symbolic link to a
16926 directory is actually a directory, which results in the symbolic
16927 link never being removed at all.
16929 ChangeLog begins Thu Aug 25 11:46:27 1994 for dpkg 0.93.5.