X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/519c8de16f8bc738f1b10178b7b2f68ffb4bb8bb..4da9fcd41d30e8a089a0d64f5e6c44e80531942a:/packaging/release-rsync diff --git a/packaging/release-rsync b/packaging/release-rsync index 28bd8c85..b3a25032 100755 --- a/packaging/release-rsync +++ b/packaging/release-rsync @@ -1,70 +1,74 @@ #!/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 = <) { + if (s/^GENFILES=//) { + while (s/\\$//) { + $_ .= ; + } + @extra_files = split(' ', $_); + last; + } } -die "$dest does not exist\n" unless -d $dest; - -print "Checking out the latest rsync into $releasedir...\n"; +close IN; -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 +77,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 +88,122 @@ 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"; - 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; +print $break; +system "git diff --color | less -p '^diff .*'"; -system "patches/verify-patches -un -an"; +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"; -system "cvs -q diff | egrep -v '^(===============|RCS file: |retrieving revision |Index: )' | less -p '^diff .*'"; - -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"; +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; -chdir($releasedir) or die $!; - -print $dots; - -mkdir("rsync-$version", 0755) or die $!; -system "rsync -aC --exclude=.cvsignore rsync/ rsync-$version"; +# Extract some files from the old tar before we do the shuffle. +@_ = @extra_files; +map { s#^#rsync-$lastversion/# } @_; +system "tar xzf $lasttar_file @_"; +rename("rsync-$lastversion", 'a'); # 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 +213,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 +229,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"; - -system "rsync -a rsync/{README,NEWS,OLDNEWS,TODO} $dest"; +print "Creating $diff_file ...\n"; +system "./config.status Makefile; make gen; rsync -a @extra_files 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"; +rename('b', "rsync-$version"); + +print "Creating $srctar_file ...\n"; +system "git archive --format=tar --prefix=rsync-$version/ v$version | tar xf -"; +system "support/git-set-file-times --prefix=rsync-$version/"; +system "fakeroot tar czf $srctar_file rsync-$version; rm -rf rsync-$version"; + +mkdir("rsync-$version", 0755); +mkdir("rsync-$version/patches", 0755); +system "support/patch-update --gen=rsync-$version/patches"; +system "fakeroot tar chzf $pattar_file rsync-$version/patches; rm -rf rsync-$version"; + +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 "rsync -a $cvsroot/CVSROOT/rsync.updates $dest/cvs.log"; - -system "yodl2html -o $dest/rsync.html rsync/rsync.yo"; -system "yodl2html -o $dest/rsyncd.conf.html rsync/rsyncd.conf.yo"; - -system "rm -rf rsync rsync-$version rsync-$lastversion"; +system "git log --name-status | gzip -9 >$dest/changelog.gz"; -if ($live) { - chdir($dest) or die $!; - system "gpg -ba rsync-$version.tar.gz"; - system "gpg -ba rsync-$lastversion-$version.diffs.gz"; -} +system "yodl2html -o $dest/rsync.html rsync.yo"; +system "yodl2html -o $dest/rsyncd.conf.html rsyncd.conf.yo"; -print <