Started by upstream project "Ksrc_uX__strands_executive_msgs__ubuntu_xenial__source" build number 4 originally caused by: Started by upstream project "Krel_trigger-jobs" build number 42951 originally caused by: Started by user Admin Started by upstream project "Kbin_uX64__mongodb_store_msgs__ubuntu_xenial_amd64__binary" build number 5 originally caused by: Started by upstream project "Ksrc_uX__mongodb_store_msgs__ubuntu_xenial__source" build number 5 originally caused by: Started by upstream project "Krel_trigger-jobs" build number 42951 originally caused by: Started by user Admin Building remotely on build client 1 (slave buildslave indigo_devel_default) in workspace /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary [ssh-agent] Looking for ssh-agent implementation... [ssh-agent] Exec ssh-agent (binary ssh-agent on a remote machine) $ ssh-agent SSH_AUTH_SOCK=/tmp/ssh-GBlUQo7lWiKT/agent.9338 SSH_AGENT_PID=9340 [ssh-agent] Started. $ ssh-add /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary@tmp/private_key_148344922415974273.key Identity added: /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary@tmp/private_key_148344922415974273.key (/home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary@tmp/private_key_148344922415974273.key) [ssh-agent] Using credentials jenkins-slave # BEGIN SECTION: Check upstream projects Verify that no recursive upstream project is broken: - 'Kbin_uX64__mongodb_store_msgs__ubuntu_xenial_amd64__binary' build '5' has result 'SUCCESS' - 'Ksrc_uX__mongodb_store_msgs__ubuntu_xenial__source' build '5' has result 'SUCCESS' - 'Ksrc_uX__strands_executive_msgs__ubuntu_xenial__source' build '4' has result 'SUCCESS' All recursive upstream projects are (un)stable # END SECTION # BEGIN SECTION: Check free disk space Usable disk space = 46125473792 bytes Free space threshold = 5368709120 bytes # END SECTION [Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson471887725023032522.sh + echo # BEGIN SECTION: docker version # BEGIN SECTION: docker version + docker version Client: Version: 1.9.1 API version: 1.21 Go version: go1.4.2 Git commit: a34a1d5 Built: Fri Nov 20 13:12:04 UTC 2015 OS/Arch: linux/amd64 Server: Version: 1.9.1 API version: 1.21 Go version: go1.4.2 Git commit: a34a1d5 Built: Fri Nov 20 13:12:04 UTC 2015 OS/Arch: linux/amd64 + echo # END SECTION # END SECTION + echo # BEGIN SECTION: docker info # BEGIN SECTION: docker info + docker info Containers: 312 Images: 2575 Server Version: 1.9.1 Storage Driver: aufs Root Dir: /var/lib/docker/aufs Backing Filesystem: extfs Dirs: 3591 Dirperm1 Supported: false Execution Driver: native-0.2 Logging Driver: json-file Kernel Version: 3.13.0-29-generic Operating System: Ubuntu 14.04 LTS CPUs: 2 Total Memory: 3.861 GiB Name: lcas-buildfarm-slave-2 ID: LZSS:PF7G:CREH:TEQW:FH57:3M6D:KCSS:ODQY:SPHA:ND7A:FHYG:PNDE WARNING: No swap limit support + echo # END SECTION # END SECTION [Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson5417682334802022338.sh + echo # BEGIN SECTION: Check docker status # BEGIN SECTION: Check docker status + echo Testing trivial docker invocation... Testing trivial docker invocation... + docker run --rm ubuntu:xenial true + echo 'docker run' returned 0 'docker run' returned 0 docker seems operational, continuing [Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson4238747943977346455.sh + echo # END SECTION # END SECTION [Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson6456004791772391585.sh + echo # BEGIN SECTION: Embed wrapper scripts # BEGIN SECTION: Embed wrapper scripts + rm -fr wrapper_scripts + mkdir wrapper_scripts + printf #!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the "License");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an "AS IS" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert "Command '%%s' not implemented" %% command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print("Reinvoke 'git %%s' (%%d/%%d) after sleeping %%s seconds" %%\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print("Invoking '%%s'" %% ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main()) + echo # END SECTION # END SECTION [Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson543194666753761713.sh + echo # BEGIN SECTION: Clone ros_buildfarm # BEGIN SECTION: Clone ros_buildfarm + rm -fr ros_buildfarm + python3 -u wrapper_scripts/git.py clone --depth 1 -b master https://github.com/lcas/ros_buildfarm.git ros_buildfarm Invoking 'git clone --depth 1 -b master https://github.com/lcas/ros_buildfarm.git ros_buildfarm' Cloning into 'ros_buildfarm'... + git -C ros_buildfarm --no-pager log -n 1 commit aca918fa40d6391d4894b39d8d3477d2e6e0a390 Author: Marc Hanheide Date: Thu Aug 2 12:13:42 2018 +0100 added cleanup + rm -fr ros_buildfarm/.git + rm -fr ros_buildfarm/doc + echo # END SECTION # END SECTION [Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson6762594952210008107.sh + echo # BEGIN SECTION: Write PGP repository keys # BEGIN SECTION: Write PGP repository keys + mkdir -p /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/keys + rm -fr /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/keys/* + echo -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.11 (GNU/Linux) mQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn MsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf xcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw kPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv /o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh EBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg KFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX yQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI 7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy JjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T Yh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++ Cut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ cvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM hU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3 IWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm Z4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK 7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb oRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC AAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U NTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0 ikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU M7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N l9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ Chb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ== =nFcN -----END PGP PUBLIC KEY BLOCK----- + echo -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1 mQGiBEsy5KkRBADJbDSISoamRM5AA20bfAeBuhhaI+VaiCVcxw90sq9AI5lIc42F WzM2acm8yplqWiehAqOLKd+iIrqNGZ+VavZEPTx7o06UZUMRoPBiTFaCwrQ5avKz lt7ij8PRMVWNrJ7A2lDYXfFQVV1o3Xo06qVnv0KLLUmiur0LBu4H/oTH3wCgt+/I D3LUKaMJsc77KwFBTjHB0EsD/26Z2Ud12f3urSNyN6VMWnP3rz6xsmtY4Qsmkbnr JuduxCQBZv6bX1Cr2ulXkv0fFOr+s5OyUv7zyCPbxiJFh3Br7fJGb0b5/M208KPe giITY9hMh/aUbKjXCPoOXPxSL6SWOWV8taR6903EFyLBN0qno/kXIBKnVqBZobgn jIEPA/0fTnxtZtE7EpirGQMF2caJfv7/LCgXmRs9xAhgbE0/caoa1tnc79uaHmLZ FtbGFoAO31YNYM/IUHtmabbGdvZ4oYUwDhjBevVvC7aI+XhuNGK5mU8qCLLSEUOl CUr6BJq/0iFmjwjmwk9idZEYhqSNy2OoYJbq45rbHfbdKLEVrbQeUk9TIEJ1aWxk ZXIgPHJvc2J1aWxkQHJvcy5vcmc+iGAEExECACAFAksy5KkCGwMGCwkIBwMCBBUC CAMEFgIDAQIeAQIXgAAKCRBVI7rusB+hFmk7AJ0XsLp05KA8l3YzAumZfjSN04MZ jQCfQHfp4aQUXdOCUtetVo0QZUX3IuO5Ag0ESzLkrhAIAOCuSC83VXYWf8gOMSzd xwpsH/uLV9Wze2LGnajsJLjEOhcsz2BHfxqNXhYaE9aQaodPCpbUAkPq8tLbpXy0 SWRCx0F5RcplXx5vIWbP6TlfPbRpK70w7IWd6vsNrjwEHjlhOLcNcj42sp5pgx4b dceK06k5Ml2hYovPnD9o2TYgjOqg5FHZ2g1J0103n/66bN/hZnpLaZJYQiPWCyq6 K0565i1k2Y7hgWB/OXqwaqCehqmLTvpyQGzE1UJvKLuYU+T+4hBnSPbT3KIi5fCz lIwvxijOMcfbkLhzYQXcU0Rd1VItcd5nmPL4z97jBxzuhkgxXpGR4WGKhvsA2Z9Y UtsAAwYH/3Bf44bTpD9bVADUdab3e7zm8iHfh9K/a83mIgDB7mHV6WuemQVTf/1d eu4mI5WtpbOCoucybGfjGIIAcSxwIx6VfC7HSp4J51bOpHhbdDffUEk6QVsZjwoF yn3W9W3ZVeTI+ch/Qoo5a98SnmdjN8eXI/qCuiXOHc6rXDXc2R0iox/1EAS8xGVd cYZe7IWBO2CjCknyhLrWxZHoy+i1GCZ9KvPF/Ef2dmLhCydT73ZlumsY8N5vm76Q ul1G7f8LNbnMgXQafRkPffrAXSVhGY3Z2IiBwFNgxcKTq479l7yedYRGeU1A+SYI YmRFWHXt3rTkMlQSpxCsB0fAYfrwEqqISQQYEQIACQUCSzLkrgIbDAAKCRBVI7ru sB+hFpryAJ9qNz3h3ijt9TkAV0CHufsPT6Cl4gCglfg7tJn2lsSF3HTpoDDO1Fgg x9o= =AGYp -----END PGP PUBLIC KEY BLOCK----- + echo # END SECTION # END SECTION [Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson8760303191508719013.sh + rm -fr /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/docker_generating_docker + mkdir -p /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/docker_generating_docker + sleep 1 + python3 -u /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 9494 --cid-file /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/docker_generating_docker/docker.cid + echo # BEGIN SECTION: Generate Dockerfile - binarydeb task # BEGIN SECTION: Generate Dockerfile - binarydeb task + export TZ=GMT+00 + export PYTHONPATH=/home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/ros_buildfarm: + python3 -u /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/ros_buildfarm/scripts/release/run_binarydeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml kinetic strands_executive_msgs ubuntu xenial amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/keys/0.key /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/keys/1.key --target-repository http://10.210.9.154/ubuntu/building --binarydeb-dir /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/binarydeb --dockerfile-dir /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/docker_generating_docker --append-timestamp Using the following distribution repositories: http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/keys/0.key) http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/keys/1.key) Generating Dockerfile '/home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/docker_generating_docker/Dockerfile': # generated from release/binarydeb_create_task.Dockerfile.em FROM ubuntu:xenial VOLUME ["/var/cache/apt/archives"] ENV DEBIAN_FRONTEND noninteractive RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen RUN locale-gen en_US.UTF-8 ENV LANG en_US.UTF-8 ENV TZ GMT+00 RUN useradd -u 1002 -m buildfarm RUN mkdir /tmp/keys RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQGiBEsy5KkRBADJbDSISoamRM5AA20bfAeBuhhaI+VaiCVcxw90sq9AI5lIc42F\nWzM2acm8yplqWiehAqOLKd+iIrqNGZ+VavZEPTx7o06UZUMRoPBiTFaCwrQ5avKz\nlt7ij8PRMVWNrJ7A2lDYXfFQVV1o3Xo06qVnv0KLLUmiur0LBu4H/oTH3wCgt+/I\nD3LUKaMJsc77KwFBTjHB0EsD/26Z2Ud12f3urSNyN6VMWnP3rz6xsmtY4Qsmkbnr\nJuduxCQBZv6bX1Cr2ulXkv0fFOr+s5OyUv7zyCPbxiJFh3Br7fJGb0b5/M208KPe\ngiITY9hMh/aUbKjXCPoOXPxSL6SWOWV8taR6903EFyLBN0qno/kXIBKnVqBZobgn\njIEPA/0fTnxtZtE7EpirGQMF2caJfv7/LCgXmRs9xAhgbE0/caoa1tnc79uaHmLZ\nFtbGFoAO31YNYM/IUHtmabbGdvZ4oYUwDhjBevVvC7aI+XhuNGK5mU8qCLLSEUOl\nCUr6BJq/0iFmjwjmwk9idZEYhqSNy2OoYJbq45rbHfbdKLEVrbQeUk9TIEJ1aWxk\nZXIgPHJvc2J1aWxkQHJvcy5vcmc+iGAEExECACAFAksy5KkCGwMGCwkIBwMCBBUC\nCAMEFgIDAQIeAQIXgAAKCRBVI7rusB+hFmk7AJ0XsLp05KA8l3YzAumZfjSN04MZ\njQCfQHfp4aQUXdOCUtetVo0QZUX3IuO5Ag0ESzLkrhAIAOCuSC83VXYWf8gOMSzd\nxwpsH/uLV9Wze2LGnajsJLjEOhcsz2BHfxqNXhYaE9aQaodPCpbUAkPq8tLbpXy0\nSWRCx0F5RcplXx5vIWbP6TlfPbRpK70w7IWd6vsNrjwEHjlhOLcNcj42sp5pgx4b\ndceK06k5Ml2hYovPnD9o2TYgjOqg5FHZ2g1J0103n/66bN/hZnpLaZJYQiPWCyq6\nK0565i1k2Y7hgWB/OXqwaqCehqmLTvpyQGzE1UJvKLuYU+T+4hBnSPbT3KIi5fCz\nlIwvxijOMcfbkLhzYQXcU0Rd1VItcd5nmPL4z97jBxzuhkgxXpGR4WGKhvsA2Z9Y\nUtsAAwYH/3Bf44bTpD9bVADUdab3e7zm8iHfh9K/a83mIgDB7mHV6WuemQVTf/1d\neu4mI5WtpbOCoucybGfjGIIAcSxwIx6VfC7HSp4J51bOpHhbdDffUEk6QVsZjwoF\nyn3W9W3ZVeTI+ch/Qoo5a98SnmdjN8eXI/qCuiXOHc6rXDXc2R0iox/1EAS8xGVd\ncYZe7IWBO2CjCknyhLrWxZHoy+i1GCZ9KvPF/Ef2dmLhCydT73ZlumsY8N5vm76Q\nul1G7f8LNbnMgXQafRkPffrAXSVhGY3Z2IiBwFNgxcKTq479l7yedYRGeU1A+SYI\nYmRFWHXt3rTkMlQSpxCsB0fAYfrwEqqISQQYEQIACQUCSzLkrgIbDAAKCRBVI7ru\nsB+hFpryAJ9qNz3h3ijt9TkAV0CHufsPT6Cl4gCglfg7tJn2lsSF3HTpoDDO1Fgg\nx9o=\n=AGYp\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN echo deb-src http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && (echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list && echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) || (echo "deb http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list && echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) RUN mkdir /tmp/wrapper_scripts RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py # automatic invalidation once every day RUN echo "2018-09-10 (+0000)" RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y devscripts dpkg-dev python3-apt python3-catkin-pkg-modules python3-empy python3-rosdistro-modules python3-yaml # always invalidate to actually have the latest apt repo state RUN echo "2018-09-10 22:05:31 +0000" RUN python3 -u /tmp/wrapper_scripts/apt.py update USER buildfarm ENTRYPOINT ["sh", "-c"] CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/get_sourcedeb.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml kinetic strands_executive_msgs --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py kinetic strands_executive_msgs --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/create_binarydeb_task_generator.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml kinetic strands_executive_msgs ubuntu xenial amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /tmp/keys/0.key /tmp/keys/1.key --binarydeb-dir /tmp/binarydeb --dockerfile-dir /tmp/docker_build_binarydeb"] + echo # END SECTION # END SECTION + echo # BEGIN SECTION: Build Dockerfile - binarydeb task # BEGIN SECTION: Build Dockerfile - binarydeb task + cd /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/docker_generating_docker + python3 -u /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py Get base image name from Dockerfile 'Dockerfile': ubuntu:xenial Check docker base image for updates: docker pull ubuntu:xenial xenial: Pulling from library/ubuntu Digest: sha256:f53ee6c26fed293a1faaad6cb83713ce9289e4a38a9ea7e0d78c156fa1022e75 Status: Image is up to date for ubuntu:xenial + docker build --force-rm -t binarydeb_task_generation.kinetic_ubuntu_xenial_amd64_strands_executive_msgs . Sending build context to Docker daemon 18.94 kB Sending build context to Docker daemon 18.94 kB Step 1 : FROM ubuntu:xenial ---> 2b9623518fa2 Step 2 : VOLUME /var/cache/apt/archives ---> Using cache ---> 74ba1b76bf6e Step 3 : ENV DEBIAN_FRONTEND noninteractive ---> Using cache ---> 2493ca106c60 Step 4 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done ---> Using cache ---> 885388895e3f Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen ---> Using cache ---> 40393b666211 Step 6 : RUN locale-gen en_US.UTF-8 ---> Using cache ---> e52d5a0e19f6 Step 7 : ENV LANG en_US.UTF-8 ---> Using cache ---> 2a9c5e2d8565 Step 8 : ENV TZ GMT+00 ---> Using cache ---> be900094f1df Step 9 : RUN useradd -u 1002 -m buildfarm ---> Using cache ---> 653b534e961f Step 10 : RUN mkdir /tmp/keys ---> Using cache ---> e4ea2a03c969 Step 11 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key ---> Using cache ---> d89322b323f7 Step 12 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQGiBEsy5KkRBADJbDSISoamRM5AA20bfAeBuhhaI+VaiCVcxw90sq9AI5lIc42F\nWzM2acm8yplqWiehAqOLKd+iIrqNGZ+VavZEPTx7o06UZUMRoPBiTFaCwrQ5avKz\nlt7ij8PRMVWNrJ7A2lDYXfFQVV1o3Xo06qVnv0KLLUmiur0LBu4H/oTH3wCgt+/I\nD3LUKaMJsc77KwFBTjHB0EsD/26Z2Ud12f3urSNyN6VMWnP3rz6xsmtY4Qsmkbnr\nJuduxCQBZv6bX1Cr2ulXkv0fFOr+s5OyUv7zyCPbxiJFh3Br7fJGb0b5/M208KPe\ngiITY9hMh/aUbKjXCPoOXPxSL6SWOWV8taR6903EFyLBN0qno/kXIBKnVqBZobgn\njIEPA/0fTnxtZtE7EpirGQMF2caJfv7/LCgXmRs9xAhgbE0/caoa1tnc79uaHmLZ\nFtbGFoAO31YNYM/IUHtmabbGdvZ4oYUwDhjBevVvC7aI+XhuNGK5mU8qCLLSEUOl\nCUr6BJq/0iFmjwjmwk9idZEYhqSNy2OoYJbq45rbHfbdKLEVrbQeUk9TIEJ1aWxk\nZXIgPHJvc2J1aWxkQHJvcy5vcmc+iGAEExECACAFAksy5KkCGwMGCwkIBwMCBBUC\nCAMEFgIDAQIeAQIXgAAKCRBVI7rusB+hFmk7AJ0XsLp05KA8l3YzAumZfjSN04MZ\njQCfQHfp4aQUXdOCUtetVo0QZUX3IuO5Ag0ESzLkrhAIAOCuSC83VXYWf8gOMSzd\nxwpsH/uLV9Wze2LGnajsJLjEOhcsz2BHfxqNXhYaE9aQaodPCpbUAkPq8tLbpXy0\nSWRCx0F5RcplXx5vIWbP6TlfPbRpK70w7IWd6vsNrjwEHjlhOLcNcj42sp5pgx4b\ndceK06k5Ml2hYovPnD9o2TYgjOqg5FHZ2g1J0103n/66bN/hZnpLaZJYQiPWCyq6\nK0565i1k2Y7hgWB/OXqwaqCehqmLTvpyQGzE1UJvKLuYU+T+4hBnSPbT3KIi5fCz\nlIwvxijOMcfbkLhzYQXcU0Rd1VItcd5nmPL4z97jBxzuhkgxXpGR4WGKhvsA2Z9Y\nUtsAAwYH/3Bf44bTpD9bVADUdab3e7zm8iHfh9K/a83mIgDB7mHV6WuemQVTf/1d\neu4mI5WtpbOCoucybGfjGIIAcSxwIx6VfC7HSp4J51bOpHhbdDffUEk6QVsZjwoF\nyn3W9W3ZVeTI+ch/Qoo5a98SnmdjN8eXI/qCuiXOHc6rXDXc2R0iox/1EAS8xGVd\ncYZe7IWBO2CjCknyhLrWxZHoy+i1GCZ9KvPF/Ef2dmLhCydT73ZlumsY8N5vm76Q\nul1G7f8LNbnMgXQafRkPffrAXSVhGY3Z2IiBwFNgxcKTq479l7yedYRGeU1A+SYI\nYmRFWHXt3rTkMlQSpxCsB0fAYfrwEqqISQQYEQIACQUCSzLkrgIbDAAKCRBVI7ru\nsB+hFpryAJ9qNz3h3ijt9TkAV0CHufsPT6Cl4gCglfg7tJn2lsSF3HTpoDDO1Fgg\nx9o=\n=AGYp\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key ---> Using cache ---> 0aca65174b48 Step 13 : RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> 068fa303acf0 Step 14 : RUN echo deb-src http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> c121a851babf Step 15 : RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> 3e19efbd1048 Step 16 : RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && (echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list && echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) || (echo "deb http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list && echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) ---> Using cache ---> e4c20c1993e1 Step 17 : RUN mkdir /tmp/wrapper_scripts ---> Using cache ---> 7d980225418b Step 18 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py ---> Using cache ---> ebcd8290684a Step 19 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py ---> Using cache ---> 899986f02163 Step 20 : RUN echo "2018-09-10 (+0000)" ---> Using cache ---> b5bb7b1c10f7 Step 21 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done ---> Using cache ---> fc0f8241b697 Step 22 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y devscripts dpkg-dev python3-apt python3-catkin-pkg-modules python3-empy python3-rosdistro-modules python3-yaml ---> Using cache ---> 803f613fd96a Step 23 : RUN echo "2018-09-10 22:05:31 +0000" ---> Running in 8d6a51eba803 2018-09-10 22:05:31 +0000 ---> b2ff592fb026 Removing intermediate container 8d6a51eba803 Step 24 : RUN python3 -u /tmp/wrapper_scripts/apt.py update ---> Running in 9dba3161516a Invoking 'apt-get update' Get:1 http://10.210.9.154/ubuntu/building xenial InRelease [2,856 B] Get:2 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB] Hit:3 http://archive.ubuntu.com/ubuntu xenial InRelease Get:4 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB] Get:5 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB] Get:6 http://10.210.9.154/ubuntu/building xenial/main Sources [137 kB] Get:7 http://archive.ubuntu.com/ubuntu xenial-security InRelease [107 kB] Get:8 http://10.210.9.154/ubuntu/building xenial/main amd64 Packages [147 kB] Hit:9 http://packages.ros.org/ros/ubuntu xenial InRelease Get:10 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [707 kB] Get:11 http://archive.ubuntu.com/ubuntu xenial-updates/universe Sources [278 kB] Get:12 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [1,097 kB] Get:13 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [879 kB] Fetched 3,676 kB in 2s (1,605 kB/s) Reading package lists... W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: http://10.210.9.154/ubuntu/building/dists/xenial/InRelease: Signature by key 0379D44201EF3A91028107A8DCD74318AED39854 uses weak digest algorithm (SHA1) W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 ---> 43be63c77a2e Removing intermediate container 9dba3161516a Step 25 : USER buildfarm ---> Running in f0cb063055f2 ---> 20111d56a097 Removing intermediate container f0cb063055f2 Step 26 : ENTRYPOINT sh -c ---> Running in 08c86c149ef8 ---> 9aece025e71c Removing intermediate container 08c86c149ef8 Step 27 : CMD PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/get_sourcedeb.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml kinetic strands_executive_msgs --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py kinetic strands_executive_msgs --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/create_binarydeb_task_generator.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml kinetic strands_executive_msgs ubuntu xenial amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /tmp/keys/0.key /tmp/keys/1.key --binarydeb-dir /tmp/binarydeb --dockerfile-dir /tmp/docker_build_binarydeb ---> Running in 18886c87d86f ---> 277c618c82d3 Removing intermediate container 18886c87d86f Successfully built 277c618c82d3 + echo # END SECTION # END SECTION + echo # BEGIN SECTION: Run Dockerfile - binarydeb task # BEGIN SECTION: Run Dockerfile - binarydeb task + [ -f /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/binarydeb ] + rm -fr /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/binarydeb + rm -fr /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/docker_build_binarydeb + mkdir -p /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/binarydeb + mkdir -p /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/docker_build_binarydeb + docker run --rm --cidfile=/home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/docker_generating_docker/docker.cid -e=TRAVIS= -e=ROS_BUILDFARM_PULL_REQUEST_BRANCH= -v /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/docker_build_binarydeb:/tmp/docker_build_binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_task_generation.kinetic_ubuntu_xenial_amd64_strands_executive_msgs # BEGIN SUBSECTION: get sourcedeb W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 Invoking '/usr/bin/python3 /tmp/ros_buildfarm/ros_buildfarm/wrapper/apt.py source --download-only --only-source ros-kinetic-strands-executive-msgs=1.2.1-0xenial' Invoking 'apt-get source --download-only --only-source ros-kinetic-strands-executive-msgs=1.2.1-0xenial' Reading package lists... Need to get 16.0 kB of source archives. Get:1 http://10.210.9.154/ubuntu/building xenial/main ros-kinetic-strands-executive-msgs 1.2.1-0xenial (dsc) [1,240 B] Get:2 http://10.210.9.154/ubuntu/building xenial/main ros-kinetic-strands-executive-msgs 1.2.1-0xenial (tar) [10.5 kB] Get:3 http://10.210.9.154/ubuntu/building xenial/main ros-kinetic-strands-executive-msgs 1.2.1-0xenial (diff) [4,300 B] Fetched 16.0 kB in 0s (900 kB/s) Download complete and in download only mode W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 Invoking 'dpkg-source -x ros-kinetic-strands-executive-msgs_1.2.1-0xenial.dsc' dpkg-source: warning: extracting unsigned source package (ros-kinetic-strands-executive-msgs_1.2.1-0xenial.dsc) dpkg-source: info: extracting ros-kinetic-strands-executive-msgs in ros-kinetic-strands-executive-msgs-1.2.1 dpkg-source: info: unpacking ros-kinetic-strands-executive-msgs_1.2.1.orig.tar.gz dpkg-source: info: unpacking ros-kinetic-strands-executive-msgs_1.2.1-0xenial.debian.tar.xz Package maintainer emails: n.a.hawes@cs.bham.ac.uk # END SUBSECTION # BEGIN SUBSECTION: append build timestamp dpkg-parsechangelog: warning: debian/changelog(l5): found trailer where expected start of change data LINE: -- Nick Hawes Fri, 15 Sep 2017 00:00:00 -0000 Invoking 'debchange -v 1.2.1-0xenial-20180910-220619+0000 -p -D xenial -u high -m Append timestamp when binarydeb was built.' in '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1' debchange: warning: debian/changelog(l5): found trailer where expected start of change data LINE: -- Nick Hawes Fri, 15 Sep 2017 00:00:00 -0000 # END SUBSECTION Looking for the '.dsc' file of package 'ros-kinetic-strands-executive-msgs' with version '1.2.1-0' Using the following distribution repositories: http://10.210.9.154/ubuntu/building (/tmp/keys/0.key) http://packages.ros.org/ros/ubuntu (/tmp/keys/1.key) Generating Dockerfile '/tmp/docker_build_binarydeb/Dockerfile': # generated from release/binarydeb_task.Dockerfile.em FROM ubuntu:xenial VOLUME ["/var/cache/apt/archives"] ENV DEBIAN_FRONTEND noninteractive RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen RUN locale-gen en_US.UTF-8 ENV LANG en_US.UTF-8 ENV TZ GMT+00 RUN useradd -u 1002 -m buildfarm RUN mkdir /tmp/keys RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQGiBEsy5KkRBADJbDSISoamRM5AA20bfAeBuhhaI+VaiCVcxw90sq9AI5lIc42F\nWzM2acm8yplqWiehAqOLKd+iIrqNGZ+VavZEPTx7o06UZUMRoPBiTFaCwrQ5avKz\nlt7ij8PRMVWNrJ7A2lDYXfFQVV1o3Xo06qVnv0KLLUmiur0LBu4H/oTH3wCgt+/I\nD3LUKaMJsc77KwFBTjHB0EsD/26Z2Ud12f3urSNyN6VMWnP3rz6xsmtY4Qsmkbnr\nJuduxCQBZv6bX1Cr2ulXkv0fFOr+s5OyUv7zyCPbxiJFh3Br7fJGb0b5/M208KPe\ngiITY9hMh/aUbKjXCPoOXPxSL6SWOWV8taR6903EFyLBN0qno/kXIBKnVqBZobgn\njIEPA/0fTnxtZtE7EpirGQMF2caJfv7/LCgXmRs9xAhgbE0/caoa1tnc79uaHmLZ\nFtbGFoAO31YNYM/IUHtmabbGdvZ4oYUwDhjBevVvC7aI+XhuNGK5mU8qCLLSEUOl\nCUr6BJq/0iFmjwjmwk9idZEYhqSNy2OoYJbq45rbHfbdKLEVrbQeUk9TIEJ1aWxk\nZXIgPHJvc2J1aWxkQHJvcy5vcmc+iGAEExECACAFAksy5KkCGwMGCwkIBwMCBBUC\nCAMEFgIDAQIeAQIXgAAKCRBVI7rusB+hFmk7AJ0XsLp05KA8l3YzAumZfjSN04MZ\njQCfQHfp4aQUXdOCUtetVo0QZUX3IuO5Ag0ESzLkrhAIAOCuSC83VXYWf8gOMSzd\nxwpsH/uLV9Wze2LGnajsJLjEOhcsz2BHfxqNXhYaE9aQaodPCpbUAkPq8tLbpXy0\nSWRCx0F5RcplXx5vIWbP6TlfPbRpK70w7IWd6vsNrjwEHjlhOLcNcj42sp5pgx4b\ndceK06k5Ml2hYovPnD9o2TYgjOqg5FHZ2g1J0103n/66bN/hZnpLaZJYQiPWCyq6\nK0565i1k2Y7hgWB/OXqwaqCehqmLTvpyQGzE1UJvKLuYU+T+4hBnSPbT3KIi5fCz\nlIwvxijOMcfbkLhzYQXcU0Rd1VItcd5nmPL4z97jBxzuhkgxXpGR4WGKhvsA2Z9Y\nUtsAAwYH/3Bf44bTpD9bVADUdab3e7zm8iHfh9K/a83mIgDB7mHV6WuemQVTf/1d\neu4mI5WtpbOCoucybGfjGIIAcSxwIx6VfC7HSp4J51bOpHhbdDffUEk6QVsZjwoF\nyn3W9W3ZVeTI+ch/Qoo5a98SnmdjN8eXI/qCuiXOHc6rXDXc2R0iox/1EAS8xGVd\ncYZe7IWBO2CjCknyhLrWxZHoy+i1GCZ9KvPF/Ef2dmLhCydT73ZlumsY8N5vm76Q\nul1G7f8LNbnMgXQafRkPffrAXSVhGY3Z2IiBwFNgxcKTq479l7yedYRGeU1A+SYI\nYmRFWHXt3rTkMlQSpxCsB0fAYfrwEqqISQQYEQIACQUCSzLkrgIbDAAKCRBVI7ru\nsB+hFpryAJ9qNz3h3ijt9TkAV0CHufsPT6Cl4gCglfg7tJn2lsSF3HTpoDDO1Fgg\nx9o=\n=AGYp\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && (echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list && echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) || (echo "deb http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list && echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) RUN mkdir /tmp/wrapper_scripts RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py # automatic invalidation once every day RUN echo "2018-09-10 (+0000)" RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential # for each dependency: echo version, apt update, apt install, apt clean # to prevent exceeding the docker layer limit several lines have been folded RUN echo "apt-src: 0.25.1-0.2" && echo "debhelper: 10.2.2ubuntu1~ubuntu16.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src debhelper RUN echo "ros-kinetic-actionlib: 1.11.13-0xenial-20180824-105059-0800" && echo "ros-kinetic-actionlib-msgs: 1.12.6-0xenial-20180824-091950-0800" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-actionlib ros-kinetic-actionlib-msgs RUN echo "ros-kinetic-catkin: 0.7.14-0xenial-20180809-132632-0800" && echo "ros-kinetic-geometry-msgs: 1.12.6-0xenial-20180824-100440-0800" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-catkin ros-kinetic-geometry-msgs RUN echo "ros-kinetic-message-generation: 0.4.0-0xenial-20180824-081816-0800" && echo "ros-kinetic-mongodb-store-msgs: 0.4.2-0xenial-20180824-105809-0800" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-message-generation ros-kinetic-mongodb-store-msgs RUN echo "ros-kinetic-rospy: 1.12.14-0xenial-20180824-093546-0800" && echo "ros-kinetic-std-msgs: 0.5.11-0xenial-20180824-085549-0800" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-rospy ros-kinetic-std-msgs USER buildfarm ENTRYPOINT ["sh", "-c"] CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py kinetic strands_executive_msgs --sourcedeb-dir /tmp/binarydeb"] Mount the following volumes when running the container: -v /tmp/ros_buildfarm:/tmp/ros_buildfarm:ro -v /tmp/binarydeb:/tmp/binarydeb + echo # END SECTION # END SECTION [Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson1663330682713732341.sh + sleep 1 + python3 -u /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 10621 --cid-file /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/docker_build_binarydeb/docker.cid + echo # BEGIN SECTION: Build Dockerfile - build binarydeb # BEGIN SECTION: Build Dockerfile - build binarydeb + cd /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/docker_build_binarydeb + python3 -u /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py Get base image name from Dockerfile 'Dockerfile': ubuntu:xenial Check docker base image for updates: docker pull ubuntu:xenial xenial: Pulling from library/ubuntu Digest: sha256:f53ee6c26fed293a1faaad6cb83713ce9289e4a38a9ea7e0d78c156fa1022e75 Status: Image is up to date for ubuntu:xenial + docker build --force-rm -t binarydeb_build.kinetic_ubuntu_xenial_amd64_strands_executive_msgs . Sending build context to Docker daemon 19.46 kB Sending build context to Docker daemon 19.46 kB Step 1 : FROM ubuntu:xenial ---> 2b9623518fa2 Step 2 : VOLUME /var/cache/apt/archives ---> Using cache ---> 74ba1b76bf6e Step 3 : ENV DEBIAN_FRONTEND noninteractive ---> Using cache ---> 2493ca106c60 Step 4 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done ---> Using cache ---> 885388895e3f Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen ---> Using cache ---> 40393b666211 Step 6 : RUN locale-gen en_US.UTF-8 ---> Using cache ---> e52d5a0e19f6 Step 7 : ENV LANG en_US.UTF-8 ---> Using cache ---> 2a9c5e2d8565 Step 8 : ENV TZ GMT+00 ---> Using cache ---> be900094f1df Step 9 : RUN useradd -u 1002 -m buildfarm ---> Using cache ---> 653b534e961f Step 10 : RUN mkdir /tmp/keys ---> Using cache ---> e4ea2a03c969 Step 11 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key ---> Using cache ---> d89322b323f7 Step 12 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQGiBEsy5KkRBADJbDSISoamRM5AA20bfAeBuhhaI+VaiCVcxw90sq9AI5lIc42F\nWzM2acm8yplqWiehAqOLKd+iIrqNGZ+VavZEPTx7o06UZUMRoPBiTFaCwrQ5avKz\nlt7ij8PRMVWNrJ7A2lDYXfFQVV1o3Xo06qVnv0KLLUmiur0LBu4H/oTH3wCgt+/I\nD3LUKaMJsc77KwFBTjHB0EsD/26Z2Ud12f3urSNyN6VMWnP3rz6xsmtY4Qsmkbnr\nJuduxCQBZv6bX1Cr2ulXkv0fFOr+s5OyUv7zyCPbxiJFh3Br7fJGb0b5/M208KPe\ngiITY9hMh/aUbKjXCPoOXPxSL6SWOWV8taR6903EFyLBN0qno/kXIBKnVqBZobgn\njIEPA/0fTnxtZtE7EpirGQMF2caJfv7/LCgXmRs9xAhgbE0/caoa1tnc79uaHmLZ\nFtbGFoAO31YNYM/IUHtmabbGdvZ4oYUwDhjBevVvC7aI+XhuNGK5mU8qCLLSEUOl\nCUr6BJq/0iFmjwjmwk9idZEYhqSNy2OoYJbq45rbHfbdKLEVrbQeUk9TIEJ1aWxk\nZXIgPHJvc2J1aWxkQHJvcy5vcmc+iGAEExECACAFAksy5KkCGwMGCwkIBwMCBBUC\nCAMEFgIDAQIeAQIXgAAKCRBVI7rusB+hFmk7AJ0XsLp05KA8l3YzAumZfjSN04MZ\njQCfQHfp4aQUXdOCUtetVo0QZUX3IuO5Ag0ESzLkrhAIAOCuSC83VXYWf8gOMSzd\nxwpsH/uLV9Wze2LGnajsJLjEOhcsz2BHfxqNXhYaE9aQaodPCpbUAkPq8tLbpXy0\nSWRCx0F5RcplXx5vIWbP6TlfPbRpK70w7IWd6vsNrjwEHjlhOLcNcj42sp5pgx4b\ndceK06k5Ml2hYovPnD9o2TYgjOqg5FHZ2g1J0103n/66bN/hZnpLaZJYQiPWCyq6\nK0565i1k2Y7hgWB/OXqwaqCehqmLTvpyQGzE1UJvKLuYU+T+4hBnSPbT3KIi5fCz\nlIwvxijOMcfbkLhzYQXcU0Rd1VItcd5nmPL4z97jBxzuhkgxXpGR4WGKhvsA2Z9Y\nUtsAAwYH/3Bf44bTpD9bVADUdab3e7zm8iHfh9K/a83mIgDB7mHV6WuemQVTf/1d\neu4mI5WtpbOCoucybGfjGIIAcSxwIx6VfC7HSp4J51bOpHhbdDffUEk6QVsZjwoF\nyn3W9W3ZVeTI+ch/Qoo5a98SnmdjN8eXI/qCuiXOHc6rXDXc2R0iox/1EAS8xGVd\ncYZe7IWBO2CjCknyhLrWxZHoy+i1GCZ9KvPF/Ef2dmLhCydT73ZlumsY8N5vm76Q\nul1G7f8LNbnMgXQafRkPffrAXSVhGY3Z2IiBwFNgxcKTq479l7yedYRGeU1A+SYI\nYmRFWHXt3rTkMlQSpxCsB0fAYfrwEqqISQQYEQIACQUCSzLkrgIbDAAKCRBVI7ru\nsB+hFpryAJ9qNz3h3ijt9TkAV0CHufsPT6Cl4gCglfg7tJn2lsSF3HTpoDDO1Fgg\nx9o=\n=AGYp\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key ---> Using cache ---> 0aca65174b48 Step 13 : RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> 068fa303acf0 Step 14 : RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> 27bd819464fc Step 15 : RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && (echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list && echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) || (echo "deb http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list && echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) ---> Using cache ---> 81a16c385fe9 Step 16 : RUN mkdir /tmp/wrapper_scripts ---> Using cache ---> f62a0247fa67 Step 17 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py ---> Using cache ---> 489f397ca7ba Step 18 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py ---> Using cache ---> 4251c1c51aac Step 19 : RUN echo "2018-09-10 (+0000)" ---> Using cache ---> 13690b994e9e Step 20 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done ---> Using cache ---> e652af2f1513 Step 21 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential ---> Using cache ---> f61e0b6a1fb0 Step 22 : RUN echo "apt-src: 0.25.1-0.2" && echo "debhelper: 10.2.2ubuntu1~ubuntu16.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src debhelper ---> Using cache ---> fc9886cb09b6 Step 23 : RUN echo "ros-kinetic-actionlib: 1.11.13-0xenial-20180824-105059-0800" && echo "ros-kinetic-actionlib-msgs: 1.12.6-0xenial-20180824-091950-0800" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-actionlib ros-kinetic-actionlib-msgs ---> Using cache ---> 19c51c71960a Step 24 : RUN echo "ros-kinetic-catkin: 0.7.14-0xenial-20180809-132632-0800" && echo "ros-kinetic-geometry-msgs: 1.12.6-0xenial-20180824-100440-0800" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-catkin ros-kinetic-geometry-msgs ---> Running in c74676e10576 ros-kinetic-catkin: 0.7.14-0xenial-20180809-132632-0800 ros-kinetic-geometry-msgs: 1.12.6-0xenial-20180824-100440-0800 Invoking 'apt-get update' Get:1 http://10.210.9.154/ubuntu/building xenial InRelease [2,856 B] Hit:2 http://archive.ubuntu.com/ubuntu xenial InRelease Get:3 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB] Get:4 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB] Get:5 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB] Get:6 http://archive.ubuntu.com/ubuntu xenial-security InRelease [107 kB] Hit:7 http://packages.ros.org/ros/ubuntu xenial InRelease Get:8 http://10.210.9.154/ubuntu/building xenial/main amd64 Packages [147 kB] Get:9 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [707 kB] Get:10 http://archive.ubuntu.com/ubuntu xenial-updates/universe Sources [278 kB] Get:11 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [1,097 kB] Get:12 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [879 kB] Fetched 3,540 kB in 2s (1,695 kB/s) Reading package lists... W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: http://10.210.9.154/ubuntu/building/dists/xenial/InRelease: Signature by key 0379D44201EF3A91028107A8DCD74318AED39854 uses weak digest algorithm (SHA1) W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-catkin ros-kinetic-geometry-msgs' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done ros-kinetic-catkin is already the newest version (0.7.14-0xenial-20180809-132632-0800). ros-kinetic-catkin set to manually installed. The following NEW packages will be installed: ros-kinetic-geometry-msgs 0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded. Need to get 66.0 kB of archives. After this operation, 1,244 kB of additional disk space will be used. Get:1 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-geometry-msgs amd64 1.12.6-0xenial-20180824-100440-0800 [66.0 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 66.0 kB in 1s (51.4 kB/s) Selecting previously unselected package ros-kinetic-geometry-msgs. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 57126 files and directories currently installed.) Preparing to unpack .../ros-kinetic-geometry-msgs_1.12.6-0xenial-20180824-100440-0800_amd64.deb ... Unpacking ros-kinetic-geometry-msgs (1.12.6-0xenial-20180824-100440-0800) ... Setting up ros-kinetic-geometry-msgs (1.12.6-0xenial-20180824-100440-0800) ... W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 Invoking 'apt-get clean' ---> ae087011e5f4 Removing intermediate container c74676e10576 Step 25 : RUN echo "ros-kinetic-message-generation: 0.4.0-0xenial-20180824-081816-0800" && echo "ros-kinetic-mongodb-store-msgs: 0.4.2-0xenial-20180824-105809-0800" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-message-generation ros-kinetic-mongodb-store-msgs ---> Running in 4f1b314dc34b ros-kinetic-message-generation: 0.4.0-0xenial-20180824-081816-0800 ros-kinetic-mongodb-store-msgs: 0.4.2-0xenial-20180824-105809-0800 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building xenial InRelease Hit:2 http://security.ubuntu.com/ubuntu xenial-security InRelease Hit:3 http://archive.ubuntu.com/ubuntu xenial InRelease Hit:4 http://archive.ubuntu.com/ubuntu xenial-updates InRelease Hit:5 http://archive.ubuntu.com/ubuntu xenial-backports InRelease Hit:6 http://archive.ubuntu.com/ubuntu xenial-security InRelease Hit:7 http://packages.ros.org/ros/ubuntu xenial InRelease Reading package lists... W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: http://10.210.9.154/ubuntu/building/dists/xenial/InRelease: Signature by key 0379D44201EF3A91028107A8DCD74318AED39854 uses weak digest algorithm (SHA1) W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-message-generation ros-kinetic-mongodb-store-msgs' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done ros-kinetic-message-generation is already the newest version (0.4.0-0xenial-20180824-081816-0800). ros-kinetic-message-generation set to manually installed. The following NEW packages will be installed: ros-kinetic-mongodb-store-msgs 0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded. Need to get 64.3 kB of archives. After this operation, 1,169 kB of additional disk space will be used. Get:1 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-mongodb-store-msgs amd64 0.4.2-0xenial-20180824-105809-0800 [64.3 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 64.3 kB in 0s (109 kB/s) Selecting previously unselected package ros-kinetic-mongodb-store-msgs. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 57387 files and directories currently installed.) Preparing to unpack .../ros-kinetic-mongodb-store-msgs_0.4.2-0xenial-20180824-105809-0800_amd64.deb ... Unpacking ros-kinetic-mongodb-store-msgs (0.4.2-0xenial-20180824-105809-0800) ... Setting up ros-kinetic-mongodb-store-msgs (0.4.2-0xenial-20180824-105809-0800) ... W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 Invoking 'apt-get clean' ---> 88c9b4cf2622 Removing intermediate container 4f1b314dc34b Step 26 : RUN echo "ros-kinetic-rospy: 1.12.14-0xenial-20180824-093546-0800" && echo "ros-kinetic-std-msgs: 0.5.11-0xenial-20180824-085549-0800" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-rospy ros-kinetic-std-msgs ---> Running in 38b1ff272e9b ros-kinetic-rospy: 1.12.14-0xenial-20180824-093546-0800 ros-kinetic-std-msgs: 0.5.11-0xenial-20180824-085549-0800 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building xenial InRelease Hit:2 http://archive.ubuntu.com/ubuntu xenial InRelease Hit:3 http://archive.ubuntu.com/ubuntu xenial-updates InRelease Hit:4 http://archive.ubuntu.com/ubuntu xenial-backports InRelease Hit:5 http://archive.ubuntu.com/ubuntu xenial-security InRelease Hit:6 http://security.ubuntu.com/ubuntu xenial-security InRelease Hit:7 http://packages.ros.org/ros/ubuntu xenial InRelease Reading package lists... W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: http://10.210.9.154/ubuntu/building/dists/xenial/InRelease: Signature by key 0379D44201EF3A91028107A8DCD74318AED39854 uses weak digest algorithm (SHA1) W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-rospy ros-kinetic-std-msgs' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done ros-kinetic-rospy is already the newest version (1.12.14-0xenial-20180824-093546-0800). ros-kinetic-rospy set to manually installed. ros-kinetic-std-msgs is already the newest version (0.5.11-0xenial-20180824-085549-0800). ros-kinetic-std-msgs set to manually installed. 0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded. W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 Invoking 'apt-get clean' ---> 3954066985af Removing intermediate container 38b1ff272e9b Step 27 : USER buildfarm ---> Running in 3ac8a3b46d55 ---> ac7bc9d2fcb6 Removing intermediate container 3ac8a3b46d55 Step 28 : ENTRYPOINT sh -c ---> Running in ec028972123b ---> 35ed0c3f4e4d Removing intermediate container ec028972123b Step 29 : CMD PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py kinetic strands_executive_msgs --sourcedeb-dir /tmp/binarydeb ---> Running in d35f4ac53ffe ---> eda8e61283c2 Removing intermediate container d35f4ac53ffe Successfully built eda8e61283c2 + echo # END SECTION # END SECTION + echo # BEGIN SECTION: Run Dockerfile - build binarydeb # BEGIN SECTION: Run Dockerfile - build binarydeb + docker run --rm --cidfile=/home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/docker_build_binarydeb/docker.cid -e=HOME= -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_build.kinetic_ubuntu_xenial_amd64_strands_executive_msgs # BEGIN SUBSECTION: build binarydeb Package 'ros-kinetic-strands-executive-msgs' version: 1.2.1-0xenial-20180910-220619+0000 Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 Invoking 'apt-src build ros-kinetic-strands-executive-msgs' in '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1' Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 I: Building in /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 .. dpkg-buildpackage: source package ros-kinetic-strands-executive-msgs dpkg-buildpackage: source version 1.2.1-0xenial-20180910-220619+0000 dpkg-buildpackage: source distribution xenial dpkg-buildpackage: source changed by Nick Hawes dpkg-buildpackage: host architecture amd64 dpkg-source --before-build ros-kinetic-strands-executive-msgs-1.2.1 dpkg-source: info: using options from ros-kinetic-strands-executive-msgs-1.2.1/debian/source/options: --auto-commit fakeroot debian/rules clean dh clean dh_testdir Unknown option: buildsystem dh_testdir: warning: ignored unknown options in DH_OPTIONS dh_auto_clean dh_clean Unknown option: buildsystem dh_clean: warning: ignored unknown options in DH_OPTIONS rm -f debian/debhelper-build-stamp rm -f debian/ros-kinetic-strands-executive-msgs.substvars rm -f debian/ros-kinetic-strands-executive-msgs.*.debhelper rm -rf debian/ros-kinetic-strands-executive-msgs/ rm -rf debian/.debhelper/ rm -f debian/*.debhelper.log rm -f debian/files find . \( \( \ \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS \) -prune -o -type f -a \ \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ \) -exec rm -f {} + \) -o \ \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) rm -f *-stamp debian/rules build dh build dh_testdir Unknown option: buildsystem dh_testdir: warning: ignored unknown options in DH_OPTIONS dh_update_autotools_config Unknown option: buildsystem dh_update_autotools_config: warning: ignored unknown options in DH_OPTIONS debian/rules override_dh_auto_configure make[1]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/kinetic/setup.sh" ]; then . "/opt/ros/kinetic/setup.sh"; fi && \ dh_auto_configure -- \ -DCATKIN_BUILD_BINARY_PACKAGE="1" \ -DCMAKE_INSTALL_PREFIX="/opt/ros/kinetic" \ -DCMAKE_PREFIX_PATH="/opt/ros/kinetic" mkdir -p obj-x86_64-linux-gnu cd obj-x86_64-linux-gnu cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var -DCATKIN_BUILD_BINARY_PACKAGE=1 -DCMAKE_INSTALL_PREFIX=/opt/ros/kinetic -DCMAKE_PREFIX_PATH=/opt/ros/kinetic -- The C compiler identification is GNU 5.4.0 -- The CXX compiler identification is GNU 5.4.0 -- Check for working C compiler: /usr/lib/ccache/x86_64-linux-gnu-gcc -- Check for working C compiler: /usr/lib/ccache/x86_64-linux-gnu-gcc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Check for working CXX compiler: /usr/lib/ccache/x86_64-linux-gnu-g++ -- Check for working CXX compiler: /usr/lib/ccache/x86_64-linux-gnu-g++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Using CATKIN_DEVEL_PREFIX: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel -- Using CMAKE_PREFIX_PATH: /opt/ros/kinetic -- This workspace overlays: /opt/ros/kinetic -- Found PythonInterp: /usr/bin/python (found version "2.7.12") -- Using PYTHON_EXECUTABLE: /usr/bin/python -- Using Debian Python package layout -- Using empy: /usr/bin/empy -- Using CATKIN_ENABLE_TESTING: ON -- Skip enable_testing() when building binary package -- Using CATKIN_TEST_RESULTS_DIR: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/test_results -- Found gmock sources under '/usr/src/gmock': gmock will be built -- Looking for pthread.h -- Looking for pthread.h - found -- Looking for pthread_create -- Looking for pthread_create - not found -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- Found gtest sources under '/usr/src/gmock': gtests will be built -- Using Python nosetests: /usr/bin/nosetests-2.7 -- catkin 0.7.14 -- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy -- Generating .msg files for action strands_executive_msgs/ExecutePolicy /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/action/ExecutePolicy.action Generating for action ExecutePolicy -- Generating .msg files for action strands_executive_msgs/ExecutePolicyExtended /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/action/ExecutePolicyExtended.action Generating for action ExecutePolicyExtended -- strands_executive_msgs: 27 messages, 18 services -- Configuring done -- Generating done CMake Warning: Manually-specified variables were not used by the project: CMAKE_INSTALL_LOCALSTATEDIR CMAKE_INSTALL_SYSCONFDIR -- Build files have been written to: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1' debian/rules override_dh_auto_build make[1]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/kinetic/setup.sh" ]; then . "/opt/ros/kinetic/setup.sh"; fi && \ dh_auto_build cd obj-x86_64-linux-gnu make -j1 make[2]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' /usr/bin/cmake -H/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 -B/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/progress.marks make -f CMakeFiles/Makefile2 all make[3]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionGoal.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionGoal.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionGoal make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionGoal.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg strands_executive_msgs/ExecutePolicyGoal:actionlib_msgs/GoalID:std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionGoal make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetActiveTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetActiveTasks.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetActiveTasks.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_GetActiveTasks make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetActiveTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetActiveTasks.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetActiveTasks.srv mongodb_store_msgs/StringPair:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetActiveTasks make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTask.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTask.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_AddTask make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTask.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddTask.srv mongodb_store_msgs/StringPair:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_AddTask make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskEvent.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskEvent.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskEvent.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_TaskEvent make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskEvent.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskEvent.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/TaskEvent.msg mongodb_store_msgs/StringPair:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_TaskEvent make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedGoal.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedGoal.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedGoal make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedGoal.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedGoal.msg strands_executive_msgs/StringTriple:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedGoal make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSpecialWaypoints.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSpecialWaypoints.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSpecialWaypoints.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_GetSpecialWaypoints make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSpecialWaypoints.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSpecialWaypoints.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetSpecialWaypoints.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetSpecialWaypoints make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpDomainSpec.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpDomainSpec.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpDomainSpec.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_MdpDomainSpec make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpDomainSpec.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpDomainSpec.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpDomainSpec.msg strands_executive_msgs/StringTriple:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_MdpDomainSpec make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionGoal.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionGoal.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionGoal make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionGoal.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionGoal.msg actionlib_msgs/GoalID:std_msgs/Header:strands_executive_msgs/ExecutePolicyExtendedGoal:strands_executive_msgs/MdpStateVar:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:mongodb_store_msgs/StringPair make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionGoal make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyGoal.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyGoal.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyGoal make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyGoal.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyGoal make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionFeedback.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionFeedback.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionFeedback make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionFeedback.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg strands_executive_msgs/ExecutePolicyFeedback:actionlib_msgs/GoalID:std_msgs/Header:actionlib_msgs/GoalStatus make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionFeedback make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringTriple.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringTriple.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringTriple.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_StringTriple make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringTriple.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringTriple.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/StringTriple.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_StringTriple make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/DemandCoSafeTask.srv strands_executive_msgs/StringTriple:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask make -f CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/std_msgs_generate_messages_nodejs.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color= Scanning dependencies of target std_msgs_generate_messages_nodejs make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/std_msgs_generate_messages_nodejs.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_nodejs.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target std_msgs_generate_messages_nodejs make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExpectedTravelTimesToWaypoint.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExpectedTravelTimesToWaypoint.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExpectedTravelTimesToWaypoint.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_GetExpectedTravelTimesToWaypoint make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExpectedTravelTimesToWaypoint.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExpectedTravelTimesToWaypoint.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetExpectedTravelTimesToWaypoint.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetExpectedTravelTimesToWaypoint make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyAction.msg strands_executive_msgs/ExecutePolicyFeedback:actionlib_msgs/GoalStatus:strands_executive_msgs/ExecutePolicyActionGoal:strands_executive_msgs/ExecutePolicyActionResult:strands_executive_msgs/ExecutePolicyGoal:strands_executive_msgs/ExecutePolicyResult:actionlib_msgs/GoalID:strands_executive_msgs/ExecutePolicyActionFeedback:std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction make -f CMakeFiles/mongodb_store_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_nodejs.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/mongodb_store_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color= Scanning dependencies of target mongodb_store_msgs_generate_messages_nodejs make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/mongodb_store_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_nodejs.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/mongodb_store_msgs_generate_messages_nodejs.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target mongodb_store_msgs_generate_messages_nodejs make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddCoSafeTasks.srv strands_executive_msgs/StringTriple:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpTask:strands_executive_msgs/MdpAction make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyResult.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyResult.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyResult make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyResult.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyResult.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyResult make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedResult.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedResult.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedResult make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedResult.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedResult.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedResult make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExecutionStatus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExecutionStatus.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_GetExecutionStatus make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExecutionStatus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetExecutionStatus.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetExecutionStatus make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetIDs.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetIDs.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetIDs.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_GetIDs make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetIDs.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetIDs.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetIDs.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetIDs make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelTask.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelTask.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_CancelTask make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelTask.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/CancelTask.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_CancelTask make -f CMakeFiles/actionlib_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_nodejs.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/actionlib_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color= Scanning dependencies of target actionlib_msgs_generate_messages_nodejs make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/actionlib_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_nodejs.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/actionlib_msgs_generate_messages_nodejs.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target actionlib_msgs_generate_messages_nodejs make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpTask.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpTask.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_MdpTask make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpTask.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpTask.msg strands_executive_msgs/StringTriple:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_MdpTask make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_Task.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_Task.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_Task.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_Task.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_Task.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/Task.msg mongodb_store_msgs/StringPair make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_Task make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CreateTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CreateTask.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CreateTask.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_CreateTask make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CreateTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CreateTask.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/CreateTask.srv mongodb_store_msgs/StringPair:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_CreateTask make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddDeleteSpecialWaypoint.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddDeleteSpecialWaypoint.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddDeleteSpecialWaypoint.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_AddDeleteSpecialWaypoint make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddDeleteSpecialWaypoint.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddDeleteSpecialWaypoint.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddDeleteSpecialWaypoint.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_AddDeleteSpecialWaypoint make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSchedule.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSchedule.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSchedule.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_GetSchedule make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSchedule.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSchedule.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetSchedule.srv strands_executive_msgs/DurationList:strands_executive_msgs/DurationMatrix:mongodb_store_msgs/StringPair:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetSchedule make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringIntPair.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringIntPair.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringIntPair.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_StringIntPair make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringIntPair.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringIntPair.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/StringIntPair.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_StringIntPair make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_UpdateNavStatistics.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_UpdateNavStatistics.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_UpdateNavStatistics.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_UpdateNavStatistics make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_UpdateNavStatistics.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_UpdateNavStatistics.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/UpdateNavStatistics.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_UpdateNavStatistics make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationMatrix.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationMatrix.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationMatrix.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_DurationMatrix make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationMatrix.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationMatrix.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/DurationMatrix.msg strands_executive_msgs/DurationList make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_DurationMatrix make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_LastTaskID.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_LastTaskID.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_LastTaskID.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_LastTaskID make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_LastTaskID.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_LastTaskID.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/LastTaskID.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_LastTaskID make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpAction.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpAction.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_MdpAction make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpAction.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpAction.msg strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple:strands_executive_msgs/MdpActionOutcome:mongodb_store_msgs/StringPair make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_MdpAction make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionFeedback.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionFeedback.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionFeedback make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionFeedback.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionFeedback.msg strands_executive_msgs/ExecutePolicyExtendedFeedback:actionlib_msgs/GoalID:std_msgs/Header:actionlib_msgs/GoalStatus make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionFeedback make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutionStatus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutionStatus.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_ExecutionStatus make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutionStatus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/ExecutionStatus.msg mongodb_store_msgs/StringPair:std_msgs/Header:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutionStatus make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionResult.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionResult.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionResult make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionResult.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionResult.msg strands_executive_msgs/ExecutePolicyExtendedResult:actionlib_msgs/GoalID:std_msgs/Header:actionlib_msgs/GoalStatus make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionResult make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandTask.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandTask.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_DemandTask make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandTask.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/DemandTask.srv mongodb_store_msgs/StringPair:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_DemandTask make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpActionOutcome.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpActionOutcome.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpActionOutcome.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_MdpActionOutcome make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpActionOutcome.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpActionOutcome.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpActionOutcome.msg strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_MdpActionOutcome make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpStateVar.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpStateVar.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpStateVar.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_MdpStateVar make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpStateVar.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpStateVar.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpStateVar.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_MdpStateVar make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTasks.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTasks.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_AddTasks make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTasks.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddTasks.srv mongodb_store_msgs/StringPair:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_AddTasks make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_SetExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_SetExecutionStatus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_SetExecutionStatus.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_SetExecutionStatus make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_SetExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_SetExecutionStatus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/SetExecutionStatus.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_SetExecutionStatus make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_IsTaskInterruptible.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_IsTaskInterruptible.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_IsTaskInterruptible.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_IsTaskInterruptible make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_IsTaskInterruptible.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_IsTaskInterruptible.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/IsTaskInterruptible.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_IsTaskInterruptible make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedFeedback.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedFeedback.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedFeedback make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedFeedback.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedFeedback.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedFeedback make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionResult.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionResult.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionResult make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionResult.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg strands_executive_msgs/ExecutePolicyResult:actionlib_msgs/GoalID:std_msgs/Header:actionlib_msgs/GoalStatus make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionResult make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedAction.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedAction.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedAction make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedAction.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedAction.msg strands_executive_msgs/ExecutePolicyExtendedActionFeedback:strands_executive_msgs/MdpAction:std_msgs/Header:strands_executive_msgs/ExecutePolicyExtendedGoal:strands_executive_msgs/MdpStateVar:strands_executive_msgs/ExecutePolicyExtendedActionResult:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/ExecutePolicyExtendedResult:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/ExecutePolicyExtendedActionGoal:actionlib_msgs/GoalStatus:actionlib_msgs/GoalID:strands_executive_msgs/ExecutePolicyExtendedFeedback:mongodb_store_msgs/StringPair make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedAction make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationList.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationList.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationList.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_DurationList make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationList.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationList.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/DurationList.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_DurationList make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask.dir/DependInfo.cmake --color= Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetGuaranteesForCoSafeTask.srv strands_executive_msgs/StringTriple:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask make -f CMakeFiles/strands_executive_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_nodejs.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color= Scanning dependencies of target strands_executive_msgs_generate_messages_nodejs make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/strands_executive_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_nodejs.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Generating Javascript code from strands_executive_msgs/TaskEvent.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/TaskEvent.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 1%] Generating Javascript code from strands_executive_msgs/ExecutePolicyAction.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 1%] Generating Javascript code from strands_executive_msgs/Task.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/Task.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 2%] Generating Javascript code from strands_executive_msgs/ExecutePolicyGoal.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 2%] Generating Javascript code from strands_executive_msgs/ExecutePolicyExtendedGoal.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 3%] Generating Javascript code from strands_executive_msgs/StringIntPair.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/StringIntPair.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 3%] Generating Javascript code from strands_executive_msgs/ExecutePolicyActionGoal.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 3%] Generating Javascript code from strands_executive_msgs/MdpDomainSpec.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpDomainSpec.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 4%] Generating Javascript code from strands_executive_msgs/ExecutePolicyExtendedFeedback.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 4%] Generating Javascript code from strands_executive_msgs/DurationMatrix.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/DurationMatrix.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 5%] Generating Javascript code from strands_executive_msgs/MdpAction.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 5%] Generating Javascript code from strands_executive_msgs/ExecutePolicyExtendedActionFeedback.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 5%] Generating Javascript code from strands_executive_msgs/ExecutionStatus.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/ExecutionStatus.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 6%] Generating Javascript code from strands_executive_msgs/StringTriple.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/StringTriple.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 6%] Generating Javascript code from strands_executive_msgs/MdpActionOutcome.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpActionOutcome.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 7%] Generating Javascript code from strands_executive_msgs/ExecutePolicyFeedback.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 7%] Generating Javascript code from strands_executive_msgs/ExecutePolicyActionFeedback.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 8%] Generating Javascript code from strands_executive_msgs/MdpStateVar.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpStateVar.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 8%] Generating Javascript code from strands_executive_msgs/LastTaskID.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/LastTaskID.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 8%] Generating Javascript code from strands_executive_msgs/MdpTask.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpTask.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 9%] Generating Javascript code from strands_executive_msgs/ExecutePolicyResult.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 9%] Generating Javascript code from strands_executive_msgs/ExecutePolicyExtendedActionResult.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 10%] Generating Javascript code from strands_executive_msgs/ExecutePolicyActionResult.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 10%] Generating Javascript code from strands_executive_msgs/ExecutePolicyExtendedAction.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 10%] Generating Javascript code from strands_executive_msgs/ExecutePolicyExtendedActionGoal.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 11%] Generating Javascript code from strands_executive_msgs/ExecutePolicyExtendedResult.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 11%] Generating Javascript code from strands_executive_msgs/DurationList.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/DurationList.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg [ 12%] Generating Javascript code from strands_executive_msgs/GetActiveTasks.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetActiveTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 12%] Generating Javascript code from strands_executive_msgs/DemandTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/DemandTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 13%] Generating Javascript code from strands_executive_msgs/IsTaskInterruptible.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/IsTaskInterruptible.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 13%] Generating Javascript code from strands_executive_msgs/SetExecutionStatus.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/SetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 13%] Generating Javascript code from strands_executive_msgs/AddTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 14%] Generating Javascript code from strands_executive_msgs/UpdateNavStatistics.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/UpdateNavStatistics.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 14%] Generating Javascript code from strands_executive_msgs/AddTasks.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 15%] Generating Javascript code from strands_executive_msgs/AddDeleteSpecialWaypoint.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddDeleteSpecialWaypoint.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 15%] Generating Javascript code from strands_executive_msgs/CancelTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/CancelTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 15%] Generating Javascript code from strands_executive_msgs/GetGuaranteesForCoSafeTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetGuaranteesForCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 16%] Generating Javascript code from strands_executive_msgs/GetExecutionStatus.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 16%] Generating Javascript code from strands_executive_msgs/GetSchedule.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetSchedule.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 17%] Generating Javascript code from strands_executive_msgs/AddCoSafeTasks.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddCoSafeTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 17%] Generating Javascript code from strands_executive_msgs/DemandCoSafeTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/DemandCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 18%] Generating Javascript code from strands_executive_msgs/GetSpecialWaypoints.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetSpecialWaypoints.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 18%] Generating Javascript code from strands_executive_msgs/GetIDs.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetIDs.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 18%] Generating Javascript code from strands_executive_msgs/CreateTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/CreateTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv [ 19%] Generating Javascript code from strands_executive_msgs/GetExpectedTravelTimesToWaypoint.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetExpectedTravelTimesToWaypoint.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 19%] Built target strands_executive_msgs_generate_messages_nodejs make -f CMakeFiles/actionlib_msgs_generate_messages_cpp.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_cpp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/actionlib_msgs_generate_messages_cpp.dir/DependInfo.cmake --color= Scanning dependencies of target actionlib_msgs_generate_messages_cpp make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/actionlib_msgs_generate_messages_cpp.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_cpp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/actionlib_msgs_generate_messages_cpp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 19%] Built target actionlib_msgs_generate_messages_cpp make -f CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make CMakeFiles/std_msgs_generate_messages_cpp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake --color= Scanning dependencies of target std_msgs_generate_messages_cpp make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make CMakeFiles/std_msgs_generate_messages_cpp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_cpp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 19%] Built target std_msgs_generate_messages_cpp make -f CMakeFiles/mongodb_store_msgs_generate_messages_cpp.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_cpp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/mongodb_store_msgs_generate_messages_cpp.dir/DependInfo.cmake --color= Scanning dependencies of target mongodb_store_msgs_generate_messages_cpp make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/mongodb_store_msgs_generate_messages_cpp.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_cpp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/mongodb_store_msgs_generate_messages_cpp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 19%] Built target mongodb_store_msgs_generate_messages_cpp make -f CMakeFiles/strands_executive_msgs_generate_messages_cpp.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_cpp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages_cpp.dir/DependInfo.cmake --color= Scanning dependencies of target strands_executive_msgs_generate_messages_cpp make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/strands_executive_msgs_generate_messages_cpp.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_cpp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 20%] Generating C++ code from strands_executive_msgs/TaskEvent.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/TaskEvent.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 20%] Generating C++ code from strands_executive_msgs/ExecutePolicyAction.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 20%] Generating C++ code from strands_executive_msgs/Task.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/Task.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 21%] Generating C++ code from strands_executive_msgs/ExecutePolicyGoal.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 21%] Generating C++ code from strands_executive_msgs/ExecutePolicyExtendedGoal.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 22%] Generating C++ code from strands_executive_msgs/StringIntPair.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/StringIntPair.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 22%] Generating C++ code from strands_executive_msgs/ExecutePolicyActionGoal.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 22%] Generating C++ code from strands_executive_msgs/MdpDomainSpec.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpDomainSpec.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 23%] Generating C++ code from strands_executive_msgs/ExecutePolicyExtendedFeedback.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 23%] Generating C++ code from strands_executive_msgs/DurationMatrix.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/DurationMatrix.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 25%] Generating C++ code from strands_executive_msgs/MdpAction.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 25%] Generating C++ code from strands_executive_msgs/ExecutePolicyExtendedActionFeedback.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 26%] Generating C++ code from strands_executive_msgs/ExecutionStatus.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/ExecutionStatus.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 26%] Generating C++ code from strands_executive_msgs/StringTriple.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/StringTriple.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 26%] Generating C++ code from strands_executive_msgs/MdpActionOutcome.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpActionOutcome.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 27%] Generating C++ code from strands_executive_msgs/ExecutePolicyFeedback.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 27%] Generating C++ code from strands_executive_msgs/ExecutePolicyActionFeedback.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 28%] Generating C++ code from strands_executive_msgs/MdpStateVar.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpStateVar.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 28%] Generating C++ code from strands_executive_msgs/LastTaskID.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/LastTaskID.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 28%] Generating C++ code from strands_executive_msgs/MdpTask.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpTask.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 29%] Generating C++ code from strands_executive_msgs/ExecutePolicyResult.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 29%] Generating C++ code from strands_executive_msgs/ExecutePolicyExtendedActionResult.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 30%] Generating C++ code from strands_executive_msgs/ExecutePolicyActionResult.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 30%] Generating C++ code from strands_executive_msgs/ExecutePolicyExtendedAction.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 31%] Generating C++ code from strands_executive_msgs/ExecutePolicyExtendedActionGoal.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 31%] Generating C++ code from strands_executive_msgs/ExecutePolicyExtendedResult.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 31%] Generating C++ code from strands_executive_msgs/DurationList.msg cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/DurationList.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 32%] Generating C++ code from strands_executive_msgs/GetActiveTasks.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetActiveTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 32%] Generating C++ code from strands_executive_msgs/DemandTask.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/DemandTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 33%] Generating C++ code from strands_executive_msgs/IsTaskInterruptible.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/IsTaskInterruptible.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 33%] Generating C++ code from strands_executive_msgs/SetExecutionStatus.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/SetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 33%] Generating C++ code from strands_executive_msgs/AddTask.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 34%] Generating C++ code from strands_executive_msgs/UpdateNavStatistics.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/UpdateNavStatistics.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 34%] Generating C++ code from strands_executive_msgs/AddTasks.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 35%] Generating C++ code from strands_executive_msgs/AddDeleteSpecialWaypoint.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddDeleteSpecialWaypoint.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 35%] Generating C++ code from strands_executive_msgs/CancelTask.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/CancelTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 36%] Generating C++ code from strands_executive_msgs/GetGuaranteesForCoSafeTask.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetGuaranteesForCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 36%] Generating C++ code from strands_executive_msgs/GetExecutionStatus.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 36%] Generating C++ code from strands_executive_msgs/GetSchedule.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetSchedule.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 37%] Generating C++ code from strands_executive_msgs/AddCoSafeTasks.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddCoSafeTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 37%] Generating C++ code from strands_executive_msgs/DemandCoSafeTask.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/DemandCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 38%] Generating C++ code from strands_executive_msgs/GetSpecialWaypoints.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetSpecialWaypoints.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 38%] Generating C++ code from strands_executive_msgs/GetIDs.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetIDs.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 39%] Generating C++ code from strands_executive_msgs/CreateTask.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/CreateTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. [ 39%] Generating C++ code from strands_executive_msgs/GetExpectedTravelTimesToWaypoint.srv cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 && /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetExpectedTravelTimesToWaypoint.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/kinetic/share/gencpp/cmake/.. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 39%] Built target strands_executive_msgs_generate_messages_cpp make -f CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/DependInfo.cmake --color= Scanning dependencies of target actionlib_msgs_generate_messages_lisp make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 39%] Built target actionlib_msgs_generate_messages_lisp make -f CMakeFiles/mongodb_store_msgs_generate_messages_lisp.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_lisp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/mongodb_store_msgs_generate_messages_lisp.dir/DependInfo.cmake --color= Scanning dependencies of target mongodb_store_msgs_generate_messages_lisp make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/mongodb_store_msgs_generate_messages_lisp.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_lisp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/mongodb_store_msgs_generate_messages_lisp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 39%] Built target mongodb_store_msgs_generate_messages_lisp make -f CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make CMakeFiles/std_msgs_generate_messages_lisp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake --color= Scanning dependencies of target std_msgs_generate_messages_lisp make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make CMakeFiles/std_msgs_generate_messages_lisp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_lisp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 39%] Built target std_msgs_generate_messages_lisp make -f CMakeFiles/strands_executive_msgs_generate_messages_lisp.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_lisp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages_lisp.dir/DependInfo.cmake --color= Scanning dependencies of target strands_executive_msgs_generate_messages_lisp make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/strands_executive_msgs_generate_messages_lisp.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_lisp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 40%] Generating Lisp code from strands_executive_msgs/TaskEvent.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/TaskEvent.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 40%] Generating Lisp code from strands_executive_msgs/ExecutePolicyAction.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 40%] Generating Lisp code from strands_executive_msgs/Task.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/Task.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 41%] Generating Lisp code from strands_executive_msgs/ExecutePolicyGoal.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 41%] Generating Lisp code from strands_executive_msgs/ExecutePolicyExtendedGoal.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 42%] Generating Lisp code from strands_executive_msgs/StringIntPair.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/StringIntPair.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 42%] Generating Lisp code from strands_executive_msgs/ExecutePolicyActionGoal.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 43%] Generating Lisp code from strands_executive_msgs/MdpDomainSpec.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpDomainSpec.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 43%] Generating Lisp code from strands_executive_msgs/ExecutePolicyExtendedFeedback.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 43%] Generating Lisp code from strands_executive_msgs/DurationMatrix.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/DurationMatrix.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 44%] Generating Lisp code from strands_executive_msgs/MdpAction.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 44%] Generating Lisp code from strands_executive_msgs/ExecutePolicyExtendedActionFeedback.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 45%] Generating Lisp code from strands_executive_msgs/ExecutionStatus.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/ExecutionStatus.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 45%] Generating Lisp code from strands_executive_msgs/StringTriple.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/StringTriple.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 45%] Generating Lisp code from strands_executive_msgs/MdpActionOutcome.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpActionOutcome.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 46%] Generating Lisp code from strands_executive_msgs/ExecutePolicyFeedback.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 46%] Generating Lisp code from strands_executive_msgs/ExecutePolicyActionFeedback.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 47%] Generating Lisp code from strands_executive_msgs/MdpStateVar.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpStateVar.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 47%] Generating Lisp code from strands_executive_msgs/LastTaskID.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/LastTaskID.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 48%] Generating Lisp code from strands_executive_msgs/MdpTask.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpTask.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 48%] Generating Lisp code from strands_executive_msgs/ExecutePolicyResult.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 48%] Generating Lisp code from strands_executive_msgs/ExecutePolicyExtendedActionResult.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 50%] Generating Lisp code from strands_executive_msgs/ExecutePolicyActionResult.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 50%] Generating Lisp code from strands_executive_msgs/ExecutePolicyExtendedAction.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 51%] Generating Lisp code from strands_executive_msgs/ExecutePolicyExtendedActionGoal.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 51%] Generating Lisp code from strands_executive_msgs/ExecutePolicyExtendedResult.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 51%] Generating Lisp code from strands_executive_msgs/DurationList.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/DurationList.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg [ 52%] Generating Lisp code from strands_executive_msgs/GetActiveTasks.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetActiveTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 52%] Generating Lisp code from strands_executive_msgs/DemandTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/DemandTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 53%] Generating Lisp code from strands_executive_msgs/IsTaskInterruptible.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/IsTaskInterruptible.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 53%] Generating Lisp code from strands_executive_msgs/SetExecutionStatus.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/SetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 54%] Generating Lisp code from strands_executive_msgs/AddTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 54%] Generating Lisp code from strands_executive_msgs/UpdateNavStatistics.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/UpdateNavStatistics.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 54%] Generating Lisp code from strands_executive_msgs/AddTasks.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 55%] Generating Lisp code from strands_executive_msgs/AddDeleteSpecialWaypoint.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddDeleteSpecialWaypoint.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 55%] Generating Lisp code from strands_executive_msgs/CancelTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/CancelTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 56%] Generating Lisp code from strands_executive_msgs/GetGuaranteesForCoSafeTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetGuaranteesForCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 56%] Generating Lisp code from strands_executive_msgs/GetExecutionStatus.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 56%] Generating Lisp code from strands_executive_msgs/GetSchedule.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetSchedule.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 57%] Generating Lisp code from strands_executive_msgs/AddCoSafeTasks.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddCoSafeTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 57%] Generating Lisp code from strands_executive_msgs/DemandCoSafeTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/DemandCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 58%] Generating Lisp code from strands_executive_msgs/GetSpecialWaypoints.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetSpecialWaypoints.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 58%] Generating Lisp code from strands_executive_msgs/GetIDs.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetIDs.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 59%] Generating Lisp code from strands_executive_msgs/CreateTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/CreateTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv [ 59%] Generating Lisp code from strands_executive_msgs/GetExpectedTravelTimesToWaypoint.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetExpectedTravelTimesToWaypoint.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 59%] Built target strands_executive_msgs_generate_messages_lisp make -f CMakeFiles/actionlib_msgs_generate_messages_eus.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_eus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/actionlib_msgs_generate_messages_eus.dir/DependInfo.cmake --color= Scanning dependencies of target actionlib_msgs_generate_messages_eus make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/actionlib_msgs_generate_messages_eus.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_eus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/actionlib_msgs_generate_messages_eus.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 59%] Built target actionlib_msgs_generate_messages_eus make -f CMakeFiles/std_msgs_generate_messages_eus.dir/build.make CMakeFiles/std_msgs_generate_messages_eus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake --color= Scanning dependencies of target std_msgs_generate_messages_eus make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/std_msgs_generate_messages_eus.dir/build.make CMakeFiles/std_msgs_generate_messages_eus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_eus.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 59%] Built target std_msgs_generate_messages_eus make -f CMakeFiles/mongodb_store_msgs_generate_messages_eus.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_eus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/mongodb_store_msgs_generate_messages_eus.dir/DependInfo.cmake --color= Scanning dependencies of target mongodb_store_msgs_generate_messages_eus make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/mongodb_store_msgs_generate_messages_eus.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_eus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/mongodb_store_msgs_generate_messages_eus.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 59%] Built target mongodb_store_msgs_generate_messages_eus make -f CMakeFiles/strands_executive_msgs_generate_messages_eus.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_eus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages_eus.dir/DependInfo.cmake --color= Scanning dependencies of target strands_executive_msgs_generate_messages_eus make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/strands_executive_msgs_generate_messages_eus.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_eus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 59%] Generating EusLisp code from strands_executive_msgs/TaskEvent.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/TaskEvent.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 60%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyAction.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 60%] Generating EusLisp code from strands_executive_msgs/Task.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/Task.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 61%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyGoal.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 61%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyExtendedGoal.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 61%] Generating EusLisp code from strands_executive_msgs/StringIntPair.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/StringIntPair.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 62%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyActionGoal.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 62%] Generating EusLisp code from strands_executive_msgs/MdpDomainSpec.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpDomainSpec.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 63%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyExtendedFeedback.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 63%] Generating EusLisp code from strands_executive_msgs/DurationMatrix.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/DurationMatrix.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 64%] Generating EusLisp code from strands_executive_msgs/MdpAction.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 64%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyExtendedActionFeedback.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 64%] Generating EusLisp code from strands_executive_msgs/ExecutionStatus.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/ExecutionStatus.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 65%] Generating EusLisp code from strands_executive_msgs/StringTriple.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/StringTriple.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 65%] Generating EusLisp code from strands_executive_msgs/MdpActionOutcome.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpActionOutcome.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 66%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyFeedback.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 66%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyActionFeedback.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 66%] Generating EusLisp code from strands_executive_msgs/MdpStateVar.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpStateVar.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 67%] Generating EusLisp code from strands_executive_msgs/LastTaskID.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/LastTaskID.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 67%] Generating EusLisp code from strands_executive_msgs/MdpTask.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpTask.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 68%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyResult.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 68%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyExtendedActionResult.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 69%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyActionResult.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 69%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyExtendedAction.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 69%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyExtendedActionGoal.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 70%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyExtendedResult.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 70%] Generating EusLisp code from strands_executive_msgs/DurationList.msg catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/DurationList.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg [ 71%] Generating EusLisp code from strands_executive_msgs/GetActiveTasks.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetActiveTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 71%] Generating EusLisp code from strands_executive_msgs/DemandTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/DemandTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 71%] Generating EusLisp code from strands_executive_msgs/IsTaskInterruptible.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/IsTaskInterruptible.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 72%] Generating EusLisp code from strands_executive_msgs/SetExecutionStatus.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/SetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 72%] Generating EusLisp code from strands_executive_msgs/AddTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 73%] Generating EusLisp code from strands_executive_msgs/UpdateNavStatistics.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/UpdateNavStatistics.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 73%] Generating EusLisp code from strands_executive_msgs/AddTasks.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 75%] Generating EusLisp code from strands_executive_msgs/AddDeleteSpecialWaypoint.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddDeleteSpecialWaypoint.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 75%] Generating EusLisp code from strands_executive_msgs/CancelTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/CancelTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 75%] Generating EusLisp code from strands_executive_msgs/GetGuaranteesForCoSafeTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetGuaranteesForCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 76%] Generating EusLisp code from strands_executive_msgs/GetExecutionStatus.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 76%] Generating EusLisp code from strands_executive_msgs/GetSchedule.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetSchedule.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 77%] Generating EusLisp code from strands_executive_msgs/AddCoSafeTasks.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddCoSafeTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 77%] Generating EusLisp code from strands_executive_msgs/DemandCoSafeTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/DemandCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 78%] Generating EusLisp code from strands_executive_msgs/GetSpecialWaypoints.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetSpecialWaypoints.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 78%] Generating EusLisp code from strands_executive_msgs/GetIDs.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetIDs.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 78%] Generating EusLisp code from strands_executive_msgs/CreateTask.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/CreateTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 79%] Generating EusLisp code from strands_executive_msgs/GetExpectedTravelTimesToWaypoint.srv catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetExpectedTravelTimesToWaypoint.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv [ 79%] Generating EusLisp manifest code for strands_executive_msgs catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/geneus/cmake/../../../lib/geneus/gen_eus.py -m -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs strands_executive_msgs mongodb_store_msgs std_msgs actionlib_msgs make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 79%] Built target strands_executive_msgs_generate_messages_eus make -f CMakeFiles/mongodb_store_msgs_generate_messages_py.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_py.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/mongodb_store_msgs_generate_messages_py.dir/DependInfo.cmake --color= Scanning dependencies of target mongodb_store_msgs_generate_messages_py make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/mongodb_store_msgs_generate_messages_py.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_py.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/mongodb_store_msgs_generate_messages_py.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 79%] Built target mongodb_store_msgs_generate_messages_py make -f CMakeFiles/actionlib_msgs_generate_messages_py.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_py.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/actionlib_msgs_generate_messages_py.dir/DependInfo.cmake --color= Scanning dependencies of target actionlib_msgs_generate_messages_py make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/actionlib_msgs_generate_messages_py.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_py.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/actionlib_msgs_generate_messages_py.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 79%] Built target actionlib_msgs_generate_messages_py make -f CMakeFiles/std_msgs_generate_messages_py.dir/build.make CMakeFiles/std_msgs_generate_messages_py.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake --color= Scanning dependencies of target std_msgs_generate_messages_py make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/std_msgs_generate_messages_py.dir/build.make CMakeFiles/std_msgs_generate_messages_py.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_py.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 79%] Built target std_msgs_generate_messages_py make -f CMakeFiles/strands_executive_msgs_generate_messages_py.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_py.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages_py.dir/DependInfo.cmake --color= Scanning dependencies of target strands_executive_msgs_generate_messages_py make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/strands_executive_msgs_generate_messages_py.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_py.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 79%] Generating Python from MSG strands_executive_msgs/TaskEvent catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/TaskEvent.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 80%] Generating Python from MSG strands_executive_msgs/ExecutePolicyAction catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 80%] Generating Python from MSG strands_executive_msgs/Task catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/Task.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 81%] Generating Python from MSG strands_executive_msgs/ExecutePolicyGoal catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 81%] Generating Python from MSG strands_executive_msgs/ExecutePolicyExtendedGoal catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 81%] Generating Python from MSG strands_executive_msgs/StringIntPair catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/StringIntPair.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 82%] Generating Python from MSG strands_executive_msgs/ExecutePolicyActionGoal catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 82%] Generating Python from MSG strands_executive_msgs/MdpDomainSpec catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpDomainSpec.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 83%] Generating Python from MSG strands_executive_msgs/ExecutePolicyExtendedFeedback catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 83%] Generating Python from MSG strands_executive_msgs/DurationMatrix catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/DurationMatrix.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 83%] Generating Python from MSG strands_executive_msgs/MdpAction catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 84%] Generating Python from MSG strands_executive_msgs/ExecutePolicyExtendedActionFeedback catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 84%] Generating Python from MSG strands_executive_msgs/ExecutionStatus catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/ExecutionStatus.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 85%] Generating Python from MSG strands_executive_msgs/StringTriple catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/StringTriple.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 85%] Generating Python from MSG strands_executive_msgs/MdpActionOutcome catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpActionOutcome.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 86%] Generating Python from MSG strands_executive_msgs/ExecutePolicyFeedback catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 86%] Generating Python from MSG strands_executive_msgs/ExecutePolicyActionFeedback catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 86%] Generating Python from MSG strands_executive_msgs/MdpStateVar catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpStateVar.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 87%] Generating Python from MSG strands_executive_msgs/LastTaskID catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/LastTaskID.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 87%] Generating Python from MSG strands_executive_msgs/MdpTask catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpTask.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 88%] Generating Python from MSG strands_executive_msgs/ExecutePolicyResult catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 88%] Generating Python from MSG strands_executive_msgs/ExecutePolicyExtendedActionResult catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 88%] Generating Python from MSG strands_executive_msgs/ExecutePolicyActionResult catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 89%] Generating Python from MSG strands_executive_msgs/ExecutePolicyExtendedAction catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 89%] Generating Python from MSG strands_executive_msgs/ExecutePolicyExtendedActionGoal catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 90%] Generating Python from MSG strands_executive_msgs/ExecutePolicyExtendedResult catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 90%] Generating Python from MSG strands_executive_msgs/DurationList catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/DurationList.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg [ 91%] Generating Python code from SRV strands_executive_msgs/GetActiveTasks catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetActiveTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 91%] Generating Python code from SRV strands_executive_msgs/DemandTask catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/DemandTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 91%] Generating Python code from SRV strands_executive_msgs/IsTaskInterruptible catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/IsTaskInterruptible.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 92%] Generating Python code from SRV strands_executive_msgs/SetExecutionStatus catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/SetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 92%] Generating Python code from SRV strands_executive_msgs/AddTask catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 93%] Generating Python code from SRV strands_executive_msgs/UpdateNavStatistics catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/UpdateNavStatistics.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 93%] Generating Python code from SRV strands_executive_msgs/AddTasks catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 93%] Generating Python code from SRV strands_executive_msgs/AddDeleteSpecialWaypoint catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddDeleteSpecialWaypoint.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 94%] Generating Python code from SRV strands_executive_msgs/CancelTask catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/CancelTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 94%] Generating Python code from SRV strands_executive_msgs/GetGuaranteesForCoSafeTask catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetGuaranteesForCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 95%] Generating Python code from SRV strands_executive_msgs/GetExecutionStatus catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 95%] Generating Python code from SRV strands_executive_msgs/GetSchedule catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetSchedule.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 96%] Generating Python code from SRV strands_executive_msgs/AddCoSafeTasks catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddCoSafeTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 96%] Generating Python code from SRV strands_executive_msgs/DemandCoSafeTask catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/DemandCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 96%] Generating Python code from SRV strands_executive_msgs/GetSpecialWaypoints catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetSpecialWaypoints.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 97%] Generating Python code from SRV strands_executive_msgs/GetIDs catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetIDs.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 97%] Generating Python code from SRV strands_executive_msgs/CreateTask catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/CreateTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 98%] Generating Python code from SRV strands_executive_msgs/GetExpectedTravelTimesToWaypoint catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetExpectedTravelTimesToWaypoint.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/kinetic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/kinetic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv [ 98%] Generating Python msg __init__.py for strands_executive_msgs catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg --initpy [100%] Generating Python srv __init__.py for strands_executive_msgs catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py -o /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv --initpy make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [100%] Built target strands_executive_msgs_generate_messages_py make -f CMakeFiles/strands_executive_msgs_generate_messages.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages.dir/DependInfo.cmake --color= Scanning dependencies of target strands_executive_msgs_generate_messages make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/strands_executive_msgs_generate_messages.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/strands_executive_msgs_generate_messages.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [100%] Built target strands_executive_msgs_generate_messages make[3]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles 0 make[2]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1' debian/rules override_dh_auto_test make[1]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. echo -- Running tests. Even if one of them fails the build is not canceled. -- Running tests. Even if one of them fails the build is not canceled. if [ -f "/opt/ros/kinetic/setup.sh" ]; then . "/opt/ros/kinetic/setup.sh"; fi && \ dh_auto_test || true make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1' fakeroot debian/rules binary dh binary dh_testroot dh_prep Unknown option: buildsystem dh_prep: warning: ignored unknown options in DH_OPTIONS rm -f debian/ros-kinetic-strands-executive-msgs.substvars rm -f debian/ros-kinetic-strands-executive-msgs.*.debhelper rm -rf debian/ros-kinetic-strands-executive-msgs/ dh_installdirs Unknown option: buildsystem dh_installdirs: warning: ignored unknown options in DH_OPTIONS install -d debian/ros-kinetic-strands-executive-msgs debian/rules override_dh_auto_install make[1]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/kinetic/setup.sh" ]; then . "/opt/ros/kinetic/setup.sh"; fi && \ dh_auto_install cd obj-x86_64-linux-gnu make -j1 install DESTDIR=/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs AM_UPDATE_INFO_DIR=no make[2]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' /usr/bin/cmake -H/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 -B/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/progress.marks make -f CMakeFiles/Makefile2 all make[3]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionGoal.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionGoal.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionGoal.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg strands_executive_msgs/ExecutePolicyGoal:actionlib_msgs/GoalID:std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionGoal make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetActiveTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetActiveTasks.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetActiveTasks.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetActiveTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetActiveTasks.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetActiveTasks.srv mongodb_store_msgs/StringPair:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetActiveTasks make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTask.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTask.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTask.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddTask.srv mongodb_store_msgs/StringPair:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_AddTask make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskEvent.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskEvent.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskEvent.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskEvent.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskEvent.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/TaskEvent.msg mongodb_store_msgs/StringPair:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_TaskEvent make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedGoal.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedGoal.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedGoal.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedGoal.msg strands_executive_msgs/StringTriple:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedGoal make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSpecialWaypoints.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSpecialWaypoints.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSpecialWaypoints.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSpecialWaypoints.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSpecialWaypoints.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetSpecialWaypoints.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetSpecialWaypoints make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpDomainSpec.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpDomainSpec.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpDomainSpec.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpDomainSpec.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpDomainSpec.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpDomainSpec.msg strands_executive_msgs/StringTriple:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_MdpDomainSpec make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionGoal.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionGoal.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionGoal.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionGoal.msg actionlib_msgs/GoalID:std_msgs/Header:strands_executive_msgs/ExecutePolicyExtendedGoal:strands_executive_msgs/MdpStateVar:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:mongodb_store_msgs/StringPair make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionGoal make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyGoal.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyGoal.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyGoal.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyGoal make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionFeedback.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionFeedback.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionFeedback.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg strands_executive_msgs/ExecutePolicyFeedback:actionlib_msgs/GoalID:std_msgs/Header:actionlib_msgs/GoalStatus make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionFeedback make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringTriple.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringTriple.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringTriple.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringTriple.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringTriple.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/StringTriple.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_StringTriple make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/DemandCoSafeTask.srv strands_executive_msgs/StringTriple:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask make -f CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/std_msgs_generate_messages_nodejs.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/std_msgs_generate_messages_nodejs.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_nodejs.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target std_msgs_generate_messages_nodejs make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExpectedTravelTimesToWaypoint.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExpectedTravelTimesToWaypoint.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExpectedTravelTimesToWaypoint.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExpectedTravelTimesToWaypoint.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExpectedTravelTimesToWaypoint.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetExpectedTravelTimesToWaypoint.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetExpectedTravelTimesToWaypoint make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyAction.msg strands_executive_msgs/ExecutePolicyFeedback:actionlib_msgs/GoalStatus:strands_executive_msgs/ExecutePolicyActionGoal:strands_executive_msgs/ExecutePolicyActionResult:strands_executive_msgs/ExecutePolicyGoal:strands_executive_msgs/ExecutePolicyResult:actionlib_msgs/GoalID:strands_executive_msgs/ExecutePolicyActionFeedback:std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction make -f CMakeFiles/mongodb_store_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_nodejs.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/mongodb_store_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/mongodb_store_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_nodejs.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/mongodb_store_msgs_generate_messages_nodejs.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target mongodb_store_msgs_generate_messages_nodejs make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddCoSafeTasks.srv strands_executive_msgs/StringTriple:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpTask:strands_executive_msgs/MdpAction make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyResult.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyResult.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyResult.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyResult.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyResult make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedResult.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedResult.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedResult.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedResult.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedResult make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExecutionStatus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExecutionStatus.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExecutionStatus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetExecutionStatus.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetExecutionStatus make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetIDs.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetIDs.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetIDs.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetIDs.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetIDs.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetIDs.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetIDs make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelTask.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelTask.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelTask.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/CancelTask.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_CancelTask make -f CMakeFiles/actionlib_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_nodejs.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/actionlib_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/actionlib_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_nodejs.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/actionlib_msgs_generate_messages_nodejs.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target actionlib_msgs_generate_messages_nodejs make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpTask.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpTask.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpTask.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpTask.msg strands_executive_msgs/StringTriple:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_MdpTask make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_Task.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_Task.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_Task.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_Task.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_Task.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/Task.msg mongodb_store_msgs/StringPair make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_Task make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CreateTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CreateTask.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CreateTask.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CreateTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CreateTask.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/CreateTask.srv mongodb_store_msgs/StringPair:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_CreateTask make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddDeleteSpecialWaypoint.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddDeleteSpecialWaypoint.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddDeleteSpecialWaypoint.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddDeleteSpecialWaypoint.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddDeleteSpecialWaypoint.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddDeleteSpecialWaypoint.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_AddDeleteSpecialWaypoint make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSchedule.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSchedule.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSchedule.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSchedule.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetSchedule.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetSchedule.srv strands_executive_msgs/DurationList:strands_executive_msgs/DurationMatrix:mongodb_store_msgs/StringPair:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetSchedule make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringIntPair.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringIntPair.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringIntPair.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringIntPair.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringIntPair.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/StringIntPair.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_StringIntPair make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_UpdateNavStatistics.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_UpdateNavStatistics.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_UpdateNavStatistics.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_UpdateNavStatistics.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_UpdateNavStatistics.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/UpdateNavStatistics.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_UpdateNavStatistics make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationMatrix.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationMatrix.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationMatrix.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationMatrix.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationMatrix.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/DurationMatrix.msg strands_executive_msgs/DurationList make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_DurationMatrix make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_LastTaskID.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_LastTaskID.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_LastTaskID.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_LastTaskID.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_LastTaskID.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/LastTaskID.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_LastTaskID make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpAction.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpAction.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpAction.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpAction.msg strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple:strands_executive_msgs/MdpActionOutcome:mongodb_store_msgs/StringPair make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_MdpAction make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionFeedback.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionFeedback.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionFeedback.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionFeedback.msg strands_executive_msgs/ExecutePolicyExtendedFeedback:actionlib_msgs/GoalID:std_msgs/Header:actionlib_msgs/GoalStatus make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionFeedback make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutionStatus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutionStatus.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutionStatus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/ExecutionStatus.msg mongodb_store_msgs/StringPair:std_msgs/Header:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutionStatus make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionResult.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionResult.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionResult.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionResult.msg strands_executive_msgs/ExecutePolicyExtendedResult:actionlib_msgs/GoalID:std_msgs/Header:actionlib_msgs/GoalStatus make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedActionResult make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandTask.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandTask.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandTask.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/DemandTask.srv mongodb_store_msgs/StringPair:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_DemandTask make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpActionOutcome.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpActionOutcome.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpActionOutcome.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpActionOutcome.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpActionOutcome.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpActionOutcome.msg strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_MdpActionOutcome make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpStateVar.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpStateVar.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpStateVar.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpStateVar.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpStateVar.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/MdpStateVar.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_MdpStateVar make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTasks.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTasks.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTasks.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/AddTasks.srv mongodb_store_msgs/StringPair:strands_executive_msgs/Task make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_AddTasks make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_SetExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_SetExecutionStatus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_SetExecutionStatus.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_SetExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_SetExecutionStatus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/SetExecutionStatus.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_SetExecutionStatus make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_IsTaskInterruptible.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_IsTaskInterruptible.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_IsTaskInterruptible.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_IsTaskInterruptible.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_IsTaskInterruptible.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/IsTaskInterruptible.srv make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_IsTaskInterruptible make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedFeedback.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedFeedback.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedFeedback.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedFeedback.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedFeedback make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionResult.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionResult.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionResult.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg strands_executive_msgs/ExecutePolicyResult:actionlib_msgs/GoalID:std_msgs/Header:actionlib_msgs/GoalStatus make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionResult make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedAction.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedAction.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedAction.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyExtendedAction.msg strands_executive_msgs/ExecutePolicyExtendedActionFeedback:strands_executive_msgs/MdpAction:std_msgs/Header:strands_executive_msgs/ExecutePolicyExtendedGoal:strands_executive_msgs/MdpStateVar:strands_executive_msgs/ExecutePolicyExtendedActionResult:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/ExecutePolicyExtendedResult:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/ExecutePolicyExtendedActionGoal:actionlib_msgs/GoalStatus:actionlib_msgs/GoalID:strands_executive_msgs/ExecutePolicyExtendedFeedback:mongodb_store_msgs/StringPair make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyExtendedAction make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationList.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationList.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationList.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationList.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationList.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg/DurationList.msg make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_DurationList make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' catkin_generated/env_cached.sh /usr/bin/python /opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv/GetGuaranteesForCoSafeTask.srv strands_executive_msgs/StringTriple:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask make -f CMakeFiles/strands_executive_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_nodejs.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/strands_executive_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_nodejs.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/strands_executive_msgs_generate_messages_nodejs.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 19%] Built target strands_executive_msgs_generate_messages_nodejs make -f CMakeFiles/actionlib_msgs_generate_messages_cpp.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_cpp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/actionlib_msgs_generate_messages_cpp.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/actionlib_msgs_generate_messages_cpp.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_cpp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/actionlib_msgs_generate_messages_cpp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 19%] Built target actionlib_msgs_generate_messages_cpp make -f CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make CMakeFiles/std_msgs_generate_messages_cpp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make CMakeFiles/std_msgs_generate_messages_cpp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_cpp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 19%] Built target std_msgs_generate_messages_cpp make -f CMakeFiles/mongodb_store_msgs_generate_messages_cpp.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_cpp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/mongodb_store_msgs_generate_messages_cpp.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/mongodb_store_msgs_generate_messages_cpp.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_cpp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/mongodb_store_msgs_generate_messages_cpp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 19%] Built target mongodb_store_msgs_generate_messages_cpp make -f CMakeFiles/strands_executive_msgs_generate_messages_cpp.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_cpp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages_cpp.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/strands_executive_msgs_generate_messages_cpp.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_cpp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/strands_executive_msgs_generate_messages_cpp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 39%] Built target strands_executive_msgs_generate_messages_cpp make -f CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 39%] Built target actionlib_msgs_generate_messages_lisp make -f CMakeFiles/mongodb_store_msgs_generate_messages_lisp.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_lisp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/mongodb_store_msgs_generate_messages_lisp.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/mongodb_store_msgs_generate_messages_lisp.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_lisp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/mongodb_store_msgs_generate_messages_lisp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 39%] Built target mongodb_store_msgs_generate_messages_lisp make -f CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make CMakeFiles/std_msgs_generate_messages_lisp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make CMakeFiles/std_msgs_generate_messages_lisp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_lisp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 39%] Built target std_msgs_generate_messages_lisp make -f CMakeFiles/strands_executive_msgs_generate_messages_lisp.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_lisp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages_lisp.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/strands_executive_msgs_generate_messages_lisp.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_lisp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/strands_executive_msgs_generate_messages_lisp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 59%] Built target strands_executive_msgs_generate_messages_lisp make -f CMakeFiles/actionlib_msgs_generate_messages_eus.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_eus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/actionlib_msgs_generate_messages_eus.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/actionlib_msgs_generate_messages_eus.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_eus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/actionlib_msgs_generate_messages_eus.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 59%] Built target actionlib_msgs_generate_messages_eus make -f CMakeFiles/std_msgs_generate_messages_eus.dir/build.make CMakeFiles/std_msgs_generate_messages_eus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/std_msgs_generate_messages_eus.dir/build.make CMakeFiles/std_msgs_generate_messages_eus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_eus.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 59%] Built target std_msgs_generate_messages_eus make -f CMakeFiles/mongodb_store_msgs_generate_messages_eus.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_eus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/mongodb_store_msgs_generate_messages_eus.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/mongodb_store_msgs_generate_messages_eus.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_eus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/mongodb_store_msgs_generate_messages_eus.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 59%] Built target mongodb_store_msgs_generate_messages_eus make -f CMakeFiles/strands_executive_msgs_generate_messages_eus.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_eus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages_eus.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/strands_executive_msgs_generate_messages_eus.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_eus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/strands_executive_msgs_generate_messages_eus.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 79%] Built target strands_executive_msgs_generate_messages_eus make -f CMakeFiles/mongodb_store_msgs_generate_messages_py.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_py.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/mongodb_store_msgs_generate_messages_py.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/mongodb_store_msgs_generate_messages_py.dir/build.make CMakeFiles/mongodb_store_msgs_generate_messages_py.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/mongodb_store_msgs_generate_messages_py.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 79%] Built target mongodb_store_msgs_generate_messages_py make -f CMakeFiles/actionlib_msgs_generate_messages_py.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_py.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/actionlib_msgs_generate_messages_py.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/actionlib_msgs_generate_messages_py.dir/build.make CMakeFiles/actionlib_msgs_generate_messages_py.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/actionlib_msgs_generate_messages_py.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 79%] Built target actionlib_msgs_generate_messages_py make -f CMakeFiles/std_msgs_generate_messages_py.dir/build.make CMakeFiles/std_msgs_generate_messages_py.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/std_msgs_generate_messages_py.dir/build.make CMakeFiles/std_msgs_generate_messages_py.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_py.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [ 79%] Built target std_msgs_generate_messages_py make -f CMakeFiles/strands_executive_msgs_generate_messages_py.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_py.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages_py.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/strands_executive_msgs_generate_messages_py.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages_py.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/strands_executive_msgs_generate_messages_py.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [100%] Built target strands_executive_msgs_generate_messages_py make -f CMakeFiles/strands_executive_msgs_generate_messages.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make -f CMakeFiles/strands_executive_msgs_generate_messages.dir/build.make CMakeFiles/strands_executive_msgs_generate_messages.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/strands_executive_msgs_generate_messages.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' [100%] Built target strands_executive_msgs_generate_messages make[3]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/CMakeFiles 0 make -f CMakeFiles/Makefile2 preinstall make[3]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' make[3]: Nothing to be done for 'preinstall'. make[3]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' Install the project... /usr/bin/cmake -P cmake_install.cmake -- Install configuration: "None" + cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 + mkdir -p /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages + /usr/bin/env PYTHONPATH=/opt/ros/kinetic/lib/python2.7/dist-packages:/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/lib/python2.7/dist-packages:/opt/ros/kinetic/lib/python2.7/dist-packages:/tmp/ros_buildfarm: CATKIN_BINARY_DIR=/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu /usr/bin/python /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/setup.py build --build-base /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu install --root=/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs --install-layout=deb --prefix=/opt/ros/kinetic --install-scripts=/opt/ros/kinetic/bin running build running build_py creating /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7 creating /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/strands_executive_msgs copying src/strands_executive_msgs/task_utils.py -> /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/strands_executive_msgs copying src/strands_executive_msgs/__init__.py -> /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/strands_executive_msgs copying src/strands_executive_msgs/mdp_action_utils.py -> /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/strands_executive_msgs copying src/strands_executive_msgs/abstract_task_server.py -> /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/strands_executive_msgs running install running install_lib creating /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs copying /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/strands_executive_msgs/task_utils.py -> /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs copying /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/strands_executive_msgs/__init__.py -> /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs copying /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/strands_executive_msgs/mdp_action_utils.py -> /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs copying /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/strands_executive_msgs/abstract_task_server.py -> /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs byte-compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/task_utils.py to task_utils.pyc byte-compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/__init__.py to __init__.pyc byte-compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/mdp_action_utils.py to mdp_action_utils.pyc byte-compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/abstract_task_server.py to abstract_task_server.pyc running install_egg_info Writing /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs-1.2.1.egg-info -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/Task.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/ExecutionStatus.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/TaskEvent.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/DurationList.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/DurationMatrix.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/MdpAction.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/MdpActionOutcome.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/MdpStateVar.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/StringIntPair.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/StringTriple.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/MdpDomainSpec.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/MdpTask.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/LastTaskID.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/AddTask.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/AddTasks.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/AddCoSafeTasks.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/CreateTask.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/DemandTask.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/CancelTask.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/SetExecutionStatus.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/GetExecutionStatus.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/GetSchedule.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/GetExpectedTravelTimesToWaypoint.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/UpdateNavStatistics.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/AddDeleteSpecialWaypoint.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/GetSpecialWaypoints.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/IsTaskInterruptible.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/GetActiveTasks.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/GetGuaranteesForCoSafeTask.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/GetIDs.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/srv/DemandCoSafeTask.srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/action/ExecutePolicy.action -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/action/ExecutePolicyExtended.action -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/ExecutePolicyAction.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/ExecutePolicyResult.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/ExecutePolicyExtendedAction.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionGoal.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionResult.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/ExecutePolicyExtendedActionFeedback.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/ExecutePolicyExtendedGoal.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/ExecutePolicyExtendedResult.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/msg/ExecutePolicyExtendedFeedback.msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/cmake/strands_executive_msgs-msg-paths.cmake -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/DemandTaskRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/MdpDomainSpec.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/AddTaskRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/AddTasksResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/CreateTaskRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/AddTasksRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetIDsRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/ExecutePolicyAction.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/ExecutePolicyFeedback.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/ExecutePolicyActionResult.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/IsTaskInterruptibleRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/ExecutePolicyActionFeedback.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/ExecutionStatus.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/ExecutePolicyExtendedResult.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetActiveTasksResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/MdpTask.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetExecutionStatusRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/CreateTaskResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetScheduleRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/AddTask.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/AddDeleteSpecialWaypointRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/MdpStateVar.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetGuaranteesForCoSafeTask.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/ExecutePolicyResult.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/TaskEvent.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/SetExecutionStatusResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/IsTaskInterruptible.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/AddTasks.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetGuaranteesForCoSafeTaskResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/UpdateNavStatisticsRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/ExecutePolicyExtendedActionGoal.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetExpectedTravelTimesToWaypointResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetIDs.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/UpdateNavStatisticsResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/ExecutePolicyExtendedGoal.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/IsTaskInterruptibleResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/AddCoSafeTasksResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetExpectedTravelTimesToWaypoint.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/DemandCoSafeTaskRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/DemandTaskResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/SetExecutionStatus.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetScheduleResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetActiveTasks.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/MdpAction.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/DemandCoSafeTask.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/ExecutePolicyExtendedActionFeedback.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetSpecialWaypointsRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/CancelTaskResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/CreateTask.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/DemandCoSafeTaskResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/CancelTaskRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/ExecutePolicyExtendedAction.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetExecutionStatus.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/AddDeleteSpecialWaypoint.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/DurationMatrix.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/DurationList.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/MdpActionOutcome.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetExecutionStatusResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/DemandTask.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/ExecutePolicyActionGoal.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetActiveTasksRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/LastTaskID.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/ExecutePolicyGoal.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/StringTriple.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/ExecutePolicyExtendedFeedback.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/AddTaskResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetSchedule.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetExpectedTravelTimesToWaypointRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/AddDeleteSpecialWaypointResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/AddCoSafeTasks.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/UpdateNavStatistics.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetGuaranteesForCoSafeTaskRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/SetExecutionStatusRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetSpecialWaypoints.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/Task.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/CancelTask.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/AddCoSafeTasksRequest.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/ExecutePolicyExtendedActionResult.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetSpecialWaypointsResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/StringIntPair.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/include/strands_executive_msgs/GetIDsResponse.h -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/SetExecutionStatus.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/CancelTask.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/GetExpectedTravelTimesToWaypoint.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/AddDeleteSpecialWaypoint.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/AddTasks.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/GetSchedule.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/GetSpecialWaypoints.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/DemandTask.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/CreateTask.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/GetGuaranteesForCoSafeTask.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/GetIDs.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/AddCoSafeTasks.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/DemandCoSafeTask.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/UpdateNavStatistics.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/GetActiveTasks.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/AddTask.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/GetExecutionStatus.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/srv/IsTaskInterruptible.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/StringIntPair.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/MdpDomainSpec.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyExtendedGoal.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyActionFeedback.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyActionResult.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/MdpStateVar.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/DurationMatrix.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyFeedback.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/MdpAction.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/LastTaskID.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyExtendedFeedback.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyExtendedAction.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyExtendedActionFeedback.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/TaskEvent.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/Task.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/MdpActionOutcome.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyResult.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/ExecutionStatus.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyExtendedActionGoal.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyExtendedResult.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/DurationList.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyGoal.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyExtendedActionResult.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/StringTriple.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyAction.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/MdpTask.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyActionGoal.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/roseus/ros/strands_executive_msgs/manifest.l -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_DemandTask.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_GetIDs.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_UpdateNavStatistics.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/GetIDs.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_GetActiveTasks.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/CancelTask.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_GetSchedule.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_AddTask.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/CreateTask.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_DemandCoSafeTask.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/AddTasks.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_CancelTask.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/AddTask.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_AddCoSafeTasks.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/GetExecutionStatus.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_GetSpecialWaypoints.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_AddTasks.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/DemandCoSafeTask.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/AddCoSafeTasks.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_GetExpectedTravelTimesToWaypoint.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/GetSpecialWaypoints.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/GetGuaranteesForCoSafeTask.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_IsTaskInterruptible.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_GetGuaranteesForCoSafeTask.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/GetExpectedTravelTimesToWaypoint.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/IsTaskInterruptible.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/UpdateNavStatistics.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/GetActiveTasks.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_CreateTask.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/SetExecutionStatus.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/AddDeleteSpecialWaypoint.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/DemandTask.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/strands_executive_msgs-srv.asd -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_GetExecutionStatus.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_AddDeleteSpecialWaypoint.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/GetSchedule.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/srv/_package_SetExecutionStatus.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_DurationList.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyGoal.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/StringTriple.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_MdpActionOutcome.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_DurationMatrix.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/MdpDomainSpec.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyAction.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/MdpAction.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/MdpActionOutcome.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyResult.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyExtendedActionResult.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/MdpStateVar.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyActionFeedback.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/MdpTask.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyExtendedActionGoal.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_Task.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutionStatus.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/LastTaskID.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyExtendedGoal.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_StringTriple.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyExtendedResult.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyGoal.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyResult.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyActionGoal.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyActionResult.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyExtendedAction.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyActionResult.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyExtendedActionFeedback.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_MdpTask.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/TaskEvent.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyExtendedAction.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutionStatus.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_MdpDomainSpec.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyFeedback.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyExtendedActionFeedback.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyActionFeedback.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/DurationList.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyAction.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyFeedback.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyExtendedFeedback.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/strands_executive_msgs-msg.asd -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyActionGoal.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/DurationMatrix.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_MdpAction.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/StringIntPair.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyExtendedActionResult.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyExtendedResult.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyExtendedActionGoal.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_MdpStateVar.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/Task.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_LastTaskID.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyExtendedFeedback.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_StringIntPair.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyExtendedGoal.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/common-lisp/ros/strands_executive_msgs/msg/_package_TaskEvent.lisp -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/AddTask.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/GetSpecialWaypoints.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/GetExpectedTravelTimesToWaypoint.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/DemandCoSafeTask.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/CreateTask.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/GetGuaranteesForCoSafeTask.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/CancelTask.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/AddDeleteSpecialWaypoint.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/GetActiveTasks.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/IsTaskInterruptible.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/UpdateNavStatistics.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/DemandTask.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/SetExecutionStatus.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/GetIDs.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/GetExecutionStatus.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/AddTasks.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/AddCoSafeTasks.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/_index.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/srv/GetSchedule.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/DurationList.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyExtendedActionFeedback.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/StringIntPair.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyExtendedActionResult.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyExtendedActionGoal.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/MdpDomainSpec.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyExtendedResult.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutionStatus.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyResult.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyActionGoal.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/Task.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyExtendedAction.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/MdpStateVar.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/DurationMatrix.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyAction.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyActionFeedback.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyActionResult.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/MdpActionOutcome.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/LastTaskID.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyExtendedGoal.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/MdpTask.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyFeedback.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyExtendedFeedback.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/TaskEvent.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/StringTriple.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/_index.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyGoal.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/msg/MdpAction.js -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/gennodejs/ros/strands_executive_msgs/_index.js Listing /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/__init__.py ... Listing /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_DurationList.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_DurationMatrix.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyAction.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionFeedback.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionGoal.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionResult.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedAction.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedActionFeedback.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedActionGoal.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedActionResult.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedFeedback.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedGoal.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedResult.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyFeedback.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyGoal.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyResult.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutionStatus.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_LastTaskID.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpAction.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpActionOutcome.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpDomainSpec.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpStateVar.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpTask.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_StringIntPair.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_StringTriple.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_Task.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_TaskEvent.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/__init__.py ... Listing /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddCoSafeTasks.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddDeleteSpecialWaypoint.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddTask.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddTasks.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_CancelTask.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_CreateTask.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_DemandCoSafeTask.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_DemandTask.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetActiveTasks.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetExecutionStatus.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetExpectedTravelTimesToWaypoint.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetGuaranteesForCoSafeTask.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetIDs.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetSchedule.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetSpecialWaypoints.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_IsTaskInterruptible.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_SetExecutionStatus.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_UpdateNavStatistics.py ... Compiling /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/__init__.py ... -- Up-to-date: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_IsTaskInterruptible.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetSpecialWaypoints.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddDeleteSpecialWaypoint.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddTasks.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetActiveTasks.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetIDs.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddTasks.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_DemandCoSafeTask.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetExecutionStatus.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_CreateTask.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetSpecialWaypoints.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetExpectedTravelTimesToWaypoint.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetExpectedTravelTimesToWaypoint.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddCoSafeTasks.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetSchedule.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_DemandTask.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddCoSafeTasks.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_SetExecutionStatus.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddTask.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetGuaranteesForCoSafeTask.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetGuaranteesForCoSafeTask.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_CancelTask.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_CreateTask.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_CancelTask.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_DemandTask.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetExecutionStatus.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_SetExecutionStatus.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddDeleteSpecialWaypoint.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddTask.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetIDs.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_UpdateNavStatistics.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_DemandCoSafeTask.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetActiveTasks.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetSchedule.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_UpdateNavStatistics.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_IsTaskInterruptible.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutionStatus.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_StringIntPair.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpStateVar.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedResult.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_StringIntPair.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedActionResult.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_StringTriple.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionResult.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpActionOutcome.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyAction.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_StringTriple.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_DurationMatrix.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedGoal.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyResult.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedActionGoal.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpDomainSpec.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyResult.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_Task.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpActionOutcome.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutionStatus.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_TaskEvent.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_LastTaskID.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedResult.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpAction.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpTask.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedFeedback.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_Task.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyFeedback.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_DurationList.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyAction.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionGoal.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpDomainSpec.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedAction.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_DurationMatrix.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyFeedback.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedActionResult.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedGoal.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyGoal.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_LastTaskID.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionFeedback.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedAction.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionGoal.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedActionFeedback.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpAction.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedActionGoal.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpTask.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_TaskEvent.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionFeedback.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedFeedback.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_DurationList.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyExtendedActionFeedback.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyGoal.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionResult.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpStateVar.pyc -- Up-to-date: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs -- Up-to-date: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/__init__.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/srv/__init__.pyc -- Up-to-date: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/__init__.py -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/python2.7/dist-packages/strands_executive_msgs/msg/__init__.pyc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/lib/pkgconfig/strands_executive_msgs.pc -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/cmake/strands_executive_msgs-msg-extras.cmake -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/cmake/strands_executive_msgsConfig.cmake -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/cmake/strands_executive_msgsConfig-version.cmake -- Installing: /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs/opt/ros/kinetic/share/strands_executive_msgs/package.xml make[2]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1' dh_install Unknown option: buildsystem dh_install: warning: ignored unknown options in DH_OPTIONS dh_installdocs Unknown option: buildsystem dh_installdocs: warning: ignored unknown options in DH_OPTIONS install -d debian/ros-kinetic-strands-executive-msgs/usr/share/doc/ros-kinetic-strands-executive-msgs dh_installchangelogs Unknown option: buildsystem dh_installchangelogs: warning: ignored unknown options in DH_OPTIONS install -p -m0644 debian/changelog debian/ros-kinetic-strands-executive-msgs/usr/share/doc/ros-kinetic-strands-executive-msgs/changelog.Debian dh_installexamples Unknown option: buildsystem dh_installexamples: warning: ignored unknown options in DH_OPTIONS dh_installman Unknown option: buildsystem dh_installman: warning: ignored unknown options in DH_OPTIONS dh_installcatalogs Unknown option: buildsystem dh_installcatalogs: warning: ignored unknown options in DH_OPTIONS dh_installcron Unknown option: buildsystem dh_installcron: warning: ignored unknown options in DH_OPTIONS dh_installdebconf Unknown option: buildsystem dh_installdebconf: warning: ignored unknown options in DH_OPTIONS install -d debian/ros-kinetic-strands-executive-msgs/DEBIAN dh_installemacsen Unknown option: buildsystem dh_installemacsen: warning: ignored unknown options in DH_OPTIONS dh_installifupdown Unknown option: buildsystem dh_installifupdown: warning: ignored unknown options in DH_OPTIONS dh_installinfo Unknown option: buildsystem dh_installinfo: warning: ignored unknown options in DH_OPTIONS dh_installinit Unknown option: buildsystem dh_installinit: warning: ignored unknown options in DH_OPTIONS dh_installmenu Unknown option: buildsystem dh_installmenu: warning: ignored unknown options in DH_OPTIONS dh_installmime Unknown option: buildsystem dh_installmime: warning: ignored unknown options in DH_OPTIONS dh_installmodules Unknown option: buildsystem dh_installmodules: warning: ignored unknown options in DH_OPTIONS dh_installlogcheck Unknown option: buildsystem dh_installlogcheck: warning: ignored unknown options in DH_OPTIONS dh_installlogrotate Unknown option: buildsystem dh_installlogrotate: warning: ignored unknown options in DH_OPTIONS dh_installpam Unknown option: buildsystem dh_installpam: warning: ignored unknown options in DH_OPTIONS dh_installppp Unknown option: buildsystem dh_installppp: warning: ignored unknown options in DH_OPTIONS dh_installudev Unknown option: buildsystem dh_installudev: warning: ignored unknown options in DH_OPTIONS dh_installgsettings Unknown option: buildsystem dh_installgsettings: warning: ignored unknown options in DH_OPTIONS dh_bugfiles Unknown option: buildsystem dh_bugfiles: warning: ignored unknown options in DH_OPTIONS dh_ucf Unknown option: buildsystem dh_ucf: warning: ignored unknown options in DH_OPTIONS dh_lintian Unknown option: buildsystem dh_lintian: warning: ignored unknown options in DH_OPTIONS dh_gconf Unknown option: buildsystem dh_gconf: warning: ignored unknown options in DH_OPTIONS dh_icons Unknown option: buildsystem dh_icons: warning: ignored unknown options in DH_OPTIONS dh_perl Unknown option: buildsystem dh_perl: warning: ignored unknown options in DH_OPTIONS dh_usrlocal Unknown option: buildsystem dh_usrlocal: warning: ignored unknown options in DH_OPTIONS dh_link Unknown option: buildsystem dh_link: warning: ignored unknown options in DH_OPTIONS dh_installwm Unknown option: buildsystem dh_installwm: warning: ignored unknown options in DH_OPTIONS dh_installxfonts Unknown option: buildsystem dh_installxfonts: warning: ignored unknown options in DH_OPTIONS dh_strip_nondeterminism Unknown option: buildsystem dh_strip_nondeterminism: warning: ignored unknown options in DH_OPTIONS dh_compress Unknown option: buildsystem dh_compress: warning: ignored unknown options in DH_OPTIONS cd debian/ros-kinetic-strands-executive-msgs chmod a-x usr/share/doc/ros-kinetic-strands-executive-msgs/changelog.Debian gzip -9nf usr/share/doc/ros-kinetic-strands-executive-msgs/changelog.Debian cd '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1' dh_fixperms Unknown option: buildsystem dh_fixperms: warning: ignored unknown options in DH_OPTIONS find debian/ros-kinetic-strands-executive-msgs -print0 2>/dev/null | xargs -0r chown --no-dereference 0:0 find debian/ros-kinetic-strands-executive-msgs ! -type l -print0 2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s find debian/ros-kinetic-strands-executive-msgs/usr/share/doc -type f ! -regex 'debian/ros-kinetic-strands-executive-msgs/usr/share/doc/[^/]*/examples/.*' -print0 2>/dev/null | xargs -0r chmod 0644 find debian/ros-kinetic-strands-executive-msgs/usr/share/doc -type d -print0 2>/dev/null | xargs -0r chmod 0755 find debian/ros-kinetic-strands-executive-msgs/usr/share/man debian/ros-kinetic-strands-executive-msgs/usr/man/ debian/ros-kinetic-strands-executive-msgs/usr/X11*/man/ -type f -print0 2>/dev/null | xargs -0r chmod 0644 find debian/ros-kinetic-strands-executive-msgs/usr/include -type f -print0 2>/dev/null | xargs -0r chmod 0644 find debian/ros-kinetic-strands-executive-msgs/usr/share/applications -type f -print0 2>/dev/null | xargs -0r chmod 0644 find debian/ros-kinetic-strands-executive-msgs/usr/lib/x86_64-linux-gnu/perl5/5.22 debian/ros-kinetic-strands-executive-msgs/usr/share/perl5 -type f -perm -5 -name '*.pm' -print0 2>/dev/null | xargs -0r chmod a-X find debian/ros-kinetic-strands-executive-msgs -perm -5 -type f \( -name '*.so.*' -o -name '*.so' -o -name '*.la' -o -name '*.a' -o -name '*.js' -o -name '*.css' -o -name '*.jpeg' -o -name '*.jpg' -o -name '*.png' -o -name '*.gif' -o -name '*.cmxs' \) -print0 2>/dev/null | xargs -0r chmod 0644 find debian/ros-kinetic-strands-executive-msgs/usr/lib -type f -name '*.ali' -print0 2>/dev/null | xargs -0r chmod uga-w dh_strip Unknown option: buildsystem dh_strip: warning: ignored unknown options in DH_OPTIONS dh_makeshlibs Unknown option: buildsystem dh_makeshlibs: warning: ignored unknown options in DH_OPTIONS rm -f debian/ros-kinetic-strands-executive-msgs/DEBIAN/shlibs debian/rules override_dh_shlibdeps make[1]: Entering directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/kinetic/setup.sh" ]; then . "/opt/ros/kinetic/setup.sh"; fi && \ dh_shlibdeps -l/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian/ros-kinetic-strands-executive-msgs//opt/ros/kinetic/lib/ Unknown option: buildsystem dh_shlibdeps: warning: ignored unknown options in DH_OPTIONS make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1' dh_installdeb Unknown option: buildsystem dh_installdeb: warning: ignored unknown options in DH_OPTIONS dh_gencontrol Unknown option: buildsystem dh_gencontrol: warning: ignored unknown options in DH_OPTIONS echo misc:Depends= >> debian/ros-kinetic-strands-executive-msgs.substvars echo misc:Pre-Depends= >> debian/ros-kinetic-strands-executive-msgs.substvars dpkg-gencontrol -pros-kinetic-strands-executive-msgs -ldebian/changelog -Tdebian/ros-kinetic-strands-executive-msgs.substvars -Pdebian/ros-kinetic-strands-executive-msgs dpkg-gencontrol: warning: Depends field of package ros-kinetic-strands-executive-msgs: unknown substitution variable ${shlibs:Depends} chmod 0644 debian/ros-kinetic-strands-executive-msgs/DEBIAN/control chown 0:0 debian/ros-kinetic-strands-executive-msgs/DEBIAN/control dh_md5sums Unknown option: buildsystem dh_md5sums: warning: ignored unknown options in DH_OPTIONS (cd debian/ros-kinetic-strands-executive-msgs >/dev/null ; find . -type f ! -regex './DEBIAN/.*' -printf '%P\0' | LC_ALL=C sort -z | xargs -r0 md5sum > DEBIAN/md5sums) >/dev/null chmod 0644 debian/ros-kinetic-strands-executive-msgs/DEBIAN/md5sums chown 0:0 debian/ros-kinetic-strands-executive-msgs/DEBIAN/md5sums dh_builddeb Unknown option: buildsystem dh_builddeb: warning: ignored unknown options in DH_OPTIONS dpkg-deb --build debian/ros-kinetic-strands-executive-msgs .. dpkg-deb: building package 'ros-kinetic-strands-executive-msgs' in '../ros-kinetic-strands-executive-msgs_1.2.1-0xenial-20180910-220619+0000_amd64.deb'. dpkg-genchanges -b >../ros-kinetic-strands-executive-msgs_1.2.1-0xenial-20180910-220619+0000_amd64.changes dpkg-genchanges: warning: debian/changelog(l11): found trailer where expected start of change data LINE: -- Nick Hawes Fri, 15 Sep 2017 00:00:00 -0000 dpkg-genchanges: binary-only upload (no source code included) dpkg-source --after-build ros-kinetic-strands-executive-msgs-1.2.1 dpkg-source: info: using options from ros-kinetic-strands-executive-msgs-1.2.1/debian/source/options: --auto-commit dpkg-buildpackage: binary-only upload (no source included) I: Successfully built in /tmp/binarydeb/ros-kinetic-strands-executive-msgs-1.2.1 # END SUBSECTION + echo # END SECTION # END SECTION [Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson7233669533122162871.sh + [ false = false ] + echo # BEGIN SECTION: Clean up to save disk space on slaves # BEGIN SECTION: Clean up to save disk space on slaves + chmod -R u+w /home/jenkins-slave/workspace/Kbin_uX64__strands_executive_msgs__ubuntu_xenial_amd64__binary/binarydeb + rm -fr binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/CHANGELOG.rst binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/CMakeLists.txt binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/action binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/debian binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/msg binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/obj-x86_64-linux-gnu binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/package.xml binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/setup.py binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/src binarydeb/ros-kinetic-strands-executive-msgs-1.2.1/srv + echo # END SECTION # END SECTION SSH: Connecting from host [lcas-buildfarm-slave-2] SSH: Connecting with configuration [repo] ... SSH: Disconnecting configuration [repo] ... SSH: Transferred 2 file(s) Build step 'Send files or execute commands over SSH' changed build result to SUCCESS Waiting for the completion of Krel_import-package Krel_import-package #3234 completed. Result was SUCCESS $ ssh-agent -k unset SSH_AUTH_SOCK; unset SSH_AGENT_PID; echo Agent pid 9340 killed; [ssh-agent] Stopped. [description-setter] Description set: 1.2.1-0xenial-20180910-220619+0000 Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered Triggering a new build of Krel_sync-packages-to-testing_xenial_amd64 Triggering a new build of Kbin_uX64__task_executor__ubuntu_xenial_amd64__binary Triggering a new build of Kbin_uX64__mdp_plan_exec__ubuntu_xenial_amd64__binary Triggering a new build of Kbin_uX64__scheduler__ubuntu_xenial_amd64__binary Triggering a new build of Kbin_uX64__wait_action__ubuntu_xenial_amd64__binary Triggering a new build of Kbin_uX64__gcal_routine__ubuntu_xenial_amd64__binary Finished: SUCCESS