Source: golang-github-lucas-clemente-quic-go Version: 0.50.1-2 Severity: wishlist Tags: patch User: reproducible-bui...@lists.alioth.debian.org Usertags: randomness X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org
Hi, Whilst working on the Reproducible Builds effort [0], we noticed that golang-github-lucas-clemente-quic-go could not be built reproducibly. This is because the binary package shipped an unreproducible 'keylog.txt' file that was generated during the tests. Patch attached that deletes this file after the tests are run. [0] https://reproducible-builds.org/ Regards, -- ,''`. : :' : Chris Lamb `. `'` la...@debian.org / chris-lamb.co.uk `-
--- a/debian/rules 2025-05-12 10:11:32.187194150 -0700 --- b/debian/rules 2025-05-12 11:10:09.680581388 -0700 @@ -5,6 +5,9 @@ execute_after_dh_auto_configure: find _build -name sys_conn_oob_test.go -print -delete +execute_after_dh_auto_test: + find _build -name keylog.txt -delete + override_dh_auto_install: dh_auto_install -- --no-binaries