--- Begin Message ---
- To: Debian Bug Tracking System <submit@bugs.debian.org>
- Subject: bookworm-pu: package node-fstream-ignore/1.0.5-4+deb12u1
- From: Santiago Vila <sanvila@debian.org>
- Date: Thu, 10 Apr 2025 13:27:01 +0200
- Message-id: <e5699d66-597b-4967-bc95-01e961b12b11@debian.org>
Package: release.debian.org
Severity: normal
Tags: bookworm
User: release.debian.org@packages.debian.org
Usertags: pu
X-Debbugs-Cc: node-fstream-ignore@packages.debian.org, sanvila@debian.org
Control: affects -1 + src:node-fstream-ignore
[ Reason ]
Fix for FTBFS bug #1078886, where the package FTBFS randomly when built
in parallel, i.e. on machines with more than 1 CPU.
[ Impact ]
Whoever will try to build the package from source may get those random FTBFS failures.
[ Tests ]
I've verified that the change fixes the problem by rebuilding the package many
times on systems where it used to fail.
[ Risks ]
Very low. No real code changes, only a one-line fix in the way the tests
are executed.
[ 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 ]
Do not run tests in parallel.
[ Other info ]
I'm making the upload shortly after sending this report.
diff -Nru node-fstream-ignore-1.0.5/debian/changelog node-fstream-ignore-1.0.5/debian/changelog
--- node-fstream-ignore-1.0.5/debian/changelog 2022-12-14 19:57:07.000000000 +0100
+++ node-fstream-ignore-1.0.5/debian/changelog 2025-04-09 01:50:00.000000000 +0200
@@ -1,3 +1,11 @@
+node-fstream-ignore (1.0.5-4+deb12u1) bookworm; urgency=medium
+
+ * Team upload.
+ [ Jérémy Lal ]
+ * Do not run tests in parallel. Closes: #1078886.
+
+ -- Santiago Vila <sanvila@debian.org> Wed, 09 Apr 2025 01:50:00 +0200
+
node-fstream-ignore (1.0.5-4) unstable; urgency=medium
[ Debian Janitor ]
diff -Nru node-fstream-ignore-1.0.5/debian/tests/pkg-js/test node-fstream-ignore-1.0.5/debian/tests/pkg-js/test
--- node-fstream-ignore-1.0.5/debian/tests/pkg-js/test 2022-12-14 19:57:07.000000000 +0100
+++ node-fstream-ignore-1.0.5/debian/tests/pkg-js/test 2025-04-09 01:50:00.000000000 +0200
@@ -1 +1 @@
-tap -R tap test/00-setup.js test/common.js test/zz-cleanup.js --no-cov
+tap -j1 -R tap test/00-setup.js test/common.js test/zz-cleanup.js --no-cov
--- End Message ---