1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
#!/usr/bin/perl -w
#
# Update the ANNOUNCE file for a new release.
#
# Usage: make_announce [new_version]
#
# Copyright 2016 Alexandre Julliard
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
#
use strict;
use locale;
use POSIX;
use Text::CSV::Encoded;
use open ':encoding(utf8)';
sub unescape($)
{
my $str = shift;
$str =~ s/"/\"/g;
$str =~ s/'/\'/g;
$str =~ s/&/&/g;
$str =~ s/</</g;
$str =~ s/>/>/g;
$str =~ s/@/\@/g;
return $str;
}
# update a file if changed
sub update_file($)
{
my $file = shift;
if (!(-f $file) || system "cmp $file $file.new >/dev/null")
{
rename "$file.new", "$file";
print "$file updated\n";
}
else
{
unlink "$file.new";
}
}
# determine the current version number
sub get_current_version()
{
my $version;
open VERSION, "<VERSION" or die "cannot open VERSION";
if (<VERSION> =~ /Wine version (\S+)/) { $version = $1; }
close VERSION;
die "failed to parse VERSION" unless $version;
return $version;
}
# retrieve a list of bugs with the specified filter
sub get_bugs($)
{
my $filter = shift;
my $csv = Text::CSV::Encoded->new({ encoding_in => "utf-8", encoding_out => "utf-8" });
my %bugs;
open QUERY, "-|" or exec "wget", "-qO-", "https://bugs.winehq.org/buglist.cgi?columnlist=short_desc&query_format=advanced&ctype=csv&$filter"
or die "cannot query bug list";
<QUERY>; # skip header line
while (<QUERY>)
{
next unless $csv->parse($_);
my ($id, $descr) = $csv->fields();
$bugs{$id} = $descr;
}
close QUERY;
return %bugs;
}
# retrieve the current list of authors
sub get_authors()
{
my %authors;
open AUTHORS, "<AUTHORS" or die "cannot open AUTHORS";
<AUTHORS>; # skip header line
while (<AUTHORS>)
{
chomp;
next if /^$/;
$authors{$_} = 1;
}
close AUTHORS;
return %authors;
}
# determine the version number
my $old = get_current_version();
my $new = $ARGV[0];
unless ($new)
{
if ($old =~ /^([0-9]+)\.([0-9]+)$/) { $new = "$1." . ($2 + 1); }
elsif ($old =~ /^([0-9]+)\.([0-9]+)\.([0-9]+)$/) { $new = "$1.$2." . ($3 + 1); }
elsif ($old =~ /^([0-9]+)\.([0-9]+)-rc([0-9]+)$/) { $new = "$1.$2-rc" . ($3 + 1); }
else { die "unknown version format $old"; }
}
print "Updating files for release $new\n";
my $reldir = $new;
if ($reldir =~ /^([0-9]+\.0)/) { $reldir = $1; }
elsif ($reldir =~ /^([0-9]+)\./) { $reldir = "$1.x"; }
else { die "unknown version format $reldir"; }
my $is_stable = ($new =~ /^([0-9]+)\.0\.([0-9]+)$/); # stable releases have a 0 minor number
my $filter = "product=Wine&resolution=FIXED&" . ($is_stable ? "target_milestone=$reldir.x" : "bug_status=RESOLVED");
my %bugs = get_bugs( $filter );
my %authors = get_authors();
# update the ANNOUNCE file
open ANNOUNCE, "<ANNOUNCE" or die "cannot open ANNOUNCE";
open NEW, ">ANNOUNCE.new" or die "cannot create ANNOUNCE.new";
# replace version number in first line
$_ = <ANNOUNCE>;
s/(([0-9]+)\.)+[0-9]+(-rc[0-9]+)?/$new/;
print NEW $_;
while (<ANNOUNCE>)
{
last if /^------------------/;
s!(https?://.*/wine/source/).*\.tar!$1$reldir/wine-$new.tar!;
print NEW $_;
}
print NEW "----------------------------------------------------------------\n\n";
printf NEW "Bugs fixed in %s (total %u):\n\n", $new, scalar( keys %bugs );
foreach my $id (sort {$a <=> $b} keys %bugs)
{
printf NEW " - #%-6d %s\n", $id, unescape( $bugs{$id} );
}
print NEW "\n----------------------------------------------------------------\n\n";
print NEW "Changes since $old:\n";
open LOG, "-|" or exec "git", "shortlog", "wine-$old..HEAD" or die "cannot run git shortlog";
while (<LOG>)
{
next if /^$/;
if (/^(\S.*)\s\(\d+\):$/) { $authors{$1} = 1; print NEW "\n"; }
print NEW $_;
}
close LOG;
close ANNOUNCE;
close NEW;
update_file( "ANNOUNCE" );
# update the AUTHORS file
setlocale( LC_COLLATE, "en_US.UTF-8" );
open AUTHORS, ">AUTHORS.new" or die "cannot create AUTHORS.new";
print AUTHORS "Wine is available thanks to the work of:\n\n", join( "\n", sort keys %authors ), "\n";
close AUTHORS;
update_file( "AUTHORS" );
|