mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-05-23 08:21:30 +00:00
Remove some unused fields and methods in excuse
In the unsat_deps case, it was used to update a field in the excuse, but the field was never read anywhere. Signed-off-by: Niels Thykier <niels@thykier.net>
This commit is contained in:
parent
9a7274db93
commit
9bf3224bd1
@ -1067,8 +1067,6 @@ class Britney(object):
|
|||||||
# if no package can satisfy the dependency, add this information to the excuse
|
# if no package can satisfy the dependency, add this information to the excuse
|
||||||
if len(packages) == 0:
|
if len(packages) == 0:
|
||||||
excuse.addhtml("%s/%s unsatisfiable %s: %s" % (pkg, arch, type, block_txt.strip()))
|
excuse.addhtml("%s/%s unsatisfiable %s: %s" % (pkg, arch, type, block_txt.strip()))
|
||||||
if arch not in self.options.break_arches.split():
|
|
||||||
excuse.add_unsat_dep(arch)
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# for the solving packages, update the excuse to add the dependencies
|
# for the solving packages, update the excuse to add the dependencies
|
||||||
|
15
excuse.py
15
excuse.py
@ -44,8 +44,6 @@ class Excuse(object):
|
|||||||
self.name = name
|
self.name = name
|
||||||
self.ver = ("-", "-")
|
self.ver = ("-", "-")
|
||||||
self.maint = None
|
self.maint = None
|
||||||
self.pri = None
|
|
||||||
self.date = None
|
|
||||||
self.urgency = None
|
self.urgency = None
|
||||||
self.daysold = None
|
self.daysold = None
|
||||||
self.mindays = None
|
self.mindays = None
|
||||||
@ -57,7 +55,6 @@ class Excuse(object):
|
|||||||
self.deps = {}
|
self.deps = {}
|
||||||
self.sane_deps = []
|
self.sane_deps = []
|
||||||
self.break_deps = []
|
self.break_deps = []
|
||||||
self.unsat_deps = {}
|
|
||||||
self.bugs = []
|
self.bugs = []
|
||||||
self.htmlline = []
|
self.htmlline = []
|
||||||
|
|
||||||
@ -90,14 +87,6 @@ class Excuse(object):
|
|||||||
"""Set the section of the package"""
|
"""Set the section of the package"""
|
||||||
self.section = section
|
self.section = section
|
||||||
|
|
||||||
def set_priority(self, pri):
|
|
||||||
"""Set the priority of the package"""
|
|
||||||
self.pri = pri
|
|
||||||
|
|
||||||
def set_date(self, date):
|
|
||||||
"""Set the date of upload of the package"""
|
|
||||||
self.date = date
|
|
||||||
|
|
||||||
def set_urgency(self, date):
|
def set_urgency(self, date):
|
||||||
"""Set the urgency of upload of the package"""
|
"""Set the urgency of upload of the package"""
|
||||||
self.urgency = date
|
self.urgency = date
|
||||||
@ -116,10 +105,6 @@ class Excuse(object):
|
|||||||
if (name, arch) not in self.break_deps:
|
if (name, arch) not in self.break_deps:
|
||||||
self.break_deps.append( (name, arch) )
|
self.break_deps.append( (name, arch) )
|
||||||
|
|
||||||
def add_unsat_dep(self, arch):
|
|
||||||
"""Add a flag for unsatisfied dependencies"""
|
|
||||||
self.unsat_deps[arch] = True
|
|
||||||
|
|
||||||
def invalidate_dep(self, name):
|
def invalidate_dep(self, name):
|
||||||
"""Invalidate dependency"""
|
"""Invalidate dependency"""
|
||||||
if name not in self.invalid_deps: self.invalid_deps.append(name)
|
if name not in self.invalid_deps: self.invalid_deps.append(name)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user