On Sat, 14 Dec 2019 22:39:34 -0800 Felix Lechner <felix.lech...@lease-up.com> wrote: > Hi Sam, > > On Tue, Jun 18, 2019 at 4:27 AM Sam Hartman <hartm...@debian.org> wrote: > > > > Based on that I think we'd like lintian to detect when dh is not used > > and allow maintainers to override the tag if they have an adequate > > justification for not using dh. > > I tentatively added a new tag called 'no-dh-sequencer' to Lintian.
I produces false positives on packages with non-trivial rules files that cannot use the catch-all wildcard '%:\n\tdh $@' (because it interferes with other pattern rules). e.g. nvidia-cuda-toolkit .PHONY: binary binary-arch binary-indep build build-arch build-indep clean install binary-arch build build-arch build-indep clean install: dh $@ binary binary-indep: # the documentation packages must be built on amd64 (otherwise some parts are missing) test "$(DEB_HOST_ARCH)" = "amd64" dh $@ Andreas