found 1045919 6.4.3-3 tags 1045919 patch severity 1045919 normal thanks Hi.
[ I'm reopening this for convenience only, as I don't want to file new bugs of this kind yet ] The current build log (when trying to build source after binary build) is full of messages like this one: cannot represent change to build/html/[...] However, because of bug #1126665 in dpkg-dev, we can't trust dpkg-source output to be complete, so it would be quite pointless to post the build log here. Here is my proposal to fix the current "does not build source after binary build" issue, which I have carefully verified to work, including the fact that neither "html/" or "docs/_doxygen/" need to be present in debian/clean anymore. (The patch is quite similar to the one I sent for rocblas). Thanks.
commit c1be3d77aac870618b90c74f38c16bfedb0328da Author: Santiago Vila <[email protected]> Date: Thu Feb 19 13:45:00 2026 +0100 Fix clean target. Closes: #1045919. diff --git a/debian/clean b/debian/clean index 30ab4c9..a495e0b 100644 --- a/debian/clean +++ b/debian/clean @@ -1,6 +1,5 @@ -html/ +build/html/ docs/doxygen/html/ docs/doxygen/xml/ -docs/_doxygen/ docs/sphinx/_toc.yml rocsparse_test.data diff --git a/debian/source/options b/debian/source/options new file mode 100644 index 0000000..07e3742 --- /dev/null +++ b/debian/source/options @@ -0,0 +1,2 @@ +extend-diff-ignore = "^docs/conf\.py$" +extend-diff-ignore = "^docs/doxygen/Doxyfile$"

