You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-04-13 14:42:51 -07:00
patchupdate.py: Show bugs that are incorrectly marked as STAGED.
This commit is contained in:
14
debian/tools/patchupdate.py
vendored
14
debian/tools/patchupdate.py
vendored
@@ -448,6 +448,20 @@ def check_bug_status(all_patches):
|
||||
once = False
|
||||
print " #%d - \"%s\" - %s %s" % (bug['id'], bug['summary'], bug['status'],
|
||||
bug['resolution'] if bug['resolution'] else "")
|
||||
|
||||
staged_bugs = bugtracker.Bug.search(dict(status="STAGED"))
|
||||
|
||||
once = True
|
||||
for bug in staged_bugs['bugs']:
|
||||
if bug['id'] not in all_bugids:
|
||||
if once:
|
||||
print ""
|
||||
print "WARNING: The following bugs are incorrectly markes as STAGED:"
|
||||
print ""
|
||||
once = False
|
||||
print " #%d - \"%s\" - %s %s" % (bug['id'], bug['summary'], bug['status'],
|
||||
bug['resolution'] if bug['resolution'] else "")
|
||||
|
||||
print ""
|
||||
|
||||
def generate_ifdefined(all_patches, skip_checks=False):
|
||||
|
Reference in New Issue
Block a user