diff options
author | jtb <jtb> | 2003-04-29 23:05:22 +0000 |
---|---|---|
committer | jtb <jtb> | 2003-04-29 23:05:22 +0000 |
commit | 3e6d4f80167c06fae3b47e71f127b42e4edb0e10 (patch) | |
tree | 46194b5ebc311636b8d605ab15e6680a908b6046 /devel/hdf5 | |
parent | 7d473eede137da024104afd79da6b00e8154f658 (diff) | |
download | pkgsrc-3e6d4f80167c06fae3b47e71f127b42e4edb0e10.tar.gz |
Update to version 1.4.5.
Changes:
* Allow scalar dataspaces to be used for parallel I/O. QAK - 2002/11/05
* Added environment variable "HDF5_DISABLE_VERSION_CHECK", which disables
the version checking between the header files and the library linked
into an application if set to '1'. This should be used with caution,
mis-matched headers and library binaries can cause _serious_ problems.
QAK - 2002/10/15
* Partially fixed space allocation inefficiencies in the file by
improving our algorithms for re-using freed space. QAK - 2002/08/27
* API tracing has been improved. Nested API calls don't screw up the
output format; function call and return event times can be logged;
total time spent in each function can be logged. The following
HDF5_DEBUG environment variable words affect tracing:
trace -- turn on/off basic tracing
ttimes -- turn on tracing and report event times and
time spent in each API function.
ttop -- turn on tracing but display only top-level
API calls.
* Several missing fortran APIs have been added to the library:
h5get_libversion_f h5tget_member_index_f h5dget_storage_size_f
h5check_version_f h5tvlen_create_f h5dvlen_get_max_len_f
h5garbage_collect_f h5dwrite_vl_f
h5dont_atexit_f h5dread_vl_f
Functions h5dvlen_get_max_len_f, h5dwrite_vl_f, and h5dread_vl_f support
VL Length C APIs functionality for integer, real and string datatypes.
See HDF5 Reference Manual and HDF5 FORTRAN90 User's Notes for more
information and for the functions description.
* H5Fopen without the H5F_ACC_CREAT flag should not succeed in creating
a new file with the 'core' VFL driver. QAK - 2003/01/24
* Corrected metadata caching bug in parallel I/O which could cause hangs
when chunked datasets were accessed with independent transfer mode.
QAK - 2003/01/23
* Allow opening objects with unknown object header messages.
QAK - 2003/01/21
* Added improved error assertion for nil VL strings. It return error
stack instead of a simple assertion. SLU - 2002/12/16
* Fixed h5dump bug(cannot dump data and datatype) for VL string.
SLU - 2002/11/18
* Fixed error condition where "none" selections were not being handled
correctly in serial & parallel. QAK - 2002/10/29
* Fixed problem where optimized hyperslab routines were incorrectly
invoked for parallel I/O operations in collective mode. QAK - 2002/07/22
* Fixed metadata corruption problem which could occur when many objects
are created in a file during parallel I/O. QAK - 2002/07/19
* Fixed minor problem with configuration when users specified /usr/include
and /usr/lib for the --with-* options that some compilers can't
handle. BW - 2003/01/23
Diffstat (limited to 'devel/hdf5')
-rw-r--r-- | devel/hdf5/Makefile | 4 | ||||
-rw-r--r-- | devel/hdf5/PLIST | 4 | ||||
-rw-r--r-- | devel/hdf5/buildlink2.mk | 4 | ||||
-rw-r--r-- | devel/hdf5/distinfo | 6 |
4 files changed, 10 insertions, 8 deletions
diff --git a/devel/hdf5/Makefile b/devel/hdf5/Makefile index c0a2816abe4..e50a2de11fa 100644 --- a/devel/hdf5/Makefile +++ b/devel/hdf5/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2002/10/28 16:32:01 drochner Exp $ +# $NetBSD: Makefile,v 1.16 2003/04/29 23:05:22 jtb Exp $ -DISTNAME= hdf5-1.4.4 +DISTNAME= hdf5-1.4.5 CATEGORIES= devel MASTER_SITES= ftp://hdf.ncsa.uiuc.edu/HDF5/hdf5-1.4.4/src/ \ ftp://sunsite.doc.ic.ac.uk/packages/HDF/HDF5/hdf5-1.4.4/src/ \ diff --git a/devel/hdf5/PLIST b/devel/hdf5/PLIST index b675c2ceb3f..1bfdd29a2ad 100644 --- a/devel/hdf5/PLIST +++ b/devel/hdf5/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2002/10/28 16:32:01 drochner Exp $ +@comment $NetBSD: PLIST,v 1.4 2003/04/29 23:05:22 jtb Exp $ bin/gif2h5 bin/h52gif bin/h5cc @@ -20,6 +20,7 @@ include/H5FDgass.h include/H5FDlog.h include/H5FDmpio.h include/H5FDmulti.h +include/H5FDmpiposix.h include/H5FDpublic.h include/H5FDsec2.h include/H5FDsrb.h @@ -146,6 +147,7 @@ share/doc/html/hdf5/TechNotes/ChStudy_500x500.gif share/doc/html/hdf5/TechNotes/ChStudy_p1.gif share/doc/html/hdf5/TechNotes/ChunkingStudy.html share/doc/html/hdf5/TechNotes/CodeReview.html +share/doc/html/hdf5/TechNotes/Daily_Test_Explained.htm share/doc/html/hdf5/TechNotes/Dependencies share/doc/html/hdf5/TechNotes/ExternalFiles.html share/doc/html/hdf5/TechNotes/FreeLists.html diff --git a/devel/hdf5/buildlink2.mk b/devel/hdf5/buildlink2.mk index d16f69e3d9f..f8f18ad11f5 100644 --- a/devel/hdf5/buildlink2.mk +++ b/devel/hdf5/buildlink2.mk @@ -1,10 +1,10 @@ -# $NetBSD: buildlink2.mk,v 1.2 2002/08/25 19:22:30 jlam Exp $ +# $NetBSD: buildlink2.mk,v 1.3 2003/04/29 23:05:22 jtb Exp $ .if !defined(HDF5_BUILDLINK2_MK) HDF5_BUILDLINK2_MK= # defined BUILDLINK_PACKAGES+= hdf5 -BUILDLINK_DEPENDS.hdf5?= hdf5>=1.4.3 +BUILDLINK_DEPENDS.hdf5?= hdf5>=1.4.5 BUILDLINK_PKGSRCDIR.hdf5?= ../../devel/hdf5 EVAL_PREFIX+= BUILDLINK_PREFIX.hdf5=hdf5 diff --git a/devel/hdf5/distinfo b/devel/hdf5/distinfo index 6999b281153..3c84e2233fc 100644 --- a/devel/hdf5/distinfo +++ b/devel/hdf5/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.5 2002/10/28 16:32:01 drochner Exp $ +$NetBSD: distinfo,v 1.6 2003/04/29 23:05:22 jtb Exp $ -SHA1 (hdf5-1.4.4.tar.gz) = 8f24c3953c1d3b44f46b7df4b85b5a4d5cda2234 -Size (hdf5-1.4.4.tar.gz) = 2999949 bytes +SHA1 (hdf5-1.4.5.tar.gz) = e054b0ffed0e0844cc5908d4944342141cf9c3a4 +Size (hdf5-1.4.5.tar.gz) = 3063820 bytes SHA1 (patch-aa) = 4f9e284a72a2b4f96eab9d38045f7bee9f7787ab |