Source: insilicoseq
Version: 2.0.1-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
insilicoseq could not be built reproducibly.

This was because it ships a different binary package depending
on whether the tests are run or not. This is caused by the testsuite
bumping the modification time of the data/ directory that then
gets installed via dh_installexamples.

Patch attached that ensures a consistent modification time for this
directory, regardless of nocheck.

 [0] https://reproducible-builds.org/


Regards,

-- 
      ,''`.
     : :'  :     Chris Lamb
     `. `'`      [email protected] / chris-lamb.co.uk
       `-
--- a/debian/rules      2025-11-19 12:30:55.967559205 -0800
--- b/debian/rules      2025-11-19 12:33:16.430132373 -0800
@@ -16,5 +16,7 @@
 endif
 
 override_dh_installexamples:
+       touch -d@$(SOURCE_DATE_EPOCH) data/
        dh_installexamples
        find debian -name __pycache__ -type d | xargs rm -rf
+

Reply via email to