/usr/bin/svn-clean is in subversion-tools 1.9.3-2ubuntu1.1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 | #!/usr/bin/perl
# svn-clean - Wipes out unversioned files from SVN working copy.
# Copyright (C) 2004, 2005, 2006 Simon Perreault
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
use strict;
use Cwd;
use File::Path;
use Getopt::Long;
use Pod::Usage;
# Try to use SVN module if available.
my $use_svn_module = eval { require SVN::Client };
my $CWD = getcwd;
my @exclude = ();
my $force = 0;
my $quiet = 0;
my $print = 0;
my $help = 0;
my $man = 0;
my $nonrecursive = 0;
my @paths = ($CWD);
GetOptions(
"exclude=s" => \@exclude,
"force" => \$force,
"non-recursive|N" => \$nonrecursive,
"quiet" => \$quiet,
"print" => \$print,
"help|?" => \$help,
"man" => \$man
) or pod2usage(2);
pod2usage(1) if $help;
pod2usage( -exitstatus => 0, -verbose => 2 ) if $man;
@paths = map { Cwd::abs_path($_) } @ARGV if @ARGV;
# Precompile regexes.
$_ = qr/$_/ foreach @exclude;
my %svn_clean_ignore;
if ($use_svn_module) {
# Create SVN client object. No need for connection to remote server.
my $ctx = new SVN::Client;
for my $path (@paths) {
my $ign = $ctx->propget('svn-clean:ignore', $path, undef, 1);
for my $dir (keys %$ign) {
for (split /\n/, $ign->{$dir}) {
for (glob "$dir/$_") {
$svn_clean_ignore{$_} = 1 if -e $_;
}
}
}
# Call handler function with status info for each file.
$ctx->status( $path, undef, \&clean, !$nonrecursive, 1, 0, 1 );
}
exit 0;
}
else {
warn "Warning: Not using SVN Perl modules, this might be slow.\n"
unless $quiet;
my @command = qw(svn propget svn-clean:ignore);
push @command, '-R' unless $nonrecursive;
open PG, '-|', @command, @paths;
my $dir;
while (<PG>) {
if (s/(.*?) - //) {
$dir = $1;
}
chomp;
for (glob "$dir/$_") {
$svn_clean_ignore{$_} = 1 if -e $_;
}
}
close PG;
@command = qw(svn status --no-ignore -v);
if ($nonrecursive) {
push @command, '-N';
}
# Main file-wiping loop.
if ( $^O eq 'MSWin32' ) {
# Perl on Windows currently doesn't have list pipe opens.
open SVN, join( ' ', @command, @paths ) . '|'
or die "Can't call program \"svn\": $!\n";
}
else {
open SVN, "-|", @command, @paths
or die "Can't call program \"svn\": $!\n";
}
LINE: while (<SVN>) {
if (/^([\?ID])/) {
my $file = (split)[-1];
next if $svn_clean_ignore{$file};
foreach my $ex (@exclude) {
if ( $file =~ $ex ) {
print "excluded $file\n" unless $quiet or $print;
next LINE;
}
}
if ( $1 eq 'D' ) {
next unless -f $file;
}
else {
next unless -e $file;
}
if ($print) {
print "$file\n";
}
else {
rmtree( $file, !$quiet, !$force );
}
}
}
}
# Main file-wiping function.
sub clean {
my ( $path, $status ) = @_;
return if $svn_clean_ignore{$path};
# Use relative path for pretty-printing.
if ( $path =~ s/^\Q$CWD\E\/?//o ) {
# If the substitution succeeded, we should have a relative path. Make
# sure we don't delete critical stuff.
return if $path =~ /^\//;
}
# Find files needing to be removed.
if ( $status->text_status == $SVN::Wc::Status::unversioned
or $status->text_status == $SVN::Wc::Status::ignored
or $status->text_status == $SVN::Wc::Status::deleted )
{
foreach my $ex (@exclude) {
if ( $path =~ $ex ) {
print "excluded $path\n" unless $quiet or $print;
return;
}
}
# Make sure the file exists before removing it. Do not remove deleted
# directories as they are needed to remove the files they contain when
# committing.
lstat $path or stat $path;
if (
-e _
and ( not -d _
or $status->text_status != $SVN::Wc::Status::deleted )
)
{
if ($print) {
print "$path\n";
}
else {
rmtree( $path, !$quiet, !$force );
}
}
}
}
__END__
=head1 NAME
svn-clean - Wipes out unversioned files from Subversion working copy
=head1 SYNOPSIS
svn-clean [options] [directory or file ...]
=head1 DESCRIPTION
B<svn-clean> will scan the given files and directories recursively and find
unversioned files and directories (files and directories that are not present in
the Subversion repository). After the scan is done, these files and directories
will be deleted. Files which match patterns in the I<svn-clean:ignore> dir
property will be spared, much as the I<svn:ignore> property works for B<svn
status>.
If no file or directory is given, B<svn-clean> defaults to the current directory
(".").
B<svn-clean> uses the SVN Perl modules if they are available. This is much
faster than parsing the output of the B<svn> command-line client.
=head1 OPTIONS
=over 8
=item B<-e>, B<--exclude>
A regular expression for filenames to be exluded. For example, the following
command will skip files ending in ".zip":
=over 8
svn-clean --exclude '\.zip$'
=back
Multiple exclude patterns can be specified. If at least one matches, then the
file is skipped. For example, the following command will skip files ending in
".jpg" or ".png":
=over 8
svn-clean --exclude '\.jpg$' --exclude '\.png$'
=back
The following command will skip the entire "build" subdirectory:
=over 8
svn-clean --exclude '^build(/|$)'
=back
=item B<-f>, B<--force>
Files to which you do not have delete access (if running under VMS) or write
access (if running under another OS) will not be deleted unless you use this
option.
=item B<-N>, B<--non-recursive>
Do not search recursively for unversioned files and directories. Unversioned
directories will still be deleted along with all their contents.
=item B<-q>, B<--quiet>
Do not print progress info. In particular, do not print a message each time a
file is examined, giving the name of the file, and indicating whether "rmdir" or
"unlink" is used to remove it, or that it's skipped.
=item B<-p>, B<--print>
Do not delete anything. Instead, print the name of every file and directory that
would have been deleted.
=item B<-?>, B<-h>, B<--help>
Prints a brief help message and exits.
=item B<--man>
Prints the manual page and exits.
=back
=head1 AUTHOR
Simon Perreault <nomis80@nomis80.org>
=cut
|