Source: fprintd Version: 1.90.5-2 Tags: patch fprintd fails to build from source in unstable when activating the nocheck build profile. A number of Build-Depends that are flagged <!nocheck> are indeed non-optional from a meson.build point of view. Please untag them. An even better route would be really making them optional in meson.build though. I'm attaching a patch for the former, simpler solution.
Helmut
diff --minimal -Nru fprintd-1.90.5/debian/changelog fprintd-1.90.5/debian/changelog --- fprintd-1.90.5/debian/changelog 2020-12-03 15:57:19.000000000 +0100 +++ fprintd-1.90.5/debian/changelog 2020-12-13 19:43:00.000000000 +0100 @@ -1,3 +1,11 @@ +fprintd (1.90.5-2.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix nocheck FTFBS: Drop <!nocheck> from non-optional dependencies. + (Closes: #-1) + + -- Helmut Grohne <[email protected]> Sun, 13 Dec 2020 19:43:00 +0100 + fprintd (1.90.5-2) unstable; urgency=medium * debian/patches: Make tests run with actual required libfprint version diff --minimal -Nru fprintd-1.90.5/debian/control fprintd-1.90.5/debian/control --- fprintd-1.90.5/debian/control 2020-12-03 15:57:19.000000000 +0100 +++ fprintd-1.90.5/debian/control 2020-12-13 19:41:38.000000000 +0100 @@ -12,12 +12,12 @@ meson (>= 0.50.0), policykit-1, python3 <!nocheck>, - python3-cairo <!nocheck>, - python3-dbus <!nocheck>, - python3-dbusmock <!nocheck>, + python3-cairo, + python3-dbus, + python3-dbusmock, python3-gi <!nocheck>, - python3-pypamtest <!nocheck>, - libpam-wrapper <!nocheck>, + python3-pypamtest, + libpam-wrapper, libxml2-utils <!nocheck> Build-Depends-Indep: gtk-doc-tools <!nodoc>, xsltproc <!nodoc> Standards-Version: 4.5.1

