Source: python-aiostream
Version: 0.5.2-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed that
python-aiostream could not be built reproducibly.

This is because the code to drop the cov-generated files was missing
another wildcard:

--- a/debian/rules      2023-12-07 12:25:27.150528838 +0000
--- b/debian/rules      2023-12-07 12:31:09.076010951 +0000
@@ -5,5 +5,5 @@
 
 execute_after_dh_python3:
        # Drop cov-generated files
-       rm -fv debian/*/usr/lib/python3/dist-packages/.coverage
+       rm -fv debian/*/usr/lib/python3*/dist-packages/.coverage
-       rm -fvr debian/*/usr/lib/python3/dist-packages/htmlcov
+       rm -fvr debian/*/usr/lib/python3*/dist-packages/htmlcov

Patch also attached.

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


Regards,

-- 
      ,''`.
     : :'  :     Chris Lamb
     `. `'`      la...@debian.org / chris-lamb.co.uk
       `-
--- a/debian/rules      2023-12-07 12:25:27.150528838 +0000
--- b/debian/rules      2023-12-07 12:31:09.076010951 +0000
@@ -5,5 +5,5 @@
 
 execute_after_dh_python3:
        # Drop cov-generated files
-       rm -fv debian/*/usr/lib/python3/dist-packages/.coverage
-       rm -fvr debian/*/usr/lib/python3/dist-packages/htmlcov
+       rm -fv debian/*/usr/lib/python3*/dist-packages/.coverage
+       rm -fvr debian/*/usr/lib/python3*/dist-packages/htmlcov

Reply via email to