From 79fff2e63fa7bbba7ad115a03dcd96476ee580785fad633e5f92a13d87ff9d10 Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Tue, 26 Nov 2013 20:06:01 +0000 Subject: [PATCH] Accepting request 208529 from devel:libraries:c_c++ - update to 1.8.2: - Added a configuration option to change the default plugin path. The configure option is --with-default-plugindir=location. The cmake option is -DH5_DEFAULT_PLUGINDIR:PATH=location. HDFFV-8513. (ADB 2013/09/04) - Renamed FFLAGS to FCFLAGS in configure. (ADB 2013/08/13) - CMake can now package a compressed examples file, the default for Windows binaries from HDF Group. (ADB - 2013/07/22) - h5repack: Added the ability to use plugin filters to read and write files. The option uses the filter number. HDFFV-8345 (ADB - 2013/09/04). - h5dump: Added the option -N --any_path, which searches the file for paths that match the search path. HDFFV-7989 (ADB - 2013/08/12). - h5dump: Added the optional arg 0 to -A, which excludes attributes from display. HDFFV-8134 (ADB - 2013/08/01). - Added tutorial examples to C++/examples. They can be installed by "make install-examples" and, in the installed directory, they can be executed by running the script file run-c++-ex.sh. (BMR - 2013/09/28) - A new class, H5::H5Location, is added to represent the location concept in the C library. It is a base class to H5::H5File and H5::H5Ojbect, whose member functions are moved into H5::H5Location. H5::H5File can now inherent those functions. As a result, an H5::H5File object can have an attribute. (BMR - 2013/09/27) - Added wrappers for H5Rget_obj_type2 to retrieve the type of the object that an object reference points to. (BMR - 2013/09/27) H5O_type_t H5Location::getRefObjType(void *ref, H5R_type_t ref_type) - Added wrappers for H5Aexist to check whether an attribute exists given a name. (BMR - 2013/09/27) bool H5::H5Location::attrExists(const char* name) bool H5::H5Location::attrExists(const H5std_string& name) OBS-URL: https://build.opensuse.org/request/show/208529 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/hdf5?expand=0&rev=17 --- hdf5-1.8.11.tar.bz2 | 3 --- hdf5-1.8.12.tar.bz2 | 3 +++ hdf5.changes | 38 ++++++++++++++++++++++++++++++++++++++ hdf5.spec | 4 ++-- 4 files changed, 43 insertions(+), 5 deletions(-) delete mode 100644 hdf5-1.8.11.tar.bz2 create mode 100644 hdf5-1.8.12.tar.bz2 diff --git a/hdf5-1.8.11.tar.bz2 b/hdf5-1.8.11.tar.bz2 deleted file mode 100644 index f68f84d..0000000 --- a/hdf5-1.8.11.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5ea1ba82fc77350ee628b795ae6ede05feeaf1c6b437911a9478de456600cafb -size 5928553 diff --git a/hdf5-1.8.12.tar.bz2 b/hdf5-1.8.12.tar.bz2 new file mode 100644 index 0000000..b698f65 --- /dev/null +++ b/hdf5-1.8.12.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d080f913a226a3ce390a11d9b571b2d5866581a2aa4434c398cd371c7063639 +size 5994832 diff --git a/hdf5.changes b/hdf5.changes index bd2a56e..b5f629a 100644 --- a/hdf5.changes +++ b/hdf5.changes @@ -1,3 +1,41 @@ +------------------------------------------------------------------- +Tue Nov 26 14:27:16 UTC 2013 - pgajdos@suse.com + +- update to 1.8.2: + - Added a configuration option to change the default plugin path. + The configure option is --with-default-plugindir=location. + The cmake option is -DH5_DEFAULT_PLUGINDIR:PATH=location. + HDFFV-8513. (ADB 2013/09/04) + - Renamed FFLAGS to FCFLAGS in configure. (ADB 2013/08/13) + - CMake can now package a compressed examples file, the default for + Windows binaries from HDF Group. (ADB - 2013/07/22) + - h5repack: Added the ability to use plugin filters to read and write + files. The option uses the filter number. HDFFV-8345 + (ADB - 2013/09/04). + - h5dump: Added the option -N --any_path, which searches the file for + paths that match the search path. HDFFV-7989 (ADB - 2013/08/12). + - h5dump: Added the optional arg 0 to -A, which excludes attributes + from display. HDFFV-8134 (ADB - 2013/08/01). + - Added tutorial examples to C++/examples. They can be installed by + "make install-examples" and, in the installed directory, they can be + executed by running the script file run-c++-ex.sh. (BMR - 2013/09/28) + - A new class, H5::H5Location, is added to represent the location concept + in the C library. It is a base class to H5::H5File and H5::H5Ojbect, + whose member functions are moved into H5::H5Location. H5::H5File can + now inherent those functions. As a result, an H5::H5File object can have + an attribute. (BMR - 2013/09/27) + - Added wrappers for H5Rget_obj_type2 to retrieve the type of the object + that an object reference points to. (BMR - 2013/09/27) + H5O_type_t H5Location::getRefObjType(void *ref, H5R_type_t ref_type) + - Added wrappers for H5Aexist to check whether an attribute exists given + a name. (BMR - 2013/09/27) + bool H5::H5Location::attrExists(const char* name) + bool H5::H5Location::attrExists(const H5std_string& name) + - Added a number of overloaded functions for convenience. (BMR - 2013/09/27) + - bugfixes + - see http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.8.12-RELEASE.txt + for more + ------------------------------------------------------------------- Tue Sep 24 07:04:42 UTC 2013 - schwab@suse.de diff --git a/hdf5.spec b/hdf5.spec index 049bb06..14b7ba1 100644 --- a/hdf5.spec +++ b/hdf5.spec @@ -29,10 +29,10 @@ %define _mpi %{?_openmpi:openmpi} %{?_mvapich2:mvapich2} # rpm may not like this original version number -%define xversion 1.8.11 +%define xversion 1.8.12 Name: hdf5 -Version: 1.8.11 +Version: 1.8.12 Release: 0 Summary: A general purpose library and file format for storing scientific data License: BSD-3-Clause