Call patch-update in its new location.
[rsync/rsync.git] / packaging / release-rsync
... / ...
CommitLineData
1#!/usr/bin/perl
2use strict;
3
4# This script expects the directory ~/samba-rsync-ftp to exist and to be a
5# copy of the /home/ftp/pub/rsync dir on samba.org. When the script is done,
6# the git repository in the current directory will be updated, and the local
7# ~/samba-rsync-ftp dir will be ready to be rsynced to samba.org.
8
9use Cwd;
10use Term::ReadKey;
11use Date::Format;
12
13my $dest = $ENV{HOME} . '/samba-rsync-ftp';
14my $passfile = $ENV{HOME} . '/.rsyncpass';
15my $path = $ENV{PATH};
16
17my $now = time;
18my $cl_today = time2str('* %a %b %d %Y', $now);
19my $year = time2str('%Y', $now);
20my $ztoday = time2str('%d %b %Y', $now);
21(my $today = $ztoday) =~ s/^0//;
22
23my $curdir = Cwd::cwd;
24
25END {
26 unlink($passfile);
27}
28
29my @extra_files;
30open(IN, '<', 'Makefile.in') or die "Couldn't open Makefile.in: $!\n";
31while (<IN>) {
32 if (s/^GENFILES=//) {
33 while (s/\\$//) {
34 $_ .= <IN>;
35 }
36 @extra_files = split(' ', $_);
37 last;
38 }
39}
40close IN;
41
42my $break = <<EOT;
43==========================================================================
44EOT
45
46print $break, <<EOT, $break, "\n";
47== This will release a new version of rsync onto an unsuspecting world. ==
48EOT
49
50die "$dest does not exist\n" unless -d $dest;
51die "There is no .git dir in the current directory.\n" unless -d '.git';
52die "'a' must not exist in the current directory.\n" if -e 'a';
53die "'b' must not exist in the current directory.\n" if -e 'b';
54
55open(IN, '-|', 'git status') or die $!;
56my $status = join('', <IN>);
57close IN;
58die "The checkout is not clean:\n", $status unless $status =~ /\nnothing to commit \(working directory clean\)/;
59die "The checkout is not on the master branch.\n" unless $status =~ /^# On branch master\n/;
60
61my $confversion;
62open(IN, '<', 'configure.in') or die $!;
63while (<IN>) {
64 if (/^RSYNC_VERSION=(.*)/) {
65 $confversion = $1;
66 last;
67 }
68}
69close IN;
70die "Unable to find RSYNC_VERSION in configure.in\n" unless defined $confversion;
71
72open(IN, '<', 'OLDNEWS') or die $!;
73$_ = <IN>;
74close IN;
75my($lastversion) = /(\d+\.\d+\.\d+)/;
76
77my $version = $confversion;
78$version =~ s/dev/pre1/ || $version =~ s/pre(\d+)/ 'pre' . ($1 + 1) /e;
79
80print "Please enter the version number of this release: [$version] ";
81chomp($_ = <STDIN>);
82if ($_ eq '.') {
83 $version =~ s/pre\d+//;
84} elsif ($_ ne '') {
85 $version = $_;
86}
87die "Invalid version: `$version'\n" unless $version =~ /^[\d.]+(pre\d+)?$/;
88
89if (`git tag -l v$version` ne '') {
90 print "Tag v$version already exists.\n\nDelete tag or quit? [q/del] ";
91 $_ = <STDIN>;
92 exit 1 unless /^del/i;
93 system "git tag -d v$version";
94}
95
96if ($version =~ s/[-.]*pre[-.]*/pre/ && $confversion !~ /dev$/) {
97 $lastversion = $confversion;
98}
99
100print "Enter the previous version to produce a patch against: [$lastversion] ";
101chomp($_ = <STDIN>);
102$lastversion = $_ if $_ ne '';
103$lastversion =~ s/[-.]*pre[-.]*/pre/;
104
105my $pre = $version =~ /(pre\d+)/ ? $1 : '';
106
107my $release = $pre ? '0.1' : '1';
108print "Please enter the RPM release number of this release: [$release] ";
109chomp($_ = <STDIN>);
110$release = $_ if $_ ne '';
111$release .= ".$pre" if $pre;
112
113my($srcdir,$srcdiffdir,$lastsrcdir,$skipping);
114if ($lastversion =~ /pre/) {
115 if (!$pre) {
116 die "You should not diff a release version against a pre-release version.\n";
117 }
118 $srcdir = $srcdiffdir = $lastsrcdir = 'src-previews';
119 $skipping = ' ** SKIPPING **';
120} elsif ($pre) {
121 $srcdir = $srcdiffdir = 'src-previews';
122 $lastsrcdir = 'src';
123 $skipping = ' ** SKIPPING **';
124} else {
125 $srcdir = $lastsrcdir = 'src';
126 $srcdiffdir = 'src-diffs';
127 $skipping = '';
128}
129
130print "\n", $break, <<EOT;
131\$version is "$version"
132\$lastversion is "$lastversion"
133\$dest is "$dest"
134\$curdir is "$curdir"
135\$srcdir is "$srcdir"
136\$srcdiffdir is "$srcdiffdir"
137\$lastsrcdir is "$lastsrcdir"
138\$release is "$release"
139
140About to:
141 - make sure that SUBPROTOCOL_VERSION is 0$skipping
142 - tweak the version in configure.in and the spec files
143 - tweak NEWS and OLDNEWS to update the release date$skipping
144 - tweak the date in the *.yo files and generate the manpages
145 - generate configure.sh, config.h.in, and proto.h
146 - page through the differences
147
148EOT
149print "<Press Enter to continue> ";
150$_ = <STDIN>;
151
152(my $finalversion = $version) =~ s/pre\d+//;
153my %specvars = ( 'Version:' => $finalversion, 'Release:' => $release,
154 '%define fullversion' => "\%{version}$pre", 'Released' => "$version.",
155 '%define srcdir' => $srcdir );
156my @tweak_files = ( glob('packaging/*.spec'), glob('packaging/*/*.spec'), glob('*.yo'),
157 qw( configure.in rsync.h NEWS OLDNEWS options.c ) );
158
159foreach my $fn (@tweak_files) {
160 open(IN, '<', $fn) or die $!;
161 undef $/; $_ = <IN>; $/ = "\n";
162 close IN;
163 if ($fn =~ /configure/) {
164 s/^RSYNC_VERSION=.*/RSYNC_VERSION=$version/m
165 or die "Unable to update RSYNC_VERSION in $fn\n";
166 } elsif ($fn =~ /\.spec/) {
167 while (my($str, $val) = each %specvars) {
168 s/^\Q$str\E .*/$str $val/m
169 or die "Unable to update $str in $fn\n";
170 }
171 s/^\* \w\w\w \w\w\w \d\d \d\d\d\d (.*)/$cl_today $1/m
172 or die "Unable to update ChangeLog header in $fn\n";
173 } elsif ($fn =~ /\.yo/) {
174 s/^(manpage\([^)]+\)\(\d+\)\()[^)]+(\).*)/$1$today$2/m
175 or die "Unable to update date in manpage() header in $fn\n";
176 s/^(This man ?page is current for version) \S+ (of rsync)/$1 $version $2/m
177 or die "Unable to update current version info in $fn\n";
178 } elsif ($fn eq 'rsync.h') {
179 s/(#define\s+SUBPROTOCOL_VERSION)\s+\d+/$1 0/
180 or die "Unable to find SUBPROTOCOL_VERSION define in $fn\n";
181 next if $pre;
182 } elsif ($fn eq 'NEWS') {
183 s/^(NEWS for rsync \Q$finalversion\E) \(UNRELEASED\)\s*\n/$1 ($today)\n/mi
184 or die "The first line of $fn is not in the right format. It must be:\n"
185 . "NEWS for rsync $finalversion (UNRELEASED)\n";
186 next if $pre;
187 } elsif ($fn eq 'OLDNEWS') {
188 s/^\t\S\S\s\S\S\S\s\d\d\d\d(\t\Q$finalversion\E)/\t$ztoday$1/m
189 or die "Unable to find \"?? ??? $year\t$finalversion\" line in $fn\n";
190 next if $pre;
191 } elsif ($fn eq 'options.c') {
192 if (s/(Copyright \(C\) 2002-)(\d+)( Wayne Davison)/$1$year$3/
193 && $2 ne $year) {
194 die "Copyright comments need to be updated to $year in all files!\n";
195 }
196 # Adjust the year in the --version output.
197 s/(rprintf\(f, "Copyright \(C\) 1996-)(\d+)/$1$year/
198 or die "Unable to find Copyright string in --version output of $fn\n";
199 next if $2 eq $year;
200 } else {
201 die "Unrecognized file in \@tweak_files: $fn\n";
202 }
203 open(OUT, '>', $fn) or die $!;
204 print OUT $_;
205 close OUT;
206}
207
208print $break;
209system "git diff --color | less -p '^diff .*'";
210
211my $srctar_name = "rsync-$version.tar.gz";
212my $pattar_name = "rsync-patches-$version.tar.gz";
213my $diff_name = "rsync-$lastversion-$version.diffs.gz";
214my $srctar_file = "$dest/$srcdir/$srctar_name";
215my $pattar_file = "$dest/$srcdir/$pattar_name";
216my $diff_file = "$dest/$srcdiffdir/$diff_name";
217my $news_file = "$dest/$srcdir/rsync-$version-NEWS";
218my $lasttar_file = "$dest/$lastsrcdir/rsync-$lastversion.tar.gz";
219
220print $break, <<EOT;
221
222About to:
223 - commit all version changes
224 - merge the master branch into the patch/* branches
225 - update the files in the "patches" dir and OPTIONALLY
226 (if you type 'y') to launch a shell for each patch
227
228EOT
229print "<Press Enter OR 'y' to continue> ";
230my $ans = <STDIN>;
231
232system "git commit -a -m 'Preparing for release of $version'" and exit 1;
233
234print "Updating files in \"patches\" dir ...\n";
235system "packaging/patch-update";
236
237if ($ans =~ /^y/i) {
238 print "\nVisiting all \"patch/*\" branches ...\n";
239 system "packaging/patch-update --shell";
240}
241
242print $break, <<EOT;
243
244About to:
245 - create signed tag for this release: v$version
246 - create release diffs, "$diff_name"
247 - create release tar, "$srctar_name"
248 - generate rsync-$version/patches/* files
249 - create patches tar, "$pattar_name"
250 - update top-level README, *NEWS, TODO, and ChangeLog
251 - update top-level rsync*.html manpages
252 - gpg-sign the release files
253 - update hard-linked top-level release files$skipping
254
255EOT
256print "<Press Enter to continue> ";
257$_ = <STDIN>;
258
259my $passphrase;
260while (1) {
261 ReadMode('noecho');
262 print "\nEnter your GPG pass-phrase: ";
263 chomp($passphrase = <STDIN>);
264 ReadMode(0);
265 print "\n";
266
267 # Briefly create a temp file with the passphrase for git's tagging use.
268 my $oldmask = umask 077;
269 unlink($passfile);
270 open(OUT, '>', $passfile) or die $!;
271 print OUT $passphrase, "\n";
272 close OUT;
273 umask $oldmask;
274 $ENV{'GPG_PASSFILE'} = $passfile;
275
276 # We want to use our passphrase-providing "gpg" script, so modify the PATH.
277 $ENV{PATH} = "packaging/bin:$path";
278 $_ = `git tag -s -m 'Version $version.' v$version 2>&1`;
279 $ENV{PATH} = $path;
280 unlink($passfile);
281 print $_;
282 next if /bad passphrase/;
283 last unless /failed/;
284 exit 1;
285}
286
287# Extract the generated files from the old tar.
288@_ = @extra_files;
289map { s#^#rsync-$lastversion/# } @_;
290system "tar xzf $lasttar_file @_";
291rename("rsync-$lastversion", 'a');
292
293print "Creating $diff_file ...\n";
294system "./config.status Makefile; make gen; rsync -a @extra_files b/";
295my $sed_script = 's:^((---|\+\+\+) [ab]/[^\t]+)\t.*:\1:';
296system "(git diff v$lastversion v$version; diff -upN a b | sed -r '$sed_script') | gzip -9 >$diff_file";
297system "rm -rf a";
298rename('b', "rsync-$version");
299
300print "Creating $srctar_file ...\n";
301system "git archive --format=tar --prefix=rsync-$version/ v$version | tar xf -";
302system "support/git-set-file-times --prefix=rsync-$version/";
303system "fakeroot tar czf $srctar_file rsync-$version; rm -rf rsync-$version";
304
305print "Updating files in \"rsync-$version/patches\" dir ...\n";
306mkdir("rsync-$version", 0755);
307mkdir("rsync-$version/patches", 0755);
308system "packaging/patch-update --skip-check --gen=rsync-$version/patches";
309
310print "Creating $pattar_file ...\n";
311system "fakeroot tar chzf $pattar_file rsync-$version/patches; rm -rf rsync-$version";
312
313print "Updating the other files in $dest ...\n";
314system "rsync -a README NEWS OLDNEWS TODO $dest";
315unlink($news_file);
316link("$dest/NEWS", $news_file);
317system "git log --name-status | gzip -9 >$dest/ChangeLog.gz";
318
319system "yodl2html -o $dest/rsync.html rsync.yo";
320system "yodl2html -o $dest/rsyncd.conf.html rsyncd.conf.yo";
321
322foreach my $fn ($srctar_file, $pattar_file, $diff_file) {
323 unlink("$fn.asc");
324 open(GPG, '|-', "gpg --batch --passphrase-fd=0 -ba $fn") or die $!;
325 print GPG $passphrase, "\n";
326 close GPG;
327}
328
329if (!$pre) {
330 system "rm $dest/rsync-*.gz $dest/rsync-*.asc $dest/rsync-*-NEWS $dest/src-previews/rsync-*diffs.gz*";
331
332 foreach my $fn ($srctar_file, "$srctar_file.asc",
333 $pattar_file, "$pattar_file.asc",
334 $diff_file, "$diff_file.asc", $news_file) {
335 (my $top_fn = $fn) =~ s#/src(-\w+)?/#/#;
336 link($fn, $top_fn);
337 }
338}
339
340print $break, <<'EOT';
341
342Local changes are done. When you're satisfied, push the git repository
343and rsync the release files. Remember to announce the release on *BOTH*
344rsync-announce@lists.samba.org and rsync@lists.samba.org (and the web)!
345EOT