diff options
author | Guillem Jover <guillem@debian.org> | 2019-01-21 12:58:34 +0100 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2019-01-22 04:11:13 +0100 |
commit | a23fdc82c44011d2aa54138df4c4af37bd4d5e9e (patch) | |
tree | 94ca20b5c1e882546c142aa31abc383e59193f06 /debian | |
parent | b166c999d28cc56e5befe7f13329ec5aa8f448ca (diff) | |
download | dpkg-a23fdc82c44011d2aa54138df4c4af37bd4d5e9e.tar.gz |
dpkg: Split trigger processing types into required, try-queued and try-deferred
Each of these reasons for processing triggers have different requirements
and attributes:
- The required one, must perform all checks as it is done as part of a
simple loop to guarantee Pre-Depends satisfiability.
- The try-deferred one, must not fail on unsatisfiable dependencies, as
we are doing opportunistic trigger processing, after a normal
processing queue run.
- The try-queued one, must perform all checks and fail hard if any
unsatisfiable scenario occurs.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 409195f0e..a37ad29a2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -94,6 +94,8 @@ dpkg (1.19.3) UNRELEASED; urgency=medium - 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. * Build system: - get-version: Use a format string with printf. - run-script: Use $() instead of deprecated ``. |