X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=dh_listpackages;h=109301b9f4c75e84c49623dc24b746ffc4f5a10d;hb=e2a6d4cec4a7ee952cf6a7f250d80f1d75a38f95;hp=1123e6d2d7b09b3d0d58caa7137f3aeb952e4ddf;hpb=67b74298f08a3e2b30e43cbcd7cdaccc2e1b1614;p=debhelper.git diff --git a/dh_listpackages b/dh_listpackages index 1123e6d..109301b 100755 --- a/dh_listpackages +++ b/dh_listpackages @@ -1,8 +1,40 @@ #!/usr/bin/perl -w -# -# Output a list of all packages debhelper will act on. +=head1 NAME + +dh_listpackages - list binary packages debhelper will act on + +=cut + +use strict; use Debian::Debhelper::Dh_Lib; + +=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. + +=cut + +$dh{BLOCK_NOOP_WARNINGS}=1; init(); +inhibit_log(); print join("\n",@{$dh{DOPACKAGES}})."\n"; +=head1 SEE ALSO + +L + +This program is a part of debhelper. + +=head1 AUTHOR + +Joey Hess + +=cut