Source: golang-forgejo-forgejo-levelqueue
Version: 1.0.0-2
Severity: wishlist
Tags: patch
User: [email protected]
Usertags: timestamps
X-Debbugs-Cc: [email protected]
Hi,
Whilst working on the Reproducible Builds effort [0], we noticed that
golang-forgejo-forgejo-levelqueue could not be built reproducibly.
This is because the testsuite generated some nondeterminstic logs
that were shipped in the binary package. A patch is attached that
removes them after running the tests.
[0] https://reproducible-builds.org/
Regards,
--
,''`.
: :' : Chris Lamb
`. `'` [email protected] / chris-lamb.co.uk
`-
--- a/debian/rules 2025-09-12 10:38:24.390526086 -0700
--- b/debian/rules 2025-09-12 10:45:59.876515743 -0700
@@ -2,3 +2,6 @@
%:
dh ${@} --builddirectory=_build --buildsystem=golang
+
+execute_after_dh_auto_test:
+ find _build -type f \( -name LOG -or -name '*.log' \) -delete