Source: ruby-appraiser Version: 0.2.0-3 Severity: wishlist Tags: patch User: reproducible-bui...@lists.alioth.debian.org Usertags: buidlpath X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org
Hi, Whilst working on the Reproducible Builds effort [0] we noticed that ruby-appraiser could not be built reproducibly. This is because it ships a strange appraiser_plugin.rb file that simply "requires" a single file (which cannot work as this particular path is to the build path, not the installed path). Assuming that this file is not useful in a Debian package context, a patch is attached that removes the file from the binary artefact. [0] https://reproducible-builds.org/ Regards, -- ,''`. : :' : Chris Lamb `. `'` la...@debian.org / chris-lamb.co.uk `-
--- a/debian/rules 2020-10-20 10:55:41.195010332 +0100 --- b/debian/rules 2020-10-20 11:01:07.165952612 +0100 @@ -15,3 +15,7 @@ %: dh $@ --buildsystem=ruby --with ruby + +override_dh_auto_install: + dh_auto_install + find debian/ -name appraiser_plugin.rb -delete