[netcdf-cxx] branch master updated (1e49ea2 -> e1589d4)

Sebastiaan Couwenberg sebastic at moszumanska.debian.org
Sat May 14 12:40:45 UTC 2016


This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository netcdf-cxx.

      from  1e49ea2   Set distribution to unstable.
       new  724b2cb   Bump Standards-Version to 3.9.8, no changes.
       new  ece9f85   Imported Upstream version 4.3.0
       new  8e93305   Merge tag 'upstream/4.3.0'
       new  228357b   New upstream release.
       new  6e69a27   Add docs/Makefile.in files list in copyright file.
       new  fdd1fa9   Update symbols for amd64.
       new  895057d   Repack upstream tarball to excluded autom4te.cache directory.
       new  9ef0fbc   Imported Upstream version 4.3.0+ds
       new  0278db2   Merge tag 'upstream/4.3.0+ds'
       new  1e251e6   New repacked upstream release.
       new  e1589d4   Set distribution to unstable.

The 11 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                        |    5 +
 .travis.yml                       |   23 +
 CMakeInstallation.cmake           |  123 ++
 CMakeLists.txt                    |  551 +++++++++
 CTestConfig.cmake.in              |   18 +
 CTestCustom.cmake                 |    8 +
 Makefile.am                       |    8 +-
 Makefile.in                       |   23 +-
 README.md                         |   78 ++
 RELEASE_NOTES.md                  |   20 +
 aclocal.m4                        |    6 +-
 cmake_uninstall.cmake.in          |   24 +
 config.sub                        |   13 +-
 configure                         |  324 ++++-
 configure.ac                      |   68 +-
 cxx4/CMakeLists.txt               |   47 +
 cxx4/Makefile.am                  |    9 +-
 cxx4/Makefile.in                  |   39 +-
 cxx4/NCDUMP                       |    9 -
 cxx4/NCGEN                        |    7 -
 cxx4/example1.cpp                 |   14 +-
 cxx4/ncAtt.cpp                    |   28 +-
 cxx4/ncAtt_keep.cpp               |  158 ---
 cxx4/ncCheck.cpp                  |  130 +-
 cxx4/ncCheck.h                    |   18 +-
 cxx4/ncCompoundType.cpp           |   26 +-
 cxx4/ncCompoundType.h             |   10 +-
 cxx4/ncDim.cpp                    |   17 +-
 cxx4/ncEnumType.cpp               |    4 +-
 cxx4/ncException.cpp              |  300 +++--
 cxx4/ncException.h                |  117 +-
 cxx4/ncFile.cpp                   |   73 +-
 cxx4/ncFile.h                     |   64 +-
 cxx4/ncGroup.cpp                  |  312 +++--
 cxx4/ncGroup.h                    |  237 ++--
 cxx4/ncOpaqueType.cpp             |    4 +-
 cxx4/ncType.cpp                   |   57 +-
 cxx4/ncType.h                     |   85 +-
 cxx4/ncVar.cpp                    |  605 ++++++----
 cxx4/ncVar.cpp_keep               | 1788 ----------------------------
 cxx4/ncVar.h                      |  707 ++++++-----
 cxx4/ncVar.h_keep                 |  788 ------------
 cxx4/ncVlenType.cpp               |    4 +-
 cxx4/test_att.cpp                 |  895 +++++++-------
 cxx4/test_classic.cpp             |   18 +-
 cxx4/test_dim.cpp                 |  277 ++---
 cxx4/test_group.cpp               |  285 ++---
 cxx4/test_open_close.cpp          |   57 +
 cxx4/test_type.cpp                |  373 +++---
 cxx4/test_type2.cpp               |   11 +-
 cxx4/test_type3.cpp               |   25 +-
 cxx4/test_type4.cpp               |   19 +-
 cxx4/test_type5.cpp               |   19 +-
 cxx4/test_utilities.h             |    4 +-
 cxx4/test_var.cpp                 |  921 +++++++-------
 cxx4/test_var2.cpp                |   59 +-
 debian/changelog                  |    9 +
 debian/control                    |    2 +-
 debian/copyright                  |    2 +
 debian/libnetcdf-c++4-1.symbols   |  870 ++++++++------
 debian/watch                      |    3 +-
 docs/CMakeLists.txt               |   31 +
 docs/Doxyfile.developer           | 2333 ++++++++++++++++++++++++++++++++++++
 docs/Doxyfile.in                  | 2373 +++++++++++++++++++++++++++++++++++++
 docs/DoxygenLayout.xml            |  184 +++
 docs/Makefile.am                  |   22 +
 docs/Makefile.in                  |  466 ++++++++
 docs/footer.html                  |   10 +
 docs/mainpage.md                  |   31 +
 docs/netcdf-50x50.png             |  Bin 0 -> 2059 bytes
 examples/CMakeLists.txt           |   16 +
 examples/Makefile.am              |    5 +-
 examples/Makefile.in              |   12 +-
 examples/simple_xy_wr_formats.cpp |   25 +-
 libnetcdf-cxx.settings.in         |   23 +
 ltmain.sh                         |   35 +-
 m4/libtool.m4                     |   79 +-
 missing                           |    4 +-
 ncxx4-config.in                   |    4 +-
 netcdf-cxx4.pc.in                 |    2 +-
 test-driver                       |   20 +-
 81 files changed, 10517 insertions(+), 5956 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 .travis.yml
 create mode 100644 CMakeInstallation.cmake
 create mode 100644 CMakeLists.txt
 create mode 100644 CTestConfig.cmake.in
 create mode 100644 CTestCustom.cmake
 create mode 100644 README.md
 create mode 100644 RELEASE_NOTES.md
 create mode 100644 cmake_uninstall.cmake.in
 create mode 100644 cxx4/CMakeLists.txt
 delete mode 100755 cxx4/NCDUMP
 delete mode 100755 cxx4/NCGEN
 delete mode 100644 cxx4/ncAtt_keep.cpp
 delete mode 100644 cxx4/ncVar.cpp_keep
 delete mode 100644 cxx4/ncVar.h_keep
 create mode 100644 cxx4/test_open_close.cpp
 create mode 100644 docs/CMakeLists.txt
 create mode 100755 docs/Doxyfile.developer
 create mode 100644 docs/Doxyfile.in
 create mode 100644 docs/DoxygenLayout.xml
 create mode 100644 docs/Makefile.am
 create mode 100644 docs/Makefile.in
 create mode 100755 docs/footer.html
 create mode 100644 docs/mainpage.md
 create mode 100644 docs/netcdf-50x50.png
 create mode 100644 examples/CMakeLists.txt
 create mode 100644 libnetcdf-cxx.settings.in

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/netcdf-cxx.git



More information about the Pkg-grass-devel mailing list