Changed the way version numbering of pre-releases will be done in
[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 Date::Format;
11
12my $dest = $ENV{HOME} . '/samba-rsync-ftp';
13
14my $now = time;
15my $cl_today = time2str('* %a %b %d %Y', $now);
16my $year = time2str('%Y', $now);
17my $ztoday = time2str('%d %b %Y', $now);
18(my $today = $ztoday) =~ s/^0//;
19
20my $curdir = Cwd::cwd;
21
22my @extra_files;
23open(IN, '<', 'Makefile.in') or die "Couldn't open Makefile.in: $!\n";
24while (<IN>) {
25 if (s/^GENFILES=//) {
26 while (s/\\$//) {
27 $_ .= <IN>;
28 }
29 @extra_files = split(' ', $_);
30 last;
31 }
32}
33close IN;
34
35my $break = <<EOT;
36==========================================================================
37EOT
38
39print $break, <<EOT, $break, "\n";
40== This will release a new version of rsync onto an unsuspecting world. ==
41EOT
42
43die "$dest does not exist\n" unless -d $dest;
44die "There is no .git dir in the current directory.\n" unless -d '.git';
45die "'a' must not exist in the current directory.\n" if -e 'a';
46die "'b' must not exist in the current directory.\n" if -e 'b';
47
48open(IN, '-|', 'git status') or die $!;
49my $status = join('', <IN>);
50close IN;
51die "The checkout is not clean:\n", $status unless $status =~ /\nnothing to commit \(working directory clean\)/;
52die "The checkout is not on the master branch.\n" unless $status =~ /^# On branch master\n/;
53
54my $confversion;
55open(IN, '<', 'configure.in') or die $!;
56while (<IN>) {
57 if (/^RSYNC_VERSION=(.*)/) {
58 $confversion = $1;
59 last;
60 }
61}
62close IN;
63die "Unable to find RSYNC_VERSION in configure.in\n" unless defined $confversion;
64
65open(IN, '<', 'OLDNEWS') or die $!;
66$_ = <IN>;
67close IN;
68my($lastversion) = /(\d+\.\d+\.\d+)/;
69
70my $version = $confversion;
71$version =~ s/dev/pre1/ || $version =~ s/pre(\d+)/ 'pre' . ($1 + 1) /e;
72
73print "Please enter the version number of this release: [$version] ";
74chomp($_ = <STDIN>);
75if ($_ eq '.') {
76 $version =~ s/pre\d+//;
77} elsif ($_ ne '') {
78 $version = $_;
79}
80
81if ($version =~ s/[-.]*pre[-.]*/pre/ && $confversion !~ /dev$/) {
82 $lastversion = $confversion;
83}
84
85print "Enter the previous version to produce a patch against: [$lastversion] ";
86chomp($_ = <STDIN>);
87$lastversion = $_ if $_ ne '';
88$lastversion =~ s/[-.]*pre[-.]*/pre/;
89
90my $pre = $version =~ /(pre\d+)/ ? $1 : '';
91
92my $release = $pre ? '0.1' : '1';
93print "Please enter the RPM release number of this release: [$release] ";
94chomp($_ = <STDIN>);
95$release = $_ if $_ ne '';
96$release .= ".$pre" if $pre;
97
98my($srcdir,$srcdiffdir,$lastsrcdir,$skipping);
99if ($lastversion =~ /pre/) {
100 if (!$pre) {
101 die "You should not diff a release version against a pre-release version.\n";
102 }
103 $srcdir = $srcdiffdir = $lastsrcdir = 'src-previews';
104 $skipping = ' ** SKIPPING **';
105} elsif ($pre) {
106 $srcdir = $srcdiffdir = 'src-previews';
107 $lastsrcdir = 'src';
108 $skipping = ' ** SKIPPING **';
109} else {
110 $srcdir = $lastsrcdir = 'src';
111 $srcdiffdir = 'src-diffs';
112 $skipping = '';
113}
114
115print "\n", $break, <<EOT;
116\$version is "$version"
117\$lastversion is "$lastversion"
118\$dest is "$dest"
119\$curdir is "$curdir"
120\$srcdir is "$srcdir"
121\$srcdiffdir is "$srcdiffdir"
122\$lastsrcdir is "$lastsrcdir"
123\$release is "$release"
124
125About to:
126 - make sure that SUBPROTOCOL_VERSION is 0$skipping
127 - tweak the version in configure.in and the spec files
128 - tweak NEWS and OLDNEWS to update the release date$skipping
129 - tweak the date in the *.yo files and generate the man pages
130 - generate configure.sh, config.h.in, and proto.h
131 - page through the differences
132
133EOT
134print "<Press Enter to continue> ";
135$_ = <STDIN>;
136
137(my $finalversion = $version) =~ s/pre\d+//;
138my %specvars = ( 'Version:' => $finalversion, 'Release:' => $release,
139 '%define fullversion' => "\%{version}$pre", 'Released' => "$version." );
140my @tweak_files = ( glob('packaging/*.spec'), glob('packaging/*/*.spec'), glob('*.yo'),
141 qw( configure.in rsync.h NEWS OLDNEWS options.c ) );
142
143foreach my $fn (@tweak_files) {
144 open(IN, '<', $fn) or die $!;
145 undef $/; $_ = <IN>; $/ = "\n";
146 close IN;
147 if ($fn =~ /configure/) {
148 s/^RSYNC_VERSION=.*/RSYNC_VERSION=$version/m
149 or die "Unable to update RSYNC_VERSION in $fn\n";
150 } elsif ($fn =~ /\.spec/) {
151 while (my($str, $val) = each %specvars) {
152 s/^\Q$str\E .*/$str $val/m
153 or die "Unable to update $str in $fn\n";
154 }
155 s/^\* \w\w\w \w\w\w \d\d \d\d\d\d (.*)/$cl_today $1/m
156 or die "Unable to update ChangeLog header in $fn\n";
157 } elsif ($fn =~ /\.yo/) {
158 s/^(manpage\([^)]+\)\(\d+\)\()[^)]+(\).*)/$1$today$2/m
159 or die "Unable to update date in manpage() header in $fn\n";
160 s/^(This man ?page is current for version) \S+ (of rsync)/$1 $version $2/m
161 or die "Unable to update current version info in $fn\n";
162 } elsif ($fn eq 'rsync.h') {
163 s/(#define\s+SUBPROTOCOL_VERSION)\s+\d+/$1 0/
164 or die "Unable to find SUBPROTOCOL_VERSION define in $fn\n";
165 next if $pre;
166 } elsif ($fn eq 'NEWS') {
167 s/^(NEWS for rsync \Q$finalversion\E) \(UNRELEASED\)\s*\n/$1 ($today)\n/mi
168 or die "The first line of $fn is not in the right format. It must be:\n"
169 . "NEWS for rsync $finalversion (UNRELEASED)\n";
170 next if $pre;
171 } elsif ($fn eq 'OLDNEWS') {
172 s/^\t\S\S\s\S\S\S\s\d\d\d\d(\t\Q$finalversion\E)/\t$ztoday$1/m
173 or die "Unable to find \"?? ??? $year\t$finalversion\" line in $fn\n";
174 next if $pre;
175 } elsif ($fn eq 'options.c') {
176 if (s/(Copyright \(C\) 2002-)(\d+)( Wayne Davison)/$1$year$3/
177 && $2 ne $year) {
178 die "Copyright comments need to be updated to $year in all files!\n";
179 }
180 # Adjust the year in the --version output.
181 s/(rprintf\(f, "Copyright \(C\) 1996-)(\d+)/$1$year/
182 or die "Unable to find Copyright string in --version output of $fn\n";
183 next if $2 eq $year;
184 } else {
185 die "Unrecognized file in \@tweak_files: $fn\n";
186 }
187 open(OUT, '>', $fn) or die $!;
188 print OUT $_;
189 close OUT;
190}
191
192print $break;
193system "git diff --color | less -p '^diff .*'";
194
195my $srctar_name = "rsync-$version.tar.gz";
196my $pattar_name = "rsync-patches-$version.tar.gz";
197my $diff_name = "rsync-$lastversion-$version.diffs.gz";
198my $srctar_file = "$dest/$srcdir/$srctar_name";
199my $pattar_file = "$dest/$srcdir/$pattar_name";
200my $diff_file = "$dest/$srcdiffdir/$diff_name";
201my $news_file = "$dest/$srcdir/rsync-$version-NEWS";
202my $lasttar_file = "$dest/$lastsrcdir/rsync-$lastversion.tar.gz";
203
204print $break, <<EOT;
205
206About to:
207 - commit all changes
208 - tag this release as v$version
209 - update hard-linked top-level files for new version$skipping
210 - create release tar, "$srctar_name"
211 - create patches tar, "$pattar_name"
212 - create release diffs, "$diff_name"
213 - update patch branches and generate patch/* files
214 - update README, *NEWS, TODO, and ChangeLog
215 - update rsync*.html man pages
216 - gpg-sign the release files
217
218EOT
219print "<Press Enter to continue> ";
220$_ = <STDIN>;
221
222system "git commit -a -m 'Preparing for release of $version'" and exit 1;
223print "\nSign the tag:";
224system "git tag -s -m 'Version $version.' v$version" and exit 1;
225
226# Extract the generated files from the old tar.
227@_ = @extra_files;
228map { s#^#rsync-$lastversion/# } @_;
229system "tar xzf $lasttar_file @_";
230rename("rsync-$lastversion", 'a');
231
232print "Creating $diff_file ...\n";
233system "./config.status Makefile; make gen; rsync -a @extra_files b/";
234my $sed_script = 's:^((---|\+\+\+) [ab]/[^\t]+)\t.*:\1:';
235system "(git diff v$lastversion v$version; diff -upN a b | sed -r '$sed_script') | gzip -9 >$diff_file";
236system "rm -rf a";
237rename('b', "rsync-$version");
238
239print "Creating $srctar_file ...\n";
240system "git archive --format=tar --prefix=rsync-$version/ v$version | tar xf -";
241system "support/git-set-file-times --prefix=rsync-$version/";
242system "fakeroot tar czf $srctar_file rsync-$version; rm -rf rsync-$version";
243
244mkdir("rsync-$version", 0755);
245mkdir("rsync-$version/patches", 0755);
246system "support/patch-update --skip-check --gen=rsync-$version/patches";
247system "fakeroot tar chzf $pattar_file rsync-$version/patches; rm -rf rsync-$version";
248
249print "Updating the other files in $dest ...\n";
250system "rsync -a README NEWS OLDNEWS TODO $dest";
251unlink($news_file);
252link("$dest/NEWS", $news_file);
253system "git log --name-status | gzip -9 >$dest/ChangeLog.gz";
254
255system "yodl2html -o $dest/rsync.html rsync.yo";
256system "yodl2html -o $dest/rsyncd.conf.html rsyncd.conf.yo";
257
258my $cnt = 0;
259print "\n";
260foreach my $fn ($srctar_file, $pattar_file, $diff_file) {
261 print ++$cnt, ". Sign file \"$fn\":";
262 system "gpg -ba $fn";
263}
264
265if (!$pre) {
266 system "rm $dest/rsync-*{.tar.gz,.asc,-NEWS} $dest/src-preview/rsync-*diffs.gz";
267
268 foreach my $fn ($srctar_file, "$srctar_file.asc",
269 $pattar_file, "$pattar_file.asc",
270 $diff_file, "$diff_file.asc", $news_file) {
271 (my $top_fn = $fn) =~ s#/src(-\w+)?/#/#;
272 link($fn, $top_fn);
273 }
274}
275
276print $break, <<'EOT';
277
278Local changes are done. When you're satisfied, push the git repository
279and rsync the release files. Remember to announce the release on *BOTH*
280rsync-announce@lists.samba.org and rsync@lists.samba.org (and the web)!
281EOT