dbus-cpp.passthru.tests.pkg-config: Disable version check for current version

Will hopefully get fixed by the next release, so do the check once version gets changed again.

OPNA2608 da253f9d 94ef8b69

+3 -1
+3 -1
pkgs/by-name/db/dbus-cpp/package.nix
··· 94 passthru = { 95 tests.pkg-config = testers.hasPkgConfigModules { 96 package = finalAttrs.finalPackage; 97 - versionCheck = true; 98 }; 99 updateScript = gitUpdater { }; 100 };
··· 94 passthru = { 95 tests.pkg-config = testers.hasPkgConfigModules { 96 package = finalAttrs.finalPackage; 97 + # Not bumped for 5.0.5: https://gitlab.com/ubports/development/core/lib-cpp/dbus-cpp/-/issues/9 98 + # Try again on next bump. 99 + versionCheck = finalAttrs.version != "5.0.5"; 100 }; 101 updateScript = gitUpdater { }; 102 };