Commit 798a9e4e authored by Wayne Davison's avatar Wayne Davison

Some more improvements for the packaging/release-rsync script:

- Check early if the version tag already exists, so it aborts right
  away if the release script can't do its work.
- Update the files in the "patches" dir while merging the master branch
  into the patch branches (done before creating the release patches for
  the rsync-patches tar file).
- Allow the user to ask to visit each patch when updating them.
- Pause after initial patch updating so that any extra patch changes
  can be done before the creating of the tar files.
- Ask for the GPG signing passphrase once for all signing commands.
parent c202b4fa
#!/bin/sh -e
# This script gets git to run gpg with a --passphrase-file option.
PATH=`echo $PATH | sed 's/^[^:]*://'`
gpg --batch --passphrase-file=$GPG_PASSFILE "${@}"
...@@ -7,9 +7,12 @@ use strict; ...@@ -7,9 +7,12 @@ use strict;
# ~/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 Cwd; use Cwd;
use Term::ReadKey;
use Date::Format; use Date::Format;
my $dest = $ENV{HOME} . '/samba-rsync-ftp'; my $dest = $ENV{HOME} . '/samba-rsync-ftp';
my $passfile = $ENV{HOME} . '/.rsyncpass';
my $path = $ENV{PATH};
my $now = time; my $now = time;
my $cl_today = time2str('* %a %b %d %Y', $now); my $cl_today = time2str('* %a %b %d %Y', $now);
...@@ -19,6 +22,10 @@ my $ztoday = time2str('%d %b %Y', $now); ...@@ -19,6 +22,10 @@ my $ztoday = time2str('%d %b %Y', $now);
my $curdir = Cwd::cwd; my $curdir = Cwd::cwd;
END {
unlink($passfile);
}
my @extra_files; my @extra_files;
open(IN, '<', 'Makefile.in') or die "Couldn't open Makefile.in: $!\n"; open(IN, '<', 'Makefile.in') or die "Couldn't open Makefile.in: $!\n";
while (<IN>) { while (<IN>) {
...@@ -77,6 +84,14 @@ if ($_ eq '.') { ...@@ -77,6 +84,14 @@ if ($_ eq '.') {
} elsif ($_ ne '') { } elsif ($_ ne '') {
$version = $_; $version = $_;
} }
die "Invalid version: `$version'\n" unless $version =~ /^[\d.]+(pre\d+)?$/;
if (`git tag -l v$version` ne '') {
print "Tag v$version already exists.\n\nDelete tag or quit? [q/del] ";
$_ = <STDIN>;
exit 1 unless /^del/i;
system "git tag -d v$version";
}
if ($version =~ s/[-.]*pre[-.]*/pre/ && $confversion !~ /dev$/) { if ($version =~ s/[-.]*pre[-.]*/pre/ && $confversion !~ /dev$/) {
$lastversion = $confversion; $lastversion = $confversion;
...@@ -126,7 +141,7 @@ About to: ...@@ -126,7 +141,7 @@ About to:
- make sure that SUBPROTOCOL_VERSION is 0$skipping - make sure that SUBPROTOCOL_VERSION is 0$skipping
- tweak the version in configure.in and the spec files - tweak the version in configure.in and the spec files
- tweak NEWS and OLDNEWS to update the release date$skipping - tweak NEWS and OLDNEWS to update the release date$skipping
- tweak the date in the *.yo files and generate the man pages - tweak the date in the *.yo files and generate the manpages
- generate configure.sh, config.h.in, and proto.h - generate configure.sh, config.h.in, and proto.h
- page through the differences - page through the differences
...@@ -204,24 +219,69 @@ my $lasttar_file = "$dest/$lastsrcdir/rsync-$lastversion.tar.gz"; ...@@ -204,24 +219,69 @@ my $lasttar_file = "$dest/$lastsrcdir/rsync-$lastversion.tar.gz";
print $break, <<EOT; print $break, <<EOT;
About to: About to:
- commit all changes - commit all version changes
- tag this release as v$version - merge the master branch into the patch/* branches
- update hard-linked top-level files for new version$skipping - update the files in the "patches" dir and OPTIONALLY
(if you type 'y') to launch a shell for each patch
EOT
print "<Press Enter OR 'y' to continue> ";
my $ans = <STDIN>;
system "git commit -a -m 'Preparing for release of $version'" and exit 1;
print "Updating files in \"patches\" dir ...\n";
system "support/patch-update";
if ($ans =~ /^y/i) {
print "\nVisiting all \"patch/*\" branches ...\n";
system "support/patch-update --shell";
}
print $break, <<EOT;
About to:
- create signed tag for this release: v$version
- create release diffs, "$diff_name"
- create release tar, "$srctar_name" - create release tar, "$srctar_name"
- generate rsync-$version/patches/* files
- create patches tar, "$pattar_name" - create patches tar, "$pattar_name"
- create release diffs, "$diff_name" - update top-level README, *NEWS, TODO, and ChangeLog
- update patch branches and generate patch/* files - update top-level rsync*.html manpages
- update README, *NEWS, TODO, and ChangeLog
- update rsync*.html man pages
- gpg-sign the release files - gpg-sign the release files
- update hard-linked top-level release files$skipping
EOT EOT
print "<Press Enter to continue> "; print "<Press Enter to continue> ";
$_ = <STDIN>; $_ = <STDIN>;
system "git commit -a -m 'Preparing for release of $version'" and exit 1; my $passphrase;
print "\nSign the tag:"; while (1) {
system "git tag -s -m 'Version $version.' v$version" and exit 1; ReadMode('noecho');
print "\nEnter your GPG pass-phrase: ";
chomp($passphrase = <STDIN>);
ReadMode(0);
print "\n";
# Briefly create a temp file with the passphrase for git's tagging use.
my $oldmask = umask 077;
unlink($passfile);
open(OUT, '>', $passfile) or die $!;
print OUT $passphrase, "\n";
close OUT;
umask $oldmask;
$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`;
$ENV{PATH} = $path;
unlink($passfile);
print $_;
next if /bad passphrase/;
last unless /failed/;
exit 1;
}
# Extract the generated files from the old tar. # Extract the generated files from the old tar.
@_ = @extra_files; @_ = @extra_files;
...@@ -241,9 +301,12 @@ system "git archive --format=tar --prefix=rsync-$version/ v$version | tar xf -"; ...@@ -241,9 +301,12 @@ system "git archive --format=tar --prefix=rsync-$version/ v$version | tar xf -";
system "support/git-set-file-times --prefix=rsync-$version/"; system "support/git-set-file-times --prefix=rsync-$version/";
system "fakeroot tar czf $srctar_file rsync-$version; rm -rf rsync-$version"; system "fakeroot tar czf $srctar_file rsync-$version; rm -rf rsync-$version";
print "Updating files in \"rsync-$version/patches\" dir ...\n";
mkdir("rsync-$version", 0755); mkdir("rsync-$version", 0755);
mkdir("rsync-$version/patches", 0755); mkdir("rsync-$version/patches", 0755);
system "support/patch-update --skip-check --gen=rsync-$version/patches"; system "support/patch-update --skip-check --gen=rsync-$version/patches";
print "Creating $pattar_file ...\n";
system "fakeroot tar chzf $pattar_file rsync-$version/patches; rm -rf rsync-$version"; system "fakeroot tar chzf $pattar_file rsync-$version/patches; rm -rf rsync-$version";
print "Updating the other files in $dest ...\n"; print "Updating the other files in $dest ...\n";
...@@ -255,11 +318,11 @@ system "git log --name-status | gzip -9 >$dest/ChangeLog.gz"; ...@@ -255,11 +318,11 @@ system "git log --name-status | gzip -9 >$dest/ChangeLog.gz";
system "yodl2html -o $dest/rsync.html rsync.yo"; system "yodl2html -o $dest/rsync.html rsync.yo";
system "yodl2html -o $dest/rsyncd.conf.html rsyncd.conf.yo"; system "yodl2html -o $dest/rsyncd.conf.html rsyncd.conf.yo";
my $cnt = 0;
print "\n";
foreach my $fn ($srctar_file, $pattar_file, $diff_file) { foreach my $fn ($srctar_file, $pattar_file, $diff_file) {
print ++$cnt, ". Sign file \"$fn\":"; unlink("$fn.asc");
system "gpg -ba $fn"; open(GPG, '|-', "gpg --batch --passphrase-fd=0 -ba $fn") or die $!;
print GPG $passphrase, "\n";
close GPG;
} }
if (!$pre) { if (!$pre) {
......
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