aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/steps/package/deb/lintian.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/steps/package/deb/lintian.py')
-rw-r--r--lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/steps/package/deb/lintian.py91
1 files changed, 0 insertions, 91 deletions
diff --git a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/steps/package/deb/lintian.py b/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/steps/package/deb/lintian.py
deleted file mode 100644
index 5c01a15d..00000000
--- a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/steps/package/deb/lintian.py
+++ /dev/null
@@ -1,91 +0,0 @@
-# This program is free software; you can
-# redistribute it and/or modify it under the terms of the GNU General Public
-# License as published by the Free Software Foundation, version 2.
-#
-# This program is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-# details.
-#
-# You should have received a copy of the GNU General Public License along with
-# this program; if not, write to the Free Software Foundation, Inc., 51
-# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Portions Copyright Buildbot Team Members
-# Portions Copyright Marius Rieder <marius.rieder@durchmesser.ch>
-"""
-Steps and objects related to lintian
-"""
-
-from buildbot.steps.shell import ShellCommand
-from buildbot.status.results import SUCCESS, WARNINGS, FAILURE
-from buildbot import config
-
-class DebLintian(ShellCommand):
- name = "lintian"
- description = ["Lintian running"]
- descriptionDone = ["Lintian"]
-
- fileloc = None
- suppressTags = []
-
- warnCount = 0
- errCount = 0
-
- flunkOnFailure=False
- warnOnFailure=True
-
- def __init__(self, fileloc=None, suppressTags=None, **kwargs):
- """
- Create the DebLintian object.
-
- @type fileloc: str
- @param fileloc: Location of the .deb or .changes to test.
- @type suppressTags: list
- @param suppressTags: List of tags to suppress.
- @type kwargs: dict
- @param kwargs: all other keyword arguments.
- """
- ShellCommand.__init__(self, **kwargs)
- if fileloc:
- self.fileloc = fileloc
- if suppressTags:
- self.suppressTags = suppressTags
-
- if not self.fileloc:
- config.error("You must specify a fileloc")
-
- self.command = ["lintian", "-v", self.fileloc]
-
- if self.suppressTags:
- for tag in self.suppressTags:
- self.command += ['--suppress-tags', tag]
-
- def createSummary(self, log):
- """
- Create nice summary logs.
-
- @param log: log to create summary off of.
- """
- warnings = []
- errors = []
- for line in log.readlines():
- if 'W: ' in line:
- warnings.append(line)
- elif 'E: ' in line:
- errors.append(line)
-
- if warnings:
- self.addCompleteLog('%d Warnings' % len(warnings), "".join(warnings))
- self.warnCount = len(warnings)
- if errors:
- self.addCompleteLog('%d Errors' % len(errors), "".join(errors))
- self.errCount = len(errors)
-
- def evaluateCommand(self, cmd):
- if ( cmd.rc != 0 or self.errCount):
- return FAILURE
- if self.warnCount:
- return WARNINGS
- return SUCCESS
-