2 # Generate an announcement message.
9 (my $VERSION = '$Revision$ ') =~ tr/[0-9].//cd;
10 (my $ME = $0) =~ s
|.*/||;
12 my %valid_release_types = map {$_ => 1} qw
(alpha beta major
);
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()
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.
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).
42 my $STREAM = ($exit_code == 0 ?
*STDOUT
: *STDERR
);
45 print $STREAM "Try `$ME --help' for more information.\n";
49 my @types = sort keys %valid_release_types;
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
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
75 sub print_changelog_deltas
($$)
77 my ($package_name, $prev_version) = @_;
79 # Print new ChangeLog entries.
81 # First find all CVS-controlled ChangeLog files.
84 find
({wanted
=> sub {$_ eq 'ChangeLog' && -d
'CVS'
85 and push @changelog, $File::Find
::name
}},
88 # If there are no ChangeLog files, we're done.
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,
96 my @dir = qw
( . src lib m4 config doc
);
98 # A typical @changelog array might look like this:
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";
142 $prev_printed_line_empty
144 print $separator, $line, $separator;
146 elsif ($line =~ /^\+/)
150 $prev_printed_line_empty = ($line =~ /^$/);
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";
166 my $release_archive_dir;
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 },
185 # Ensure that sure each required option is specified.
187 or (warn "$ME: release type not specified\n"), $fail = 1;
189 or (warn "$ME: package name not specified\n"), $fail = 1;
191 or (warn "$ME: previous version string not specified\n"), $fail = 1;
193 or (warn "$ME: current version string not specified\n"), $fail = 1;
195 or (warn "$ME: release directory name not specified\n"), $fail = 1;
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;
203 and (warn "$ME: too many arguments\n"), $fail = 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";
214 foreach my $f (($tgz, $xd))
216 my $cmd = "LANG=C du --human $f";
218 # FIXME-someday: give a better diagnostic, a la $PROCESS_STATUS
220 and (warn "$ME: command failed: `$cmd'\n"), $fail = 1;
222 $t =~ s/^([\d.]+[MkK]).*/${1}B/;
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";
264 print "<#part type=text/plain filename=\"$tmp\" disposition=inline>\n"
268 or die "$ME: $tmp: cannot open for writing: $!\n";
270 foreach my $meth (qw
(md5 sha1
))
272 foreach my $f (($tgz, $xd))
275 or die "$ME: $f: cannot open for reading: $!\n";
279 ? Digest
::MD5
->new->addfile(*IN
)->hexdigest
280 : Digest
::SHA1
->new->addfile(*IN
)->hexdigest);
282 print OUT
"$dig $f\n";
287 or die "$ME: $tmp: while writing: $!\n";
288 chmod 0400, $tmp; # ignore failure
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.
298 open NEWS
, '<', $news_file
299 or die "$ME: $news_file: cannot open for reading: $!\n";
300 while (defined (my $line = <NEWS
>))
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
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
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);