Lines Matching refs:bug
54 Mesa ${this_version} is a bug fix release which fixes bugs found since the ${previous_version} release.
84 Bug fixes
197 bug = line.lstrip('Closes:').strip()
198 if bug.startswith('https://gitlab.freedesktop.org/mesa/mesa'):
199 # This means we have a bug in the form "Closes: https://..."
200 issues.append(os.path.basename(urllib.parse.urlparse(bug).path))
201 elif ',' in bug:
202 issues.extend([b.strip().lstrip('#') for b in bug.split(',')])
203 elif bug.startswith('#'):
204 issues.append(bug.lstrip('#'))