]> git.donarmstrong.com Git - debhelper.git/blob - dh_clean
r1592: * dh_link: rm -f every time, ln -f is not good enough if the link target
[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 B<dh_clean> [S<I<debhelper options>>] [B<-k>] [B<-d>] [B<-X>I<item>] [S<I<file ...>>]
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 including debian/files, and any detritus left behind by other
21 debhelper commands. It also removes common files that should not appear in a
22 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                         unless excludefile("debian/${ext}substvars");
67                 
68                 # These are all debhelper temp files, and so it is safe to 
69                 # wildcard them.
70                 complex_doit("rm -f debian/$ext*.debhelper");
71         }
72         
73         doit ("rm","-rf",$tmp)
74                 unless excludefile($tmp);
75 }
76
77 if (! $dh{D_FLAG}) {
78         if (@ARGV) {
79                 doit("rm","-f","--",@ARGV);
80         }
81
82         if (! $dh{K_FLAG}) {
83                 doit("rm","-f","debian/files")
84                         unless excludefile("debian/files");
85         }
86
87         # See if some files that would normally be deleted are excluded.
88         my $find_options='';
89         if (defined($dh{EXCLUDE_FIND}) && $dh{EXCLUDE_FIND} ne '') {
90                 $find_options="-a ! ( $dh{EXCLUDE_FIND} )";
91         }
92
93         # Remove other temp files.
94         # (The \s+ is important, \s won't work because find would get null
95         # parameters). Note that you _don't_ quote wildcards used by find
96         # in here.
97         doit(split(/\s+/,"find . -type f -a
98                 ( -name #*# -o -name .*~ -o -name *~ -o -name DEADJOE
99                  -o -name *.orig -o -name *.rej -o -name *.bak
100                  -o -name .*.orig -o -name .*.rej -o -name .SUMS
101                  -o -name TAGS -o -name core -o ( -path */.deps/* -a -name *.P )
102                 ) $find_options -exec rm -f {} ;"));
103
104         # Stupid autoconf cache directory.
105         doit("rm", "-rf", "autom4te.cache")
106                 unless excludefile("autom4te.cache");
107 }
108
109 doit('rm', '-rf', 'debian/tmp') if -x 'debian/tmp' && ! compat(1) &&
110                                    ! excludefile("debian/tmp");
111
112 =head1 SEE ALSO
113
114 L<debhelper(7)>
115
116 This program is a part of debhelper.
117
118 =head1 AUTHOR
119
120 Joey Hess <joeyh@debian.org>
121
122 =cut