The package rpms/paraview.git has added or updated architecture specific content in its spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s): https://src.fedoraproject.org/cgit/rpms/paraview.git/commit/?id=973f42cb1f93....
Change: +%ifarch ppc64le
Thanks.
Full change: ============
commit 973f42cb1f932e118e8d5708e946840967c5c370 Author: Orion Poplawski orion@nwra.com Date: Sat Feb 29 12:13:56 2020 -0700
Use -g1 on arm to reduce memory usage; Fix requires exclude
diff --git a/paraview.spec b/paraview.spec index 91ef3ea..112b2a7 100644 --- a/paraview.spec +++ b/paraview.spec @@ -222,9 +222,9 @@ Provides: bundled(xdmf2) # Do not require anything provided in paraview's library directory # This list needs to be maintained by hand %if %{with protobuf} -%global __requires_exclude ^lib(IceT|QtTesting|vtk).*$ +%global __requires_exclude ^lib(IceT|pq|QtTesting|vtk).*$ %else -%global __requires_exclude ^lib(IceT|QtTesting|vtk|protobuf).*$ +%global __requires_exclude ^lib(IceT|pq|QtTesting|vtk|protobuf).*$ %endif
@@ -239,6 +239,7 @@ Provides: bundled(xdmf2)
%global paraview_cmake_options \\ -DCMAKE_BUILD_TYPE=RelWithDebInfo \\ + -DCMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING="-DNDEBUG" \\ -DOpenGL_GL_PREFERENCE=GLVND \\ -DPARAVIEW_VERSIONED_INSTALL:BOOL=OFF \\ -DPARAVIEW_ENABLE_PYTHON:BOOL=ON \\ @@ -494,8 +495,12 @@ cp %SOURCE2 VTK/CMake/FindPEGTL.cmake #rm -r VTK
%build -%ifarch ppc64le %{arm} -%global _smp_mflags -j1 +# Try to limit memory consumption on some arches +%ifarch %{arm} +%global optflags %(echo %{optflags} | sed 's/-g /-g1 /') +%endif +%ifarch ppc64le +%global _smp_mflags -j2 %endif mkdir %{_target_platform} pushd %{_target_platform}
arch-excludes@lists.fedoraproject.org