Blame SPECS/hdf5.spec

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