Compare commits

...

9 Commits

Author SHA1 Message Date
Orion Poplawski 1d6d0b22e5 Add osh/shmem manpages; Drop gfotran linkage 2015-11-09 11:01:32 -07:00
Orion Poplawski 12c21d6dc3 Merge branch 'master' into altcc-1.10.1
Conflicts:
	macros.openmpi
	openmpi.spec
2015-11-05 16:29:32 -07:00
Orion Poplawski b2cccbb8af Use module hierarchy
Use compiler settings from build environment
2015-10-26 15:05:35 -06:00
Orion Poplawski f25b134a7a Update to 1.10.0 2015-10-07 14:39:44 -06:00
Orion Poplawski 63d5cff7c0 Set enable-opal-multi-threads for IB support 2012-11-02 12:18:58 -06:00
Orion Poplawski e01703e681 Install into /opt/%{shortname}-%{_cc_name}/%{version} 2012-09-14 15:39:01 -06:00
Orion Poplawski 809e536dab Fixup merge - drop XFLAGS 2012-09-13 15:27:43 -06:00
Orion Poplawski c63d1f977a Drop opt_?flags from wrapper flags 2012-09-13 14:53:14 -06:00
Orion Poplawski 97f177126d Initial AltCCRPMs version - Intel compiler 2012-09-12 16:58:57 -06:00
3 changed files with 164 additions and 122 deletions

View File

@ -1,6 +1,6 @@
%_openmpi_load \ %_openmpi_load \
. /etc/profile.d/modules.sh; \ . /etc/profile.d/modules.sh; \
module load mpi/openmpi-%{_arch}; module load openmpi
%_openmpi_unload \ %_openmpi_unload \
. /etc/profile.d/modules.sh; \ . /etc/profile.d/modules.sh; \
module unload mpi/openmpi-%{_arch}; module unload openmpi

View File

@ -3,19 +3,26 @@
# OpenMPI module for use with 'environment-modules' package: # OpenMPI module for use with 'environment-modules' package:
# #
conflict mpi conflict mpi
prepend-path PATH @LIBDIR@/bin prepend-path PATH @PREFIX@/bin
prepend-path LD_LIBRARY_PATH @LIBDIR@/lib prepend-path LD_LIBRARY_PATH @LIBDIR@
prepend-path PKG_CONFIG_PATH @LIBDIR@/lib/pkgconfig prepend-path PKG_CONFIG_PATH @LIBDIR@/lib/pkgconfig
prepend-path MANPATH @MANDIR@ prepend-path MANPATH @MANDIR@
setenv MPI_BIN @LIBDIR@/bin setenv MPI_BIN @PREFIX@/bin
setenv MPI_SYSCONFIG @ETCDIR@ setenv MPI_SYSCONFIG @ETCDIR@
setenv MPI_FORTRAN_MOD_DIR @FMODDIR@ setenv MPI_FORTRAN_MOD_DIR @FMODDIR@
setenv MPI_INCLUDE @INCDIR@ setenv MPI_INCLUDE @INCDIR@
setenv MPI_LIB @LIBDIR@/lib setenv MPI_LIB @LIBDIR@
setenv MPI_MAN @MANDIR@ setenv MPI_MAN @MANDIR@
setenv MPI_PYTHON_SITEARCH @PY2SITEARCH@ setenv MPI_PYTHON_SITEARCH @PY2SITEARCH@
setenv MPI_PYTHON2_SITEARCH @PY2SITEARCH@ setenv MPI_PYTHON2_SITEARCH @PY2SITEARCH@
setenv MPI_PYTHON3_SITEARCH @PY3SITEARCH@ setenv MPI_PYTHON3_SITEARCH @PY3SITEARCH@
setenv MPI_COMPILER @COMPILER@ setenv MPI_COMPILER @COMPILER@
setenv MPI_SUFFIX @SUFFIX@ setenv MPI_SUFFIX @SUFFIX@
setenv MPI_HOME @LIBDIR@ setenv MPI_HOME @PREFIX@
set name [lrange [split [ module-info name ] / ] 0 0 ]
set ver [lrange [split [ module-info name ] / ] 1 1 ]
prepend-path MODULEPATH @MODULEPATH@
setenv MPI_NAME $name
setenv MPI_VERSION $ver

View File

@ -1,18 +1,30 @@
%global _hardened_build 1 # AltCCRPMS
# We only compile with gcc, but other people may want other compilers. %global shortname openmpi
# Set the compiler here.
%global opt_cc gcc %global _cc_name %{getenv:COMPILER_NAME}
# Optional CFLAGS to use with the specific compiler...gcc doesn't need any, %global _cc_name_suffix -%{_cc_name}
# so uncomment and define to use
#global opt_cflags %global _cc_version %{getenv:COMPILER_VERSION}
%global opt_cxx g++ %global _cc_name_ver %{_cc_name}-%{_cc_version}
#global opt_cxxflags %global _prefix /opt/%{_cc_name_ver}/%{shortname}-%{version}
%global opt_f77 gfortran %global _sysconfdir %{_prefix}/etc
#global opt_fflags %global _defaultdocdir %{_prefix}/share/doc
%global opt_fc gfortran %global _infodir %{_prefix}/share/info
#global opt_fcflags %global _mandir %{_prefix}/share/man
#We don't want to be beholden to the proprietary libraries
%global _use_internal_dependency_generator 0
%global __find_requires %{nil}
# Non gcc compilers don't generate build ids
%undefine _missing_build_ids_terminate_build
%if 0%{?rhel} && 0%{?rhel} <= 6
%{!?__python2: %global __python2 /usr/bin/python2}
%{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
%{!?python2_version: %global python2_version %(%{__python2} -c "import sys; sys.stdout.write(sys.version[:3])")}
%endif
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
# Optional name suffix to use...we leave it off when compiling with gcc, but # Optional name suffix to use...we leave it off when compiling with gcc, but
# for other compiled versions to install side by side, it will need a # for other compiled versions to install side by side, it will need a
# suffix in order to keep the names from conflicting. # suffix in order to keep the names from conflicting.
@ -20,7 +32,7 @@
%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d) %global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
Name: openmpi%{?_cc_name_suffix} Name: openmpi-1.10.1-%{_cc_name_ver}
Version: 1.10.1 Version: 1.10.1
Release: 1%{?dist} Release: 1%{?dist}
Summary: Open Message Passing Interface Summary: Open Message Passing Interface
@ -35,7 +47,6 @@ Source2: openmpi.pth.py2
Source3: openmpi.pth.py3 Source3: openmpi.pth.py3
Source4: macros.openmpi Source4: macros.openmpi
BuildRequires: gcc-gfortran
%ifnarch s390 %ifnarch s390
BuildRequires: valgrind-devel BuildRequires: valgrind-devel
%endif %endif
@ -45,21 +56,30 @@ BuildRequires: librdmacm-devel libibcm-devel
# vt_dyn.cc:958:28: error: 'class BPatch_basicBlockLoop' has no member named 'getLoopHead' # vt_dyn.cc:958:28: error: 'class BPatch_basicBlockLoop' has no member named 'getLoopHead'
# loop->getLoopHead()->getStartAddress(), loop_stmts ); # loop->getLoopHead()->getStartAddress(), loop_stmts );
#BuildRequires: dyninst-devel #BuildRequires: dyninst-devel
%if 0%{?fedora} || 0%{?rhel} >= 7
BuildRequires: hwloc-devel BuildRequires: hwloc-devel
# So configure can find lstopo # So configure can find lstopo
BuildRequires: hwloc-gui BuildRequires: hwloc-gui
%endif
BuildRequires: java-devel BuildRequires: java-devel
%if 0%{?fedora} || 0%{?rhel} >= 7
# Not compiled with thread support on EL6
BuildRequires: libevent-devel BuildRequires: libevent-devel
%endif
BuildRequires: libfabric-devel BuildRequires: libfabric-devel
BuildRequires: papi-devel BuildRequires: papi-devel
BuildRequires: perl(Getopt::Long) BuildRequires: perl(Getopt::Long)
BuildRequires: python BuildRequires: python
BuildRequires: python2-devel BuildRequires: python2-devel
%if 0%{?fedora}
BuildRequires: python3-devel BuildRequires: python3-devel
%endif
BuildRequires: libtool-ltdl-devel BuildRequires: libtool-ltdl-devel
BuildRequires: torque-devel BuildRequires: torque-devel
BuildRequires: zlib-devel BuildRequires: zlib-devel
%if 0%{?fedora} >= 23
BuildRequires: rpm-mpi-hooks BuildRequires: rpm-mpi-hooks
%endif
Provides: mpi Provides: mpi
Requires: environment(modules) Requires: environment(modules)
@ -69,6 +89,18 @@ Requires: openssh-clients
# otf appears to be bundled # otf appears to be bundled
Provides: bundled(otf) = 1.12.3 Provides: bundled(otf) = 1.12.3
# AltCCRPMS
Provides: %{shortname}-%{_cc_name} = %{version}-%{release}
Provides: %{shortname}-%{_cc_name}%{?_isa} = %{version}-%{release}
%if 0%{?fedora} || 0%{?rhel} >= 7
Requires: hwloc-libs
Requires: libevent
%endif
Requires: libfabric
Requires: libibverbs
Requires: opensm-libs
Requires: torque-libs
# s390 is unlikely to have the hardware we want, and some of the -devel # s390 is unlikely to have the hardware we want, and some of the -devel
# packages we require aren't available there. # packages we require aren't available there.
ExcludeArch: s390 s390x ExcludeArch: s390 s390x
@ -89,9 +121,14 @@ researchers. For more information, see http://www.open-mpi.org/ .
%package devel %package devel
Summary: Development files for openmpi Summary: Development files for openmpi
Group: Development/Libraries Group: Development/Libraries
Requires: %{name} = %{version}-%{release}, gcc-gfortran Requires: %{name} = %{version}-%{release}
Provides: mpi-devel Provides: mpi-devel
%if 0%{?fedora} >= 23
Requires: rpm-mpi-hooks Requires: rpm-mpi-hooks
%endif
# AltCCRPMS
Provides: %{shortname}-%{_cc_name}-devel = %{version}-%{release}
Provides: %{shortname}-%{_cc_name}-devel%{?_isa} = %{version}-%{release}
%description devel %description devel
Contains development headers and libraries for openmpi. Contains development headers and libraries for openmpi.
@ -120,159 +157,157 @@ Contains development wrapper for compiling Java with openmpi.
# We set this to for convenience, since this is the unique dir we use for this # We set this to for convenience, since this is the unique dir we use for this
# particular package, version, compiler # particular package, version, compiler
%global namearch openmpi-%{_arch}%{?_cc_name_suffix} %global namearch openmpi%{?_cc_name_suffix}
%prep %prep
%setup -q -n openmpi-%{version} %setup -q -n openmpi-%{version}
%build %build
./configure --prefix=%{_libdir}/%{name} \ [ "${FC/pgf/}" != "$FC" ] && export FC="$FC -noswitcherror"
--mandir=%{_mandir}/%{namearch} \ ./configure --prefix=%{_prefix} \
--includedir=%{_includedir}/%{namearch} \ --libdir=%{_prefix}/%{_lib} \
--sysconfdir=%{_sysconfdir}/%{namearch} \
--disable-silent-rules \ --disable-silent-rules \
--enable-mpi-java \ --enable-mpi-java \
%if 0%{?fedora} || 0%{?rhel} >= 7
--with-hwloc=/usr \
--with-libevent=/usr \ --with-libevent=/usr \
%endif
--with-sge \ --with-sge \
%ifnarch s390 %ifnarch s390
--with-valgrind \ --with-valgrind \
--enable-memchecker \ --enable-memchecker \
%endif %endif
--with-hwloc=/usr \
--with-libltdl=/usr \ --with-libltdl=/usr \
CC=%{opt_cc} CXX=%{opt_cxx} \ LDFLAGS='%{?__global_ldflags}'
LDFLAGS='%{__global_ldflags}' \
CFLAGS="%{?opt_cflags} %{!?opt_cflags:$RPM_OPT_FLAGS}" \
CXXFLAGS="%{?opt_cxxflags} %{!?opt_cxxflags:$RPM_OPT_FLAGS}" \
FC=%{opt_fc} FCFLAGS="%{?opt_fcflags} %{!?opt_fcflags:$RPM_OPT_FLAGS}"
# --with-contrib-vt-flags='CXXFLAGS="-I%{_includedir}/dyninst -L%{_libdir}/dyninst"' \ # --with-contrib-vt-flags='CXXFLAGS="-I%{_includedir}/dyninst -L%{_libdir}/dyninst"' \
make %{?_smp_mflags} V=1 make %{?_smp_mflags} V=1
%install %install
make install DESTDIR=%{buildroot} make install DESTDIR=%{buildroot}
find %{buildroot}%{_libdir}/%{name}/lib -name \*.la | xargs rm find %{buildroot}%{_libdir} -name \*.la | xargs rm
find %{buildroot}%{_mandir}/%{namearch} -type f | xargs gzip -9 find %{buildroot}%{_mandir} -type f | xargs gzip -9
ln -s mpicc.1.gz %{buildroot}%{_mandir}/%{namearch}/man1/mpiCC.1.gz ln -s mpicc.1.gz %{buildroot}%{_mandir}/man1/mpiCC.1.gz
rm -f %{buildroot}%{_mandir}/%{namearch}/man1/mpiCC.1 rm -f %{buildroot}%{_mandir}/man1/mpiCC.1
rm -f %{buildroot}%{_mandir}/%{namearch}/man1/orteCC.1* rm -f %{buildroot}%{_mandir}/man1/orteCC.1*
rm -f %{buildroot}%{_libdir}/%{name}/share/vampirtrace/doc/opari/lacsi01.ps.gz rm -f %{buildroot}%{_libdir}/%{name}/share/vampirtrace/doc/opari/lacsi01.ps.gz
mkdir %{buildroot}%{_mandir}/%{namearch}/man{2,4,5,6,8,9,n} mkdir %{buildroot}%{_mandir}/man{2,4,5,6,8,9,n}
# Make the environment-modules file # Make the environment-modules file
mkdir -p %{buildroot}%{_sysconfdir}/modulefiles/mpi mkdir -p %{buildroot}/opt/modulefiles/Compiler/%{_cc_name}/%{_cc_version}/%{shortname}
# Since we're doing our own substitution here, use our own definitions. # Since we're doing our own substitution here, use our own definitions.
sed 's#@LIBDIR@#%{_libdir}/%{name}#; sed 's#@PREFIX@#%{_prefix}#;
s#@ETCDIR@#%{_sysconfdir}/%{namearch}#; s#@MODULEPATH@#/opt/modulefiles/MPI/%{_cc_name}/%{_cc_version}/%{shortname}/%{version}#;
s#@FMODDIR@#%{_fmoddir}/%{name}#; s#@LIBDIR@#%{_libdir}#g;
s#@INCDIR@#%{_includedir}/%{namearch}#; s#@ETCDIR@#%{_sysconfdir}#g;
s#@MANDIR@#%{_mandir}/%{namearch}#; s#@FMODDIR@#%{_libdir}#g;
s#@PY2SITEARCH@#%{python2_sitearch}/%{name}#; s#@INCDIR@#%{_includedir}#g;
s#@PY3SITEARCH@#%{python3_sitearch}/%{name}#; s#@MANDIR@#%{_mandir}#g;
s#@COMPILER@#openmpi-%{_arch}%{?_cc_name_suffix}#; s#@PY2SITEARCH@#%{_libdir}/python%{python2_version}/site-packages#;
%if 0%{?fedora}
s#@PY3SITEARCH@#%{_libdir}/python%{python3_version}/site-packages#;
%endif
s#@COMPILER@#openmpi%{?_cc_name_suffix}#g
s#@SUFFIX@#%{?_cc_name_suffix}_openmpi#' \ s#@SUFFIX@#%{?_cc_name_suffix}_openmpi#' \
<%{SOURCE1} \ <%{SOURCE1} \
>%{buildroot}%{_sysconfdir}/modulefiles/mpi/%{namearch} >%{buildroot}/opt/modulefiles/Compiler/%{_cc_name}/%{_cc_version}/%{shortname}/%{version}
mkdir -p %{buildroot}/opt/modulefiles/MPI/%{_cc_name}/%{_cc_version}/%{shortname}/%{version}
# make the rpm config file # make the rpm config file
install -Dpm 644 %{SOURCE4} %{buildroot}/%{macrosdir}/macros.%{namearch} install -Dpm 644 %{SOURCE4} %{buildroot}/%{macrosdir}/macros.%{namearch}
# Link the fortran module to proper location
mkdir -p %{buildroot}/%{_fmoddir}/%{name}
for mod in %{buildroot}%{_libdir}/%{name}/lib/*.mod
do
modname=$(basename $mod)
ln -s ../../../%{name}/lib/${modname} %{buildroot}/%{_fmoddir}/%{name}/
done
# Remove extraneous wrapper link libraries (bug 814798) # Remove extraneous wrapper link libraries (bug 814798)
sed -i -e s/-ldl// -e s/-lhwloc// \ sed -i -e s/-ldl// -e s/-lhwloc// \
%{buildroot}%{_libdir}/%{name}/share/openmpi/*-wrapper-data.txt %{buildroot}%{_datadir}/openmpi/*-wrapper-data.txt
# install .pth files # install .pth files
mkdir -p %{buildroot}/%{python2_sitearch}/%{name} mkdir -p %{buildroot}/%{python2_sitearch}/%{name}
install -pDm0644 %{SOURCE2} %{buildroot}/%{python2_sitearch}/openmpi.pth install -pDm0644 %{SOURCE2} %{buildroot}/%{python2_sitearch}/openmpi.pth
%if 0%{?fedora}
mkdir -p %{buildroot}/%{python3_sitearch}/%{name} mkdir -p %{buildroot}/%{python3_sitearch}/%{name}
install -pDm0644 %{SOURCE3} %{buildroot}/%{python3_sitearch}/openmpi.pth install -pDm0644 %{SOURCE3} %{buildroot}/%{python3_sitearch}/openmpi.pth
%endif
%check %check
make check make check
%files %files
%dir %{_libdir}/%{name} %dir %{_prefix}
%dir %{_sysconfdir}/%{namearch} %dir %{_bindir}
%dir %{_libdir}/%{name}/bin %dir %{_libdir}
%dir %{_libdir}/%{name}/lib %dir %{_sysconfdir}
%dir %{_libdir}/%{name}/lib/openmpi %dir %{_mandir}
%dir %{_mandir}/%{namearch} %dir %{_mandir}/man*
%dir %{_mandir}/%{namearch}/man*
%dir %{python2_sitearch}/%{name} %dir %{python2_sitearch}/%{name}
%{python2_sitearch}/openmpi.pth %{python2_sitearch}/openmpi.pth
%if 0%{?fedora}
%dir %{python3_sitearch}/%{name} %dir %{python3_sitearch}/%{name}
%{python3_sitearch}/openmpi.pth %{python3_sitearch}/openmpi.pth
%config(noreplace) %{_sysconfdir}/%{namearch}/* %endif
%{_libdir}/%{name}/bin/mpi[er]* %config(noreplace) %{_sysconfdir}/*
%{_libdir}/%{name}/bin/ompi* %{_bindir}/mpi[er]*
%{_libdir}/%{name}/bin/opari %{_bindir}/ompi*
%{_libdir}/%{name}/bin/orte[-dr_]* %{_bindir}/opari
%{_libdir}/%{name}/bin/oshmem_info %{_bindir}/orte[-dr_]*
%{_libdir}/%{name}/bin/oshrun %{_bindir}/oshmem_info
%{_libdir}/%{name}/bin/otf* %{_bindir}/oshrun
%{_libdir}/%{name}/bin/shmemrun %{_bindir}/otf*
%{_libdir}/%{name}/lib/*.so.* %{_bindir}/shmemrun
%{_mandir}/%{namearch}/man1/mpi[er]* %{_libdir}/*.so.*
%{_mandir}/%{namearch}/man1/ompi* %{_mandir}/man1/mpi[er]*
%{_mandir}/%{namearch}/man1/orte[-dr_]* %{_mandir}/man1/ompi*
%{_mandir}/%{namearch}/man1/oshmem_info* %{_mandir}/man1/orte[-dr_]*
%{_mandir}/%{namearch}/man1/oshrun* %{_mandir}/man1/oshmem_info*
%{_mandir}/%{namearch}/man1/shmemrun* %{_mandir}/man1/oshrun*
%{_mandir}/%{namearch}/man7/ompi* %{_mandir}/man1/shmemrun*
%{_mandir}/%{namearch}/man7/orte* %{_mandir}/man7/ompi*
%{_libdir}/%{name}/lib/openmpi/* %{_mandir}/man7/orte*
%{_sysconfdir}/modulefiles/mpi/ %dir %{_libdir}/openmpi
%dir %{_libdir}/%{name}/share %{_libdir}/openmpi/*
%dir %{_libdir}/%{name}/share/openmpi /opt/modulefiles/Compiler/
%{_libdir}/%{name}/share/openmpi/doc /opt/modulefiles/MPI/%{_cc_name}/%{_cc_version}
%{_libdir}/%{name}/share/openmpi/amca-param-sets %dir %{_datadir}
%{_libdir}/%{name}/share/openmpi/help*.txt %dir %{_datadir}/openmpi
%{_libdir}/%{name}/share/openmpi/mca-btl-openib-device-params.ini %{_datadir}/openmpi/doc
%{_libdir}/%{name}/share/openmpi/mca-coll-ml.config %{_datadir}/openmpi/amca-param-sets
%{_datadir}/openmpi/help*.txt
%{_datadir}/openmpi/mca-btl-openib-device-params.ini
%{_datadir}/openmpi/mca-coll-ml.config
%files devel %files devel
%dir %{_includedir}/%{namearch} %dir %{_includedir}
%dir %{_libdir}/%{name}/share/vampirtrace %dir %{_datadir}/vampirtrace
%{_libdir}/%{name}/bin/mpi[cCf]* %{_bindir}/mpi[cCf]*
%{_libdir}/%{name}/bin/opal_* %{_bindir}/opal_*
%{_libdir}/%{name}/bin/orte[cCf]* %{_bindir}/orte[cCf]*
%{_libdir}/%{name}/bin/osh[cf]* %{_bindir}/osh[cf]*
%{_libdir}/%{name}/bin/shmem[cf]* %{_bindir}/shmem[cf]*
%{_libdir}/%{name}/bin/vt* %{_bindir}/vt*
%{_includedir}/%{namearch}/* %{_includedir}/*
%{_fmoddir}/%{name}/ %{_libdir}/*.so
%{_libdir}/%{name}/lib/*.so %{_libdir}/lib*.a
%{_libdir}/%{name}/lib/lib*.a %{_libdir}/*.mod
%{_libdir}/%{name}/lib/*.mod %{_libdir}/pkgconfig/
%{_libdir}/%{name}/lib/pkgconfig/ %{_mandir}/man1/mpi[cCf]*
%{_mandir}/%{namearch}/man1/mpi[cCf]* %{_mandir}/man1/opal_*
%{_mandir}/%{namearch}/man1/osh[cCf]* %{_mandir}/man1/osh[cCf]*
%{_mandir}/%{namearch}/man1/shmem[cCf]* %{_mandir}/man1/shmem[cCf]*
%{_mandir}/%{namearch}/man1/opal_* %{_mandir}/man3/*
%{_mandir}/%{namearch}/man3/* %{_mandir}/man7/opal*
%{_mandir}/%{namearch}/man7/opal* %{_datadir}/openmpi/openmpi-valgrind.supp
%{_libdir}/%{name}/share/openmpi/openmpi-valgrind.supp %{_datadir}/openmpi/*-wrapper-data.txt
%{_libdir}/%{name}/share/openmpi/*-wrapper-data.txt %{_datadir}/vampirtrace/*
%{_libdir}/%{name}/share/vampirtrace/*
%{macrosdir}/macros.%{namearch} %{macrosdir}/macros.%{namearch}
%files java %files java
%{_libdir}/%{name}/lib/mpi.jar %{_libdir}/mpi.jar
%files java-devel %files java-devel
%{_libdir}/%{name}/bin/mpijavac %{_bindir}/mpijavac
%{_libdir}/%{name}/bin/mpijavac.pl %{_bindir}/mpijavac.pl
# Currently this only contaings openmpi/javadoc # Currently this only contaings openmpi/javadoc
%{_libdir}/%{name}/share/doc/ %{_datadir}/doc/
%{_mandir}/%{namearch}/man1/mpijavac.1.gz %{_mandir}/man1/mpijavac.1.gz
%changelog %changelog