[ignition-math2] branch master updated (9d9b179 -> c6bc9ab)

Jose Luis Rivero jrivero-guest at moszumanska.debian.org
Mon Feb 22 17:24:35 UTC 2016


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

jrivero-guest pushed a change to branch master
in repository ignition-math2.

      from  9d9b179   Fix pkgconfig package name
      adds  aaa433f   Imported Upstream version 2.3.0
       new  5f128cf   Merge tag 'upstream/2.3.0'
       new  1173147   Update changelog
       new  c6bc9ab   Remove obsolete patch

The 3 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:
 .hg_archival.txt                                   |    8 +-
 CMakeLists.txt                                     |  107 +-
 Changelog.md                                       |   36 +
 cmake/DefaultCFlags.cmake                          |    2 +-
 cmake/TestUtils.cmake                              |   16 +-
 cmake/Utils.cmake                                  |   14 +-
 cmake/config.hh.in                                 |    2 +-
 cmake/cpack_options.cmake.in                       |    8 +-
 cmake/ignition-math-config.cmake.in                |   41 +-
 debian/changelog                                   |    6 +
 debian/patches/0001-c++11-unconditional.patch      |   36 -
 debian/patches/series                              |    1 -
 examples/CMakeLists.txt                            |   10 +-
 include/ignition/math/CMakeLists.txt               |    6 +-
 include/ignition/math/Helpers.hh                   |   60 +-
 include/ignition/math/Line3.hh                     |  187 +
 include/ignition/math/MassMatrix3.hh               |  397 ++
 include/ignition/math/Matrix3.hh                   |   93 +-
 include/ignition/math/Matrix4.hh                   |   98 +-
 include/ignition/math/Quaternion.hh                |    2 +-
 include/ignition/math/Triangle3.hh                 |  285 ++
 include/ignition/math/Vector2.hh                   |  131 +-
 include/ignition/math/Vector3.hh                   |  114 +-
 include/ignition/math/Vector4.hh                   |  136 +-
 src/CMakeLists.txt                                 |   19 +-
 src/Helpers_TEST.cc                                |  124 +-
 src/Kmeans_TEST.cc                                 |    7 +-
 src/Line3_TEST.cc                                  |  126 +
 src/MassMatrix3_TEST.cc                            |  331 ++
 src/Matrix3_TEST.cc                                |   59 +
 src/Matrix4_TEST.cc                                |   53 +
 src/Rand_TEST.cc                                   |    2 +
 src/Triangle3_TEST.cc                              |  258 +
 src/Vector2_TEST.cc                                |  152 +
 src/Vector3_TEST.cc                                |  128 +-
 src/Vector4_TEST.cc                                |  195 +-
 test/gtest/cmake/internal_utils.cmake              |  227 -
 test/gtest/include/gtest/gtest-death-test.h        |  294 --
 test/gtest/include/gtest/gtest-message.h           |  250 -
 test/gtest/include/gtest/gtest-param-test.h        | 1421 ------
 test/gtest/include/gtest/gtest-param-test.h.pump   |  487 --
 test/gtest/include/gtest/gtest-printers.h          |  855 ----
 test/gtest/include/gtest/gtest-spi.h               |  232 -
 test/gtest/include/gtest/gtest-test-part.h         |  179 -
 test/gtest/include/gtest/gtest-typed-test.h        |  259 -
 test/gtest/include/gtest/gtest.h                   | 2291 ---------
 test/gtest/include/gtest/gtest_pred_impl.h         |  358 --
 test/gtest/include/gtest/gtest_prod.h              |   58 -
 .../gtest/internal/gtest-death-test-internal.h     |  319 --
 test/gtest/include/gtest/internal/gtest-filepath.h |  206 -
 test/gtest/include/gtest/internal/gtest-internal.h | 1158 -----
 .../include/gtest/internal/gtest-linked_ptr.h      |  233 -
 .../gtest/internal/gtest-param-util-generated.h    | 5143 --------------------
 .../internal/gtest-param-util-generated.h.pump     |  301 --
 .../include/gtest/internal/gtest-param-util.h      |  619 ---
 test/gtest/include/gtest/internal/gtest-port.h     | 1947 --------
 test/gtest/include/gtest/internal/gtest-string.h   |  167 -
 test/gtest/include/gtest/internal/gtest-tuple.h    | 1012 ----
 .../include/gtest/internal/gtest-tuple.h.pump      |  339 --
 .../gtest/include/gtest/internal/gtest-type-util.h | 3331 -------------
 .../include/gtest/internal/gtest-type-util.h.pump  |  297 --
 test/gtest/src/gtest-all.cc                        |   48 -
 test/gtest/src/gtest-death-test.cc                 | 1344 -----
 test/gtest/src/gtest-filepath.cc                   |  382 --
 test/gtest/src/gtest-internal-inl.h                | 1218 -----
 test/gtest/src/gtest-port.cc                       |  805 ---
 test/gtest/src/gtest-printers.cc                   |  363 --
 test/gtest/src/gtest-test-part.cc                  |  110 -
 test/gtest/src/gtest-typed-test.cc                 |  110 -
 test/gtest/src/gtest.cc                            | 5015 -------------------
 test/gtest/src/gtest_main.cc                       |   38 -
 tools/check_test_ran.py                            |   36 +-
 72 files changed, 2987 insertions(+), 31715 deletions(-)
 create mode 100644 Changelog.md
 delete mode 100644 debian/patches/0001-c++11-unconditional.patch
 create mode 100644 include/ignition/math/MassMatrix3.hh
 create mode 100644 include/ignition/math/Triangle3.hh
 create mode 100644 src/MassMatrix3_TEST.cc
 create mode 100644 src/Triangle3_TEST.cc
 delete mode 100644 test/gtest/cmake/internal_utils.cmake
 delete mode 100644 test/gtest/include/gtest/gtest-death-test.h
 delete mode 100644 test/gtest/include/gtest/gtest-message.h
 delete mode 100644 test/gtest/include/gtest/gtest-param-test.h
 delete mode 100644 test/gtest/include/gtest/gtest-param-test.h.pump
 delete mode 100644 test/gtest/include/gtest/gtest-printers.h
 delete mode 100644 test/gtest/include/gtest/gtest-spi.h
 delete mode 100644 test/gtest/include/gtest/gtest-test-part.h
 delete mode 100644 test/gtest/include/gtest/gtest-typed-test.h
 delete mode 100644 test/gtest/include/gtest/gtest.h
 delete mode 100644 test/gtest/include/gtest/gtest_pred_impl.h
 delete mode 100644 test/gtest/include/gtest/gtest_prod.h
 delete mode 100644 test/gtest/include/gtest/internal/gtest-death-test-internal.h
 delete mode 100644 test/gtest/include/gtest/internal/gtest-filepath.h
 delete mode 100644 test/gtest/include/gtest/internal/gtest-internal.h
 delete mode 100644 test/gtest/include/gtest/internal/gtest-linked_ptr.h
 delete mode 100644 test/gtest/include/gtest/internal/gtest-param-util-generated.h
 delete mode 100644 test/gtest/include/gtest/internal/gtest-param-util-generated.h.pump
 delete mode 100644 test/gtest/include/gtest/internal/gtest-param-util.h
 delete mode 100644 test/gtest/include/gtest/internal/gtest-port.h
 delete mode 100644 test/gtest/include/gtest/internal/gtest-string.h
 delete mode 100644 test/gtest/include/gtest/internal/gtest-tuple.h
 delete mode 100644 test/gtest/include/gtest/internal/gtest-tuple.h.pump
 delete mode 100644 test/gtest/include/gtest/internal/gtest-type-util.h
 delete mode 100644 test/gtest/include/gtest/internal/gtest-type-util.h.pump
 delete mode 100644 test/gtest/src/gtest-all.cc
 delete mode 100644 test/gtest/src/gtest-death-test.cc
 delete mode 100644 test/gtest/src/gtest-filepath.cc
 delete mode 100644 test/gtest/src/gtest-internal-inl.h
 delete mode 100644 test/gtest/src/gtest-port.cc
 delete mode 100644 test/gtest/src/gtest-printers.cc
 delete mode 100644 test/gtest/src/gtest-test-part.cc
 delete mode 100644 test/gtest/src/gtest-typed-test.cc
 delete mode 100644 test/gtest/src/gtest.cc
 delete mode 100644 test/gtest/src/gtest_main.cc

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/ignition-math2.git



More information about the debian-science-commits mailing list