diff --git a/h5comp b/h5comp new file mode 100644 index 0000000000000000000000000000000000000000..b7bfc0a21fd49e68b2b3a6113bc2d16507e2cd8b --- /dev/null +++ b/h5comp @@ -0,0 +1,10 @@ +#!/bin/bash + +ARCH=$(uname -m) + +case $ARCH in + x86_64 ) BITS=64;; + * ) BITS=32;; +esac + +exec $0-${BITS} "$@" diff --git a/hdf5.spec b/hdf5.spec index 357e94ed25bc94d068779ee64084af9911ef21ce..0046492d04d97c226a25231dd402a1c3c2ff1058 100644 --- a/hdf5.spec +++ b/hdf5.spec @@ -9,12 +9,13 @@ Name: hdf5 Version: 1.8.20 -Release: 15 +Release: 16 Summary: A data model, library, and file format for storing and managing data License: GPL-2.0-or-later and BSD-3-Clause URL: https://portal.hdfgroup.org/display/HDF5/HDF5 Source0: https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.8/hdf5-1.8.20/src/hdf5-1.8.20.tar.bz2 +Source1: h5comp Patch0: hdf5-LD_LIBRARY_PATH.patch Patch1: hdf5-mpi.patch @@ -178,18 +179,6 @@ done %install %make_install -C build %delete_la -cat >h5comp < - 1.8.20-16 +- fix some commands failed + * Fri Mar 31 2023 yaoxin - 1.8.20-15 - Fix CVE-2018-16438 and CVE-2018-14031