X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=dh_listpackages;h=79b664bd71aaa065b85a825fb632095ac6ce7302;hb=93a73a7ead5d90accb7259a46efdebab113e6550;hp=7a764af5be0e8b3fac805c934ccc9da843d67e7a;hpb=75275ded89f0b456e7e396008af153d26bb35626;p=debhelper.git diff --git a/dh_listpackages b/dh_listpackages index 7a764af..79b664b 100755 --- a/dh_listpackages +++ b/dh_listpackages @@ -1,8 +1,39 @@ #!/usr/bin/perl -w -# -# Output a list of all packages debhelper will act on. -BEGIN { push @INC, "debian", "/usr/lib/debhelper" } -use Dh_Lib; +=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 + +dh_listpackages 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 + 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