diff options
author | adam <adam@pkgsrc.org> | 2014-02-14 09:09:40 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2014-02-14 09:09:40 +0000 |
commit | 6a8051ef69396185e6433ba512225d14490c2117 (patch) | |
tree | c780603e15e2b69df62ca564c5f180aff7a012f7 /devel/hdf5 | |
parent | 15bace3051f66d3478274420a55d88c6af83ff26 (diff) | |
download | pkgsrc-6a8051ef69396185e6433ba512225d14490c2117.tar.gz |
Changes 1.18.12:
Configuration
-------------
- 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)
Tools
-----
- 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).
C++ API
-------
- 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)
Diffstat (limited to 'devel/hdf5')
-rw-r--r-- | devel/hdf5/Makefile.common | 4 | ||||
-rw-r--r-- | devel/hdf5/distinfo | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/devel/hdf5/Makefile.common b/devel/hdf5/Makefile.common index 7cd171bbecc..7d813859e35 100644 --- a/devel/hdf5/Makefile.common +++ b/devel/hdf5/Makefile.common @@ -1,8 +1,8 @@ -# $NetBSD: Makefile.common,v 1.7 2013/09/01 09:56:41 adam Exp $ +# $NetBSD: Makefile.common,v 1.8 2014/02/14 09:09:40 adam Exp $ # used by devel/hdf5/Makefile # used by devel/hdf5-c++/Makefile -DISTNAME= hdf5-1.8.11 +DISTNAME= hdf5-1.8.12 CATEGORIES= devel MASTER_SITES= ftp://ftp.hdfgroup.org/HDF5/current/src/ EXTRACT_SUFX= .tar.bz2 diff --git a/devel/hdf5/distinfo b/devel/hdf5/distinfo index f54c0592d97..16edee66ab0 100644 --- a/devel/hdf5/distinfo +++ b/devel/hdf5/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.31 2013/09/01 09:56:41 adam Exp $ +$NetBSD: distinfo,v 1.32 2014/02/14 09:09:40 adam Exp $ -SHA1 (hdf5-1.8.11.tar.bz2) = 87ded0894b104cf23a4b965f4ac0a567f8612e5e -RMD160 (hdf5-1.8.11.tar.bz2) = 32786b19dd7356eecc95848d66e8e0843298ccbb -Size (hdf5-1.8.11.tar.bz2) = 5928553 bytes +SHA1 (hdf5-1.8.12.tar.bz2) = 8414ca0e6ff7d08e423955960d641ec5f309a55f +RMD160 (hdf5-1.8.12.tar.bz2) = b885803d35855007f2e66f1a376fff9d11d5c1ec +Size (hdf5-1.8.12.tar.bz2) = 5994832 bytes SHA1 (patch-c++_examples_Makefile.in) = 9ae14ae81abc9c858abb0d03b92e498b2113591c SHA1 (patch-c++_examples_run-c++-ex.sh.in) = 58c38b2ba5557cdae2c4fe1e72c6fa55e5606f1e SHA1 (patch-configure) = b8d6e6e53ecb5e5861fba88be1a203cedf6747b3 |