Commit graph

88 commits

Author SHA1 Message Date
jperkin
56c31276e5 Avoid reference to WRAPPER_BINDIR in final binaries. 2014-09-24 10:40:57 +00:00
adam
ec9d3df012 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)
2014-02-14 09:09:40 +00:00
obache
a170ca136b recursive bump from hdf5 shlib major bump. 2013-09-01 12:14:06 +00:00
adam
302f01d1a6 Changes 1.8.11:
Configuration
- Libtool version number is changed to 8.0.0 because there are API
  changes. See below for details.
- Mac OS X 10.7 (Lion) and 10.8 (Mountain Lion) uses clang/clang++ as the
  default C and C++ compilers.
- CMake minimum is now 2.8.10.
- A new tool, cmakehdf5, which is a build command script similar to
  buildhdf5 is added and is available in the bin directory.

Library
- The library can load filter libraries dynamically during runtime.  Users
  can set the search path through environment variable HDF5_PLUGIN_PATH
  and call H5Pset_filter to enable a dynamic filter.
- Added new API functions H5Dscatter and H5Dgather to scatter data to and
  and gather data from a selection within a memory buffer.
- The library now supports the data conversion from enumeration to numeric
  (integer and floating-point number) datatypes. See Issue HDFFV-8221.

Tools
- h5dump: added new option -O or -ddl to output the ddl text to a file. This
  is a complement to the -o or --output option, which redirects the data to
  a file.
2013-09-01 09:56:41 +00:00
adam
50a574ccd9 Changes 1.8.10-patch1:
Library
-------
- The library now behaves correctly when performing large I/O operations on
  Mac OS-X.  Previously, single I/O operations > 2 GB would fail since the
  Darwin read/write calls cannot handle the number of bytes that their
  parameter types imply.
  Fixes HDFFV-7975 and HDFFV-8240 (DER - 07 JAN 2013)
- Fixed a bug in the core VFD that cause failures when opening files > 2 GB.
  Fixes HDFFV-8124 and HDFFV-8158 (DER - 07 JAN 2013)
Tools
-----
- The following h5stat test case failed in BG/P machines (and potentially
  other machines that display extra output if an MPI task returns with a
  non-zero code.)
    Testing h5stat notexist.h5
  The test script was fixed to ignore the extra output.
  HDFFV-8233 (AKC - 2012/12/17)
- h5diff: Fixed slowness when comparing HDF5 files with many attributes.
  Much slower performance was identified with later release version
  (from 1.8.7 to 1.8.10) compared to 1.8.6. The issue was introduced
  from fixing an attribute related bug for 1.8.7 release in the past.
  HDFFV-8145 (JKM 2012/12/13)
2013-04-09 14:25:40 +00:00
adam
1bcf58e4aa Changes 1.8.10:
* The following new C function has been added:
	H5Pget_mpio_no_collective_cause
* The following new Fortran subroutine has been added:
	h5pget_mpio_actual_io_mode_f
* The syntax of the following high-level C function has changed:
	H5TBAget_fill
This function’s return type has been changed to h5tri_t. A return value of 1 indicates that a fill value is present, 0 indicates that no fill value is present, and a negative value indicates an error. (The former return type was herr_t.)
Note that H5TBAget_fill and a companion function H5TBAget_title, both in the HDF5 Table (H5TB) high-level API, are undocumented. These functions will be added to the HDF5 Reference Manual shortly after HDF5 Release 1.8.10.

Changed Command-line Tool
* h5import has been updated to accept an input file created by h5dump.
2012-12-09 00:07:38 +00:00
asau
e1ab7079b6 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
asau
3aa19cf9d3 Update to HDF5 1.8.9
This doesn't pass self-tests, but it isn't regression,
previous package didn't pass them as well.
(While here, make both packages share the same distinfo.)


Changes in HDF5 1.8.9

HDF5 1.8.9 is a minor release, but contains several important
new features and bug fixes. Changes in this release include the
following:

  * Committed datatypes can now be merged when copying objects,
    using the new flag H5O_COPY_MERGE_COMMITTED_DTYPE_FLAG.
    Several new API routines have been included in support of
    this feature.

  * A file in memory can now be accessed in the same way as a
    file on disk. New APIs were added to support this feature.

  * Many changes to the tools have been made, including the following:

      + The h5repack performance has been improved dramatically
        for large chunked datasets.

      + The -S (or --summary) option was added to h5stat to
        display a summary of the file space usage for a file.

      + A wildcard can now be used with h5dump to specify multiple files.

  * H5LTpath_valid was added to determine if a path is correct
    and a link resolves to a valid object.

  * The Fortran counterpart to H5Ocopy, h5ocopy_f, was added.

This release contains many other changes and bug fixes not listed here.
Please be sure to read the Release Notes for a comprehensive
list of new features and bug fixes.



Changes in HDF5 1.8.8

HDF5 1.8.8 is a minor release, but contains a few important new
features and bug fixes. Changes in this release include the
following:

  * Changes to the Fortran interface:
      + Fortran wrappers for the Dimension Scales APIs were added.
        For the new subroutine signatures, see:

           http://www.hdfgroup.org/HDF5/doc/HL/RM_H5DS.html

      + The Fortran interface now uses the Fortran 2003 standard,
        enabling a wider set of Fortran and HDF5 datatypes to be
        supported, including:

          o Any kind of INTEGER or REAL
          o Fortran derived types
          o Fortran and HDF5 enumeration
          o HDF5 variable-length datatypes
          o HDF5 compound datatypes of any complexity

        It also contains new subroutines corresponding to those
        C APIs which have callback functions as parameters.
	For a general overview and information on how to enable
        these new Fortran features, please see the following paper:

           http://www.hdfgroup.org/HDF5/doc/fortran/NewFeatures_F2003.pdf

        HDF5 examples that use Fortran 2003 (with the suffix "F03") can be found here:

           http://www.hdfgroup.org/ftp/HDF5/examples/examples-by-api/api18-fortran.html

        The --enable-fortran2003 configure flag was added to
        enable Fortran 2003 support in the HDF5 Fortran library.
        This flag should be used along with the --enable-fortran
        flag and takes affect only when a Fortran compiler is
        Fortran 2003 compliant.

  * H5Tcreate now supports a string type (fixed-length and variable-length).

  * New APIs, H5Pget_mpio_actual_chunk_opt_mode and H5Pget_mpio_actual_io_mode,
    were added for querying whether/how a collective I/O operation completed.

  * Numerous changes were made to the tools (h5diff, h5repack, h5jam, h5dump).
2012-10-27 08:54:48 +00:00
hans
cda6e06f24 Fix build on SunOS. 2012-02-16 18:45:59 +00:00
alnsn
daf8f0d702 Update devel/hdf5 from 1.6.10nb1 to 1.8.7.
A list of changes is available at

http://www.hdfgroup.org/HDF5/doc/ADGuide/Changes.html

A list of new features of 1.8.x release is available at

http://www.hdfgroup.uiuc.edu/HDF5/doc_1.8pre/WhatsNew180.html

This update removes "cxx" option from the package. New devel/hdf5-c++
should be used instead.
2011-10-07 10:38:50 +00:00
asau
e262eacbbc Don't reverse CPPFLAGS.
Submitted by Taylor Campbell in PR 42757
2010-04-24 21:27:36 +00:00
gdt
5e4927736d PKGREVISION++, should have been on previous commit 2010-02-06 22:19:38 +00:00
gdt
97316566a1 Disable szip by default, because it's non-free, following the general
pkgsrc notion that free software should not depend on non-free
software (because that results in not having distributable binary
packages, and makes the build fail) unless skipping the dependency
renders the software non-useful.

(The hdf web page says that the default binary builds of hdf include
szip support, but then go on about how users that don't qualify for
the no-cost license have to install a different version.)

If someone who grasps hdf5 can say that hdf5 w/o szip is generally not
useful, we can turn this back on and disable by default the hdf5
option in octave.
2010-02-06 22:19:00 +00:00
gdt
c5810ea1ad license is original BSD with empahsis on making it clear that modified
versions are modified.
2010-02-06 22:11:44 +00:00
drochner
4665508704 update to 1.6.10
(yes I know there is the 1.8 branch, but I don't want to experiment
right now)
changes: many fixes, some C++ API improvements
pkgsrc change: DESTDIR support
2009-11-15 15:50:50 +00:00
joerg
bacea7cad5 Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
joerg
2d1ba244e9 Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
2009-03-20 19:23:50 +00:00
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
joerg
3d8ef5a52d Second round of explicit pax dependencies. As reminded by tnn@,
many packages used to use ${PAX}. Use the common way of directly calling
pax, it is created as tool after all.
2008-05-26 02:13:14 +00:00
jlam
841dfa0e7a Convert to use PLIST_VARS instead of manually passing "@comment "
through PLIST_SUBST to the plist module.
2008-04-12 22:42:57 +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
rillig
7f125459d8 Removed some code duplication from the buildlink3 files by using the new
pkg-build-options.mk procedure.
2007-05-30 08:54:28 +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
rillig
144a1ee175 Added "c" to USE_LANGUAGES for packages that use GNU configure scripts,
since they always need a C compiler, even when the source code is
completely in C++.

For some other packages, stated in the comment that a C compiler is
really not needed.
2006-07-22 04:46:13 +00:00
jlam
c16221a4db Change the format of BUILDLINK_ORDER to contain depth information as well,
and add a new helper target and script, "show-buildlink3", that outputs
a listing of the buildlink3.mk files included as well as the depth at
which they are included.

For example, "make show-buildlink3" in fonts/Xft2 displays:

	zlib
	fontconfig
	    iconv
	    zlib
	    freetype2
	    expat
	freetype2
	Xrender
	    renderproto
2006-07-08 23:10:35 +00:00
jlam
9430e49307 Track information in a new variable BUILDLINK_ORDER that informs us
of the order in which buildlink3.mk files are (recursively) included
by a package Makefile.
2006-07-08 22:38:58 +00:00
rillig
9d0e192d84 Fixed the path to the documentation files in the chown command in
post-install. Thanks to joerg, who noticed the bug.
2006-06-22 21:23:28 +00:00
rillig
5d49284c1d Moved the HTML documentation from share/doc/html to share/doc/hdf5/html.
Bumped PKGREVISION.
2006-06-17 20:36:26 +00:00
rillig
96fc47c14f Aligned the last line of the buildlink3.mk files with the first line, so
that they look nicer.
2006-04-12 10:26:59 +00:00
reed
5abef9be14 Over 1200 files touched but no revisions bumped :)
RECOMMENDED is removed. It becomes ABI_DEPENDS.

BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo.

BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo.

BUILDLINK_DEPENDS does not change.

IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS
which defaults to "yes".

Added to obsolete.mk checking for IGNORE_RECOMMENDED.

I did not manually go through and fix any aesthetic tab/spacing issues.

I have tested the above patch on DragonFly building and packaging
subversion and pkglint and their many dependencies.

I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I
have used IGNORE_RECOMMENDED for a long time). I have been an active user
of IGNORE_RECOMMENDED since it was available.

As suggested, I removed the documentation sentences suggesting bumping for
"security" issues.

As discussed on tech-pkg.

I will commit to revbump, pkglint, pkg_install, createbuildlink separately.

Note that if you use wip, it will fail!  I will commit to pkgsrc-wip
later (within day).
2006-04-06 06:21:32 +00:00
jlam
9c8b5ede43 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
2006-03-04 21:28:51 +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
8aa08f2b0b create both "netbsd" and "netbsdelf" config files -- the usage
in MACHINE_GNU_PLATFORM differs from port to port
2006-02-15 16:32:57 +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
dmcmahill
1c84929db2 remove ${WRKSRC} references from installed files. Bump PKGREVISION. 2005-06-15 01:50:58 +00:00
wiz
79e179da54 Fix obvious typo in variable name. 2005-05-19 15:41:18 +00:00
jwise
12f60615df Convert this package to use bsd.options.mk, with one option, `szip'.
This allows szip support (which uses a package with a no-commercial-use
license) to be disabled.
2005-05-19 15:39:04 +00:00
adam
abb989df86 Changes 1.6.4:
* Bug-fix release
2005-05-18 13:39:05 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
adam
e1bb8fd75c Fix buildlink3.mk to include archivers/szip 2005-03-30 18:09:47 +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
jlam
5e5ac5cef9 USE_BUILDLINK3 is a yes/no variable. 2004-11-13 21:28:27 +00:00