blob: 4917ba1a0460577d541b3a53fafd738ed8927c7e (
plain)
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
|
#!/usr/bin/perl -w
use strict;
use File::Find;
use File::Path;
use Rcs;
Rcs->bindir("/usr/bin");
my $comment = shift;
# Traverse desired filesystems
my $tree_root = '/home/freter/tmp';
my $rcs_path = '/RCS';
my $src_path = '/src';
find(\&wanted, $tree_root . $src_path);
exit;
sub wanted {
my $relative_path = $File::Find::dir;
($relative_path) =~ s{^$tree_root$src_path}{};
print $relative_path;
print "\n";
mkpath([$tree_root . $rcs_path . $relative_path], 1, 0755);
return unless -f;
my $obj = Rcs->new;
$obj->file($_);
$obj->rcsdir($tree_root . $rcs_path . $relative_path);
$obj->workdir($tree_root . $src_path . $relative_path);
# archive file exists
if (! -e $obj->rcsdir . '/' . $obj->arcfile) {
print "Initial Check-in\n";
$obj->ci("-l", "-t-$comment");
}
# create archive file
else {
print "Check-in\n";
$obj->ci("-l", "-m$comment");
}
}
|