summaryrefslogtreecommitdiff
path: root/dh_listpackages
diff options
context:
space:
mode:
authorJoey Hess <joeyh@debian.org>2013-09-21 13:16:34 -0400
committerJoey Hess <joeyh@debian.org>2013-09-21 13:16:34 -0400
commit775d1ca63964312b7f519edfe0cce476669617f6 (patch)
tree29834fd91c532ee93aec9dfe6e8f1fc4e19019f7 /dh_listpackages
debhelper (9.20130921) unstable; urgency=low
* dh: Call dh_installxfonts after dh_link, so that it will notice fonts installed via symlinks. Closes: #721264 * Fix FTBFS with perl 5.18. Closes: #722501 * dh_installchangelogs: Add changelog.md to the list of common changelog filenames. # imported from the archive
Diffstat (limited to 'dh_listpackages')
-rwxr-xr-xdh_listpackages40
1 files changed, 40 insertions, 0 deletions
diff --git a/dh_listpackages b/dh_listpackages
new file mode 100755
index 00000000..109301b9
--- /dev/null
+++ b/dh_listpackages
@@ -0,0 +1,40 @@
+#!/usr/bin/perl -w
+
+=head1 NAME
+
+dh_listpackages - list binary packages debhelper will act on
+
+=cut
+
+use strict;
+use Debian::Debhelper::Dh_Lib;
+
+=head1 SYNOPSIS
+
+B<dh_listpackages> [S<I<debhelper options>>]
+
+=head1 DESCRIPTION
+
+B<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
+
+$dh{BLOCK_NOOP_WARNINGS}=1;
+init();
+inhibit_log();
+print join("\n",@{$dh{DOPACKAGES}})."\n";
+
+=head1 SEE ALSO
+
+L<debhelper(7)>
+
+This program is a part of debhelper.
+
+=head1 AUTHOR
+
+Joey Hess <joeyh@debian.org>
+
+=cut