Provide CMake config files
Resolves: RHEL-67177
This commit is contained in:
parent
429c670f4b
commit
172ef365b8
17
boost.spec
17
boost.spec
@ -42,7 +42,7 @@ Name: boost
|
|||||||
%global real_name boost
|
%global real_name boost
|
||||||
Summary: The free peer-reviewed portable C++ source libraries
|
Summary: The free peer-reviewed portable C++ source libraries
|
||||||
Version: 1.75.0
|
Version: 1.75.0
|
||||||
Release: 9%{?dist}
|
Release: 10%{?dist}
|
||||||
License: Boost and MIT and Python
|
License: Boost and MIT and Python
|
||||||
|
|
||||||
# Replace each . with _ in %%{version}
|
# Replace each . with _ in %%{version}
|
||||||
@ -830,9 +830,6 @@ mv ${RPM_BUILD_ROOT}${MPI_HOME}/lib/boost-python%{python3_version}/mpi.so \
|
|||||||
rm -f ${RPM_BUILD_ROOT}${MPI_HOME}/lib/libboost_{python,{w,}serialization}*
|
rm -f ${RPM_BUILD_ROOT}${MPI_HOME}/lib/libboost_{python,{w,}serialization}*
|
||||||
rm -f ${RPM_BUILD_ROOT}${MPI_HOME}/lib/libboost_numpy*
|
rm -f ${RPM_BUILD_ROOT}${MPI_HOME}/lib/libboost_numpy*
|
||||||
|
|
||||||
# Remove cmake files (some of these are duplicates of the generic bits anyway).
|
|
||||||
rm -r ${RPM_BUILD_ROOT}${MPI_HOME}/lib/cmake
|
|
||||||
|
|
||||||
%{_openmpi_unload}
|
%{_openmpi_unload}
|
||||||
export PATH=/bin${PATH:+:}$PATH
|
export PATH=/bin${PATH:+:}$PATH
|
||||||
%endif
|
%endif
|
||||||
@ -859,9 +856,6 @@ mv ${RPM_BUILD_ROOT}${MPI_HOME}/lib/boost-python%{python3_version}/mpi.so \
|
|||||||
rm -f ${RPM_BUILD_ROOT}${MPI_HOME}/lib/libboost_{python,{w,}serialization}*
|
rm -f ${RPM_BUILD_ROOT}${MPI_HOME}/lib/libboost_{python,{w,}serialization}*
|
||||||
rm -f ${RPM_BUILD_ROOT}${MPI_HOME}/lib/libboost_numpy*
|
rm -f ${RPM_BUILD_ROOT}${MPI_HOME}/lib/libboost_numpy*
|
||||||
|
|
||||||
# Remove cmake files (some of these are duplicates of the generic bits anyway).
|
|
||||||
rm -r ${RPM_BUILD_ROOT}${MPI_HOME}/lib/cmake
|
|
||||||
|
|
||||||
%{_mpich_unload}
|
%{_mpich_unload}
|
||||||
export PATH=/bin${PATH:+:}$PATH
|
export PATH=/bin${PATH:+:}$PATH
|
||||||
%endif
|
%endif
|
||||||
@ -887,9 +881,6 @@ echo ============================= install serial ==================
|
|||||||
rm -f $RPM_BUILD_ROOT%{_libdir}/libboost_thread.so
|
rm -f $RPM_BUILD_ROOT%{_libdir}/libboost_thread.so
|
||||||
install -p -m 644 $(basename %{SOURCE1}) $RPM_BUILD_ROOT%{_libdir}/
|
install -p -m 644 $(basename %{SOURCE1}) $RPM_BUILD_ROOT%{_libdir}/
|
||||||
|
|
||||||
# Remove cmake files until we know somebody wants them.
|
|
||||||
rm -r $RPM_BUILD_ROOT/%{_libdir}/cmake
|
|
||||||
|
|
||||||
echo ============================= install Boost.Build ==================
|
echo ============================= install Boost.Build ==================
|
||||||
(cd tools/build
|
(cd tools/build
|
||||||
./b2 --prefix=$RPM_BUILD_ROOT%{_prefix} install
|
./b2 --prefix=$RPM_BUILD_ROOT%{_prefix} install
|
||||||
@ -1152,6 +1143,7 @@ fi
|
|||||||
%files devel
|
%files devel
|
||||||
%license LICENSE_1_0.txt
|
%license LICENSE_1_0.txt
|
||||||
%{_includedir}/%{name}
|
%{_includedir}/%{name}
|
||||||
|
%{_libdir}/cmake
|
||||||
%{_libdir}/libboost_atomic.so
|
%{_libdir}/libboost_atomic.so
|
||||||
%{_libdir}/libboost_chrono.so
|
%{_libdir}/libboost_chrono.so
|
||||||
%{_libdir}/libboost_container.so
|
%{_libdir}/libboost_container.so
|
||||||
@ -1219,6 +1211,7 @@ fi
|
|||||||
|
|
||||||
%files openmpi-devel
|
%files openmpi-devel
|
||||||
%license LICENSE_1_0.txt
|
%license LICENSE_1_0.txt
|
||||||
|
%{_libdir}/openmpi/lib/cmake
|
||||||
%{_libdir}/openmpi/lib/libboost_mpi.so
|
%{_libdir}/openmpi/lib/libboost_mpi.so
|
||||||
%{_libdir}/openmpi/lib/libboost_graph_parallel.so
|
%{_libdir}/openmpi/lib/libboost_graph_parallel.so
|
||||||
|
|
||||||
@ -1250,6 +1243,7 @@ fi
|
|||||||
|
|
||||||
%files mpich-devel
|
%files mpich-devel
|
||||||
%license LICENSE_1_0.txt
|
%license LICENSE_1_0.txt
|
||||||
|
%{_libdir}/mpich/lib/cmake
|
||||||
%{_libdir}/mpich/lib/libboost_mpi.so
|
%{_libdir}/mpich/lib/libboost_mpi.so
|
||||||
%{_libdir}/mpich/lib/libboost_graph_parallel.so
|
%{_libdir}/mpich/lib/libboost_graph_parallel.so
|
||||||
|
|
||||||
@ -1287,6 +1281,9 @@ fi
|
|||||||
%{_mandir}/man1/b2.1*
|
%{_mandir}/man1/b2.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jan 16 2025 Patrick Palka <ppalka@redhat.com> - 1.75.0-10
|
||||||
|
- Re-add the CMake config files provided by Boost
|
||||||
|
|
||||||
* Fri Nov 22 2024 Patrick Palka <ppalka@redhat.com> - 1.75.0-9
|
* Fri Nov 22 2024 Patrick Palka <ppalka@redhat.com> - 1.75.0-9
|
||||||
- Apply upstream Boost.Asio patch to resolve RHEL-67973
|
- Apply upstream Boost.Asio patch to resolve RHEL-67973
|
||||||
- Fix %patch directive compatibility with RPM 4.20
|
- Fix %patch directive compatibility with RPM 4.20
|
||||||
|
Loading…
Reference in New Issue
Block a user