From f48309fd481ddb52569594e7ccade21cf9b42e33 Mon Sep 17 00:00:00 2001 From: Jonathan Patrick Davies Date: Thu, 14 Aug 2008 11:02:27 +0100 Subject: [PATCH] * buildd: Do not rescore or retry successfully built packages. --- buildd | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/buildd b/buildd index 4596373..e2d56c5 100755 --- a/buildd +++ b/buildd @@ -127,6 +127,12 @@ for build, (arch, status) in buildstats.iteritems(): # Skip this architecture. continue + if oneArch and options.architecture == arch: + if status in ('Successfully built'): + print "Package has been marked as successfully built on %s." % arch + print "A %s of this package shall not be requested." % op + sys.exit(0) + if op == 'rescore': if status == 'Needs building': print 'Rescoring', build, '(%s).' % arch