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