Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
405c143c
Commit
405c143c
authored
Mar 26, 2017
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Apr 19, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tools: Get the ANNOUNCE bug list from the stable-notes git notes.
parent
4790d4b2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
+3
-8
make_announce
tools/make_announce
+3
-8
No files found.
tools/make_announce
View file @
405c143c
...
...
@@ -24,7 +24,6 @@
use
strict
;
use
locale
;
use
POSIX
;
use
Text::CSV::
Encoded
;
use
open
':encoding(utf8)'
;
sub
unescape
($)
...
...
@@ -69,18 +68,14 @@ sub get_current_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
"
open
QUERY
,
"-|"
or
exec
"
git"
,
"log"
,
"--notes=stable-notes"
,
"--format=%N"
,
"wine-"
.
get_current_version
()
.
"..
"
or
die
"cannot query bug list"
;
<
QUERY
>
;
# skip header line
while
(
<
QUERY
>
)
{
next
unless
$csv
->
parse
(
$_
);
my
(
$id
,
$descr
)
=
$csv
->
fields
();
$bugs
{
$id
}
=
$descr
;
next
unless
/^Fixes: \[(\d+)\] (.*)/
;
$bugs
{
$1
}
=
$2
;
}
close
QUERY
;
return
%
bugs
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment