Package: release.debian.org Severity: normal X-Debbugs-Cc: fenics-dolf...@packages.debian.org, francesco.balla...@unicatt.it, dpars...@debian.org Control: affects -1 + src:fenics-dolfinx User: release.debian....@packages.debian.org Usertags: unblock
Please unblock package fenics-dolfinx [ Reason ] Recently resolved problems with mpich prevented fenics-dolfinx from migrating to testing since my latest upload (March 29, 2025) and before the hard freeze. Now that mpich migrated to testing, ppc64el and riscv64 debci have been switched off, which is preventing fenics-dolfinx from migrating as well. [ Impact ] fenics-dolfinx would be built against the wrong version of mpich on 32 bit arches. [ Tests ] debian/test runs a comprehensive test suite, all tests are passing. debci was switched off for ppc64el and riscv64, hence this manual unblock request is needed. [ Risks ] Inconsistent mpich version and symbols on 32 bit arches. [ 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 ] None unblock fenics-dolfinx/1:0.9.0-7
diff -Nru fenics-dolfinx-0.9.0/debian/changelog fenics-dolfinx-0.9.0/debian/changelog --- fenics-dolfinx-0.9.0/debian/changelog 2024-12-29 17:02:28.000000000 +0000 +++ fenics-dolfinx-0.9.0/debian/changelog 2025-03-29 15:17:31.000000000 +0000 @@ -1,3 +1,11 @@ +fenics-dolfinx (1:0.9.0-7) unstable; urgency=medium + + * Change capture mode and verbosity in pusimp tests: drop -s, and decrease the + verbosity from -vv to -v. Closes: #1101505. + * Export MPLBACKEND=agg before running sphinx. See Bug: #1101565. + + -- Francesco Ballarin <francesco.balla...@unicatt.it> Sat, 29 Mar 2025 15:17:31 +0000 + fenics-dolfinx (1:0.9.0-6) unstable; urgency=medium * Build-Depends: python3-gmsh to run gmshio unit tests at build time. diff -Nru fenics-dolfinx-0.9.0/debian/rules fenics-dolfinx-0.9.0/debian/rules --- fenics-dolfinx-0.9.0/debian/rules 2024-12-29 17:02:28.000000000 +0000 +++ fenics-dolfinx-0.9.0/debian/rules 2025-03-29 15:15:59.000000000 +0000 @@ -212,6 +212,7 @@ LD_LIBRARY_PATH=$(CURDIR)/debian/tmp-real/usr/lib/$(DEB_HOST_MULTIARCH)/:$${LD_LIBRARY_PATH} \ XDG_CACHE_HOME=`pwd`/build \ RDMAV_FORK_SAFE=1 \ + MPLBACKEND=agg \ python3 -m sphinx -W -b html source/ .pybuild/html/) dh_numpy3 -i diff -Nru fenics-dolfinx-0.9.0/debian/tests/test-dolfinx-python-pusimp fenics-dolfinx-0.9.0/debian/tests/test-dolfinx-python-pusimp --- fenics-dolfinx-0.9.0/debian/tests/test-dolfinx-python-pusimp 2024-12-29 17:02:28.000000000 +0000 +++ fenics-dolfinx-0.9.0/debian/tests/test-dolfinx-python-pusimp 2025-03-29 07:31:03.000000000 +0000 @@ -2,5 +2,5 @@ for pyver in $PYVER; do echo "=== python $pyver pusimp test ===" - python$pyver -m pytest -svv python/test/debian-only/test_pusimp.py + python$pyver -m pytest -v python/test/debian-only/test_pusimp.py done