Show More
@@ -587,6 +587,13 b' def has_debhelper():' | |||
|
587 | 587 | br'to run debian/rules with given parameter') |
|
588 | 588 | return dpkg and dh and dh_py2 and debuild |
|
589 | 589 | |
|
590 | @check("debdeps", | |
|
591 | "debian build dependencies (run dpkg-checkbuilddeps in contrib/)") | |
|
592 | def has_debdeps(): | |
|
593 | # just check exit status (ignoring output) | |
|
594 | path = '%s/../contrib/debian/control' % os.environ['TESTDIR'] | |
|
595 | return matchoutput('dpkg-checkbuilddeps %s' % path, br'') | |
|
596 | ||
|
590 | 597 | @check("demandimport", "demandimport enabled") |
|
591 | 598 | def has_demandimport(): |
|
592 | 599 | return os.environ.get('HGDEMANDIMPORT') != 'disable' |
General Comments 0
You need to be logged in to leave comments.
Login now