Module: website
Branch: master
Commit: 12b6b506b96f5bd0fb9c89549818238186372993
URL: https://source.winehq.org/git/website.git/?a=commit;h=12b6b506b96f5bd0fb9c8…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Sat Jan 11 01:28:18 2020 +0100
Wine release 5.0-rc5
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
news/en/2020011101.xml | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/news/en/2020011101.xml b/news/en/2020011101.xml
new file mode 100644
index 00000000..7ed7a36b
--- /dev/null
+++ b/news/en/2020011101.xml
@@ -0,0 +1,12 @@
+<news>
+<date>January 11, 2020</date>
+<title>Wine 5.0-rc5 Released</title>
+<body>
+<p> The Wine development release 5.0-rc5 is now available.</p>
+<p> <a href="{$root}/announce/5.0-rc5">What's new</a> in this release:
+<ul>
+ <li>Bug fixes only, we are in code freeze.</li>
+</ul>
+<p>The source is <a href="//dl.winehq.org/wine/source/5.0/wine-5.0-rc5.tar.xz">available now</a>.
+Binary packages are in the process of being built, and will appear soon at their respective <a href="{$root}/download">download locations</a>.
+</p></body></news>
Module: tools
Branch: master
Commit: d3cc3d42ae1c91b063867b4a512bf1075d71b1ee
URL: https://source.winehq.org/git/tools.git/?a=commit;h=d3cc3d42ae1c91b063867b4…
Author: Francois Gouget <fgouget(a)codeweavers.com>
Date: Fri Jan 10 13:13:57 2020 +0100
testbot/Janitor: Deleting a pending series is not an error.
Maybe the author abandonned it or some email server dropped some part.
So just trace the deletion and the pending parts so we know which were
missing.
Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
testbot/bin/Janitor.pl | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/testbot/bin/Janitor.pl b/testbot/bin/Janitor.pl
index 9ee5517..4eda071 100755
--- a/testbot/bin/Janitor.pl
+++ b/testbot/bin/Janitor.pl
@@ -148,9 +148,10 @@ my $DeleteBefore = time() - 1 * 86400;
my $Sets = CreatePendingPatchSets();
foreach my $Set (@{$Sets->GetItems()})
{
- my $MostRecentPatch;
+ my ($MostRecentPatch, @Parts);
foreach my $Part (@{$Set->Parts->GetItems()})
{
+ push @Parts, $Part->No;
my $Patch = $Part->Patch;
if (! defined($MostRecentPatch) ||
$MostRecentPatch->Received < $Patch->Received)
@@ -161,7 +162,7 @@ foreach my $Set (@{$Sets->GetItems()})
if (! defined($MostRecentPatch) ||
$MostRecentPatch->Received < $DeleteBefore)
{
- Error "Deleting pending series for ", $Set->EMail, "\n";
+ Trace "Deleting pending series for ", $Set->EMail, " (got ", join(" ", sort @Parts), " / ", $Set->TotalParts, ")\n";
next if ($DryRun);
$Sets->DeleteItem($Set);