mini-dinstall (0.7.1)
[PTS] [DDPO]
COMMITS: VCS has seen 3 commits since the debian/0.7.1 tag
- Git: https://salsa.debian.org/debian/mini-dinstall.git
-
- Branch: master
- Path: debian/changelog
- Browser: https://salsa.debian.org/debian/mini-dinstall
- Last scan: 2022-05-16 01:10:11+00
- Next scan: 2022-05-21 16:23:00+00
- Merge requests: 1
- Debian changelog in Git:
mini-dinstall (0.7.1) unstable; urgency=medium
[ Krytarik Raido ]
* [7ea6bb3] Don't capture stderr on apt-ftparchive, not used anyway.
(Closes: #990414)
* [f712a8f] Fix regression in parsing 'incoming_permissions' setting.
(Closes: #991312)
[ Thijs Kinkhorst ]
* [0297e76] Fix typo and update address while we're at it
[ Unit 193 ]
* [82aee2a] In do_rename, use copy+delete rather than rename to solve
some ownership problems.
* [bc3e9eb] d/control: Update my email address.
* [ec30570] d/control: R³: no.
* [725939f] d/control: Bump DH compat to 13.
* [c8e734f] Update Standards-Version to 4.6.0.
-- Unit 193 <unit193@debian.org> Sat, 05 Feb 2022 22:18:14 -0500
- This branch is 3 commits ahead of tag debian/0.7.1
- Git log:
commit 1a1dc8cb166c0e01ac070e3fff0b4e18f64f5a11
Author: Gioele Barabucci <gioele@svario.it>
Date: Thu Feb 17 12:40:28 2022 +0100
mini-dinstall: Ensure that the top-level directory is an absolute path
Using relative paths for `archivedir` is possible, but could lead to
hard-to-debug failures depenring on `$PWD`.
Address this by turning the path to the top-level directory of the
archive into an absolute path.
commit af3bff6382fe4c1ca97e1f8ce1a93ed37308e387
Author: Gioele Barabucci <gioele@svario.it>
Date: Thu Feb 17 12:34:41 2022 +0100
mini-dinstall: Log mkdir errors instead of just printing them
The use of `print` to report errors occurred during the creation of
directories does not leave any trace in the logs, making post-facto
analysis of failures much harder.
Let's instead use the same logging mechanism used for other errors.
commit a19c44d563606ddbd11a82bd8e444461eb1582e4
Author: Gioele Barabucci <gioele@svario.it>
Date: Thu Feb 17 11:39:22 2022 +0100
mini-dinstall: Avoid outdated `logger.warn`
Python 3 deprecated the `logger.warn` method:
```
DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead
```