summaryrefslogtreecommitdiff
path: root/devel/hdf5
AgeCommit message (Collapse)AuthorFilesLines
2005-02-25Changes 1.6.3:adam5-37/+269
New Features Configuration: - Added some initial support for making purify (or similar memory checking products) happier by initializing buffers to zero and disabling the internal free list code. To take advantage of this, define 'H5_USING_PURIFY' in your CFLAGS when building the library. - WINDOWS building,testing and installing improvements - On Windows, FORTRAN,C++ and C projects are merged into one zip file, users can choose an option to build either FORTRAN or C++ or both with basic C library.For detailed information, please read INSTALL_Windows.txt. - On Windows, szip compression library with or without encoder can be easily turned off or on when building HDF5. For detailed information, please read INSTALL_Windows.txt, especially section V. - On Windows, an optional procedure for building,testing and installing HDF5 from command line is provided. This procedure is supposed to be convenient for experienced users, please read INSTALL_windows_From_Command_Line.txt for details. - On Windows, an alternative short instruction document for building, testing and installing HDF5 is provided. This instruction is supposed to be convenient for general users, please read INSTALL_Windows_Short.txt for details. - On Windows, h5repack,h5diff,h5ls and h5import tool tests have been added. Library: - Modified the way how HDF5 calculates 'pixels_per_scanline' parameter for SZIP compression. Now there is no restriction on the size and shape of the chunk except that the total number of elements in the chunk cannot be bigger than 'pixels_per_block' parameter provided by the user. - HDF5 can now link to SZIP with or without szip's encoder. The new API function H5Zget_filter_info can be used to check szip's status. Attempting to assign szip to a dataset property list or attempting to write with szip will generate an error if szip's encoder is disabled. JL/NF - 2004/6/30 - SZIP always uses K13 compression. This flag no longer needs to be set when calling H5Pset_szip. If the flag for CHIP compression is set, it will be ignored (since the two are mutually exclusive). JL/NF - 2004/6/30 - A new API function H5Fget_name was added. It returns the name of the file by object(file, group, data set, named data type, attribute) ID. SLU - 2004/06/29 - A new API function H5Fget_filesize was added. It returns the actual file size of the opened file. SLU - 2004/06/24 - Added option that if $HDF5_DISABLE_VERSION_CHECK is set to 2, will suppress all library version mismatch warning messages. Tools: - h5repack was added to the tools suite. h5repack regenerates an HDF5 file from another HDF5 file, optionally applying HDF5 filters (compression) and/or chunking to the copied file. The filters options are read from the command line. See /doc/html/Tools.html for more details. PVN - 2004/9/13 - h5dump includes new features: 1) Printing of dataset filters, storage layout and fill value information. 2) Print a list of the file contents. 3) Escape non printing characters. 4) Print the content of the boot block. 5) Print array indices with the data (the default).
2005-02-23Add RMD160 digests.agc1-1/+2
2004-11-13USE_BUILDLINK3 is a yes/no variable.jlam1-2/+2
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-2/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-5/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-04-25Unused.wiz1-52/+0
2004-04-22update to 1.6.2drochner4-23/+45
changes: -new functions: H5Iget_ref, H5Iinc_ref and H5Idec_ref -bugfixes being here, move to USE_BUILDLINK3
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2003-08-06Correct PLIST for version for 1.6.0.jtb1-2/+220
2003-08-06h5perf isn't installed by this packagejmc1-2/+1
2003-08-05Add a missing header file.jtb1-2/+4
2003-08-04Update to 1.6.0.jtb3-21/+21
Summary: This release has the following new features that are not available in 1.4.* releases 1. Generic properties to give application more control on I/O pipeline 2. Time allocation and fill value properties 3. New filters: external compression filter szip internal shuffling and checksum filters 4. Compact storage layout for datasets 5. Redesigned I/O pipeline for better performance. For more information see http://hdf.ncsa.uiuc.edu/HDF5/doc_resource/SZIP/index.html http://hdf.ncsa.uiuc.edu/HDF5/doc/ADGuide.html http://hdf.ncsa.uiuc.edu/HDF5/doc/ADGuide/Changes.html
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2003-05-09Update to 1.4.5.2.jtb2-8/+9
This version fixes some serious bugs in version 1.4.5 and includes the following relevant changes: * Fixed error in B-tree deletion routine which could cause groups to be corrupted when objects are removed from them. * Fixed error in file space freeing code which could cause metadata to fail to be written to the file. * Fixed error in library when configured with --enable-debug=all. * Added a -force option to h5redeploy. * When using gcc 3.x, we use -std=gnu99 instead of -ansi for compiling.
2003-05-06Drop trailing whitespace. Ok'ed by wiz.jmmv1-1/+1
2003-04-29Update to version 1.4.5.jtb4-8/+10
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
2002-10-28update to 1.4.4drochner6-218/+19
relevnt changes: -Numerous performance changes were made to the HDF5 sequential and parallel libraries -Several corruption problems were fixed.
2002-10-10buildlink1 -> buildlink2.wiz1-3/+3
2002-10-09Unused.wiz1-65/+0
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam1-0/+50
buildlink2.mk files back into the main trunk.
2002-05-03Add buildlink.mk for hdf5.jtb1-0/+65
2002-05-03Update to version 1.4.3. Changes include:jtb6-45/+79
* Changed internal error handling macros to reduce code size of library by about 10%. * API changes. * Performance improvements * ``h5cc'' script which helps compilation of HDF5 programs * Bug fixes.
2002-02-06Changes instances where BSD_INSTALL_* were used by targets in the Makefilejlam1-2/+2
into the equivalent INSTALL_*. This is fallout from the change in revision 1.915 that removed ${MAKE_ENV} from the environment for a recursive make.
2001-11-01Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-07-22Remove a shared library that doesn't seem to get built. Noted missing inwiz1-4/+1
recent bulk build.
2001-05-12Install "h5tools" library so that the include tools will actually work.tron2-2/+11
2001-04-30Update of hdf5 to 1.4.1. Also, added German mirror.jtb3-94/+153
New Features ============ * XML output option for h5dump utility. A new option --xml to output data in XML format has been added. The XML output contains a complete description of the file, marked up in XML. The XML conforms to the HDF5 Document Type Definition (DTD), which is available at: http://hdf.ncsa.uiuc.edu/DTDs/HDF5-File.dtd The XML output is suitable for use with other tools, including the Java Tools: http://hdf.ncsa.uiuc.edu/java-hdf5-html Bug Fixes since HDF5-1.4.0 Release ================================== * h4toh5 utility: conversion of images is fixed Earlier releases of the h4toh5 utility produced images that did not correctly conform to the HDF5 Image and Palette Specification. http://hdf.ncsa.uiuc.edu/HDF5/doc/ImageSpec.html Several required HDF5 attributes are omitted, and the dataspace is reversed (i.e., the ht. and width of the image dataset is incorrectly described.) For more information, please see: http://hdf.ncsa.uiuc.edu/HDF5/H5Image/ImageDetails.htm * Fixed bug with contiguous hyperslabs not being detected, causing slower I/O than necessary. * Fixed bug where non-aligned hyperslab I/O on chunked datasets was causing errors during I/O * The RCSID string in H5public.h was causing the C++ compiling problem because when it was included multiple times, C++ did not like multiple definitions of the same static variable. All occurance of RCSID definition are removed since we have not used it consistently before.
2001-04-21Move to sha1 digests, and/or add distfile sizes.wiz1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-6/+4
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-04-14Change MAINTAINER section to packages@netbsd.orgjtb1-2/+2
2001-03-22Don't wildcard jpeg, since it's version number is not dewey-compatible.wiz1-2/+2
2001-03-04Fix the ${MASTER_SITES} for the new distfile. Fixes i386 bulk buildjtb3-8/+18
problem. Also, patch configure script to not add "-ansi -pedantic" to CFLAGS. It seems pointless to use the "-ansi" warning when so many warnings about ANSI C not supporting "long long", etc., appear.
2001-03-01Fixed the ownership/permissions of the installed documentation.jtb1-2/+3
2001-02-25Updated hdf5 to 1.4.0. For further details of changes seejtb5-330/+324
${PREFIX}/share/doc/hdf5/RELEASE.txt. New Features ============ * The Virtual File Layer, VFL, was added to replace the old file drivers. It also provides an API for user defined file drivers. * New features added to snapshots. Use 'snapshot help' to see a complete list of features. * Improved configure to detect if MPIO routines are available when parallel mode is requested. * Added Thread-Safe support. Phase I implemented. See: http://hdf.ncsa.uiuc.edu/HDF5/papers/mthdf/MTHDFpaper.htm for more details. * Added data sieve buffering to raw data I/O path. This is enabled for all VFL drivers except the mpio & core drivers. Setting the sieve buffer size is controlled with the new API function, H5Pset_sieve_buf_size(), and retrieved with H5Pget_sieve_buf_size(). * Added new Virtual File Driver, Stream VFD, to send/receive entire HDF5 files via socket connections. * As parts of VFL, HDF-GASS and HDF-SRB are also added to this release. To find out details, please read INSTALL_VFL file. * Increased maximum number of dimensions for a dataset (H5S_MAX_RANK) from 31 to 32 to align with HDF4 & netCDF. * Added 'query' function to VFL drivers. Also added 'type' parameter to VFL 'read' & 'write' calls, so they are aware of the type of data being accessed in the file. Updated the VFL document also. * A new h4toh5 utility, to convert HDF4 files to analogous HDF5 files. * Added a new array datatype to the datatypes which can be created. Removed "array fields" from compound datatypes (use an array datatype instead). * Parallel HDF5 works correctly with mpich-1.2.1 on Solaris, SGI, Linux. * You can now install the HDF5 documentation using the ``make install-doc'' command. The documentation is installed in the $(prefix)/doc directory where $(prefix) is the prefix specified by the (optional) ``--prefix'' flag during configuration. * HDF5 can operate correctly in the OpenMP environment in a limited way. Check doc/html/TechNotes/openmp-hdf5.html for details.
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2001-01-24Use LTCONFIG_OVERRIDE instead of LIBTOOL_OVERRIDE (for consistency reasons).wiz1-2/+2
2001-01-19The `h5debug' program makes no allowance for the case where (argc < 2). Justjtb3-1/+20
print a one line usage statement and exit in this case.
2001-01-04The way that shared objects were handled in the PLISTs and bsd.pkg.mk wasagc1-1/+3
out of date - it was based on a.out OBJECT_FMT, and added entries in the generated PLISTs to reflect the symlinks that ELF packages uses. It also tried to be clever, and removed and recreated any symbolic links that were created, which has resulted in some fun, especially with packages which use dlopen(3) to load modules. Some recent changes to our ld.so to bring it more into line with other Operating Systems also exposed some cracks. + Modify bsd.pkg.mk and its shared object handling, so that PLISTs now contain the ELF symlinks. + Don't mess about with file system entries when handling shared objects in bsd.pkg.mk, since it's likely that libtool and the BSD *.mk processing will have got it right, and have a much better idea than we do. + Modify PLISTs to contain "ELF symlinks" + On a.out platforms, delete any "ELF symlinks" from the generated PLISTs + On ELF platforms, no extra processing needs to be done in bsd.pkg.mk + Modify print-PLIST target in bsd.pkg.mk to add dummy symlink entries on a.out platforms + Update the documentation in Packages.txt With many thanks to Thomas Klausner for keeping me honest with this.
2000-11-25Added a tab to DEPENDS for proper alignment.jtb1-2/+2
2000-11-24Initial import of new "hdf5" package:jtb5-0/+372
Hierarchical Data Format 5