summaryrefslogtreecommitdiff
path: root/scripts/dd-list.pl
diff options
context:
space:
mode:
authorHolger Levsen <holger@debian.org>2025-11-30 10:59:09 +0100
committergit-ubuntu importer <ubuntu-devel-discuss@lists.ubuntu.com>2025-11-30 16:28:39 +0000
commit1a0a913d777321ca59034c8ffff977cadd3ef1af (patch)
tree0487ff2384297b50558a1bd423cabdb6273e42d4 /scripts/dd-list.pl
parent6d666c8731998cdbcb7933787f47a7be291616ee (diff)
Imported using git-ubuntu import.
Notes
Notes: [ Guillem Jover ] * debdiff: Add support for new --no-check option. Closes: #1016135. * Pass also no_check to Dpkg::IPC spawn() and wait_child(). [ Hugh McMaster ] * uscan/Git.pm: - Set $newfile as a remote reference in upstream mode. Closes: #1120533. - Remove 'eval' wrapper. - Update 'git upstream' code path and debug output. - Call 'show-ref' and 'ls-remote' with '--tags'. * uscan/WatchSource.pm: Update some output messages. [ Yadd ] * uscan: - accept also "Dist" into Github template like other templates. - improve default Uversion-Mangle to cover trailing dot or dash and uppercase. Thanks to Jonas Smedegaard. Closes: #1112452. * Update French translations. [ Daniel Gröber ] * bts: browse: - Push down $caching check. Closes: #1121335. - Fix background download with blocking browsers. - Fix background child inadvertently executing commands.
Diffstat (limited to 'scripts/dd-list.pl')
-rwxr-xr-xscripts/dd-list.pl8
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/dd-list.pl b/scripts/dd-list.pl
index 3947eef0..85581193 100755
--- a/scripts/dd-list.pl
+++ b/scripts/dd-list.pl
@@ -241,7 +241,9 @@ if ($use_dctrl) {
exec => ['dpkg-query', '-W', '-f', '${source:Version}', 'apt'],
to_string => \$apt_version,
wait_child => 1,
- nocheck => 1
+ no_check => 1,
+ # XXX: Backwards compatibility, remove after dpkg 1.24.0.
+ nocheck => 1,
);
my $useAptHelper = 0;
@@ -262,7 +264,9 @@ if ($use_dctrl) {
to_string => \$sources,
error_to_string => \$err,
wait_child => 1,
- nocheck => 1
+ no_check => 1,
+ # XXX: Backwards compatibility, remove after dpkg 1.24.0.
+ nocheck => 1,
);
if ($? >> 8) {
die "Unable to get list of Sources files from apt: $err\n";