Received: from mail.netbsd.org (mail.netbsd.org [149.20.53.66]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 33F5AA64B7 for ; Fri, 14 Feb 2014 09:09:46 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 539FA14A324; Fri, 14 Feb 2014 09:09:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C71CF14A2DC for ; Fri, 14 Feb 2014 09:09:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at NetBSD.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.NetBSD.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 7h9TUvfzXT_c for ; Fri, 14 Feb 2014 09:09:41 +0000 (UTC) Received: from cvs.netbsd.org (cvs.NetBSD.org [IPv6:2001:4f8:3:7:2e0:81ff:fe30:95bd]) by mail.netbsd.org (Postfix) with ESMTP id 1BFBF14A216 for ; Fri, 14 Feb 2014 09:09:40 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id C33F796; Fri, 14 Feb 2014 09:09:40 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Fri, 14 Feb 2014 09:09:40 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/hdf5 To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20140214090940.C33F796@cvs.netbsd.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk Module Name: pkgsrc Committed By: adam Date: Fri Feb 14 09:09:40 UTC 2014 Modified Files: pkgsrc/devel/hdf5: Makefile.common distinfo Log Message: 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) To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/hdf5/Makefile.common cvs rdiff -u -r1.31 -r1.32 pkgsrc/devel/hdf5/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.