summaryrefslogtreecommitdiff
path: root/icklib
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2016-12-25 14:29:55 +0200
committerLars Wirzenius <liw@liw.fi>2016-12-25 14:29:55 +0200
commite878cef7ab213ead67e3530b65c1472aeba694a8 (patch)
tree6081ba60e9013f4c7899885e2f6bb12a6f7ba0ae /icklib
parent2c4b176eb61db337e6cb9f08fa191fdd727f8664 (diff)
downloadick-e878cef7ab213ead67e3530b65c1472aeba694a8.tar.gz
Attempt to disable lintian errors
Lintian in Debian unstable is giving me these errors: 0081: E: foo changes: bad-distribution-in-changes-file unstable-ci 0082: E: foo changes: changed-by-address-malformed Lars Wirzenius <liw@exolobe3> This commit attempt to disable those, but I hae commit to master so that the test suite for ick uses the changes.
Diffstat (limited to 'icklib')
-rwxr-xr-xicklib/cleanly3
1 files changed, 2 insertions, 1 deletions
diff --git a/icklib/cleanly b/icklib/cleanly
index b8b7cbb..83bd089 100755
--- a/icklib/cleanly
+++ b/icklib/cleanly
@@ -245,7 +245,7 @@ class App(cliapp.Application):
self._report('Build dsc')
with open('/dev/null') as f:
cliapp.runcmd(
- ['debuild', '-S', '-sa', '-us', '-uc', '-i'],
+ ['debuild', '-S', '-sa', '-us', '-uc', '-i', '--no-lintian'],
cwd=srcdir, stdin=f, stdout=None, stderr=None)
self._report('Clean up')
@@ -315,6 +315,7 @@ class App(cliapp.Application):
opts = [
'--build',
'--buildresult', result,
+ '--debbuildopts', '--check-options=-X bad-distribution-in-changes-file,changed-by-address-malformed',
]
if self.settings['build-arch-all-also']:
opts += ['--debbuildopts', '-b']