Source: golang-github-shenwei356-breader
Version: 0.3.2-1
Severity: wishlist
Tags: patch
User: [email protected]
Usertags: nocheck
X-Debbugs-Cc: [email protected]
Hi,
Whilst working on the Reproducible Builds effort [0], we noticed that
golang-github-shenwei356-breader could not be built reproducibly.
This is because the testsuite generates two .tsv files that end up
being shipped in the binary package, so if the tests are skipped via
nocheck, then the package will vary.
A patch is attached that removes these files.
[0] https://reproducible-builds.org/
Regards,
--
,''`.
: :' : Chris Lamb
`. `'` [email protected] / chris-lamb.co.uk
`-
--- a/debian/rules 2025-12-10 11:31:24.143413979 -0800
--- b/debian/rules 2025-12-10 12:04:14.851922866 -0800
@@ -7,4 +7,5 @@
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
cp testdata*.tsv _build/src/github.com/shenwei356/breader/
dh_auto_test
+ rm _build/src/github.com/shenwei356/breader/*.tsv
endif