提交 8f1a6ffd 编写于 作者: M Mark Hymers

remove accepted references

Signed-off-by: NMark Hymers <mhy@debian.org>
上级 f3cbed68
......@@ -557,7 +557,6 @@ Dir
UrgencyLog "/srv/release.debian.org/britney/input/urgencies/";
Queue
{
Accepted "/srv/ftp.debian.org/queue/accepted/";
Byhand "/srv/ftp.debian.org/queue/byhand/";
ProposedUpdates "/srv/ftp.debian.org/queue/p-u-new/";
OldProposedUpdates "/srv/ftp.debian.org/queue/o-p-u-new/";
......
......@@ -77,11 +77,6 @@ Check for cruft in overrides.
################################################################################
def gen_blacklist(dir):
for entry in os.listdir(dir):
entry = entry.split('_')[0]
blacklist[entry] = 1
def process(osuite, affected_suites, originosuite, component, otype, session):
global Logger, Options, sections, priorities
......@@ -342,8 +337,6 @@ def main ():
else:
Logger = daklog.Logger(cnf, "check-overrides", 1)
gen_blacklist(cnf["Dir::Queue::Accepted"])
for osuite in cnf.SubTree("Check-Overrides::OverrideSuites").List():
if "1" != cnf["Check-Overrides::OverrideSuites::%s::Process" % osuite]:
continue
......
......@@ -201,7 +201,7 @@ class ChangesGenerator(threading.Thread):
def run(self):
cnf = Config()
count = 1
for directory in [ "Accepted", "Byhand", "Done", "New", "ProposedUpdates", "OldProposedUpdates" ]:
for directory in [ "Byhand", "Done", "New", "ProposedUpdates", "OldProposedUpdates" ]:
checkdir = cnf["Dir::Queue::%s" % (directory) ]
if os.path.exists(checkdir):
print "Looking into %s" % (checkdir)
......
......@@ -661,7 +661,7 @@ class Upload(object):
entry["new"] = 1
else:
dsc_file_exists = False
for myq in ["Accepted", "Embargoed", "Unembargoed", "ProposedUpdates", "OldProposedUpdates"]:
for myq in ["Embargoed", "Unembargoed", "ProposedUpdates", "OldProposedUpdates"]:
if cnf.has_key("Dir::Queue::%s" % (myq)):
if os.path.exists(os.path.join(cnf["Dir::Queue::" + myq], dsc_filename)):
dsc_file_exists = True
......@@ -1225,7 +1225,7 @@ class Upload(object):
continue
# Look in some other queues for the file
queues = ('Accepted', 'New', 'Byhand', 'ProposedUpdates',
queues = ('New', 'Byhand', 'ProposedUpdates',
'OldProposedUpdates', 'Embargoed', 'Unembargoed')
for queue in queues:
......@@ -2453,7 +2453,7 @@ distribution."""
else:
# TODO: Record the queues and info in the DB so we don't hardcode all this crap
# Not there? Check the queue directories...
for directory in [ "Accepted", "New", "Byhand", "ProposedUpdates", "OldProposedUpdates", "Embargoed", "Unembargoed" ]:
for directory in [ "New", "Byhand", "ProposedUpdates", "OldProposedUpdates", "Embargoed", "Unembargoed" ]:
if not Cnf.has_key("Dir::Queue::%s" % (directory)):
continue
in_otherdir = os.path.join(Cnf["Dir::Queue::%s" % (directory)], dsc_name)
......@@ -2502,7 +2502,7 @@ distribution."""
source_epochless_version = re_no_epoch.sub('', source_version)
dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version)
found = False
for q in ["Accepted", "Embargoed", "Unembargoed", "Newstage"]:
for q in ["Embargoed", "Unembargoed", "Newstage"]:
if cnf.has_key("Dir::Queue::%s" % (q)):
if os.path.exists(cnf["Dir::Queue::%s" % (q)] + '/' + dsc_filename):
found = True
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册