something as simple as this is not usable:
for pkg in ppa.getBuildRecords(): csp = pkg.current_source_publication if not csp: continue if pkg.buildstate == 'Successfully built': continue print " %-28s %-8s %-5s %-20s %s" % (csp.source_package_name, csp.distro_series.name, pkg.arch_tag, pkg.buildstate, pkg.build_log_url)
in my case, it takes ~10 minutes, does ~300 HTTP requests, and download more than 10MB, just to display between 0 and 12 lines.
something as simple as this is not usable:
for pkg in ppa.getBuildRec ords(): source_ publication
continue
continue package_ name, csp.distro_ series. name, pkg.arch_tag, pkg.buildstate, pkg.build_log_url)
csp = pkg.current_
if not csp:
if pkg.buildstate == 'Successfully built':
print " %-28s %-8s %-5s %-20s %s" % (csp.source_
in my case, it takes ~10 minutes, does ~300 HTTP requests, and download more than 10MB, just to display between 0 and 12 lines.