Revisions of hdf5

Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 318150 from Todd R's avatar Todd R (TheBlackCat) (revision 23)
- update to 1.8.15

fixed baselibs.conf compared to previous version
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 306387 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 22)
- update hdf5-non_void_return.patch for GCC 5.x
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 281002 from Philipp Thomas's avatar Philipp Thomas (psmt) (revision 21)
- Tag baselibs.conf as source.

- fix typos in ChangeLog
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 20)
Split 13.2 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 238365 from Petr Gajdos's avatar Petr Gajdos (pgajdos) (revision 19)
- updated to 1.8.3:
    - Added an H5free_memory API call. This should be used to free memory 
      that has been allocated by HDF5 API calls. H5Tget_member_name and 
      H5Pget_class_name are two examples. The main motivation for this call 
      is Windows, where it is common for application code and the HDF5 Library 
      to be using different C run-time libraries (CRT). Using the new call 
      ensures that the same CRT handles both the allocation and free. This 
      new function can also be useful in any case where the library uses a 
      different memory manager than the application, such as when a debug 
      memory manager is in use or when the HDF5 Library is wrapped for use 
      in a managed language like Python or Java. Fixes HDFFV-7710, 8519, 
      and 8851. (DER - 2014/04/11)
    - The Core VFD (aka Memory VFD) can now be configured to track dirty 
      regions in the file and only write out the changed regions on 
      flush/close. Additionally, a "page aggregation" size can be set that 
      will aggregate small writes into larger writes. For example, setting 
      a 1 MiB page aggregation size will logically partition the the 
      in-memory file into 1 MiB pages that will be written out in their 
      entirety if even a single byte is dirtied. The feature is controlled 
      via the new H5Pset/get_core_write_tracking() API call. A new 
      "core_paged" target has been added to the check-vfd target in 
      test/Makefile.am that exercises the feature over all HDF5 VFD-aware
      tests. (DER - 2014/04/12)
    - see http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.8.13-RELEASE.txt
      for more
- modified patches:
  * hdf5-LD_LIBRARY_PATH.patch
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 213737 from Michael Matz's avatar Michael Matz (matz2) (revision 18)
 (forwarded request 213736 from matz2)
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 208529 from Petr Gajdos's avatar Petr Gajdos (pgajdos) (revision 17)
- 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)
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 200467 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 16)
- hdf5-configure-long-double.patch: fix configure check for unsigned long
  long to long double conversion to not fail spuriously for 128bit long
  double
- Increase testsuite timeout for qemu user space build (forwarded request 200299 from Andreas_Schwab)
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 15)
Split 13.1 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 198974 from Philipp Thomas's avatar Philipp Thomas (psmt) (revision 14)
- build with -O0 also for gcc 4.8 (forwarded request 198947 from pgajdos)
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 178962 from Marcus Meissner's avatar Marcus Meissner (msmeissn) (revision 13)
- increase hdf5_libver to 8 (forwarded request 178934 from rudi_m)
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 163982 from Ismail Dönmez's avatar Ismail Dönmez (namtrac) (revision 12)
- Update to 1.8.10-patch1:
  * official important bug fixes for 1.8.10
  * see RELEASE.txt "Bug Fixes since HDF5-1.8.10" (forwarded request 163804 from rudi_m)
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 11)
Split 12.3 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 142035 from Ismail Dönmez's avatar Ismail Dönmez (namtrac) (revision 10)
- Update to 1.8.10, changes documented here:
  http://www.hdfgroup.org/HDF5/doc/ADGuide/Changes.html
- remove hdf5-ph5diff.patch (fixed by upstream)
- add hdf5-fix_printf.patch (forwarded request 142034 from rudi_m)
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 140219 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 9)
- fixing baselibs.conf
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 136159 from Petr Gajdos's avatar Petr Gajdos (pgajdos) (revision 8)
- make sure to install the examples from non-parallel build (forwarded request 136098 from rudi_m)
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 135876 from Ismail Dönmez's avatar Ismail Dönmez (namtrac) (revision 7)
Fix the ugliness of that make install line and make RPM_OPT_FLAGS
replacement more robust. (forwarded request 135874 from jengelh)
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 134430 from Marcus Meissner's avatar Marcus Meissner (msmeissn) (revision 6)
remove noisy and unneeded entries in changes file as requested (forwarded request 134414 from scorot)
Displaying revisions 61 - 80 of 85
openSUSE Build Service is sponsored by