From: Joey Hess Date: Tue, 2 Nov 2010 20:24:04 +0000 (-0400) Subject: maintscript files X-Git-Tag: 8.1.0~29 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4c8f8cd25e912508731e3494d3ee303bccf0001e;p=debhelper.git maintscript files dh_installdeb: Support debian/package.maintscript files, which can contain dpkg-maintscript-helper commands. This can be used to automate moving or removing conffiles, or anything added to dpkg-maintscript-helper later on. Closes: #574443 (Thanks, Colin Watson) --- diff --git a/autoscripts/maintscript-helper b/autoscripts/maintscript-helper new file mode 100644 index 0000000..c7e06c4 --- /dev/null +++ b/autoscripts/maintscript-helper @@ -0,0 +1 @@ +dpkg-maintscript-helper #PARAMS# -- "$@" diff --git a/debian/changelog b/debian/changelog index 26349a7..188a543 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,11 @@ debhelper (8.1.0) UNRELEASED; urgency=low * Avoid open fd 5 or 6 breaking buildsystem test suite. Closes: #596679 * Large update to Spanish man page translations by Omar Campagne. Closes: #600913 + * dh_installdeb: Support debian/package.maintscript files, + which can contain dpkg-maintscript-helper commands. This can be used + to automate moving or removing conffiles, or anything added to + dpkg-maintscript-helper later on. Closes: #574443 + (Thanks, Colin Watson) -- Joey Hess Sat, 07 Aug 2010 11:27:24 -0400 diff --git a/dh_installdeb b/dh_installdeb index 35c9016..8cfb4b7 100755 --- a/dh_installdeb +++ b/dh_installdeb @@ -50,12 +50,32 @@ In v3 compatibility mode and higher, all files in the etc/ directory in a package will automatically be flagged as conffiles by this program, so there is no need to list them manually here. +=item I.maintscript + +Lines in this file correspond to L commands and +parameters. Any shell metacharacters will be escaped, so arbitrary shell +code cannot be inserted here. For example, a line such as C will insert maintainer script snippets +into all maintainer scripts sufficient to move that conffile. + +A versioned Pre-Dependency on dpkg is needed to use +L. An appropriate Pre-Dependency is +set in ${misc:Pre-Depends} ; you should make sure to put that token into +an appropriate place in your debian/contorl file. + =back =cut init(); +# dpkg-maintscript-helper commands with their associated dpkg pre-dependency +# versions. +my %maintscript_predeps = ( + "rm_conffile" => "1.15.7.2", + "mv_conffile" => "1.15.7.2", +); + foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp=tmpdir($package); @@ -76,6 +96,22 @@ foreach my $package (@{$dh{DOPACKAGES}}) { next; } + my $maintscriptfile=pkgfile($package, "maintscript"); + if ($maintscriptfile) { + foreach my $line (filedoublearray($maintscriptfile)) { + my $cmd=$line->[0]; + error("unknown dpkg-maintscript-helper command: $cmd") + unless exists $maintscript_predeps{$cmd}; + addsubstvar($package, "misc:Pre-Depends", "dpkg", + ">= $maintscript_predeps{$cmd}"); + my $params=escape_shell(@$line); + foreach my $script (qw{postinst preinst prerm postrm}) { + autoscript($package, $script, "maintscript-helper", + "s!#PARAMS#!$params!g"); + } + } + } + # Install debian scripts. foreach my $script (qw{postinst preinst prerm postrm}) { debhelper_script_subst($package, $script); diff --git a/t/maintscript b/t/maintscript new file mode 100644 index 0000000..bf15d44 --- /dev/null +++ b/t/maintscript @@ -0,0 +1,19 @@ +#!/usr/bin/perl +use Test; +plan(tests => 8); + +system("mkdir -p t/tmp/debian"); +system("cp debian/control t/tmp/debian"); +open(OUT, ">", "t/tmp/debian/maintscript") || die "$!"; +print OUT <