tags 1131978 patch thanks Hi.
I tried my script "check-nocheck" on this package, and this was the outcome: ==== Checking annotations for package python-selectolax ==== Trying with all build-dependencies Build worked Trying without liblexbor-dev Build did NOT work, liblexbor-dev should not have <!nocheck> Trying without libmodest-dev Build did NOT work, libmodest-dev should not have <!nocheck> Trying without python3-pytest Build worked, it is ok to keep python3-pytest <!nocheck> Trying without python3-pytest-cov Build worked, it is ok to keep python3-pytest-cov <!nocheck> Trying without python3-pytest-cython Build worked, it is ok to keep python3-pytest-cython <!nocheck> ==== build-dependencies that should drop their <!nocheck> annotation ==== liblexbor-dev libmodest-dev You can find my script here, it's linked from the wiki page referenced in the bug report: https://people.debian.org/~sanvila/check-nocheck/ Based on the above, the attached patch should fix the bug. I leave the upload to you (unless you prefer that I do it, if so, just ask). [ Note: While I recommend that you use "sbuild --profiles=nocheck" to check this, you verified "by hand" that the package really needs those two build-dependencies even when DEB_BUILD_OPTIONS=nocheck, so I don't understand what else did you need. You say at the end that you verified that the package built ok with nocheck build profile, but this bug suggests that whatever you did to check that was not working. If you tell me what you did, maybe we can figure out what was the problem ]. Thanks.
commit 429beedfa5e4da0cbe282cb629b0b752962c09a1 Author: Santiago Vila <[email protected]> Date: Sat Mar 28 13:30:00 2026 +0100 Fix FTBFS with nocheck build profile. Closes: #1131978. diff --git a/debian/control b/debian/control index aa5fb8d..faa1cc7 100644 --- a/debian/control +++ b/debian/control @@ -9,9 +9,9 @@ Build-Depends: dh-sequence-sphinxdoc <!nodoc>, cython3, furo <!nodoc>, - liblexbor-dev <!nocheck>, + liblexbor-dev, liblexbor2, - libmodest-dev <!nocheck>, + libmodest-dev, libmodest0t64, libpython3-all-dev, pybuild-plugin-pyproject,

