zbyszek / rpms / openmpi

Forked from rpms/openmpi 5 years ago
Clone
311a78a
%global _hardened_build 1
fa6ba23
# We only compile with gcc, but other people may want other compilers.
fa6ba23
# Set the compiler here.
29b3af4
%global opt_cc gcc
fa6ba23
# Optional CFLAGS to use with the specific compiler...gcc doesn't need any,
fa6ba23
# so uncomment and define to use
a001d99
#global opt_cflags
29b3af4
%global opt_cxx g++
a001d99
#global opt_cxxflags
29b3af4
%global opt_f77 gfortran
a001d99
#global opt_fflags
29b3af4
%global opt_fc gfortran
a001d99
#global opt_fcflags
fa6ba23
688d01b
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
fa6ba23
# Optional name suffix to use...we leave it off when compiling with gcc, but
fa6ba23
# for other compiled versions to install side by side, it will need a
fa6ba23
# suffix in order to keep the names from conflicting.
a001d99
#global _cc_name_suffix -gcc
fa6ba23
99bbdd3
%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
99bbdd3
688d01b
Name:			openmpi%{?_cc_name_suffix}
Orion Poplawski d4f746d
Version:		1.8.2
928d31c
Release:		2%{?dist}
e500ef7
Summary:		Open Message Passing Interface
e500ef7
Group:			Development/Libraries
d1d00b1
License:		BSD, MIT and Romio
e500ef7
URL:			http://www.open-mpi.org/
d26a34e
688d01b
# We can't use %{name} here because of _cc_name_suffix
Orion Poplawski d46bad0
Source0:		http://www.open-mpi.org/software/ompi/v1.8/downloads/openmpi-%{version}.tar.bz2
c18f8a8
Source1:		openmpi.module.in
c18f8a8
Source2:		macros.openmpi
8a9a5e2
# Patch to use system ltdl for tests
ed38618
Patch1:			openmpi-ltdl.patch
d26a34e
48abba7
BuildRequires:		gcc-gfortran
928d31c
#sparc64 don't have valgrind
928d31c
%ifnarch %{sparc}
8f70ef8
BuildRequires:		valgrind-devel
bf65001
%endif
746245f
BuildRequires:		libibverbs-devel >= 1.1.3, opensm-devel > 3.3.0
48abba7
BuildRequires:		librdmacm-devel libibcm-devel
Orion Poplawski ac4b2b2
BuildRequires:		hwloc-devel
688b91d
# So configure can find lstopo
688b91d
BuildRequires:		hwloc
af9818c
BuildRequires:		java-devel
af9818c
BuildRequires:		libevent-devel
688b91d
BuildRequires:		papi-devel
Orion Poplawski ac4b2b2
BuildRequires:		python libtool-ltdl-devel
Orion Poplawski f27ebb3
BuildRequires:		torque-devel
e84526f
fa6ba23
Provides:		mpi
fa6ba23
Requires:		environment-modules
9c91c8c
# openmpi currently requires ssh to run
9c91c8c
# https://svn.open-mpi.org/trac/ompi/ticket/4228
9c91c8c
Requires:		openssh-clients
jvdias f7e5af9
688d01b
# s390 is unlikely to have the hardware we want, and some of the -devel
688d01b
# packages we require aren't available there.
e84526f
ExcludeArch: s390 s390x
688d01b
Orion Poplawski ac4b2b2
# Private openmpi libraries
Orion Poplawski 5e907a4
%global __provides_exclude_from %{_libdir}/openmpi/lib/(lib(mca|ompi|open-(pal|rte|trace)|otf|v)|openmpi/).*.so
Orion Poplawski 3421ba4
%global __requires_exclude lib(mca|ompi|open-(pal|rte|trace)|otf|vt).*
688d01b
jvdias f7e5af9
%description
fa6ba23
Open MPI is an open source, freely available implementation of both the 
jvdias f7e5af9
MPI-1 and MPI-2 standards, combining technologies and resources from
jvdias f7e5af9
several other projects (FT-MPI, LA-MPI, LAM/MPI, and PACX-MPI) in
jvdias f7e5af9
order to build the best MPI library available.  A completely new MPI-2
jvdias f7e5af9
compliant implementation, Open MPI offers advantages for system and
jvdias f7e5af9
software vendors, application developers, and computer science
jvdias f7e5af9
researchers. For more information, see http://www.open-mpi.org/ .
jvdias f7e5af9
c1fa9cb
%package devel
ed38618
Summary:	Development files for openmpi
ed38618
Group:		Development/Libraries
ed38618
Requires:	%{name} = %{version}-%{release}, gcc-gfortran
c1fa9cb
Provides:	mpi-devel
c1fa9cb
c1fa9cb
%description devel
af9818c
Contains development headers and libraries for openmpi.
af9818c
af9818c
%package java
af9818c
Summary:	Java library
af9818c
Group:		Development/Libraries
af9818c
Requires:	%{name} = %{version}-%{release}
35be677
%if 0%{?fedora} >= 20 || 0%{?rhel} >= 7
35be677
Requires:	java-headless
35be677
%else
af9818c
Requires:	java
35be677
%endif
af9818c
af9818c
%description java
af9818c
Java library.
af9818c
af9818c
%package java-devel
af9818c
Summary:	Java development files for openmpi
af9818c
Group:		Development/Libraries
af9818c
Requires:	%{name}-java = %{version}-%{release}
af9818c
Requires:	java-devel
af9818c
af9818c
%description java-devel
af9818c
Contains development wrapper for compiling Java with openmpi.
c1fa9cb
4739e23
# We set this to for convenience, since this is the unique dir we use for this
4739e23
# particular package, version, compiler
29b3af4
%global namearch openmpi-%{_arch}%{?_cc_name_suffix}
4739e23
jvdias f7e5af9
%prep
688d01b
%setup -q -n openmpi-%{version}
8a9a5e2
%patch1 -p1 -b .ltdl
Orion Poplawski ac4b2b2
# Make sure we don't use the local libltdl library
Orion Poplawski ac4b2b2
rm -r opal/libltdl
9ab346f
d1d00b1
%build
e84526f
./configure --prefix=%{_libdir}/%{name} \
688d01b
	--mandir=%{_mandir}/%{namearch} \
688d01b
	--includedir=%{_includedir}/%{namearch} \
688d01b
	--sysconfdir=%{_sysconfdir}/%{namearch} \
2bf5e06
	--disable-silent-rules \
af9818c
	--enable-mpi-java \
eed30b5
	--enable-opal-multi-threads \
af9818c
	--with-libevent=/usr \
2e8910e
	--with-verbs=/usr \
746245f
	--with-sge \
928d31c
%ifnarch %{sparc}
688d01b
	--with-valgrind \
Jay Fenlason ad18b4e
	--enable-memchecker \
bf65001
%endif
e84526f
	--with-hwloc=/usr \
e84526f
	--with-libltdl=/usr \
fa6ba23
	CC=%{opt_cc} CXX=%{opt_cxx} \
311a78a
	LDFLAGS='%{__global_ldflags}' \
2bf5e06
	CFLAGS="%{?opt_cflags} %{!?opt_cflags:$RPM_OPT_FLAGS}" \
2bf5e06
	CXXFLAGS="%{?opt_cxxflags} %{!?opt_cxxflags:$RPM_OPT_FLAGS}" \
2bf5e06
	FC=%{opt_fc} FCFLAGS="%{?opt_fcflags} %{!?opt_fcflags:$RPM_OPT_FLAGS}" \
2bf5e06
	F77=%{opt_f77} FFLAGS="%{?opt_fflags} %{!?opt_fflags:$RPM_OPT_FLAGS}"
ef98c8d
311a78a
make %{?_smp_mflags} V=1
jvdias f7e5af9
jvdias f7e5af9
%install
fa6ba23
make install DESTDIR=%{buildroot}
Jay Fenlason 19a6b61
rm -fr %{buildroot}%{_libdir}/%{name}/lib/pkgconfig
688d01b
find %{buildroot}%{_libdir}/%{name}/lib -name \*.la | xargs rm
688d01b
find %{buildroot}%{_mandir}/%{namearch} -type f | xargs gzip -9
688d01b
ln -s mpicc.1.gz %{buildroot}%{_mandir}/%{namearch}/man1/mpiCC.1.gz
688d01b
rm -f %{buildroot}%{_mandir}/%{namearch}/man1/mpiCC.1
Jay Fenlason 19a6b61
rm -f %{buildroot}%{_mandir}/%{namearch}/man1/orteCC.1*
688d01b
rm -f %{buildroot}%{_libdir}/%{name}/share/vampirtrace/doc/opari/lacsi01.ps.gz
c80c295
mkdir %{buildroot}%{_mandir}/%{namearch}/man{2,4,5,6,8,9,n}
fa6ba23
fa6ba23
# Make the environment-modules file
b010d4a
mkdir -p %{buildroot}%{_sysconfdir}/modulefiles/mpi
688d01b
# Since we're doing our own substitution here, use our own definitions.
b010d4a
sed 's#@LIBDIR@#'%{_libdir}/%{name}'#g;s#@ETCDIR@#'%{_sysconfdir}/%{namearch}'#g;s#@FMODDIR@#'%{_fmoddir}/%{namearch}'#g;s#@INCDIR@#'%{_includedir}/%{namearch}'#g;s#@MANDIR@#'%{_mandir}/%{namearch}'#g;s#@PYSITEARCH@#'%{python_sitearch}/%{name}'#g;s#@COMPILER@#openmpi-'%{_arch}%{?_cc_name_suffix}'#g;s#@SUFFIX@#'%{?_cc_name_suffix}'_openmpi#g' < %SOURCE1 > %{buildroot}%{_sysconfdir}/modulefiles/mpi/%{namearch}
311a78a
688d01b
# make the rpm config file
99bbdd3
install -Dpm 644 %{SOURCE2} %{buildroot}/%{macrosdir}/macros.%{namearch}
688d01b
mkdir -p %{buildroot}/%{_fmoddir}/%{namearch}
688d01b
mkdir -p %{buildroot}/%{python_sitearch}/openmpi%{?_cc_name_suffix}
Orion Poplawski 0af97bd
# Remove extraneous wrapper link libraries (bug 814798)
Orion Poplawski 0af97bd
sed -i -e s/-ldl// -e s/-lhwloc// \
5a655f8
  %{buildroot}%{_libdir}/%{name}/share/openmpi/*-wrapper-data.txt
Orion Poplawski 0af97bd
8a9a5e2
%check
8a9a5e2
make check
8a9a5e2
jvdias f7e5af9
%files
c1fa9cb
%dir %{_libdir}/%{name}
688d01b
%dir %{_sysconfdir}/%{namearch}
688d01b
%dir %{_libdir}/%{name}/bin
688d01b
%dir %{_libdir}/%{name}/lib
688d01b
%dir %{_libdir}/%{name}/lib/openmpi
688d01b
%dir %{_mandir}/%{namearch}
c80c295
%dir %{_mandir}/%{namearch}/man*
688d01b
%dir %{_fmoddir}/%{namearch}
688d01b
%dir %{python_sitearch}/%{name}
688d01b
%config(noreplace) %{_sysconfdir}/%{namearch}/*
688d01b
%{_libdir}/%{name}/bin/mpi[er]*
688d01b
%{_libdir}/%{name}/bin/ompi*
688d01b
%{_libdir}/%{name}/bin/opari
3fe98d2
%{_libdir}/%{name}/bin/orte[-dr_]*
272687f
%{_libdir}/%{name}/bin/oshmem_info
272687f
%{_libdir}/%{name}/bin/oshrun
688d01b
%{_libdir}/%{name}/bin/otf*
272687f
%{_libdir}/%{name}/bin/shmemrun
688d01b
%{_libdir}/%{name}/lib/*.so.*
688d01b
%{_mandir}/%{namearch}/man1/mpi[er]*
688d01b
%{_mandir}/%{namearch}/man1/ompi*
3fe98d2
%{_mandir}/%{namearch}/man1/orte[-dr_]*
272687f
%{_mandir}/%{namearch}/man1/oshmem_info*
688d01b
%{_mandir}/%{namearch}/man7/ompi*
688d01b
%{_mandir}/%{namearch}/man7/orte*
688d01b
%{_libdir}/%{name}/lib/openmpi/*
Orion Poplawski f27ebb3
%{_sysconfdir}/modulefiles/mpi/
688d01b
%dir %{_libdir}/%{name}/share
688d01b
%dir %{_libdir}/%{name}/share/openmpi
688d01b
%{_libdir}/%{name}/share/openmpi/doc
688d01b
%{_libdir}/%{name}/share/openmpi/amca-param-sets
Jay Fenlason 19a6b61
%{_libdir}/%{name}/share/openmpi/help*.txt
Jay Fenlason 19a6b61
%{_libdir}/%{name}/share/openmpi/mca-btl-openib-device-params.ini
137f762
%{_libdir}/%{name}/share/openmpi/mca-coll-ml.config
jvdias f7e5af9
c1fa9cb
%files devel
688d01b
%dir %{_includedir}/%{namearch}
688d01b
%dir %{_libdir}/%{name}/share/vampirtrace
688d01b
%{_libdir}/%{name}/bin/mpi[cCf]*
688d01b
%{_libdir}/%{name}/bin/opal_*
3fe98d2
%{_libdir}/%{name}/bin/orte[cCf]*
272687f
%{_libdir}/%{name}/bin/osh[cf]*
272687f
%{_libdir}/%{name}/bin/shmem[cf]*
3fe98d2
%{_libdir}/%{name}/bin/vt*
688d01b
%{_includedir}/%{namearch}/*
688d01b
%{_libdir}/%{name}/lib/*.so
688d01b
%{_libdir}/%{name}/lib/lib*.a
Orion Poplawski 6784995
%{_libdir}/%{name}/lib/*.mod
688d01b
%{_mandir}/%{namearch}/man1/mpi[cCf]*
688d01b
%{_mandir}/%{namearch}/man1/opal_*
688d01b
%{_mandir}/%{namearch}/man3/*
688d01b
%{_mandir}/%{namearch}/man7/opal*
12da662
%{_libdir}/%{name}/share/openmpi/openmpi-valgrind.supp
272687f
%{_libdir}/%{name}/share/openmpi/*-wrapper-data.txt
688d01b
%{_libdir}/%{name}/share/vampirtrace/*
99bbdd3
%{macrosdir}/macros.%{namearch}
c1fa9cb
af9818c
%files java
af9818c
%{_libdir}/%{name}/lib/mpi.jar
af9818c
af9818c
%files java-devel
af9818c
%{_libdir}/%{name}/bin/mpijavac
af9818c
%{_libdir}/%{name}/bin/mpijavac.pl
272687f
# Currently this only contaings openmpi/javadoc
272687f
%{_libdir}/%{name}/share/doc/
af9818c
%{_mandir}/%{namearch}/man1/mpijavac.1.gz
af9818c
272687f
jvdias f7e5af9
%changelog
928d31c
* Tue Sep 16 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.8.2-2
928d31c
- ppc64le now has valgrind
928d31c
Orion Poplawski d4f746d
* Tue Aug 26 2014 Orion Poplawski <orion@cora.nwra.com> 1.8.2-1
Orion Poplawski d4f746d
- Update to 1.8.2
Orion Poplawski d4f746d
de6625f
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.1-7
de6625f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
de6625f
b94412c
* Wed Aug  6 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.8.1-6
b94412c
- Rebuild (papi)
b94412c
4e259f4
* Mon Aug  4 2014 Dan Horák <dan[at]danny.cz> 1.8.1-5
4e259f4
- no valgrind on ppc64le yet
4e259f4
96220a8
* Sat Aug  2 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.8.1-4
96220a8
- aarch64 now has valgrind
96220a8
Orion Poplawski 86b118c
* Thu Jul 17 2014 Orion Poplawski <orion@cora.nwra.com> 1.8.1-3
Orion Poplawski 86b118c
- Add patch to prevent shmem wrappers from adding extra libs
Orion Poplawski 86b118c
629d43e
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.1-2
629d43e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
629d43e
Orion Poplawski 3562f01
* Wed Apr 23 2014 Orion Poplawski <orion@cora.nwra.com> 1.8.1-1
Orion Poplawski 3562f01
- Update to 1.8.1, fixes bug #1089044
Orion Poplawski 3562f01
Orion Poplawski d46bad0
* Tue Apr 1 2014 Orion Poplawski <orion@cora.nwra.com> 1.8-1
Orion Poplawski d46bad0
- Update to 1.8
Orion Poplawski d46bad0
Orion Poplawski 5e907a4
* Tue Mar 25 2014 Orion Poplawski <orion@cora.nwra.com> 1.7.5-2
Orion Poplawski 5e907a4
- Update provides filter
Orion Poplawski 5e907a4
272687f
* Mon Mar 24 2014 Orion Poplawski <orion@cora.nwra.com> 1.7.5-1
272687f
- Update to 1.7.5
272687f
35be677
* Fri Feb 21 2014 Orion Poplawski <orion@cora.nwra.com> - 1.7.4-3
35be677
- Require java-headless
35be677
99bbdd3
* Sat Feb  8 2014 Ville Skyttä <ville.skytta@iki.fi> - 1.7.4-2
99bbdd3
- Install macros to %%{_rpmconfdir}/macros.d where available.
99bbdd3
99bbdd3
* Wed Feb 5 2014 Orion Poplawski <orion@cora.nwra.com> 1.7.4-1
af9818c
- Update to 1.7.4
af9818c
- Drop format patch fixed upstream
af9818c
- Build against system libevent
af9818c
- Build Java mpi bindings, ship in -java sub-package
9c91c8c
- Add requires openssh-clients
af9818c
311a78a
* Tue Jan 28 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.7.3-5
311a78a
- Drop mode/modeflag. mode no longer used, modeflag obsolete as set in CFLAGS
311a78a
- Use distro LDFLAGS for hardened build
311a78a
- Drop armv5tel options
311a78a
- General spec cleanups
311a78a
Orion Poplawski b2a632a
* Thu Jan 16 2014 Orion Poplawski <orion@cora.nwra.com> 1.7.3-4
Orion Poplawski b2a632a
- Rebuild with papi 5.3.0
Orion Poplawski b2a632a
dcf8f67
* Wed Dec  4 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.7.3-3
dcf8f67
- valgrind not currently supported on aarch64
dcf8f67
498c7c8
* Tue Dec 3 2013 Orion Poplawski <orion@cora.nwra.com> 1.7.3-2
ed38618
- Fix compilation with -Werror=format-security (bug #1037231)
ed38618
8a866fc
* Sun Oct 20 2013 Orion Poplawski <orion@cora.nwra.com> 1.7.3-1
8a866fc
- Update to 1.7.3
8a866fc
- Upstream no longer ships license incompatible files
8a866fc
3fe98d2
* Fri Aug 16 2013 Orion Poplawski <orion@cora.nwra.com> 1.7.2-7
3fe98d2
- Move orte* compiler wrappers to devel sub-package (bug #997330)
3fe98d2
524bdd7
* Thu Aug 08 2013 Dennis Gilmore <dennis@ausil.us> - 1.7.2-6
524bdd7
- rebuild for papi soname bump bz#995092
524bdd7
db62c31
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 1.7.2-5
db62c31
- Perl 5.18 rebuild
db62c31
c284a0e
* Fri Jul 26 2013 Orion Poplawski <orion@cora.nwra.com> 1.7.2-4
5a655f8
- Fix build issue with _cc_name_suffix (bug #986664)
5a655f8
Deji Akingunola 94582f7
* Mon Jul 22 2013 Deji Akingunola <dakingun@gmail.com> - 1.7.2-3
Deji Akingunola 94582f7
- Rebuild for papi's shared lib fix
Deji Akingunola 94582f7
b374c5b
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.7.2-2
b374c5b
- Perl 5.18 rebuild
b374c5b
Orion Poplawski 3b4ca3f
* Thu Jun 27 2013 Orion Poplawski <orion@cora.nwra.com> 1.7.2-1
Orion Poplawski 3b4ca3f
- Update to 1.7.2
Orion Poplawski 3b4ca3f
688b91d
* Wed Apr 17 2013 Orion Poplawski <orion@cora.nwra.com> 1.7.1-1
688b91d
- Update to 1.7.1
688b91d
- Add BR on hwloc
688b91d
- Add BR on papi-devel
688b91d
Orion Poplawski 57a8b25
* Tue Apr 16 2013 Orion Poplawski <orion@cora.nwra.com> 1.7-1
Orion Poplawski 57a8b25
- Update to 1.7
Orion Poplawski 57a8b25
- Rebase patch to handle removed components
d183eb7
- Drop esmtp - no longer used
Orion Poplawski 57a8b25
Orion Poplawski 3421ba4
* Sat Feb 23 2013 Orion Poplawski <orion@cora.nwra.com> 1.6.4-2
Orion Poplawski 3421ba4
- Exclude libopen-trace.* from requires
Orion Poplawski 3421ba4
d16b318
* Fri Feb 22 2013 Orion Poplawski <orion@cora.nwra.com> 1.6.4-1
d16b318
- Update to 1.6.4
d16b318
- Drop f90sover and arm-atomics patch fixed upstream
d16b318
Orion Poplawski 31a733b
* Mon Jan 28 2013 Orion Poplawski <orion@cora.nwra.com> 1.6.3-7
Orion Poplawski 31a733b
- Make __requires_exclude more specific so we don't exclude needed libs
Orion Poplawski 31a733b
  (bug #905263)
Orion Poplawski 31a733b
b44370f
* Sun Nov 18 2012 Peter Robinson <pbrobinson@fedoraproject.org> 1.6.3-6
b44370f
- Update atomics patch for ARM (thanks to Jon Masters)
b44370f
ef98c8d
* Sun Nov 11 2012 Peter Robinson <pbrobinson@fedoraproject.org> 1.6.3-5
ef98c8d
- Atomics patch to fix building on ARM (thanks to Jon Masters)
ef98c8d
8a9a5e2
* Mon Nov 5 2012 Orion Poplawski <orion@cora.nwra.com> 1.6.3-4
8a9a5e2
- Add patch to fix libmpi_f90.so version
8a9a5e2
- Add patch to link tests with system libltdl
8a9a5e2
- Run make check
8a9a5e2
eed30b5
* Fri Nov 2 2012 Orion Poplawski <orion@cora.nwra.com> 1.6.3-3
eed30b5
- Set enable-opal-multi-threads for IB support
eed30b5
bf0167c
* Thu Nov 1 2012 Orion Poplawski <orion@cora.nwra.com> 1.6.3-2
bf0167c
- Update rpm macros to use the new module location
bf0167c
325b7b6
* Wed Oct 31 2012 Orion Poplawski <orion@cora.nwra.com> 1.6.3-1
325b7b6
- Update to 1.6.3
325b7b6
Orion Poplawski f27ebb3
* Sat Oct 13 2012 Orion Poplawski <orion@cora.nwra.com> 1.6.2-1
Orion Poplawski f27ebb3
- Update to 1.6.2
Orion Poplawski f27ebb3
- Add BR torque-devel to enable torque support
Orion Poplawski f27ebb3
- Drop old module file location (bug #838467)
Orion Poplawski f27ebb3
2bf5e06
* Thu Sep 13 2012 Orion Poplawski <orion@cora.nwra.com> 1.6.1-2
2bf5e06
- Drop adding -fPIC, no longer needed
2bf5e06
- Set --disable-silent-rules for more verbose build logs
2bf5e06
- Don't add opt_*flags to the wrappers
2bf5e06
- Only use $RPM_OPT_FLAGS if not using the opt_*flags
2bf5e06
db514c3
* Thu Aug 23 2012 Orion Poplawski <orion@cora.nwra.com> 1.6.1-1
db514c3
- Update to 1.6.1
db514c3
- Drop hostfile patch applied upstream
db514c3
80be240
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-3
80be240
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
80be240
db514c3
* Tue May 15 2012 Orion Poplawski <orion@cora.nwra.com> 1.6-2
Orion Poplawski 8148523
- Add patch from upstream to fix default hostfile location
Orion Poplawski 8148523
db514c3
* Tue May 15 2012 Orion Poplawski <orion@cora.nwra.com> 1.6-1
db514c3
- Update to 1.6
Orion Poplawski ee90b8d
- Drop arm patch, appears to be addressed upstream
Orion Poplawski 0af97bd
- Remove extraneous wrapper link libraries (bug 814798)
Orion Poplawski ee90b8d
e84526f
* Tue Apr  3 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.5.5-1
e84526f
- Update to 1.5.5
e84526f
471689a
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.4-5.1
471689a
- Rebuilt for c++ ABI breakage
471689a
Orion Poplawski 6fa1755
* Wed Feb 22 2012 Orion Poplawski <orion@cora.nwra.com> 1.5.4-4.1
Orion Poplawski 6fa1755
- Rebuild with hwloc 1.4
Orion Poplawski 6fa1755
d26a34e
* Wed Feb 15 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.5.4-4
Orion Poplawski 6fa1755
- Rebuild for hwloc soname bump
d26a34e
b010d4a
* Fri Jan 20 2012 Doug Ledford <dledford@redhat.com> - 1.5.4-3
b010d4a
- Move modules file to mpi directory and make it conflict with any other
b010d4a
  mpi module (bug #651074)
b010d4a
Orion Poplawski 6e7bd70
* Sun Jan 8 2012 Orion Poplawski <orion@cora.nwra.com> 1.5.4-2
Orion Poplawski 6e7bd70
- Rebuild with gcc 4.7 (bug #772443)
Orion Poplawski 6e7bd70
Orion Poplawski ac4b2b2
* Thu Nov 17 2011 Orion Poplawski <orion@cora.nwra.com> 1.5.4-1
Orion Poplawski ac4b2b2
- Update to 1.5.4
Orion Poplawski ac4b2b2
- Drop dt-textrel patch fixed upstream
Orion Poplawski ac4b2b2
- Fixup handling removed files (bug #722534)
Orion Poplawski ac4b2b2
- Uses hwloc instead of plpa
Orion Poplawski ac4b2b2
- Exclude private libraries from provides/requires (bug #741104)
Orion Poplawski ac4b2b2
- Drop --enable-mpi-threads & --enable-openib-ibcm, no longer recognized
Orion Poplawski ac4b2b2
7f9e9df
* Sat Jun 18 2011 Peter Robinson <pbrobinson@gmail.com> 1.5-4
7f9e9df
- Exclude ARM platforms due to current lack of "atomic primitives" on the platform
7f9e9df
Jay Fenlason ad18b4e
* Thu Mar 17 2011 Jay Fenlason <fenlason@redhat.com> 1.5-3
Jay Fenlason ad18b4e
- Add dt-textrel patch to close
Jay Fenlason ad18b4e
  Resolves: bz679489
Jay Fenlason ad18b4e
- Add memchecker and esmtp support
Jay Fenlason ad18b4e
  Resolves: bz647011
Jay Fenlason ad18b4e
13ecac7
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-2
13ecac7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
13ecac7
Jay Fenlason 19a6b61
* Mon Oct 18 2010 Jay Fenlason <fenlason@redhat.com> 1.5-1
Jay Fenlason 19a6b61
- set MANPATH in openmpi module file
Jay Fenlason 19a6b61
- Upgrade to 1.5
Jay Fenlason 19a6b61
- Workaround for rhbz#617766 appears to no longer be needed for 1.5
Jay Fenlason 19a6b61
- remove pkgconfig files in instal
Jay Fenlason 19a6b61
- Remove orteCC.1 dangling symlink
Jay Fenlason 19a6b61
- Adjust the files entries for share/openmpi/help* and share/openmpi/mca*
Jay Fenlason 19a6b61
- Adjust the files entries for share/openmpi/mpi*
Jay Fenlason 19a6b61
- Add files entry for share/openmpi/orte*.txt
Jay Fenlason 19a6b61
1c1fa35
* Sun Sep 05 2010 Dennis Gilmore <dennis@ausil.us> - 1.4.1-7
a978faa
- disable valgrind support on sparc arches
bf65001
9ab346f
* Sat Jul 24 2010 David Malcolm <dmalcolm@redhat.com> - 1.4.1-6
9ab346f
- workaround for rhbz#617766
9ab346f
8548809
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1.4.1-5
8548809
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
8548809
d1d00b1
* Mon Mar 29 2010 Jay Fenlason <fenlason@redhat.com> - 1.4.1-4
d1d00b1
- Update to fix licencing and packaging issues:
d1d00b1
  Use the system plpa and ltdl librarires rather than the ones in the tarball
d1d00b1
  Remove licence incompatible files from the tarball.
d1d00b1
- update module.in to prepend-path		PYTHONPATH
d1d00b1
c18f8a8
* Tue Mar 9 2010 Jay Fenlason <fenlason@redhat.com> - 1.4.1-3
c18f8a8
- remove the pkgconfig file completely like we did in RHEL.
c18f8a8
8580754
* Tue Jan 26 2010 Jay Fenlason <fenlason@redhat.com> - 1.4.1-2
8580754
- BuildRequires: python
8580754
12da662
* Tue Jan 26 2010 Jay Fenlason <fenlason@redhat.com> - 1.4.1-1
12da662
- New upstream version, which includes the changeset_r22324 patch.
12da662
- Correct a typo in the Source0 line in this spec file.
12da662
257caf3
* Fri Jan 15 2010 Doug Ledford <dledford@redhat.com> - 1.4-4
257caf3
- Fix an issue with usage of _cc_name_suffix that cause a broken define in
257caf3
  our module file
257caf3
92d1170
* Fri Jan 15 2010 Doug Ledford <dledford@redhat.com> - 1.4-3
92d1170
- Fix pkgconfig file substitution
92d1170
- Bump version so we are later than the equivalent version from Red Hat
92d1170
  Enterprise Linux
92d1170
746245f
* Wed Jan 13 2010 Doug Ledford <dledford@redhat.com> - 1.4-1
746245f
- Update to latest upstream stable version
746245f
- Add support for libibcm usage
746245f
- Enable sge support via configure options since it's no longer on by default
746245f
- Add patch to resolve allreduce issue (bz538199)
746245f
- Remove no longer needed patch for Chelsio cards
746245f
c80c295
* Tue Sep 22 2009 Jay Fenlason <fenlason@redhat.com> - 1.3.3-6
c80c295
- Create and own man* directories for use by dependent packages.
c80c295
e18a03f
* Wed Sep 16 2009 Jay Fenlason <fenlason@redhat.com> - 1.3.3-5
e18a03f
- Move the module file from %{_datadir}/Modules/modulefiles/%{namearch} to
e18a03f
  %{_sysconfdir}/modulefiles/%{namearch} where it belongs.
e18a03f
- Have the -devel subpackage own the man1 and man7 directories for completeness.
e18a03f
- Add a blank line before the clean section.
e18a03f
- Remove --enable-mpirun-prefix-by-default from configure.
e18a03f
688d01b
* Wed Sep 9 2009 Jay Fenlason <fenlason@redhat.com> - 1.3.3-4
688d01b
- Modify packaging to conform to
688d01b
  https://fedoraproject.org/wiki/PackagingDrafts/MPI (bz521334).
688d01b
- remove --with-ft=cr from configure, as it was apparently causing problems
688d01b
  for some people.
688d01b
- Add librdmacm-devel and librdmacm to BuildRequires (related bz515565).
688d01b
- Add openmpi-bz515567.patch to add support for the latest Chelsio device IDs
688d01b
  (related bz515567).
688d01b
- Add exclude-arch (s390 s390x) because we don't have required -devel packages
688d01b
  there.
688d01b
f030191
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.3-3
f030191
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f030191
e44762c
* Tue Jul 21 2009 Doug Ledford <dledford@redhat.com> - 1.3.3-2
e44762c
- Add MPI_BIN and MPI_LIB to the modules file (related bz511099)
e44762c
c1fa9cb
* Tue Jul 21 2009 Doug Ledford <dledford@redhat.com> - 1.3.3-1
c1fa9cb
- Make sure all created dirs are owned (bz474677)
c1fa9cb
- Fix loading of pkgconfig file (bz476844)
c1fa9cb
- Resolve file conflict between us and libotf (bz496131)
c1fa9cb
- Resolve dangling symlinks issue (bz496909)
c1fa9cb
- Resolve unexpanded %%{mode} issues (bz496911)
c1fa9cb
- Restore -devel subpackage (bz499851)
c1fa9cb
- Make getting the default openmpi devel environment easier (bz504357)
c1fa9cb
- Make the -devel package pull in the base package (bz459458)
c1fa9cb
- Make it easier to use alternative compilers to build package (bz246484)
c1fa9cb
abc4fcb
* Sat Jul 18 2009 Jussi Lehtola <jussilehtola@fedoraproject.org> - 1.3.1-4
abc4fcb
- Add Provides: openmpi-devel to fix other package builds in rawhide.
abc4fcb
9c371e1
* Fri May 08 2009 Lubomir Rintel <lkundrak@v3.sk> - 1.3.1-3
9c371e1
- Treat i586 the same way as i386
9c371e1
fa6ba23
* Wed Apr 22 2009 Doug Ledford <dledford@redhat.com> - 1.3.1-2
fa6ba23
- fixed broken update
fa6ba23
- Resolves: bz496909, bz496131, bz496911
fa6ba23
e500ef7
* Tue Apr 14 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 1.3.1-1
e500ef7
- update to 1.3.1, cleanup alternatives, spec, make new vt subpackage
e500ef7
b501635
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.4-3
b501635
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
b501635
23a5ce7
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.2.4-2
23a5ce7
- Autorebuild for GCC 4.3
23a5ce7
ec35c69
* Wed Oct 17 2007 Doug Ledford <dledford@redhat.com> - 1.2.4-1
ec35c69
- Update to 1.2.4 upstream version
9f66e54
- Build against libtorque
9f66e54
- Pass a valid mode to open
9f66e54
- Resolves: bz189441, bz265141
ec35c69
d7ea92a
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 1.2.3-5
d7ea92a
- Rebuild for selinux ppc32 issue.
d7ea92a
f5b7a30
* Mon Jul 16 2007 Doug Ledford <dledford@redhat.com> - 1.2.3-4
f5b7a30
- Fix a directory permission problem on the base openmpi directories
f5b7a30
Florian La Roche a8a1526
* Thu Jul 12 2007 Florian La Roche <laroche@redhat.com> - 1.2.3-3
Florian La Roche a8a1526
- requires alternatives for various sub-rpms
Florian La Roche a8a1526
b1bb0e4
* Mon Jul 02 2007 Doug Ledford <dledford@redhat.com> - 1.2.3-2
b1bb0e4
- Fix dangling symlink issue caused by a bad macro usage
b1bb0e4
- Resolves: bz246450
b1bb0e4
4739e23
* Wed Jun 27 2007 Doug Ledford <dledford@redhat.com> - 1.2.3-1
4739e23
- Update to latest upstream version
4739e23
- Fix file ownership on -libs package
4739e23
- Take a swing at solving the multi-install compatibility issues
4739e23
4739e23
* Mon Feb 19 2007 Doug Ledford <dledford@redhat.com> - 1.1.1-7
4739e23
- Bump version to be at least as high as the RHEL4U5 openmpi
4739e23
- Integrate fixes made in RHEL4 openmpi into RHEL5 (fix a multilib conflict
4739e23
  for the openmpi.module file by moving from _datadir to _libdir, make sure
4739e23
  all sed replacements have the g flag so they replace all instances of
e500ef7
  the marker per line, not just the first, and add a %%defattr tag to the
4739e23
  files section of the -libs package to avoid install errors about
4739e23
  brewbuilder not being a user or group)
4739e23
- Resolves: bz229298
4739e23
4739e23
* Wed Jan 17 2007 Doug Ledford <dledford@redhat.com> - 1.1.1-5
4739e23
- Remove the FORTIFY_SOURCE and stack protect options
4739e23
- Related: bz213075
4739e23
4739e23
* Fri Oct 20 2006 Doug Ledford <dledford@redhat.com> - 1.1.1-4
4739e23
- Bump and build against the final openib-1.1 package
4739e23
4739e23
* Wed Oct 18 2006 Doug Ledford <dledford@redhat.com> - 1.1.1-3
4739e23
- Fix an snprintf length bug in opal/util/cmd_line.c
4739e23
- RESOLVES: rhbz#210714
4739e23
4739e23
* Wed Oct 18 2006 Doug Ledford <dledford@redhat.com> - 1.1.1-2
4739e23
- Bump and build against openib-1.1-0.pre1.1 instead of 1.0
4739e23
4739e23
* Tue Oct 17 2006 Doug Ledford <dledford@redhat.com> - 1.1.1-1
4739e23
- Update to upstream 1.1.1 version
Florian La Roche f9acfe6
ce4d3fb
* Fri Oct 13 2006 Doug Ledford <dledford@redhat.com> - 1.1-7
ce4d3fb
- ia64 can't take -m64 on the gcc command line, so don't set it there
ce4d3fb
dfe1d27
* Wed Oct 11 2006 Doug Ledford <dledford@redhat.com> - 1.1-6
dfe1d27
- Bump rev to match fc6 rev
dfe1d27
- Fixup some issue with alternatives support
dfe1d27
- Split the 32bit and 64bit libs ld.so.conf.d files into two files so
dfe1d27
  multilib or single lib installs both work properly
dfe1d27
- Put libs into their own package
e500ef7
- Add symlinks to /usr/share/openmpi/bin%%{mode} so that opal_wrapper-%%{mode}
dfe1d27
  can be called even if it isn't the currently selected default method in
dfe1d27
  the alternatives setup (opal_wrapper needs to be called by mpicc, mpic++,
dfe1d27
  etc. in order to determine compile mode from argv[0]).
dfe1d27
533316b
* Sun Aug 27 2006 Doug Ledford <dledford@redhat.com> - 1.1-4
533316b
- Make sure the post/preun scripts only add/remove alternatives on initial
533316b
  install and final removal, otherwise don't touch.
533316b
533316b
* Fri Aug 25 2006 Doug Ledford <dledford@redhat.com> - 1.1-3
533316b
- Don't ghost the mpi.conf file as that means it will get removed when
533316b
  you remove 1 out of a number of alternatives based packages
533316b
- Put the .mod file in -devel
533316b
b637e0a
* Mon Aug  7 2006 Doug Ledford <dledford@redhat.com> - 1.1-2
b637e0a
- Various lint cleanups
b637e0a
- Switch to using the standard alternatives mechanism instead of a home
b637e0a
  grown one
b637e0a
8f2f3ec
* Wed Aug  2 2006 Doug Ledford <dledford@redhat.com> - 1.1-1
8f2f3ec
- Upgrade to 1.1
8f2f3ec
- Build with Infiniband support via openib
8f2f3ec
jvdias 2ee3f6c
* Mon Jun 12 2006 Jason Vas Dias <jvdias@redhat.com> - 1.0.2-1
jvdias 2ee3f6c
- Upgrade to 1.0.2
jvdias 2ee3f6c
jvdias f7e5af9
* Wed Feb 15 2006 Jason Vas Dias <jvdias@redhat.com> - 1.0.1-1
jvdias f7e5af9
- Import into Fedora Core
jvdias f7e5af9
- Resolve LAM clashes 
jvdias f7e5af9
jvdias f7e5af9
* Wed Jan 25 2006 Orion Poplawski <orion@cora.nwra.com> - 1.0.1-2
jvdias f7e5af9
- Use configure options to install includes and libraries
jvdias f7e5af9
- Add ld.so.conf.d file to find libraries
jvdias f7e5af9
- Add -fPIC for x86_64
jvdias f7e5af9
jvdias f7e5af9
* Tue Jan 24 2006 Orion Poplawski <orion@cora.nwra.com> - 1.0.1-1
jvdias f7e5af9
- 1.0.1
jvdias f7e5af9
- Use alternatives
jvdias f7e5af9
jvdias f7e5af9
* Sat Nov 19 2005 Ed Hill <ed@eh3.com> - 1.0-2
jvdias f7e5af9
- fix lam conflicts
jvdias f7e5af9
jvdias f7e5af9
* Fri Nov 18 2005 Ed Hill <ed@eh3.com> - 1.0-1
jvdias f7e5af9
- initial specfile created
jvdias f7e5af9