From: Ciaran Gultnieks Date: Sat, 21 Jan 2012 23:10:59 +0000 (+0000) Subject: Stopped spewing out irrelevant stuff when building a single package X-Git-Tag: 0.1~1078 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=05e491dd625e4bdb15244c43be0c84c126315e69;p=fdroidserver.git Stopped spewing out irrelevant stuff when building a single package --- diff --git a/build.py b/build.py index b69020b5..0fcdcd67 100755 --- a/build.py +++ b/build.py @@ -74,15 +74,14 @@ if not os.path.isdir(build_dir): for app in apps: - if app['Disabled']: + if options.package and options.package != app['id']: + # Silent skip... + pass + elif app['Disabled']: print "Skipping %s: disabled" % app['id'] - elif not app['builds']: + elif (not app['builds']) or app['Repo Type'] =='' or len(app['builds']) == 0: print "Skipping %s: no builds specified" % app['id'] - - if (app['Disabled'] is None and app['Repo'] != '' - and app['Repo Type'] != '' and (options.package is None or - options.package == app['id']) and len(app['builds']) > 0): - + else: print "Processing " + app['id'] build_dir = 'build/' + app['id']