From 1a42a93b11c48e696446250f2a1f1ca71b350e9b Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 14 May 2024 22:15:44 +0200 Subject: Adding upstream version 13.3.4. Signed-off-by: Daniel Baumann --- dh_listpackages | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100755 dh_listpackages (limited to 'dh_listpackages') diff --git a/dh_listpackages b/dh_listpackages new file mode 100755 index 0000000..e43e2cd --- /dev/null +++ b/dh_listpackages @@ -0,0 +1,44 @@ +#!/usr/bin/perl + +=head1 NAME + +dh_listpackages - list binary packages debhelper will act on + +=cut + +use strict; +use warnings; +use Debian::Debhelper::Dh_Lib; + +our $VERSION = DH_BUILTIN_VERSION; + +=head1 SYNOPSIS + +B [S>] + +=head1 DESCRIPTION + +B is a debhelper program that outputs a list of all binary +packages debhelper commands will act on. If you pass it some options, it +will change the list to match the packages other debhelper commands would +act on if passed the same options. + +Packages are listed in the order they appear in F. + +=cut + +$dh{BLOCK_NOOP_WARNINGS}=1; +init(inhibit_log => 1); +print join("\n",@{$dh{DOPACKAGES}})."\n"; + +=head1 SEE ALSO + +L + +This program is a part of debhelper. + +=head1 AUTHOR + +Joey Hess + +=cut -- cgit v1.2.3