Commit graph

24 commits

Author SHA1 Message Date
adam
a5ab99a412 distinfo is now correct 2008-09-17 05:01:15 +00:00
adam
ed5c3b409a Changes 1.6.7:
* Bug fixes
* Improvements
2008-09-11 10:27:52 +00:00
dmcmahill
16e8406b40 Restore a needed patch that was lost during the last update.
Builds on solaris again.
2007-09-25 01:22:15 +00:00
drochner
9344acf1ad update to 1.6.6
changes:
-minor feature additions to the command line tools
-C++ API: Added support for Szip
-bugfixes

pkgsrc changes:
-fixes for the cxx option (should be a separate pkg)
-fixes for the threadsafe option -- replaced a pthread_equal() by a
 simple "==" to make it usable with non-threaded apps
 (not 100% portable, but should be fine for the platforms in question)
 The shared libraries should not be linked against libpthread, but
 that would require serious changes to the autoconf/make machinery
 so I've left it alone for now.
 If that is fixed, "threadsafe" could be made default.
-Don't try to strip scripts on install.
2007-09-18 18:58:08 +00:00
dmcmahill
e26e2c0e5b Repair compilation under solaris. Also added back the configure.in patch
instead of only keeping a configure patch.
2006-10-02 16:20:04 +00:00
minskim
bf1266f0bc When distfile was changed, DIST_SUBDIR should have been set to refetch
it automatically.
2006-02-23 18:28:06 +00:00
drochner
18f2bc3a2d -fix MASTER_SITES and distinfo cksum
-make NetBSD ("netbsdelf") a recognized configuration, copied from
 "freebsd"; this pulls in definitions for gcc, in particular it
 disables some optimization
-work around a memory corruption problem in H5FDstream which appearently
 is caused by use of free()d memory
The latter 2 changes make the library survive its selftests, and help
the "pytables" pkg as well.

bump PKGREVISION, raise BUILDLINK_RECOMMENDED
2006-02-10 19:56:13 +00:00
recht
debc1eed9b Addd optional support for thread safety and C++ with the options:
cxx threads
2006-01-04 06:05:44 +00:00
adam
f4d731f205 Changes 1.6.5:
* New features:
	* Added yodconfig
	* Added HSYS_ERROR, H5F_OBJ_LOCAL flag
	* Added mpich2 as a testing "platform"
* Bug fixes
2005-11-29 10:03:39 +00:00
dmcmahill
a7a51cf575 one more try at expanding the portability of the 'tr' usage to keep this
happy on systems such as solaris which have suboptimal tr's.  Now this works
with /usr/bin/tr.
2005-08-30 01:31:21 +00:00
dmcmahill
c1301ca5a3 change
tr '[a-z],' [A-Z] '
to
  tr [a-z], [A-Z]\
to help the tr on solaris.
2005-08-17 02:45:48 +00:00
dmcmahill
424b7271dd - add tr to the tools list
- check for -lsocket so that solaris can find socket() and friends.
2005-08-16 22:02:10 +00:00
adam
abb989df86 Changes 1.6.4:
* Bug-fix release
2005-05-18 13:39:05 +00:00
adam
67147114d1 Changes 1.6.3:
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-25 09:10:18 +00:00
agc
4a3d2f7ce2 Add RMD160 digests. 2005-02-23 22:24:08 +00:00
drochner
57549cfb13 update to 1.6.2
changes:
-new functions: H5Iget_ref, H5Iinc_ref and H5Idec_ref
-bugfixes
being here, move to USE_BUILDLINK3
2004-04-22 15:00:08 +00:00
jtb
3e8fe03112 Update to 1.6.0.
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-08-04 17:26:59 +00:00
jtb
7d9fa5a067 Update to 1.4.5.2.
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-09 23:58:51 +00:00
jtb
d7276263ef 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
2003-04-29 23:05:22 +00:00
drochner
3e93bd357e update to 1.4.4
relevnt changes:
-Numerous performance changes were made to the HDF5 sequential and
 parallel libraries
-Several corruption problems were fixed.
2002-10-28 16:32:01 +00:00
jtb
133865a291 Update to version 1.4.3. Changes include:
* 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-05-03 20:51:33 +00:00
jtb
398d5d047e Update of hdf5 to 1.4.1. Also, added German mirror.
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-30 00:26:20 +00:00
wiz
dfb2d5edc6 Move to sha1 digests, and/or add distfile sizes. 2001-04-21 00:44:09 +00:00
agc
d7d36b3561 + move the distfile digest/checksum value from files/md5 to distinfo
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-04-17 10:57:56 +00:00