Package: release.debian.org
Severity: normal
Tags: bookworm
User: release.debian....@packages.debian.org
Usertags: pu
X-Debbugs-Cc: bio...@packages.debian.org, sanv...@debian.org
Control: affects -1 + src:bioawk
[ Reason ]
Fix random FTBFS bug (#1068341).
[ Impact ]
Any user who tries to build from source using more than one CPU
may find that the package unexpectedly FTBFS in a random way.
[ Tests ]
I've built the package in unstable a lot of times, and it does
no longer FTBFS randomly.
[ Risks ]
Very low, given that the fix is to add --no-parallel to dh invocation.
[ Checklist ]
[X] *all* changes are documented in the d/changelog
[X] I reviewed all changes and I approve them
[X] attach debdiff against the package in (old)stable
[X] the issue is verified as fixed in unstable
[ Changes ]
Add --no-parallel to dh invocation.
[ Other info ]
I'm going to make the upload now, but will wait for confirmation before
pushing to salsa.
diff -Nru bioawk-1.0/debian/changelog bioawk-1.0/debian/changelog
--- bioawk-1.0/debian/changelog 2021-03-17 17:53:42.000000000 +0100
+++ bioawk-1.0/debian/changelog 2024-04-08 19:40:00.000000000 +0200
@@ -1,3 +1,11 @@
+bioawk (1.0-4+deb12u1) bookworm; urgency=medium
+
+ * Team upload.
+ * debian/rules: Add --no-parallel to avoid the effects of a Makefile bug
which
+ makes the package to FTBFS randomly. Closes: #1068341.
+
+ -- Santiago Vila <sanv...@debian.org> Mon, 08 Apr 2024 19:40:00 +0200
+
bioawk (1.0-4) unstable; urgency=medium
* d/p/cross.patch: Fix non-cross buildability
diff -Nru bioawk-1.0/debian/rules bioawk-1.0/debian/rules
--- bioawk-1.0/debian/rules 2021-03-17 17:53:42.000000000 +0100
+++ bioawk-1.0/debian/rules 2024-04-08 19:39:55.000000000 +0200
@@ -5,7 +5,7 @@
include /usr/share/dpkg/buildtools.mk
%:
- dh $@
+ dh $@ --no-parallel
override_dh_auto_configure: