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