c5e0aa
# Optional name suffix to use...we leave it off when compiling with gcc, but
c5e0aa
# for other compiled versions to install side by side, it will need a
c5e0aa
# suffix in order to keep the names from conflicting.
c5e0aa
#global _cc_name_suffix -gcc
c5e0aa
c5e0aa
%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
c5e0aa
c5e0aa
%if 0%{?fedora} >= 32 || 0%{?rhel} >= 8
c5e0aa
%bcond_with python2
c5e0aa
%else
c5e0aa
%bcond_without python2
c5e0aa
%endif
c5e0aa
c5e0aa
%ifarch aarch64 ppc64le x86_64
c5e0aa
%bcond_without ucx
c5e0aa
%else
c5e0aa
%bcond_with ucx
c5e0aa
%endif
c5e0aa
c5e0aa
# ARM 32-bit is not supported by rdma
c5e0aa
# https://bugzilla.redhat.com/show_bug.cgi?id=1780584
c5e0aa
%ifarch %{arm}
c5e0aa
%bcond_with rdma
c5e0aa
%else
c5e0aa
%bcond_without rdma
c5e0aa
%endif
c5e0aa
c5e0aa
# Run autogen - needed for some patches
c5e0aa
%bcond_without autogen
c5e0aa
c5e0aa
Name:           openmpi%{?_cc_name_suffix}
c5e0aa
Version:        4.1.1
c5e0aa
Release:        4%{?dist}
c5e0aa
Summary:        Open Message Passing Interface
c5e0aa
License:        BSD and MIT and Romio
c5e0aa
URL:            http://www.open-mpi.org/
c5e0aa
c5e0aa
# We can't use %%{name} here because of _cc_name_suffix
c5e0aa
Source0:        https://www.open-mpi.org/software/ompi/v4.1/downloads/openmpi-%{version}.tar.bz2
c5e0aa
Source1:        openmpi.module.in
c5e0aa
Source2:        openmpi.pth.py2
c5e0aa
Source3:        openmpi.pth.py3
c5e0aa
Source4:        macros.openmpi
c5e0aa
Patch1:         266189935aef4fce825d0db831b4b53accc62c32.patch
c5e0aa
Patch2:         0001-Revert-ucx-check-supported-transports-and-devices-fo.patch
c5e0aa
c5e0aa
BuildRequires:  gcc-c++
c5e0aa
BuildRequires:  gcc-gfortran
c5e0aa
BuildRequires:  make
c5e0aa
%if %{with autogen}
c5e0aa
BuildRequires:  libtool
c5e0aa
BuildRequires:  perl(Data::Dumper)
c5e0aa
BuildRequires:  perl(File::Find)
c5e0aa
%endif
c5e0aa
BuildRequires:  valgrind-devel
c5e0aa
%if %{with rdma}
c5e0aa
BuildRequires:  opensm-devel > 3.3.0
c5e0aa
BuildRequires:  rdma-core-devel
c5e0aa
%endif
c5e0aa
# Doesn't compile:
c5e0aa
# vt_dyn.cc:958:28: error: 'class BPatch_basicBlockLoop' has no member named 'getLoopHead'
c5e0aa
#                      loop->getLoopHead()->getStartAddress(), loop_stmts );
c5e0aa
#BuildRequires:  dyninst-devel
c5e0aa
BuildRequires:  hwloc-devel
c5e0aa
# So configure can find lstopo
c5e0aa
BuildRequires:  hwloc-gui
c5e0aa
BuildRequires:  java-devel
c5e0aa
# Old libevent causes issues
c5e0aa
%if !0%{?el7}
c5e0aa
BuildRequires:  libevent-devel
c5e0aa
%endif
c5e0aa
BuildRequires:  libfabric-devel
c5e0aa
%ifnarch s390 s390x
c5e0aa
BuildRequires:  papi-devel
c5e0aa
%endif
c5e0aa
BuildRequires:  perl-generators
c5e0aa
BuildRequires:  perl-interpreter
c5e0aa
BuildRequires:  perl(Getopt::Long)
c5e0aa
BuildRequires:  pmix-devel
c5e0aa
BuildRequires:  python%{python3_pkgversion}-devel
c5e0aa
%ifarch x86_64
c5e0aa
BuildRequires:  libpsm2-devel
c5e0aa
%endif
c5e0aa
%if %{with ucx}
c5e0aa
BuildRequires:  ucx-devel
c5e0aa
%endif
c5e0aa
BuildRequires:  zlib-devel
c5e0aa
%if !0%{?el7}
c5e0aa
BuildRequires:  rpm-mpi-hooks
c5e0aa
%endif
c5e0aa
c5e0aa
Provides:       mpi
c5e0aa
%if 0%{?rhel} == 7
c5e0aa
# Need this for /etc/profile.d/modules.sh
c5e0aa
Requires:       environment-modules
c5e0aa
%endif
c5e0aa
Requires:       environment(modules)
c5e0aa
# openmpi currently requires ssh to run
c5e0aa
# https://svn.open-mpi.org/trac/ompi/ticket/4228
c5e0aa
Requires:       openssh-clients
c5e0aa
c5e0aa
# Private openmpi libraries
c5e0aa
%global __provides_exclude_from %{_libdir}/openmpi/lib/(lib(mca|ompi|open-(pal|rte|trace))|openmpi/).*.so
c5e0aa
%global __requires_exclude lib(mca|ompi|open-(pal|rte|trace)|vt).*
c5e0aa
c5e0aa
%description
c5e0aa
Open MPI is an open source, freely available implementation of both the
c5e0aa
MPI-1 and MPI-2 standards, combining technologies and resources from
c5e0aa
several other projects (FT-MPI, LA-MPI, LAM/MPI, and PACX-MPI) in
c5e0aa
order to build the best MPI library available.  A completely new MPI-2
c5e0aa
compliant implementation, Open MPI offers advantages for system and
c5e0aa
software vendors, application developers, and computer science
c5e0aa
researchers. For more information, see http://www.open-mpi.org/ .
c5e0aa
c5e0aa
%package devel
c5e0aa
Summary:	Development files for openmpi
c5e0aa
Requires:	%{name} = %{version}-%{release}, gcc-gfortran
c5e0aa
Provides:	mpi-devel
c5e0aa
%if !0%{?el7}
c5e0aa
Requires:	rpm-mpi-hooks
c5e0aa
# Make sure this package is rebuilt with correct Python version when updating
c5e0aa
# Otherwise mpi.req from rpm-mpi-hooks doesn't work
c5e0aa
# https://bugzilla.redhat.com/show_bug.cgi?id=1705296
c5e0aa
Requires:	(python(abi) = %{python3_version} if python3)
c5e0aa
%endif
c5e0aa
c5e0aa
%description devel
c5e0aa
Contains development headers and libraries for openmpi.
c5e0aa
c5e0aa
%package java
c5e0aa
Summary:        Java library
c5e0aa
Requires:       %{name} = %{version}-%{release}
c5e0aa
Requires:       java-headless
c5e0aa
c5e0aa
%description java
c5e0aa
Java library.
c5e0aa
c5e0aa
%package java-devel
c5e0aa
Summary:        Java development files for openmpi
c5e0aa
Requires:       %{name}-java = %{version}-%{release}
c5e0aa
Requires:       java-devel
c5e0aa
c5e0aa
%description java-devel
c5e0aa
Contains development wrapper for compiling Java with openmpi.
c5e0aa
c5e0aa
# We set this to for convenience, since this is the unique dir we use for this
c5e0aa
# particular package, version, compiler
c5e0aa
%global namearch openmpi-%{_arch}%{?_cc_name_suffix}
c5e0aa
c5e0aa
%if %{with python2}
c5e0aa
%package -n python2-openmpi
c5e0aa
Summary:        OpenMPI support for Python 2
c5e0aa
BuildRequires:  python2-devel
c5e0aa
Requires:       %{name} = %{version}-%{release}
c5e0aa
Requires:       python(abi) = %{python2_version}
c5e0aa
c5e0aa
%description -n python2-openmpi
c5e0aa
OpenMPI support for Python 2.
c5e0aa
%endif
c5e0aa
c5e0aa
%package -n python%{python3_pkgversion}-openmpi
c5e0aa
Summary:        OpenMPI support for Python 3
c5e0aa
Requires:       %{name} = %{version}-%{release}
c5e0aa
Requires:       python(abi) = %{python3_version}
c5e0aa
c5e0aa
%description -n python%{python3_pkgversion}-openmpi
c5e0aa
OpenMPI support for Python 3.
c5e0aa
c5e0aa
c5e0aa
%prep
c5e0aa
%autosetup -p1 -n %{name}-%{version}
c5e0aa
%if %{with autogen}
c5e0aa
./autogen.pl --force
c5e0aa
%endif
c5e0aa
c5e0aa
c5e0aa
%build
c5e0aa
%set_build_flags
c5e0aa
./configure --prefix=%{_libdir}/%{name} \
c5e0aa
	--mandir=%{_mandir}/%{namearch} \
c5e0aa
	--includedir=%{_includedir}/%{namearch} \
c5e0aa
	--sysconfdir=%{_sysconfdir}/%{namearch} \
c5e0aa
	--disable-silent-rules \
c5e0aa
	--enable-builtin-atomics \
c5e0aa
	--enable-mpi-cxx \
c5e0aa
	--enable-mpi-java \
c5e0aa
	--enable-mpi1-compatibility \
c5e0aa
	--with-sge \
c5e0aa
	--with-valgrind \
c5e0aa
	--enable-memchecker \
c5e0aa
	--with-hwloc=/usr \
c5e0aa
%if !0%{?el7}
c5e0aa
	--with-libevent=external \
c5e0aa
	--with-pmix=external \
c5e0aa
%endif
c5e0aa
c5e0aa
%make_build V=1
c5e0aa
c5e0aa
%install
c5e0aa
%make_install
c5e0aa
find %{buildroot}%{_libdir}/%{name}/lib -name \*.la | xargs rm
c5e0aa
find %{buildroot}%{_mandir}/%{namearch} -type f | xargs gzip -9
c5e0aa
ln -s mpicc.1.gz %{buildroot}%{_mandir}/%{namearch}/man1/mpiCC.1.gz
c5e0aa
# Remove dangling symlink
c5e0aa
rm %{buildroot}%{_mandir}/%{namearch}/man1/mpiCC.1
c5e0aa
mkdir %{buildroot}%{_mandir}/%{namearch}/man{2,4,5,6,8,9,n}
c5e0aa
c5e0aa
# Make the environment-modules file
c5e0aa
mkdir -p %{buildroot}%{_datadir}/modulefiles/mpi
c5e0aa
# Since we're doing our own substitution here, use our own definitions.
c5e0aa
sed 's#@LIBDIR@#%{_libdir}/%{name}#;
c5e0aa
     s#@ETCDIR@#%{_sysconfdir}/%{namearch}#;
c5e0aa
     s#@FMODDIR@#%{_fmoddir}/%{name}#;
c5e0aa
     s#@INCDIR@#%{_includedir}/%{namearch}#;
c5e0aa
     s#@MANDIR@#%{_mandir}/%{namearch}#;
c5e0aa
%if %{with python2}
c5e0aa
     s#@PY2SITEARCH@#%{python2_sitearch}/%{name}#;
c5e0aa
%else
c5e0aa
     /@PY2SITEARCH@/d;
c5e0aa
%endif
c5e0aa
     s#@PY3SITEARCH@#%{python3_sitearch}/%{name}#;
c5e0aa
     s#@COMPILER@#openmpi-%{_arch}%{?_cc_name_suffix}#;
c5e0aa
     s#@SUFFIX@#%{?_cc_name_suffix}_openmpi#' \
c5e0aa
     <%{SOURCE1} \
c5e0aa
     >%{buildroot}%{_datadir}/modulefiles/mpi/%{namearch}
c5e0aa
c5e0aa
# make the rpm config file
c5e0aa
install -Dpm 644 %{SOURCE4} %{buildroot}/%{macrosdir}/macros.%{namearch}
c5e0aa
c5e0aa
# Link the fortran module to proper location
c5e0aa
mkdir -p %{buildroot}%{_fmoddir}/%{name}
c5e0aa
for mod in %{buildroot}%{_libdir}/%{name}/lib/*.mod
c5e0aa
do
c5e0aa
  modname=$(basename $mod)
c5e0aa
  ln -s ../../../%{name}/lib/${modname} %{buildroot}/%{_fmoddir}/%{name}/
c5e0aa
done
c5e0aa
c5e0aa
# Link the pkgconfig files into the main namespace as well
c5e0aa
mkdir -p %{buildroot}%{_libdir}/pkgconfig
c5e0aa
cd %{buildroot}%{_libdir}/pkgconfig
c5e0aa
ln -s ../%{name}/lib/pkgconfig/*.pc .
c5e0aa
cd -
c5e0aa
c5e0aa
# Remove extraneous wrapper link libraries (bug 814798)
c5e0aa
sed -i -e s/-ldl// -e s/-lhwloc// \
c5e0aa
  %{buildroot}%{_libdir}/%{name}/share/openmpi/*-wrapper-data.txt
c5e0aa
c5e0aa
# install .pth files
c5e0aa
%if %{with python2}
c5e0aa
mkdir -p %{buildroot}/%{python2_sitearch}/%{name}
c5e0aa
install -pDm0644 %{SOURCE2} %{buildroot}/%{python2_sitearch}/openmpi.pth
c5e0aa
%endif
c5e0aa
mkdir -p %{buildroot}/%{python3_sitearch}/%{name}
c5e0aa
install -pDm0644 %{SOURCE3} %{buildroot}/%{python3_sitearch}/openmpi.pth
c5e0aa
c5e0aa
%check
c5e0aa
make check
c5e0aa
c5e0aa
%files
c5e0aa
%license LICENSE
c5e0aa
%dir %{_libdir}/%{name}
c5e0aa
%dir %{_sysconfdir}/%{namearch}
c5e0aa
%dir %{_libdir}/%{name}/bin
c5e0aa
%dir %{_libdir}/%{name}/lib
c5e0aa
%dir %{_libdir}/%{name}/lib/openmpi
c5e0aa
%dir %{_mandir}/%{namearch}
c5e0aa
%dir %{_mandir}/%{namearch}/man*
c5e0aa
%config(noreplace) %{_sysconfdir}/%{namearch}/*
c5e0aa
%{_libdir}/%{name}/bin/mpi[er]*
c5e0aa
%{_libdir}/%{name}/bin/ompi*
c5e0aa
%{_libdir}/%{name}/bin/orte[-dr_]*
c5e0aa
%if %{with ucx}
c5e0aa
%{_libdir}/%{name}/bin/oshmem_info
c5e0aa
%{_libdir}/%{name}/bin/oshrun
c5e0aa
%{_libdir}/%{name}/bin/shmemrun
c5e0aa
%endif
c5e0aa
%{_libdir}/%{name}/lib/*.so.40*
c5e0aa
%{_libdir}/%{name}/lib/libmca_common_ofi.so.10*
c5e0aa
%{_libdir}/%{name}/lib/libmca*.so.41*
c5e0aa
%{_libdir}/%{name}/lib/libmca*.so.50*
c5e0aa
%if 0%{?el7}
c5e0aa
%{_libdir}/%{name}/lib/pmix/
c5e0aa
%endif
c5e0aa
%{_mandir}/%{namearch}/man1/mpi[er]*
c5e0aa
%{_mandir}/%{namearch}/man1/ompi*
c5e0aa
%{_mandir}/%{namearch}/man1/orte[-dr_]*
c5e0aa
%if %{with ucx}
c5e0aa
%{_mandir}/%{namearch}/man1/oshmem_info*
c5e0aa
%{_mandir}/%{namearch}/man1/oshrun*
c5e0aa
%{_mandir}/%{namearch}/man1/shmemrun*
c5e0aa
%endif
c5e0aa
%{_mandir}/%{namearch}/man7/ompi_*
c5e0aa
%{_mandir}/%{namearch}/man7/opal_*
c5e0aa
%{_mandir}/%{namearch}/man7/orte*
c5e0aa
%{_libdir}/%{name}/lib/openmpi/*
c5e0aa
%{_datadir}/modulefiles/mpi/
c5e0aa
%dir %{_libdir}/%{name}/share
c5e0aa
%dir %{_libdir}/%{name}/share/openmpi
c5e0aa
%{_libdir}/%{name}/share/openmpi/amca-param-sets
c5e0aa
%{_libdir}/%{name}/share/openmpi/help*.txt
c5e0aa
%if %{with rdma}
c5e0aa
%{_libdir}/%{name}/share/openmpi/mca-btl-openib-device-params.ini
c5e0aa
%endif
c5e0aa
%if 0%{?el7}
c5e0aa
%{_libdir}/%{name}/share/pmix/
c5e0aa
%endif
c5e0aa
c5e0aa
%files devel
c5e0aa
%dir %{_includedir}/%{namearch}
c5e0aa
%{_libdir}/%{name}/bin/aggregate_profile.pl
c5e0aa
%{_libdir}/%{name}/bin/mpi[cCf]*
c5e0aa
%{_libdir}/%{name}/bin/opal_*
c5e0aa
%{_libdir}/%{name}/bin/orte[cCf]*
c5e0aa
%if %{with ucx}
c5e0aa
%{_libdir}/%{name}/bin/osh[cCf]*
c5e0aa
%endif
c5e0aa
%{_libdir}/%{name}/bin/profile2mat.pl
c5e0aa
%if %{with ucx}
c5e0aa
%{_libdir}/%{name}/bin/shmem[cCf]*
c5e0aa
%endif
c5e0aa
%{_includedir}/%{namearch}/*
c5e0aa
%{_fmoddir}/%{name}/
c5e0aa
%{_libdir}/%{name}/lib/*.so
c5e0aa
%{_libdir}/%{name}/lib/*.mod
c5e0aa
%{_libdir}/%{name}/lib/pkgconfig/
c5e0aa
%{_libdir}/pkgconfig/*.pc
c5e0aa
%{_mandir}/%{namearch}/man1/mpi[cCf]*
c5e0aa
%if %{with ucx}
c5e0aa
%{_mandir}/%{namearch}/man1/osh[cCf]*
c5e0aa
%{_mandir}/%{namearch}/man1/shmem[cCf]*
c5e0aa
%endif
c5e0aa
%{_mandir}/%{namearch}/man1/opal_*
c5e0aa
%{_mandir}/%{namearch}/man3/*
c5e0aa
%{_libdir}/%{name}/share/openmpi/openmpi-valgrind.supp
c5e0aa
%{_libdir}/%{name}/share/openmpi/*-wrapper-data.txt
c5e0aa
%{macrosdir}/macros.%{namearch}
c5e0aa
c5e0aa
%files java
c5e0aa
%{_libdir}/%{name}/lib/mpi.jar
c5e0aa
c5e0aa
%files java-devel
c5e0aa
%{_libdir}/%{name}/bin/mpijavac
c5e0aa
%{_libdir}/%{name}/bin/mpijavac.pl
c5e0aa
# Currently this only contaings openmpi/javadoc
c5e0aa
%{_libdir}/%{name}/share/doc/
c5e0aa
%{_mandir}/%{namearch}/man1/mpijavac.1.gz
c5e0aa
c5e0aa
%if %{with python2}
c5e0aa
%files -n python2-openmpi
c5e0aa
%dir %{python2_sitearch}/%{name}
c5e0aa
%{python2_sitearch}/openmpi.pth
c5e0aa
%endif
c5e0aa
c5e0aa
%files -n python%{python3_pkgversion}-openmpi
c5e0aa
%dir %{python3_sitearch}/%{name}
c5e0aa
%{python3_sitearch}/openmpi.pth
c5e0aa
c5e0aa
c5e0aa
%changelog
c5e0aa
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 4.1.1-4
c5e0aa
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
c5e0aa
  Related: rhbz#1991688
c5e0aa
c5e0aa
* Tue Jul 20 2021 Honggang Li <honli@redhat.com> - 4.1.1-3
c5e0aa
- Enable gating test
c5e0aa
- Related: rhbz#1869443
c5e0aa
c5e0aa
* Thu Jul 15 2021 Honggang Li <honli@redhat.com> - 4.1.1-2
c5e0aa
- Update to 4.1.1
c5e0aa
- Enable psm2 support
c5e0aa
- fbtl-posix: link to common_ompio
c5e0aa
- Revert upstream commit c36d7459b6331c4d
c5e0aa
- Resolve: rhbz#1869443
c5e0aa
c5e0aa
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 4.1.0-7
c5e0aa
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
c5e0aa
c5e0aa
* Mon Mar 08 2021 Honggang Li <honli@redhat.com> - 4.1.0-6
c5e0aa
- RHEL9 Beta no longer supports PSM, PSM2 or orangeFS
c5e0aa
- Resolve: rhbz#1915778
c5e0aa
c5e0aa
* Thu Jan 28 2021 Orion Poplawski <orion@nwra.com> - 4.1.0-5
c5e0aa
- Add upstream patch for generalized requests
c5e0aa
c5e0aa
* Thu Jan 28 2021 Orion Poplawski <orion@nwra.com> - 4.1.0-4
c5e0aa
- Add upstream patch to fix AVX library linkage
c5e0aa
c5e0aa
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-3
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
c5e0aa
c5e0aa
* Sun Jan 24 2021 Orion Poplawski <orion@nwra.com> - 4.1.0-2
c5e0aa
- Use set_build_flags macro
c5e0aa
- Drop old opt_ macros
c5e0aa
c5e0aa
* Sun Jan 24 2021 Orion Poplawski <orion@nwra.com> - 4.1.0-1
c5e0aa
- Update to 4.1.0
c5e0aa
c5e0aa
* Wed Sep 23 2020 Orion Poplawski <orion@nwra.com> - 4.0.5-2
c5e0aa
- Rebuild for libevent 2.1.12
c5e0aa
c5e0aa
* Wed Sep 02 2020 Orion Poplawski <orion@nwra.com> - 4.0.5-1
c5e0aa
- Update to 4.0.5
c5e0aa
c5e0aa
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.4-3
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
c5e0aa
c5e0aa
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 4.0.4-2
c5e0aa
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
c5e0aa
c5e0aa
* Wed Jun 17 2020 Orion Poplawski <orion@nwra.com> - 4.0.4-1
c5e0aa
- Update to 4.0.4
c5e0aa
c5e0aa
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 4.0.4-0.3.rc1
c5e0aa
- Rebuilt for Python 3.9
c5e0aa
c5e0aa
* Sun May 24 2020 Orion Poplawski <orion@nwra.com> - 4.0.4-0.2.rc1
c5e0aa
- Set OMPI_MCA_rmaps_base_oversubscribe=1 in %%_openmpi_load (bz#1839571)
c5e0aa
c5e0aa
* Sun May 10 2020 Orion Poplawski <orion@nwra.com> - 4.0.4-0.1.rc1
c5e0aa
- Update to 4.0.4 rc1
c5e0aa
c5e0aa
* Thu Mar 05 2020 Orion Poplawski <orion@nwra.com> - 4.0.3x-1
c5e0aa
- Update to 4.0.3 (use x to avoid epoch)
c5e0aa
c5e0aa
* Sun Mar 01 2020 Orion Poplawski <orion@nwra.com> - 4.0.3rc4-1
c5e0aa
- Update to 4.0.3rc4
c5e0aa
c5e0aa
* Sat Feb 1 2020 Orion Poplawski <orion@nwra.com> - 4.0.3rc3-1
c5e0aa
- Update to 4.0.3rc3
c5e0aa
c5e0aa
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.2-5
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
c5e0aa
c5e0aa
* Tue Dec 10 2019 Dominik Mierzejewski <rpm@greysector.net> - 4.0.2-4
c5e0aa
- disable rdma on ARM 32-bit (bz#1780584)
c5e0aa
c5e0aa
* Sun Nov 24 2019 Orion Poplawski <orion@nwra.com> - 4.0.2-3
c5e0aa
- Add upstream fix for error in calculating aggregators in 32bit mode
c5e0aa
c5e0aa
* Fri Nov 15 2019 Orion Poplawski <orion@nwra.com> - 4.0.2-2
c5e0aa
- Drop python2 for Fedora 32+ (bz#1773125)
c5e0aa
c5e0aa
* Mon Oct 7 2019 Philip Kovacs <pkfed@fedoraproject.org> - 4.0.2-1
c5e0aa
- Update to 4.0.2
c5e0aa
c5e0aa
* Sat Sep 14 2019 Orion Poplawski <orion@nwra.com> - 4.0.2-0.4.rc2
c5e0aa
- Update to 4.0.2rc2
c5e0aa
- Re-enable C++ bindings on power64
c5e0aa
c5e0aa
* Fri Sep 6 2019 Philip Kovacs <pkfed@fedoraproject.org> - 4.0.2-0.3.rc1
c5e0aa
- Rebuild for annobin update to correct aarch64 build (bug #1748529)
c5e0aa
c5e0aa
* Fri Aug 30 2019 Philip Kovacs <pkfed@fedoraproject.org> - 4.0.2-0.2.rc1
c5e0aa
- Apply upstream PR 6946 to avoid linking to __mmap
c5e0aa
- Add build deps to run upstream autogen.pl
c5e0aa
- Remove embedded tabs in the spec
c5e0aa
c5e0aa
* Thu Aug 29 2019 Philip Kovacs <pkfed@fedoraproject.org> - 4.0.2-0.1.rc1
c5e0aa
- Update to 4.0.2rc1
c5e0aa
- Closes bug #1746564
c5e0aa
c5e0aa
* Thu Aug 29 2019 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 4.0.1-11
c5e0aa
- Fix MANPATH so normal modules can still be loaded (#1564899)
c5e0aa
c5e0aa
* Sun Aug 25 2019 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 4.0.1-10
c5e0aa
- Rebuilt for hwloc-2.0
c5e0aa
c5e0aa
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 4.0.1-9
c5e0aa
- Rebuilt for Python 3.8
c5e0aa
c5e0aa
* Fri Aug 9 2019 Philip Kovacs <pkfed@fedoraproject.org> - 4.0.1-8
c5e0aa
- Remove torque support (torque retired: bug #1676147)
c5e0aa
c5e0aa
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-7
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
c5e0aa
c5e0aa
* Fri Jun 21 2019 Orion Poplawski <orion@nwra.com> - 4.0.1-6
c5e0aa
- Rebuild for libfabric 1.8
c5e0aa
- Re-enable UCX, hopefully issue fixed in 1.5.2
c5e0aa
c5e0aa
* Mon May 27 2019 Orion Poplawski <orion@nwra.com> - 4.0.1-5
c5e0aa
- Drop UCX support for now
c5e0aa
c5e0aa
* Wed May 15 2019 Orion Poplawski <orion@nwra.com> - 4.0.1-4
c5e0aa
- Add upstream patch OSC/UCX: use correct rkey for atomic_fadd in rget/rput
c5e0aa
c5e0aa
* Wed May 15 2019 Orion Poplawski <orion@nwra.com> - 4.0.1-3
c5e0aa
- Add upstream patch to fix issue with UCX usage in BTL/UCT
c5e0aa
c5e0aa
* Tue May  7 2019 Orion Poplawski <orion@nwra.com> - 4.0.1-2
c5e0aa
- Add a guard for python3 version (#1705296)
c5e0aa
- Add requires on python(abi) to python packages
c5e0aa
c5e0aa
* Sun Apr 28 2019 Orion Poplawski <orion@nwra.com> - 4.0.1-1
c5e0aa
- Update to 4.0.1
c5e0aa
c5e0aa
* Sun Apr 28 2019 Orion Poplawski <orion@nwra.com> - 3.1.4-1
c5e0aa
- Update to 3.1.4
c5e0aa
c5e0aa
* Mon Apr 22 2019 Björn Esser <besser82@fedoraproject.org> - 3.1.3-5
c5e0aa
- rebuilt(opensm)
c5e0aa
c5e0aa
* Wed Apr 17 2019 Christoph Junghans <junghans@votca.org> - 3.1.3-4
c5e0aa
- Rebuild to fix ibosmcomp linkage
c5e0aa
c5e0aa
* Sat Mar  2 2019 Orion Poplawski <orion@nwra.com> - 3.1.3-3
c5e0aa
- Enable valgrind on s390x
c5e0aa
- Cleanup arch conditionals
c5e0aa
c5e0aa
* Tue Feb 19 2019 Orion Poplawski <orion@nwra.com> - 3.1.3-2
c5e0aa
- Enable PVFS2/OrangeFS MPI-IO support (bug #1655010)
c5e0aa
c5e0aa
* Wed Feb 13 2019 Orion Poplawski <orion@nwra.com> - 3.1.3-1
c5e0aa
- Update to 3.1.3
c5e0aa
- Drop ppc64le patch fixed upstream
c5e0aa
- Use external libevent and pmix, except on EL7
c5e0aa
- Fix EPEL7 builds
c5e0aa
c5e0aa
* Sat Feb 2 2019 Orion Poplawski <orion@nwra.com> - 2.1.6-1
c5e0aa
- Update to 2.1.6
c5e0aa
c5e0aa
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.6-0.2.rc1
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
c5e0aa
c5e0aa
* Wed Nov 28 2018 Orion Poplawski <orion@nwra.com> - 2.1.6-0.1.rc1
c5e0aa
- Update to 2.1.6rc1
c5e0aa
c5e0aa
* Thu Oct 11 2018 Orion Poplawski <orion@nwra.com> - 2.1.5-1
c5e0aa
- Update to 2.1.5
c5e0aa
c5e0aa
* Sun Jul 22 2018 Orion Poplawski <orion@nwra.com> - 2.1.1-14
c5e0aa
- Add BR gcc-c++ (fix FTBFS bug #1605323)
c5e0aa
c5e0aa
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.1-13
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
c5e0aa
c5e0aa
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.1.1-12
c5e0aa
- Rebuilt for Python 3.7
c5e0aa
c5e0aa
* Thu May 10 2018 Troy Dawson <tdawson@redhat.com> - 2.1.1-11
c5e0aa
- Build with rdma-core-devel instead of libibcm-devel
c5e0aa
c5e0aa
* Mon Apr 30 2018 Florian Weimer <fweimer@redhat.com> - 2.1.1-10
c5e0aa
- Rebuild with new flags from redhat-rpm-config
c5e0aa
c5e0aa
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.1.1-9
c5e0aa
- Escape macros in %%changelog
c5e0aa
c5e0aa
* Mon Feb 05 2018 Orion Poplawski <orion@cora.nwra.com> - 2.1.1-8
c5e0aa
- Rebuild for rdma-core 16.2
c5e0aa
c5e0aa
* Wed Jan 31 2018 Christoph Junghans <junghans@votca.org> - 2.1.1-7
c5e0aa
- Rebuild for gfortran-8
c5e0aa
c5e0aa
* Fri Jan 12 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.1.1-6
c5e0aa
- Update Python 2 dependency declarations to new packaging standards
c5e0aa
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
c5e0aa
c5e0aa
* Wed Aug 23 2017 Adam Williamson <awilliam@redhat.com> - 2.1.1-5
c5e0aa
- Disable RDMA support on 32-bit ARM (#1484155)
c5e0aa
- Disable hanging opal_fifo test on ppc64le (gh #2526 / #2966)
c5e0aa
c5e0aa
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.1-4
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
c5e0aa
c5e0aa
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.1-3
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c5e0aa
c5e0aa
* Wed Jul 19 2017 Orion Poplawski <orion@cora.nwra.com> - 2.1.1-2
c5e0aa
- Provide pkgconfig files in the main namespace as well (1471512)
c5e0aa
c5e0aa
* Fri May 12 2017 Orion Poplawski <orion@cora.nwra.com> - 2.1.1-1
c5e0aa
- Update to 2.1.1
c5e0aa
c5e0aa
* Thu May 4 2017 Orion Poplawski <orion@cora.nwra.com> - 2.1.0-1
c5e0aa
- Update to 2.1.0
c5e0aa
c5e0aa
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-2
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
c5e0aa
c5e0aa
* Thu Feb 2 2017 Orion Poplawski <orion@cora.nwra.com> - 2.0.2-1
c5e0aa
- Update to 2.0.2
c5e0aa
c5e0aa
* Sat Jan 28 2017 Björn Esser <besser82@fedoraproject.org> - 2.0.1-7
c5e0aa
- Rebuilt for GCC-7
c5e0aa
c5e0aa
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 2.0.1-6
c5e0aa
- Rebuild for Python 3.6
c5e0aa
c5e0aa
* Wed Nov 2 2016 Orion Poplawski <orion@cora.nwra.com> - 2.0.1-5
c5e0aa
- Split python support into sub-packages (bug #1391157)
c5e0aa
c5e0aa
* Thu Oct 27 2016 Dan Horák <dan[at]danny.cz> - 2.0.1-4
c5e0aa
- Temporarily disable C++ bindings on ppc64/ppc64le (#1388561)
c5e0aa
c5e0aa
* Mon Oct 24 2016 Orion Poplawski <orion@cora.nwra.com> - 2.0.1-3
c5e0aa
- Fix License tag format
c5e0aa
- Use /usr/share/modulefiles for modulefile install location
c5e0aa
c5e0aa
* Mon Oct 24 2016 Orion Poplawski <orion@cora.nwra.com> - 2.0.1-2
c5e0aa
- Add upstream patch for thread wait issue with mpi4py
c5e0aa
c5e0aa
* Fri Oct 21 2016 Orion Poplawski <orion@cora.nwra.com> - 2.0.1-1
c5e0aa
- Update to 2.0.1
c5e0aa
c5e0aa
* Thu Oct 20 2016 Orion Poplawski <orion@cora.nwra.com> - 1.10.4-4
c5e0aa
- Support s390(x) (bug #1358701)
c5e0aa
c5e0aa
* Thu Oct 20 2016 Orion Poplawski <orion@cora.nwra.com> - 1.10.4-3
c5e0aa
- Enable psm/psm2 support on x86_64 (bug #1263655)
c5e0aa
c5e0aa
* Wed Oct 19 2016 Orion Poplawski <orion@cora.nwra.com> - 1.10.4-2
c5e0aa
- Enable MPI_THREAD_MULTIPLE support (bug #1369989)
c5e0aa
c5e0aa
* Wed Oct 19 2016 Orion Poplawski <orion@cora.nwra.com> - 1.10.4-1
c5e0aa
- Update to 1.10.4
c5e0aa
c5e0aa
* Thu Sep 15 2016 Orion Poplawski <orion@cora.nwra.com> - 1.10.3-3
c5e0aa
- Rebuild for papi 5.5.0
c5e0aa
c5e0aa
* Fri Jun 24 2016 Orion Poplawski <orion@cora.nwra.com> - 1.10.3-2
c5e0aa
- Use bundled libevent, system version causes issues (bug #1235044)
c5e0aa
c5e0aa
* Wed Jun 15 2016 Orion Poplawski <orion@cora.nwra.com> - 1.10.3-1
c5e0aa
- Update to 1.10.3
c5e0aa
- New javadoc location
c5e0aa
c5e0aa
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.2-3
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c5e0aa
c5e0aa
* Tue Jan 26 2016 Orion Poplawski <orion@cora.nwra.com> - 1.10.2-2
c5e0aa
- Rebuild for papi 5.4.3
c5e0aa
c5e0aa
* Thu Jan 21 2016 Orion Poplawski <orion@cora.nwra.com> - 1.10.2-1
c5e0aa
- Update to 1.10.2
c5e0aa
- Drop upsream nbc_copy patch
c5e0aa
c5e0aa
* Tue Nov 10 2015 Orion Poplawski <orion@cora.nwra.com> - 1.10.1-3
c5e0aa
- Add upstream patch to fix zero size message
c5e0aa
c5e0aa
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.1-2
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
c5e0aa
c5e0aa
* Thu Nov 5 2015 Orion Poplawski <orion@cora.nwra.com> - 1.10.1-1
c5e0aa
- Update to 1.10.1
c5e0aa
- Require environment(modules)
c5e0aa
- Fixup fortran module install (bug #1154982)
c5e0aa
c5e0aa
* Tue Oct 6 2015 Orion Poplawski <orion@cora.nwra.com> - 1.10.0-3
c5e0aa
- Do not set CFLAGS in %%_openmpi_load
c5e0aa
c5e0aa
* Wed Sep 16 2015 Orion Poplawski <orion@cora.nwra.com> - 1.10.0-2
c5e0aa
- Add patch to add needed opal/util/argv.h includes
c5e0aa
c5e0aa
* Tue Sep 15 2015 Orion Poplawski <orion@cora.nwra.com> - 1.10.0-1
c5e0aa
- Update to 1.10.0
c5e0aa
c5e0aa
* Thu Aug 27 2015 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.8.8-5
c5e0aa
- Use .pth files to set the python path (https://fedorahosted.org/fpc/ticket/563)
c5e0aa
c5e0aa
* Mon Aug 24 2015 Orion Poplawski <orion@cora.nwra.com> 1.8.8-4
c5e0aa
- Disable valgrind only on s390
c5e0aa
c5e0aa
* Mon Aug 17 2015 Orion Poplawski <orion@cora.nwra.com> 1.8.8-3
c5e0aa
- Do not filter libvt* provides as some dependencies link to it
c5e0aa
c5e0aa
* Mon Aug 10 2015 Sandro Mani <manisandro@gmail.com> - 1.8.8-2
c5e0aa
- Require, BuildRequire: rpm-mpi-hooks
c5e0aa
c5e0aa
* Mon Aug 10 2015 Orion Poplawski <orion@cora.nwra.com> 1.8.8-1
c5e0aa
- Update to 1.8.8
c5e0aa
- Drop atomic patch applied upstream
c5e0aa
c5e0aa
* Wed Jul 15 2015 Orion Poplawski <orion@cora.nwra.com> 1.8.7-1
c5e0aa
- Update to 1.8.7
c5e0aa
c5e0aa
* Tue Jun 23 2015 Orion Poplawski <orion@cora.nwra.com> 1.8.6-1
c5e0aa
- Update to 1.8.6
c5e0aa
c5e0aa
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.5-2
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c5e0aa
c5e0aa
* Tue May 5 2015 Orion Poplawski <orion@cora.nwra.com> 1.8.5-1
c5e0aa
- Update to 1.8.5
c5e0aa
c5e0aa
* Fri May 1 2015 Orion Poplawski <orion@cora.nwra.com> 1.8.5-0.2.rc3
c5e0aa
- Update to 1.8.5rc3
c5e0aa
c5e0aa
* Sun Apr 5 2015 Orion Poplawski <orion@cora.nwra.com> 1.8.5-0.1.rc1
c5e0aa
- Update to 1.8.5rc1
c5e0aa
c5e0aa
* Mon Mar 30 2015 Orion Poplawski <orion@cora.nwra.com> 1.8.4-7.20150324gitg9ad2aa8
c5e0aa
- Add upstream patch to fix race/hang on 32bit machines
c5e0aa
c5e0aa
* Fri Mar 27 2015 Orion Poplawski <orion@cora.nwra.com> 1.8.4-6.20150324gitg9ad2aa8
c5e0aa
- Update to latest 1.8.4 snapshot
c5e0aa
- Add upstream patch to fix atomics on 32bit
c5e0aa
c5e0aa
* Mon Mar 23 2015 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.8.4-5.20150228gitgd83fb30
c5e0aa
- Rebuild for fortran update (#1204420)
c5e0aa
c5e0aa
* Mon Mar 16 2015 Orion Poplawski <orion@cora.nwra.com> 1.8.4-4.99.20150228gitgd83fb30
c5e0aa
- Own and ship pkgconfig files, set PKG_CONFIG_PATH in modulefile (bug #1113626)
c5e0aa
- Drop old configure settings
c5e0aa
c5e0aa
* Wed Mar 4 2015 Orion Poplawski <orion@cora.nwra.com> 1.8.4-3.99.20150228gitgd83fb30
c5e0aa
- Update to 1.8.4.99 snapshot
c5e0aa
c5e0aa
* Fri Feb 13 2015 Orion Poplawski <orion@cora.nwra.com> 1.8.4-2
c5e0aa
- Fix MPI_FORTRAN_MOD_DIR (bug #1154982)
c5e0aa
c5e0aa
* Tue Dec 23 2014 Orion Poplawski <orion@cora.nwra.com> 1.8.4-1
c5e0aa
- Update to 1.8.4
c5e0aa
c5e0aa
* Mon Nov 17 2014 Orion Poplawski <orion@cora.nwra.com> 1.8.3-3
c5e0aa
- Rebuild for papi soname change
c5e0aa
c5e0aa
* Fri Oct 3 2014 Orion Poplawski <orion@cora.nwra.com> 1.8.3-2
c5e0aa
- Fix typo in oshmem library name
c5e0aa
c5e0aa
* Sat Sep 27 2014 Orion Poplawski <orion@cora.nwra.com> 1.8.3-1
c5e0aa
- Update to 1.8.3
c5e0aa
c5e0aa
* Tue Sep 16 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.8.2-2
c5e0aa
- ppc64le now has valgrind
c5e0aa
c5e0aa
* Tue Aug 26 2014 Orion Poplawski <orion@cora.nwra.com> 1.8.2-1
c5e0aa
- Update to 1.8.2
c5e0aa
c5e0aa
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.1-7
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
c5e0aa
c5e0aa
* Wed Aug  6 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.8.1-6
c5e0aa
- Rebuild (papi)
c5e0aa
c5e0aa
* Mon Aug  4 2014 Dan Horák <dan[at]danny.cz> 1.8.1-5
c5e0aa
- no valgrind on ppc64le yet
c5e0aa
c5e0aa
* Sat Aug  2 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.8.1-4
c5e0aa
- aarch64 now has valgrind
c5e0aa
c5e0aa
* Thu Jul 17 2014 Orion Poplawski <orion@cora.nwra.com> 1.8.1-3
c5e0aa
- Add patch to prevent shmem wrappers from adding extra libs
c5e0aa
c5e0aa
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.1-2
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c5e0aa
c5e0aa
* Wed Apr 23 2014 Orion Poplawski <orion@cora.nwra.com> 1.8.1-1
c5e0aa
- Update to 1.8.1, fixes bug #1089044
c5e0aa
c5e0aa
* Tue Apr 1 2014 Orion Poplawski <orion@cora.nwra.com> 1.8-1
c5e0aa
- Update to 1.8
c5e0aa
c5e0aa
* Tue Mar 25 2014 Orion Poplawski <orion@cora.nwra.com> 1.7.5-2
c5e0aa
- Update provides filter
c5e0aa
c5e0aa
* Mon Mar 24 2014 Orion Poplawski <orion@cora.nwra.com> 1.7.5-1
c5e0aa
- Update to 1.7.5
c5e0aa
c5e0aa
* Fri Feb 21 2014 Orion Poplawski <orion@cora.nwra.com> - 1.7.4-3
c5e0aa
- Require java-headless
c5e0aa
c5e0aa
* Sat Feb  8 2014 Ville Skyttä <ville.skytta@iki.fi> - 1.7.4-2
c5e0aa
- Install macros to %%{_rpmconfdir}/macros.d where available.
c5e0aa
c5e0aa
* Wed Feb 5 2014 Orion Poplawski <orion@cora.nwra.com> 1.7.4-1
c5e0aa
- Update to 1.7.4
c5e0aa
- Drop format patch fixed upstream
c5e0aa
- Build against system libevent
c5e0aa
- Build Java mpi bindings, ship in -java sub-package
c5e0aa
- Add requires openssh-clients
c5e0aa
c5e0aa
* Tue Jan 28 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.7.3-5
c5e0aa
- Drop mode/modeflag. mode no longer used, modeflag obsolete as set in CFLAGS
c5e0aa
- Use distro LDFLAGS for hardened build
c5e0aa
- Drop armv5tel options
c5e0aa
- General spec cleanups
c5e0aa
c5e0aa
* Thu Jan 16 2014 Orion Poplawski <orion@cora.nwra.com> 1.7.3-4
c5e0aa
- Rebuild with papi 5.3.0
c5e0aa
c5e0aa
* Wed Dec  4 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.7.3-3
c5e0aa
- valgrind not currently supported on aarch64
c5e0aa
c5e0aa
* Tue Dec 3 2013 Orion Poplawski <orion@cora.nwra.com> 1.7.3-2
c5e0aa
- Fix compilation with -Werror=format-security (bug #1037231)
c5e0aa
c5e0aa
* Sun Oct 20 2013 Orion Poplawski <orion@cora.nwra.com> 1.7.3-1
c5e0aa
- Update to 1.7.3
c5e0aa
- Upstream no longer ships license incompatible files
c5e0aa
c5e0aa
* Fri Aug 16 2013 Orion Poplawski <orion@cora.nwra.com> 1.7.2-7
c5e0aa
- Move orte* compiler wrappers to devel sub-package (bug #997330)
c5e0aa
c5e0aa
* Thu Aug 08 2013 Dennis Gilmore <dennis@ausil.us> - 1.7.2-6
c5e0aa
- rebuild for papi soname bump bz#995092
c5e0aa
c5e0aa
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 1.7.2-5
c5e0aa
- Perl 5.18 rebuild
c5e0aa
c5e0aa
* Fri Jul 26 2013 Orion Poplawski <orion@cora.nwra.com> 1.7.2-4
c5e0aa
- Fix build issue with _cc_name_suffix (bug #986664)
c5e0aa
c5e0aa
* Mon Jul 22 2013 Deji Akingunola <dakingun@gmail.com> - 1.7.2-3
c5e0aa
- Rebuild for papi's shared lib fix
c5e0aa
c5e0aa
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.7.2-2
c5e0aa
- Perl 5.18 rebuild
c5e0aa
c5e0aa
* Thu Jun 27 2013 Orion Poplawski <orion@cora.nwra.com> 1.7.2-1
c5e0aa
- Update to 1.7.2
c5e0aa
c5e0aa
* Wed Apr 17 2013 Orion Poplawski <orion@cora.nwra.com> 1.7.1-1
c5e0aa
- Update to 1.7.1
c5e0aa
- Add BR on hwloc
c5e0aa
- Add BR on papi-devel
c5e0aa
c5e0aa
* Tue Apr 16 2013 Orion Poplawski <orion@cora.nwra.com> 1.7-1
c5e0aa
- Update to 1.7
c5e0aa
- Rebase patch to handle removed components
c5e0aa
- Drop esmtp - no longer used
c5e0aa
c5e0aa
* Sat Feb 23 2013 Orion Poplawski <orion@cora.nwra.com> 1.6.4-2
c5e0aa
- Exclude libopen-trace.* from requires
c5e0aa
c5e0aa
* Fri Feb 22 2013 Orion Poplawski <orion@cora.nwra.com> 1.6.4-1
c5e0aa
- Update to 1.6.4
c5e0aa
- Drop f90sover and arm-atomics patch fixed upstream
c5e0aa
c5e0aa
* Mon Jan 28 2013 Orion Poplawski <orion@cora.nwra.com> 1.6.3-7
c5e0aa
- Make __requires_exclude more specific so we don't exclude needed libs
c5e0aa
  (bug #905263)
c5e0aa
c5e0aa
* Sun Nov 18 2012 Peter Robinson <pbrobinson@fedoraproject.org> 1.6.3-6
c5e0aa
- Update atomics patch for ARM (thanks to Jon Masters)
c5e0aa
c5e0aa
* Sun Nov 11 2012 Peter Robinson <pbrobinson@fedoraproject.org> 1.6.3-5
c5e0aa
- Atomics patch to fix building on ARM (thanks to Jon Masters)
c5e0aa
c5e0aa
* Mon Nov 5 2012 Orion Poplawski <orion@cora.nwra.com> 1.6.3-4
c5e0aa
- Add patch to fix libmpi_f90.so version
c5e0aa
- Add patch to link tests with system libltdl
c5e0aa
- Run make check
c5e0aa
c5e0aa
* Fri Nov 2 2012 Orion Poplawski <orion@cora.nwra.com> 1.6.3-3
c5e0aa
- Set enable-opal-multi-threads for IB support
c5e0aa
c5e0aa
* Thu Nov 1 2012 Orion Poplawski <orion@cora.nwra.com> 1.6.3-2
c5e0aa
- Update rpm macros to use the new module location
c5e0aa
c5e0aa
* Wed Oct 31 2012 Orion Poplawski <orion@cora.nwra.com> 1.6.3-1
c5e0aa
- Update to 1.6.3
c5e0aa
c5e0aa
* Sat Oct 13 2012 Orion Poplawski <orion@cora.nwra.com> 1.6.2-1
c5e0aa
- Update to 1.6.2
c5e0aa
- Add BR torque-devel to enable torque support
c5e0aa
- Drop old module file location (bug #838467)
c5e0aa
c5e0aa
* Thu Sep 13 2012 Orion Poplawski <orion@cora.nwra.com> 1.6.1-2
c5e0aa
- Drop adding -fPIC, no longer needed
c5e0aa
- Set --disable-silent-rules for more verbose build logs
c5e0aa
- Don't add opt_*flags to the wrappers
c5e0aa
- Only use $RPM_OPT_FLAGS if not using the opt_*flags
c5e0aa
c5e0aa
* Thu Aug 23 2012 Orion Poplawski <orion@cora.nwra.com> 1.6.1-1
c5e0aa
- Update to 1.6.1
c5e0aa
- Drop hostfile patch applied upstream
c5e0aa
c5e0aa
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-3
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c5e0aa
c5e0aa
* Tue May 15 2012 Orion Poplawski <orion@cora.nwra.com> 1.6-2
c5e0aa
- Add patch from upstream to fix default hostfile location
c5e0aa
c5e0aa
* Tue May 15 2012 Orion Poplawski <orion@cora.nwra.com> 1.6-1
c5e0aa
- Update to 1.6
c5e0aa
- Drop arm patch, appears to be addressed upstream
c5e0aa
- Remove extraneous wrapper link libraries (bug 814798)
c5e0aa
c5e0aa
* Tue Apr  3 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.5.5-1
c5e0aa
- Update to 1.5.5
c5e0aa
c5e0aa
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.4-5.1
c5e0aa
- Rebuilt for c++ ABI breakage
c5e0aa
c5e0aa
* Wed Feb 22 2012 Orion Poplawski <orion@cora.nwra.com> 1.5.4-4.1
c5e0aa
- Rebuild with hwloc 1.4
c5e0aa
c5e0aa
* Wed Feb 15 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.5.4-4
c5e0aa
- Rebuild for hwloc soname bump
c5e0aa
c5e0aa
* Fri Jan 20 2012 Doug Ledford <dledford@redhat.com> - 1.5.4-3
c5e0aa
- Move modules file to mpi directory and make it conflict with any other
c5e0aa
  mpi module (bug #651074)
c5e0aa
c5e0aa
* Sun Jan 8 2012 Orion Poplawski <orion@cora.nwra.com> 1.5.4-2
c5e0aa
- Rebuild with gcc 4.7 (bug #772443)
c5e0aa
c5e0aa
* Thu Nov 17 2011 Orion Poplawski <orion@cora.nwra.com> 1.5.4-1
c5e0aa
- Update to 1.5.4
c5e0aa
- Drop dt-textrel patch fixed upstream
c5e0aa
- Fixup handling removed files (bug #722534)
c5e0aa
- Uses hwloc instead of plpa
c5e0aa
- Exclude private libraries from provides/requires (bug #741104)
c5e0aa
- Drop --enable-mpi-threads & --enable-openib-ibcm, no longer recognized
c5e0aa
c5e0aa
* Sat Jun 18 2011 Peter Robinson <pbrobinson@gmail.com> 1.5-4
c5e0aa
- Exclude ARM platforms due to current lack of "atomic primitives" on the platform
c5e0aa
c5e0aa
* Thu Mar 17 2011 Jay Fenlason <fenlason@redhat.com> 1.5-3
c5e0aa
- Add dt-textrel patch to close
c5e0aa
  Resolves: bz679489
c5e0aa
- Add memchecker and esmtp support
c5e0aa
  Resolves: bz647011
c5e0aa
c5e0aa
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-2
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c5e0aa
c5e0aa
* Mon Oct 18 2010 Jay Fenlason <fenlason@redhat.com> 1.5-1
c5e0aa
- set MANPATH in openmpi module file
c5e0aa
- Upgrade to 1.5
c5e0aa
- Workaround for rhbz#617766 appears to no longer be needed for 1.5
c5e0aa
- remove pkgconfig files in instal
c5e0aa
- Remove orteCC.1 dangling symlink
c5e0aa
- Adjust the files entries for share/openmpi/help* and share/openmpi/mca*
c5e0aa
- Adjust the files entries for share/openmpi/mpi*
c5e0aa
- Add files entry for share/openmpi/orte*.txt
c5e0aa
c5e0aa
* Sun Sep 05 2010 Dennis Gilmore <dennis@ausil.us> - 1.4.1-7
c5e0aa
- disable valgrind support on sparc arches
c5e0aa
c5e0aa
* Sat Jul 24 2010 David Malcolm <dmalcolm@redhat.com> - 1.4.1-6
c5e0aa
- workaround for rhbz#617766
c5e0aa
c5e0aa
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1.4.1-5
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
c5e0aa
c5e0aa
* Mon Mar 29 2010 Jay Fenlason <fenlason@redhat.com> - 1.4.1-4
c5e0aa
- Update to fix licencing and packaging issues:
c5e0aa
  Use the system plpa and ltdl librarires rather than the ones in the tarball
c5e0aa
  Remove licence incompatible files from the tarball.
c5e0aa
- update module.in to prepend-path PYTHONPATH
c5e0aa
c5e0aa
* Tue Mar 9 2010 Jay Fenlason <fenlason@redhat.com> - 1.4.1-3
c5e0aa
- remove the pkgconfig file completely like we did in RHEL.
c5e0aa
c5e0aa
* Tue Jan 26 2010 Jay Fenlason <fenlason@redhat.com> - 1.4.1-2
c5e0aa
- BuildRequires: python
c5e0aa
c5e0aa
* Tue Jan 26 2010 Jay Fenlason <fenlason@redhat.com> - 1.4.1-1
c5e0aa
- New upstream version, which includes the changeset_r22324 patch.
c5e0aa
- Correct a typo in the Source0 line in this spec file.
c5e0aa
c5e0aa
* Fri Jan 15 2010 Doug Ledford <dledford@redhat.com> - 1.4-4
c5e0aa
- Fix an issue with usage of _cc_name_suffix that cause a broken define in
c5e0aa
  our module file
c5e0aa
c5e0aa
* Fri Jan 15 2010 Doug Ledford <dledford@redhat.com> - 1.4-3
c5e0aa
- Fix pkgconfig file substitution
c5e0aa
- Bump version so we are later than the equivalent version from Red Hat
c5e0aa
  Enterprise Linux
c5e0aa
c5e0aa
* Wed Jan 13 2010 Doug Ledford <dledford@redhat.com> - 1.4-1
c5e0aa
- Update to latest upstream stable version
c5e0aa
- Add support for libibcm usage
c5e0aa
- Enable sge support via configure options since it's no longer on by default
c5e0aa
- Add patch to resolve allreduce issue (bz538199)
c5e0aa
- Remove no longer needed patch for Chelsio cards
c5e0aa
c5e0aa
* Tue Sep 22 2009 Jay Fenlason <fenlason@redhat.com> - 1.3.3-6
c5e0aa
- Create and own man* directories for use by dependent packages.
c5e0aa
c5e0aa
* Wed Sep 16 2009 Jay Fenlason <fenlason@redhat.com> - 1.3.3-5
c5e0aa
- Move the module file from %%{_datadir}/Modules/modulefiles/%%{namearch} to
c5e0aa
  %%{_sysconfdir}/modulefiles/%%{namearch} where it belongs.
c5e0aa
- Have the -devel subpackage own the man1 and man7 directories for completeness.
c5e0aa
- Add a blank line before the clean section.
c5e0aa
- Remove --enable-mpirun-prefix-by-default from configure.
c5e0aa
c5e0aa
* Wed Sep 9 2009 Jay Fenlason <fenlason@redhat.com> - 1.3.3-4
c5e0aa
- Modify packaging to conform to
c5e0aa
  https://fedoraproject.org/wiki/PackagingDrafts/MPI (bz521334).
c5e0aa
- remove --with-ft=cr from configure, as it was apparently causing problems
c5e0aa
  for some people.
c5e0aa
- Add librdmacm-devel and librdmacm to BuildRequires (related bz515565).
c5e0aa
- Add openmpi-bz515567.patch to add support for the latest Chelsio device IDs
c5e0aa
  (related bz515567).
c5e0aa
- Add exclude-arch (s390 s390x) because we don't have required -devel packages
c5e0aa
  there.
c5e0aa
c5e0aa
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.3-3
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
c5e0aa
c5e0aa
* Tue Jul 21 2009 Doug Ledford <dledford@redhat.com> - 1.3.3-2
c5e0aa
- Add MPI_BIN and MPI_LIB to the modules file (related bz511099)
c5e0aa
c5e0aa
* Tue Jul 21 2009 Doug Ledford <dledford@redhat.com> - 1.3.3-1
c5e0aa
- Make sure all created dirs are owned (bz474677)
c5e0aa
- Fix loading of pkgconfig file (bz476844)
c5e0aa
- Resolve file conflict between us and libotf (bz496131)
c5e0aa
- Resolve dangling symlinks issue (bz496909)
c5e0aa
- Resolve unexpanded %%{mode} issues (bz496911)
c5e0aa
- Restore -devel subpackage (bz499851)
c5e0aa
- Make getting the default openmpi devel environment easier (bz504357)
c5e0aa
- Make the -devel package pull in the base package (bz459458)
c5e0aa
- Make it easier to use alternative compilers to build package (bz246484)
c5e0aa
c5e0aa
* Sat Jul 18 2009 Jussi Lehtola <jussilehtola@fedoraproject.org> - 1.3.1-4
c5e0aa
- Add Provides: openmpi-devel to fix other package builds in rawhide.
c5e0aa
c5e0aa
* Fri May 08 2009 Lubomir Rintel <lkundrak@v3.sk> - 1.3.1-3
c5e0aa
- Treat i586 the same way as i386
c5e0aa
c5e0aa
* Wed Apr 22 2009 Doug Ledford <dledford@redhat.com> - 1.3.1-2
c5e0aa
- fixed broken update
c5e0aa
- Resolves: bz496909, bz496131, bz496911
c5e0aa
c5e0aa
* Tue Apr 14 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 1.3.1-1
c5e0aa
- update to 1.3.1, cleanup alternatives, spec, make new vt subpackage
c5e0aa
c5e0aa
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.4-3
c5e0aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
c5e0aa
c5e0aa
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.2.4-2
c5e0aa
- Autorebuild for GCC 4.3
c5e0aa
c5e0aa
* Wed Oct 17 2007 Doug Ledford <dledford@redhat.com> - 1.2.4-1
c5e0aa
- Update to 1.2.4 upstream version
c5e0aa
- Build against libtorque
c5e0aa
- Pass a valid mode to open
c5e0aa
- Resolves: bz189441, bz265141
c5e0aa
c5e0aa
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 1.2.3-5
c5e0aa
- Rebuild for selinux ppc32 issue.
c5e0aa
c5e0aa
* Mon Jul 16 2007 Doug Ledford <dledford@redhat.com> - 1.2.3-4
c5e0aa
- Fix a directory permission problem on the base openmpi directories
c5e0aa
c5e0aa
* Thu Jul 12 2007 Florian La Roche <laroche@redhat.com> - 1.2.3-3
c5e0aa
- requires alternatives for various sub-rpms
c5e0aa
c5e0aa
* Mon Jul 02 2007 Doug Ledford <dledford@redhat.com> - 1.2.3-2
c5e0aa
- Fix dangling symlink issue caused by a bad macro usage
c5e0aa
- Resolves: bz246450
c5e0aa
c5e0aa
* Wed Jun 27 2007 Doug Ledford <dledford@redhat.com> - 1.2.3-1
c5e0aa
- Update to latest upstream version
c5e0aa
- Fix file ownership on -libs package
c5e0aa
- Take a swing at solving the multi-install compatibility issues
c5e0aa
c5e0aa
* Mon Feb 19 2007 Doug Ledford <dledford@redhat.com> - 1.1.1-7
c5e0aa
- Bump version to be at least as high as the RHEL4U5 openmpi
c5e0aa
- Integrate fixes made in RHEL4 openmpi into RHEL5 (fix a multilib conflict
c5e0aa
  for the openmpi.module file by moving from _datadir to _libdir, make sure
c5e0aa
  all sed replacements have the g flag so they replace all instances of
c5e0aa
  the marker per line, not just the first, and add a %%defattr tag to the
c5e0aa
  files section of the -libs package to avoid install errors about
c5e0aa
  brewbuilder not being a user or group)
c5e0aa
- Resolves: bz229298
c5e0aa
c5e0aa
* Wed Jan 17 2007 Doug Ledford <dledford@redhat.com> - 1.1.1-5
c5e0aa
- Remove the FORTIFY_SOURCE and stack protect options
c5e0aa
- Related: bz213075
c5e0aa
c5e0aa
* Fri Oct 20 2006 Doug Ledford <dledford@redhat.com> - 1.1.1-4
c5e0aa
- Bump and build against the final openib-1.1 package
c5e0aa
c5e0aa
* Wed Oct 18 2006 Doug Ledford <dledford@redhat.com> - 1.1.1-3
c5e0aa
- Fix an snprintf length bug in opal/util/cmd_line.c
c5e0aa
- RESOLVES: rhbz#210714
c5e0aa
c5e0aa
* Wed Oct 18 2006 Doug Ledford <dledford@redhat.com> - 1.1.1-2
c5e0aa
- Bump and build against openib-1.1-0.pre1.1 instead of 1.0
c5e0aa
c5e0aa
* Tue Oct 17 2006 Doug Ledford <dledford@redhat.com> - 1.1.1-1
c5e0aa
- Update to upstream 1.1.1 version
c5e0aa
c5e0aa
* Fri Oct 13 2006 Doug Ledford <dledford@redhat.com> - 1.1-7
c5e0aa
- ia64 can't take -m64 on the gcc command line, so don't set it there
c5e0aa
c5e0aa
* Wed Oct 11 2006 Doug Ledford <dledford@redhat.com> - 1.1-6
c5e0aa
- Bump rev to match fc6 rev
c5e0aa
- Fixup some issue with alternatives support
c5e0aa
- Split the 32bit and 64bit libs ld.so.conf.d files into two files so
c5e0aa
  multilib or single lib installs both work properly
c5e0aa
- Put libs into their own package
c5e0aa
- Add symlinks to /usr/share/openmpi/bin%%{mode} so that opal_wrapper-%%{mode}
c5e0aa
  can be called even if it isn't the currently selected default method in
c5e0aa
  the alternatives setup (opal_wrapper needs to be called by mpicc, mpic++,
c5e0aa
  etc. in order to determine compile mode from argv[0]).
c5e0aa
c5e0aa
* Sun Aug 27 2006 Doug Ledford <dledford@redhat.com> - 1.1-4
c5e0aa
- Make sure the post/preun scripts only add/remove alternatives on initial
c5e0aa
  install and final removal, otherwise don't touch.
c5e0aa
c5e0aa
* Fri Aug 25 2006 Doug Ledford <dledford@redhat.com> - 1.1-3
c5e0aa
- Don't ghost the mpi.conf file as that means it will get removed when
c5e0aa
  you remove 1 out of a number of alternatives based packages
c5e0aa
- Put the .mod file in -devel
c5e0aa
c5e0aa
* Mon Aug  7 2006 Doug Ledford <dledford@redhat.com> - 1.1-2
c5e0aa
- Various lint cleanups
c5e0aa
- Switch to using the standard alternatives mechanism instead of a home
c5e0aa
  grown one
c5e0aa
c5e0aa
* Wed Aug  2 2006 Doug Ledford <dledford@redhat.com> - 1.1-1
c5e0aa
- Upgrade to 1.1
c5e0aa
- Build with Infiniband support via openib
c5e0aa
c5e0aa
* Mon Jun 12 2006 Jason Vas Dias <jvdias@redhat.com> - 1.0.2-1
c5e0aa
- Upgrade to 1.0.2
c5e0aa
c5e0aa
* Wed Feb 15 2006 Jason Vas Dias <jvdias@redhat.com> - 1.0.1-1
c5e0aa
- Import into Fedora Core
c5e0aa
- Resolve LAM clashes
c5e0aa
c5e0aa
* Wed Jan 25 2006 Orion Poplawski <orion@cora.nwra.com> - 1.0.1-2
c5e0aa
- Use configure options to install includes and libraries
c5e0aa
- Add ld.so.conf.d file to find libraries
c5e0aa
- Add -fPIC for x86_64
c5e0aa
c5e0aa
* Tue Jan 24 2006 Orion Poplawski <orion@cora.nwra.com> - 1.0.1-1
c5e0aa
- 1.0.1
c5e0aa
- Use alternatives
c5e0aa
c5e0aa
* Sat Nov 19 2005 Ed Hill <ed@eh3.com> - 1.0-2
c5e0aa
- fix lam conflicts
c5e0aa
c5e0aa
* Fri Nov 18 2005 Ed Hill <ed@eh3.com> - 1.0-1
c5e0aa
- initial specfile created
c5e0aa