-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcreate_svn
executable file
·233 lines (163 loc) · 4.58 KB
/
create_svn
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
#!/usr/bin/env perl
#=======================================================================
# create_svn
# File ID: 8cc27860-f742-11dd-82e0-000475e441b9
# Configures, compiles and installs new groovy Subversion from the
# repository at svn.collab.net .
#
# Character set: UTF-8
# ©opyleft 2004- Øyvind A. Holm <[email protected]>
# License: GNU General Public License version 2 or later, see end of
# file for legal stuff.
#=======================================================================
use strict;
use warnings;
use Getopt::Long;
$| = 1;
our $Debug = 0;
our %Opt = (
'debug' => 0,
'help' => 0,
'verbose' => 0,
'version' => 0,
);
die("Unfinished.\n");
our $progname = $0;
$progname =~ s/^.*\/(.*?)$/$1/;
our $VERSION = "0.00";
my $svn_base = "$ENV{HOME}/src/other/subversion";
my $svn_clean = "$ENV{HOME}/src/other/subversioni/1.1.x.clean";
Getopt::Long::Configure("bundling");
GetOptions(
"debug" => \$Opt{'debug'},
"help|h" => \$Opt{'help'},
"verbose|v+" => \$Opt{'verbose'},
"version" => \$Opt{'version'},
) || die("$progname: Option error. Use -h for help.\n");
$Opt{'debug'} && ($Debug = 1);
$Opt{'help'} && usage(0);
if ($Opt{'version'}) {
print_version();
exit(0);
}
unless (chdir($svn_clean)) {
warn("$svn_clean: Directory not found, installing newest svn-1.x.x .\n");
mkpath($svn_base, 1);
unless (chdir($svn_base)) {
die("chdir($svn_base): $!");
}
my_system("svn co http://svn.collab.net/repos/svn/branches/1.1.x 1.1.x.clean");
}
unless (chdir($svn_clean)) {
die("chdir($svn_clean): $!");
}
my_system("svn up");
my $Revnum = "";
if (open(PipeFP, "svn info|")) {
while(<PipeFP>) {
# FIXME: Pussyble i18n stuff fucking up grepping here
if (/^Revision: (\d+)$/) {
$Revnum = $1;
last;
}
}
length($Revnum) || die("$svn_clean: Revision number not found in directory: $!");
}
my $dest_dir = "$svn_base/subversion-1.1.x.r$Revnum";
sub ERR {
my $Cmd = shift;
print("== Running \"$Cmd\"...\n");
return($Cmd || die("$Cmd: $!"));
}
sub my_system {
my $Cmd = shift;
print("==== Executing system(\"$Cmd\")...\n");
return(system($Cmd));
}
sub print_version {
# Print program version {{{
print("$progname v$VERSION\n");
# }}}
} # print_version()
sub usage {
# Send the help message to stdout {{{
my $Retval = shift;
if ($Opt{'verbose'}) {
print("\n");
print_version();
}
print(<<END);
Usage: $progname [options] [file [files [...]]]
Options:
-h, --help
Show this help.
-v, --verbose
Increase level of verbosity. Can be repeated.
--version
Print version information.
--debug
Print debugging messages.
END
exit($Retval);
# }}}
} # usage()
sub msg {
# Print a status message to stderr based on verbosity level {{{
my ($verbose_level, $Txt) = @_;
if ($Opt{'verbose'} >= $verbose_level) {
print(STDERR "$progname: $Txt\n");
}
# }}}
} # msg()
sub D {
# Print a debugging message {{{
$Debug || return;
my @call_info = caller;
chomp(my $Txt = shift);
my $File = $call_info[1];
$File =~ s#\\#/#g;
$File =~ s#^.*/(.*?)$#$1#;
print(STDERR "$File:$call_info[2] $$ $Txt\n");
return("");
# }}}
} # D()
__END__
# Plain Old Documentation (POD) {{{
=pod
=head1 NAME
=head1 SYNOPSIS
[options] [file [files [...]]]
=head1 DESCRIPTION
=head1 OPTIONS
=over 4
=item B<-h>, B<--help>
Print a brief help summary.
=item B<-v>, B<--verbose>
Increase level of verbosity. Can be repeated.
=item B<--version>
Print version information.
=item B<--debug>
Print debugging messages.
=back
=head1 BUGS
=head1 AUTHOR
Made by Øyvind A. Holm S<E<lt>[email protected]<gt>>.
=head1 COPYRIGHT
Copyleft © Øyvind A. Holm E<lt>[email protected]<gt>
This is free software; see the file F<COPYING> for legalese stuff.
=head1 LICENCE
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, see L<http://www.gnu.org/licenses/>.
=head1 SEE ALSO
=cut
# }}}
# vim: set fenc=UTF-8 ft=perl fdm=marker ts=4 sw=4 sts=4 et fo+=w :