ee81a009cdc0e3c5fe8d960eea74c88448e9526f
[rsync/rsync.git] / packaging / release-rsync
1 #!/usr/bin/perl
2 use strict;
3
4 # This script expects the directory ~/samba-rsync-ftp to exist and to
5 # be a copy of the /home/ftp/pub/rsync dir on samba.org.  If it is run
6 # in test mode, it instead expects a dir named ~/tmp/samba-rsync-ftp
7 # (e.g. copy ~/samba-rsync-ftp into ~/tmp and you can do a trial-run of
8 # a release without affecting the files in the ~/samba-rsync-ftp dir).
9 #
10 # Run this as "release-rsync live" to affect ~/samba-rsync-ftp instead
11 # of ~/tmp/samba-rsync-ftp.
12
13 use Date::Format;
14
15 my $dest = $ENV{HOME} . '/samba-rsync-ftp';
16 my $releasedir = $ENV{HOME} . '/release';
17 my $cvsroot = $ENV{CVSROOT} = 'samba.org:/data/cvs';
18
19 my $cl_today = time2str('* %a %b %d %Y', time);
20 my $ztoday = time2str('%d %b %Y', time);
21 (my $today = $ztoday) =~ s/^0//;
22
23 my $break = <<EOT;
24 ==========================================================================
25 EOT
26 my $note = <<EOT;
27 == Note: type "-a u,n" if you want to auto-accept the U,N suggestions.  ==
28 EOT
29
30 my $live = shift;
31 my $skipping = '';
32
33 print $break;
34 if ($live) {
35     print <<EOT;
36 == This will release a new version of rsync onto an unsuspecting world. ==
37 EOT
38 } else {
39     print <<EOT;
40 ==     **** TESTMODE ****    (Add "live" arg to avoid this.)            ==
41 EOT
42     $dest =~ s#([^/]+$)#tmp/$1#;
43     $skipping = ' ** SKIPPING **';
44 }
45 die "$dest does not exist\n" unless -d $dest;
46
47 print $break, "\nChecking out the latest rsync into $releasedir ...\n";
48
49 mkdir($releasedir, 0755) or die $! unless -d $releasedir;
50 chdir($releasedir) or die $!;
51
52 system 'rm -rf rsync';
53
54 my(%dirs, @files);
55 open(CVS, '-|', 'cvs checkout -P rsync') or die $!;
56 while (<CVS>) {
57     print $_;
58     next if /\.(cvs)?ignore$/;
59     if (m#^[UP] rsync/(.*)#) {
60         my $fn = $1;
61         my($dir) = $fn =~ m#^(.+)/#;
62         push(@files, $dir) if defined($dir) && !$dirs{$1}++;
63         push(@files, $fn);
64     }
65 }
66
67 chdir('rsync') or die $!;
68
69 my($version, $lastversion);
70 open(IN, '<', 'configure.in') or die $!;
71 while (<IN>) {
72     if (/^RSYNC_VERSION=(.*)/) {
73         $version = $lastversion = $1;
74         last;
75     }
76 }
77 close IN;
78
79 if ($lastversion =~ /cvs$/) {
80     open(IN, '<', 'OLDNEWS') or die $!;
81     $_ = <IN>;
82     close IN;
83     ($lastversion) = /(\d+\.\d+\.\d+)/;
84 }
85
86 $version =~ s/cvs/pre1/ || $version =~ s/pre(\d+)/ 'pre' . ($1 + 1) /e;
87
88 print $break, "\nPlease enter the version number of this release: [$version] ";
89 chomp($_ = <STDIN>);
90 if ($_ eq '.') {
91     $version =~ s/pre\d+//;
92 } elsif ($_ ne '') {
93     $version = $_;
94 }
95 $version =~ s/[-.]*pre[-.]*/pre/;
96
97 $lastversion =~ s/(\d+)pre\d+$/ $1 - 1 /e unless $version =~ /pre/;
98
99 my $cvstag = "release-$version";
100 $cvstag =~ s/[.]/-/g;
101 $cvstag =~ s/pre/-pre/;
102
103 print "Enter the previous version to produce a patch against: [$lastversion] ";
104 chomp($_ = <STDIN>);
105 $lastversion = $_ if $_ ne '';
106 $lastversion =~ s/[-.]*pre[-.]*/pre/;
107
108 my $release = 1;
109 print "Please enter the RPM release number of this release: [$release] ";
110 chomp($_ = <STDIN>);
111 $release = $_ if $_ ne '';
112
113 my $diffdir;
114 my $skipping2;
115 if ($lastversion =~ /pre/) {
116     if ($version !~ /pre/) {
117         die "You should not diff a release version against a pre-release version.\n";
118     }
119     $diffdir = "$dest/old-previews";
120     $skipping2 = ' ** SKIPPING **';
121 } elsif ($version =~ /pre/) {
122     $diffdir = $dest;
123     $skipping2 = ' ** SKIPPING **';
124 } else {
125     $diffdir = "$dest/old-versions";
126     $skipping2 = '';
127 }
128
129 print "\n", $break, <<EOT;
130 \$version is "$version"
131 \$lastversion is "$lastversion"
132 \$cvstag is "$cvstag"
133 \$dest is "$dest"
134 \$releasedir is "$releasedir"
135 \$diffdir is "$diffdir"
136 \$release is "$release"
137
138 About to:
139     - make sure that SUBPROTOCOL_VERSION is 0$skipping2
140     - tweak the version in configure.in, configure, and the spec files
141     - make sure that configure, config.h.in, and proto.h are updated
142     - tweak NEWS and OLDNEWS to update the release date$skipping2
143     - tweak the date in the *.yo files and re-generate the man pages
144     - make sure that the patches dir has been updated
145     - page through the "cvs diff" output
146
147 EOT
148 print "<Press Enter to continue> ";
149 $_ = <STDIN>;
150 my $f_opt = /f/ ? ' -f' : '';
151
152 print $break;
153 system "./prepare-source && touch proto.h";
154
155 my @tweak_files = ( glob('packaging/*.spec'), glob('packaging/*/*.spec'),
156                     glob('*.yo'), qw( configure.in configure ) );
157 if ($version !~ /pre/) {
158     push(@tweak_files, qw( rsync.h NEWS OLDNEWS ));
159 }
160 foreach my $fn (@tweak_files) {
161     open(IN, '<', $fn) or die $!;
162     undef $/; $_ = <IN>; $/ = "\n";
163     close IN;
164     if ($fn =~ /configure/) {
165         s/^RSYNC_VERSION=.*/RSYNC_VERSION=$version/m;
166     } elsif ($fn =~ /\.spec/) {
167         s/^(Version:) .*/$1 $version/m;
168         s/^(Release:) .*/$1 $release/m;
169         s/^(Released) .*/$1 $release./m;
170         s/^\* \w\w\w \w\w\w \d\d \d\d\d\d (.*)/$cl_today $1/m;
171     } elsif ($fn =~ /\.yo/) {
172         s/^(manpage\([^)]+\)\(\d+\)\()[^)]+(\).*)/$1$today$2/m;
173         s/^(This man ?page is current for version) \S+ (of rsync)/$1 $version $2/m;
174     } elsif ($fn eq 'NEWS') {
175         s/^(NEWS for rsync \Q$version\E) \(UNRELEASED\)\s*\n/$1 ($today)\n/mi
176             or die "Couldn't update NEWS file with release date!\n";
177     } elsif ($fn eq 'rsync.h') {
178         s/(#define\s+SUBPROTOCOL_VERSION)\s+\d+/$1 0/;
179     } elsif ($fn eq 'OLDNEWS') {
180         s/^\t\S\S\s\S\S\S\s\d\d\d\d(\t\Q$version\E)/\t$ztoday$1/m
181             or die "Couldn't update OLDNEWS file with release date!\n";
182     } else {
183         die "Unrecognized file in \@tweak_files: $fn\n";
184     }
185     open(OUT, '>', $fn) or die $!;
186     print OUT $_;
187     close OUT;
188 }
189
190 system "yodl2man -o rsync.1 rsync.yo; ./tweak_manpage rsync.1";
191 system "yodl2man -o rsyncd.conf.5 rsyncd.conf.yo; ./tweak_manpage rsyncd.conf.5";
192
193 mkdir('patches/tmp') or die $!;
194 system "rsync -a --exclude=patches/ --exclude-from=.cvsignore . patches/tmp/cvsdir/";
195
196 print "\n", $break, $note, $break;
197 system "patches/verify-patches -n -an$f_opt";
198
199 print $break;
200 system "cvs -q diff | egrep -v '^(===============|RCS file: |retrieving revision |Index: )' | less -p '^diff .*'";
201
202 print $break, <<EOT;
203
204 About to:
205     - "cvs commit" all changes$skipping
206     - "cvs tag" this release as $cvstag$skipping
207     - change the diffs in the patches dir to include generated files
208
209 EOT
210 print "<Press Enter to continue> ";
211 $_ = <STDIN>;
212
213 if ($live) {
214     system "cvs commit -m 'Preparing for release of $version'";
215     system "cvs tag -F $cvstag .";
216 }
217
218 if (!/skip/i) {
219     print "\n", $break, $note, $break;
220     system "patches/verify-patches -pun -an";
221 }
222
223 my $tar_name = "rsync-$version.tar.gz";
224 my $diff_name = "rsync-$lastversion-$version.diffs.gz";
225 my $tar_file = "$dest/$tar_name";
226 my $diff_file = "$dest/$diff_name";
227
228 print $break, <<EOT;
229
230 About to do the following in the samba-rsync-ftp dir:
231     - move the old tar/diff files into the appropriate old-* dirs
232     - hard-link the moved tar/diff files on samba.org$skipping
233     - create release tar, "$tar_name"
234     - create release diffs, "$diff_name"
235     - update README, *NEWS, TODO, and cvs.log
236     - update rsync*.html man pages
237     - gpg-sign the release files$skipping
238
239 EOT
240 print "<Press Enter to continue> ";
241 $_ = <STDIN>;
242
243 chdir($releasedir) or die $!;
244
245 print $break;
246 system "rm -rf rsync-$version";
247 rename('rsync', "rsync-$version") or die $!;
248
249 # When creating a pre-release after a normal release, there's nothing to move.
250 if ($diffdir ne $dest) {
251     chdir($dest) or die $!;
252
253     print "Shuffling old files ...\n";
254
255     # We need to run this regardless of $lastversion's "pre"ness.
256     my @moved_files;
257     foreach my $fn (glob('rsync*pre*.tar.gz*'), glob('rsync*pre*-NEWS')) {
258         link($fn, "old-previews/$fn") or die $!;
259         push(@moved_files, $fn);
260     }
261
262     if ($version !~ /pre/) {
263         foreach my $fn (glob('rsync*.tar.gz*'), glob('rsync*-NEWS')) {
264             next if $fn =~ /^rsync.*pre/;
265             link($fn, "old-versions/$fn") or die $!;
266             push(@moved_files, $fn);
267         }
268
269         foreach my $fn (glob('rsync*pre*.diffs.gz*')) {
270             unlink($fn);
271         }
272
273         foreach my $fn (glob('rsync*.diffs.gz*')) {
274             link($fn, "old-patches/$fn") or die $!;
275             push(@moved_files, $fn);
276         }
277     }
278
279     # Optimize our future upload (in the absence of --detect-renamed) by
280     # using rsync to hard-link the above files on samba.org.
281     if ($live) {
282         system "rsync -avHOC --include='rsync*.gz*' --include='old-*/' --exclude='*' . samba.org:/home/ftp/pub/rsync";
283     }
284     foreach (@moved_files) {
285         unlink($_);
286     }
287
288     chdir($releasedir) or die $!;
289 }
290
291 print "Creating $tar_file ...\n";
292 system "fakeroot tar czf $tar_file rsync-$version";
293 open(TAR, '|-', "fakeroot tar --files-from=- --no-recursion --mode=g+w -czf $tar_file rsync-$version") or die $!;
294 foreach (@files) {
295     print TAR "rsync-$version/$_\n";
296 }
297 close TAR;
298
299 print "Creating $diff_file ...\n";
300 system "rm -rf rsync-$version rsync-$lastversion";
301 system "tar xzf $tar_file; tar xzf $diffdir/rsync-$lastversion.tar.gz";
302 ## TWEAK THE VERSIONS AS DESIRED HERE ##
303 #mkdir("rsync-$lastversion/support", 0755) or die $!;
304 #rename("rsync-$lastversion/rsyncstats", "rsync-$lastversion/support/rsyncstats");
305 #unlink("rsync-$lastversion/.ignore");
306 ## END ##
307 system "diff -urN --exclude=patches rsync-$lastversion rsync-$version| gzip -9 >$diff_file";
308
309 print "Updating the other files in $dest ...\n";
310 system "rsync -a rsync-$version/{README,NEWS,OLDNEWS,TODO} $dest";
311 unlink("$dest/rsync-$version-NEWS");
312 link("$dest/NEWS", "$dest/rsync-$version-NEWS");
313 system "rsync -a $cvsroot/CVSROOT/rsync.updates $dest/cvs.log";
314
315 system "yodl2html -o $dest/rsync.html rsync-$version/rsync.yo";
316 system "yodl2html -o $dest/rsyncd.conf.html rsync-$version/rsyncd.conf.yo";
317
318 system "rm -rf rsync-*";
319
320 if ($live) {
321     chdir($dest) or die $!;
322     system "gpg -ba $tar_name; gpg -ba $diff_name";
323     print $break, <<EOT;
324
325 All done.  Remember to announce the release on *BOTH*
326 rsync-announce\@lists.samba.org and rsync\@lists.samba.org!
327 EOT
328 } else {
329     print $break, "All done.\n";
330 }