diff options
author | adam <adam> | 2013-09-01 09:56:41 +0000 |
---|---|---|
committer | adam <adam> | 2013-09-01 09:56:41 +0000 |
commit | 08c2c650e94649321bbeb43400e3621676ec027c (patch) | |
tree | 40f36e8c239aa9491ff23476e613cfb6fcd3fe23 /devel | |
parent | b9a54a4621bffd68c8c92f995646979b47a9cf80 (diff) | |
download | pkgsrc-08c2c650e94649321bbeb43400e3621676ec027c.tar.gz |
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.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/hdf5-c++/Makefile | 6 | ||||
-rw-r--r-- | devel/hdf5-c++/PLIST | 3 | ||||
-rw-r--r-- | devel/hdf5/Makefile | 3 | ||||
-rw-r--r-- | devel/hdf5/Makefile.common | 5 | ||||
-rw-r--r-- | devel/hdf5/PLIST | 14 | ||||
-rw-r--r-- | devel/hdf5/distinfo | 8 |
6 files changed, 23 insertions, 16 deletions
diff --git a/devel/hdf5-c++/Makefile b/devel/hdf5-c++/Makefile index 3fe66dd505a..7c643d24c69 100644 --- a/devel/hdf5-c++/Makefile +++ b/devel/hdf5-c++/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2013/04/06 11:39:25 rodent Exp $ +# $NetBSD: Makefile,v 1.3 2013/09/01 09:56:41 adam Exp $ -PKGNAME= hdf5-c++-${HDF5_VER} +PKGNAME= ${DISTNAME:S/-/-c++-/} COMMENT= Hierarchical Data Format (new generation) - C++ wrappers USE_LANGUAGES= c c++ @@ -31,7 +31,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/c++/examples/${f} \ ${DESTDIR}/${PREFIX}/share/examples/hdf5/c++/ .endfor -.for f in ptExampleFL.cpp ptExampleVL.cpp run-hlc++-ex.sh +.for f in ptExampleFL.cpp run-hlc++-ex.sh ${INSTALL_DATA} ${WRKSRC}/hl/c++/examples/${f} \ ${DESTDIR}/${PREFIX}/share/examples/hdf5/hl/c++/ .endfor diff --git a/devel/hdf5-c++/PLIST b/devel/hdf5-c++/PLIST index c54db50a527..0513514ca05 100644 --- a/devel/hdf5-c++/PLIST +++ b/devel/hdf5-c++/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2011/10/07 10:42:18 alnsn Exp $ +@comment $NetBSD: PLIST,v 1.2 2013/09/01 09:56:41 adam Exp $ bin/h5c++ include/H5AbstractDs.h include/H5ArrayType.h @@ -42,5 +42,4 @@ share/examples/hdf5/c++/readdata.cpp share/examples/hdf5/c++/run-c++-ex.sh share/examples/hdf5/c++/writedata.cpp share/examples/hdf5/hl/c++/ptExampleFL.cpp -share/examples/hdf5/hl/c++/ptExampleVL.cpp share/examples/hdf5/hl/c++/run-hlc++-ex.sh diff --git a/devel/hdf5/Makefile b/devel/hdf5/Makefile index 4b30c053ae3..a86655671fc 100644 --- a/devel/hdf5/Makefile +++ b/devel/hdf5/Makefile @@ -1,6 +1,5 @@ -# $NetBSD: Makefile,v 1.46 2012/12/09 00:07:38 adam Exp $ +# $NetBSD: Makefile,v 1.47 2013/09/01 09:56:41 adam Exp $ -PKGNAME= hdf5-${HDF5_VER} COMMENT= Hierarchical Data Format (new generation) INSTALLATION_DIRS= bin lib include diff --git a/devel/hdf5/Makefile.common b/devel/hdf5/Makefile.common index ea147366a17..7cd171bbecc 100644 --- a/devel/hdf5/Makefile.common +++ b/devel/hdf5/Makefile.common @@ -1,9 +1,8 @@ -# $NetBSD: Makefile.common,v 1.6 2013/04/09 14:25:40 adam Exp $ +# $NetBSD: Makefile.common,v 1.7 2013/09/01 09:56:41 adam Exp $ # used by devel/hdf5/Makefile # used by devel/hdf5-c++/Makefile -HDF5_VER= 1.8.10.1 -DISTNAME= hdf5-1.8.10-patch1 +DISTNAME= hdf5-1.8.11 CATEGORIES= devel MASTER_SITES= ftp://ftp.hdfgroup.org/HDF5/current/src/ EXTRACT_SUFX= .tar.bz2 diff --git a/devel/hdf5/PLIST b/devel/hdf5/PLIST index 9ae6a825720..2045a019c84 100644 --- a/devel/hdf5/PLIST +++ b/devel/hdf5/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.21 2012/10/27 08:54:48 asau Exp $ +@comment $NetBSD: PLIST,v 1.22 2013/09/01 09:56:41 adam Exp $ bin/gif2h5 bin/h52gif bin/h5cc @@ -19,6 +19,7 @@ bin/h5unjam include/H5ACpublic.h include/H5Apublic.h include/H5Cpublic.h +include/H5DOpublic.h include/H5DSpublic.h include/H5Dpublic.h include/H5Epubgen.h @@ -42,6 +43,7 @@ include/H5LTpublic.h include/H5Lpublic.h include/H5MMpublic.h include/H5Opublic.h +include/H5PLextern.h include/H5PTpublic.h include/H5Ppublic.h include/H5Rpublic.h @@ -66,18 +68,27 @@ share/doc/hdf5/RELEASE.txt share/examples/hdf5/README share/examples/hdf5/c/h5_attribute.c share/examples/hdf5/c/h5_chunk_read.c +share/examples/hdf5/c/h5_cmprss.c share/examples/hdf5/c/h5_compound.c +share/examples/hdf5/c/h5_crtatt.c +share/examples/hdf5/c/h5_crtdat.c +share/examples/hdf5/c/h5_crtgrp.c +share/examples/hdf5/c/h5_crtgrpar.c +share/examples/hdf5/c/h5_crtgrpd.c share/examples/hdf5/c/h5_drivers.c share/examples/hdf5/c/h5_elink_unix2win.c +share/examples/hdf5/c/h5_extend.c share/examples/hdf5/c/h5_extend_write.c share/examples/hdf5/c/h5_extlink.c share/examples/hdf5/c/h5_group.c share/examples/hdf5/c/h5_mount.c +share/examples/hdf5/c/h5_rdwt.c share/examples/hdf5/c/h5_read.c share/examples/hdf5/c/h5_ref2reg.c share/examples/hdf5/c/h5_reference.c share/examples/hdf5/c/h5_select.c share/examples/hdf5/c/h5_shared_mesg.c +share/examples/hdf5/c/h5_subset.c share/examples/hdf5/c/h5_write.c share/examples/hdf5/c/ph5example.c share/examples/hdf5/c/run-c-ex.sh @@ -103,7 +114,6 @@ share/examples/hdf5/hl/c/image24pixel.txt share/examples/hdf5/hl/c/image8.txt share/examples/hdf5/hl/c/pal_rgb.h share/examples/hdf5/hl/c/ptExampleFL.c -share/examples/hdf5/hl/c/ptExampleVL.c share/examples/hdf5/hl/c/run-hlc-ex.sh share/examples/hdf5/hl/run-hl-ex.sh share/examples/hdf5/run-all-ex.sh diff --git a/devel/hdf5/distinfo b/devel/hdf5/distinfo index 3e2d69c478a..f54c0592d97 100644 --- a/devel/hdf5/distinfo +++ b/devel/hdf5/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.30 2013/04/09 14:25:40 adam Exp $ +$NetBSD: distinfo,v 1.31 2013/09/01 09:56:41 adam Exp $ -SHA1 (hdf5-1.8.10-patch1.tar.bz2) = 458cb91496e313debd55d52a7f89459a5469cceb -RMD160 (hdf5-1.8.10-patch1.tar.bz2) = d28b78ddc812994d473a6872814bc4904a4dff91 -Size (hdf5-1.8.10-patch1.tar.bz2) = 6010792 bytes +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 (patch-c++_examples_Makefile.in) = 9ae14ae81abc9c858abb0d03b92e498b2113591c SHA1 (patch-c++_examples_run-c++-ex.sh.in) = 58c38b2ba5557cdae2c4fe1e72c6fa55e5606f1e SHA1 (patch-configure) = b8d6e6e53ecb5e5861fba88be1a203cedf6747b3 |