X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/519c8de16f8bc738f1b10178b7b2f68ffb4bb8bb..ee8a733d6fed612ffb8cdafbbcc9b7db016b1a3d:/packaging/release-rsync diff --git a/packaging/release-rsync b/packaging/release-rsync index 28bd8c85..932def5a 100755 --- a/packaging/release-rsync +++ b/packaging/release-rsync @@ -1,70 +1,67 @@ #!/usr/bin/perl use strict; -# 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. If it is run -# in test mode, it instead expects a dir named ~/tmp/samba-rsync-ftp -# (e.g. copy ~/samba-rsync-ftp into ~/tmp and you can do a trial-run of -# a release without affecting the files in the ~/samba-rsync-ftp dir). -# -# Run this as "release-rsync live" to affect ~/samba-rsync-ftp instead -# of ~/tmp/samba-rsync-ftp. +# 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, +# 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. +use Cwd; use Date::Format; my $dest = $ENV{HOME} . '/samba-rsync-ftp'; -my $releasedir = $ENV{HOME} . '/release'; -my $cvsroot = $ENV{CVSROOT} = 'samba.org:/data/cvs'; +my $cl_today = time2str('* %a %b %d %Y', time); my $ztoday = time2str('%d %b %Y', time); -my $today = $ztoday; -$today =~ s/^0//; +(my $today = $ztoday) =~ s/^0//; -my $dots = <); +close IN; -print "Checking out the latest rsync into $releasedir...\n"; +my @extra_files = m{\n([^\s:]+):.*\n\t\S}g; -mkdir($releasedir, 0755) or die $! unless -d $releasedir; -chdir($releasedir) or die $!; +my $break = <); +close IN; +die "The checkout is not clean:\n", $status unless $status =~ /\nnothing to commit \(working directory clean\)/; +die "The checkout is not on the master branch.\n" unless $status =~ /^# On branch master\n/; -my($version, $lastversion); -open(IN, 'configure.in') or die $!; +my $lastversion; +open(IN, '<', 'configure.in') or die $!; while () { if (/^RSYNC_VERSION=(.*)/) { - $version = $lastversion = $1; + $lastversion = $1; last; } } close IN; +if ($lastversion =~ /dev$/) { + open(IN, '<', 'OLDNEWS') or die $!; + $_ = ; + close IN; + ($lastversion) = /(\d+\.\d+\.\d+)/; +} -$lastversion =~ s/(\d+)cvs$/ $1 - 1 /e; -$version =~ s/cvs/pre1/ || $version =~ s/pre(\d+)/ 'pre' . ($1 + 1) /e; +my $version = $lastversion; +$version =~ s/dev/pre1/ || $version =~ s/pre(\d+)/ 'pre' . ($1 + 1) /e; -print "\nPlease enter the version number of this release: [$version] "; +print "Please enter the version number of this release: [$version] "; chomp($_ = ); if ($_ eq '.') { $version =~ s/pre\d+//; @@ -73,12 +70,6 @@ if ($_ eq '.') { } $version =~ s/[-.]*pre[-.]*/pre/; -$lastversion =~ s/(\d+)pre\d+$/ $1 - 1 /e unless $version =~ /pre/; - -my $cvstag = "release-$version"; -$cvstag =~ s/[.]/-/g; -$cvstag =~ s/pre/-pre/; - print "Enter the previous version to produce a patch against: [$lastversion] "; chomp($_ = ); $lastversion = $_ if $_ ne ''; @@ -90,130 +81,128 @@ chomp($_ = ); $release = $_ if $_ ne ''; my $diffdir; +my $skipping; if ($lastversion =~ /pre/) { if ($version !~ /pre/) { die "You should not diff a release version against a pre-release version.\n"; } $diffdir = "$dest/old-previews"; + $skipping = ' ** SKIPPING **'; } elsif ($version =~ /pre/) { $diffdir = $dest; + $skipping = ' ** SKIPPING **'; } else { $diffdir = "$dest/old-versions"; + $skipping = ''; } -my $tarfile = "$dest/rsync-$version.tar.gz"; - -print < "; $_ = ; -print $dots; - -system "./prepare-source && touch proto.h"; +print $break; my @tweak_files = ( glob('packaging/*.spec'), glob('packaging/*/*.spec'), - glob('*.yo'), qw( configure.in configure ) ); + glob('*.yo'), qw( configure.in ) ); + if ($version !~ /pre/) { - push(@tweak_files, qw( NEWS OLDNEWS )); + push(@tweak_files, qw( rsync.h NEWS OLDNEWS )); } foreach my $fn (@tweak_files) { open(IN, '<', $fn) or die $!; undef $/; $_ = ; $/ = "\n"; close IN; if ($fn =~ /configure/) { - s/^RSYNC_VERSION.*/RSYNC_VERSION=$version/m; + s/^RSYNC_VERSION=.*/RSYNC_VERSION=$version/m; } elsif ($fn =~ /\.spec/) { s/^(Version:) .*/$1 $version/m; s/^(Release:) .*/$1 $release/m; + s/^(Released) .*/$1 $version./m; + s/^\* \w\w\w \w\w\w \d\d \d\d\d\d (.*)/$cl_today $1/m; } elsif ($fn =~ /\.yo/) { s/^(manpage\([^)]+\)\(\d+\)\()[^)]+(\).*)/$1$today$2/m; s/^(This man ?page is current for version) \S+ (of rsync)/$1 $version $2/m; + } elsif ($fn eq 'NEWS') { + s/^(NEWS for rsync \Q$version\E) \(UNRELEASED\)\s*\n/$1 ($today)\n/mi + or die "Couldn't update NEWS file with release date!\n"; + } elsif ($fn eq 'rsync.h') { + s/(#define\s+SUBPROTOCOL_VERSION)\s+\d+/$1 0/; + } elsif ($fn eq 'OLDNEWS') { + s/^\t\S\S\s\S\S\S\s\d\d\d\d(\t\Q$version\E)/\t$ztoday$1/m + or die "Couldn't update OLDNEWS file with release date!\n"; } else { - s/^(NEWS for rsync \Q$version\E) \(UNRELEASED\)\s*$/$1 ($today)\n/m; - s/^\t\S\S\s\S\S\S\s\d\d\d\d(\t\Q$version\E)/\t$ztoday$1/m; + die "Unrecognized file in \@tweak_files: $fn\n"; } open(OUT, '>', $fn) or die $!; print OUT $_; close OUT; } -system "yodl2man -o rsync.1 rsync.yo"; -system "yodl2man -o rsyncd.conf.5 rsyncd.conf.yo"; -#system "perl -pi -e \"s/\\\\\\'/\\\\&'/g\" rsync.1 rsyncd.conf.5"; - -mkdir('patches/tmp') or die $!; -system "rsync -a --exclude=patches/ --exclude-from=.cvsignore . patches/tmp/cvsdir/"; - -print $dots, $note; +system "./prepare-source && touch proto.h"; -system "patches/verify-patches -un -an"; +print $break; +system "git-diff --color |less -p '^diff .*'"; -system "cvs -q diff | egrep -v '^(===============|RCS file: |retrieving revision |Index: )' | less -p '^diff .*'"; +my $srctar_name = "rsync-$version.tar.gz"; +my $pattar_name = "rsync-patches-$version.tar.gz"; +my $diff_name = "rsync-$lastversion-$version.diffs.gz"; +my $srctar_file = "$dest/$srctar_name"; +my $pattar_file = "$dest/$pattar_name"; +my $diff_file = "$dest/$diff_name"; +my $lasttar_file = "$dest/rsync-$lastversion.tar.gz"; -print < "; - $_ = ; - - system "cvs commit -m 'Preparing for release of $version'"; - system "cvs tag -F $cvstag ."; -} else { - print "**** Skipping cvs commit and tagging in TESTMODE ****\n"; -} - -print < "; $_ = ; -print $note; - -system "patches/verify-patches -pun -an"; - -chdir($releasedir) or die $!; +@_ = @extra_files; +map { s#^#a/# } @_; +$_[0] =~ s/configure\.sh/configure/; # XXX remove soon +system "tar xzf $lasttar_file @_"; +rename("a/configure", "a/configure.sh"); # XXX remove soon -print $dots; +system "rsync -a @extra_files rsync-$version/"; -mkdir("rsync-$version", 0755) or die $!; -system "rsync -aC --exclude=.cvsignore rsync/ rsync-$version"; +system "git-commit -a -m 'Preparing for release of $version'" and exit 1; +system "git-tag -s -m 'Version $version.' v$version" and exit 1; # When creating a pre-release after a normal release, there's nothing to move. if ($diffdir ne $dest) { chdir($dest) or die $!; + print "Shuffling old files ...\n"; + # We need to run this regardless of $lastversion's "pre"ness. my @moved_files; foreach my $fn (glob('rsync*pre*.tar.gz*'), glob('rsync*pre*-NEWS')) { @@ -223,10 +212,15 @@ if ($diffdir ne $dest) { if ($version !~ /pre/) { foreach my $fn (glob('rsync*.tar.gz*'), glob('rsync*-NEWS')) { + next if $fn =~ /^rsync.*pre/; link($fn, "old-versions/$fn") or die $!; push(@moved_files, $fn); } + foreach my $fn (glob('rsync*pre*.diffs.gz*')) { + unlink($fn); + } + foreach my $fn (glob('rsync*.diffs.gz*')) { link($fn, "old-patches/$fn") or die $!; push(@moved_files, $fn); @@ -234,43 +228,44 @@ if ($diffdir ne $dest) { } # Optimize our future upload (in the absence of --detect-renamed) by - # uploading the above hard-linked files that we are about to delete. - if ($live) { - system "rsync -avHC --include='rsync*.gz*' --include='old-*/' --exclude='*' . samba.org:/home/ftp/pub/rsync"; - } - foreach (@moved_files, glob("rsync*pre*.diffs.gz*")) { + # using rsync to hard-link the above files on samba.org. + system "rsync -avHOC --include='rsync*.gz*' --include='old-*/' --exclude='*' . samba.org:/home/ftp/pub/rsync"; + foreach (@moved_files) { unlink($_); } - chdir($releasedir) or die $!; + chdir($curdir) or die $!; } -system "fakeroot tar czf $tarfile rsync-$version"; -system "tar xzf $diffdir/rsync-$lastversion.tar.gz"; -## TWEAK THE VERSIONS AS DESIRED HERE ## -#mkdir("rsync-$lastversion/support", 0755) or die $!; -#rename("rsync-$lastversion/rsyncstats", "rsync-$lastversion/support/rsyncstats"); -## END ## -system "diff -urN --exclude=patches rsync-$lastversion rsync-$version" - . "| gzip -9 >$dest/rsync-$lastversion-$version.diffs.gz"; +print "Creating $srctar_file ...\n"; +(my $srctar_tmp = $srctar_file) =~ s/\.gz$//; +system "git-archive --format=tar --prefix=rsync-$version/ v$version >$srctar_tmp"; +system "fakeroot tar rf $srctar_tmp rsync-$version/*; gzip -9 $srctar_tmp"; -system "rsync -a rsync/{README,NEWS,OLDNEWS,TODO} $dest"; -unlink("$dest/rsync-$version-NEWS"); -link("$dest/NEWS", "$dest/rsync-$version-NEWS"); -system "rsync -a $cvsroot/CVSROOT/rsync.updates $dest/cvs.log"; +print "Creating $diff_file ...\n"; +rename("rsync-$version", 'b'); +my $sed_script = 's:^((---|\+\+\+) [ab]/[^\t]+)\t.*:\1:'; +system "(git-diff v$lastversion v$version; diff -up a b | sed -r '$sed_script') | gzip -9 >$diff_file"; +system "rm -rf a b"; -system "yodl2html -o $dest/rsync.html rsync/rsync.yo"; -system "yodl2html -o $dest/rsyncd.conf.html rsync/rsyncd.conf.yo"; +system "support/patch-update --gen"; -system "rm -rf rsync rsync-$version rsync-$lastversion"; +symlink('.', "rsync-$version"); +system "tar czf $pattar_file rsync-$version/patches"; +unlink("rsync-$version"); -if ($live) { - chdir($dest) or die $!; - system "gpg -ba rsync-$version.tar.gz"; - system "gpg -ba rsync-$lastversion-$version.diffs.gz"; -} +print "Updating the other files in $dest ...\n"; +system "rsync -a README NEWS OLDNEWS TODO $dest"; +unlink("$dest/rsync-$version-NEWS"); +link("$dest/NEWS", "$dest/rsync-$version-NEWS"); +system "git-log --name-status | gzip -9 >$dest/changelog.gz"; + +system "yodl2html -o $dest/rsync.html rsync.yo"; +system "yodl2html -o $dest/rsyncd.conf.html rsyncd.conf.yo"; -print <