chiark / gitweb /
change terminology
[topbloke.git] / tb-create.pl
index f56764bc1a8c83678c65ab3488f09140279542aa..16954d4c09bacea7210817b5808c76917137fdc1 100755 (executable)
@@ -1,4 +1,5 @@
 #!/usr/bin/perl
+# usage: tb-create <patch-spec>
 
 use warnings;
 use strict;
@@ -10,14 +11,14 @@ Getopt::Long::Configure(qw(bundling));
 
 die "bad usage\n" unless @ARGV==1;
 
-our $spec = parse_branch_spec($ARGV[0]);
+our $spec = parse_patch_spec($ARGV[0]);
 our $current = current_branch();
 
-die "cannot make branch starting at base of another;".
-    " check out a real branch\n" if $current->{Kind} eq 'base';
+die "cannot make patch starting at base of another;".
+    " check out a real branch or patch\n" if $current->{Kind} eq 'base';
 
 die "strange branch ref $current->{Kind} $current->{Ref},\n".
-    " making new branch with this as dep is unwise\n"
+    " making new patch with this as dep is unwise\n"
     unless ($current->{Kind} eq 'foreign' ||
            $current->{Kind} eq 'tip');
 
@@ -46,10 +47,10 @@ chdir_toplevel();
 check_no_unwanted_metadata('HEAD')
     if $current->{Kind} ne 'tip';
 
-run_git_check_nooutput("cannot create new topbloke branch with staged file(s)",
+run_git_check_nooutput("cannot create new patch with staged file(s)",
                       qw(diff --cached --name-only HEAD --));
 
-run_git_check_nooutput("cannot create new topbloke branch with".
+run_git_check_nooutput("cannot create new patch with".
                       " modified metadata file(s)",
                       qw(diff --name-only HEAD -- .topbloke));
 
@@ -59,16 +60,16 @@ run_git_check_nooutput("cannot create new topbloke branch with".
 # For .topbloke/msg, if it's modified by the user (ie, if working
 # version differs from HEAD) we keep that and stage it.
 
-my $newbranch = "$spec->{Email}\@$spec->{Domain}/$spec->{Date}/$spec->{Nick}";
+my $newpatch = "$spec->{Email}\@$spec->{Domain}/$spec->{Date}/$spec->{Nick}";
 
-$newbranch = run_git_1line(qw(check-ref-format --print), $newbranch);
+$newpatch = run_git_1line(qw(check-ref-format --print), $newpatch);
 
 my $author = run_git_1line(qw(var GIT_AUTHOR_IDENT));
 $author =~ s/ \d+ [-+]\d+$// or die $!;
 
 my $subjprefix = git_config('topbloke.subjectprefix', '');
 
-printf "creating %s\n", $newbranch;
+printf "creating %s\n", $newpatch;
 
 setup_config();
 
@@ -99,10 +100,10 @@ if (lstat '.topbloke') {
     mkdir('.topbloke') or die "create .topbloke: $!\n";
 }
 
-my $baseref = "refs/topbloke-bases/$newbranch";
+my $baseref = "refs/topbloke-bases/$newpatch";
 create_and_switch($baseref);
 
-run_git(qw(update-ref -m), "tb-create base", $baseref, 'HEAD');
+run_git(qw(update-ref -m), "tb-create base $newpatch", $baseref, 'HEAD');
 run_git(qw(symbolic-ref HEAD), $baseref);
 
 meta_and_stage('msg', "# not applicable\n");
@@ -114,11 +115,11 @@ if ($current->{Kind} eq 'foreign') {
     meta_and_stage('pflags', '');
 }
 
-run_git(qw(commit -q -m), "create base branch $spec->{Nick}\n$newbranch\n");
+run_git(qw(commit -q -m), "tb-create base $newpatch");
 
 #----- create the tip branch
 
-my $tipref = "refs/topbloke-tips/$newbranch";
+my $tipref = "refs/topbloke-tips/$newpatch";
 create_and_switch($tipref);
 
 my $nm = wf_start('.topbloke/msg');
@@ -142,7 +143,7 @@ stage_meta('msg');
 meta_and_stage('deps', "$current->{DepSpec}\n");
 # we inherit empty flags from the base branch
 
-flagsfile_add_flag('included',$newbranch);
+flagsfile_add_flag('included',$newpatch);
 stage_meta('included');
 
-run_git(qw(commit -q -m), "create branch $spec->{Nick}\n$newbranch\n");
+run_git(qw(commit -q -m), "tb-create tip $spec->{Nick}\n$newpatch\n");