Back to dpkg PTS page

Accepted dpkg 1.19.3 (source) into unstable



-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Tue, 22 Jan 2019 14:26:04 +0100
Source: dpkg
Architecture: source
Version: 1.19.3
Distribution: unstable
Urgency: medium
Maintainer: Dpkg Developers <debian-dpkg@lists.debian.org>
Changed-By: Guillem Jover <guillem@debian.org>
Closes: 810724 818618 854478 901127 910707 910734 910819 911620 912023 912024 913012 913816 914478 915610 915881 916056 916456 916799 917098 917813
Changes:
 dpkg (1.19.3) unstable; urgency=medium
 .
   [ Guillem Jover ]
   * dpkg-source: Stop filtering @builddeps@ from Testsuite-Triggers field.
     Closes: #910734
   * dpkg-genchanges: Only reference binary packages being uploaded, which
     means that for a source-only upload, the Binary and Description fields
     should be empty. Closes: #818618
   * dpkg-scanpackages: Do not compute unnecessary checksums when using the
     --hash argument. Based on a patch by Chris Lamb <lamby@debian.org>.
     Closes: #916456
   * dpkg-scanpackages: Emit a warning with the list of repeat packages.
     Prompted by Johannes Schauer <josch@debian.org>.
   * start-stop-daemon: Check whether standalone --pidfile use is secure.
     Prompted by Michael Orlitzky <michael@orlitzky.com>.
   * start-stop-daemon: Print complete verbose lines, instead of partial lines
     with no newlines and a final print with a newline.
   * start-stop-daemon: Add new --notify-await and --notify-timeout options,
     which implement the systemd readiness protocol for services.
     Closes: #910707
   * update-alternatives: Add new --debug option.
   * update-alternatives: Fix removal of obsolete slaves from the linked list.
     Reported by Andreas Beckmann <anbe@debian.org>. Closes: #916799
   * vendor.mk: Fix dpkg_vendor_derives_from macro documentation.
     Thanks to Colin Watson <cjwatson@debian.org>. Closes: #913816
   * vendor.mk: Add support for an improved dpkg_vendor_derives_from macro.
     Version the macros so that both can be used, and default the unversioned
     one to the version 0 macro.
   * dpkg: Mark the package we are giving up on a trigger cycle as "istobe"
     normal, so that the dependency checks know they cannot expect this package
     to be processed anymore. Otherwise we ended up never detecting that we
     were not making progress, as we expected to process this package at a later
     point, when that would never happen anymore. This then was causing asserts
     in the process queue loop. Closes: #901127, #910819
   * dpkg: Reset progress_bytrigproc once we have injected it into the current
     package process queue iteration, so that we do not keep trying to process
     it, which might end up generating artificial trigger cycles, if
     dependencies are not satisfied yet.
   * dpkg: Convert one trigger processing required type into the new try-queued
     one, so that we stop skipping unsatisfiable dependency checks.
   * dpkg: Move trigproc cycle reset inside try-deferred conditional. We should
     only reset the cycle detection in case we are not bailing out from the
     processing with an error, otherwise we could come back to this package and
     detect an artificial trigger cycle.
   * dpkg: Introduce a new dependency try level for trigger processing. This
     completely defers trigger processing until after the dependency cycle
     breaking level, so to avoid generating artificial trigger cycles, when we
     end up trying to process triggers with yet unsatisifiable dependencies.
     Closes: #810724, #854478, #911620
   * dpkg: Fix --help output, to clarify which arguments are optional.
   * libdpkg: Add proper tar error handling. This makes the tar extractor
     track and report back parse errors, so that we can give more descriptive
     messages.
   * libdpkg: Detect unsupported tar entry types to give better error messages.
   * libdpkg: Add new db-fsys:Files and db-fsys:Last-Modified virtual fields.
   * Perl modules:
     - Dpkg::Changelog::Debian: Preserve modelines at EOF. Closes: #916056
       Thanks to Chris Lamb <lamby@debian.org> for initial test cases.
     - Dpkg::File: Make file_slurp() also accept pathnames in addition to
       filehandles.
     - Dpkg::Vendor::Ubuntu: Fix buildflags override after default setting move.
       Based on a patch by Iain Lane <laney@ubuntu.com> and
       Adam Conrad <adconrad@ubuntu.com>. Closes: #915881
     - Dpkg::Shlibs::Objdump: Remove unused Dpkg::IPC import.
     - Dpkg::Shlibs::Objdump: Only select objdump program when going to use it.
     - Dpkg::Source::Package: Do not reinitialize fields member in constructor.
     - Dpkg::Source::Patch: Do not recommend --include-removal when not
       supported. Closes: #913012
     - Dpkg::Source::Package::V3::Bzr: Fix format name in output message.
     - Dpkg::Source::Package: Add a new format option to the new constructor.
       Prompted by James McCoy <jamesan@debian.org>.
     - Dpkg::Source::Package: Improve debian/source/format parsing and
       validation.
     - Dpkg::Source::Format: New public module.
       Prompted by Mattia Rizzolo <mattia@debian.org>.
   * Documentation:
     - dpkg(1): Clarify --remove action. Closes: #914478
     - dpkg-query(1): Clarify --list option behavior when no arguments are
       specified. Closes: #917098
     - deb-control(5): Clarify by adding a reference to deb-src-control(5) and
       removing an invalid comment in the example.
       Prompted by Helmut Grohne <helmut@subdivi.de>.
     - dpkg(1): Clarify databases used by --yet-to-unpack and --predep-package.
       Prompted by Johannes Schauer <josch@debian.org>.
     - Clarify character classes for various formats in man pages, by
       explicitly listing the character ranges within parenthesis.
       Prompted by Ian Jackson <ijackson@chiark.greenend.org.uk>.
     - dpkg-query(1): Document the version introducing the -f option.
     - dpkg-architecture(1): Add reference to the TERMS section in the
       VARIABLES section. Prompted by Axel Beckert <abe@debian.org>.
     - Fix POD for Dpkg::Interface::Storable derived method implementations.
     - Dpkg::Deps::Simple(3): Fix POD signature for new constructor.
   * Code internals:
     - dpkg-maintscript-helper: Use an explicit escape instead of a literal
       backslash.
     - Quote shell variables. Reported by Johannes Schauer <josch@debian.org>.
     - Switch perl code to use the new Dpkg::Source::Format module.
     - dpkg-source: Move source format selection earlier in the build.
     - dpkg-source: Use new format argument for Dpkg::Source::Package->new().
     - dpkg-shlibdeps: Remove unused variable.
     - dpkg-scanpackages: Unroll a single iteration loop.
     - start-stop-daemon: Compare foundany against 0 instead of treating it
       like a boolean.
     - start-stop-daemon: Switch code to use new info() and debug() functions.
     - update-alternatives: Use enums for actions instead of strings.
     - update-alternatives: Switch verbose selection into an enum.
     - dpkg: Negate tortoise_not_in_hare() function name and return value.
     - dpkg: Initialize trigcyclenode's next member once.
     - dpkg: Use common pattern of assigning as an iterator.
     - dpkg: Factor trigproc_new_cyclenode() out from check_trigger_cycle().
     - dpkg: Switch dependtry from an int to an enum.
     - dpkg: Move dependtry description from deferred_configure() to its
       declaration.
     - dpkg: Split trigger processing types into required, try-queued and
       try-deferred.
     - dpkg-query: Rename variable to avoid shadowing a local function.
     - When allocating use the variable instead of the type in sizeof().
     - dselect: Rename variable r to pkgbin.
     - libdpkg, dpkg: Rename r variables to fnn.
     - libdpkg: Rename ret variable to next.
     - libdpkg: Cleanup fsys module symbol names.
     - libdpkg: Rename pkg_db symbols to pkg_hash.
     - libdpkg: Add new warning printer setter function.
       Prompted by Julian Andres Klode <jak@debian.org>.
     - libdpkg: Add new DPKG_ERROR_OBJECT macro.
   * Build system:
     - get-version: Use a format string with printf.
     - run-script: Use $() instead of deprecated ``.
     - run-script: Remove unused PERL_PROFILE variable, PERL5OPT can be used
       instead, and does not require leaving an unquoted variable around.
     - run-script: Add «set -e».
     - Build.PL: Set environment variables only for CPAN tests.
     - Build.PL: Set locale for CPAN tests to C. Fixes CPAN#127314.
     - configure: Split AM_INIT_AUTOMAKE arguments into different lines.
   * Packaging:
     - Bump Standards-Version to 4.2.1 (no changes needed).
     - Switch to debhelper compatibility level 11.
     - Create the log file in postinst only if it does not exist.
       Prompted by Johannes Schauer <josch@debian.org>.
     - Add superficial autopkgtest functional tests.
   * Test suite:
     - Add new shellcheck author test.
     - Add descriptions for the shellcheck exclude codes.
     - Update cppcheck supressions.
 .
   [ Updated programs translations ]
   * Dutch (Frans Spiesschaert). Closes: #912023
   * German (Sven Joachim).
   * Italian (Milo Casagrande). Closes: #915610
   * Portuguese (Miguel Figueiredo). Closes: #917813
 .
   [ Updated scripts translations ]
   * German (Helge Kreutzmann).
 .
   [ Updated man pages translations ]
   * Dutch (Frans Spiesschaert). Closes: #912024
   * German (Helge Kreutzmann).
Checksums-Sha1:
 00e0edb18fe52e586c61dd6d116608b20ff3455f 2079 dpkg_1.19.3.dsc
 60b173424d2cf0aa691f7c7c3e7097d495b693dd 4644312 dpkg_1.19.3.tar.xz
 87c8cd8583e6d248c9f229c5166b36a4d8a64b9b 7193 dpkg_1.19.3_amd64.buildinfo
Checksums-Sha256:
 9133bfa22f48d533e9cd39e8d185b956d78994eabccd9c14f590d5e8836c2e1a 2079 dpkg_1.19.3.dsc
 6cd3311a18b5d481039bf8d5ca3bc0ef47b035ff6313644cafcd8750a0dd7ac3 4644312 dpkg_1.19.3.tar.xz
 8eabbb093345b282630b94906c386c02f511f8baf7c08d9fafc00c5bf8608f0e 7193 dpkg_1.19.3_amd64.buildinfo
Files:
 d24dd85da0cd49d0b9b444bc4faa2b49 2079 admin required dpkg_1.19.3.dsc
 4716904f65fb5590dd1fbe712e87fbea 4644312 admin required dpkg_1.19.3.tar.xz
 cc0d0db9cc4905f5c1f19efccaff943c 7193 admin required dpkg_1.19.3_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEETz509DYFDBD1aWV0uXK/PqSuV6MFAlxHKGIACgkQuXK/PqSu
V6NeyBAAi9XhcJBTYtTEXHBb3Lf1JtCAXfW/5IsEC8bZAMX5v0/eYeWc6NuTQLM8
AvWxT7XIHLtYu1XUF7s1mei/TFJj9PBpXEIBlJTQNx7xn4fcZBB5Y2bHMJPxRq2c
Q0dZb0lgWm6LXcVZ1J1nNuE0HzRUKxXbWsK2uVezoV1w0A/TWZ1Igu/JvVGUMYP1
0c6DnS1JfihoB5n+iF2KNFeFJrNCvQm63n7Tp0Oea2Bd5an+/RTb/ndOOmNrIuZ8
Be7vEtTyvud368g2YusCcr6RN6nlbLBTZZQLMiLuUx1iXrakN31dRhv7gF7Bw0HW
JgFZoQmmgZ7FcSoq2zbB9SZn4TOUoycQ2PUpd6pANBWNzkIc2Qr2tKj3daJQMLfi
6mMX6U3BxrA/2UQlCs1UznQ4R+nxCfBKpWKmZL890ARuoLJoUyNK0D9j4KN1Ril4
8WxMNQ5Xbk5tJ2XGHf1YiPsfZVUsLTIZMfYd9IwABPo8+NQoh/A0Ag8zj1DIzRpB
0rOqtCFyj7kEg+N8qJ2Gl3n0m0o/fB1IwN2jmoNXE8OYQXi2OUD95JLZOXv7dZOQ
uEmx8MEUcCsSaFd3qBSww+Ug6VSbySBXSEmwkWrSUHEl7p4QgJrXuEy+1VGb/1Tl
6HXCeWNgFY7hu1lJDeNhyKekvM0fIHx/dRZaGHXTHzT5gRIikHc=
=0/kc
-----END PGP SIGNATURE-----