]> git.donarmstrong.com Git - debhelper.git/blob - dh_clean
r486: * Clean up old substvars.debhelper files, although debhelper doesn't
[debhelper.git] / dh_clean
1 #!/usr/bin/perl -w
2
3 =head1 NAME
4
5 dh_clean - clean up package build directories
6
7 =cut
8
9 use strict;
10 use Debian::Debhelper::Dh_Lib;
11
12 =head1 SYNOPSIS
13
14   dh_clean [debhelper options] [-k] [-d] [file ...] [-Xitem]
15
16 =head1 DESCRIPTION
17
18 dh_clean is a debhelper program that is responsible for cleaning up after a
19 package is built. It removes the package build directories, and removes some
20 other files, such as debian/substvars, debian/files, and any detritus left
21 behind by other debhelper commands. It also removes common files that
22 should not appear in a debian diff:
23   #*# *~ DEADJOE *.orig *.rej *.SUMS TAGS core .deps/* *.P
24
25 =head1 OPTIONS
26
27 =over 4
28
29 =item B<-k>, B<--keep>
30
31 Do not delete debian/files. When do you want to use this? Anytime you have a
32 debian/rules that has 2 binary targets that build different .deb packages;
33 for example, one target is binary-arch, and the other is binary-indep, or
34 one target builds the shared library, and the other the -dev package. If you
35 didn't use -k in these cases, then debian/files would be deleted in the
36 middle, and your changes file will only contain the last binary package that
37 was built.
38
39 =item B<-d>, B<--dirs-only>
40
41 Only clean the package build directories, do not clean up any other files
42 at all.
43
44 =item B<-X>I<item> B<--exclude=>I<item>
45
46 Exclude files that contain "item" anywhere in their filename from being
47 deleted, even if they would normally be deleted. You may use this option
48 multiple times to build up a list of things to exclude.
49
50 =item I<file ...>
51
52 Delete these files too.
53
54 =back
55
56 =cut
57
58 init();
59
60 foreach my $package (@{$dh{DOPACKAGES}}) {
61         my $tmp=tmpdir($package);
62         my $ext=pkgext($package);
63
64         if (! $dh{D_FLAG}) {
65                 doit("rm","-f","debian/${ext}substvars",
66                         "debian/${ext}substvars.debhelper",
67                         "debian/${ext}postinst.debhelper",
68                         "debian/${ext}postrm.debhelper",
69                         "debian/${ext}preinst.debhelper",
70                         "debian/${ext}prerm.debhelper");
71         }
72         
73         doit ("rm","-rf",$tmp);
74 }
75
76 if (! $dh{D_FLAG}) {
77         if (@ARGV) {
78                 doit("rm","-f","--",@ARGV);
79         }
80
81         if (! $dh{K_FLAG}) {
82                 doit("rm","-f","debian/files");
83         }
84
85         # Remove some files that were left around by older versions of
86         # debhelper, just in case someone upgrades in the middle of a
87         # build.
88         doit("rm","-f","debian/substvars",
89                 "debian/postinst.debhelper",
90                 "debian/postrm.debhelper",
91                 "debian/preinst.debhelper",
92                 "debian/prerm.debhelper");
93
94         # See if some files that would normally be deleted are excluded.
95         my $find_options='';
96         if (defined($dh{EXCLUDE_FIND}) && $dh{EXCLUDE_FIND} ne '') {
97                 $find_options="-a ! ( $dh{EXCLUDE_FIND} )";
98         }
99
100         # Remove other temp files.
101         # (The \s+ is important, \s won't work because find would get null
102         # parameters). Note that you _don't_ quote wildcards used by find
103         # in here.
104         doit(split(/\s+/,"find . -type f -a
105                 ( -name #*# -o -name *~ -o -name DEADJOE
106                  -o -name *.orig -o -name *.rej -o -name *.bak
107                  -o -name .*.orig -o -name .*.rej -o -name .SUMS
108                  -o -name TAGS -o -name core -o ( -path */.deps/* -a -name *.P )
109                 ) $find_options -exec rm -f {} ;"));
110 }
111
112 doit('rm', '-rf', 'debian/tmp') if -x 'debian/tmp' && ! compat(1);
113
114 =head1 SEE ALSO
115
116 L<debhelper(1)>
117
118 This program is a part of debhelper.
119
120 =head1 AUTHOR
121
122 Joey Hess <joeyh@debian.org>
123
124 =cut