Source: scons Version: 3.1.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 scons could not be built reproducibly. This is because the revert to Python 2.x did not update debian/rules to match and thus dh_python2 was not being run, resulting in .pyc files being shipped in the package. These files are not reproducible. Patch attached. [0] https://reproducible-builds.org/ Regards, -- ,''`. : :' : Chris Lamb `. `'` la...@debian.org / chris-lamb.co.uk `-
--- a/debian/rules 2019-08-13 08:13:52.903412241 -0700 --- b/debian/rules 2019-08-13 08:16:35.302089322 -0700 @@ -3,4 +3,4 @@ export PYBUILD_INSTALL_ARGS=--no-version-script --standalone-lib --no-install-man --no-install-bat %: - dh $@ --with python3 --buildsystem=pybuild + dh $@ --with python2 --buildsystem=pybuild