2021-11-02 02:24:39 +00:00
|
|
|
Name: prrte
|
2023-10-27 02:24:10 +00:00
|
|
|
Version: 3.0.2
|
2024-12-12 11:30:02 +00:00
|
|
|
Release: 8%{?dist}
|
2021-11-02 02:24:39 +00:00
|
|
|
Summary: PMIx Reference RunTime Environment (PRRTE)
|
2023-11-08 07:11:42 +00:00
|
|
|
# src/mca/prtereachable/netlink/reachable_netlink_utils_common.c is BSD-2-Clause
|
|
|
|
# -devel related licenses:
|
|
|
|
# src/docs/show-help-files/_build/text/_static/jquery.js is MIT
|
|
|
|
# docs/_build/html/_static/js/html5shiv.min.js is MIT OR GPL-2.0-or-later
|
|
|
|
# docs/_build/html/_static/css/fonts/* are (OFL-1.1 OR MIT)
|
|
|
|
License: BSD-3-Clause-Open-MPI AND BSD-2-Clause
|
2021-11-02 02:24:39 +00:00
|
|
|
URL: https://github.com/openpmix/%{name}
|
2023-10-27 02:24:10 +00:00
|
|
|
Source0: https://github.com/openpmix/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.bz2
|
2021-11-02 02:24:39 +00:00
|
|
|
|
|
|
|
BuildRequires: flex
|
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: make
|
2022-01-24 02:43:53 +00:00
|
|
|
BuildRequires: hwloc-devel
|
2022-01-24 02:23:48 +00:00
|
|
|
BuildRequires: libevent-devel
|
2023-10-27 02:24:10 +00:00
|
|
|
BuildRequires: pmix-devel >= 4.2.2
|
2022-04-26 03:06:43 +00:00
|
|
|
# For pmixcc - https://bugzilla.redhat.com/show_bug.cgi?id=2078048
|
|
|
|
BuildRequires: pmix-tools
|
2021-11-02 02:24:39 +00:00
|
|
|
BuildRequires: perl-interpreter
|
|
|
|
BuildRequires: torque-devel
|
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
|
2024-01-31 19:15:03 +00:00
|
|
|
# openmpi, pmix no longer support 32-bit platforms
|
|
|
|
ExcludeArch: %{ix86}
|
|
|
|
|
2021-11-02 02:24:39 +00:00
|
|
|
%description
|
|
|
|
PRRTE is the PMIx Reference Run Time Environment.
|
|
|
|
|
|
|
|
The project is formally referred to in documentation by "PRRTE", and
|
|
|
|
the GitHub repository is "openpmix/%{name}".
|
|
|
|
|
|
|
|
However, we have found that most users do not like typing the two
|
|
|
|
consecutive "r"s in the name. Hence, all of the internal API symbols,
|
|
|
|
environment variables, MCA frameworks, and CLI executables all use the
|
|
|
|
abbreviated "prte" (one "r", not two) for convenience.
|
|
|
|
|
|
|
|
|
|
|
|
%package libs
|
|
|
|
Summary: Libraries for %{name}
|
|
|
|
|
|
|
|
%description libs
|
|
|
|
Runtime libraries for %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
2023-11-08 07:11:42 +00:00
|
|
|
License: BSD-3-Clause-Open-MPI AND BSD-2-Clause AND MIT AND (MIT OR GPL-2.0-or-later) AND (OFL-1.1 OR MIT)
|
2021-11-02 02:24:39 +00:00
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2023-10-27 02:24:10 +00:00
|
|
|
%setup -q -n %{name}-%{version}
|
2021-11-02 02:24:39 +00:00
|
|
|
|
|
|
|
# touch lexer sources to recompile them
|
|
|
|
find src -name \*.l -print -exec touch --no-create {} \;
|
|
|
|
|
|
|
|
# Remove “BSD with advertising” licensed qsort implementation, which was only
|
|
|
|
# needed to work around ancient Solaris bugs. The typedef keeps the translation
|
|
|
|
# unit from being empty.
|
|
|
|
echo '' > src/util/qsort.h
|
|
|
|
echo 'typedef int x;' > src/util/qsort.c
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
2024-12-12 11:30:02 +00:00
|
|
|
%ifarch x86_64
|
2024-12-10 20:18:22 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -fcf-protection"
|
|
|
|
export CPPFLAGS
|
2024-12-12 11:30:02 +00:00
|
|
|
%endif
|
2024-12-10 20:18:22 +00:00
|
|
|
|
2021-11-02 02:24:39 +00:00
|
|
|
%configure \
|
|
|
|
--sysconfdir=%{_sysconfdir}/prte \
|
|
|
|
--disable-static \
|
|
|
|
--disable-silent-rules \
|
|
|
|
--enable-shared \
|
|
|
|
--with-sge
|
|
|
|
|
|
|
|
%make_build
|
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
%make_build check
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%make_install
|
|
|
|
|
|
|
|
# remove libtool archives
|
|
|
|
find %{buildroot} -name '*.la' -delete
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
2023-10-27 02:24:10 +00:00
|
|
|
%doc README.md
|
2021-11-02 02:24:39 +00:00
|
|
|
%{_bindir}/prte
|
|
|
|
%{_bindir}/prte_info
|
|
|
|
%{_bindir}/prted
|
|
|
|
%{_bindir}/prterun
|
|
|
|
%{_bindir}/prun
|
|
|
|
%{_bindir}/pterm
|
|
|
|
%{_mandir}/man1/*.1*
|
2023-10-27 02:24:10 +00:00
|
|
|
%{_mandir}/man5/*.5*
|
2021-11-02 02:24:39 +00:00
|
|
|
|
|
|
|
%files libs
|
|
|
|
%license LICENSE
|
|
|
|
%dir %{_sysconfdir}/prte
|
2023-10-27 02:24:10 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/prte/*
|
2021-11-02 02:24:39 +00:00
|
|
|
%{_datadir}/prte/
|
2023-10-27 02:24:10 +00:00
|
|
|
%{_libdir}/lib%{name}.so.3*
|
2021-11-02 02:24:39 +00:00
|
|
|
%{_libdir}/prte/
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_bindir}/pcc
|
2023-10-27 02:24:10 +00:00
|
|
|
%{_docdir}/prrte/
|
2021-11-02 02:24:39 +00:00
|
|
|
%{_includedir}/prte*.h
|
2023-10-27 02:24:10 +00:00
|
|
|
%{_includedir}/prte/
|
2021-11-02 02:24:39 +00:00
|
|
|
%{_libdir}/lib%{name}.so
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2024-12-12 11:30:02 +00:00
|
|
|
* Thu Dec 12 2024 Kamal Heib <kheib@redhat.com> - 3.0.2-8
|
|
|
|
- Fix build failure for s390x
|
|
|
|
Resolves: RHEL-70719
|
|
|
|
|
2024-12-10 20:18:22 +00:00
|
|
|
* Tue Dec 10 2024 Kamal Heib <kheib@redhat.com> - 3.0.2-7
|
|
|
|
- Fix gaiting failure
|
|
|
|
Resolves: RHEL-70719
|
|
|
|
|
2024-10-29 16:04:30 +00:00
|
|
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 3.0.2-6
|
|
|
|
- Bump release for October 2024 mass rebuild:
|
|
|
|
Resolves: RHEL-64018
|
|
|
|
|
2024-06-24 16:16:04 +00:00
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 3.0.2-5
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
2024-01-26 00:13:56 +00:00
|
|
|
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2024-01-21 22:27:16 +00:00
|
|
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2023-11-07 01:52:57 +00:00
|
|
|
* Tue Nov 07 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 3.0.2-2
|
|
|
|
- Drop obsolete pandoc dependency
|
|
|
|
|
2023-10-27 02:24:10 +00:00
|
|
|
* Fri Oct 27 2023 Orion Poplawski <orion@nwra.com> - 3.0.2-1
|
|
|
|
- Update to 3.0.2
|
|
|
|
|
2023-09-25 17:01:48 +00:00
|
|
|
* Mon Sep 25 2023 Michel Lind <salimma@fedoraproject.org> - 2.0.2-5
|
|
|
|
- Rebuild for pmix 4.1.3
|
|
|
|
|
2023-07-21 06:23:28 +00:00
|
|
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-01-20 10:22:21 +00:00
|
|
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-07-22 15:30:27 +00:00
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-04-23 02:16:31 +00:00
|
|
|
* Sat Apr 23 2022 Orion Poplawski <orion@nwra.com> - 2.0.2-1
|
|
|
|
- Update to 2.0.2
|
|
|
|
|
2022-01-24 02:23:48 +00:00
|
|
|
* Mon Jan 24 2022 Orion Poplawski <orion@nwra.com> - 2.0.0-5
|
2022-01-24 02:43:53 +00:00
|
|
|
- Add explicit BR on hwloc-devel and libevent-devel
|
2022-01-24 02:23:48 +00:00
|
|
|
|
2022-01-21 09:32:25 +00:00
|
|
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-11-02 02:24:39 +00:00
|
|
|
* Sun Oct 31 2021 Orion Poplawski <orion@nwra.com> - 2.0.0-3
|
|
|
|
- Explicitly list binaries
|
|
|
|
|
|
|
|
* Thu Oct 28 2021 Orion Poplawski <orion@nwra.com> - 2.0.0-2
|
|
|
|
- Split libraries into -libs sub-package
|
|
|
|
- Add BR make
|
|
|
|
- Remove old qsort
|
|
|
|
|
|
|
|
* Mon Oct 11 2021 Orion Poplawski <orion@nwra.com> - 2.0.0-1
|
|
|
|
- Initial Fedora package
|