[133622] trunk/dports/science/netcdf

takeshi at macports.org takeshi at macports.org
Fri Mar 6 17:23:35 PST 2015


Revision: 133622
          https://trac.macports.org/changeset/133622
Author:   takeshi at macports.org
Date:     2015-03-06 17:23:34 -0800 (Fri, 06 Mar 2015)
Log Message:
-----------
netcdf: update to 4.3.3.1, closing #47040

Modified Paths:
--------------
    trunk/dports/science/netcdf/Portfile
    trunk/dports/science/netcdf/files/patch-configure.diff

Removed Paths:
-------------
    trunk/dports/science/netcdf/files/patch-mpiposix.diff

Modified: trunk/dports/science/netcdf/Portfile
===================================================================
--- trunk/dports/science/netcdf/Portfile	2015-03-06 23:56:53 UTC (rev 133621)
+++ trunk/dports/science/netcdf/Portfile	2015-03-07 01:23:34 UTC (rev 133622)
@@ -7,9 +7,8 @@
 
 mpi.enforce_variant         hdf5
 
-github.setup                Unidata netcdf-c 4.3.2 v
+github.setup                Unidata netcdf-c 4.3.3.1 v
 epoch                       2
-revision                    4
 name                        netcdf
 maintainers                 takeshi openmaintainer
 platforms                   darwin
@@ -24,9 +23,9 @@
 
 homepage                    http://www.unidata.ucar.edu/software/netcdf/
 
-checksums           md5     59611c95fe65237cc45c870a0d423fee \
-                    sha1    2a24a354059bad5b52dd1d61db4bcd36edd85d48 \
-                    rmd160  61a1434ff1f2c8ddf2ad178bf3eb519f7ba1558d
+checksums           md5     6f4668b51fe608409803f44abadab46e \
+                    sha1    b0e1e0e369f932c7eb2d039c6e7a472695182a2a \
+                    rmd160  6c6942e2cbf59cfc8f36bcef0fbe8fd890ac00d4
 
 compilers.choose            cc cpp
 mpi.setup
@@ -46,16 +45,6 @@
 destroot.destdir            prefix=${destroot}${prefix} \
                             MANDIR=\\\${prefix}/share/man
 
-pre-patch {
-    if {[mpi_variant_isset]} {
-        patchfiles-append   patch-mpiposix.diff
-    }
-}
-
-post-destroot {
-    file delete -force ${destroot}${prefix}/share/man/whatis.db
-}
-
 default_variants +netcdf4 +dap
 
 variant netcdf4 description {enable support for netcdf-4 API} {

Modified: trunk/dports/science/netcdf/files/patch-configure.diff
===================================================================
--- trunk/dports/science/netcdf/files/patch-configure.diff	2015-03-06 23:56:53 UTC (rev 133621)
+++ trunk/dports/science/netcdf/files/patch-configure.diff	2015-03-07 01:23:34 UTC (rev 133622)
@@ -1,6 +1,6 @@
---- configure.orig	2014-04-24 05:44:02.000000000 +0900
-+++ configure	2014-06-01 21:41:41.000000000 +0900
-@@ -17133,6 +17133,7 @@
+--- configure.orig	2015-02-28 02:55:34.000000000 +0900
++++ configure	2015-03-07 10:01:48.000000000 +0900
+@@ -17321,6 +17321,7 @@
  else
    USE_SZIP_TRUE='#'
    USE_SZIP_FALSE=

Deleted: trunk/dports/science/netcdf/files/patch-mpiposix.diff
===================================================================
--- trunk/dports/science/netcdf/files/patch-mpiposix.diff	2015-03-06 23:56:53 UTC (rev 133621)
+++ trunk/dports/science/netcdf/files/patch-mpiposix.diff	2015-03-07 01:23:34 UTC (rev 133622)
@@ -1,121 +0,0 @@
---- RELEASE_NOTES.md
-+++ RELEASE_NOTES.md
-@@ -9,6 +9,8 @@ This file contains a high-level description of this package's evolution. Release
- 
- ### 4.3.3-rc1 Released TBD
- 
-+* When the NC_MPIPOSIX flag is given for parallel I/O access and the HDF5 library does not have the MPI-POSIX VFD configured in, the NC_MPIPOSIX flag is transparently aliased to the NC_MPIIO flag within the netCDF-4 library.
-+
- ## 4.3.2 Released 2014-04-23
- 
- * As part of an ongoing project, the Doxygen-generated netcdf documentation has been reorganized.  The goal is to make the documentation easier to parse, and to eliminate redundant material.  This project is ongoing.
---- libsrc4/nc4file.c
-+++ libsrc4/nc4file.c
-@@ -308,12 +308,21 @@ nc4_create_file(const char *path, int cmode, MPI_Comm comm, MPI_Info info,
- 	 if (H5Pset_fapl_mpio(fapl_id, comm, info) < 0)
- 	    BAIL(NC_EPARINIT);
-       }
-+#ifdef USE_PARALLEL_POSIX
-       else /* MPI/POSIX */
-       {
- 	 LOG((4, "creating parallel file with MPI/posix"));
- 	 if (H5Pset_fapl_mpiposix(fapl_id, comm, 0) < 0)
- 	    BAIL(NC_EPARINIT);
-       }
-+#else /* USE_PARALLEL_POSIX */
-+      /* Should not happen! Code in NC4_create/NC4_open should alias the
-+       *        NC_MPIPOSIX flag to NC_MPIIO, if the MPI-POSIX VFD is not
-+       *        available in HDF5. -QAK
-+       */
-+      else /* MPI/POSIX */
-+         BAIL(NC_EPARINIT);
-+#endif /* USE_PARALLEL_POSIX */
- 
-       /* Keep copies of the MPI Comm & Info objects */
-       if (MPI_SUCCESS != MPI_Comm_dup(comm, &nc4_info->comm))
-@@ -465,6 +474,17 @@ NC4_create(const char* path, int cmode, size_t initialsz, int basepe,
-       )
-       return NC_EINVAL;
- 
-+#ifndef USE_PARALLEL_POSIX
-+/* If the HDF5 library has been compiled without the MPI-POSIX VFD, alias
-+ *      the NC_MPIPOSIX flag to NC_MPIIO. -QAK
-+ */
-+   if(cmode & NC_MPIPOSIX)
-+   {
-+      cmode &= ~NC_MPIPOSIX;
-+      cmode |= NC_MPIIO;
-+   }
-+#endif /* USE_PARALLEL_POSIX */
-+
-    cmode |= NC_NETCDF4;
- 
-    /* Apply default create format. */
-@@ -2168,12 +2188,21 @@ nc4_open_file(const char *path, int mode, MPI_Comm comm,
- 	 if (H5Pset_fapl_mpio(fapl_id, comm, info) < 0)
- 	    BAIL(NC_EPARINIT);
-       }
-+#ifdef USE_PARALLEL_POSIX
-       else /* MPI/POSIX */
-       {
- 	 LOG((4, "opening parallel file with MPI/posix"));
- 	 if (H5Pset_fapl_mpiposix(fapl_id, comm, 0) < 0)
- 	    BAIL(NC_EPARINIT);
-       }
-+#else /* USE_PARALLEL_POSIX */
-+      /* Should not happen! Code in NC4_create/NC4_open should alias the
-+       *        NC_MPIPOSIX flag to NC_MPIIO, if the MPI-POSIX VFD is not
-+       *        available in HDF5. -QAK
-+       */
-+      else /* MPI/POSIX */
-+         BAIL(NC_EPARINIT);
-+#endif /* USE_PARALLEL_POSIX */
- 
-       /* Keep copies of the MPI Comm & Info objects */
-       if (MPI_SUCCESS != MPI_Comm_dup(comm, &nc4_info->comm))
-@@ -2640,6 +2669,17 @@ NC4_open(const char *path, int mode, int basepe, size_t *chunksizehintp,
-        (mode & NC_MPIIO && mode & NC_MPIPOSIX))
-       return NC_EINVAL;
- 
-+#ifndef USE_PARALLEL_POSIX
-+/* If the HDF5 library has been compiled without the MPI-POSIX VFD, alias
-+ *      the NC_MPIPOSIX flag to NC_MPIIO. -QAK
-+ */
-+   if(mode & NC_MPIPOSIX)
-+   {
-+      mode &= ~NC_MPIPOSIX;
-+      mode |= NC_MPIIO;
-+   }
-+#endif /* USE_PARALLEL_POSIX */
-+
- 
-    /* Depending on the type of file, open it. */
- 
---- nc_test4/tst_nc4perf.c
-+++ nc_test4/tst_nc4perf.c
-@@ -244,6 +244,11 @@ int test_pio_4d(size_t cache_size, int facc_type, int access_flag, MPI_Comm comm
-    return 0;
- }
- 
-+/* Note: When the MPI-POSIX VFD is not compiled in to HDF5, the NC_MPIPOSIX
-+ *      flag will be aliased to the NC_MPIIO flag within the library, and
-+ *      therefore this test will exercise the aliasing, with the MPI-IO VFD,
-+ *      under that configuration. -QAK
-+ */
- #define NUM_MODES 2
- #define NUM_FACC 2
- #define NUM_CHUNK_COMBOS_2D 3
---- nc_test4/tst_parallel3.c
-+++ nc_test4/tst_parallel3.c
-@@ -129,6 +129,11 @@ int main(int argc, char **argv)
-    if (mpi_rank == 0)
-       SUMMARIZE_ERR;
- 
-+/* Note: When the MPI-POSIX VFD is not compiled in to HDF5, the NC_MPIPOSIX
-+ *      flag will be aliased to the NC_MPIIO flag within the library, and
-+ *      therefore this test will exercise the aliasing, with the MPI-IO VFD,
-+ *      under that configuration. -QAK
-+ */
-    if (mpi_rank == 0)
-       printf("*** Testing parallel IO for raw-data with MPIPOSIX-IO (driver)...");
-    facc_type = NC_NETCDF4|NC_MPIPOSIX;
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20150306/9a155832/attachment.html>


More information about the macports-changes mailing list