Your message dated Sat, 11 Jul 2026 10:32:48 +0000
with message-id <[email protected]>
and subject line Released in 13.6
has caused the Debian Bug report #1139261,
regarding trixie-pu: package python-iniparse/0.5.1-1+deb13u1
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1139261: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1139261
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
Tags: trixie
X-Debbugs-Cc: [email protected], [email protected]
Control: affects -1 + src:python-iniparse
User: [email protected]
Usertags: pu
[ Reason ]
Fix Bug #1137634. Random build failure due to flaky test.
[ Impact ]
Package fails to build randomly in some systems.
[ Tests ]
I've checked that the package builds reliably again.
[ Risks ]
Very low. No real code changes. One test has been modified
to avoid a race condition.
[ 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 ]
Fix race condition in test_multiprocessing.
[ Other info ]
Package is already uploaded.
diff -Nru python-iniparse-0.5.1/debian/changelog
python-iniparse-0.5.1/debian/changelog
--- python-iniparse-0.5.1/debian/changelog 2024-12-11 16:27:00.000000000
+0100
+++ python-iniparse-0.5.1/debian/changelog 2026-06-07 22:15:00.000000000
+0200
@@ -1,3 +1,10 @@
+python-iniparse (0.5.1-1+deb13u1) trixie; urgency=medium
+
+ * Team upload.
+ * Fix race condition in test_multiprocessing. Closes: #1137634.
+
+ -- Santiago Vila <[email protected]> Sun, 07 Jun 2026 22:15:00 +0200
+
python-iniparse (0.5.1-1) unstable; urgency=medium
* Team upload.
diff -Nru python-iniparse-0.5.1/debian/patches/fix-race-condition.patch
python-iniparse-0.5.1/debian/patches/fix-race-condition.patch
--- python-iniparse-0.5.1/debian/patches/fix-race-condition.patch
1970-01-01 01:00:00.000000000 +0100
+++ python-iniparse-0.5.1/debian/patches/fix-race-condition.patch
2026-06-07 20:01:00.000000000 +0200
@@ -0,0 +1,15 @@
+From: Santiago Vila <[email protected]>
+Subject: Fix race condition in test_multiprocessing
+Bug-Debian: https://bugs.debian.org/1137634
+
+--- a/tests/test_multiprocessing.py
++++ b/tests/test_multiprocessing.py
+@@ -16,7 +16,7 @@
+
+ def test_queue(self):
+ def getxy(_q, _w):
+- _cfg = _q.get_nowait()
++ _cfg = _q.get(timeout=1)
+ _w.put(_cfg.x.y)
+ cfg = ini.INIConfig()
+ cfg.x.y = '42'
diff -Nru python-iniparse-0.5.1/debian/patches/series
python-iniparse-0.5.1/debian/patches/series
--- python-iniparse-0.5.1/debian/patches/series 1970-01-01 01:00:00.000000000
+0100
+++ python-iniparse-0.5.1/debian/patches/series 2026-06-07 20:00:00.000000000
+0200
@@ -0,0 +1 @@
+fix-race-condition.patch
--- End Message ---
--- Begin Message ---
Version: 13.6
This update was released as part of 13.6.
--- End Message ---