--- Begin Message ---
Package: release.debian.org
Control: affects -1 + src:libm4ri
X-Debbugs-Cc: libm4ri@packages.debian.org
User: release.debian.org@packages.debian.org
Usertags: unblock
X-Debbugs-Cc: dtorrance@piedmont.edu
Severity: normal
Please unblock package libm4ri
[ Reason ]
The recent upload of libm4ri 2024072-9 fixes RC bug #1099530. In particular, it prevents a baseline violation on amd64 systems by passing the --disable-sse2 option to configure, which prevents compilation with AVX2.
[ Impact ]
libm4ri and its reverse dependencies are currently scheduled for removal from testing (and hence the trixie release) on June 3, which is less than the 20 day migration delay that would be required without an unblock.
[ Tests ]
All of the tests run as part of the usual build process after the recent upload passed:
============================================================================
Testsuite summary for m4ri 20240729
============================================================================
# TOTAL: 15
# PASS: 15
# SKIP: 0
# XFAIL: 0
# FAIL: 0
# XPASS: 0
# ERROR: 0
============================================================================
Build log: https://buildd.debian.org/status/fetch.php?pkg=libm4ri&arch=amd64&ver=20240729-2&stamp=1747765642&raw=0
[ Risks ]
There is minimal risk, as this update is targeted toward fixing one particular RC bug and changes exactly one configure option on one architecture.
[ 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 testing
[ Other info ]
Thank you!
unblock libm4ri/20240729-2
diff -Nru libm4ri-20240729/debian/changelog libm4ri-20240729/debian/changelog
--- libm4ri-20240729/debian/changelog 2025-01-16 03:19:54.000000000 -0500
+++ libm4ri-20240729/debian/changelog 2025-05-20 13:54:54.000000000 -0400
@@ -1,3 +1,11 @@
+libm4ri (20240729-2) unstable; urgency=medium
+
+ * Team upload.
+ * debian/rules
+ - Always disable sse2, even on amd64 (Closes: #1099530).
+
+ -- Doug Torrance <dtorrance@debian.org> Tue, 20 May 2025 13:54:54 -0400
+
libm4ri (20240729-1) unstable; urgency=medium
* Point to new upstream.
diff -Nru libm4ri-20240729/debian/rules libm4ri-20240729/debian/rules
--- libm4ri-20240729/debian/rules 2025-01-16 03:19:54.000000000 -0500
+++ libm4ri-20240729/debian/rules 2025-05-20 13:44:24.000000000 -0400
@@ -5,10 +5,7 @@
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
-# disable sse2 except on amd64
-ifneq ($(DEB_HOST_ARCH_CPU),amd64)
additional_confflags := --disable-sse2
-endif
%:
dh $@
--- End Message ---