debhelper (13.7.1)
[PTS] [DDPO]
NEW: VCS has unreleased changes: 13.7.2 > 13.7.1
- Git: https://salsa.debian.org/debian/debhelper.git
-
- Branch: main
- Path: debian/changelog
- Browser: https://salsa.debian.org/debian/debhelper
- Last scan: 2022-05-28 13:22:08+00
- Next scan: 2022-06-05 12:25:00+00
- Merge requests: 5
- CI pipeline status: success
- Debian changelog in Git:
debhelper (13.7.2) UNRELEASED; urgency=medium
[ Niels Thykier ]
* dh_perl: Fix incorrect binary versioning caused by a regression
in 13.3. Thanks to Niko Tyni for reporting the issue.
(Closes: #997961)
* d/control: Bump Standards-Version to 4.6.1 - no changes required.
* root_sequence.pm: Run `dh_installsysusers` before
`dh_installtmpfiles` (only affects compat 14 or later). Thanks
to Nicholas Brown for the suggestion. (Closes: #1011099)
[ Max-Julian Pogner ]
* Dh_Lib.pm: Remove double semi-colon. (Closes: #1010591)
* Dh_Lib.pm: _strip_spaces now explicitly returns undef on undef
argument.
(Closes: #1010594)
[ Andrea Pappacoda ]
* cmake.pm: Set FETCHCONTENT_FULLY_DISCONNECTED to true. This
ensures that the `FetchContent` module does not attempt to
use internet connection.
[ Vagrant Cascadian ]
* debhelper-compat-upgrade-checklist.pod: Update documentation
for compat 14 change. (Closes: #1011404)
[ Translations ]
* Update Portuguese translation (Américo Monteiro)
(Closes: #1011256)
-- Niels Thykier <niels@thykier.net> Mon, 25 Apr 2022 05:50:27 +0000
- This branch is 16 commits ahead of tag debian/13.7.1
- Git log:
commit 8886d5ad9257d2b028bc9f36e60dde091ab0bf6e
Author: Ferenc Wágner <wferi@debian.org>
Date: Sun May 22 16:07:48 2022 +0000
The split out man page is debhelper-compat-upgrade-checklist(7)
commit 3c77dc5def73345649d251bc5acf73d463f54bd1
Author: Ferenc Wágner <wferi@debian.org>
Date: Sun May 22 16:15:25 2022 +0000
CONTRIBUTING.md: fix typo
commit 3a65f7db577fae63ed3d11205cfd43615982bc8c
Author: Américo Monteiro <a_monteiro@gmx.com>
Date: Sun May 22 07:57:12 2022 +0000
Update Portuguese translation
Signed-off-by: Niels Thykier <niels@thykier.net>
commit 5e05321473fceee275df4dce4feac0b27f3f1f57
Author: Niels Thykier <niels@thykier.net>
Date: Sun May 22 06:42:09 2022 +0000
Regenerate POT and PO files
Signed-off-by: Niels Thykier <niels@thykier.net>
commit d821d81438bc335a677fa43c1a4a2c5282224e16
Author: Américo Monteiro <a_monteiro@gmx.com>
Date: Sun May 22 06:40:15 2022 +0000
Update Portuguese translation
Signed-off-by: Niels Thykier <niels@thykier.net>
commit ea9ca1ea1dbf2a00864e530803d4738fe0e4bcd4
Author: Niels Thykier <niels@thykier.net>
Date: Sun May 22 06:37:40 2022 +0000
Run dh_installsysusers earlier [c14]
Signed-off-by: Niels Thykier <niels@thykier.net>
commit c4e3ff7bd657867e58214c01f279422d3d8b1ff5
Author: Vagrant Cascadian <vagrant@debian.org>
Date: Sat May 21 17:59:10 2022 -0700
debhelper-compat-upgrade-checklist.pod: Update to reflect removal of -DCMAKE_SKIP_RPATH=ON.
Signed-off-by: Niels Thykier <niels@thykier.net>
commit 304535e00a805890423a9ddf4427de1a76da233e
Author: Max-Julian Pogner <max-julian@pogner.at>
Date: Sun May 15 10:49:25 2022 +0200
Dh_Lib.pm: prefer `return` over `return undef`
They behave differently depending on the context (e.g. list, scalar, etc)
the sub is called in.
Signed-off-by: Niels Thykier <niels@thykier.net>
commit bc2cc89a171344ad08b7ed58ef0855e3a5c7e4e6
Author: Niels Thykier <niels@thykier.net>
Date: Sun May 15 17:47:33 2022 +0000
Bump S-V to 4.6.1 - no changes required
Signed-off-by: Niels Thykier <niels@thykier.net>
commit 0df27ebc138bb0981d5988c2adaa9d51ad38f7d0
Author: Max-Julian Pogner <max-julian@pogner.at>
Date: Sat May 14 21:48:01 2022 +0200
Dh_Lib.pm: _strip_spaces now explicitly returns undef on undef argument.
_strip_spaces sometimes get's used to process optional source fields
such as for example the 'Section:' field. In this case, the argument
to _strip_spaces would be undef and without this patch perl issues a
warning message.
This patch makes _strip_space simply return undef in this case, assuming
that the caller of _strip_spaces is prepared to handle missing (optional)
source field as undef.
See bugs.debian.org: #1010594
Signed-off-by: Niels Thykier <niels@thykier.net>
commit c65b71aff5d0c5a97fb791f799806c5314e707b6
Author: Niels Thykier <niels@thykier.net>
Date: Sat May 7 14:57:44 2022 +0000
d/changelog: Document Andrea Pappacoda's patch
Signed-off-by: Niels Thykier <niels@thykier.net>
commit 5debbd6171dd2a091dde9ed499d8bb118ed2e1a8
Author: Andrea Pappacoda <andrea@pappacoda.it>
Date: Sun May 1 11:55:24 2022 +0200
cmake: set FETCHCONTENT_FULLY_DISCONNECTED to true
According to the documentation[1], FETCHCONTENT_FULLY_DISCONNECTED tells
the FetchContent module that no internet connection is available, and no
attempt at downloading dependencies at configure time is made, thus
speeding up builds.
Debian package builds are already made offline, and I don't expect this
to create any issue for users; it is thus enabled regardless of the
dh-compat level.
1: https://cmake.org/cmake/help/latest/module/FetchContent.html#variable:FETCHCONTENT_FULLY_DISCONNECTED
commit 08ce87d088233c5fe3cdcc050b787b613c34cd01
Author: Niels Thykier <niels@thykier.net>
Date: Sat May 7 14:43:21 2022 +0000
d/changelog: Document Max-Julian Pogner's patch
Signed-off-by: Niels Thykier <niels@thykier.net>
commit b1d293503efc01b27fefe73e953359150fd19343
Author: Max-Julian Pogner <max-julian@pogner.at>
Date: Thu May 5 08:55:37 2022 +0200
Dh_Lib.pm: Fix Double semi-colon in Dh_Lib.pm line 1994
Signed-off-by: Niels Thykier <niels@thykier.net>
commit c11f0e19903d43c06b8635900b48430cee42b79b
Author: Niels Thykier <niels@thykier.net>
Date: Mon Apr 25 06:07:54 2022 +0000
dh_perl: Fix thinko in the previous commit
Signed-off-by: Niels Thykier <niels@thykier.net>
commit 12cb0d877f5620ec05c366650641cf9291f07551
Author: Niels Thykier <niels@thykier.net>
Date: Mon Apr 25 05:51:28 2022 +0000
dh_perl: Fix regression since 13.3
Basically a revert of 7da36e893a975680654c1448c7bcba7dc1786551 though
with a rewrite of the condition to avoid the unless.
Signed-off-by: Niels Thykier <niels@thykier.net>