3 # This tool is copyright (c) 2005, Matthias Urlichs.
4 # It is released under the Gnu Public License, version 2.
6 # The basic idea is to aggregate CVS check-ins into related changes.
7 # Fortunately, "cvsps" does that for us; all we have to do is to parse
10 # Checking out the files is done by a single long-running CVS connection
13 # The head revision is on branch "origin" by default.
14 # You can change that with the '-o' option.
20 use File
::Temp
qw(tempfile tmpnam);
21 use File
::Path
qw(mkpath);
22 use File
::Basename
qw(basename dirname);
26 use POSIX
qw(strftime dup2 ENOENT);
29 $SIG{'PIPE'}="IGNORE";
32 our ($opt_h,$opt_o,$opt_v,$opt_k,$opt_u,$opt_d,$opt_p,$opt_C,$opt_z,$opt_i,$opt_P, $opt_s,$opt_m,$opt_M,$opt_A,$opt_S,$opt_L, $opt_a);
33 my (%conv_author_name, %conv_author_email);
37 Usage: ${\basename $0} # fetch/update GIT from CVS
38 [-o branch-for-HEAD] [-h] [-v] [-d CVSROOT] [-A author-conv-file]
39 [-p opts-for-cvsps] [-C GIT_repository] [-z fuzz] [-i] [-k] [-u]
40 [-s subst] [-a] [-m] [-M regex] [-S regex] [CVS_module]
45 sub read_author_info
($) {
48 open my $f, '<', "$file" or die("Failed to open $file: $!\n");
51 # Expected format is this:
52 # exon=Andreas Ericsson <ae@op5.se>
53 if (m/^(\S+?)\s*=\s*(.+?)\s*<(.+)>\s*$/) {
55 $conv_author_name{$user} = $2;
56 $conv_author_email{$user} = $3;
58 # However, we also read from CVSROOT/users format
60 elsif (/^(\w+):(['"]?)(.+?)\2\s*$/) {
62 ($user, $mapped) = ($1, $3);
63 if ($mapped =~ /^\s*(.*?)\s*<(.*)>\s*$/) {
64 $conv_author_name{$user} = $1;
65 $conv_author_email{$user} = $2;
67 elsif ($mapped =~ /^<?(.*)>?$/) {
68 $conv_author_name{$user} = $user;
69 $conv_author_email{$user} = $1;
72 # NEEDSWORK: Maybe warn on unrecognized lines?
77 sub write_author_info
($) {
79 open my $f, '>', $file or
80 die("Failed to open $file for writing: $!");
82 foreach (keys %conv_author_name) {
83 print $f "$_=$conv_author_name{$_} <$conv_author_email{$_}>\n";
88 getopts
("hivmkuo:d:p:C:z:s:M:P:A:S:L:") or usage
();
91 @ARGV <= 1 or usage
();
94 $ENV{"CVSROOT"} = $opt_d;
95 } elsif (-f
'CVS/Root') {
96 open my $f, '<', 'CVS/Root' or die 'Failed to open CVS/Root';
100 $ENV{"CVSROOT"} = $opt_d;
101 } elsif ($ENV{"CVSROOT"}) {
102 $opt_d = $ENV{"CVSROOT"};
104 die "CVSROOT needs to be set";
110 my $git_tree = $opt_C;
115 $cvs_tree = $ARGV[0];
116 } elsif (-f
'CVS/Repository') {
117 open my $f, '<', 'CVS/Repository' or
118 die 'Failed to open CVS/Repository';
128 @mergerx = ( qr/\W(?:from|of|merge|merging|merged) (\w+)/i );
131 push (@mergerx, qr/$opt_M/);
134 # Remember UTC of our starting time
135 # we'll want to avoid importing commits
136 # that are too recent
137 our $starttime = time();
139 select(STDERR
); $|=1; select(STDOUT
);
144 # We're only interested in connecting and downloading, so ...
147 use File
::Temp
qw(tempfile);
148 use POSIX
qw(strftime dup2);
151 my ($what,$repo,$subdir) = @_;
152 $what=ref($what) if ref($what);
155 $self->{'buffer'} = "";
159 $self->{'fullrep'} = $repo;
162 $self->{'subdir'} = $subdir;
163 $self->{'lines'} = undef;
170 my $repo = $self->{'fullrep'};
171 if ($repo =~ s/^:pserver(?:([^:]*)):(?:(.*?)(?::(.*?))?@)?([^:\/]*)(?::(\d*))?//) {
172 my ($param,$user,$pass,$serv,$port) = ($1,$2,$3,$4,$5);
174 my ($proxyhost,$proxyport);
175 if ($param && ($param =~ m/proxy=([^;]+)/)) {
177 # Default proxyport, if not specified, is 8080.
179 if ($ENV{"CVS_PROXY_PORT"}) {
180 $proxyport = $ENV{"CVS_PROXY_PORT"};
182 if ($param =~ m/proxyport=([^;]+)/) {
187 $user="anonymous" unless defined $user;
190 $rr2 = ":pserver:$user\@$serv:$repo";
193 my $rr = ":pserver:$user\@$serv:$port$repo";
196 open(H
,$ENV{'HOME'}."/.cvspass") and do {
197 # :pserver:cvs@mea.tmt.tele.fi:/cvsroot/zmailer Ah<Z
201 my ($w,$p) = split(/\s/,$_,2);
202 if ($w eq $rr or $w eq $rr2) {
209 $pass="A" unless $pass;
214 # Use a HTTP Proxy. Only works for HTTP proxies that
215 # don't require user authentication
217 # See: http://www.ietf.org/rfc/rfc2817.txt
219 $s = IO
::Socket
::INET
->new(PeerHost
=> $proxyhost, PeerPort
=> $proxyport);
220 die "Socket to $proxyhost: $!\n" unless defined $s;
221 $s->write("CONNECT $serv:$port HTTP/1.1\r\nHost: $serv:$port\r\n\r\n")
222 or die "Write to $proxyhost: $!\n";
227 # The answer should look like 'HTTP/1.x 2yy ....'
228 if (!($rep =~ m
#^HTTP/1\.. 2[0-9][0-9]#)) {
229 die "Proxy connect: $rep\n";
231 # Skip up to the empty line of the proxy server output
232 # including the response headers.
233 while ($rep = <$s>) {
234 last if (!defined $rep ||
239 $s = IO
::Socket
::INET
->new(PeerHost
=> $serv, PeerPort
=> $port);
240 die "Socket to $serv: $!\n" unless defined $s;
243 $s->write("BEGIN AUTH REQUEST\n$repo\n$user\n$pass\nEND AUTH REQUEST\n")
244 or die "Write to $serv: $!\n";
249 if ($rep ne "I LOVE YOU\n") {
250 $rep="<unknown>" unless $rep;
251 die "AuthReply: $rep\n";
253 $self->{'socketo'} = $s;
254 $self->{'socketi'} = $s;
255 } else { # local or ext: Fork off our own cvs server.
256 my $pr = IO
::Pipe
->new();
257 my $pw = IO
::Pipe
->new();
259 die "Fork: $!\n" unless defined $pid;
261 $cvs = $ENV{CVS_SERVER
} if exists $ENV{CVS_SERVER
};
263 $rsh = $ENV{CVS_RSH
} if exists $ENV{CVS_RSH
};
265 my @cvs = ($cvs, 'server');
266 my ($local, $user, $host);
267 $local = $repo =~ s/:local://;
270 $local = !($repo =~ s/^(?:([^\@:]+)\@)?([^:]+)://);
271 ($user, $host) = ($1, $2);
275 unshift @cvs, $rsh, '-l', $user, $host;
277 unshift @cvs, $rsh, $host;
284 dup2
($pw->fileno(),0);
285 dup2
($pr->fileno(),1);
292 $self->{'socketo'} = $pw;
293 $self->{'socketi'} = $pr;
295 $self->{'socketo'}->write("Root $repo\n");
297 # Trial and error says that this probably is the minimum set
298 $self->{'socketo'}->write("Valid-responses ok error Valid-requests Mode M Mbinary E Checked-in Created Updated Merged Removed\n");
300 $self->{'socketo'}->write("valid-requests\n");
301 $self->{'socketo'}->flush();
303 chomp(my $rep=$self->readline());
304 if ($rep !~ s/^Valid-requests\s*//) {
305 $rep="<unknown>" unless $rep;
306 die "Expected Valid-requests from server, but got: $rep\n";
308 chomp(my $res=$self->readline());
309 die "validReply: $res\n" if $res ne "ok";
311 $self->{'socketo'}->write("UseUnchanged\n") if $rep =~ /\bUseUnchanged\b/;
312 $self->{'repo'} = $repo;
317 return $self->{'socketi'}->getline();
321 # Request a file with a given revision.
322 # Trial and error says this is a good way to do it. :-/
323 my ($self,$fn,$rev) = @_;
324 $self->{'socketo'}->write("Argument -N\n") or return undef;
325 $self->{'socketo'}->write("Argument -P\n") or return undef;
326 # -kk: Linus' version doesn't use it - defaults to off
328 $self->{'socketo'}->write("Argument -kk\n") or return undef;
330 $self->{'socketo'}->write("Argument -r\n") or return undef;
331 $self->{'socketo'}->write("Argument $rev\n") or return undef;
332 $self->{'socketo'}->write("Argument --\n") or return undef;
333 $self->{'socketo'}->write("Argument $self->{'subdir'}/$fn\n") or return undef;
334 $self->{'socketo'}->write("Directory .\n") or return undef;
335 $self->{'socketo'}->write("$self->{'repo'}\n") or return undef;
336 # $self->{'socketo'}->write("Sticky T1.0\n") or return undef;
337 $self->{'socketo'}->write("co\n") or return undef;
338 $self->{'socketo'}->flush() or return undef;
339 $self->{'lines'} = 0;
343 # Read a line from the server.
344 # ... except that 'line' may be an entire file. ;-)
345 my ($self, $fh) = @_;
346 die "Not in lines" unless defined $self->{'lines'};
350 while (defined($line = $self->readline())) {
351 # M U gnupg-cvs-rep/AUTHORS
352 # Updated gnupg-cvs-rep/
353 # /daten/src/rsync/gnupg-cvs-rep/AUTHORS
354 # /AUTHORS/1.1///T1.1
359 if ($line =~ s/^(?:Created|Updated) //) {
360 $line = $self->readline(); # path
361 $line = $self->readline(); # Entries line
362 my $mode = $self->readline(); chomp $mode;
363 $self->{'mode'} = $mode;
364 defined (my $cnt = $self->readline())
365 or die "EOF from server after 'Changed'\n";
367 die "Duh: Filesize $cnt" if $cnt !~ /^\d+$/;
369 $res = $self->_fetchfile($fh, $cnt);
370 } elsif ($line =~ s/^ //) {
372 $res += length($line);
373 } elsif ($line =~ /^M\b/) {
375 } elsif ($line =~ /^Mbinary\b/) {
377 die "EOF from server after 'Mbinary'" unless defined ($cnt = $self->readline());
379 die "Duh: Mbinary $cnt" if $cnt !~ /^\d+$/ or $cnt<1;
381 $res += $self->_fetchfile($fh, $cnt);
385 # print STDERR "S: ok (".length($res).")\n";
387 } elsif ($line =~ s/^E //) {
388 # print STDERR "S: $line\n";
389 } elsif ($line =~ /^(Remove-entry|Removed) /i) {
390 $line = $self->readline(); # filename
391 $line = $self->readline(); # OK
393 die "Unknown: $line" if $line ne "ok";
396 die "Unknown: $line\n";
403 my ($self,$fn,$rev) = @_;
406 my ($fh, $name) = tempfile
('gitcvs.XXXXXX',
407 DIR
=> File
::Spec
->tmpdir(), UNLINK
=> 1);
409 $self->_file($fn,$rev) and $res = $self->_line($fh);
412 print STDERR
"Server has gone away while fetching $fn $rev, retrying...\n";
415 $self->_file($fn,$rev) or die "No file command send";
416 $res = $self->_line($fh);
417 die "Retry failed" unless defined $res;
421 return ($name, $res);
424 my ($self, $fh, $cnt) = @_;
426 my $bufsize = 1024 * 1024;
428 if ($bufsize > $cnt) {
432 my $num = $self->{'socketi'}->read($buf,$bufsize);
433 die "Server: Filesize $cnt: $num: $!\n" if not defined $num or $num<=0;
444 my $cvs = CVSconn
->new($opt_d, $cvs_tree);
449 m
#(\d{2,4})/(\d\d)/(\d\d)\s(\d\d):(\d\d)(?::(\d\d))?#
450 or die "Unparseable date: $d\n";
451 my $y=$1; $y-=1900 if $y>1900;
452 return timegm
($6||0,$5,$4,$3,$2-1,$y);
460 for my $x(split(//,$mode)) {
465 } elsif ($x eq "u") { $um |= 0700;
466 } elsif ($x eq "g") { $um |= 0070;
467 } elsif ($x eq "o") { $um |= 0007;
468 } elsif ($x eq "r") { $mm |= 0444;
469 } elsif ($x eq "w") { $mm |= 0222;
470 } elsif ($x eq "x") { $mm |= 0111;
471 } elsif ($x eq "=") { # do nothing
472 } else { die "Unknown mode: $mode\n";
487 return $s =~ /^[a-f0-9]{40}$/;
490 sub get_headref
($$) {
494 my $f = "$git_dir/refs/heads/$name";
495 if (open(my $fh, $f)) {
496 chomp(my $r = <$fh>);
497 is_sha1
($r) or die "Cannot get head id for $name ($r): $!";
500 die "unable to open $f: $!" unless $! == POSIX
::ENOENT
;
505 or mkdir($git_tree,0777)
506 or die "Could not create $git_tree: $!";
509 my $last_branch = "";
510 my $orig_branch = "";
512 my $tip_at_start = undef;
514 my $git_dir = $ENV{"GIT_DIR"} || ".git";
515 $git_dir = getwd
()."/".$git_dir unless $git_dir =~ m
#^/#;
516 $ENV{"GIT_DIR"} = $git_dir;
518 $orig_git_index = $ENV{GIT_INDEX_FILE
} if exists $ENV{GIT_INDEX_FILE
};
520 my %index; # holds filenames of one index per branch
522 unless (-d
$git_dir) {
524 die "Cannot init the GIT db at $git_tree: $?\n" if $?
;
525 system("git-read-tree");
526 die "Cannot init an empty tree: $?\n" if $?
;
528 $last_branch = $opt_o;
531 -f
"$git_dir/refs/heads/$opt_o"
532 or die "Branch '$opt_o' does not exist.\n".
533 "Either use the correct '-o branch' option,\n".
534 "or import to a new repository.\n";
536 open(F
, "git-symbolic-ref HEAD |") or
537 die "Cannot run git-symbolic-ref: $!\n";
538 chomp ($last_branch = <F
>);
539 $last_branch = basename
($last_branch);
541 unless ($last_branch) {
542 warn "Cannot read the last branch name: $! -- assuming 'master'\n";
543 $last_branch = "master";
545 $orig_branch = $last_branch;
546 $tip_at_start = `git-rev-parse --verify HEAD`;
548 # Get the last import timestamps
549 my $fmt = '($ref, $author) = (%(refname), %(author));';
550 open(H
, "git-for-each-ref --perl --format='$fmt' refs/heads |") or
551 die "Cannot run git-for-each-ref: $!\n";
552 while (defined(my $entry = <H
>)) {
554 eval($entry) || die "cannot eval refs list: $@";
555 my ($head) = ($ref =~ m
|^refs
/heads/(.*)|);
556 $author =~ /^.*\s(\d+)\s[-+]\d{4}$/;
557 $branch_date{$head} = $1;
563 or die "Could not create git subdir ($git_dir).\n";
565 # now we read (and possibly save) author-info as well
566 -f
"$git_dir/cvs-authors" and
567 read_author_info
("$git_dir/cvs-authors");
569 read_author_info
($opt_A);
570 write_author_info
("$git_dir/cvs-authors");
575 # run cvsps into a file unless we are getting
576 # it passed as a file via $opt_P
580 print "Running cvsps...\n" if $opt_v;
581 my $pid = open(CVSPS
,"-|");
583 die "Cannot fork: $!\n" unless defined $pid;
586 @opt = split(/,/,$opt_p) if defined $opt_p;
587 unshift @opt, '-z', $opt_z if defined $opt_z;
588 unshift @opt, '-q' unless defined $opt_v;
589 unless (defined($opt_p) && $opt_p =~ m/--no-cvs-direct/) {
590 push @opt, '--cvs-direct';
592 exec("cvsps","--norc",@opt,"-u","-A",'--root',$opt_d,$cvs_tree);
593 die "Could not start cvsps: $!\n";
595 ($cvspsfh, $cvspsfile) = tempfile
('gitXXXXXX', SUFFIX
=> '.cvsps',
596 DIR
=> File
::Spec
->tmpdir());
606 open(CVS
, "<$cvspsfile") or die $!;
609 #---------------------
611 #Date: 1999/09/18 13:03:59
613 #Branch: STABLE-BRANCH-1-0
614 #Ancestor branch: HEAD
617 # See ChangeLog: Sat Sep 18 13:03:28 CEST 1999 Werner Koch
619 # README:1.57->1.57.2.1
620 # VERSION:1.96->1.96.2.1
622 #---------------------
626 sub update_index
(\@\@
) {
629 open(my $fh, '|-', qw(git-update-index -z --index-info))
630 or die "unable to open git-update-index: $!";
632 (map { "0 0000000000000000000000000000000000000000\t$_\0" }
634 (map { '100' . sprintf('%o', $_->[0]) . " $_->[1]\t$_->[2]\0" }
636 or die "unable to write to git-update-index: $!";
638 or die "unable to write to git-update-index: $!";
639 $?
and die "git-update-index reported error: $?";
643 open(my $fh, '-|', qw(git-write-tree))
644 or die "unable to open git-write-tree: $!";
645 chomp(my $tree = <$fh>);
647 or die "Cannot get tree id ($tree): $!";
649 or die "Error running git-write-tree: $?\n";
650 print "Tree ID $tree\n" if $opt_v;
654 my ($patchset,$date,$author_name,$author_email,$branch,$ancestor,$tag,$logmsg);
655 my (@old,@new,@skipped,%ignorebranch);
657 # commits that cvsps cannot place anywhere...
658 $ignorebranch{'#CVSPS_NO_BRANCH'} = 1;
661 if ($branch eq $opt_o && !$index{branch
} && !get_headref
($branch, $git_dir)) {
662 # looks like an initial commit
663 # use the index primed by git-init
664 $ENV{GIT_INDEX_FILE
} = '.git/index';
665 $index{$branch} = '.git/index';
667 # use an index per branch to speed up
668 # imports of projects with many branches
669 unless ($index{$branch}) {
670 $index{$branch} = tmpnam
();
671 $ENV{GIT_INDEX_FILE
} = $index{$branch};
673 system("git-read-tree", $ancestor);
675 system("git-read-tree", $branch);
677 die "read-tree failed: $?\n" if $?
;
680 $ENV{GIT_INDEX_FILE
} = $index{$branch};
682 update_index
(@old, @new);
684 my $tree = write_tree
();
685 my $parent = get_headref
($last_branch, $git_dir);
686 print "Parent ID " . ($parent ?
$parent : "(empty)") . "\n" if $opt_v;
689 push @commit_args, ("-p", $parent) if $parent;
691 # loose detection of merges
692 # based on the commit msg
693 foreach my $rx (@mergerx) {
694 next unless $logmsg =~ $rx && $1;
695 my $mparent = $1 eq 'HEAD' ?
$opt_o : $1;
696 if (my $sha1 = get_headref
($mparent, $git_dir)) {
697 push @commit_args, '-p', $mparent;
698 print "Merge parent branch: $mparent\n" if $opt_v;
702 my $commit_date = strftime
("+0000 %Y-%m-%d %H:%M:%S",gmtime($date));
703 $ENV{GIT_AUTHOR_NAME
} = $author_name;
704 $ENV{GIT_AUTHOR_EMAIL
} = $author_email;
705 $ENV{GIT_AUTHOR_DATE
} = $commit_date;
706 $ENV{GIT_COMMITTER_NAME
} = $author_name;
707 $ENV{GIT_COMMITTER_EMAIL
} = $author_email;
708 $ENV{GIT_COMMITTER_DATE
} = $commit_date;
709 my $pid = open2
(my $commit_read, my $commit_write,
710 'git-commit-tree', $tree, @commit_args);
712 # compatibility with git2cvs
713 substr($logmsg,32767) = "" if length($logmsg) > 32767;
714 $logmsg =~ s/[\s\n]+\z//;
717 $logmsg .= "\n\n\nSKIPPED:\n\t";
718 $logmsg .= join("\n\t", @skipped) . "\n";
722 print($commit_write "$logmsg\n") && close($commit_write)
723 or die "Error writing to git-commit-tree: $!\n";
725 print "Committed patch $patchset ($branch $commit_date)\n" if $opt_v;
726 chomp(my $cid = <$commit_read>);
727 is_sha1
($cid) or die "Cannot get commit id ($cid): $!\n";
728 print "Commit ID $cid\n" if $opt_v;
732 die "Error running git-commit-tree: $?\n" if $?
;
734 system("git-update-ref refs/heads/$branch $cid") == 0
735 or die "Cannot write branch $branch for update: $!\n";
738 my ($in, $out) = ('','');
740 $xtag =~ s/\s+\*\*.*$//; # Remove stuff like ** INVALID ** and ** FUNKY **
741 $xtag =~ tr/_/\./ if ( $opt_u );
742 $xtag =~ s/[\/]/$opt_s/g
;
744 my $pid = open2
($in, $out, 'git-mktag');
745 print $out "object $cid\n".
748 "tagger $author_name <$author_email>\n"
749 or die "Cannot create tag object $xtag: $!\n";
751 or die "Cannot create tag object $xtag: $!\n";
756 if ( !close($in) or waitpid($pid, 0) != $pid or
757 $?
!= 0 or $tagobj !~ /^[0123456789abcdef]{40}$/ ) {
758 die "Cannot create tag object $xtag: $!\n";
762 open(C
,">$git_dir/refs/tags/$xtag")
763 or die "Cannot create tag $xtag: $!\n";
765 or die "Cannot write tag $xtag: $!\n";
767 or die "Cannot write tag $xtag: $!\n";
769 print "Created tag '$xtag' on '$branch'\n" if $opt_v;
776 if ($state == 0 and /^-+$/) {
778 } elsif ($state == 0) {
781 } elsif (($state==0 or $state==1) and s/^PatchSet\s+//) {
784 } elsif ($state == 2 and s/^Date:\s+//) {
787 print STDERR
"Could not parse date: $_\n";
792 } elsif ($state == 3 and s/^Author:\s+//) {
794 if (/^(.*?)\s+<(.*)>/) {
795 ($author_name, $author_email) = ($1, $2);
796 } elsif ($conv_author_name{$_}) {
797 $author_name = $conv_author_name{$_};
798 $author_email = $conv_author_email{$_};
800 $author_name = $author_email = $_;
803 } elsif ($state == 4 and s/^Branch:\s+//) {
808 } elsif ($state == 5 and s/^Ancestor branch:\s+//) {
811 $ancestor = $opt_o if $ancestor eq "HEAD";
813 } elsif ($state == 5) {
817 } elsif ($state == 6 and s/^Tag:\s+//) {
819 if ($_ eq "(none)") {
825 } elsif ($state == 7 and /^Log:/) {
828 } elsif ($state == 8 and /^Members:/) {
829 $branch = $opt_o if $branch eq "HEAD";
830 if (defined $branch_date{$branch} and $branch_date{$branch} >= $date) {
832 print "skip patchset $patchset: $date before $branch_date{$branch}\n" if $opt_v;
836 if (!$opt_a && $starttime - 300 - (defined $opt_z ?
$opt_z : 300) <= $date) {
837 # skip if the commit is too recent
838 # that the cvsps default fuzz is 300s, we give ourselves another
839 # 300s just in case -- this also prevents skipping commits
840 # due to server clock drift
841 print "skip patchset $patchset: $date too recent\n" if $opt_v;
845 if (exists $ignorebranch{$branch}) {
846 print STDERR
"Skipping $branch\n";
851 if ($ancestor eq $branch) {
852 print STDERR
"Branch $branch erroneously stems from itself -- changed ancestor to $opt_o\n";
855 if (-f
"$git_dir/refs/heads/$branch") {
856 print STDERR
"Branch $branch already exists!\n";
860 unless (open(H
,"$git_dir/refs/heads/$ancestor")) {
861 print STDERR
"Branch $ancestor does not exist!\n";
862 $ignorebranch{$branch} = 1;
868 unless (open(H
,"> $git_dir/refs/heads/$branch")) {
869 print STDERR
"Could not create branch $branch: $!\n";
870 $ignorebranch{$branch} = 1;
875 or die "Could not write branch $branch: $!";
877 or die "Could not write branch $branch: $!";
879 $last_branch = $branch if $branch ne $last_branch;
881 } elsif ($state == 8) {
883 } elsif ($state == 9 and /^\s+(.+?):(INITIAL|\d+(?:\.\d+)+)->(\d+(?:\.\d+)+)\s*$/) {
884 # VERSION:1.96->1.96.2.1
885 my $init = ($2 eq "INITIAL");
889 if ($opt_S && $fn =~ m/$opt_S/) {
890 print "SKIPPING $fn v $rev\n";
894 print "Fetching $fn v $rev\n" if $opt_v;
895 my ($tmpname, $size) = $cvs->file($fn,$rev);
898 print "Drop $fn\n" if $opt_v;
900 print "".($init ?
"New" : "Update")." $fn: $size bytes\n" if $opt_v;
901 my $pid = open(my $F, '-|');
902 die $! unless defined $pid;
904 exec("git-hash-object", "-w", $tmpname)
905 or die "Cannot create object: $!\n";
910 my $mode = pmode
($cvs->{'mode'});
911 push(@new,[$mode, $sha, $fn]); # may be resurrected!
914 } elsif ($state == 9 and /^\s+(.+?):\d+(?:\.\d+)+->(\d+(?:\.\d+)+)\(DEAD\)\s*$/) {
918 print "Delete $fn\n" if $opt_v;
919 } elsif ($state == 9 and /^\s*$/) {
921 } elsif (($state == 9 or $state == 10) and /^-+$/) {
923 if ($opt_L && $commitcount > $opt_L) {
927 if (($commitcount & 1023) == 0) {
928 system("git repack -a -d");
931 } elsif ($state == 11 and /^-+$/) {
933 } elsif (/^-+$/) { # end of unknown-line processing
935 } elsif ($state != 11) { # ignore stuff when skipping
936 print "* UNKNOWN LINE * $_\n";
939 commit
() if $branch and $state != 11;
945 # The heuristic of repacking every 1024 commits can leave a
946 # lot of unpacked data. If there is more than 1MB worth of
947 # not-packed objects, repack once more.
948 my $line = `git-count-objects`;
949 if ($line =~ /^(\d+) objects, (\d+) kilobytes$/) {
950 my ($n_objects, $kb) = ($1, $2);
952 and system("git repack -a -d");
955 foreach my $git_index (values %index) {
956 if ($git_index ne '.git/index') {
961 if (defined $orig_git_index) {
962 $ENV{GIT_INDEX_FILE
} = $orig_git_index;
964 delete $ENV{GIT_INDEX_FILE
};
967 # Now switch back to the branch we were in before all of this happened
969 print "DONE.\n" if $opt_v;
973 my $tip_at_end = `git-rev-parse --verify HEAD`;
974 if ($tip_at_start ne $tip_at_end) {
975 for ($tip_at_start, $tip_at_end) { chomp; }
976 print "Fetched into the current branch.\n" if $opt_v;
977 system(qw(git-read-tree -u -m),
978 $tip_at_start, $tip_at_end);
979 die "Fast-forward update failed: $?\n" if $?
;
982 system(qw(git-merge cvsimport HEAD), "refs/heads/$opt_o");
983 die "Could not merge $opt_o into the current branch.\n" if $?
;
986 $orig_branch = "master";
987 print "DONE; creating $orig_branch branch\n" if $opt_v;
988 system("git-update-ref", "refs/heads/master", "refs/heads/$opt_o")
989 unless -f
"$git_dir/refs/heads/master";
990 system('git-update-ref', 'HEAD', "$orig_branch");
992 system('git checkout');
993 die "checkout failed: $?\n" if $?
;