summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rwxr-xr-xdh_gconf4
-rwxr-xr-xdh_installemacsen1
-rwxr-xr-xdh_installgsettings4
-rwxr-xr-xdh_installudev4
-rwxr-xr-xdh_installwm4
6 files changed, 19 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog
index 277bb1be..bfd6e682 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -33,6 +33,12 @@ debhelper (11.4) UNRELEASED; urgency=medium
it enables the following optimization.
* Dh_Lib.pm: Have isnative() special-case debian/changelog to avoid
reparsing that file over and over in the same helper.
+ * dh_gconf: Explicitly declare the --priority parameter with the intend
+ to remove it from the default debhelper options in a later release.
+ * dh_installemacsen: Ditto.
+ * dh_installgsettings: Ditto.
+ * dh_installudev: Ditto.
+ * dh_installwm: Ditto.
[ Juhani Numminen ]
* dh_installsystemd.1: Fix typo in manpage.
diff --git a/dh_gconf b/dh_gconf
index 74c04a35..1860085e 100755
--- a/dh_gconf
+++ b/dh_gconf
@@ -54,7 +54,9 @@ packages (B<90>).
=cut
-init();
+init(options => {
+ "priority=s" => \$dh{PRIORITY},
+});
my $priority=10;
if (defined $dh{PRIORITY}) {
diff --git a/dh_installemacsen b/dh_installemacsen
index 2e19c1f6..955eb291 100755
--- a/dh_installemacsen
+++ b/dh_installemacsen
@@ -82,6 +82,7 @@ instances of the same text to be added to maintainer scripts.
init(options => {
"flavor=s" => \$dh{FLAVOR},
+ "priority=s" => \$dh{PRIORITY},
});
if (! defined $dh{PRIORITY}) {
diff --git a/dh_installgsettings b/dh_installgsettings
index faedcb7c..05fc9b1e 100755
--- a/dh_installgsettings
+++ b/dh_installgsettings
@@ -55,7 +55,9 @@ packages (90).
=cut
-init();
+init(options => {
+ "priority=s" => \$dh{PRIORITY},
+});
my $priority=10;
if (defined $dh{PRIORITY}) {
diff --git a/dh_installudev b/dh_installudev
index cab558ba..1f1168be 100755
--- a/dh_installudev
+++ b/dh_installudev
@@ -55,7 +55,9 @@ instances of the same text to be added to maintainer scripts.
=cut
-init();
+init(options => {
+ "priority=s" => \$dh{PRIORITY},
+});
# The priority used to look like z60_;
# we need to calculate that old value to handle
diff --git a/dh_installwm b/dh_installwm
index 280a6b1e..b23e47e6 100755
--- a/dh_installwm
+++ b/dh_installwm
@@ -68,7 +68,9 @@ instances of the same text to be added to maintainer scripts.
=cut
-init();
+init(options => {
+ "priority=s" => \$dh{PRIORITY},
+});
if (! defined $dh{PRIORITY}) {
$dh{PRIORITY}=20;