~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/model/binarypackagebuild.py

Merge with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
357
357
        self.buildqueue_record.manualScore(score)
358
358
 
359
359
    def makeJob(self):
360
 
        """See `IBuildBase`."""
 
360
        """See `IBuildFarmJob`."""
361
361
        store = Store.of(self)
362
362
        job = Job()
363
363
        store.add(job)
499
499
            debug_package=debug_package)
500
500
 
501
501
    def estimateDuration(self):
502
 
        """See `IBuildBase`."""
 
502
        """See `IPackageBuild`."""
503
503
        # Always include the primary archive when looking for
504
504
        # past build times (just in case that none can be found
505
505
        # in a PPA or copy archive).
559
559
        return self.binarypackages.count() > 0
560
560
 
561
561
    def notify(self, extra_info=None):
562
 
        """See `IBuildBase`.
 
562
        """See `IPackageBuild`.
563
563
 
564
564
        If config.buildmaster.build_notification is disable, simply
565
565
        return.