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
|
#!/usr/bin/python
# Simple script that will check which bugs mentioned in NEWS
# are not yet marked Fix Released in Launchpad
import getopt, re, sys
try:
from launchpadbugs import connector
except ImportError:
print "Please install launchpadbugs from lp:python-launchpad-bugs"
sys.exit(1)
options, args = getopt.gnu_getopt(sys.argv, "l", ["launchpad"])
options = dict(options)
if len(args) == 1:
print "Usage: check-newsbugs [--launchpad] NEWS"
print "Options:"
print "--launchpad Print out Launchpad mail commands for closing bugs "
print " that are already fixed."
sys.exit(1)
def report_notmarked(bug, task, section):
print
print "Bug %d was mentioned in NEWS but is not marked fix released:" % (bug.bugnumber, )
print "Launchpad title: %s" % bug.title
print "NEWS summary: "
print section
if "--launchpad" in options or "-l" in options:
print " bug %d" % bug.bugnumber
print " affects bzr"
print " status fixreleased"
def read_news_bugnos(path):
"""Read the bug numbers closed by a particular NEWS file
:param path: Path to the NEWS file
:return: list of bug numbers that were closed.
"""
# Pattern to find bug numbers
bug_pattern = re.compile("\#([0-9]+)")
ret = set()
f = open(path, 'r')
try:
section = ""
for l in f.readlines():
if l.strip() == "":
try:
parenthesed = section.rsplit("(", 1)[1]
except IndexError:
parenthesed = ""
# Empty line, next section begins
for bugno in [int(m) for m in bug_pattern.findall(parenthesed)]:
ret.add((bugno, section))
section = ""
else:
section += l
return ret
finally:
f.close()
open_bug = connector.ConnectBug("TEXT")
bugnos = read_news_bugnos(args[1])
for bugno, section in bugnos:
bug = open_bug(url="https://bugs.launchpad.net/bzr/+bug/%d" % bugno)
found_bzr = False
for task in bug.infotable:
if task.affects == "bzr":
found_bzr = True
if task.status != "Fix Released":
report_notmarked(bug, task, section)
if not found_bzr:
print "Bug %d was mentioned in NEWS but is not marked as affecting bzr" % bugno
|