~stefanor/ubuntu-dev-tools/sponsor-list

« back to all changes in this revision

Viewing changes to sponsor-patch

  • Committer: Benjamin Drung
  • Date: 2010-08-20 00:03:23 UTC
  • Revision ID: bdrung@ubuntu.com-20100820000323-k5ptpikwzyzx78as
sponsor-patch: Update TODO list.

Show diffs side-by-side

added added

removed removed

Lines of Context:
469
469
                Print.command(cmd)
470
470
                if subprocess.call(cmd) != 0:
471
471
                        Print.error("Failed to build source tarball.")
 
472
                        # TODO: Add a "retry" option
472
473
                        ask_for_manual_fixing()
473
474
                        continue
474
475
 
527
528
 
528
529
                        # build package
529
530
                        dist = re.sub("-.*$", "", changelog.distributions)
530
 
                        # TODO: Find a solution for sudo password blocking.
531
531
                        # TODO: Do not rely on a specific pbuilder configuration.
532
532
                        cmd = ["sudo", "-E", "DIST=" + dist, "pbuilder", "--build",
533
533
                                        "--distribution", dist, "--buildresult", buildresult,
536
536
                        if subprocess.call(cmd) != 0:
537
537
                                Print.error("Failed to build %s from source." % \
538
538
                                                (os.path.basename(new_dsc_file)))
 
539
                                # TODO: Add "retry" and "update" option
539
540
                                ask_for_manual_fixing()
540
541
                                continue
541
542