Version 0.3.3.
[libidn.git] / announce-gen
blob080cf1c266f344b902fa0f1aae48ba0c8e62b570
1 #!/usr/bin/perl -w
2 # Generate an announcement message.
3 use strict;
5 use Getopt::Long;
6 use Digest::MD5;
7 use Digest::SHA1;
9 (my $VERSION = '$Revision$ ') =~ tr/[0-9].//cd;
10 (my $ME = $0) =~ s|.*/||;
12 my %valid_release_types = map {$_ => 1} qw (alpha beta major);
14 END
16 # Nobody ever checks the status of print()s. That's okay, because
17 # if any do fail, we're guaranteed to get an indicator when we close()
18 # the filehandle.
20 # Close stdout now, and if there were no errors, return happy status.
21 # If stdout has already been closed by the script, though, do nothing.
22 defined fileno STDOUT
23 or return;
24 close STDOUT
25 and return;
27 # Errors closing stdout. Indicate that, and hope stderr is OK.
28 warn "$ME: closing standard output: $!\n";
30 # Don't be so arrogant as to assume that we're the first END handler
31 # defined, and thus the last one invoked. There may be others yet
32 # to come. $? will be passed on to them, and to the final _exit().
34 # If it isn't already an error, make it one (and if it _is_ an error,
35 # preserve the value: it might be important).
36 $? ||= 1;
39 sub usage ($)
41 my ($exit_code) = @_;
42 my $STREAM = ($exit_code == 0 ? *STDOUT : *STDERR);
43 if ($exit_code != 0)
45 print $STREAM "Try `$ME --help' for more information.\n";
47 else
49 my @types = sort keys %valid_release_types;
50 print $STREAM <<EOF;
51 Usage: $ME [OPTIONS]
53 OPTIONS:
55 Generate an announcement message.
57 FIXME: describe the following
59 --release-type=TYPE TYPE must be one of @types
60 --package-name=PACKAGE_NAME
61 --previous-version=VER
62 --current-version=VER
63 --release-archive-directory=DIR
64 --url-directory=URL_DIR
65 --news=NEWS_FILE optional
67 --help display this help and exit
68 --version output version information and exit
70 EOF
72 exit $exit_code;
75 sub print_changelog_deltas ($$)
77 my ($package_name, $prev_version) = @_;
79 # Print new ChangeLog entries.
81 # First find all CVS-controlled ChangeLog files.
82 use File::Find;
83 my @changelog;
84 find ({wanted => sub {$_ eq 'ChangeLog' && -d 'CVS'
85 and push @changelog, $File::Find::name}},
86 '.');
88 # If there are no ChangeLog files, we're done.
89 @changelog
90 or return;
91 my %changelog = map {$_ => 1} @changelog;
93 # Reorder the list of files so that if there are ChangeLog
94 # files in the specified directories, they're listed first,
95 # in this order:
96 my @dir = qw ( . src lib m4 config doc );
98 # A typical @changelog array might look like this:
99 # ./ChangeLog
100 # ./po/ChangeLog
101 # ./m4/ChangeLog
102 # ./lib/ChangeLog
103 # ./doc/ChangeLog
104 # ./config/ChangeLog
105 my @reordered;
106 foreach my $d (@dir)
108 my $dot_slash = $d eq '.' ? $d : "./$d";
109 my $target = "$dot_slash/ChangeLog";
110 delete $changelog{$target}
111 and push @reordered, $target;
114 # Append any remaining ChangeLog files.
115 push @reordered, sort keys %changelog;
117 # Remove leading `./'.
118 @reordered = map { s!^\./!!; $_ } @reordered;
120 print "\nChangeLog entries:\n\n";
121 # print join ("\n", @reordered), "\n";
123 $prev_version =~ s/\./-/g;
124 my $prev_cvs_tag = "$package_name-$prev_version";
126 my $cmd = "cvs -n diff -u -r$prev_cvs_tag -rHEAD @reordered";
127 open DIFF, '-|', $cmd
128 or die "$ME: cannot run `$cmd': $!\n";
129 # Print two types of lines, making minor changes:
130 # Lines starting with `+++ ', e.g.,
131 # +++ ChangeLog 22 Feb 2003 16:52:51 -0000 1.247
132 # and those starting with `+'.
133 # Don't print the others.
134 my $prev_printed_line_empty = 1;
135 while (defined (my $line = <DIFF>))
137 if ($line =~ /^\+\+\+ /)
139 my $separator = "*"x70 ."\n";
140 $line =~ s///;
141 $line =~ s/\s.*//;
142 $prev_printed_line_empty
143 or print "\n";
144 print $separator, $line, $separator;
146 elsif ($line =~ /^\+/)
148 $line =~ s///;
149 print $line;
150 $prev_printed_line_empty = ($line =~ /^$/);
153 close DIFF;
155 # The exit code should be 1.
156 # Allow in case there are no modified ChangeLog entries.
157 $? == 256 || $? == 128
158 or warn "$ME: warning: `cmd' had unexpected exit code or signal ($?)\n";
162 my $release_type;
163 my $package_name;
164 my $prev_version;
165 my $curr_version;
166 my $release_archive_dir;
167 my @url_dir_list;
168 my $news_file;
170 GetOptions
172 'release-type=s' => \$release_type,
173 'package-name=s' => \$package_name,
174 'previous-version=s' => \$prev_version,
175 'current-version=s' => \$curr_version,
176 'release-archive-directory=s' => \$release_archive_dir,
177 'url-directory=s@' => \@url_dir_list,
178 'news=s' => \$news_file,
180 help => sub { usage 0 },
181 version => sub { print "$ME version $VERSION\n"; exit },
182 ) or usage 1;
184 my $fail = 0;
185 # Ensure that sure each required option is specified.
186 $release_type
187 or (warn "$ME: release type not specified\n"), $fail = 1;
188 $package_name
189 or (warn "$ME: package name not specified\n"), $fail = 1;
190 $prev_version
191 or (warn "$ME: previous version string not specified\n"), $fail = 1;
192 $curr_version
193 or (warn "$ME: current version string not specified\n"), $fail = 1;
194 $release_archive_dir
195 or (warn "$ME: release directory name not specified\n"), $fail = 1;
196 @url_dir_list
197 or (warn "$ME: URL directory name(s) not specified\n"), $fail = 1;
199 exists $valid_release_types{$release_type}
200 or (warn "$ME: `$release_type': invalid release type\n"), $fail = 1;
202 @ARGV
203 and (warn "$ME: too many arguments\n"), $fail = 1;
204 $fail
205 and usage 1;
207 my $my_distdir = "$package_name-$curr_version";
208 my $tgz = "$my_distdir.tar.gz";
209 my $tbz = "$my_distdir.tar.bz2";
210 my $xd = "$package_name-$prev_version-$curr_version.xdelta";
212 my %size;
214 foreach my $f (($tgz, $xd))
216 my $cmd = "LANG=C du --human $f";
217 my $t = `$cmd`;
218 # FIXME-someday: give a better diagnostic, a la $PROCESS_STATUS
220 and (warn "$ME: command failed: `$cmd'\n"), $fail = 1;
221 chomp $t;
222 $t =~ s/^([\d.]+[MkK]).*/${1}B/;
223 $size{$f} = $t;
226 $fail
227 and exit 1;
229 print <<EOF;
231 Subject: $my_distdir released
233 <#secure method=pgpmime mode=sign>
235 FIXME: put comments here
239 print "Here are the compressed sources:\n";
240 foreach my $url (@url_dir_list)
242 print " $url/$tgz ($size{$tgz})\n";
245 print "\nAnd here are xdelta-style diffs:\n";
246 foreach my $url (@url_dir_list)
248 print " $url/$xd ($size{$xd})\n";
251 print "\nHere are GPG detached signatures:\n";
252 foreach my $url (@url_dir_list)
254 print " $url/$tgz.asc\n";
257 # FIXME: clean up upon interrupt or die
258 my $tmpdir = $ENV{TMPDIR} || '/tmp';
259 my $tmp = "$tmpdir/$ME-$$";
260 unlink $tmp; # ignore failure
262 print "\nHere are the MD5 and SHA1 signatures:\n";
263 print "\n";
264 print "<#part type=text/plain filename=\"$tmp\" disposition=inline>\n"
265 . "<#/part>\n";
267 open OUT, '>', $tmp
268 or die "$ME: $tmp: cannot open for writing: $!\n";
270 foreach my $meth (qw (md5 sha1))
272 foreach my $f (($tgz, $xd))
274 open IN, '<', $f
275 or die "$ME: $f: cannot open for reading: $!\n";
276 binmode IN;
277 my $dig =
278 ($meth eq 'md5'
279 ? Digest::MD5->new->addfile(*IN)->hexdigest
280 : Digest::SHA1->new->addfile(*IN)->hexdigest);
281 close IN;
282 print OUT "$dig $f\n";
286 close OUT
287 or die "$ME: $tmp: while writing: $!\n";
288 chmod 0400, $tmp; # ignore failure
290 if ($news_file)
292 print "\nNEWS\n\n";
294 # Print all lines from $news_file, starting with the first one
295 # that mentions $curr_version up to but not including
296 # the first occurrence of $prev_version.
297 my $in_items;
298 open NEWS, '<', $news_file
299 or die "$ME: $news_file: cannot open for reading: $!\n";
300 while (defined (my $line = <NEWS>))
302 if ( ! $in_items)
304 # Match lines like this one:
305 # * Major changes in release 5.0.1:
306 # but not any other line that starts with a space, *, or -.
307 $line =~ /^(\* Version.*|[^ *-].*)\Q$curr_version\E/o
308 or next;
309 $in_items = 1;
310 print $line;
312 else
314 # Be careful that this regexp cannot match version numbers
315 # in NEWS items -- they might well say `introduced in 4.5.5',
316 # and we don't want that to match.
317 $line =~ /^(\* Version.*|[^ *-].*)\Q$prev_version\E/o
318 and last;
319 print $line;
322 close NEWS;
324 $in_items
325 or die "$ME: $news_file: no matching lines for `$curr_version'\n";
328 $release_type eq 'major'
329 or print_changelog_deltas ($package_name, $prev_version);
331 exit 0;