Define a "srcdir" in the spec file and use it in the URLs for the
[rsync/rsync.git] / packaging / release-rsync
CommitLineData
6d12a859
WD
1#!/usr/bin/perl
2use strict;
3
805d8ac4
WD
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.
6d12a859 8
805d8ac4 9use Cwd;
798a9e4e 10use Term::ReadKey;
6d12a859
WD
11use Date::Format;
12
13my $dest = $ENV{HOME} . '/samba-rsync-ftp';
798a9e4e
WD
14my $passfile = $ENV{HOME} . '/.rsyncpass';
15my $path = $ENV{PATH};
6d12a859 16
fede3785
WD
17my $now = time;
18my $cl_today = time2str('* %a %b %d %Y', $now);
19my $year = time2str('%Y', $now);
20my $ztoday = time2str('%d %b %Y', $now);
90ac152d 21(my $today = $ztoday) =~ s/^0//;
6d12a859 22
805d8ac4
WD
23my $curdir = Cwd::cwd;
24
798a9e4e
WD
25END {
26 unlink($passfile);
27}
28
67b9b26f
WD
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}
805d8ac4
WD
40close IN;
41
5fa38cd6
WD
42my $break = <<EOT;
43==========================================================================
6d12a859 44EOT
6d12a859 45
805d8ac4 46print $break, <<EOT, $break, "\n";
5fa38cd6
WD
47== This will release a new version of rsync onto an unsuspecting world. ==
48EOT
519c8de1 49
805d8ac4
WD
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';
519c8de1 54
6a2456c5 55open(IN, '-|', 'git status') or die $!;
805d8ac4
WD
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/;
519c8de1 60
fede3785 61my $confversion;
578219be 62open(IN, '<', 'configure.in') or die $!;
519c8de1
WD
63while (<IN>) {
64 if (/^RSYNC_VERSION=(.*)/) {
fede3785 65 $confversion = $1;
519c8de1
WD
66 last;
67 }
68}
69close IN;
fede3785 70die "Unable to find RSYNC_VERSION in configure.in\n" unless defined $confversion;
2e4a3d17 71
62ca3826
WD
72open(IN, '<', 'OLDNEWS') or die $!;
73$_ = <IN>;
74close IN;
fede3785 75my($lastversion) = /(\d+\.\d+\.\d+)/;
62ca3826 76
fede3785 77my $version = $confversion;
805d8ac4 78$version =~ s/dev/pre1/ || $version =~ s/pre(\d+)/ 'pre' . ($1 + 1) /e;
519c8de1 79
805d8ac4 80print "Please enter the version number of this release: [$version] ";
519c8de1
WD
81chomp($_ = <STDIN>);
82if ($_ eq '.') {
83 $version =~ s/pre\d+//;
84} elsif ($_ ne '') {
85 $version = $_;
86}
798a9e4e
WD
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}
fede3785
WD
95
96if ($version =~ s/[-.]*pre[-.]*/pre/ && $confversion !~ /dev$/) {
97 $lastversion = $confversion;
98}
6d12a859 99
519c8de1
WD
100print "Enter the previous version to produce a patch against: [$lastversion] ";
101chomp($_ = <STDIN>);
102$lastversion = $_ if $_ ne '';
6d12a859
WD
103$lastversion =~ s/[-.]*pre[-.]*/pre/;
104
99ba99c7
WD
105my $pre = $version =~ /(pre\d+)/ ? $1 : '';
106
107my $release = $pre ? '0.1' : '1';
519c8de1
WD
108print "Please enter the RPM release number of this release: [$release] ";
109chomp($_ = <STDIN>);
110$release = $_ if $_ ne '';
99ba99c7 111$release .= ".$pre" if $pre;
6d12a859 112
e63d3a29 113my($srcdir,$srcdiffdir,$lastsrcdir,$skipping);
6d12a859 114if ($lastversion =~ /pre/) {
99ba99c7 115 if (!$pre) {
6d12a859
WD
116 die "You should not diff a release version against a pre-release version.\n";
117 }
e63d3a29 118 $srcdir = $srcdiffdir = $lastsrcdir = 'src-previews';
805d8ac4 119 $skipping = ' ** SKIPPING **';
99ba99c7 120} elsif ($pre) {
e63d3a29
WD
121 $srcdir = $srcdiffdir = 'src-previews';
122 $lastsrcdir = 'src';
805d8ac4 123 $skipping = ' ** SKIPPING **';
6d12a859 124} else {
e63d3a29
WD
125 $srcdir = $lastsrcdir = 'src';
126 $srcdiffdir = 'src-diffs';
805d8ac4 127 $skipping = '';
6d12a859
WD
128}
129
5fa38cd6 130print "\n", $break, <<EOT;
6d12a859
WD
131\$version is "$version"
132\$lastversion is "$lastversion"
6d12a859 133\$dest is "$dest"
805d8ac4 134\$curdir is "$curdir"
e63d3a29
WD
135\$srcdir is "$srcdir"
136\$srcdiffdir is "$srcdiffdir"
137\$lastsrcdir is "$lastsrcdir"
6d12a859
WD
138\$release is "$release"
139
140About to:
805d8ac4
WD
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
798a9e4e 144 - tweak the date in the *.yo files and generate the manpages
805d8ac4
WD
145 - generate configure.sh, config.h.in, and proto.h
146 - page through the differences
6d12a859
WD
147
148EOT
149print "<Press Enter to continue> ";
150$_ = <STDIN>;
151
800a4485 152(my $finalversion = $version) =~ s/pre\d+//;
99ba99c7 153my %specvars = ( 'Version:' => $finalversion, 'Release:' => $release,
6fd2c27f
WD
154 '%define fullversion' => "\%{version}$pre", 'Released' => "$version.",
155 '%define srcdir' => $srcdir );
800a4485
WD
156my @tweak_files = ( glob('packaging/*.spec'), glob('packaging/*/*.spec'), glob('*.yo'),
157 qw( configure.in rsync.h NEWS OLDNEWS options.c ) );
805d8ac4 158
6d12a859
WD
159foreach my $fn (@tweak_files) {
160 open(IN, '<', $fn) or die $!;
161 undef $/; $_ = <IN>; $/ = "\n";
162 close IN;
163 if ($fn =~ /configure/) {
800a4485
WD
164 s/^RSYNC_VERSION=.*/RSYNC_VERSION=$version/m
165 or die "Unable to update RSYNC_VERSION in $fn\n";
6d12a859 166 } elsif ($fn =~ /\.spec/) {
800a4485
WD
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";
6d12a859 173 } elsif ($fn =~ /\.yo/) {
800a4485
WD
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";
2e4a3d17 178 } elsif ($fn eq 'rsync.h') {
800a4485
WD
179 s/(#define\s+SUBPROTOCOL_VERSION)\s+\d+/$1 0/
180 or die "Unable to find SUBPROTOCOL_VERSION define in $fn\n";
99ba99c7 181 next if $pre;
800a4485
WD
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";
99ba99c7 186 next if $pre;
178a1d20 187 } elsif ($fn eq 'OLDNEWS') {
800a4485
WD
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";
99ba99c7 190 next if $pre;
fede3785 191 } elsif ($fn eq 'options.c') {
800a4485
WD
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;
6d12a859 200 } else {
178a1d20 201 die "Unrecognized file in \@tweak_files: $fn\n";
6d12a859
WD
202 }
203 open(OUT, '>', $fn) or die $!;
204 print OUT $_;
205 close OUT;
206}
207
5fa38cd6 208print $break;
6a2456c5 209system "git diff --color | less -p '^diff .*'";
5fa38cd6 210
805d8ac4
WD
211my $srctar_name = "rsync-$version.tar.gz";
212my $pattar_name = "rsync-patches-$version.tar.gz";
e60bba3f 213my $diff_name = "rsync-$lastversion-$version.diffs.gz";
e63d3a29
WD
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";
5fa38cd6
WD
219
220print $break, <<EOT;
6d12a859 221
805d8ac4 222About to:
798a9e4e
WD
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 "support/patch-update";
236
237if ($ans =~ /^y/i) {
238 print "\nVisiting all \"patch/*\" branches ...\n";
239 system "support/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"
805d8ac4 247 - create release tar, "$srctar_name"
798a9e4e 248 - generate rsync-$version/patches/* files
805d8ac4 249 - create patches tar, "$pattar_name"
798a9e4e
WD
250 - update top-level README, *NEWS, TODO, and ChangeLog
251 - update top-level rsync*.html manpages
805d8ac4 252 - gpg-sign the release files
798a9e4e 253 - update hard-linked top-level release files$skipping
6d12a859
WD
254
255EOT
256print "<Press Enter to continue> ";
257$_ = <STDIN>;
258
798a9e4e
WD
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}
6d12a859 286
e63d3a29 287# Extract the generated files from the old tar.
4bb319c6
WD
288@_ = @extra_files;
289map { s#^#rsync-$lastversion/# } @_;
290system "tar xzf $lasttar_file @_";
291rename("rsync-$lastversion", 'a');
292
5fa38cd6 293print "Creating $diff_file ...\n";
4da9fcd4 294system "./config.status Makefile; make gen; rsync -a @extra_files b/";
ee8a733d 295my $sed_script = 's:^((---|\+\+\+) [ab]/[^\t]+)\t.*:\1:';
62ca3826 296system "(git diff v$lastversion v$version; diff -upN a b | sed -r '$sed_script') | gzip -9 >$diff_file";
9217ce30
WD
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";
805d8ac4 304
798a9e4e 305print "Updating files in \"rsync-$version/patches\" dir ...\n";
4da9fcd4
WD
306mkdir("rsync-$version", 0755);
307mkdir("rsync-$version/patches", 0755);
f2b7b64d 308system "support/patch-update --skip-check --gen=rsync-$version/patches";
798a9e4e
WD
309
310print "Creating $pattar_file ...\n";
4da9fcd4 311system "fakeroot tar chzf $pattar_file rsync-$version/patches; rm -rf rsync-$version";
6d12a859 312
5fa38cd6 313print "Updating the other files in $dest ...\n";
805d8ac4 314system "rsync -a README NEWS OLDNEWS TODO $dest";
e63d3a29
WD
315unlink($news_file);
316link("$dest/NEWS", $news_file);
eaa28e65 317system "git log --name-status | gzip -9 >$dest/ChangeLog.gz";
6d12a859 318
805d8ac4
WD
319system "yodl2html -o $dest/rsync.html rsync.yo";
320system "yodl2html -o $dest/rsyncd.conf.html rsyncd.conf.yo";
6d12a859 321
e63d3a29 322foreach my $fn ($srctar_file, $pattar_file, $diff_file) {
798a9e4e
WD
323 unlink("$fn.asc");
324 open(GPG, '|-', "gpg --batch --passphrase-fd=0 -ba $fn") or die $!;
325 print GPG $passphrase, "\n";
326 close GPG;
e0fe5231 327}
e63d3a29 328
99ba99c7 329if (!$pre) {
e63d3a29
WD
330 system "rm $dest/rsync-*{.tar.gz,.asc,-NEWS} $dest/src-preview/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
e0fe5231 340print $break, <<'EOT';
6d12a859 341
e0fe5231
WD
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)!
6d12a859 345EOT