I tried to rebuild root-6.24.2-1.el8 on mock (systemd-nspawn, tmpfs) and this one test always fails: 150/1107 Test #109: gtest-io-io-test-RIoUring ...........................................***Failed 0.58 sec Running main() from gtest_main.cc Note: Google Test filter = -RCsvDS.Remote:RRawFile.Remote:RSqliteDS.Davix I have rebuilt root package for years and this was first time there is consistent test failure (I tried rebuild three times).
Ok. Problem is that root package has enabled uring support. That can't be done for epel8 because rhel8 kernel doesn't have support. https://github.com/root-project/root/issues/8895 Build only succeeds because epel buildsystem runs on fedora so on kernel which does support uring. Fix is to disable uring for epel8. I suggest removing uring for all rhel versions because I don't know if uring is supported by rhel9. Here is minimalistic change: diff --git a/root.spec b/root.spec index 26aeb7a..d71a9af 100644 --- a/root.spec +++ b/root.spec @@ -233,7 +233,7 @@ BuildRequires: cmake-data >= 3.18.3-1 BuildRequires: openblas-devel %endif BuildRequires: json-devel -%if %{?fedora}%{!?fedora:0} || %{?rhel}%{!?rhel:0} >= 8 +%if %{?fedora}%{!?fedora:0} BuildRequires: liburing-devel %endif %if %{?fedora}%{!?fedora:0} || %{?rhel}%{!?rhel:0} >= 8 @@ -2109,7 +2109,7 @@ LDFLAGS="-Wl,--as-needed %{?__global_ldflags}" -Dtmva-pymva:BOOL=ON \ -Dtmva-rmva:BOOL=ON \ -Dunuran:BOOL=ON \ -%if %{?fedora}%{!?fedora:0} || %{?rhel}%{!?rhel:0} >= 8 +%if %{?fedora}%{!?fedora:0} -During:BOOL=ON \ %else -During:BOOL=OFF \
FEDORA-EPEL-2021-817370d4a8 has been submitted as an update to Fedora EPEL 8. https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2021-817370d4a8
It's odd that RHEL 8 has a liburing package when the RHEL 8 kernel does not support its usage...
FEDORA-EPEL-2021-817370d4a8 has been pushed to the Fedora EPEL 8 testing repository. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2021-817370d4a8 See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information on how to test updates.
FEDORA-EPEL-2021-817370d4a8 has been pushed to the Fedora EPEL 8 stable repository. If problem still persists, please make note of it in this bug report.