tags 1046092 patch severity 1046092 normal reopen 1046092 thanks On Sun, Mar 22, 2026 at 09:51:55PM +0100, Pierre-Elliott Bécue wrote: > Closing, if needed, please either reopen or resubmit a FTBFS against > latest version. :)
We are almost there. This is how the current version fails using a recent dpkg-dev: dpkg-source: info: local changes detected, the modified files are: example.html dpkg-source: error: aborting due to unexpected upstream changes, see /tmp/hyperkitty_1.3.12-4.diff.A6LYnE Fortunately this is in the "easy" category, because the file does not exist in the source code and it's just generated at build time, which means it's completely safe to remove it in the clean target. (The "not so easy" category is the case where the file exists, it's modified during build, but removing it in debian/clean makes the build to fail). The attached patch works for me. I have tested not only that it makes possible to build source after binary, but also that the generated .debs are identical. Thanks.
commit 26a2e828e87a83b2ad52f764a00e0f5d99e39035 Author: Santiago Vila <[email protected]> Date: Fri Mar 27 16:24:00 2026 +0100 Fix clean target. Closes: #1046092. diff --git a/debian/clean b/debian/clean new file mode 100644 index 0000000..c1b4f3c --- /dev/null +++ b/debian/clean @@ -0,0 +1 @@ +example.html

