Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 65D1384D35 for ; Sat, 3 Jun 2023 03:38:53 +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 VLCldtsfUXkI for ; Sat, 3 Jun 2023 03:38:52 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8B69684D15 for ; Sat, 3 Jun 2023 03:38:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 849F7FA88; Sat, 3 Jun 2023 03:38:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1685763532151520" MIME-Version: 1.0 Date: Sat, 3 Jun 2023 03:38:52 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/devel/netcdf-cxx To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20230603033852.849F7FA88@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1685763532151520 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Sat Jun 3 03:38:52 UTC 2023 Modified Files: pkgsrc/devel/netcdf-cxx: Makefile PLIST distinfo Log Message: (devel/netcdf-cxx) Updated 4.2 to 4.3.1 \Brief Release notes file for the netcdf-cxx4 package. This file contains a high-level description of this package's evolution. Releases are in reverse chronological order (most recent first). Note that this file was created and maintained starting with the `netcdf-cxx4 4.3.0 release`. ## netCDF-CXX4 4.3.2 TBD ## netCDF-CXX4 v4.3.1 September 11, 2019 ### Requirements * netCDF-C 4.6.0 or greater ### Changes * [Enhancement] Added cmake support to distribution files created by `make dist`. * [Bug Fix] Added `ncFile::create()`, also added a new `open` function and constructor to allow for more flexibility when opening a file. See [GitHub #55](https://github.com/Unidata/netcdf-cxx4/issues/55) for more information. * [Enhancement] Addressed an issue reported with `Intel Compilers 17.0.0`. See [GitHub #41](https://github.com/Unidata/netcdf-cxx4/issues/41) for more information. * [Enhancement] Updated how `configure` determines information about the existing netCDF-C install. See [GitHub pull request #39](https://github.com/Unidata/netcdf-cxx4/pull/39) for more information. * Corrected an issue where cmake-based builds weren't generating `ncxx4-config`. See [GitHub pull request #37](https://github.com/Unidata/netcdf-cxx4/pull/37) for more information. ## netcdf-cxx4 v4.3.0 released May 13, 2016 * Fixed an issue where the tests were failing silently, and the underlying `NcType` class could not properly determine the type name or type size reliably. See [GitHub issue #30](https://github.com/Unidata/netcdf-cxx4/issues/30) for more information. * Changed `NCXX_ENABLE_DOXYGEN` option to an easier-to-remember `ENABLE_DOXYGEN`. * Added `--enable-doxygen`, `-DNCXX_ENABLE_DOXYGEN=ON` options to allow generation of netCDF-CXX4 documentation via doxygen using either `configure` or `cmake`, respectively. * Added `netcdf-cxx4` to the [Coverity Scan Dashboard](https://scan.coverity.com/projects/unidata-netcdf-cxx4?tab=overview). * Added `open` and `close` methods for NcFile. See [Github Pull Request #18](https://github.com/Unidata/netcdf-cxx4/pull/18) for more information. * Added `netcdf-cxx4` to travis-ci.org. See [https://travis-ci.org/Unidata/netcdf-cxx4](https://travis-ci.org/Unidata/netcdf-cxx4) for more details. * Added `NcCompoundType` methods `getMemberName` and `getMemberIndex`. See [Pull Request #19](https://github.com/Unidata/netcdf-cxx4/pull/19) for more details. * Added `cmake` support to `netcdf-cxx4`, which will allow us to create a `CDash` continuous integration dashboard similar to those created for the `netcdf-c` and `netcdf-fortran` projects. * Added a `travis-ci` configuration file, `.travis.yml`. * Created `RELEASE_NOTES.md`. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 pkgsrc/devel/netcdf-cxx/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/netcdf-cxx/PLIST cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/netcdf-cxx/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1685763532151520 Content-Disposition: inline Content-Length: 3034 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/netcdf-cxx/Makefile diff -u pkgsrc/devel/netcdf-cxx/Makefile:1.24 pkgsrc/devel/netcdf-cxx/Makefile:1.25 --- pkgsrc/devel/netcdf-cxx/Makefile:1.24 Wed Apr 19 08:08:18 2023 +++ pkgsrc/devel/netcdf-cxx/Makefile Sat Jun 3 03:38:52 2023 @@ -1,13 +1,14 @@ -# $NetBSD: Makefile,v 1.24 2023/04/19 08:08:18 adam Exp $ +# $NetBSD: Makefile,v 1.25 2023/06/03 03:38:52 mef Exp $ -DISTNAME= netcdf-cxx-4.2 -PKGREVISION= 22 +DISTNAME= netcdf-cxx4-4.3.1 +PKGNAME= ${DISTNAME:S/cxx4/cxx/} CATEGORIES= devel -MASTER_SITES= https://www.unidata.ucar.edu/downloads/netcdf/ftp/ +MASTER_SITES= https://downloads.unidata.ucar.edu/netcdf-cxx/4.3.1/ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://www.unidata.ucar.edu/software/netcdf/index.html -COMMENT= C++ support for NetCDF. +COMMENT= C++ support for NetCDF +#LICENSE= NetCDF copyright, See COPYRIGHT file USE_LANGUAGES= c c++ USE_LIBTOOL= yes Index: pkgsrc/devel/netcdf-cxx/PLIST diff -u pkgsrc/devel/netcdf-cxx/PLIST:1.1 pkgsrc/devel/netcdf-cxx/PLIST:1.2 --- pkgsrc/devel/netcdf-cxx/PLIST:1.1 Sun Aug 30 10:26:44 2015 +++ pkgsrc/devel/netcdf-cxx/PLIST Sat Jun 3 03:38:52 2023 @@ -1,6 +1,32 @@ -@comment $NetBSD: PLIST,v 1.1 2015/08/30 10:26:44 markd Exp $ -include/ncvalues.h -include/netcdf.hh -include/netcdfcpp.h -info/netcdf-cxx.info -lib/libnetcdf_c++.la +@comment $NetBSD: PLIST,v 1.2 2023/06/03 03:38:52 mef Exp $ +bin/ncxx4-config +include/ncAtt.h +include/ncByte.h +include/ncChar.h +include/ncCheck.h +include/ncCompoundType.h +include/ncDim.h +include/ncDouble.h +include/ncEnumType.h +include/ncException.h +include/ncFile.h +include/ncFloat.h +include/ncGroup.h +include/ncGroupAtt.h +include/ncInt.h +include/ncInt64.h +include/ncOpaqueType.h +include/ncShort.h +include/ncString.h +include/ncType.h +include/ncUbyte.h +include/ncUint.h +include/ncUint64.h +include/ncUshort.h +include/ncVar.h +include/ncVarAtt.h +include/ncVlenType.h +include/netcdf +lib/libh5bzip2.la +lib/libnetcdf_c++4.la +lib/pkgconfig/netcdf-cxx4.pc Index: pkgsrc/devel/netcdf-cxx/distinfo diff -u pkgsrc/devel/netcdf-cxx/distinfo:1.4 pkgsrc/devel/netcdf-cxx/distinfo:1.5 --- pkgsrc/devel/netcdf-cxx/distinfo:1.4 Tue Oct 26 10:15:43 2021 +++ pkgsrc/devel/netcdf-cxx/distinfo Sat Jun 3 03:38:52 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.4 2021/10/26 10:15:43 nia Exp $ +$NetBSD: distinfo,v 1.5 2023/06/03 03:38:52 mef Exp $ -BLAKE2s (netcdf-cxx-4.2.tar.gz) = 54b08e7c01fed8e0fb9465e70ce5f4401308ca36661b406661f1d06d95bd16f7 -SHA512 (netcdf-cxx-4.2.tar.gz) = 347ddbc518ac2186868d69417342e5146e285fc3a88f7c55edc33063f5c9a6647af7e512a03b9b6a8f67a448b85a1edcdde5df707b893f6a1527821cfd78e643 -Size (netcdf-cxx-4.2.tar.gz) = 703482 bytes +BLAKE2s (netcdf-cxx4-4.3.1.tar.gz) = 4558e0ef38dfe6a4ac399c445e2ede0fcafcded616419dcf8090a524ded89959 +SHA512 (netcdf-cxx4-4.3.1.tar.gz) = f5d9d26fb9f57430d0d681a9c7396bb0f03ed6446ac6fed51058dcc43690c02565da3f729f98b268b0bd923ca8b5b3cfa8340aca6a4f18f512c0c320ea20703f +Size (netcdf-cxx4-4.3.1.tar.gz) = 598335 bytes --_----------=_1685763532151520--