mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-12 15:41:09 +00:00
In check-mir, ignore debhelper-compat when checking the build dependencies. This is expected to be a build dependency of all packages, so warning about it in any way is surely a red herring.
This commit is contained in:
parent
47fd5d7cca
commit
e90ceaf26b
@ -93,6 +93,13 @@ def check_build_dependencies(apt_cache, control):
|
||||
continue
|
||||
for or_group in apt.apt_pkg.parse_src_depends(control.section[field]):
|
||||
pkgname = or_group[0][0]
|
||||
|
||||
# debhelper-compat is expected to be a build dependency of every
|
||||
# package, so it is a red herring to display it in this report.
|
||||
# (src:debhelper is in Ubuntu Main anyway)
|
||||
if pkgname == "debhelper-compat":
|
||||
continue
|
||||
|
||||
if not check_support(apt_cache, pkgname):
|
||||
# check non-preferred alternatives
|
||||
for altpkg in or_group[1:]:
|
||||
|
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -1,3 +1,11 @@
|
||||
ubuntu-dev-tools (0.198) UNRELEASED; urgency=medium
|
||||
|
||||
* In check-mir, ignore debhelper-compat when checking the build
|
||||
dependencies. This is expected to be a build dependency of all packages,
|
||||
so warning about it in any way is surely a red herring.
|
||||
|
||||
-- Simon Quigley <tsimonq2@debian.org> Wed, 10 Jan 2024 18:54:07 -0600
|
||||
|
||||
ubuntu-dev-tools (0.197) unstable; urgency=medium
|
||||
|
||||
* Update the manpage for syncpackage to reflect the ability to sync
|
||||
|
Loading…
x
Reference in New Issue
Block a user