]> git.donarmstrong.com Git - debhelper.git/commitdiff
maintscript files
authorJoey Hess <joey@kitenet.net>
Tue, 2 Nov 2010 20:24:04 +0000 (16:24 -0400)
committerJoey Hess <joey@kitenet.net>
Tue, 2 Nov 2010 20:24:04 +0000 (16:24 -0400)
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)
autoscripts/maintscript-helper [new file with mode: 0644]
debian/changelog
dh_installdeb
t/maintscript [new file with mode: 0644]

diff --git a/autoscripts/maintscript-helper b/autoscripts/maintscript-helper
new file mode 100644 (file)
index 0000000..c7e06c4
--- /dev/null
@@ -0,0 +1 @@
+dpkg-maintscript-helper #PARAMS# -- "$@"
index 26349a7bfa0b5545796258509eb31220566752df..188a543e9fd47724cae04bf3763fc288acd5bc9d 100644 (file)
@@ -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 <joeyh@debian.org>  Sat, 07 Aug 2010 11:27:24 -0400
 
index 35c9016b84ebcdb7d86e116d55c792dedc751ec6..8cfb4b73d130dcd13e3424a7297091011a79bf7f 100755 (executable)
@@ -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<package>.maintscript
+
+Lines in this file correspond to L<dpkg-maintscript-helper(1)> commands and
+parameters.  Any shell metacharacters will be escaped, so arbitrary shell
+code cannot be inserted here.  For example, a line such as C<mv_conffile
+/etc/oldconffile /etc/newconffile> 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<dpkg-maintscript-helper(1)>. 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 (file)
index 0000000..bf15d44
--- /dev/null
@@ -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 <<EOF;
+rm_conffile /etc/1
+mv_conffile /etc/2 /etc/3 1.0-1
+EOF
+close OUT;
+system("cd t/tmp && DH_COMPAT=7 fakeroot ../../dh_installdeb");
+for my $script (qw{postinst preinst prerm postrm}) {
+       my @output=`cat t/tmp/debian/debhelper.$script.debhelper`;
+       ok(grep { m{^dpkg-maintscript-helper rm_conffile /etc/1 -- "\$\@"$} } @output);
+       ok(grep { m{^dpkg-maintscript-helper mv_conffile /etc/2 /etc/3 1\.0-1 -- "\$\@"$} } @output);
+}
+system("rm -rf t/tmp");