Commit e89a0fc0 authored by Wayne Davison's avatar Wayne Davison

Handle check-in and tagging of patches dir.

parent 164faae8
#!/usr/bin/perl #!/usr/bin/perl
use strict;
use warnings;
# This script expects the directory ~/samba-rsync-ftp to exist and to be a # This script expects the directory ~/samba-rsync-ftp to exist and to be a
# copy of the /home/ftp/pub/rsync dir on samba.org. When the script is done, # copy of the /home/ftp/pub/rsync dir on samba.org. When the script is done,
# the git repository in the current directory will be updated, and the local # the git repository in the current directory will be updated, and the local
# ~/samba-rsync-ftp dir will be ready to be rsynced to samba.org. # ~/samba-rsync-ftp dir will be ready to be rsynced to samba.org.
use strict;
use warnings;
use Cwd; use Cwd;
use Getopt::Long; use Getopt::Long;
use Term::ReadKey; use Term::ReadKey;
...@@ -62,9 +61,7 @@ die "There is no .git dir in the current directory.\n" unless -d '.git'; ...@@ -62,9 +61,7 @@ die "There is no .git dir in the current directory.\n" unless -d '.git';
die "'a' must not exist in the current directory.\n" if -e 'a'; die "'a' must not exist in the current directory.\n" if -e 'a';
die "'b' must not exist in the current directory.\n" if -e 'b'; die "'b' must not exist in the current directory.\n" if -e 'b';
open(IN, '-|', 'git status') or die $!; my $status = `git status`;
my $status = join('', <IN>);
close IN;
die "The checkout is not clean:\n", $status unless $status =~ /\nnothing to commit \(working directory clean\)/; die "The checkout is not clean:\n", $status unless $status =~ /\nnothing to commit \(working directory clean\)/;
my($cur_branch) = $status =~ /^# On branch (.+)\n/; my($cur_branch) = $status =~ /^# On branch (.+)\n/;
if ($cur_branch ne $master_branch) { if ($cur_branch ne $master_branch) {
...@@ -76,6 +73,19 @@ if ($cur_branch ne $master_branch) { ...@@ -76,6 +73,19 @@ if ($cur_branch ne $master_branch) {
$master_branch = $cur_branch; $master_branch = $cur_branch;
} }
if (-d 'patches/.git') {
$status = `cd patches && git status`;
die "The *patches* checkout is not clean:\n", $status unless $status =~ /\nnothing to commit \(working directory clean\)/;
($cur_branch) = $status =~ /^# On branch (.+)\n/;
if ($cur_branch ne $master_branch) {
print "The *patches* checkout is on branch $cur_branch, not branch $master_branch.\n";
print "Do you want to change it to branch $master_branch? [n] ";
$_ = <STDIN>;
exit 1 unless /^y/i;
system "cd patches && git checkout '$master_branch'";
}
}
my $confversion; my $confversion;
open(IN, '<', 'configure.in') or die $!; open(IN, '<', 'configure.in') or die $!;
while (<IN>) { while (<IN>) {
...@@ -293,6 +303,10 @@ if ($ans =~ /^y/i) { ...@@ -293,6 +303,10 @@ if ($ans =~ /^y/i) {
system "packaging/patch-update --branch=$master_branch --shell"; system "packaging/patch-update --branch=$master_branch --shell";
} }
if (-d 'patches/.git') {
system "cd patches && git commit -a -m 'The patches for $version.'" and exit 1;
}
print $break, <<EOT; print $break, <<EOT;
About to: About to:
...@@ -310,6 +324,9 @@ EOT ...@@ -310,6 +324,9 @@ EOT
print "<Press Enter to continue> "; print "<Press Enter to continue> ";
$_ = <STDIN>; $_ = <STDIN>;
# We want to use our passphrase-providing "gpg" script, so modify the PATH.
$ENV{PATH} = "$curdir/packaging/bin:$path";
my $passphrase; my $passphrase;
while (1) { while (1) {
ReadMode('noecho'); ReadMode('noecho');
...@@ -327,17 +344,23 @@ while (1) { ...@@ -327,17 +344,23 @@ while (1) {
umask $oldmask; umask $oldmask;
$ENV{'GPG_PASSFILE'} = $passfile; $ENV{'GPG_PASSFILE'} = $passfile;
# We want to use our passphrase-providing "gpg" script, so modify the PATH.
$ENV{PATH} = "packaging/bin:$path";
$_ = `git tag -s -m 'Version $version.' v$version 2>&1`; $_ = `git tag -s -m 'Version $version.' v$version 2>&1`;
$ENV{PATH} = $path;
unlink($passfile);
print $_; print $_;
next if /bad passphrase/; next if /bad passphrase/;
last unless /failed/; exit 1 if /failed/;
exit 1;
if (-d 'patches/.git') {
$_ = `cd patches && git tag -s -m 'Version $version.' v$version 2>&1`;
print $_;
exit 1 if /bad passphrase|failed/;
}
unlink($passfile);
last;
} }
$ENV{PATH} = $path;
# Extract the generated files from the old tar. # Extract the generated files from the old tar.
@_ = @extra_files; @_ = @extra_files;
map { s#^#rsync-$lastversion/# } @_; map { s#^#rsync-$lastversion/# } @_;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment