[ros-actionlib] branch master updated (041842f -> 82b6fe0)

Jochen Sprickerhof jspricke at moszumanska.debian.org
Sun Sep 24 05:48:41 UTC 2017


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

jspricke pushed a change to branch master
in repository ros-actionlib.

      from  041842f   add Multi-Arch according to hinter
      adds  9c3cb13   New upstream version 1.11.9
       new  e61c690   Updated version 1.11.9 from 'upstream/1.11.9'
       new  facb2c4   Update policy and debhelper versions
       new  efcf36b   Update watch file
       new  7bac392   Remove parallel (Default for debhelper 10)
      adds  7bfb5ff   New upstream version 1.11.10
       new  020fb45   Updated version 1.11.10 from 'upstream/1.11.10'
       new  2e9f697   Update standards version (no changes needed)
       new  82b6fe0   Update changelog for 1.11.10-1 release

The 7 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:
 CHANGELOG.rst                                      |  27 +
 debian/changelog                                   |  10 +
 debian/compat                                      |   2 +-
 debian/control                                     |   4 +-
 debian/rules                                       |   2 +-
 debian/watch                                       |  14 +-
 include/actionlib/action_definition.h              |  24 +-
 include/actionlib/client/action_client.h           | 130 +++--
 include/actionlib/client/client_goal_handle_imp.h  | 189 ++++---
 include/actionlib/client/client_helpers.h          | 156 +++---
 include/actionlib/client/comm_state.h              |  33 +-
 include/actionlib/client/comm_state_machine_imp.h  | 539 +++++++++---------
 include/actionlib/client/connection_monitor.h      |  39 +-
 include/actionlib/client/goal_manager_imp.h        |  59 +-
 include/actionlib/client/service_client.h          |  89 +--
 include/actionlib/client/service_client_imp.h      | 131 +++--
 include/actionlib/client/simple_action_client.h    | 319 ++++++-----
 .../actionlib/client/simple_client_goal_state.h    |  32 +-
 include/actionlib/client/simple_goal_state.h       |  33 +-
 include/actionlib/client/terminal_state.h          |  34 +-
 include/actionlib/client_goal_status.h             |  36 +-
 include/actionlib/decl.h                           |  15 +-
 include/actionlib/destruction_guard.h              | 163 +++---
 include/actionlib/enclosure_deleter.h              |  33 +-
 include/actionlib/goal_id_generator.h              |  20 +-
 include/actionlib/managed_list.h                   | 244 ++++----
 include/actionlib/one_shot_timer.h                 |  30 +-
 include/actionlib/server/action_server.h           | 235 ++++----
 include/actionlib/server/action_server_base.h      | 492 +++++++++--------
 include/actionlib/server/action_server_imp.h       | 349 ++++++------
 include/actionlib/server/handle_tracker_deleter.h  |  57 +-
 .../actionlib/server/handle_tracker_deleter_imp.h  |  48 +-
 include/actionlib/server/server_goal_handle.h      | 292 +++++-----
 include/actionlib/server/server_goal_handle_imp.h  | 612 +++++++++++----------
 include/actionlib/server/service_server.h          |  75 +--
 include/actionlib/server/service_server_imp.h      |  71 +--
 include/actionlib/server/simple_action_server.h    | 417 +++++++-------
 .../actionlib/server/simple_action_server_imp.h    | 606 ++++++++++----------
 include/actionlib/server/status_tracker.h          |  52 +-
 include/actionlib/server/status_tracker_imp.h      |  58 +-
 package.xml                                        |  30 +-
 src/actionlib/action_client.py                     |  25 +-
 src/actionlib/action_server.py                     |  32 +-
 src/actionlib/server_goal_handle.py                |   8 +-
 src/actionlib/simple_action_client.py              |  11 +-
 src/actionlib/simple_action_server.py              |  14 +-
 src/connection_monitor.cpp                         | 187 ++++---
 src/goal_id_generator.cpp                          |  11 +-
 test/action_client_destruction_test.cpp            |  10 +-
 test/add_two_ints_client.cpp                       |  14 +-
 test/add_two_ints_server.cpp                       |  12 +-
 test/destruction_guard_test.cpp                    |  16 +-
 test/exercise_simple_client.cpp                    |  47 +-
 test/exercise_simple_client.py                     |  60 +-
 test/mock_simple_server.py                         |  13 +-
 test/ref_server.cpp                                |  28 +-
 test/ref_server.py                                 | 110 ++--
 test/ref_server_test.launch                        |   2 +-
 test/ref_simple_server.py                          |  74 +--
 test/server_goal_handle_destruction.cpp            |  28 +-
 test/simple_action_server_deadlock_companion.py    |   1 +
 test/simple_client_allocator_test.cpp              |  11 +-
 test/simple_client_test.cpp                        |  19 +-
 test/simple_client_wait_test.cpp                   |  18 +-
 test/simple_execute_ref_server.cpp                 |  39 +-
 test/simple_python_client_test.py                  |   5 +-
 test/test_cpp_simple_client_cancel_crash.cpp       |   6 +-
 test/test_imports.py                               |  22 +-
 test/test_python_server.launch                     |   2 +-
 test/test_python_server2.launch                    |   3 +-
 test/test_python_server3.launch                    |   4 +-
 test/test_python_simple_client.launch              |   2 +-
 test/test_python_simple_server.launch              |   2 +-
 test/test_ref_action_server.py                     | 160 +++---
 test/test_ref_simple_action_server.py              |  20 +-
 test/test_server_components.py                     |  88 ++-
 test/test_simple_action_server_deadlock.py         |  26 +-
 ...est_simple_action_server_deadlock_python.launch |   2 +-
 tools/axclient.py                                  | 113 ++--
 tools/axserver.py                                  |  26 +-
 tools/dynamic_action.py                            |  81 +--
 tools/library.py                                   |  51 +-
 82 files changed, 3792 insertions(+), 3412 deletions(-)

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



More information about the debian-science-commits mailing list