2014-02-01 04:48:09 +00:00
|
|
|
%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
|
|
|
|
|
2013-12-22 09:54:53 +00:00
|
|
|
# Patch version?
|
2015-11-16 19:59:43 +00:00
|
|
|
%global snaprel %{nil}
|
2011-02-21 19:23:37 +00:00
|
|
|
|
2013-12-22 09:35:34 +00:00
|
|
|
# NOTE: Try not to release new versions to released versions of Fedora
|
2011-02-21 19:23:37 +00:00
|
|
|
# You need to recompile all users of HDF5 for each version change
|
2005-07-05 20:20:17 +00:00
|
|
|
Name: hdf5
|
2016-12-05 20:45:40 +00:00
|
|
|
Version: 1.8.18
|
2017-08-02 23:24:47 +00:00
|
|
|
Release: 7%{?dist}
|
2005-07-05 20:20:17 +00:00
|
|
|
Summary: A general purpose library and file format for storing scientific data
|
2007-08-24 15:47:22 +00:00
|
|
|
License: BSD
|
2005-07-05 20:20:17 +00:00
|
|
|
Group: System Environment/Libraries
|
2007-03-02 23:27:55 +00:00
|
|
|
URL: http://www.hdfgroup.org/HDF5/
|
2012-11-12 18:04:45 +00:00
|
|
|
|
2016-12-05 20:45:40 +00:00
|
|
|
Source0: https://support.hdfgroup.org/ftp/HDF5/current18/src/hdf5-%{version}%{?snaprel}.tar.bz2
|
2008-02-29 22:49:06 +00:00
|
|
|
Source1: h5comp
|
2013-06-10 17:28:00 +00:00
|
|
|
# For man pages
|
2016-05-14 03:38:47 +00:00
|
|
|
Source2: http://ftp.us.debian.org/debian/pool/main/h/hdf5/hdf5_1.8.16+docs-8.debian.tar.xz
|
2011-11-16 20:26:19 +00:00
|
|
|
Patch0: hdf5-LD_LIBRARY_PATH.patch
|
2016-03-21 03:55:19 +00:00
|
|
|
# Properly run MPI_Finalize() in t_pflush1
|
|
|
|
Patch1: hdf5-mpi.patch
|
2016-12-05 20:45:40 +00:00
|
|
|
# Fix compilation with -Werror=implicit-function-declaration
|
|
|
|
Patch2: hdf5-implicit.patch
|
2014-03-19 17:28:39 +00:00
|
|
|
# Fix long double conversions on ppc64le
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1078173
|
|
|
|
Patch3: hdf5-ldouble-ppc64le.patch
|
2012-02-10 17:22:16 +00:00
|
|
|
|
2005-12-21 21:07:16 +00:00
|
|
|
BuildRequires: krb5-devel, openssl-devel, zlib-devel, gcc-gfortran, time
|
2014-03-19 17:28:39 +00:00
|
|
|
# For patches/rpath
|
|
|
|
BuildRequires: automake
|
|
|
|
BuildRequires: libtool
|
2012-02-10 17:22:16 +00:00
|
|
|
# Needed for mpi tests
|
|
|
|
BuildRequires: openssh-clients
|
2010-12-12 14:44:40 +00:00
|
|
|
|
2013-07-21 22:40:56 +00:00
|
|
|
%global with_mpich 1
|
2010-12-12 14:44:40 +00:00
|
|
|
%global with_openmpi 1
|
|
|
|
%if 0%{?rhel}
|
2010-12-08 16:32:13 +00:00
|
|
|
%ifarch ppc64
|
2010-12-12 14:44:40 +00:00
|
|
|
# No mpich2 on ppc64 in EL
|
2013-07-21 22:40:56 +00:00
|
|
|
%global with_mpich 0
|
2010-12-12 14:44:40 +00:00
|
|
|
%endif
|
|
|
|
%endif
|
2016-12-08 17:40:03 +00:00
|
|
|
%if 0%{?fedora} < 26
|
2012-11-12 18:04:45 +00:00
|
|
|
%ifarch s390 s390x
|
2010-12-12 14:44:40 +00:00
|
|
|
# No openmpi on s390(x)
|
|
|
|
%global with_openmpi 0
|
|
|
|
%endif
|
2016-12-08 17:40:03 +00:00
|
|
|
%endif
|
2010-12-12 14:44:40 +00:00
|
|
|
|
2013-07-21 22:40:56 +00:00
|
|
|
%if %{with_mpich}
|
|
|
|
%global mpi_list mpich
|
2010-12-12 14:44:40 +00:00
|
|
|
%endif
|
|
|
|
%if %{with_openmpi}
|
2011-12-01 17:13:08 +00:00
|
|
|
%global mpi_list %{?mpi_list} openmpi
|
2010-12-08 16:32:13 +00:00
|
|
|
%endif
|
2005-07-05 20:20:17 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
HDF5 is a general purpose library and file format for storing scientific data.
|
2010-10-26 21:05:12 +00:00
|
|
|
HDF5 can store two primary objects: datasets and groups. A dataset is
|
|
|
|
essentially a multidimensional array of data elements, and a group is a
|
|
|
|
structure for organizing objects in an HDF5 file. Using these two basic
|
|
|
|
objects, one can create and store almost any kind of scientific data
|
|
|
|
structure, such as images, arrays of vectors, and structured and unstructured
|
2005-07-05 20:20:17 +00:00
|
|
|
grids. You can also mix and match them in HDF5 files according to your needs.
|
|
|
|
|
2008-02-29 22:49:06 +00:00
|
|
|
|
2005-07-05 20:20:17 +00:00
|
|
|
%package devel
|
|
|
|
Summary: HDF5 development files
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
2011-02-06 19:45:31 +00:00
|
|
|
Requires: zlib-devel
|
2005-07-05 20:20:17 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
HDF5 development headers and libraries.
|
|
|
|
|
2008-02-29 22:49:06 +00:00
|
|
|
|
|
|
|
%package static
|
|
|
|
Summary: HDF5 static libraries
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name}-devel = %{version}-%{release}
|
|
|
|
|
|
|
|
%description static
|
|
|
|
HDF5 static libraries.
|
|
|
|
|
|
|
|
|
2013-07-21 22:40:56 +00:00
|
|
|
%if %{with_mpich}
|
|
|
|
%package mpich
|
|
|
|
Summary: HDF5 mpich libraries
|
2010-10-26 21:05:12 +00:00
|
|
|
Group: Development/Libraries
|
2013-07-21 22:40:56 +00:00
|
|
|
BuildRequires: mpich-devel
|
|
|
|
Provides: %{name}-mpich2 = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-mpich2 < 1.8.11-4
|
2010-10-26 21:05:12 +00:00
|
|
|
|
2013-07-21 22:40:56 +00:00
|
|
|
%description mpich
|
|
|
|
HDF5 parallel mpich libraries
|
2010-10-26 21:05:12 +00:00
|
|
|
|
|
|
|
|
2013-07-21 22:40:56 +00:00
|
|
|
%package mpich-devel
|
|
|
|
Summary: HDF5 mpich development files
|
2010-10-26 21:05:12 +00:00
|
|
|
Group: Development/Libraries
|
2013-07-21 22:40:56 +00:00
|
|
|
Requires: %{name}-mpich%{?_isa} = %{version}-%{release}
|
2016-03-02 22:23:01 +00:00
|
|
|
Requires: mpich-devel
|
2013-07-21 22:40:56 +00:00
|
|
|
Provides: %{name}-mpich2-devel = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-mpich2-devel < 1.8.11-4
|
2010-10-26 21:05:12 +00:00
|
|
|
|
2013-07-21 22:40:56 +00:00
|
|
|
%description mpich-devel
|
|
|
|
HDF5 parallel mpich development files
|
2011-11-25 21:06:05 +00:00
|
|
|
|
|
|
|
|
2013-07-21 22:40:56 +00:00
|
|
|
%package mpich-static
|
|
|
|
Summary: HDF5 mpich static libraries
|
2011-11-25 21:06:05 +00:00
|
|
|
Group: Development/Libraries
|
2013-07-21 22:40:56 +00:00
|
|
|
Requires: %{name}-mpich-devel%{?_isa} = %{version}-%{release}
|
|
|
|
Provides: %{name}-mpich2-static = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-mpich2-static < 1.8.11-4
|
2011-11-25 21:06:05 +00:00
|
|
|
|
2013-07-21 22:40:56 +00:00
|
|
|
%description mpich-static
|
|
|
|
HDF5 parallel mpich static libraries
|
2010-12-08 16:32:13 +00:00
|
|
|
%endif
|
2010-10-26 21:05:12 +00:00
|
|
|
|
|
|
|
|
2010-12-12 14:44:40 +00:00
|
|
|
%if %{with_openmpi}
|
2010-10-26 21:05:12 +00:00
|
|
|
%package openmpi
|
|
|
|
Summary: HDF5 openmpi libraries
|
|
|
|
Group: Development/Libraries
|
|
|
|
BuildRequires: openmpi-devel
|
|
|
|
|
|
|
|
%description openmpi
|
|
|
|
HDF5 parallel openmpi libraries
|
|
|
|
|
|
|
|
|
|
|
|
%package openmpi-devel
|
|
|
|
Summary: HDF5 openmpi development files
|
|
|
|
Group: Development/Libraries
|
2011-11-25 21:06:05 +00:00
|
|
|
Requires: %{name}-openmpi%{_isa} = %{version}-%{release}
|
|
|
|
Requires: openmpi-devel
|
2010-10-26 21:05:12 +00:00
|
|
|
|
|
|
|
%description openmpi-devel
|
|
|
|
HDF5 parallel openmpi development files
|
2011-11-25 21:06:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
%package openmpi-static
|
|
|
|
Summary: HDF5 openmpi static libraries
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name}-openmpi-devel%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description openmpi-static
|
|
|
|
HDF5 parallel openmpi static libraries
|
2010-12-12 14:44:40 +00:00
|
|
|
%endif
|
2010-10-26 21:05:12 +00:00
|
|
|
|
|
|
|
|
2005-07-05 20:20:17 +00:00
|
|
|
%prep
|
2015-06-08 18:26:56 +00:00
|
|
|
%setup -q -a 2 -n %{name}-%{version}%{?snaprel}
|
2011-11-16 20:26:19 +00:00
|
|
|
%patch0 -p1 -b .LD_LIBRARY_PATH
|
2016-03-21 03:55:19 +00:00
|
|
|
%patch1 -p1 -b .mpi
|
2016-12-05 20:45:40 +00:00
|
|
|
%patch2 -p1 -b .implicit
|
2014-03-19 17:28:39 +00:00
|
|
|
%patch3 -p1 -b .ldouble-ppc64le
|
2015-09-26 02:33:11 +00:00
|
|
|
# Force shared by default for compiler wrappers (bug #1266645)
|
|
|
|
sed -i -e '/^STATIC_AVAILABLE=/s/=.*/=no/' */*/h5[cf]*.in
|
2014-03-19 17:28:39 +00:00
|
|
|
autoreconf -f -i
|
2005-07-05 20:20:17 +00:00
|
|
|
|
2007-10-17 16:57:24 +00:00
|
|
|
|
2005-07-05 20:20:17 +00:00
|
|
|
%build
|
2010-10-26 21:05:12 +00:00
|
|
|
#Do out of tree builds
|
|
|
|
%global _configure ../configure
|
|
|
|
#Common configure options
|
|
|
|
%global configure_opts \\\
|
2012-12-03 18:14:37 +00:00
|
|
|
--disable-silent-rules \\\
|
2010-10-26 21:05:12 +00:00
|
|
|
--enable-fortran \\\
|
2012-01-07 15:34:44 +00:00
|
|
|
--enable-fortran2003 \\\
|
2010-10-26 21:05:12 +00:00
|
|
|
--enable-hl \\\
|
|
|
|
--enable-shared \\\
|
|
|
|
%{nil}
|
|
|
|
# --enable-cxx and --enable-parallel flags are incompatible
|
|
|
|
# --with-mpe=DIR Use MPE instrumentation [default=no]
|
|
|
|
# --enable-cxx/fortran/parallel and --enable-threadsafe flags are incompatible
|
|
|
|
|
|
|
|
#Serial build
|
2007-10-17 16:57:24 +00:00
|
|
|
export CC=gcc
|
|
|
|
export CXX=g++
|
|
|
|
export F9X=gfortran
|
2010-10-26 21:05:12 +00:00
|
|
|
mkdir build
|
|
|
|
pushd build
|
2010-12-08 16:32:13 +00:00
|
|
|
ln -s ../configure .
|
2009-10-01 22:08:46 +00:00
|
|
|
%configure \
|
2010-10-26 21:05:12 +00:00
|
|
|
%{configure_opts} \
|
|
|
|
--enable-cxx
|
2005-07-05 20:20:17 +00:00
|
|
|
make
|
2010-10-26 21:05:12 +00:00
|
|
|
popd
|
|
|
|
|
|
|
|
#MPI builds
|
|
|
|
export CC=mpicc
|
|
|
|
export CXX=mpicxx
|
|
|
|
export F9X=mpif90
|
2014-06-27 14:32:31 +00:00
|
|
|
for mpi in %{?mpi_list}
|
2010-10-26 21:05:12 +00:00
|
|
|
do
|
|
|
|
mkdir $mpi
|
|
|
|
pushd $mpi
|
2012-08-29 18:34:43 +00:00
|
|
|
module load mpi/$mpi-%{_arch}
|
2010-12-08 16:32:13 +00:00
|
|
|
ln -s ../configure .
|
2010-10-26 21:05:12 +00:00
|
|
|
%configure \
|
|
|
|
%{configure_opts} \
|
2015-11-20 21:31:35 +00:00
|
|
|
FCFLAGS="$FCFLAGS -I$MPI_FORTRAN_MOD_DIR" \
|
2010-10-26 21:05:12 +00:00
|
|
|
--enable-parallel \
|
2016-05-14 03:38:47 +00:00
|
|
|
--exec-prefix=%{_libdir}/$mpi \
|
2010-10-26 21:05:12 +00:00
|
|
|
--libdir=%{_libdir}/$mpi/lib \
|
|
|
|
--bindir=%{_libdir}/$mpi/bin \
|
|
|
|
--sbindir=%{_libdir}/$mpi/sbin \
|
|
|
|
--includedir=%{_includedir}/$mpi-%{_arch} \
|
|
|
|
--datarootdir=%{_libdir}/$mpi/share \
|
2012-08-29 18:34:43 +00:00
|
|
|
--mandir=%{_libdir}/$mpi/share/man
|
2010-10-26 21:05:12 +00:00
|
|
|
make
|
|
|
|
module purge
|
|
|
|
popd
|
|
|
|
done
|
2005-07-05 20:20:17 +00:00
|
|
|
|
2007-10-17 16:57:24 +00:00
|
|
|
|
2005-07-05 20:20:17 +00:00
|
|
|
%install
|
2010-10-26 21:05:12 +00:00
|
|
|
make -C build install DESTDIR=${RPM_BUILD_ROOT}
|
|
|
|
rm $RPM_BUILD_ROOT/%{_libdir}/*.la
|
2016-12-30 21:18:15 +00:00
|
|
|
#Fortran modules
|
|
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_fmoddir}
|
|
|
|
mv ${RPM_BUILD_ROOT}%{_includedir}/*.mod ${RPM_BUILD_ROOT}%{_fmoddir}
|
2014-06-27 14:32:31 +00:00
|
|
|
for mpi in %{?mpi_list}
|
2010-10-26 21:05:12 +00:00
|
|
|
do
|
2012-08-29 18:34:43 +00:00
|
|
|
module load mpi/$mpi-%{_arch}
|
2010-10-26 21:05:12 +00:00
|
|
|
make -C $mpi install DESTDIR=${RPM_BUILD_ROOT}
|
|
|
|
rm $RPM_BUILD_ROOT/%{_libdir}/$mpi/lib/*.la
|
2016-12-30 21:18:15 +00:00
|
|
|
#Fortran modules
|
|
|
|
mkdir -p ${RPM_BUILD_ROOT}${MPI_FORTRAN_MOD_DIR}
|
|
|
|
mv ${RPM_BUILD_ROOT}%{_includedir}/${mpi}-%{_arch}/*.mod ${RPM_BUILD_ROOT}${MPI_FORTRAN_MOD_DIR}/
|
2010-10-26 21:05:12 +00:00
|
|
|
module purge
|
|
|
|
done
|
2010-10-27 15:32:41 +00:00
|
|
|
#Fixup example permissions
|
2010-10-27 16:52:32 +00:00
|
|
|
find ${RPM_BUILD_ROOT}%{_datadir} \( -name '*.[ch]*' -o -name '*.f90' \) -exec chmod -x {} +
|
2008-02-29 22:49:06 +00:00
|
|
|
|
|
|
|
#Fixup headers and scripts for multiarch
|
2009-04-17 22:09:49 +00:00
|
|
|
%ifarch x86_64 ppc64 ia64 s390x sparc64 alpha
|
2010-10-26 21:05:12 +00:00
|
|
|
sed -i -e s/H5pubconf.h/H5pubconf-64.h/ ${RPM_BUILD_ROOT}%{_includedir}/H5public.h
|
2008-02-29 22:49:06 +00:00
|
|
|
mv ${RPM_BUILD_ROOT}%{_includedir}/H5pubconf.h \
|
|
|
|
${RPM_BUILD_ROOT}%{_includedir}/H5pubconf-64.h
|
|
|
|
for x in h5c++ h5cc h5fc
|
|
|
|
do
|
|
|
|
mv ${RPM_BUILD_ROOT}%{_bindir}/${x} \
|
|
|
|
${RPM_BUILD_ROOT}%{_bindir}/${x}-64
|
|
|
|
install -m 0755 %SOURCE1 ${RPM_BUILD_ROOT}%{_bindir}/${x}
|
|
|
|
done
|
|
|
|
%else
|
2010-10-26 21:05:12 +00:00
|
|
|
sed -i -e s/H5pubconf.h/H5pubconf-32.h/ ${RPM_BUILD_ROOT}%{_includedir}/H5public.h
|
2008-02-29 22:49:06 +00:00
|
|
|
mv ${RPM_BUILD_ROOT}%{_includedir}/H5pubconf.h \
|
|
|
|
${RPM_BUILD_ROOT}%{_includedir}/H5pubconf-32.h
|
|
|
|
for x in h5c++ h5cc h5fc
|
|
|
|
do
|
|
|
|
mv ${RPM_BUILD_ROOT}%{_bindir}/${x} \
|
|
|
|
${RPM_BUILD_ROOT}%{_bindir}/${x}-32
|
|
|
|
install -m 0755 %SOURCE1 ${RPM_BUILD_ROOT}%{_bindir}/${x}
|
|
|
|
done
|
|
|
|
%endif
|
2011-11-17 00:14:12 +00:00
|
|
|
# rpm macro for version checking
|
2014-02-01 04:48:09 +00:00
|
|
|
mkdir -p ${RPM_BUILD_ROOT}%{macrosdir}
|
|
|
|
cat > ${RPM_BUILD_ROOT}%{macrosdir}/macros.hdf5 <<EOF
|
2013-12-22 09:35:34 +00:00
|
|
|
# HDF5 version is
|
2014-01-29 20:21:09 +00:00
|
|
|
%%_hdf5_version %{version}
|
2011-11-17 00:14:12 +00:00
|
|
|
EOF
|
2007-10-17 16:57:24 +00:00
|
|
|
|
2013-06-10 17:28:00 +00:00
|
|
|
# Install man pages from debian
|
|
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man1
|
|
|
|
cp -p debian/man/*.1 ${RPM_BUILD_ROOT}%{_mandir}/man1/
|
2015-01-06 17:46:30 +00:00
|
|
|
for mpi in %{?mpi_list}
|
|
|
|
do
|
|
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_libdir}/$mpi/share/man/man1
|
|
|
|
cp -p debian/man/h5p[cf]c.1 ${RPM_BUILD_ROOT}%{_libdir}/$mpi/share/man/man1/
|
|
|
|
done
|
|
|
|
rm ${RPM_BUILD_ROOT}%{_mandir}/man1/h5p[cf]c.1
|
2013-06-10 17:28:00 +00:00
|
|
|
|
2005-07-05 20:20:17 +00:00
|
|
|
|
|
|
|
%check
|
2017-02-04 16:48:06 +00:00
|
|
|
make -C build check
|
2013-08-30 14:14:28 +00:00
|
|
|
# disable parallel tests on s390(x) - something gets wrong in DNS resolver in glibc
|
|
|
|
# they are passed when run manually in mock
|
2016-06-30 15:17:17 +00:00
|
|
|
# testphdf5 is hanging on arm with openmpi
|
|
|
|
%ifnarch s390 s390x %{arm}
|
2012-02-13 23:40:24 +00:00
|
|
|
export HDF5_Make_Ignore=yes
|
2014-06-27 14:32:31 +00:00
|
|
|
for mpi in %{?mpi_list}
|
2012-02-10 17:22:16 +00:00
|
|
|
do
|
2012-08-29 18:34:43 +00:00
|
|
|
module load mpi/$mpi-%{_arch}
|
2017-02-04 16:48:06 +00:00
|
|
|
make -C $mpi check
|
2012-02-10 17:22:16 +00:00
|
|
|
module purge
|
|
|
|
done
|
2013-08-30 14:14:28 +00:00
|
|
|
%endif
|
2005-07-05 20:20:17 +00:00
|
|
|
|
2007-10-17 16:57:24 +00:00
|
|
|
|
2005-07-05 20:20:17 +00:00
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
2007-10-17 16:57:24 +00:00
|
|
|
|
2005-07-05 20:20:17 +00:00
|
|
|
%files
|
2016-12-30 21:18:15 +00:00
|
|
|
%license COPYING
|
|
|
|
%doc MANIFEST README.txt release_docs/RELEASE.txt
|
2008-02-29 22:49:06 +00:00
|
|
|
%doc release_docs/HISTORY*.txt
|
2005-07-05 20:20:17 +00:00
|
|
|
%{_bindir}/gif2h5
|
|
|
|
%{_bindir}/h52gif
|
2008-02-29 22:49:06 +00:00
|
|
|
%{_bindir}/h5copy
|
2005-07-05 20:20:17 +00:00
|
|
|
%{_bindir}/h5debug
|
|
|
|
%{_bindir}/h5diff
|
|
|
|
%{_bindir}/h5dump
|
|
|
|
%{_bindir}/h5import
|
|
|
|
%{_bindir}/h5jam
|
|
|
|
%{_bindir}/h5ls
|
2008-02-29 22:49:06 +00:00
|
|
|
%{_bindir}/h5mkgrp
|
2008-05-27 17:43:39 +00:00
|
|
|
%{_bindir}/h5perf_serial
|
2005-07-05 20:20:17 +00:00
|
|
|
%{_bindir}/h5repack
|
|
|
|
%{_bindir}/h5repart
|
2008-02-29 22:49:06 +00:00
|
|
|
%{_bindir}/h5stat
|
2005-07-05 20:20:17 +00:00
|
|
|
%{_bindir}/h5unjam
|
2015-05-17 02:56:41 +00:00
|
|
|
%{_libdir}/*.so.10*
|
2016-12-05 21:02:09 +00:00
|
|
|
%{_libdir}/libhdf5_cpp.so.13*
|
2016-06-21 21:54:35 +00:00
|
|
|
%{_libdir}/libhdf5_hl_cpp.so.11*
|
2013-06-10 17:28:00 +00:00
|
|
|
%{_mandir}/man1/gif2h5.1*
|
|
|
|
%{_mandir}/man1/h52gif.1*
|
|
|
|
%{_mandir}/man1/h5copy.1*
|
|
|
|
%{_mandir}/man1/h5diff.1*
|
|
|
|
%{_mandir}/man1/h5dump.1*
|
|
|
|
%{_mandir}/man1/h5import.1*
|
|
|
|
%{_mandir}/man1/h5jam.1*
|
|
|
|
%{_mandir}/man1/h5ls.1*
|
|
|
|
%{_mandir}/man1/h5mkgrp.1*
|
|
|
|
%{_mandir}/man1/h5perf_serial.1*
|
|
|
|
%{_mandir}/man1/h5repack.1*
|
|
|
|
%{_mandir}/man1/h5repart.1*
|
|
|
|
%{_mandir}/man1/h5stat.1*
|
|
|
|
%{_mandir}/man1/h5unjam.1*
|
2005-07-05 20:20:17 +00:00
|
|
|
|
|
|
|
%files devel
|
2014-02-01 04:48:09 +00:00
|
|
|
%{macrosdir}/macros.hdf5
|
2010-10-26 21:05:12 +00:00
|
|
|
%{_bindir}/h5c++*
|
|
|
|
%{_bindir}/h5cc*
|
|
|
|
%{_bindir}/h5fc*
|
2005-11-30 20:51:45 +00:00
|
|
|
%{_bindir}/h5redeploy
|
2005-07-05 20:20:17 +00:00
|
|
|
%{_includedir}/*.h
|
|
|
|
%{_libdir}/*.so
|
2009-02-23 23:08:49 +00:00
|
|
|
%{_libdir}/*.settings
|
2008-05-13 19:04:56 +00:00
|
|
|
%{_fmoddir}/*.mod
|
2010-06-21 21:41:30 +00:00
|
|
|
%{_datadir}/hdf5_examples/
|
2013-06-10 17:28:00 +00:00
|
|
|
%{_mandir}/man1/h5c++.1*
|
|
|
|
%{_mandir}/man1/h5cc.1*
|
2015-01-06 17:46:30 +00:00
|
|
|
%{_mandir}/man1/h5debug.1*
|
2013-06-10 17:28:00 +00:00
|
|
|
%{_mandir}/man1/h5fc.1*
|
|
|
|
%{_mandir}/man1/h5redeploy.1*
|
2008-02-29 22:49:06 +00:00
|
|
|
|
|
|
|
%files static
|
|
|
|
%{_libdir}/*.a
|
2005-07-05 20:20:17 +00:00
|
|
|
|
2013-07-21 22:40:56 +00:00
|
|
|
%if %{with_mpich}
|
|
|
|
%files mpich
|
2016-12-30 21:18:15 +00:00
|
|
|
%license COPYING
|
|
|
|
%doc MANIFEST README.txt release_docs/RELEASE.txt
|
2010-10-27 15:32:41 +00:00
|
|
|
%doc release_docs/HISTORY*.txt
|
2013-07-21 22:40:56 +00:00
|
|
|
%{_libdir}/mpich/bin/gif2h5
|
|
|
|
%{_libdir}/mpich/bin/h52gif
|
|
|
|
%{_libdir}/mpich/bin/h5copy
|
|
|
|
%{_libdir}/mpich/bin/h5debug
|
|
|
|
%{_libdir}/mpich/bin/h5diff
|
|
|
|
%{_libdir}/mpich/bin/h5dump
|
|
|
|
%{_libdir}/mpich/bin/h5import
|
|
|
|
%{_libdir}/mpich/bin/h5jam
|
|
|
|
%{_libdir}/mpich/bin/h5ls
|
|
|
|
%{_libdir}/mpich/bin/h5mkgrp
|
|
|
|
%{_libdir}/mpich/bin/h5redeploy
|
|
|
|
%{_libdir}/mpich/bin/h5repack
|
|
|
|
%{_libdir}/mpich/bin/h5perf
|
|
|
|
%{_libdir}/mpich/bin/h5perf_serial
|
|
|
|
%{_libdir}/mpich/bin/h5repart
|
|
|
|
%{_libdir}/mpich/bin/h5stat
|
|
|
|
%{_libdir}/mpich/bin/h5unjam
|
|
|
|
%{_libdir}/mpich/bin/ph5diff
|
2015-05-17 02:56:41 +00:00
|
|
|
%{_libdir}/mpich/lib/*.so.10*
|
2013-07-21 22:40:56 +00:00
|
|
|
|
|
|
|
%files mpich-devel
|
|
|
|
%{_includedir}/mpich-%{_arch}
|
2016-12-30 21:18:15 +00:00
|
|
|
%{_fmoddir}/mpich/*.mod
|
2013-07-21 22:40:56 +00:00
|
|
|
%{_libdir}/mpich/bin/h5pcc
|
|
|
|
%{_libdir}/mpich/bin/h5pfc
|
|
|
|
%{_libdir}/mpich/lib/lib*.so
|
|
|
|
%{_libdir}/mpich/lib/lib*.settings
|
2015-11-16 19:59:43 +00:00
|
|
|
%{_libdir}/mpich/share/hdf5_examples/
|
2015-01-06 17:46:30 +00:00
|
|
|
%{_libdir}/mpich/share/man/man1/h5pcc.1*
|
|
|
|
%{_libdir}/mpich/share/man/man1/h5pfc.1*
|
2013-07-21 22:40:56 +00:00
|
|
|
|
|
|
|
%files mpich-static
|
|
|
|
%{_libdir}/mpich/lib/*.a
|
2010-12-08 16:32:13 +00:00
|
|
|
%endif
|
2010-10-26 21:05:12 +00:00
|
|
|
|
2010-12-12 14:44:40 +00:00
|
|
|
%if %{with_openmpi}
|
2010-10-26 21:05:12 +00:00
|
|
|
%files openmpi
|
2016-12-30 21:18:15 +00:00
|
|
|
%license COPYING
|
|
|
|
%doc MANIFEST README.txt release_docs/RELEASE.txt
|
2010-10-27 15:32:41 +00:00
|
|
|
%doc release_docs/HISTORY*.txt
|
2010-10-26 21:05:12 +00:00
|
|
|
%{_libdir}/openmpi/bin/gif2h5
|
|
|
|
%{_libdir}/openmpi/bin/h52gif
|
|
|
|
%{_libdir}/openmpi/bin/h5copy
|
|
|
|
%{_libdir}/openmpi/bin/h5debug
|
|
|
|
%{_libdir}/openmpi/bin/h5diff
|
|
|
|
%{_libdir}/openmpi/bin/h5dump
|
|
|
|
%{_libdir}/openmpi/bin/h5import
|
|
|
|
%{_libdir}/openmpi/bin/h5jam
|
|
|
|
%{_libdir}/openmpi/bin/h5ls
|
|
|
|
%{_libdir}/openmpi/bin/h5mkgrp
|
|
|
|
%{_libdir}/openmpi/bin/h5perf
|
2011-05-17 22:24:11 +00:00
|
|
|
%{_libdir}/openmpi/bin/h5perf_serial
|
2010-10-26 22:07:05 +00:00
|
|
|
%{_libdir}/openmpi/bin/h5redeploy
|
2010-10-26 21:05:12 +00:00
|
|
|
%{_libdir}/openmpi/bin/h5repack
|
|
|
|
%{_libdir}/openmpi/bin/h5repart
|
|
|
|
%{_libdir}/openmpi/bin/h5stat
|
|
|
|
%{_libdir}/openmpi/bin/h5unjam
|
|
|
|
%{_libdir}/openmpi/bin/ph5diff
|
2015-05-17 02:56:41 +00:00
|
|
|
%{_libdir}/openmpi/lib/*.so.10*
|
2010-10-26 21:05:12 +00:00
|
|
|
|
|
|
|
%files openmpi-devel
|
|
|
|
%{_includedir}/openmpi-%{_arch}
|
2016-12-30 21:18:15 +00:00
|
|
|
%{_fmoddir}/openmpi/*.mod
|
2010-10-26 21:05:12 +00:00
|
|
|
%{_libdir}/openmpi/bin/h5pcc
|
|
|
|
%{_libdir}/openmpi/bin/h5pfc
|
|
|
|
%{_libdir}/openmpi/lib/lib*.so
|
|
|
|
%{_libdir}/openmpi/lib/lib*.settings
|
2015-11-16 19:59:43 +00:00
|
|
|
%{_libdir}/openmpi/share/hdf5_examples/
|
2015-01-06 17:46:30 +00:00
|
|
|
%{_libdir}/openmpi/share/man/man1/h5pcc.1*
|
|
|
|
%{_libdir}/openmpi/share/man/man1/h5pfc.1*
|
2011-11-25 21:06:05 +00:00
|
|
|
|
|
|
|
%files openmpi-static
|
|
|
|
%{_libdir}/openmpi/lib/*.a
|
2010-12-12 14:44:40 +00:00
|
|
|
%endif
|
2010-10-26 21:05:12 +00:00
|
|
|
|
2007-10-17 16:57:24 +00:00
|
|
|
|
2005-07-05 20:20:17 +00:00
|
|
|
%changelog
|
2017-08-02 23:24:47 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.18-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 12:35:38 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.18-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-04 16:48:06 +00:00
|
|
|
* Sun Feb 05 2017 Kalev Lember <klember@redhat.com> - 1.8.18-5
|
|
|
|
- Enable testsuite again now that gcc fixes have landed
|
|
|
|
|
2017-02-01 14:10:54 +00:00
|
|
|
* Wed Feb 01 2017 Björn Esser <me@besser82.io> - 1.8.18-4
|
|
|
|
- Ignore testsuite on PPC64LE until GCC-7 is fixed
|
|
|
|
|
2017-01-28 09:26:05 +00:00
|
|
|
* Sat Jan 28 2017 Björn Esser <besser82@fedoraproject.org> - 1.8.18-4
|
|
|
|
- Rebuilt for GCC-7
|
|
|
|
|
2016-12-30 21:18:15 +00:00
|
|
|
* Fri Dec 30 2016 Orion Poplawski <orion@cora.nwra.com> - 1.8.18-3
|
|
|
|
- Install MPI Fortran module into proper location (bug #1409229)
|
|
|
|
- Use %%license
|
|
|
|
|
2016-12-08 17:40:03 +00:00
|
|
|
* Thu Dec 8 2016 Dan Horák <dan[at]danny.cz> - 1.8.18-2
|
|
|
|
- Enable openmpi for s390(x) on F>=26
|
|
|
|
|
2016-12-05 20:45:40 +00:00
|
|
|
* Mon Dec 5 2016 Orion Poplawski <orion@cora.nwra.com> - 1.8.18-1
|
|
|
|
- Update to 1.8.18
|
|
|
|
- Add patch to fix build with -Werror=implicit-function-declaration
|
|
|
|
|
2016-10-21 20:57:55 +00:00
|
|
|
* Fri Oct 21 2016 Orion Poplawski <orion@cora.nwra.com> - 1.8.17-2
|
|
|
|
- Rebuild for openmpi 2.0
|
|
|
|
|
2016-06-29 14:43:48 +00:00
|
|
|
* Wed Jun 29 2016 Orion Poplawski <orion@cora.nwra.com> - 1.8.17-1
|
2016-05-14 03:38:47 +00:00
|
|
|
- Update to 1.8.17
|
|
|
|
|
2016-03-21 03:55:19 +00:00
|
|
|
* Sun Mar 20 2016 Orion Poplawski <orion@cora.nwra.com> - 1.8.16-4
|
|
|
|
- Add patch to properly call MPI_Finalize() in t_pflush1
|
|
|
|
|
2016-03-02 22:23:01 +00:00
|
|
|
* Wed Mar 2 2016 Orion Poplawski <orion@cora.nwra.com> - 1.8.16-3
|
|
|
|
- Make hdf5-mpich-devel require mpich-devel (bug #1314091)
|
|
|
|
|
2016-02-03 23:44:36 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.16-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-05-14 03:38:47 +00:00
|
|
|
* Fri Nov 20 2015 Orion Poplawski <orion@cora.nwra.com> - 1.8.16-1
|
2015-11-16 19:59:43 +00:00
|
|
|
- Update to 1.8.16
|
|
|
|
|
2015-11-20 21:31:35 +00:00
|
|
|
* Fri Nov 20 2015 Orion Poplawski <orion@cora.nwra.com> - 1.8.15-9.patch1
|
|
|
|
- Use MPI_FORTRAN_MOD_DIR to locate MPI Fortran module
|
2017-01-28 09:26:05 +00:00
|
|
|
|
2015-09-26 02:33:11 +00:00
|
|
|
* Fri Sep 25 2015 Orion Poplawski <orion@cora.nwra.com> - 1.8.15-8.patch1
|
|
|
|
- Force shared by default for compiler wrappers (bug #1266645)
|
|
|
|
|
2015-09-15 22:13:54 +00:00
|
|
|
* Tue Sep 15 2015 Orion Poplawski <orion@cora.nwra.com> - 1.8.15-7.patch1
|
|
|
|
- Rebuild for openmpi 1.10.0
|
|
|
|
|
2015-08-15 19:20:55 +00:00
|
|
|
* Sat Aug 15 2015 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.8.15-6.patch1
|
|
|
|
- Rebuild for MPI provides
|
|
|
|
|
2015-07-26 20:27:30 +00:00
|
|
|
* Sun Jul 26 2015 Sandro Mani <manisandro@gmail.com> - 1.8.15-5.patch1
|
|
|
|
- Rebuild for RPM MPI Requires Provides Change
|
|
|
|
|
2015-06-17 10:21:31 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.15-4.patch1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-08 18:26:56 +00:00
|
|
|
* Mon Jun 8 2015 Orion Poplawski <orion@cora.nwra.com> - 1.8.15-3.patch1
|
|
|
|
- Update to 1.8.15-patch1
|
|
|
|
|
2015-06-05 20:24:20 +00:00
|
|
|
* Fri Jun 05 2015 Dan Horák <dan[at]danny.cz> - 1.8.15-2
|
|
|
|
- drop unnecessary patch, issue seems fixed with gcc5
|
|
|
|
|
2015-05-17 02:56:41 +00:00
|
|
|
* Sat May 16 2015 Orion Poplawski <orion@cora.nwra.com> - 1.8.15-1
|
|
|
|
- Update to 1.8.15
|
|
|
|
|
2015-05-02 12:17:37 +00:00
|
|
|
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.8.14-4
|
|
|
|
- Rebuilt for GCC 5 C++11 ABI change
|
|
|
|
|
2015-03-11 19:52:34 +00:00
|
|
|
* Wed Mar 11 2015 Orion Poplawski <orion@cora.nwra.com> - 1.8.14-3
|
|
|
|
- Rebuild for mpich 3.1.4 soname change
|
|
|
|
|
2015-02-16 04:04:38 +00:00
|
|
|
* Mon Feb 16 2015 Orion Poplawski <orion@cora.nwra.com> - 1.8.14-2
|
|
|
|
- Rebuild for gcc 5 fortran module
|
|
|
|
|
2015-01-06 17:48:06 +00:00
|
|
|
* Tue Jan 6 2015 Orion Poplawski <orion@cora.nwra.com> - 1.8.14-1
|
2015-01-06 17:46:30 +00:00
|
|
|
- Update to 1.8.14
|
|
|
|
|
2014-09-03 22:20:44 +00:00
|
|
|
* Wed Sep 3 2014 Orion Poplawski <orion@cora.nwra.com> - 1.8.13-7
|
2014-09-03 22:20:11 +00:00
|
|
|
- No longer build with -O0, seems to be working
|
|
|
|
|
2014-08-27 14:39:35 +00:00
|
|
|
* Wed Aug 27 2014 Orion Poplawski <orion@cora.nwra.com> - 1.8.13-6
|
|
|
|
- Rebuild for openmpi Fortran ABI change
|
|
|
|
|
2014-08-16 20:19:13 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.13-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-27 14:32:31 +00:00
|
|
|
* Fri Jun 27 2014 Orion Poplawski <orion@cora.nwra.com> - 1.8.13-4
|
|
|
|
- Make build work if not building any mpi pacakges (bug #1113610)
|
|
|
|
|
2014-06-27 14:08:35 +00:00
|
|
|
* Fri Jun 27 2014 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 1.8.13-3
|
|
|
|
- Drop gnu-config patches replaced by %%configure macro
|
|
|
|
|
2014-06-07 19:56:28 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.13-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-15 16:48:39 +00:00
|
|
|
* Thu May 15 2014 Orion Poplawski <orion@cora.nwra.com> - 1.8.13-1
|
|
|
|
- Update to 1.8.13
|
|
|
|
|
2014-03-24 19:46:49 +00:00
|
|
|
* Mon Mar 24 2014 Orion Poplawski <orion@cora.nwra.com> - 1.8.12-6
|
|
|
|
- Add patch to add ppc64le to config.guess (bug #1080122)
|
|
|
|
|
2014-03-19 17:28:39 +00:00
|
|
|
* Wed Mar 19 2014 Orion Poplawski <orion@cora.nwra.com> - 1.8.12-5
|
|
|
|
- Add patch to fix long double conversions on ppc64le (bug #1078173)
|
|
|
|
- Run autoreconf for patches and to remove rpaths
|
|
|
|
|
2014-02-22 18:37:07 +00:00
|
|
|
* Sat Feb 22 2014 Deji Akingunola <dakingun@gmail.com> - 1.8.12-4
|
|
|
|
- Rebuild for mpich-3.1
|
|
|
|
|
2014-02-01 04:48:09 +00:00
|
|
|
* Fri Jan 31 2014 Orion Poplawski <orion@cora.nwra.com> 1.8.12-4
|
|
|
|
- Fix rpm macros install dir
|
|
|
|
|
2014-01-29 20:21:09 +00:00
|
|
|
* Wed Jan 29 2014 Orion Poplawski <orion@cora.nwra.com> 1.8.12-3
|
2014-01-30 03:22:43 +00:00
|
|
|
- Fix rpm/macros.hdf5 generation (bug #1059161)
|
2014-01-29 20:21:09 +00:00
|
|
|
|
2014-01-09 02:59:21 +00:00
|
|
|
* Wed Jan 8 2014 Orion Poplawski <orion@cora.nwra.com> 1.8.12-2
|
|
|
|
- Update debian source
|
|
|
|
- Add patch for aarch64 support (bug #925545)
|
|
|
|
|
2013-12-27 18:11:11 +00:00
|
|
|
* Fri Dec 27 2013 Orion Poplawski <orion@cora.nwra.com> 1.8.12-1
|
|
|
|
- Update to 1.8.12
|
|
|
|
|
2013-08-30 14:14:28 +00:00
|
|
|
* Fri Aug 30 2013 Dan Horák <dan[at]danny.cz> - 1.8.11-6
|
|
|
|
- disable parallel tests on s390(x)
|
|
|
|
|
2013-08-03 17:34:52 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.11-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-21 22:40:56 +00:00
|
|
|
* Sat Jul 20 2013 Deji Akingunola <dakingun@gmail.com> - 1.8.11-4
|
|
|
|
- Rename mpich2 sub-packages to mpich and rebuild for mpich-3.0
|
|
|
|
|
2013-07-12 04:54:06 +00:00
|
|
|
* Thu Jul 11 2013 Orion Poplawski <orion@cora.nwra.com> 1.8.11-3
|
|
|
|
- Rebuild for openmpi 1.7.2
|
|
|
|
|
2013-06-10 17:28:00 +00:00
|
|
|
* Fri Jun 7 2013 Orion Poplawski <orion@cora.nwra.com> 1.8.11-2
|
|
|
|
- Add man pages from debian (bug #971551)
|
|
|
|
|
2013-05-16 15:09:58 +00:00
|
|
|
* Wed May 15 2013 Orion Poplawski <orion@cora.nwra.com> 1.8.11-1
|
|
|
|
- Update to 1.8.11
|
|
|
|
|
2013-03-11 15:16:48 +00:00
|
|
|
* Mon Mar 11 2013 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.8.10-3
|
|
|
|
- Remove %%config from %%{_sysconfdir}/rpm/macros.*
|
|
|
|
(https://fedorahosted.org/fpc/ticket/259).
|
|
|
|
|
2013-02-14 01:02:07 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.10-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-12-03 18:14:37 +00:00
|
|
|
* Wed Nov 14 2012 Orion Poplawski <orion@cora.nwra.com> 1.8.10-1
|
|
|
|
- Update to 1.8.10
|
|
|
|
- Rebase LD_LIBRARY_PATH patch
|
|
|
|
- Drop ph5diff patch fixed upstream
|
|
|
|
|
2012-11-12 18:04:45 +00:00
|
|
|
* Mon Nov 12 2012 Peter Robinson <pbrobinson@fedoraproject.org> 1.8.9-5
|
|
|
|
- Enable openmpi support on ARM as we now have it
|
|
|
|
|
2012-11-05 23:43:14 +00:00
|
|
|
* Mon Nov 5 2012 Orion Poplawski <orion@cora.nwra.com> 1.8.9-4
|
|
|
|
- Rebuild for fixed openmpi f90 soname
|
|
|
|
|
2012-11-01 16:27:08 +00:00
|
|
|
* Thu Nov 1 2012 Orion Poplawski <orion@cora.nwra.com> 1.8.9-3
|
|
|
|
- Rebuild for openmpi and mpich2 soname bumps
|
|
|
|
|
2012-07-19 12:39:40 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.9-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-05-15 14:55:08 +00:00
|
|
|
* Tue May 15 2012 Orion Poplawski <orion@cora.nwra.com> 1.8.9-1
|
|
|
|
- Update to 1.8.9
|
|
|
|
|
2012-02-20 08:18:13 +00:00
|
|
|
* Mon Feb 20 2012 Dan Horák <dan[at]danny.cz> 1.8.8-9
|
|
|
|
- use %%{mpi_list} also for tests
|
|
|
|
|
2012-02-15 18:27:21 +00:00
|
|
|
* Wed Feb 15 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.8.8-8
|
|
|
|
- disable openmpi for ARM as we currently don't have it
|
|
|
|
|
2012-02-10 17:24:22 +00:00
|
|
|
* Fri Feb 10 2012 Orion Poplawski <orion@cora.nwra.com> 1.8.8-7
|
|
|
|
- Add patch to fix parallel mpi tests
|
|
|
|
- Add patch to fix bug in parallel h5diff
|
|
|
|
|
2012-01-07 15:34:44 +00:00
|
|
|
* Sat Jan 7 2012 Orion Poplawski <orion@cora.nwra.com> 1.8.8-6
|
|
|
|
- Enable Fortran 2003 support (bug 772387)
|
|
|
|
|
2011-12-21 17:34:19 +00:00
|
|
|
* Wed Dec 21 2011 Dan Horák <dan[at]danny.cz> 1.8.8-5
|
|
|
|
- reintroduce the tstlite patch for ppc64 and s390x
|
|
|
|
|
2011-12-01 17:13:08 +00:00
|
|
|
* Thu Dec 01 2011 Caolán McNamara <caolanm@redhat.com> 1.8.8-4
|
|
|
|
- Related: rhbz#758334 hdf5 doesn't build on ppc64
|
|
|
|
|
2011-11-25 21:06:05 +00:00
|
|
|
* Fri Nov 25 2011 Orion Poplawski <orion@cora.nwra.com> 1.8.8-3
|
|
|
|
- Enable static MPI builds
|
|
|
|
|
2011-11-17 00:14:12 +00:00
|
|
|
* Wed Nov 16 2011 Orion Poplawski <orion@cora.nwra.com> 1.8.8-2
|
|
|
|
- Add rpm macro %%{_hdf5_version} for convenience
|
|
|
|
|
2011-11-16 20:26:19 +00:00
|
|
|
* Tue Nov 15 2011 Orion Poplawski <orion@cora.nwra.com> 1.8.8-1
|
|
|
|
- Update to 1.8.8
|
|
|
|
- Drop tstlite patch
|
|
|
|
- Add patch to avoid setting LD_LIBRARY_PATH
|
|
|
|
|
2011-06-01 12:03:07 +00:00
|
|
|
* Wed Jun 01 2011 Karsten Hopp <karsten@redhat.com> 1.8.7-2
|
|
|
|
- drop ppc64 longdouble patch, not required anymore
|
|
|
|
|
2011-05-17 22:24:11 +00:00
|
|
|
* Tue May 17 2011 Orion Poplawski <orion@cora.nwra.com> 1.8.7-1
|
|
|
|
- Update to 1.8.7
|
|
|
|
|
2011-03-29 23:45:26 +00:00
|
|
|
* Tue Mar 29 2011 Deji Akingunola <dakingun@gmail.com> - 1.8.6-2
|
|
|
|
- Rebuild for mpich2 soname bump
|
|
|
|
|
|
|
|
* Fri Feb 18 2011 Orion Poplawski <orion@cora.nwra.com> 1.8.6-1
|
2011-02-18 22:30:20 +00:00
|
|
|
- Update to 1.8.6-1
|
|
|
|
- Update tstlite patch - not fixed yet
|
|
|
|
|
2011-02-09 08:59:59 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.5.patch1-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-02-06 19:46:49 +00:00
|
|
|
* Sun Feb 6 2011 Orion Poplawski <orion@cora.nwra.com> 1.8.5.patch1-7
|
2011-02-06 19:45:31 +00:00
|
|
|
- Add Requires: zlib-devel to hdf5-devel
|
|
|
|
|
2010-12-12 14:44:40 +00:00
|
|
|
* Sun Dec 12 2010 Dan Horák <dan[at]danny.cz> 1.8.5.patch1-6
|
|
|
|
- fully conditionalize MPI support
|
|
|
|
|
2010-12-08 16:32:13 +00:00
|
|
|
* Wed Dec 8 2010 Orion Poplawski <orion@cora.nwra.com> 1.8.5.patch1-5
|
|
|
|
- Add EL6 compatibility - no mpich2 on ppc64
|
|
|
|
|
2010-10-27 16:52:32 +00:00
|
|
|
* Wed Oct 27 2010 Orion Poplawski <orion@cora.nwra.com> 1.8.5.patch1-4
|
|
|
|
- Really fixup all permissions
|
|
|
|
|
2010-10-27 15:32:41 +00:00
|
|
|
* Wed Oct 27 2010 Orion Poplawski <orion@cora.nwra.com> 1.8.5.patch1-3
|
|
|
|
- Add docs to the mpi packages
|
|
|
|
- Fixup example source file permissions
|
|
|
|
|
2010-10-26 21:05:12 +00:00
|
|
|
* Tue Oct 26 2010 Orion Poplawski <orion@cora.nwra.com> 1.8.5.patch1-2
|
|
|
|
- Build parallel hdf5 packages for mpich2 and openmpi
|
|
|
|
- Rework multiarch support and drop multiarch patch
|
|
|
|
|
2010-09-07 15:52:01 +00:00
|
|
|
* Tue Sep 7 2010 Orion Poplawski <orion@cora.nwra.com> 1.8.5.patch1-1
|
|
|
|
- Update to 1.8.5-patch1
|
|
|
|
|
2010-06-23 22:49:00 +00:00
|
|
|
* Wed Jun 23 2010 Orion Poplawski <orion@cora.nwra.com> 1.8.5-4
|
|
|
|
- Re-add rebased tstlite patch - not fixed yet
|
|
|
|
|
|
|
|
* Wed Jun 23 2010 Orion Poplawski <orion@cora.nwra.com> 1.8.5-3
|
|
|
|
- Update longdouble patch for 1.8.5
|
|
|
|
|
2010-06-23 19:44:23 +00:00
|
|
|
* Wed Jun 23 2010 Orion Poplawski <orion@cora.nwra.com> 1.8.5-2
|
|
|
|
- Re-add longdouble patch on ppc64 for EPEL builds
|
|
|
|
|
2010-06-21 21:41:30 +00:00
|
|
|
* Mon Jun 21 2010 Orion Poplawski <orion@cora.nwra.com> 1.8.5-1
|
|
|
|
- Update to 1.8.5
|
|
|
|
- Drop patches fixed upstream
|
|
|
|
|
2010-03-01 16:11:38 +00:00
|
|
|
* Mon Mar 1 2010 Orion Poplawski <orion@cora.nwra.com> 1.8.4.patch1-1
|
|
|
|
- Update to 1.8.4-patch1
|
|
|
|
|
2010-01-06 18:39:35 +00:00
|
|
|
* Wed Jan 6 2010 Orion Poplawski <orion@cora.nwra.com> 1.8.4-1
|
|
|
|
- Update to 1.8.4
|
|
|
|
- Must compile with -O0 due to gcc-4.4 incompatability
|
|
|
|
- No longer need -fno-strict-aliasing
|
|
|
|
|
2009-10-01 22:08:46 +00:00
|
|
|
* Thu Oct 1 2009 Orion Poplawski <orion@cora.nwra.com> 1.8.3-3.snap12
|
|
|
|
- Update to 1.8.3-snap12
|
|
|
|
- Update signal patch
|
|
|
|
- Drop detect and filter-as-option patch fixed upstream
|
|
|
|
- Drop ppc only patch
|
|
|
|
- Add patch to skip tstlite test for now, problem reported upstream
|
|
|
|
- Fixup some source file permissions
|
|
|
|
|
2009-07-25 02:04:30 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-06-02 17:26:06 +00:00
|
|
|
* Tue Jun 2 2009 Orion Poplawski <orion@cora.nwra.com> 1.8.3-1
|
|
|
|
- Update to 1.8.3
|
|
|
|
- Update signal and detect patches
|
|
|
|
- Drop open patch fixed upstream
|
|
|
|
|
2009-04-17 22:09:49 +00:00
|
|
|
* Sat Apr 18 2009 Karsten Hopp <karsten@redhat.com> 1.8.2-1.1
|
|
|
|
- fix s390x builds, s390x is 64bit, s390 is 32bit
|
|
|
|
|
2009-02-23 23:08:49 +00:00
|
|
|
* Mon Feb 23 2009 Orion Poplawski <orion@cora.nwra.com> 1.8.2-1
|
|
|
|
- Update to 1.8.2
|
|
|
|
- Add patch to compile H5detect without optimization - make detection
|
|
|
|
of datatype characteristics more robust - esp. long double
|
|
|
|
- Update signal patch
|
|
|
|
- Drop destdir patch fixed upstream
|
|
|
|
- Drop scaleoffset patch
|
|
|
|
- Re-add -fno-strict-aliasing
|
|
|
|
- Keep settings file needed for -showconfig (bug #481032)
|
|
|
|
- Wrapper script needs to pass arguments (bug #481032)
|
|
|
|
|
2008-10-08 14:56:20 +00:00
|
|
|
* Wed Oct 8 2008 Orion Poplawski <orion@cora.nwra.com> 1.8.1-3
|
|
|
|
- Add sparc64 to 64-bit conditionals
|
|
|
|
|
2008-09-26 20:51:24 +00:00
|
|
|
* Fri Sep 26 2008 Orion Poplawski <orion@cora.nwra.com> 1.8.1-2
|
|
|
|
- Add patch to filter -little as option used on sh arch (#464052)
|
2010-10-26 21:05:12 +00:00
|
|
|
|
2008-06-05 20:36:55 +00:00
|
|
|
* Thu Jun 5 2008 Orion Poplawski <orion@cora.nwra.com> 1.8.1-1
|
|
|
|
- Update to 1.8.1
|
|
|
|
|
2008-05-27 17:43:39 +00:00
|
|
|
* Tue May 27 2008 Orion Poplawski <orion@cora.nwra.com> 1.8.1-0.rc1.1
|
|
|
|
- Update to 1.8.1-rc1
|
|
|
|
|
2008-05-13 17:44:47 +00:00
|
|
|
* Tue May 13 2008 Orion Poplawski <orion@cora.nwra.com> 1.8.0.snap5-2
|
2008-05-13 15:49:22 +00:00
|
|
|
- Use new %%{_fmoddir} macro
|
2010-10-26 21:05:12 +00:00
|
|
|
- Re-enable ppc64, disable failing tests. Failing tests are for
|
2008-05-13 15:49:22 +00:00
|
|
|
experimental long double support.
|
|
|
|
|
2008-05-05 15:59:41 +00:00
|
|
|
* Mon May 5 2008 Orion Poplawski <orion@cora.nwra.com> 1.8.0.snap5-1
|
|
|
|
- Update to 1.8.0-snap5
|
2010-10-26 21:05:12 +00:00
|
|
|
- Remove --enable-threadsafe, incompatible with --enable-cxx and
|
2008-05-05 20:14:19 +00:00
|
|
|
--enable-fortran
|
2008-05-06 19:58:46 +00:00
|
|
|
- ExcludeArch ppc64 until we can get it to build (bug #445423)
|
2008-05-05 15:59:41 +00:00
|
|
|
|
|
|
|
* Tue Mar 4 2008 Orion Poplawski <orion@cora.nwra.com> 1.8.0-2
|
|
|
|
- Remove failing test for now
|
|
|
|
|
2008-02-29 22:49:06 +00:00
|
|
|
* Fri Feb 29 2008 Orion Poplawski <orion@cora.nwra.com> 1.8.0-1
|
|
|
|
- Update to 1.8.0, drop upstreamed patches
|
|
|
|
- Update signal patch
|
|
|
|
- Move static libraries into -static sub-package
|
|
|
|
- Make -devel multiarch (bug #341501)
|
|
|
|
|
2008-02-06 22:13:53 +00:00
|
|
|
* Wed Feb 6 2008 Orion Poplawski <orion@cora.nwra.com> 1.6.6-7
|
|
|
|
- Add patch to fix strict-aliasing
|
|
|
|
- Disable production mode to enable debuginfo
|
|
|
|
|
2008-02-05 22:29:04 +00:00
|
|
|
* Tue Feb 5 2008 Orion Poplawski <orion@cora.nwra.com> 1.6.6-6
|
|
|
|
- Add patch to fix calling free() in H5PropList.cpp
|
|
|
|
|
2008-02-05 18:58:50 +00:00
|
|
|
* Tue Feb 5 2008 Orion Poplawski <orion@cora.nwra.com> 1.6.6-5
|
|
|
|
- Add patch to support s390 (bug #431510)
|
|
|
|
|
2008-01-07 21:10:10 +00:00
|
|
|
* Mon Jan 7 2008 Orion Poplawski <orion@cora.nwra.com> 1.6.6-4
|
|
|
|
- Add patches to support sparc (bug #427651)
|
|
|
|
|
2007-12-04 16:06:59 +00:00
|
|
|
* Tue Dec 4 2007 Orion Poplawski <orion@cora.nwra.com> 1.6.6-3
|
|
|
|
- Rebuild against new openssl
|
|
|
|
|
2007-11-23 14:33:57 +00:00
|
|
|
* Fri Nov 23 2007 Orion Poplawski <orion@cora.nwra.com> 1.6.6-2
|
2007-12-04 16:06:59 +00:00
|
|
|
- Add patch to build on alpha (bug #396391)
|
2007-11-23 14:33:57 +00:00
|
|
|
|
2007-10-17 16:57:24 +00:00
|
|
|
* Wed Oct 17 2007 Orion Poplawski <orion@cora.nwra.com> 1.6.6-1
|
|
|
|
- Update to 1.6.6, drop upstreamed patches
|
|
|
|
- Explicitly set compilers
|
|
|
|
|
2007-08-24 15:47:22 +00:00
|
|
|
* Fri Aug 24 2007 Orion Poplawski <orion@cora.nwra.com> 1.6.5-9
|
|
|
|
- Update license tag to BSD
|
|
|
|
- Rebuild for BuildID
|
|
|
|
|
2007-08-08 19:54:21 +00:00
|
|
|
* Wed Aug 8 2007 Orion Poplawski <orion@cora.nwra.com> 1.6.5-8
|
|
|
|
- Fix memset typo
|
2007-08-08 22:47:01 +00:00
|
|
|
- Pass mode to open with O_CREAT
|
2007-08-08 19:54:21 +00:00
|
|
|
|
2007-03-02 23:27:55 +00:00
|
|
|
* Mon Feb 12 2007 Orion Poplawski <orion@cora.nwra.com> 1.6.5-7
|
|
|
|
- New project URL
|
|
|
|
- Add patch to use POSIX sort key option
|
|
|
|
- Remove useless and multilib conflicting Makefiles from html docs
|
|
|
|
(bug #228365)
|
2009-10-01 22:08:46 +00:00
|
|
|
- Make hdf5-devel own %%{_docdir}/%%{name}
|
2007-03-02 23:27:55 +00:00
|
|
|
|
2006-08-30 02:53:01 +00:00
|
|
|
* Tue Aug 29 2006 Orion Poplawski <orion@cora.nwra.com> 1.6.5-6
|
|
|
|
- Rebuild for FC6
|
|
|
|
|
2006-03-15 22:29:45 +00:00
|
|
|
* Wed Mar 15 2006 Orion Poplawski <orion@cora.nwra.com> 1.6.5-5
|
|
|
|
- Change rpath patch to not need autoconf
|
|
|
|
- Add patch for libtool on x86_64
|
|
|
|
- Fix shared lib permissions
|
|
|
|
|
2006-03-13 16:54:44 +00:00
|
|
|
* Mon Mar 13 2006 Orion Poplawski <orion@cora.nwra.com> 1.6.5-4
|
|
|
|
- Add patch to avoid HDF setting the compiler flags
|
|
|
|
|
2006-02-13 18:50:15 +00:00
|
|
|
* Mon Feb 13 2006 Orion Poplawski <orion@cora.nwra.com> 1.6.5-3
|
|
|
|
- Rebuild for gcc/glibc changes
|
|
|
|
|
2005-12-21 21:57:14 +00:00
|
|
|
* Wed Dec 21 2005 Orion Poplawski <orion@cora.nwra.com> 1.6.5-2
|
|
|
|
- Don't ship h5perf with missing library
|
|
|
|
|
2005-12-21 21:07:16 +00:00
|
|
|
* Wed Dec 21 2005 Orion Poplawski <orion@cora.nwra.com> 1.6.5-1
|
|
|
|
- Update to 1.6.5
|
|
|
|
|
2005-12-21 17:23:13 +00:00
|
|
|
* Wed Dec 21 2005 Orion Poplawski <orion@cora.nwra.com> 1.6.4-9
|
|
|
|
- Rebuild
|
|
|
|
|
2005-11-30 20:51:45 +00:00
|
|
|
* Wed Nov 30 2005 Orion Poplawski <orion@cora.nwra.com> 1.6.4-8
|
|
|
|
- Package fortran files properly
|
|
|
|
- Move compiler wrappers to devel
|
|
|
|
|
2005-11-18 22:27:22 +00:00
|
|
|
* Fri Nov 18 2005 Orion Poplawski <orion@cora.nwra.com> 1.6.4-7
|
|
|
|
- Add patch for fortran compilation on ppc
|
|
|
|
|
2005-11-16 21:34:02 +00:00
|
|
|
* Wed Nov 16 2005 Orion Poplawski <orion@cora.nwra.com> 1.6.4-6
|
|
|
|
- Bump for new openssl
|
|
|
|
|
|
|
|
* Tue Sep 20 2005 Orion Poplawski <orion@cora.nwra.com> 1.6.4-5
|
|
|
|
- Enable fortran since the gcc bug is now fixed
|
|
|
|
|
2005-07-05 20:20:17 +00:00
|
|
|
* Tue Jul 05 2005 Orion Poplawski <orion@cora.nwra.com> 1.6.4-4
|
|
|
|
- Make example scripts executable
|
|
|
|
|
2014-02-01 01:42:05 +00:00
|
|
|
* Wed Jun 29 2005 Orion Poplawski <orion@cora.nwra.com> 1.6.4-3
|
2005-07-05 20:20:17 +00:00
|
|
|
- Add --enable-threads --with-pthreads to configure
|
2009-10-01 22:08:46 +00:00
|
|
|
- Add %%check
|
|
|
|
- Add some %%docs
|
|
|
|
- Use %%makeinstall
|
2005-07-05 20:20:17 +00:00
|
|
|
- Add patch to fix test for h5repack
|
|
|
|
- Add patch to fix h5diff_attr.c
|
|
|
|
|
|
|
|
* Mon Jun 27 2005 Tom "spot" Callaway <tcallawa@redhat.com> 1.6.4-2
|
|
|
|
- remove szip from spec, since szip license doesn't meet Fedora standards
|
|
|
|
|
|
|
|
* Sun Apr 3 2005 Tom "spot" Callaway <tcallawa@redhat.com> 1.6.4-1
|
|
|
|
- inital package for Fedora Extras
|