Started by upstream project "Mbin_uB64__strands_navigation_msgs__ubuntu_bionic_amd64__binary" build number 3
originally caused by:
 Started by upstream project "Msrc_uB__strands_navigation_msgs__ubuntu_bionic__source" build number 3
 originally caused by:
  Started by upstream project "Mrel_trigger-jobs" build number 15731
  originally caused by:
   Started by timer
Running as SYSTEM
Building remotely on build client 2 (slave buildslave indigo_devel_default buildagent) in workspace /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_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-e4IMuYhJh46o/agent.8166
SSH_AGENT_PID=8168
[ssh-agent] Started.
Running ssh-add (command line suppressed)
Identity added: /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary@tmp/private_key_5852847239675868050.key (/home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary@tmp/private_key_5852847239675868050.key)
[ssh-agent] Using credentials jenkins-slave

# BEGIN SECTION: Check upstream projects
Verify that no recursive upstream project is broken:

- 'Mbin_uB64__strands_navigation_msgs__ubuntu_bionic_amd64__binary' build '3' has result 'SUCCESS'
  - 'Msrc_uB__strands_navigation_msgs__ubuntu_bionic__source' build '3' has result 'SUCCESS'
- 'Msrc_uB__strands_executive_msgs__ubuntu_bionic__source' build '1' has result 'SUCCESS'
All recursive upstream projects are (un)stable
# END SECTION

# BEGIN SECTION: Check free disk space
Usable disk space = 53368836096 bytes
Free space threshold = 5368709120 bytes
# END SECTION
[Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins6158791072014152755.sh
+ echo # BEGIN SECTION: docker version
# BEGIN SECTION: docker version
+ docker version
Client:
 Version:      17.05.0-ce
 API version:  1.29
 Go version:   go1.7.5
 Git commit:   89658be
 Built:        Thu May  4 22:06:06 2017
 OS/Arch:      linux/amd64

Server:
 Version:      17.05.0-ce
 API version:  1.29 (minimum version 1.12)
 Go version:   go1.7.5
 Git commit:   89658be
 Built:        Thu May  4 22:06:06 2017
 OS/Arch:      linux/amd64
 Experimental: false
+ echo # END SECTION
# END SECTION
+ echo # BEGIN SECTION: docker info
# BEGIN SECTION: docker info
+ docker info
Containers: 43
 Running: 2
 Paused: 0
 Stopped: 41
Images: 1069
Server Version: 17.05.0-ce
Storage Driver: aufs
 Root Dir: /var/lib/docker/aufs
 Backing Filesystem: extfs
 Dirs: 825
 Dirperm1 Supported: false
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins: 
 Volume: local
 Network: bridge host macvlan null overlay
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 9048e5e50717ea4497b757314bad98ea3763c145
runc version: 9c2d8d184e5da67c95d601382adf14862e4f2228
init version: 949e6fa
Security Options:
 apparmor
Kernel Version: 3.13.0-29-generic
Operating System: Ubuntu 14.04 LTS
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 3.861GiB
Name: lcas-buildfarm-slave-1
ID: LZSS:PF7G:CREH:TEQW:FH57:3M6D:KCSS:ODQY:SPHA:ND7A:FHYG:PNDE
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Experimental: false
Insecure Registries:
 127.0.0.0/8
Live Restore Enabled: false

WARNING: No swap limit support
+ echo # END SECTION
# END SECTION
[Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins7576573260388240880.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:bionic true
+ echo 'docker run' returned 0
'docker run' returned 0
docker seems operational, continuing
[Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins6801278506076365609.sh
+ echo # END SECTION
# END SECTION
[Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins5142617687004324948.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
[Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins2454448619183202150.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 pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm
Invoking 'git clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm'
Cloning into 'ros_buildfarm'...
+ git -C ros_buildfarm --no-pager log -n 1
commit d123759755a1211d96b32ba87781c29d9b3a6f3f
Author: Marc Hanheide <marc@hanheide.net>
Date:   Mon Mar 9 21:12:45 2020 +0000

    Merge pull request #3 from LCAS/lcas_new
    
    many required fixed
+ rm -fr ros_buildfarm/.git
+ rm -fr ros_buildfarm/doc
+ echo # END SECTION
# END SECTION
[Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins372511574300084695.sh
+ echo # BEGIN SECTION: Write PGP repository keys
# BEGIN SECTION: Write PGP repository keys
+ mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/keys
+ rm -fr /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/keys/0.key /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/keys/1.key
+ 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: SKS 1.1.6
Comment: Hostname: keyserver.ubuntu.com

mQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L
/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw
DuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47
ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+
d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS
6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN
qoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL
8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/
/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz
vz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90
aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu
1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur
F8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN
KARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s
NGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv
ZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO
K+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo
bC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs
Fn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s
QNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR
hE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp
PWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd
=4Ofr
-----END PGP PUBLIC KEY BLOCK-----

+ echo # END SECTION
# END SECTION
[Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins1226579863368951279.sh
+ rm -fr /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/docker_generating_docker
+ mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/docker_generating_docker
+ sleep 1
+ python3 -u /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 8398 --cid-file /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_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/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/ros_buildfarm:
+ python3 -u /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/release/run_binarydeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic strands_executive_msgs ubuntu bionic 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/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/keys/0.key /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/keys/1.key --target-repository http://10.210.9.154/ubuntu/building --binarydeb-dir /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/binarydeb --dockerfile-dir /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/docker_generating_docker --env-vars --append-timestamp
Using the following distribution repositories:
  http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/keys/0.key)
  http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/keys/1.key)
Generating Dockerfile '/home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/docker_generating_docker/Dockerfile':
  # generated from release/binarydeb_create_task.Dockerfile.em
  
  FROM ubuntu:bionic
  
  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 -lt 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 -l -m buildfarm
  
  RUN mkdir /tmp/keys
  RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done
  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: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\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 bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list
  RUN echo deb-src http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list
  RUN echo deb http://packages.ros.org/ros/ubuntu bionic 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 && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-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        'Failed to stat',\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                'has no installation candidate',\n                'corrupted package archive',\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('')\n            print('Invocation failed due to the following known error '\n                  'conditions: ' + ', '.join(known_error_conditions))\n            print('')\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 "2020-04-20 (+0000)"
  
  RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 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 "2020-04-20 14:19:24 +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 melodic strands_executive_msgs --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py melodic 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 melodic strands_executive_msgs ubuntu bionic 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 --env-vars  --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/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/docker_generating_docker
+ python3 -u /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py
Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic
Check docker base image for updates: docker pull ubuntu:bionic
bionic: Pulling from library/ubuntu
Digest: sha256:bec5a2727be7fff3d308193cfde3491f8fba1a2ba392b7546b43a051853a341d
Status: Image is up to date for ubuntu:bionic
+ docker build --force-rm -t binarydeb_task_generation.melodic_ubuntu_bionic_amd64_strands_executive_msgs .
Sending build context to Docker daemon  20.99kB

Step 1/28 : FROM ubuntu:bionic
 ---> 4e5021d210f6
Step 2/28 : VOLUME /var/cache/apt/archives
 ---> Using cache
 ---> df7c84159595
Step 3/28 : ENV DEBIAN_FRONTEND noninteractive
 ---> Using cache
 ---> 59b0c94a00fe
Step 4/28 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done
 ---> Using cache
 ---> c27f478e278a
Step 5/28 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
 ---> Using cache
 ---> caf2d8a00919
Step 6/28 : RUN locale-gen en_US.UTF-8
 ---> Using cache
 ---> f0ee70252c6d
Step 7/28 : ENV LANG en_US.UTF-8
 ---> Using cache
 ---> e5a97b0611bb
Step 8/28 : ENV TZ GMT+00
 ---> Using cache
 ---> 5c14d75cad4c
Step 9/28 : RUN useradd -u 1002 -l -m buildfarm
 ---> Using cache
 ---> c8fbf7adaa18
Step 10/28 : RUN mkdir /tmp/keys
 ---> Using cache
 ---> 1849328c7675
Step 11/28 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done
 ---> Using cache
 ---> 6e6ab279d32b
Step 12/28 : 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
 ---> e3dd9cf3da06
Step 13/28 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key
 ---> Using cache
 ---> 70778070df25
Step 14/28 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list
 ---> Using cache
 ---> ab533b0a05e7
Step 15/28 : RUN echo deb-src http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list
 ---> Using cache
 ---> c584c4cf3907
Step 16/28 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list
 ---> Using cache
 ---> 4a008753a19d
Step 17/28 : RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list))
 ---> Using cache
 ---> 6f42f8c67c08
Step 18/28 : RUN mkdir /tmp/wrapper_scripts
 ---> Using cache
 ---> b0a9fb43c0c7
Step 19/28 : 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        'Failed to stat',\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                'has no installation candidate',\n                'corrupted package archive',\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('')\n            print('Invocation failed due to the following known error '\n                  'conditions: ' + ', '.join(known_error_conditions))\n            print('')\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
 ---> d5ccfb3d5af1
Step 20/28 : 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
 ---> 05caf15d6d16
Step 21/28 : RUN echo "2020-04-20 (+0000)"
 ---> Using cache
 ---> 2a1b5239d979
Step 22/28 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done
 ---> Using cache
 ---> 75bd99579ea1
Step 23/28 : 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
 ---> 881f366b431f
Step 24/28 : RUN echo "2020-04-20 14:19:24 +0000"
 ---> Running in 0f68f5bc8bc8
2020-04-20 14:19:24 +0000
 ---> 692a9a8c2b03
Removing intermediate container 0f68f5bc8bc8
Step 25/28 : RUN python3 -u /tmp/wrapper_scripts/apt.py update
 ---> Running in 4cd25f771733
Invoking 'apt-get update'
Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,826 B]
Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease
Get:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB]
Get:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]
Get:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]
Get:6 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]
Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease
Get:8 http://10.210.9.154/ubuntu/building bionic/main Sources [122 kB]
Get:9 http://10.210.9.154/ubuntu/building bionic/main amd64 Packages [150 kB]
Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,372 kB]
Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [1,183 kB]
Get:12 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [889 kB]
Fetched 4,059 kB in 3s (1,486 kB/s)
Reading package lists...
 ---> 4feab76dd697
Removing intermediate container 4cd25f771733
Step 26/28 : USER buildfarm
 ---> Running in 6f4ab191b537
 ---> d2d9c3f80de7
Removing intermediate container 6f4ab191b537
Step 27/28 : ENTRYPOINT sh -c
 ---> Running in 73d01c80df4f
 ---> a9609f568ca4
Removing intermediate container 73d01c80df4f
Step 28/28 : 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 melodic strands_executive_msgs --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py melodic 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 melodic strands_executive_msgs ubuntu bionic 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 --env-vars  --dockerfile-dir /tmp/docker_build_binarydeb
 ---> Running in 4fca072d30fb
 ---> 4344eeefda8e
Removing intermediate container 4fca072d30fb
Successfully built 4344eeefda8e
Successfully tagged binarydeb_task_generation.melodic_ubuntu_bionic_amd64_strands_executive_msgs:latest
+ echo # END SECTION
# END SECTION
+ echo # BEGIN SECTION: Run Dockerfile - binarydeb task
# BEGIN SECTION: Run Dockerfile - binarydeb task
+ [ -f /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/binarydeb ]
+ rm -fr /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/binarydeb
+ rm -fr /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/docker_build_binarydeb
+ mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/binarydeb
+ mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/docker_build_binarydeb
+ docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/docker_generating_docker/docker.cid -e=TRAVIS= -e=ROS_BUILDFARM_PULL_REQUEST_BRANCH= -v /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/docker_build_binarydeb:/tmp/docker_build_binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_task_generation.melodic_ubuntu_bionic_amd64_strands_executive_msgs
# BEGIN SUBSECTION: get sourcedeb
Invoking '/usr/bin/python3 /tmp/ros_buildfarm/ros_buildfarm/wrapper/apt.py source --download-only --only-source ros-melodic-strands-executive-msgs=1.2.5-1bionic'
Invoking 'apt-get source --download-only --only-source ros-melodic-strands-executive-msgs=1.2.5-1bionic'
Reading package lists...
Need to get 17.2 kB of source archives.
Get:1 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-strands-executive-msgs 1.2.5-1bionic (dsc) [1,305 B]
Get:2 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-strands-executive-msgs 1.2.5-1bionic (tar) [11.2 kB]
Get:3 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-strands-executive-msgs 1.2.5-1bionic (diff) [4,676 B]
Fetched 17.2 kB in 0s (392 kB/s)
Download complete and in download only mode
Invoking 'dpkg-source -x ros-melodic-strands-executive-msgs_1.2.5-1bionic.dsc'
dpkg-source: warning: extracting unsigned source package (ros-melodic-strands-executive-msgs_1.2.5-1bionic.dsc)
dpkg-source: info: extracting ros-melodic-strands-executive-msgs in ros-melodic-strands-executive-msgs-1.2.5
dpkg-source: info: unpacking ros-melodic-strands-executive-msgs_1.2.5.orig.tar.gz
dpkg-source: info: unpacking ros-melodic-strands-executive-msgs_1.2.5-1bionic.debian.tar.xz
Package maintainer emails: n.a.hawes@cs.bham.ac.uk
# END SUBSECTION
# BEGIN SUBSECTION: append build timestamp
Invoking 'debchange -v 1.2.5-1bionic.20200420.142014 -p -D bionic -u high -m Append timestamp when binarydeb was built.' in '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5'
# END SUBSECTION
Looking for the '.dsc' file of package 'ros-melodic-strands-executive-msgs' with version '1.2.5-1'
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:bionic
  
  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 -lt 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 -l -m buildfarm
  
  RUN mkdir /tmp/keys
  RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done
  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: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\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 bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list
  RUN echo deb http://packages.ros.org/ros/ubuntu bionic 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 && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-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        'Failed to stat',\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                'has no installation candidate',\n                'corrupted package archive',\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('')\n            print('Invocation failed due to the following known error '\n                  'conditions: ' + ', '.join(known_error_conditions))\n            print('')\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 "2020-04-20 (+0000)"
  
  RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done
  
  RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python
  
  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.2" && echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src debhelper
  RUN echo "ros-melodic-actionlib: 1.12.0-1bionic.20200320.122357" && echo "ros-melodic-actionlib-msgs: 1.12.7-0bionic.20200304.002803" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-actionlib ros-melodic-actionlib-msgs
  RUN echo "ros-melodic-catkin: 0.7.23-1bionic.20200303.045725" && echo "ros-melodic-geometry-msgs: 1.12.7-0bionic.20200304.003838" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin ros-melodic-geometry-msgs
  RUN echo "ros-melodic-message-generation: 0.4.1-1bionic.20200304.001834" && echo "ros-melodic-mongodb-store-msgs: 0.5.2-1bionic.20200320.135852" && echo "ros-melodic-rospy: 1.14.5-1bionic.20200320.104032" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-message-generation ros-melodic-mongodb-store-msgs ros-melodic-rospy
  RUN echo "ros-melodic-sensor-msgs: 1.12.7-0bionic.20200320.125228" && echo "ros-melodic-std-msgs: 0.5.12-0bionic.20200304.002412" && echo "ros-melodic-strands-navigation-msgs: 2.0.0-1bionic.20200420.134853" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-sensor-msgs ros-melodic-std-msgs ros-melodic-strands-navigation-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 melodic 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
[Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins2399058967528818975.sh
+ sleep 1
+ python3 -u /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 10561 --cid-file /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_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/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/docker_build_binarydeb
+ python3 -u /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py
Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic
Check docker base image for updates: docker pull ubuntu:bionic
bionic: Pulling from library/ubuntu
Digest: sha256:bec5a2727be7fff3d308193cfde3491f8fba1a2ba392b7546b43a051853a341d
Status: Image is up to date for ubuntu:bionic
+ docker build --force-rm -t binarydeb_build.melodic_ubuntu_bionic_amd64_strands_executive_msgs .
Sending build context to Docker daemon   21.5kB

Step 1/31 : FROM ubuntu:bionic
 ---> 4e5021d210f6
Step 2/31 : VOLUME /var/cache/apt/archives
 ---> Using cache
 ---> df7c84159595
Step 3/31 : ENV DEBIAN_FRONTEND noninteractive
 ---> Using cache
 ---> 59b0c94a00fe
Step 4/31 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done
 ---> Using cache
 ---> c27f478e278a
Step 5/31 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
 ---> Using cache
 ---> caf2d8a00919
Step 6/31 : RUN locale-gen en_US.UTF-8
 ---> Using cache
 ---> f0ee70252c6d
Step 7/31 : ENV LANG en_US.UTF-8
 ---> Using cache
 ---> e5a97b0611bb
Step 8/31 : ENV TZ GMT+00
 ---> Using cache
 ---> 5c14d75cad4c
Step 9/31 : RUN useradd -u 1002 -l -m buildfarm
 ---> Using cache
 ---> c8fbf7adaa18
Step 10/31 : RUN mkdir /tmp/keys
 ---> Using cache
 ---> 1849328c7675
Step 11/31 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done
 ---> Using cache
 ---> 6e6ab279d32b
Step 12/31 : 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
 ---> e3dd9cf3da06
Step 13/31 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key
 ---> Using cache
 ---> 70778070df25
Step 14/31 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list
 ---> Using cache
 ---> ab533b0a05e7
Step 15/31 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list
 ---> Using cache
 ---> aa21e6326d50
Step 16/31 : RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list))
 ---> Using cache
 ---> e5955f4e488d
Step 17/31 : RUN mkdir /tmp/wrapper_scripts
 ---> Using cache
 ---> d0013f0e1344
Step 18/31 : 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        'Failed to stat',\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                'has no installation candidate',\n                'corrupted package archive',\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('')\n            print('Invocation failed due to the following known error '\n                  'conditions: ' + ', '.join(known_error_conditions))\n            print('')\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
 ---> 2c6b2bcc562c
Step 19/31 : 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
 ---> e33f3366ad44
Step 20/31 : RUN echo "2020-04-20 (+0000)"
 ---> Using cache
 ---> 93f454de5a60
Step 21/31 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done
 ---> Using cache
 ---> ad1dbf1ac537
Step 22/31 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python
 ---> Using cache
 ---> d651064fd130
Step 23/31 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential
 ---> Using cache
 ---> 6e5f5c6dd916
Step 24/31 : RUN echo "apt-src: 0.25.2" && echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src debhelper
 ---> Using cache
 ---> 0e2000cc4f66
Step 25/31 : RUN echo "ros-melodic-actionlib: 1.12.0-1bionic.20200320.122357" && echo "ros-melodic-actionlib-msgs: 1.12.7-0bionic.20200304.002803" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-actionlib ros-melodic-actionlib-msgs
 ---> Running in bcae27f05d51
ros-melodic-actionlib: 1.12.0-1bionic.20200320.122357
ros-melodic-actionlib-msgs: 1.12.7-0bionic.20200304.002803
Invoking 'apt-get update'
Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,826 B]
Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease
Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease
Get:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]
Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease
Hit:6 http://packages.ros.org/ros/ubuntu bionic InRelease
Hit:7 http://security.ubuntu.com/ubuntu bionic-security InRelease
Get:8 http://10.210.9.154/ubuntu/building bionic/main amd64 Packages [150 kB]
Fetched 227 kB in 2s (144 kB/s)
Reading package lists...
Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-melodic-actionlib ros-melodic-actionlib-msgs'
Reading package lists...
Building dependency tree...
Reading state information...
Starting pkgProblemResolver with broken count: 0
Starting 2 pkgProblemResolver with broken count: 0
Done
The following additional packages will be installed:
  adwaita-icon-theme at-spi2-core bzip2-doc cmake cmake-data dbus
  dconf-gsettings-backend dconf-service default-libmysqlclient-dev
  distro-info-data docutils-common docutils-doc fontconfig fontconfig-config
  fonts-dejavu-core gir1.2-glib-2.0 gir1.2-harfbuzz-0.0 glib-networking
  glib-networking-common glib-networking-services google-mock googletest
  gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme
  humanity-icon-theme ibverbs-providers icu-devtools libapparmor1 libapr1
  libapr1-dev libaprutil1 libaprutil1-dev libarchive13 libassuan-dev
  libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data libatspi2.0-0 libavahi-client3
  libavahi-common-data libavahi-common3 libblas3 libboost-all-dev
  libboost-atomic-dev libboost-atomic1.65-dev libboost-atomic1.65.1
  libboost-chrono-dev libboost-chrono1.65-dev libboost-chrono1.65.1
  libboost-container-dev libboost-container1.65-dev libboost-container1.65.1
  libboost-context-dev libboost-context1.65-dev libboost-context1.65.1
  libboost-coroutine-dev libboost-coroutine1.65-dev libboost-coroutine1.65.1
  libboost-date-time-dev libboost-date-time1.65-dev libboost-date-time1.65.1
  libboost-dev libboost-exception-dev libboost-exception1.65-dev
  libboost-fiber-dev libboost-fiber1.65-dev libboost-fiber1.65.1
  libboost-filesystem-dev libboost-filesystem1.65-dev
  libboost-filesystem1.65.1 libboost-graph-dev libboost-graph-parallel-dev
  libboost-graph-parallel1.65-dev libboost-graph-parallel1.65.1
  libboost-graph1.65-dev libboost-graph1.65.1 libboost-iostreams-dev
  libboost-iostreams1.65-dev libboost-iostreams1.65.1 libboost-locale-dev
  libboost-locale1.65-dev libboost-locale1.65.1 libboost-log-dev
  libboost-log1.65-dev libboost-log1.65.1 libboost-math-dev
  libboost-math1.65-dev libboost-math1.65.1 libboost-mpi-dev
  libboost-mpi-python-dev libboost-mpi-python1.65-dev
  libboost-mpi-python1.65.1 libboost-mpi1.65-dev libboost-mpi1.65.1
  libboost-numpy-dev libboost-numpy1.65-dev libboost-numpy1.65.1
  libboost-program-options-dev libboost-program-options1.65-dev
  libboost-program-options1.65.1 libboost-python-dev libboost-python1.65-dev
  libboost-python1.65.1 libboost-random-dev libboost-random1.65-dev
  libboost-random1.65.1 libboost-regex-dev libboost-regex1.65-dev
  libboost-regex1.65.1 libboost-serialization-dev
  libboost-serialization1.65-dev libboost-serialization1.65.1
  libboost-signals-dev libboost-signals1.65-dev libboost-signals1.65.1
  libboost-stacktrace-dev libboost-stacktrace1.65-dev
  libboost-stacktrace1.65.1 libboost-system-dev libboost-system1.65-dev
  libboost-system1.65.1 libboost-test-dev libboost-test1.65-dev
  libboost-test1.65.1 libboost-thread-dev libboost-thread1.65-dev
  libboost-thread1.65.1 libboost-timer-dev libboost-timer1.65-dev
  libboost-timer1.65.1 libboost-tools-dev libboost-type-erasure-dev
  libboost-type-erasure1.65-dev libboost-type-erasure1.65.1 libboost-wave-dev
  libboost-wave1.65-dev libboost-wave1.65.1 libboost1.65-dev
  libboost1.65-tools-dev libbz2-dev libcairo-gobject2 libcairo2 libcolord2
  libconsole-bridge-dev libconsole-bridge0.4 libcups2 libdatrie1 libdbus-1-3
  libdconf1 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2
  libdrm-radeon1 libdrm2 libedit2 libelf1 libepoxy0 libexpat1-dev libfabric1
  libfontconfig1 libfreetype6 libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-bin
  libgdk-pixbuf2.0-common libgfortran4 libgirepository-1.0-1 libgl1
  libgl1-mesa-dri libglapi-mesa libglib2.0-bin libglib2.0-dev
  libglib2.0-dev-bin libglvnd0 libglx-mesa0 libglx0 libgpg-error-dev
  libgpgme-dev libgpgme11 libgraphite2-3 libgraphite2-dev libgtest-dev
  libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz-dev libharfbuzz-gobject0
  libharfbuzz-icu0 libharfbuzz0b libhwloc-dev libhwloc-plugins libhwloc5
  libibverbs-dev libibverbs1 libice6 libicu-dev libicu-le-hb-dev libicu-le-hb0
  libiculx60 libjbig0 libjpeg-turbo8 libjpeg8 libjson-glib-1.0-0
  libjson-glib-1.0-common libjsoncpp1 liblapack3 liblcms2-2 libldap2-dev
  libllvm9 liblog4cxx-dev liblog4cxx10v5 liblz4-dev liblzo2-2
  libmysqlclient-dev libmysqlclient20 libnl-3-200 libnl-route-3-200 libnotify4
  libnuma-dev libnuma1 libodbc1 libopenmpi-dev libopenmpi2 libpango-1.0-0
  libpangocairo-1.0-0 libpangoft2-1.0-0 libpaper-utils libpaper1 libpciaccess0
  libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpixman-1-0 libpng16-16
  libpoco-dev libpococrypto50 libpocodata50 libpocodatamysql50
  libpocodataodbc50 libpocodatasqlite50 libpocofoundation50 libpocojson50
  libpocomongodb50 libpoconet50 libpoconetssl50 libpocoredis50 libpocoutil50
  libpocoxml50 libpocozip50 libproxy1v5 libpsm-infinipath1 libpython-dev
  libpython-stdlib libpython2.7 libpython2.7-dev libpython2.7-minimal
  libpython2.7-stdlib libpython3-dev libpython3.6 libpython3.6-dev librdmacm1
  librest-0.7-0 librhash0 librsvg2-2 librsvg2-common libsctp-dev libsctp1
  libsensors4 libsm6 libsoup-gnome2.4-1 libsoup2.4-1 libsqlite3-dev libssl-dev
  libthai-data libthai0 libtiff5 libtinyxml2-6 libtinyxml2-dev libuuid1 libuv1
  libwayland-client0 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpdemux2
  libwebpmux3 libwxbase3.0-0v5 libwxgtk3.0-gtk3-0v5 libx11-6 libx11-data
  libx11-xcb1 libxau6 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0
  libxcb-render0 libxcb-shm0 libxcb-sync1 libxcb1 libxcomposite1 libxcursor1
  libxdamage1 libxdmcp6 libxext6 libxfixes3 libxi6 libxinerama1 libxkbcommon0
  libxrandr2 libxrender1 libxshmfence1 libxtst6 libxxf86vm1 libyaml-0-2
  lsb-release mpi-default-bin mpi-default-dev multiarch-support mysql-common
  notification-daemon ocl-icd-libopencl1 openmpi-bin openmpi-common pkg-config
  python python-asn1crypto python-catkin-pkg python-catkin-pkg-modules
  python-cffi-backend python-chardet python-cryptography python-dateutil
  python-defusedxml python-dev python-docutils python-empy python-enum34
  python-gnupg python-idna python-ipaddress python-minimal python-netifaces
  python-nose python-numpy python-olefile python-paramiko python-pil
  python-pkg-resources python-pyasn1 python-pycryptodome python-pygments
  python-pyparsing python-roman python-rosdep-modules python-rosdistro
  python-rosdistro-modules python-rospkg python-rospkg-modules
  python-setuptools python-six python-wxgtk3.0 python-wxtools python-wxversion
  python-yaml python2.7 python2.7-dev python2.7-minimal python3-dev
  python3.6-dev ros-melodic-catkin ros-melodic-class-loader
  ros-melodic-cpp-common ros-melodic-gencpp ros-melodic-geneus
  ros-melodic-genlisp ros-melodic-genmsg ros-melodic-gennodejs
  ros-melodic-genpy ros-melodic-message-generation ros-melodic-message-runtime
  ros-melodic-pluginlib ros-melodic-ros-environment ros-melodic-rosbag
  ros-melodic-rosbag-storage ros-melodic-rosbuild ros-melodic-rosclean
  ros-melodic-rosconsole ros-melodic-roscpp ros-melodic-roscpp-serialization
  ros-melodic-roscpp-traits ros-melodic-rosgraph ros-melodic-rosgraph-msgs
  ros-melodic-roslaunch ros-melodic-roslib ros-melodic-roslz4
  ros-melodic-rosmaster ros-melodic-rosout ros-melodic-rospack
  ros-melodic-rosparam ros-melodic-rospy ros-melodic-rostest
  ros-melodic-rostime ros-melodic-rostopic ros-melodic-rosunit
  ros-melodic-std-msgs ros-melodic-std-srvs ros-melodic-topic-tools
  ros-melodic-xmlrpcpp sgml-base tzdata ubuntu-mono ucf uuid-dev x11-common
  xkb-data xml-core zlib1g-dev
Suggested packages:
  cmake-doc ninja-build default-dbus-session-bus | dbus-session-bus lrzip
  libboost-doc graphviz libboost1.65-doc gccxml libmpfrc++-dev libntl-dev
  xsltproc doxygen docbook-xml docbook-xsl default-jdk fop colord cups-common
  libglib2.0-doc libgraphite2-utils gvfs libhwloc-contrib-plugins icu-doc
  liblcms2-utils liblog4cxx-doc zip libmyodbc odbc-postgresql tdsodbc
  unixodbc-bin openmpi-doc pciutils librsvg2-bin lksctp-tools lm-sensors
  sqlite3-doc libssl-doc lsb opencl-icd gfortran python-doc python-tk
  python-cryptography-doc python-cryptography-vectors fonts-linuxlibertine
  | ttf-linux-libertine texlive-lang-french texlive-latex-base
  texlive-latex-recommended python-enum34-doc python-coverage python-nose-doc
  python-numpy-dbg python-numpy-doc python-gssapi python-pil-doc
  python-pil-dbg ttf-bitstream-vera python-pyparsing-doc python-setuptools-doc
  wx3.0-doc python2.7-doc binfmt-support sgml-base-doc
Recommended packages:
  uuid-runtime
The following NEW packages will be installed:
  adwaita-icon-theme at-spi2-core bzip2-doc cmake cmake-data dbus
  dconf-gsettings-backend dconf-service default-libmysqlclient-dev
  distro-info-data docutils-common docutils-doc fontconfig fontconfig-config
  fonts-dejavu-core gir1.2-glib-2.0 gir1.2-harfbuzz-0.0 glib-networking
  glib-networking-common glib-networking-services google-mock googletest
  gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme
  humanity-icon-theme ibverbs-providers icu-devtools libapparmor1 libapr1
  libapr1-dev libaprutil1 libaprutil1-dev libarchive13 libassuan-dev
  libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data libatspi2.0-0 libavahi-client3
  libavahi-common-data libavahi-common3 libblas3 libboost-all-dev
  libboost-atomic-dev libboost-atomic1.65-dev libboost-atomic1.65.1
  libboost-chrono-dev libboost-chrono1.65-dev libboost-chrono1.65.1
  libboost-container-dev libboost-container1.65-dev libboost-container1.65.1
  libboost-context-dev libboost-context1.65-dev libboost-context1.65.1
  libboost-coroutine-dev libboost-coroutine1.65-dev libboost-coroutine1.65.1
  libboost-date-time-dev libboost-date-time1.65-dev libboost-date-time1.65.1
  libboost-dev libboost-exception-dev libboost-exception1.65-dev
  libboost-fiber-dev libboost-fiber1.65-dev libboost-fiber1.65.1
  libboost-filesystem-dev libboost-filesystem1.65-dev
  libboost-filesystem1.65.1 libboost-graph-dev libboost-graph-parallel-dev
  libboost-graph-parallel1.65-dev libboost-graph-parallel1.65.1
  libboost-graph1.65-dev libboost-graph1.65.1 libboost-iostreams-dev
  libboost-iostreams1.65-dev libboost-iostreams1.65.1 libboost-locale-dev
  libboost-locale1.65-dev libboost-locale1.65.1 libboost-log-dev
  libboost-log1.65-dev libboost-log1.65.1 libboost-math-dev
  libboost-math1.65-dev libboost-math1.65.1 libboost-mpi-dev
  libboost-mpi-python-dev libboost-mpi-python1.65-dev
  libboost-mpi-python1.65.1 libboost-mpi1.65-dev libboost-mpi1.65.1
  libboost-numpy-dev libboost-numpy1.65-dev libboost-numpy1.65.1
  libboost-program-options-dev libboost-program-options1.65-dev
  libboost-program-options1.65.1 libboost-python-dev libboost-python1.65-dev
  libboost-python1.65.1 libboost-random-dev libboost-random1.65-dev
  libboost-random1.65.1 libboost-regex-dev libboost-regex1.65-dev
  libboost-regex1.65.1 libboost-serialization-dev
  libboost-serialization1.65-dev libboost-serialization1.65.1
  libboost-signals-dev libboost-signals1.65-dev libboost-signals1.65.1
  libboost-stacktrace-dev libboost-stacktrace1.65-dev
  libboost-stacktrace1.65.1 libboost-system-dev libboost-system1.65-dev
  libboost-system1.65.1 libboost-test-dev libboost-test1.65-dev
  libboost-test1.65.1 libboost-thread-dev libboost-thread1.65-dev
  libboost-thread1.65.1 libboost-timer-dev libboost-timer1.65-dev
  libboost-timer1.65.1 libboost-tools-dev libboost-type-erasure-dev
  libboost-type-erasure1.65-dev libboost-type-erasure1.65.1 libboost-wave-dev
  libboost-wave1.65-dev libboost-wave1.65.1 libboost1.65-dev
  libboost1.65-tools-dev libbz2-dev libcairo-gobject2 libcairo2 libcolord2
  libconsole-bridge-dev libconsole-bridge0.4 libcups2 libdatrie1 libdbus-1-3
  libdconf1 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2
  libdrm-radeon1 libdrm2 libedit2 libelf1 libepoxy0 libexpat1-dev libfabric1
  libfontconfig1 libfreetype6 libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-bin
  libgdk-pixbuf2.0-common libgfortran4 libgirepository-1.0-1 libgl1
  libgl1-mesa-dri libglapi-mesa libglib2.0-bin libglib2.0-dev
  libglib2.0-dev-bin libglvnd0 libglx-mesa0 libglx0 libgpg-error-dev
  libgpgme-dev libgpgme11 libgraphite2-3 libgraphite2-dev libgtest-dev
  libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz-dev libharfbuzz-gobject0
  libharfbuzz-icu0 libharfbuzz0b libhwloc-dev libhwloc-plugins libhwloc5
  libibverbs-dev libibverbs1 libice6 libicu-dev libicu-le-hb-dev libicu-le-hb0
  libiculx60 libjbig0 libjpeg-turbo8 libjpeg8 libjson-glib-1.0-0
  libjson-glib-1.0-common libjsoncpp1 liblapack3 liblcms2-2 libldap2-dev
  libllvm9 liblog4cxx-dev liblog4cxx10v5 liblz4-dev liblzo2-2
  libmysqlclient-dev libmysqlclient20 libnl-3-200 libnl-route-3-200 libnotify4
  libnuma-dev libnuma1 libodbc1 libopenmpi-dev libopenmpi2 libpango-1.0-0
  libpangocairo-1.0-0 libpangoft2-1.0-0 libpaper-utils libpaper1 libpciaccess0
  libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpixman-1-0 libpng16-16
  libpoco-dev libpococrypto50 libpocodata50 libpocodatamysql50
  libpocodataodbc50 libpocodatasqlite50 libpocofoundation50 libpocojson50
  libpocomongodb50 libpoconet50 libpoconetssl50 libpocoredis50 libpocoutil50
  libpocoxml50 libpocozip50 libproxy1v5 libpsm-infinipath1 libpython-dev
  libpython-stdlib libpython2.7 libpython2.7-dev libpython2.7-minimal
  libpython2.7-stdlib libpython3-dev libpython3.6 libpython3.6-dev librdmacm1
  librest-0.7-0 librhash0 librsvg2-2 librsvg2-common libsctp-dev libsctp1
  libsensors4 libsm6 libsoup-gnome2.4-1 libsoup2.4-1 libsqlite3-dev libssl-dev
  libthai-data libthai0 libtiff5 libtinyxml2-6 libtinyxml2-dev libuv1
  libwayland-client0 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpdemux2
  libwebpmux3 libwxbase3.0-0v5 libwxgtk3.0-gtk3-0v5 libx11-6 libx11-data
  libx11-xcb1 libxau6 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0
  libxcb-render0 libxcb-shm0 libxcb-sync1 libxcb1 libxcomposite1 libxcursor1
  libxdamage1 libxdmcp6 libxext6 libxfixes3 libxi6 libxinerama1 libxkbcommon0
  libxrandr2 libxrender1 libxshmfence1 libxtst6 libxxf86vm1 libyaml-0-2
  lsb-release mpi-default-bin mpi-default-dev multiarch-support mysql-common
  notification-daemon ocl-icd-libopencl1 openmpi-bin openmpi-common pkg-config
  python python-asn1crypto python-catkin-pkg python-catkin-pkg-modules
  python-cffi-backend python-chardet python-cryptography python-dateutil
  python-defusedxml python-dev python-docutils python-empy python-enum34
  python-gnupg python-idna python-ipaddress python-minimal python-netifaces
  python-nose python-numpy python-olefile python-paramiko python-pil
  python-pkg-resources python-pyasn1 python-pycryptodome python-pygments
  python-pyparsing python-roman python-rosdep-modules python-rosdistro
  python-rosdistro-modules python-rospkg python-rospkg-modules
  python-setuptools python-six python-wxgtk3.0 python-wxtools python-wxversion
  python-yaml python2.7 python2.7-dev python2.7-minimal python3-dev
  python3.6-dev ros-melodic-actionlib ros-melodic-actionlib-msgs
  ros-melodic-catkin ros-melodic-class-loader ros-melodic-cpp-common
  ros-melodic-gencpp ros-melodic-geneus ros-melodic-genlisp ros-melodic-genmsg
  ros-melodic-gennodejs ros-melodic-genpy ros-melodic-message-generation
  ros-melodic-message-runtime ros-melodic-pluginlib
  ros-melodic-ros-environment ros-melodic-rosbag ros-melodic-rosbag-storage
  ros-melodic-rosbuild ros-melodic-rosclean ros-melodic-rosconsole
  ros-melodic-roscpp ros-melodic-roscpp-serialization
  ros-melodic-roscpp-traits ros-melodic-rosgraph ros-melodic-rosgraph-msgs
  ros-melodic-roslaunch ros-melodic-roslib ros-melodic-roslz4
  ros-melodic-rosmaster ros-melodic-rosout ros-melodic-rospack
  ros-melodic-rosparam ros-melodic-rospy ros-melodic-rostest
  ros-melodic-rostime ros-melodic-rostopic ros-melodic-rosunit
  ros-melodic-std-msgs ros-melodic-std-srvs ros-melodic-topic-tools
  ros-melodic-xmlrpcpp sgml-base tzdata ubuntu-mono ucf uuid-dev x11-common
  xkb-data xml-core zlib1g-dev
The following packages will be upgraded:
  libuuid1
1 upgraded, 421 newly installed, 0 to remove and 8 not upgraded.
Need to get 195 MB of archives.
After this operation, 1,012 MB of additional disk space will be used.
Get:1 http://10.210.9.154/ubuntu/building bionic/main amd64 python-catkin-pkg-modules all 0.4.17-1 [41.8 kB]
Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 multiarch-support amd64 2.27-3ubuntu1 [6,916 B]
Get:3 http://10.210.9.154/ubuntu/building bionic/main amd64 python-catkin-pkg all 0.4.17-100 [3,516 B]
Get:4 http://10.210.9.154/ubuntu/building bionic/main amd64 python-rospkg-modules all 1.2.4-1 [23.9 kB]
Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxau6 amd64 1:1.0.8-1 [8,376 B]
Get:6 http://10.210.9.154/ubuntu/building bionic/main amd64 python-rosdistro-modules all 0.8.1-1 [31.4 kB]
Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxdmcp6 amd64 1:1.1.2-3 [10.7 kB]
Get:8 http://10.210.9.154/ubuntu/building bionic/main amd64 python-rosdistro all 0.8.1-100 [6,248 B]
Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb1 amd64 1.13-2~ubuntu18.04 [45.5 kB]
Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-data all 2:1.6.4-3ubuntu0.2 [113 kB]
Get:11 http://10.210.9.154/ubuntu/building bionic/main amd64 python-rospkg all 1.2.4-100 [2,196 B]
Get:12 http://10.210.9.154/ubuntu/building bionic/main amd64 python-rosdep-modules all 0.19.0-1 [50.5 kB]
Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-6 amd64 2:1.6.4-3ubuntu0.2 [569 kB]
Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxext6 amd64 2:1.3.3-1 [29.4 kB]
Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpng16-16 amd64 1.6.34-1ubuntu0.18.04.2 [176 kB]
Get:16 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfreetype6 amd64 2.8.1-2ubuntu2 [335 kB]
Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 ucf all 3.0038 [50.5 kB]
Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 fonts-dejavu-core all 2.37-1 [1,041 kB]
Get:19 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-catkin amd64 0.7.23-1bionic.20200303.045725 [126 kB]
Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 fontconfig-config all 2.12.6-0ubuntu2 [55.8 kB]
Get:21 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfontconfig1 amd64 2.12.6-0ubuntu2 [137 kB]
Get:22 http://archive.ubuntu.com/ubuntu bionic/main amd64 fontconfig amd64 2.12.6-0ubuntu2 [169 kB]
Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libjpeg-turbo8 amd64 1.5.2-0ubuntu5.18.04.3 [110 kB]
Get:24 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblzo2-2 amd64 2.08-1.2 [48.7 kB]
Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 x11-common all 1:7.7+19ubuntu7.1 [22.5 kB]
Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 libice6 amd64 2:1.0.9-2 [40.2 kB]
Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libuuid1 amd64 2.31.1-0.4ubuntu3.6 [20.1 kB]
Get:28 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsm6 amd64 2:1.2.2-1 [15.8 kB]
Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxinerama1 amd64 2:1.1.3-1 [7,908 B]
Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxxf86vm1 amd64 1:1.1.4-1 [10.6 kB]
Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-minimal amd64 2.7.17-1~18.04 [335 kB]
Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7-minimal amd64 2.7.17-1~18.04 [1,294 kB]
Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-minimal amd64 2.7.15~rc1-1 [28.1 kB]
Get:34 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-stdlib amd64 2.7.17-1~18.04 [1,915 kB]
Get:35 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7 amd64 2.7.17-1~18.04 [248 kB]
Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpython-stdlib amd64 2.7.15~rc1-1 [7,620 B]
Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 python amd64 2.7.15~rc1-1 [140 kB]
Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 sgml-base all 1.29 [12.3 kB]
Get:39 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libapparmor1 amd64 2.12-4ubuntu5.1 [31.3 kB]
Get:40 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdbus-1-3 amd64 1.12.2-1ubuntu1.1 [175 kB]
Get:41 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 dbus amd64 1.12.2-1ubuntu1.1 [150 kB]
Get:42 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 distro-info-data all 0.37ubuntu0.6 [4,572 B]
Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgirepository-1.0-1 amd64 1.56.1-1 [82.0 kB]
Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 gir1.2-glib-2.0 amd64 1.56.1-1 [131 kB]
Get:45 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libelf1 amd64 0.170-0.4ubuntu0.1 [44.8 kB]
Get:46 http://archive.ubuntu.com/ubuntu bionic/main amd64 libyaml-0-2 amd64 0.1.7-2ubuntu3 [47.2 kB]
Get:47 http://archive.ubuntu.com/ubuntu bionic/main amd64 lsb-release all 9.20170808ubuntu1 [11.0 kB]
Get:48 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 tzdata all 2019c-0ubuntu0.18.04 [190 kB]
Get:49 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 xkb-data all 2.23.1-1ubuntu1.18.04.1 [325 kB]
Get:50 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-common all 2.4.99-1ubuntu1~18.04.2 [5,328 B]
Get:51 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm2 amd64 2.4.99-1ubuntu1~18.04.2 [31.7 kB]
Get:52 http://archive.ubuntu.com/ubuntu bionic/main amd64 libedit2 amd64 3.1-20170329-1 [76.9 kB]
Get:53 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libnuma1 amd64 2.0.11-2.1ubuntu0.1 [22.0 kB]
Get:54 http://archive.ubuntu.com/ubuntu bionic/main amd64 hicolor-icon-theme all 0.17-2 [9,976 B]
Get:55 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjpeg8 amd64 8c-2ubuntu8 [2,194 B]
Get:56 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjbig0 amd64 2.1-3.1build1 [26.7 kB]
Get:57 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtiff5 amd64 4.0.9-5ubuntu0.3 [153 kB]
Get:58 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdk-pixbuf2.0-common all 2.36.11-2 [4,536 B]
Get:59 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdk-pixbuf2.0-0 amd64 2.36.11-2 [165 kB]
Get:60 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gtk-update-icon-cache amd64 3.22.30-1ubuntu4 [28.3 kB]
Get:61 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpixman-1-0 amd64 0.34.0-2 [229 kB]
Get:62 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-render0 amd64 1.13-2~ubuntu18.04 [14.7 kB]
Get:63 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-shm0 amd64 1.13-2~ubuntu18.04 [5,600 B]
Get:64 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxrender1 amd64 1:0.9.10-1 [18.7 kB]
Get:65 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcairo2 amd64 1.15.10-2ubuntu0.1 [580 kB]
Get:66 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-genmsg amd64 0.5.15-1bionic.20200303.053935 [35.6 kB]
Get:67 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-gencpp amd64 0.6.5-1bionic.20200304.001548 [15.3 kB]
Get:68 http://archive.ubuntu.com/ubuntu bionic/main amd64 libthai-data all 0.1.27-2 [133 kB]
Get:69 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdatrie1 amd64 0.2.10-7 [17.8 kB]
Get:70 http://archive.ubuntu.com/ubuntu bionic/main amd64 libthai0 amd64 0.1.27-2 [18.0 kB]
Get:71 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpango-1.0-0 amd64 1.40.14-1ubuntu0.1 [153 kB]
Get:72 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgraphite2-3 amd64 1.3.11-2 [78.7 kB]
Get:73 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz0b amd64 1.7.2-1ubuntu1 [232 kB]
Get:74 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpangoft2-1.0-0 amd64 1.40.14-1ubuntu0.1 [33.2 kB]
Get:75 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpangocairo-1.0-0 amd64 1.40.14-1ubuntu0.1 [20.8 kB]
Get:76 http://archive.ubuntu.com/ubuntu bionic/main amd64 librsvg2-2 amd64 2.40.20-2 [98.6 kB]
Get:77 http://archive.ubuntu.com/ubuntu bionic/main amd64 librsvg2-common amd64 2.40.20-2 [5,124 B]
Get:78 http://archive.ubuntu.com/ubuntu bionic/main amd64 humanity-icon-theme all 0.6.15 [1,250 kB]
Get:79 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-geneus amd64 2.2.6-0bionic.20200303.054537 [25.1 kB]
Get:80 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-genlisp amd64 0.4.16-0bionic.20200303.054506 [21.8 kB]
Get:81 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-gennodejs amd64 2.0.1-0bionic.20200303.054547 [21.8 kB]
Get:82 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 ubuntu-mono all 16.10+18.04.20181005-0ubuntu1 [149 kB]
Get:83 http://archive.ubuntu.com/ubuntu bionic/main amd64 adwaita-icon-theme all 3.28.0-1ubuntu1 [3,306 kB]
Get:84 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-genpy amd64 0.6.9-1bionic.20200303.054458 [50.1 kB]
Get:85 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-message-generation amd64 0.4.1-1bionic.20200304.001834 [4,768 B]
Get:86 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-cpp-common amd64 0.6.13-1bionic.20200303.055220 [21.9 kB]
Get:87 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatspi2.0-0 amd64 2.28.0-1 [59.6 kB]
Get:88 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxtst6 amd64 2:1.2.3-1 [12.8 kB]
Get:89 http://archive.ubuntu.com/ubuntu bionic/main amd64 at-spi2-core amd64 2.28.0-1 [47.9 kB]
Get:90 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 bzip2-doc all 1.0.6-8.1ubuntu0.2 [294 kB]
Get:91 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-class-loader amd64 0.4.1-0bionic.20200303.063345 [61.4 kB]
Get:92 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rostime amd64 0.6.13-1bionic.20200303.061413 [38.8 kB]
Get:93 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cmake-data all 3.10.2-1ubuntu2.18.04.1 [1,332 kB]
Get:94 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libarchive13 amd64 3.2.2-3.1ubuntu0.6 [288 kB]
Get:95 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjsoncpp1 amd64 1.7.4-3 [73.6 kB]
Get:96 http://archive.ubuntu.com/ubuntu bionic/main amd64 librhash0 amd64 1.3.6-2 [78.1 kB]
Get:97 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-roscpp-traits amd64 0.6.13-1bionic.20200303.062231 [10.3 kB]
Get:98 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-roscpp-serialization amd64 0.6.13-1bionic.20200303.063000 [13.0 kB]
Get:99 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-message-runtime amd64 0.4.12-0bionic.20200303.064101 [4,796 B]
Get:100 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rosbuild amd64 1.14.8-1bionic.20200304.002242 [27.9 kB]
Get:101 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rosconsole amd64 1.13.11-1bionic.20200304.002633 [86.6 kB]
Get:102 http://archive.ubuntu.com/ubuntu bionic/main amd64 libuv1 amd64 1.18.0-3 [64.4 kB]
Get:103 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cmake amd64 3.10.2-1ubuntu2.18.04.1 [3,152 kB]
Get:104 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-ros-environment amd64 1.2.2-1bionic.20200303.061936 [5,656 B]
Get:105 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rospack amd64 2.5.5-1bionic.20200303.063336 [98.9 kB]
Get:106 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdconf1 amd64 0.26.0-2ubuntu3 [33.1 kB]
Get:107 http://archive.ubuntu.com/ubuntu bionic/main amd64 dconf-service amd64 0.26.0-2ubuntu3 [28.4 kB]
Get:108 http://archive.ubuntu.com/ubuntu bionic/main amd64 dconf-gsettings-backend amd64 0.26.0-2ubuntu3 [20.0 kB]
Get:109 http://archive.ubuntu.com/ubuntu bionic/main amd64 mysql-common all 5.8+1.0.4 [7,308 B]
Get:110 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmysqlclient20 amd64 5.7.29-0ubuntu0.18.04.1 [690 kB]
Get:111 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-roslib amd64 1.14.8-1bionic.20200303.063927 [92.2 kB]
Get:112 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libssl-dev amd64 1.1.1-1ubuntu2.1~18.04.5 [1,566 kB]
Get:113 http://archive.ubuntu.com/ubuntu bionic/main amd64 zlib1g-dev amd64 1:1.2.11.dfsg-0ubuntu2 [176 kB]
Get:114 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmysqlclient-dev amd64 5.7.29-0ubuntu0.18.04.1 [992 kB]
Get:115 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-pluginlib amd64 1.12.1-0bionic.20200304.012909 [20.7 kB]
Get:116 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-roslz4 amd64 1.14.5-1bionic.20200320.101512 [16.2 kB]
Get:117 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rosbag-storage amd64 1.14.5-1bionic.20200320.113139 [178 kB]
Get:118 http://archive.ubuntu.com/ubuntu bionic/main amd64 default-libmysqlclient-dev amd64 1.0.4 [3,736 B]
Get:119 http://archive.ubuntu.com/ubuntu bionic/main amd64 xml-core all 0.18 [21.3 kB]
Get:120 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-common all 0.14+dfsg-3 [156 kB]
Get:121 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-doc all 0.14+dfsg-3 [913 kB]
Get:122 http://archive.ubuntu.com/ubuntu bionic/main amd64 gir1.2-harfbuzz-0.0 amd64 1.7.2-1ubuntu1 [18.6 kB]
Get:123 http://archive.ubuntu.com/ubuntu bionic/main amd64 libproxy1v5 amd64 0.4.15-1 [49.5 kB]
Get:124 http://archive.ubuntu.com/ubuntu bionic/main amd64 glib-networking-common all 2.56.0-1 [3,324 B]
Get:125 http://archive.ubuntu.com/ubuntu bionic/main amd64 glib-networking-services amd64 2.56.0-1 [8,488 B]
Get:126 http://archive.ubuntu.com/ubuntu bionic/main amd64 gsettings-desktop-schemas all 3.28.0-1ubuntu1 [27.8 kB]
Get:127 http://archive.ubuntu.com/ubuntu bionic/main amd64 glib-networking amd64 2.56.0-1 [56.7 kB]
Get:128 http://archive.ubuntu.com/ubuntu bionic/universe amd64 googletest amd64 1.8.0-6 [652 kB]
Get:129 http://archive.ubuntu.com/ubuntu bionic/universe amd64 google-mock amd64 1.8.0-6 [2,972 B]
Get:130 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnl-3-200 amd64 3.2.29-0ubuntu3 [52.8 kB]
Get:131 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnl-route-3-200 amd64 3.2.29-0ubuntu3 [146 kB]
Get:132 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-std-msgs amd64 0.5.12-0bionic.20200304.002412 [56.2 kB]
Get:133 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rosgraph-msgs amd64 1.11.2-0bionic.20200304.004654 [25.2 kB]
Get:134 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libibverbs1 amd64 17.1-1ubuntu0.2 [44.4 kB]
Get:135 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 ibverbs-providers amd64 17.1-1ubuntu0.2 [160 kB]
Get:136 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 icu-devtools amd64 60.2-3ubuntu3.1 [179 kB]
Get:137 http://archive.ubuntu.com/ubuntu bionic/main amd64 libapr1 amd64 1.6.3-2 [90.9 kB]
Get:138 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 uuid-dev amd64 2.31.1-0.4ubuntu3.6 [33.2 kB]
Get:139 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsctp1 amd64 1.0.17+dfsg-2 [8,008 B]
Get:140 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsctp-dev amd64 1.0.17+dfsg-2 [61.9 kB]
Get:141 http://archive.ubuntu.com/ubuntu bionic/main amd64 libapr1-dev amd64 1.6.3-2 [690 kB]
Get:142 http://archive.ubuntu.com/ubuntu bionic/main amd64 libaprutil1 amd64 1.6.1-2 [84.4 kB]
Get:143 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libldap2-dev amd64 2.4.45+dfsg-1ubuntu1.4 [262 kB]
Get:144 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libexpat1-dev amd64 2.2.5-3ubuntu0.2 [122 kB]
Get:145 http://archive.ubuntu.com/ubuntu bionic/main amd64 libaprutil1-dev amd64 1.6.1-2 [391 kB]
Get:146 http://archive.ubuntu.com/ubuntu bionic/main amd64 libassuan-dev amd64 2.5.1-2 [92.1 kB]
Get:147 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatk1.0-data all 2.28.1-1 [2,992 B]
Get:148 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatk1.0-0 amd64 2.28.1-1 [43.9 kB]
Get:149 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatk-bridge2.0-0 amd64 2.26.2-1 [57.3 kB]
Get:150 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libavahi-common-data amd64 0.7-3.1ubuntu1.2 [22.1 kB]
Get:151 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libavahi-common3 amd64 0.7-3.1ubuntu1.2 [21.6 kB]
Get:152 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libavahi-client3 amd64 0.7-3.1ubuntu1.2 [25.2 kB]
Get:153 http://archive.ubuntu.com/ubuntu bionic/main amd64 libblas3 amd64 3.7.1-4ubuntu1 [140 kB]
Get:154 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [7,218 kB]
Get:155 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-xmlrpcpp amd64 1.14.5-1bionic.20200320.101634 [57.9 kB]
Get:156 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-roscpp amd64 1.14.5-1bionic.20200320.102657 [491 kB]
Get:157 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-dev amd64 1.65.1.0ubuntu1 [3,128 B]
Get:158 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost1.65-tools-dev amd64 1.65.1+dfsg-0ubuntu5 [1,222 kB]
Get:159 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rosgraph amd64 1.14.5-1bionic.20200320.101125 [47.4 kB]
Get:160 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rospy amd64 1.14.5-1bionic.20200320.104032 [134 kB]
Get:161 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-tools-dev amd64 1.65.1.0ubuntu1 [3,096 B]
Get:162 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-atomic1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [7,268 B]
Get:163 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-atomic1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [5,160 B]
Get:164 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-atomic-dev amd64 1.65.1.0ubuntu1 [3,224 B]
Get:165 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-system1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [10.5 kB]
Get:166 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-chrono1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [10.2 kB]
Get:167 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-chrono1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [9,804 B]
Get:168 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-chrono-dev amd64 1.65.1.0ubuntu1 [3,544 B]
Get:169 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-container1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [43.4 kB]
Get:170 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-container1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [41.7 kB]
Get:171 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-container-dev amd64 1.65.1.0ubuntu1 [3,400 B]
Get:172 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-context1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [8,336 B]
Get:173 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-context1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [6,364 B]
Get:174 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-context-dev amd64 1.65.1.0ubuntu1 [3,120 B]
Get:175 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-thread1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [43.2 kB]
Get:176 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-coroutine1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [22.6 kB]
Get:177 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-coroutine1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [24.2 kB]
Get:178 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-coroutine-dev amd64 1.65.1.0ubuntu1 [3,196 B]
Get:179 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-date-time1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [20.5 kB]
Get:180 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-serialization1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [99.3 kB]
Get:181 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-serialization1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [137 kB]
Get:182 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-date-time1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [26.7 kB]
Get:183 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-date-time-dev amd64 1.65.1.0ubuntu1 [2,924 B]
Get:184 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-exception1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [4,580 B]
Get:185 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-exception-dev amd64 1.65.1.0ubuntu1 [2,916 B]
Get:186 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-filesystem1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [40.3 kB]
Get:187 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-fiber1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [108 kB]
Get:188 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-fiber1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [121 kB]
Get:189 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-fiber-dev amd64 1.65.1.0ubuntu1 [3,348 B]
Get:190 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-system1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [11.8 kB]
Get:191 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-filesystem1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [52.1 kB]
Get:192 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-filesystem-dev amd64 1.65.1.0ubuntu1 [2,960 B]
Get:193 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-regex1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [259 kB]
Get:194 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-std-srvs amd64 1.11.2-0bionic.20200304.002617 [18.3 kB]
Get:195 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-topic-tools amd64 1.14.5-1bionic.20200320.112246 [140 kB]
Get:196 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [93.4 kB]
Get:197 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-test1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [240 kB]
Get:198 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-test1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [289 kB]
Get:199 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [102 kB]
Get:200 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph-dev amd64 1.65.1.0ubuntu1 [3,024 B]
Get:201 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpsm-infinipath1 amd64 3.3+20.604758e7-5 [174 kB]
Get:202 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 librdmacm1 amd64 17.1-1ubuntu0.2 [56.1 kB]
Get:203 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libfabric1 amd64 1.5.3-1 [302 kB]
Get:204 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libhwloc5 amd64 1.11.9-1 [105 kB]
Get:205 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpciaccess0 amd64 0.14-1 [17.9 kB]
Get:206 http://archive.ubuntu.com/ubuntu bionic/main amd64 ocl-icd-libopencl1 amd64 2.2.11-1ubuntu1 [30.3 kB]
Get:207 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libhwloc-plugins amd64 1.11.9-1 [12.5 kB]
Get:208 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libopenmpi2 amd64 2.1.1-8 [2,056 kB]
Get:209 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rosbag amd64 1.14.5-1bionic.20200320.113710 [340 kB]
Get:210 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rosclean amd64 1.14.8-1bionic.20200303.050232 [11.7 kB]
Get:211 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rosmaster amd64 1.14.5-1bionic.20200320.101515 [40.8 kB]
Get:212 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rosout amd64 1.14.5-1bionic.20200320.104017 [33.4 kB]
Get:213 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [47.0 kB]
Get:214 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rosparam amd64 1.14.5-1bionic.20200320.101848 [17.4 kB]
Get:215 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph-parallel1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [62.3 kB]
Get:216 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rosunit amd64 1.14.8-1bionic.20200303.064408 [46.9 kB]
Get:217 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph-parallel1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [64.5 kB]
Get:218 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-roslaunch amd64 1.14.5-1bionic.20200320.110824 [135 kB]
Get:219 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph-parallel-dev amd64 1.65.1.0ubuntu1 [3,056 B]
Get:220 http://archive.ubuntu.com/ubuntu bionic/main amd64 libicu-le-hb0 amd64 1.0.3+git161113-4 [14.3 kB]
Get:221 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libiculx60 amd64 60.2-3ubuntu3.1 [19.0 kB]
Get:222 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz-icu0 amd64 1.7.2-1ubuntu1 [5,604 B]
Get:223 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz-gobject0 amd64 1.7.2-1ubuntu1 [13.4 kB]
Get:224 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-bin amd64 2.56.4-0ubuntu0.18.04.6 [68.8 kB]
Get:225 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-dev-bin amd64 2.56.4-0ubuntu0.18.04.6 [102 kB]
Get:226 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcre16-3 amd64 2:8.39-9 [147 kB]
Get:227 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcre32-3 amd64 2:8.39-9 [138 kB]
Get:228 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcrecpp0v5 amd64 2:8.39-9 [15.3 kB]
Get:229 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcre3-dev amd64 2:8.39-9 [537 kB]
Get:230 http://archive.ubuntu.com/ubuntu bionic/main amd64 pkg-config amd64 0.29.1-0ubuntu2 [45.0 kB]
Get:231 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-dev amd64 2.56.4-0ubuntu0.18.04.6 [1,385 kB]
Get:232 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rostest amd64 1.14.5-1bionic.20200320.111356 [29.6 kB]
Get:233 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rostopic amd64 1.14.5-1bionic.20200320.121530 [44.8 kB]
Get:234 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgraphite2-dev amd64 1.3.11-2 [14.5 kB]
Get:235 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-actionlib-msgs amd64 1.12.7-0bionic.20200304.002803 [26.4 kB]
Get:236 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-actionlib amd64 1.12.0-1bionic.20200320.122357 [143 kB]
Get:237 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz-dev amd64 1.7.2-1ubuntu1 [302 kB]
Get:238 http://archive.ubuntu.com/ubuntu bionic/main amd64 libicu-le-hb-dev amd64 1.0.3+git161113-4 [29.5 kB]
Get:239 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libicu-dev amd64 60.2-3ubuntu3.1 [8,889 kB]
Get:240 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-regex1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [312 kB]
Get:241 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-iostreams1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [29.2 kB]
Get:242 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-iostreams1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [37.0 kB]
Get:243 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-iostreams-dev amd64 1.65.1.0ubuntu1 [2,916 B]
Get:244 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-locale1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [241 kB]
Get:245 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-locale1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [329 kB]
Get:246 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-locale-dev amd64 1.65.1.0ubuntu1 [3,248 B]
Get:247 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-log1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [384 kB]
Get:248 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-thread1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [49.0 kB]
Get:249 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-log1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [553 kB]
Get:250 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-log-dev amd64 1.65.1.0ubuntu1 [3,124 B]
Get:251 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-math1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [311 kB]
Get:252 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-math1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [560 kB]
Get:253 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-math-dev amd64 1.65.1.0ubuntu1 [3,112 B]
Get:254 http://archive.ubuntu.com/ubuntu bionic/universe amd64 openmpi-common all 2.1.1-8 [140 kB]
Get:255 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libibverbs-dev amd64 17.1-1ubuntu0.2 [103 kB]
Get:256 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libnuma-dev amd64 2.0.11-2.1ubuntu0.1 [32.3 kB]
Get:257 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libhwloc-dev amd64 1.11.9-1 [167 kB]
Get:258 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libopenmpi-dev amd64 2.1.1-8 [925 kB]
Get:259 http://archive.ubuntu.com/ubuntu bionic/universe amd64 mpi-default-dev amd64 1.10 [3,888 B]
Get:260 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [137 kB]
Get:261 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi-dev amd64 1.65.1.0ubuntu1 [3,004 B]
Get:262 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-python1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [101 kB]
Get:263 http://archive.ubuntu.com/ubuntu bionic/universe amd64 openmpi-bin amd64 2.1.1-8 [88.2 kB]
Get:264 http://archive.ubuntu.com/ubuntu bionic/universe amd64 mpi-default-bin amd64 1.10 [3,108 B]
Get:265 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi-python1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [214 kB]
Get:266 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi-python1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [24.7 kB]
Get:267 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi-python-dev amd64 1.65.1.0ubuntu1 [3,040 B]
Get:268 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-numpy1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [17.4 kB]
Get:269 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-numpy1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [17.4 kB]
Get:270 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-numpy-dev amd64 1.65.1.0ubuntu1 [2,960 B]
Get:271 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-program-options1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [137 kB]
Get:272 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-program-options1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [163 kB]
Get:273 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-program-options-dev amd64 1.65.1.0ubuntu1 [2,940 B]
Get:274 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7 amd64 2.7.17-1~18.04 [1,053 kB]
Get:275 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-dev amd64 2.7.17-1~18.04 [28.3 MB]
Get:276 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpython-dev amd64 2.7.15~rc1-1 [7,684 B]
Get:277 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7-dev amd64 2.7.17-1~18.04 [277 kB]
Get:278 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-dev amd64 2.7.15~rc1-1 [1,256 B]
Get:279 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6 amd64 3.6.9-1~18.04 [1,414 kB]
Get:280 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-dev amd64 3.6.9-1~18.04 [44.8 MB]
Get:281 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3-dev amd64 3.6.7-1~18.04 [7,328 B]
Get:282 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6-dev amd64 3.6.9-1~18.04 [508 kB]
Get:283 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-dev amd64 3.6.7-1~18.04 [1,288 B]
Get:284 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-python1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [103 kB]
Get:285 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-python-dev amd64 1.65.1.0ubuntu1 [3,216 B]
Get:286 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-random1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [12.8 kB]
Get:287 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-random1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [12.4 kB]
Get:288 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-random-dev amd64 1.65.1.0ubuntu1 [2,924 B]
Get:289 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-regex-dev amd64 1.65.1.0ubuntu1 [3,184 B]
Get:290 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-serialization-dev amd64 1.65.1.0ubuntu1 [3,144 B]
Get:291 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-signals1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [30.6 kB]
Get:292 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-signals1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [33.1 kB]
Get:293 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-signals-dev amd64 1.65.1.0ubuntu1 [2,996 B]
Get:294 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-stacktrace1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [49.1 kB]
Get:295 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-stacktrace1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [25.9 kB]
Get:296 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-stacktrace-dev amd64 1.65.1.0ubuntu1 [2,924 B]
Get:297 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-system-dev amd64 1.65.1.0ubuntu1 [3,060 B]
Get:298 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-test-dev amd64 1.65.1.0ubuntu1 [2,960 B]
Get:299 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-thread-dev amd64 1.65.1.0ubuntu1 [2,948 B]
Get:300 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-timer1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [11.9 kB]
Get:301 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-timer1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [11.8 kB]
Get:302 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-timer-dev amd64 1.65.1.0ubuntu1 [3,044 B]
Get:303 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-type-erasure1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [20.7 kB]
Get:304 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-type-erasure1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [20.1 kB]
Get:305 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-type-erasure-dev amd64 1.65.1.0ubuntu1 [3,024 B]
Get:306 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-wave1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [178 kB]
Get:307 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-wave1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [234 kB]
Get:308 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-wave-dev amd64 1.65.1.0ubuntu1 [2,952 B]
Get:309 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-all-dev amd64 1.65.1.0ubuntu1 [2,340 B]
Get:310 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbz2-dev amd64 1.0.6-8.1ubuntu0.2 [30.0 kB]
Get:311 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcairo-gobject2 amd64 1.15.10-2ubuntu0.1 [17.1 kB]
Get:312 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblcms2-2 amd64 2.9-1ubuntu0.1 [139 kB]
Get:313 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcolord2 amd64 1.3.3-2build1 [107 kB]
Get:314 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libconsole-bridge0.4 amd64 0.4.0+dfsg-2 [8,168 B]
Get:315 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcups2 amd64 2.2.7-1ubuntu2.7 [211 kB]
Get:316 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-amdgpu1 amd64 2.4.99-1ubuntu1~18.04.2 [18.2 kB]
Get:317 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-intel1 amd64 2.4.99-1ubuntu1~18.04.2 [59.9 kB]
Get:318 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-nouveau2 amd64 2.4.99-1ubuntu1~18.04.2 [16.5 kB]
Get:319 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-radeon1 amd64 2.4.99-1ubuntu1~18.04.2 [21.7 kB]
Get:320 http://archive.ubuntu.com/ubuntu bionic/main amd64 libepoxy0 amd64 1.4.3-1 [181 kB]
Get:321 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdk-pixbuf2.0-bin amd64 2.36.11-2 [7,864 B]
Get:322 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgfortran4 amd64 7.5.0-3ubuntu1~18.04 [492 kB]
Get:323 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglapi-mesa amd64 19.2.8-0ubuntu0~18.04.3 [26.5 kB]
Get:324 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libllvm9 amd64 1:9-2~ubuntu18.04.2 [14.8 MB]
Get:325 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsensors4 amd64 1:3.4.0-4 [28.8 kB]
Get:326 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgl1-mesa-dri amd64 19.2.8-0ubuntu0~18.04.3 [8,811 kB]
Get:327 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-xcb1 amd64 2:1.6.4-3ubuntu0.2 [9,376 B]
Get:328 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-dri2-0 amd64 1.13-2~ubuntu18.04 [6,920 B]
Get:329 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-dri3-0 amd64 1.13-2~ubuntu18.04 [6,568 B]
Get:330 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-glx0 amd64 1.13-2~ubuntu18.04 [22.1 kB]
Get:331 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-present0 amd64 1.13-2~ubuntu18.04 [5,552 B]
Get:332 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-sync1 amd64 1.13-2~ubuntu18.04 [8,808 B]
Get:333 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxdamage1 amd64 1:1.1.4-3 [6,934 B]
Get:334 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxfixes3 amd64 1:5.0.3-1 [10.8 kB]
Get:335 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxshmfence1 amd64 1.3-1 [5,028 B]
Get:336 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglx-mesa0 amd64 19.2.8-0ubuntu0~18.04.3 [139 kB]
Get:337 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgpg-error-dev amd64 1.27-6 [94.8 kB]
Get:338 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgpgme11 amd64 1.10.0-1ubuntu2 [111 kB]
Get:339 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libgtest-dev amd64 1.8.0-6 [2,718 B]
Get:340 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgtk-3-common all 3.22.30-1ubuntu4 [229 kB]
Get:341 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjson-glib-1.0-common all 1.4.2-3 [3,464 B]
Get:342 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjson-glib-1.0-0 amd64 1.4.2-3 [58.5 kB]
Get:343 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsoup2.4-1 amd64 2.62.1-1ubuntu0.4 [292 kB]
Get:344 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsoup-gnome2.4-1 amd64 2.62.1-1ubuntu0.4 [5,088 B]
Get:345 http://archive.ubuntu.com/ubuntu bionic/main amd64 librest-0.7-0 amd64 0.8.0-2 [31.8 kB]
Get:346 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwayland-client0 amd64 1.16.0-1ubuntu1.1~18.04.3 [23.6 kB]
Get:347 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwayland-cursor0 amd64 1.16.0-1ubuntu1.1~18.04.3 [10.1 kB]
Get:348 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwayland-egl1 amd64 1.16.0-1ubuntu1.1~18.04.3 [5,464 B]
Get:349 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxcomposite1 amd64 1:0.4.4-2 [6,988 B]
Get:350 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxcursor1 amd64 1:1.1.15-1 [19.8 kB]
Get:351 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxi6 amd64 2:1.7.9-1 [29.2 kB]
Get:352 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxkbcommon0 amd64 0.8.2-1~ubuntu18.04.1 [97.8 kB]
Get:353 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxrandr2 amd64 2:1.5.1-1 [18.1 kB]
Get:354 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgtk-3-0 amd64 3.22.30-1ubuntu4 [2,503 kB]
Get:355 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgtk-3-bin amd64 3.22.30-1ubuntu4 [57.4 kB]
Get:356 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblapack3 amd64 3.7.1-4ubuntu1 [2,112 kB]
Get:357 http://archive.ubuntu.com/ubuntu bionic/universe amd64 liblog4cxx10v5 amd64 0.10.0-13ubuntu2 [400 kB]
Get:358 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnotify4 amd64 0.7.7-3 [17.3 kB]
Get:359 http://archive.ubuntu.com/ubuntu bionic/main amd64 libodbc1 amd64 2.3.4-1.1ubuntu3 [183 kB]
Get:360 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper1 amd64 1.1.24+nmu5ubuntu1 [13.6 kB]
Get:361 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper-utils amd64 1.1.24+nmu5ubuntu1 [8,170 B]
Get:362 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpocofoundation50 amd64 1.8.0.1-1ubuntu4 [440 kB]
Get:363 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpococrypto50 amd64 1.8.0.1-1ubuntu4 [66.9 kB]
Get:364 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpocodata50 amd64 1.8.0.1-1ubuntu4 [377 kB]
Get:365 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpocojson50 amd64 1.8.0.1-1ubuntu4 [94.2 kB]
Get:366 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpocodatamysql50 amd64 1.8.0.1-1ubuntu4 [46.4 kB]
Get:367 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpoconet50 amd64 1.8.0.1-1ubuntu4 [313 kB]
Get:368 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpocomongodb50 amd64 1.8.0.1-1ubuntu4 [67.2 kB]
Get:369 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpocoxml50 amd64 1.8.0.1-1ubuntu4 [128 kB]
Get:370 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpocoutil50 amd64 1.8.0.1-1ubuntu4 [120 kB]
Get:371 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpoconetssl50 amd64 1.8.0.1-1ubuntu4 [74.7 kB]
Get:372 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpocodataodbc50 amd64 1.8.0.1-1ubuntu4 [210 kB]
Get:373 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpocodatasqlite50 amd64 1.8.0.1-1ubuntu4 [92.6 kB]
Get:374 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpocoredis50 amd64 1.8.0.1-1ubuntu4 [45.6 kB]
Get:375 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpocozip50 amd64 1.8.0.1-1ubuntu4 [84.6 kB]
Get:376 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsqlite3-dev amd64 3.22.0-1ubuntu0.3 [632 kB]
Get:377 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpoco-dev amd64 1.8.0.1-1ubuntu4 [518 kB]
Get:378 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libtinyxml2-6 amd64 6.0.0+dfsg-1 [27.9 kB]
Get:379 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebp6 amd64 0.6.1-2 [185 kB]
Get:380 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpdemux2 amd64 0.6.1-2 [9,472 B]
Get:381 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpmux3 amd64 0.6.1-2 [19.6 kB]
Get:382 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libwxbase3.0-0v5 amd64 3.0.4+dfsg-3 [954 kB]
Get:383 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglvnd0 amd64 1.0.0-2ubuntu2.3 [47.0 kB]
Get:384 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglx0 amd64 1.0.0-2ubuntu2.3 [28.1 kB]
Get:385 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgl1 amd64 1.0.0-2ubuntu2.3 [86.2 kB]
Get:386 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libwxgtk3.0-gtk3-0v5 amd64 3.0.4+dfsg-3 [4,154 kB]
Get:387 http://archive.ubuntu.com/ubuntu bionic/main amd64 notification-daemon amd64 3.20.0-3 [36.9 kB]
Get:388 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-asn1crypto all 0.24.0-1 [72.7 kB]
Get:389 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-six all 1.11.0-2 [11.3 kB]
Get:390 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-dateutil all 2.6.1-1 [60.6 kB]
Get:391 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-roman all 2.0.0-3 [8,548 B]
Get:392 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-docutils all 0.14+dfsg-3 [365 kB]
Get:393 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pyparsing all 2.2.0+dfsg1-2 [52.1 kB]
Get:394 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-cffi-backend amd64 1.11.5-1 [63.4 kB]
Get:395 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pkg-resources all 39.0.1-2 [128 kB]
Get:396 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-chardet all 3.0.4-1 [80.3 kB]
Get:397 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-enum34 all 1.1.6-2 [34.8 kB]
Get:398 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-idna all 2.6-1 [32.4 kB]
Get:399 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-ipaddress all 1.0.17-1 [18.2 kB]
Get:400 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python-cryptography amd64 2.1.4-1ubuntu1.3 [221 kB]
Get:401 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-defusedxml all 0.5.0-1ubuntu1 [35.1 kB]
Get:402 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-empy all 3.3.2-1build1 [72.5 kB]
Get:403 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 python-gnupg all 0.4.1-1ubuntu1.18.04.1 [17.0 kB]
Get:404 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-netifaces amd64 0.10.4-0.1build4 [16.6 kB]
Get:405 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-nose all 1.3.7-3 [116 kB]
Get:406 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-numpy amd64 1:1.13.3-2ubuntu1 [1,938 kB]
Get:407 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-olefile all 0.45.1-1 [33.2 kB]
Get:408 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pyasn1 all 0.4.2-3 [46.7 kB]
Get:409 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python-paramiko all 2.0.0-1ubuntu1.2 [110 kB]
Get:410 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python-pil amd64 5.1.0-1ubuntu0.2 [329 kB]
Get:411 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pycryptodome amd64 3.4.7-1ubuntu1 [4,755 kB]
Get:412 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pygments all 2.2.0+dfsg-1 [577 kB]
Get:413 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-yaml amd64 3.12-1build2 [115 kB]
Get:414 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-setuptools all 39.0.1-2 [329 kB]
Get:415 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-wxversion all 3.0.2.0+dfsg-7 [12.4 kB]
Get:416 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-wxgtk3.0 amd64 3.0.2.0+dfsg-7 [5,072 kB]
Get:417 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-wxtools all 3.0.2.0+dfsg-7 [8,040 B]
Get:418 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libconsole-bridge-dev amd64 0.4.0+dfsg-2 [6,596 B]
Get:419 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgpgme-dev amd64 1.10.0-1ubuntu2 [306 kB]
Get:420 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libtinyxml2-dev amd64 6.0.0+dfsg-1 [17.6 kB]
Get:421 http://archive.ubuntu.com/ubuntu bionic/universe amd64 liblog4cxx-dev amd64 0.10.0-13ubuntu2 [857 kB]
Get:422 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblz4-dev amd64 0.0~r131-2ubuntu3 [61.4 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 195 MB in 8s (25.2 MB/s)
Selecting previously unselected package multiarch-support.
(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 ... 16742 files and directories currently installed.)
Preparing to unpack .../multiarch-support_2.27-3ubuntu1_amd64.deb ...
Unpacking multiarch-support (2.27-3ubuntu1) ...
Setting up multiarch-support (2.27-3ubuntu1) ...
Selecting previously unselected package libxau6:amd64.
(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 ... 16745 files and directories currently installed.)
Preparing to unpack .../00-libxau6_1%3a1.0.8-1_amd64.deb ...
Unpacking libxau6:amd64 (1:1.0.8-1) ...
Selecting previously unselected package libxdmcp6:amd64.
Preparing to unpack .../01-libxdmcp6_1%3a1.1.2-3_amd64.deb ...
Unpacking libxdmcp6:amd64 (1:1.1.2-3) ...
Selecting previously unselected package libxcb1:amd64.
Preparing to unpack .../02-libxcb1_1.13-2~ubuntu18.04_amd64.deb ...
Unpacking libxcb1:amd64 (1.13-2~ubuntu18.04) ...
Selecting previously unselected package libx11-data.
Preparing to unpack .../03-libx11-data_2%3a1.6.4-3ubuntu0.2_all.deb ...
Unpacking libx11-data (2:1.6.4-3ubuntu0.2) ...
Selecting previously unselected package libx11-6:amd64.
Preparing to unpack .../04-libx11-6_2%3a1.6.4-3ubuntu0.2_amd64.deb ...
Unpacking libx11-6:amd64 (2:1.6.4-3ubuntu0.2) ...
Selecting previously unselected package libxext6:amd64.
Preparing to unpack .../05-libxext6_2%3a1.3.3-1_amd64.deb ...
Unpacking libxext6:amd64 (2:1.3.3-1) ...
Selecting previously unselected package libpng16-16:amd64.
Preparing to unpack .../06-libpng16-16_1.6.34-1ubuntu0.18.04.2_amd64.deb ...
Unpacking libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ...
Selecting previously unselected package libfreetype6:amd64.
Preparing to unpack .../07-libfreetype6_2.8.1-2ubuntu2_amd64.deb ...
Unpacking libfreetype6:amd64 (2.8.1-2ubuntu2) ...
Selecting previously unselected package ucf.
Preparing to unpack .../08-ucf_3.0038_all.deb ...
Moving old data out of the way
Unpacking ucf (3.0038) ...
Selecting previously unselected package fonts-dejavu-core.
Preparing to unpack .../09-fonts-dejavu-core_2.37-1_all.deb ...
Unpacking fonts-dejavu-core (2.37-1) ...
Selecting previously unselected package fontconfig-config.
Preparing to unpack .../10-fontconfig-config_2.12.6-0ubuntu2_all.deb ...
Unpacking fontconfig-config (2.12.6-0ubuntu2) ...
Selecting previously unselected package libfontconfig1:amd64.
Preparing to unpack .../11-libfontconfig1_2.12.6-0ubuntu2_amd64.deb ...
Unpacking libfontconfig1:amd64 (2.12.6-0ubuntu2) ...
Selecting previously unselected package fontconfig.
Preparing to unpack .../12-fontconfig_2.12.6-0ubuntu2_amd64.deb ...
Unpacking fontconfig (2.12.6-0ubuntu2) ...
Selecting previously unselected package libjpeg-turbo8:amd64.
Preparing to unpack .../13-libjpeg-turbo8_1.5.2-0ubuntu5.18.04.3_amd64.deb ...
Unpacking libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.3) ...
Selecting previously unselected package liblzo2-2:amd64.
Preparing to unpack .../14-liblzo2-2_2.08-1.2_amd64.deb ...
Unpacking liblzo2-2:amd64 (2.08-1.2) ...
Selecting previously unselected package x11-common.
Preparing to unpack .../15-x11-common_1%3a7.7+19ubuntu7.1_all.deb ...
dpkg-query: no packages found matching nux-tools
Unpacking x11-common (1:7.7+19ubuntu7.1) ...
Selecting previously unselected package libice6:amd64.
Preparing to unpack .../16-libice6_2%3a1.0.9-2_amd64.deb ...
Unpacking libice6:amd64 (2:1.0.9-2) ...
Preparing to unpack .../17-libuuid1_2.31.1-0.4ubuntu3.6_amd64.deb ...
Unpacking libuuid1:amd64 (2.31.1-0.4ubuntu3.6) over (2.31.1-0.4ubuntu3.5) ...
Setting up libuuid1:amd64 (2.31.1-0.4ubuntu3.6) ...
Selecting previously unselected package libsm6:amd64.
(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 ... 17268 files and directories currently installed.)
Preparing to unpack .../0-libsm6_2%3a1.2.2-1_amd64.deb ...
Unpacking libsm6:amd64 (2:1.2.2-1) ...
Selecting previously unselected package libxinerama1:amd64.
Preparing to unpack .../1-libxinerama1_2%3a1.1.3-1_amd64.deb ...
Unpacking libxinerama1:amd64 (2:1.1.3-1) ...
Selecting previously unselected package libxxf86vm1:amd64.
Preparing to unpack .../2-libxxf86vm1_1%3a1.1.4-1_amd64.deb ...
Unpacking libxxf86vm1:amd64 (1:1.1.4-1) ...
Selecting previously unselected package libpython2.7-minimal:amd64.
Preparing to unpack .../3-libpython2.7-minimal_2.7.17-1~18.04_amd64.deb ...
Unpacking libpython2.7-minimal:amd64 (2.7.17-1~18.04) ...
Selecting previously unselected package python2.7-minimal.
Preparing to unpack .../4-python2.7-minimal_2.7.17-1~18.04_amd64.deb ...
Unpacking python2.7-minimal (2.7.17-1~18.04) ...
Selecting previously unselected package python-minimal.
Preparing to unpack .../5-python-minimal_2.7.15~rc1-1_amd64.deb ...
Unpacking python-minimal (2.7.15~rc1-1) ...
Selecting previously unselected package libpython2.7-stdlib:amd64.
Preparing to unpack .../6-libpython2.7-stdlib_2.7.17-1~18.04_amd64.deb ...
Unpacking libpython2.7-stdlib:amd64 (2.7.17-1~18.04) ...
Selecting previously unselected package python2.7.
Preparing to unpack .../7-python2.7_2.7.17-1~18.04_amd64.deb ...
Unpacking python2.7 (2.7.17-1~18.04) ...
Selecting previously unselected package libpython-stdlib:amd64.
Preparing to unpack .../8-libpython-stdlib_2.7.15~rc1-1_amd64.deb ...
Unpacking libpython-stdlib:amd64 (2.7.15~rc1-1) ...
Setting up libpython2.7-minimal:amd64 (2.7.17-1~18.04) ...
Setting up python2.7-minimal (2.7.17-1~18.04) ...
Setting up python-minimal (2.7.15~rc1-1) ...
Selecting previously unselected package python.
(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 ... 18034 files and directories currently installed.)
Preparing to unpack .../000-python_2.7.15~rc1-1_amd64.deb ...
Unpacking python (2.7.15~rc1-1) ...
Selecting previously unselected package sgml-base.
Preparing to unpack .../001-sgml-base_1.29_all.deb ...
Unpacking sgml-base (1.29) ...
Selecting previously unselected package libapparmor1:amd64.
Preparing to unpack .../002-libapparmor1_2.12-4ubuntu5.1_amd64.deb ...
Unpacking libapparmor1:amd64 (2.12-4ubuntu5.1) ...
Selecting previously unselected package libdbus-1-3:amd64.
Preparing to unpack .../003-libdbus-1-3_1.12.2-1ubuntu1.1_amd64.deb ...
Unpacking libdbus-1-3:amd64 (1.12.2-1ubuntu1.1) ...
Selecting previously unselected package dbus.
Preparing to unpack .../004-dbus_1.12.2-1ubuntu1.1_amd64.deb ...
Unpacking dbus (1.12.2-1ubuntu1.1) ...
Selecting previously unselected package distro-info-data.
Preparing to unpack .../005-distro-info-data_0.37ubuntu0.6_all.deb ...
Unpacking distro-info-data (0.37ubuntu0.6) ...
Selecting previously unselected package libgirepository-1.0-1:amd64.
Preparing to unpack .../006-libgirepository-1.0-1_1.56.1-1_amd64.deb ...
Unpacking libgirepository-1.0-1:amd64 (1.56.1-1) ...
Selecting previously unselected package gir1.2-glib-2.0:amd64.
Preparing to unpack .../007-gir1.2-glib-2.0_1.56.1-1_amd64.deb ...
Unpacking gir1.2-glib-2.0:amd64 (1.56.1-1) ...
Selecting previously unselected package libelf1:amd64.
Preparing to unpack .../008-libelf1_0.170-0.4ubuntu0.1_amd64.deb ...
Unpacking libelf1:amd64 (0.170-0.4ubuntu0.1) ...
Selecting previously unselected package libyaml-0-2:amd64.
Preparing to unpack .../009-libyaml-0-2_0.1.7-2ubuntu3_amd64.deb ...
Unpacking libyaml-0-2:amd64 (0.1.7-2ubuntu3) ...
Selecting previously unselected package lsb-release.
Preparing to unpack .../010-lsb-release_9.20170808ubuntu1_all.deb ...
Unpacking lsb-release (9.20170808ubuntu1) ...
Selecting previously unselected package tzdata.
Preparing to unpack .../011-tzdata_2019c-0ubuntu0.18.04_all.deb ...
Unpacking tzdata (2019c-0ubuntu0.18.04) ...
Selecting previously unselected package xkb-data.
Preparing to unpack .../012-xkb-data_2.23.1-1ubuntu1.18.04.1_all.deb ...
Unpacking xkb-data (2.23.1-1ubuntu1.18.04.1) ...
Selecting previously unselected package libdrm-common.
Preparing to unpack .../013-libdrm-common_2.4.99-1ubuntu1~18.04.2_all.deb ...
Unpacking libdrm-common (2.4.99-1ubuntu1~18.04.2) ...
Selecting previously unselected package libdrm2:amd64.
Preparing to unpack .../014-libdrm2_2.4.99-1ubuntu1~18.04.2_amd64.deb ...
Unpacking libdrm2:amd64 (2.4.99-1ubuntu1~18.04.2) ...
Selecting previously unselected package libedit2:amd64.
Preparing to unpack .../015-libedit2_3.1-20170329-1_amd64.deb ...
Unpacking libedit2:amd64 (3.1-20170329-1) ...
Selecting previously unselected package libnuma1:amd64.
Preparing to unpack .../016-libnuma1_2.0.11-2.1ubuntu0.1_amd64.deb ...
Unpacking libnuma1:amd64 (2.0.11-2.1ubuntu0.1) ...
Selecting previously unselected package hicolor-icon-theme.
Preparing to unpack .../017-hicolor-icon-theme_0.17-2_all.deb ...
Unpacking hicolor-icon-theme (0.17-2) ...
Selecting previously unselected package libjpeg8:amd64.
Preparing to unpack .../018-libjpeg8_8c-2ubuntu8_amd64.deb ...
Unpacking libjpeg8:amd64 (8c-2ubuntu8) ...
Selecting previously unselected package libjbig0:amd64.
Preparing to unpack .../019-libjbig0_2.1-3.1build1_amd64.deb ...
Unpacking libjbig0:amd64 (2.1-3.1build1) ...
Selecting previously unselected package libtiff5:amd64.
Preparing to unpack .../020-libtiff5_4.0.9-5ubuntu0.3_amd64.deb ...
Unpacking libtiff5:amd64 (4.0.9-5ubuntu0.3) ...
Selecting previously unselected package libgdk-pixbuf2.0-common.
Preparing to unpack .../021-libgdk-pixbuf2.0-common_2.36.11-2_all.deb ...
Unpacking libgdk-pixbuf2.0-common (2.36.11-2) ...
Selecting previously unselected package libgdk-pixbuf2.0-0:amd64.
Preparing to unpack .../022-libgdk-pixbuf2.0-0_2.36.11-2_amd64.deb ...
Unpacking libgdk-pixbuf2.0-0:amd64 (2.36.11-2) ...
Selecting previously unselected package gtk-update-icon-cache.
Preparing to unpack .../023-gtk-update-icon-cache_3.22.30-1ubuntu4_amd64.deb ...
No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed.
No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed.
Unpacking gtk-update-icon-cache (3.22.30-1ubuntu4) ...
Selecting previously unselected package libpixman-1-0:amd64.
Preparing to unpack .../024-libpixman-1-0_0.34.0-2_amd64.deb ...
Unpacking libpixman-1-0:amd64 (0.34.0-2) ...
Selecting previously unselected package libxcb-render0:amd64.
Preparing to unpack .../025-libxcb-render0_1.13-2~ubuntu18.04_amd64.deb ...
Unpacking libxcb-render0:amd64 (1.13-2~ubuntu18.04) ...
Selecting previously unselected package libxcb-shm0:amd64.
Preparing to unpack .../026-libxcb-shm0_1.13-2~ubuntu18.04_amd64.deb ...
Unpacking libxcb-shm0:amd64 (1.13-2~ubuntu18.04) ...
Selecting previously unselected package libxrender1:amd64.
Preparing to unpack .../027-libxrender1_1%3a0.9.10-1_amd64.deb ...
Unpacking libxrender1:amd64 (1:0.9.10-1) ...
Selecting previously unselected package libcairo2:amd64.
Preparing to unpack .../028-libcairo2_1.15.10-2ubuntu0.1_amd64.deb ...
Unpacking libcairo2:amd64 (1.15.10-2ubuntu0.1) ...
Selecting previously unselected package libthai-data.
Preparing to unpack .../029-libthai-data_0.1.27-2_all.deb ...
Unpacking libthai-data (0.1.27-2) ...
Selecting previously unselected package libdatrie1:amd64.
Preparing to unpack .../030-libdatrie1_0.2.10-7_amd64.deb ...
Unpacking libdatrie1:amd64 (0.2.10-7) ...
Selecting previously unselected package libthai0:amd64.
Preparing to unpack .../031-libthai0_0.1.27-2_amd64.deb ...
Unpacking libthai0:amd64 (0.1.27-2) ...
Selecting previously unselected package libpango-1.0-0:amd64.
Preparing to unpack .../032-libpango-1.0-0_1.40.14-1ubuntu0.1_amd64.deb ...
Unpacking libpango-1.0-0:amd64 (1.40.14-1ubuntu0.1) ...
Selecting previously unselected package libgraphite2-3:amd64.
Preparing to unpack .../033-libgraphite2-3_1.3.11-2_amd64.deb ...
Unpacking libgraphite2-3:amd64 (1.3.11-2) ...
Selecting previously unselected package libharfbuzz0b:amd64.
Preparing to unpack .../034-libharfbuzz0b_1.7.2-1ubuntu1_amd64.deb ...
Unpacking libharfbuzz0b:amd64 (1.7.2-1ubuntu1) ...
Selecting previously unselected package libpangoft2-1.0-0:amd64.
Preparing to unpack .../035-libpangoft2-1.0-0_1.40.14-1ubuntu0.1_amd64.deb ...
Unpacking libpangoft2-1.0-0:amd64 (1.40.14-1ubuntu0.1) ...
Selecting previously unselected package libpangocairo-1.0-0:amd64.
Preparing to unpack .../036-libpangocairo-1.0-0_1.40.14-1ubuntu0.1_amd64.deb ...
Unpacking libpangocairo-1.0-0:amd64 (1.40.14-1ubuntu0.1) ...
Selecting previously unselected package librsvg2-2:amd64.
Preparing to unpack .../037-librsvg2-2_2.40.20-2_amd64.deb ...
Unpacking librsvg2-2:amd64 (2.40.20-2) ...
Selecting previously unselected package librsvg2-common:amd64.
Preparing to unpack .../038-librsvg2-common_2.40.20-2_amd64.deb ...
Unpacking librsvg2-common:amd64 (2.40.20-2) ...
Selecting previously unselected package humanity-icon-theme.
Preparing to unpack .../039-humanity-icon-theme_0.6.15_all.deb ...
Unpacking humanity-icon-theme (0.6.15) ...
Selecting previously unselected package ubuntu-mono.
Preparing to unpack .../040-ubuntu-mono_16.10+18.04.20181005-0ubuntu1_all.deb ...
Unpacking ubuntu-mono (16.10+18.04.20181005-0ubuntu1) ...
Selecting previously unselected package adwaita-icon-theme.
Preparing to unpack .../041-adwaita-icon-theme_3.28.0-1ubuntu1_all.deb ...
Unpacking adwaita-icon-theme (3.28.0-1ubuntu1) ...
Selecting previously unselected package libatspi2.0-0:amd64.
Preparing to unpack .../042-libatspi2.0-0_2.28.0-1_amd64.deb ...
Unpacking libatspi2.0-0:amd64 (2.28.0-1) ...
Selecting previously unselected package libxtst6:amd64.
Preparing to unpack .../043-libxtst6_2%3a1.2.3-1_amd64.deb ...
Unpacking libxtst6:amd64 (2:1.2.3-1) ...
Selecting previously unselected package at-spi2-core.
Preparing to unpack .../044-at-spi2-core_2.28.0-1_amd64.deb ...
Unpacking at-spi2-core (2.28.0-1) ...
Selecting previously unselected package bzip2-doc.
Preparing to unpack .../045-bzip2-doc_1.0.6-8.1ubuntu0.2_all.deb ...
Unpacking bzip2-doc (1.0.6-8.1ubuntu0.2) ...
Selecting previously unselected package cmake-data.
Preparing to unpack .../046-cmake-data_3.10.2-1ubuntu2.18.04.1_all.deb ...
Unpacking cmake-data (3.10.2-1ubuntu2.18.04.1) ...
Selecting previously unselected package libarchive13:amd64.
Preparing to unpack .../047-libarchive13_3.2.2-3.1ubuntu0.6_amd64.deb ...
Unpacking libarchive13:amd64 (3.2.2-3.1ubuntu0.6) ...
Selecting previously unselected package libjsoncpp1:amd64.
Preparing to unpack .../048-libjsoncpp1_1.7.4-3_amd64.deb ...
Unpacking libjsoncpp1:amd64 (1.7.4-3) ...
Selecting previously unselected package librhash0:amd64.
Preparing to unpack .../049-librhash0_1.3.6-2_amd64.deb ...
Unpacking librhash0:amd64 (1.3.6-2) ...
Selecting previously unselected package libuv1:amd64.
Preparing to unpack .../050-libuv1_1.18.0-3_amd64.deb ...
Unpacking libuv1:amd64 (1.18.0-3) ...
Selecting previously unselected package cmake.
Preparing to unpack .../051-cmake_3.10.2-1ubuntu2.18.04.1_amd64.deb ...
Unpacking cmake (3.10.2-1ubuntu2.18.04.1) ...
Selecting previously unselected package libdconf1:amd64.
Preparing to unpack .../052-libdconf1_0.26.0-2ubuntu3_amd64.deb ...
Unpacking libdconf1:amd64 (0.26.0-2ubuntu3) ...
Selecting previously unselected package dconf-service.
Preparing to unpack .../053-dconf-service_0.26.0-2ubuntu3_amd64.deb ...
Unpacking dconf-service (0.26.0-2ubuntu3) ...
Selecting previously unselected package dconf-gsettings-backend:amd64.
Preparing to unpack .../054-dconf-gsettings-backend_0.26.0-2ubuntu3_amd64.deb ...
Unpacking dconf-gsettings-backend:amd64 (0.26.0-2ubuntu3) ...
Selecting previously unselected package mysql-common.
Preparing to unpack .../055-mysql-common_5.8+1.0.4_all.deb ...
Unpacking mysql-common (5.8+1.0.4) ...
Selecting previously unselected package libmysqlclient20:amd64.
Preparing to unpack .../056-libmysqlclient20_5.7.29-0ubuntu0.18.04.1_amd64.deb ...
Unpacking libmysqlclient20:amd64 (5.7.29-0ubuntu0.18.04.1) ...
Selecting previously unselected package libssl-dev:amd64.
Preparing to unpack .../057-libssl-dev_1.1.1-1ubuntu2.1~18.04.5_amd64.deb ...
Unpacking libssl-dev:amd64 (1.1.1-1ubuntu2.1~18.04.5) ...
Selecting previously unselected package zlib1g-dev:amd64.
Preparing to unpack .../058-zlib1g-dev_1%3a1.2.11.dfsg-0ubuntu2_amd64.deb ...
Unpacking zlib1g-dev:amd64 (1:1.2.11.dfsg-0ubuntu2) ...
Selecting previously unselected package libmysqlclient-dev.
Preparing to unpack .../059-libmysqlclient-dev_5.7.29-0ubuntu0.18.04.1_amd64.deb ...
Unpacking libmysqlclient-dev (5.7.29-0ubuntu0.18.04.1) ...
Selecting previously unselected package default-libmysqlclient-dev:amd64.
Preparing to unpack .../060-default-libmysqlclient-dev_1.0.4_amd64.deb ...
Unpacking default-libmysqlclient-dev:amd64 (1.0.4) ...
Selecting previously unselected package xml-core.
Preparing to unpack .../061-xml-core_0.18_all.deb ...
Unpacking xml-core (0.18) ...
Selecting previously unselected package docutils-common.
Preparing to unpack .../062-docutils-common_0.14+dfsg-3_all.deb ...
Unpacking docutils-common (0.14+dfsg-3) ...
Selecting previously unselected package docutils-doc.
Preparing to unpack .../063-docutils-doc_0.14+dfsg-3_all.deb ...
Unpacking docutils-doc (0.14+dfsg-3) ...
Selecting previously unselected package gir1.2-harfbuzz-0.0:amd64.
Preparing to unpack .../064-gir1.2-harfbuzz-0.0_1.7.2-1ubuntu1_amd64.deb ...
Unpacking gir1.2-harfbuzz-0.0:amd64 (1.7.2-1ubuntu1) ...
Selecting previously unselected package libproxy1v5:amd64.
Preparing to unpack .../065-libproxy1v5_0.4.15-1_amd64.deb ...
Unpacking libproxy1v5:amd64 (0.4.15-1) ...
Selecting previously unselected package glib-networking-common.
Preparing to unpack .../066-glib-networking-common_2.56.0-1_all.deb ...
Unpacking glib-networking-common (2.56.0-1) ...
Selecting previously unselected package glib-networking-services.
Preparing to unpack .../067-glib-networking-services_2.56.0-1_amd64.deb ...
Unpacking glib-networking-services (2.56.0-1) ...
Selecting previously unselected package gsettings-desktop-schemas.
Preparing to unpack .../068-gsettings-desktop-schemas_3.28.0-1ubuntu1_all.deb ...
Unpacking gsettings-desktop-schemas (3.28.0-1ubuntu1) ...
Selecting previously unselected package glib-networking:amd64.
Preparing to unpack .../069-glib-networking_2.56.0-1_amd64.deb ...
Unpacking glib-networking:amd64 (2.56.0-1) ...
Selecting previously unselected package googletest:amd64.
Preparing to unpack .../070-googletest_1.8.0-6_amd64.deb ...
Unpacking googletest:amd64 (1.8.0-6) ...
Selecting previously unselected package google-mock:amd64.
Preparing to unpack .../071-google-mock_1.8.0-6_amd64.deb ...
Unpacking google-mock:amd64 (1.8.0-6) ...
Selecting previously unselected package libnl-3-200:amd64.
Preparing to unpack .../072-libnl-3-200_3.2.29-0ubuntu3_amd64.deb ...
Unpacking libnl-3-200:amd64 (3.2.29-0ubuntu3) ...
Selecting previously unselected package libnl-route-3-200:amd64.
Preparing to unpack .../073-libnl-route-3-200_3.2.29-0ubuntu3_amd64.deb ...
Unpacking libnl-route-3-200:amd64 (3.2.29-0ubuntu3) ...
Selecting previously unselected package libibverbs1:amd64.
Preparing to unpack .../074-libibverbs1_17.1-1ubuntu0.2_amd64.deb ...
Unpacking libibverbs1:amd64 (17.1-1ubuntu0.2) ...
Selecting previously unselected package ibverbs-providers:amd64.
Preparing to unpack .../075-ibverbs-providers_17.1-1ubuntu0.2_amd64.deb ...
Unpacking ibverbs-providers:amd64 (17.1-1ubuntu0.2) ...
Selecting previously unselected package icu-devtools.
Preparing to unpack .../076-icu-devtools_60.2-3ubuntu3.1_amd64.deb ...
Unpacking icu-devtools (60.2-3ubuntu3.1) ...
Selecting previously unselected package libapr1:amd64.
Preparing to unpack .../077-libapr1_1.6.3-2_amd64.deb ...
Unpacking libapr1:amd64 (1.6.3-2) ...
Selecting previously unselected package uuid-dev:amd64.
Preparing to unpack .../078-uuid-dev_2.31.1-0.4ubuntu3.6_amd64.deb ...
Unpacking uuid-dev:amd64 (2.31.1-0.4ubuntu3.6) ...
Selecting previously unselected package libsctp1:amd64.
Preparing to unpack .../079-libsctp1_1.0.17+dfsg-2_amd64.deb ...
Unpacking libsctp1:amd64 (1.0.17+dfsg-2) ...
Selecting previously unselected package libsctp-dev:amd64.
Preparing to unpack .../080-libsctp-dev_1.0.17+dfsg-2_amd64.deb ...
Unpacking libsctp-dev:amd64 (1.0.17+dfsg-2) ...
Selecting previously unselected package libapr1-dev.
Preparing to unpack .../081-libapr1-dev_1.6.3-2_amd64.deb ...
Unpacking libapr1-dev (1.6.3-2) ...
Selecting previously unselected package libaprutil1:amd64.
Preparing to unpack .../082-libaprutil1_1.6.1-2_amd64.deb ...
Unpacking libaprutil1:amd64 (1.6.1-2) ...
Selecting previously unselected package libldap2-dev:amd64.
Preparing to unpack .../083-libldap2-dev_2.4.45+dfsg-1ubuntu1.4_amd64.deb ...
Unpacking libldap2-dev:amd64 (2.4.45+dfsg-1ubuntu1.4) ...
Selecting previously unselected package libexpat1-dev:amd64.
Preparing to unpack .../084-libexpat1-dev_2.2.5-3ubuntu0.2_amd64.deb ...
Unpacking libexpat1-dev:amd64 (2.2.5-3ubuntu0.2) ...
Selecting previously unselected package libaprutil1-dev.
Preparing to unpack .../085-libaprutil1-dev_1.6.1-2_amd64.deb ...
Unpacking libaprutil1-dev (1.6.1-2) ...
Selecting previously unselected package libassuan-dev.
Preparing to unpack .../086-libassuan-dev_2.5.1-2_amd64.deb ...
Unpacking libassuan-dev (2.5.1-2) ...
Selecting previously unselected package libatk1.0-data.
Preparing to unpack .../087-libatk1.0-data_2.28.1-1_all.deb ...
Unpacking libatk1.0-data (2.28.1-1) ...
Selecting previously unselected package libatk1.0-0:amd64.
Preparing to unpack .../088-libatk1.0-0_2.28.1-1_amd64.deb ...
Unpacking libatk1.0-0:amd64 (2.28.1-1) ...
Selecting previously unselected package libatk-bridge2.0-0:amd64.
Preparing to unpack .../089-libatk-bridge2.0-0_2.26.2-1_amd64.deb ...
Unpacking libatk-bridge2.0-0:amd64 (2.26.2-1) ...
Selecting previously unselected package libavahi-common-data:amd64.
Preparing to unpack .../090-libavahi-common-data_0.7-3.1ubuntu1.2_amd64.deb ...
Unpacking libavahi-common-data:amd64 (0.7-3.1ubuntu1.2) ...
Selecting previously unselected package libavahi-common3:amd64.
Preparing to unpack .../091-libavahi-common3_0.7-3.1ubuntu1.2_amd64.deb ...
Unpacking libavahi-common3:amd64 (0.7-3.1ubuntu1.2) ...
Selecting previously unselected package libavahi-client3:amd64.
Preparing to unpack .../092-libavahi-client3_0.7-3.1ubuntu1.2_amd64.deb ...
Unpacking libavahi-client3:amd64 (0.7-3.1ubuntu1.2) ...
Selecting previously unselected package libblas3:amd64.
Preparing to unpack .../093-libblas3_3.7.1-4ubuntu1_amd64.deb ...
Unpacking libblas3:amd64 (3.7.1-4ubuntu1) ...
Selecting previously unselected package libboost1.65-dev:amd64.
Preparing to unpack .../094-libboost1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-dev:amd64.
Preparing to unpack .../095-libboost-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost1.65-tools-dev.
Preparing to unpack .../096-libboost1.65-tools-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost1.65-tools-dev (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-tools-dev.
Preparing to unpack .../097-libboost-tools-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-tools-dev (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-atomic1.65.1:amd64.
Preparing to unpack .../098-libboost-atomic1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-atomic1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-atomic1.65-dev:amd64.
Preparing to unpack .../099-libboost-atomic1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-atomic1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-atomic-dev:amd64.
Preparing to unpack .../100-libboost-atomic-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-atomic-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-system1.65.1:amd64.
Preparing to unpack .../101-libboost-system1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-system1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-chrono1.65.1:amd64.
Preparing to unpack .../102-libboost-chrono1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-chrono1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-chrono1.65-dev:amd64.
Preparing to unpack .../103-libboost-chrono1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-chrono1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-chrono-dev:amd64.
Preparing to unpack .../104-libboost-chrono-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-chrono-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-container1.65.1:amd64.
Preparing to unpack .../105-libboost-container1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-container1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-container1.65-dev:amd64.
Preparing to unpack .../106-libboost-container1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-container1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-container-dev:amd64.
Preparing to unpack .../107-libboost-container-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-container-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-context1.65.1:amd64.
Preparing to unpack .../108-libboost-context1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-context1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-context1.65-dev:amd64.
Preparing to unpack .../109-libboost-context1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-context1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-context-dev:amd64.
Preparing to unpack .../110-libboost-context-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-context-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-thread1.65.1:amd64.
Preparing to unpack .../111-libboost-thread1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-thread1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-coroutine1.65.1:amd64.
Preparing to unpack .../112-libboost-coroutine1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-coroutine1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-coroutine1.65-dev:amd64.
Preparing to unpack .../113-libboost-coroutine1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-coroutine1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-coroutine-dev:amd64.
Preparing to unpack .../114-libboost-coroutine-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-coroutine-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-date-time1.65.1:amd64.
Preparing to unpack .../115-libboost-date-time1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-date-time1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-serialization1.65.1:amd64.
Preparing to unpack .../116-libboost-serialization1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-serialization1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-serialization1.65-dev:amd64.
Preparing to unpack .../117-libboost-serialization1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-serialization1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-date-time1.65-dev:amd64.
Preparing to unpack .../118-libboost-date-time1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-date-time1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-date-time-dev:amd64.
Preparing to unpack .../119-libboost-date-time-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-date-time-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-exception1.65-dev:amd64.
Preparing to unpack .../120-libboost-exception1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-exception1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-exception-dev:amd64.
Preparing to unpack .../121-libboost-exception-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-exception-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-filesystem1.65.1:amd64.
Preparing to unpack .../122-libboost-filesystem1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-filesystem1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-fiber1.65.1:amd64.
Preparing to unpack .../123-libboost-fiber1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-fiber1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-fiber1.65-dev:amd64.
Preparing to unpack .../124-libboost-fiber1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-fiber1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-fiber-dev:amd64.
Preparing to unpack .../125-libboost-fiber-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-fiber-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-system1.65-dev:amd64.
Preparing to unpack .../126-libboost-system1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-system1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-filesystem1.65-dev:amd64.
Preparing to unpack .../127-libboost-filesystem1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-filesystem1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-filesystem-dev:amd64.
Preparing to unpack .../128-libboost-filesystem-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-filesystem-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-regex1.65.1:amd64.
Preparing to unpack .../129-libboost-regex1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-regex1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-graph1.65.1:amd64.
Preparing to unpack .../130-libboost-graph1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-graph1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-test1.65.1:amd64.
Preparing to unpack .../131-libboost-test1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-test1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-test1.65-dev:amd64.
Preparing to unpack .../132-libboost-test1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-test1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-graph1.65-dev:amd64.
Preparing to unpack .../133-libboost-graph1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-graph1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-graph-dev:amd64.
Preparing to unpack .../134-libboost-graph-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-graph-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libpsm-infinipath1.
Preparing to unpack .../135-libpsm-infinipath1_3.3+20.604758e7-5_amd64.deb ...
Unpacking libpsm-infinipath1 (3.3+20.604758e7-5) ...
Selecting previously unselected package librdmacm1:amd64.
Preparing to unpack .../136-librdmacm1_17.1-1ubuntu0.2_amd64.deb ...
Unpacking librdmacm1:amd64 (17.1-1ubuntu0.2) ...
Selecting previously unselected package libfabric1.
Preparing to unpack .../137-libfabric1_1.5.3-1_amd64.deb ...
Unpacking libfabric1 (1.5.3-1) ...
Selecting previously unselected package libhwloc5:amd64.
Preparing to unpack .../138-libhwloc5_1.11.9-1_amd64.deb ...
Unpacking libhwloc5:amd64 (1.11.9-1) ...
Selecting previously unselected package libpciaccess0:amd64.
Preparing to unpack .../139-libpciaccess0_0.14-1_amd64.deb ...
Unpacking libpciaccess0:amd64 (0.14-1) ...
Selecting previously unselected package ocl-icd-libopencl1:amd64.
Preparing to unpack .../140-ocl-icd-libopencl1_2.2.11-1ubuntu1_amd64.deb ...
Unpacking ocl-icd-libopencl1:amd64 (2.2.11-1ubuntu1) ...
Selecting previously unselected package libhwloc-plugins.
Preparing to unpack .../141-libhwloc-plugins_1.11.9-1_amd64.deb ...
Unpacking libhwloc-plugins (1.11.9-1) ...
Selecting previously unselected package libopenmpi2:amd64.
Preparing to unpack .../142-libopenmpi2_2.1.1-8_amd64.deb ...
Unpacking libopenmpi2:amd64 (2.1.1-8) ...
Selecting previously unselected package libboost-mpi1.65.1.
Preparing to unpack .../143-libboost-mpi1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-mpi1.65.1 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-graph-parallel1.65.1.
Preparing to unpack .../144-libboost-graph-parallel1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-graph-parallel1.65.1 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-graph-parallel1.65-dev.
Preparing to unpack .../145-libboost-graph-parallel1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-graph-parallel1.65-dev (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-graph-parallel-dev.
Preparing to unpack .../146-libboost-graph-parallel-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-graph-parallel-dev (1.65.1.0ubuntu1) ...
Selecting previously unselected package libicu-le-hb0:amd64.
Preparing to unpack .../147-libicu-le-hb0_1.0.3+git161113-4_amd64.deb ...
Unpacking libicu-le-hb0:amd64 (1.0.3+git161113-4) ...
Selecting previously unselected package libiculx60:amd64.
Preparing to unpack .../148-libiculx60_60.2-3ubuntu3.1_amd64.deb ...
Unpacking libiculx60:amd64 (60.2-3ubuntu3.1) ...
Selecting previously unselected package libharfbuzz-icu0:amd64.
Preparing to unpack .../149-libharfbuzz-icu0_1.7.2-1ubuntu1_amd64.deb ...
Unpacking libharfbuzz-icu0:amd64 (1.7.2-1ubuntu1) ...
Selecting previously unselected package libharfbuzz-gobject0:amd64.
Preparing to unpack .../150-libharfbuzz-gobject0_1.7.2-1ubuntu1_amd64.deb ...
Unpacking libharfbuzz-gobject0:amd64 (1.7.2-1ubuntu1) ...
Selecting previously unselected package libglib2.0-bin.
Preparing to unpack .../151-libglib2.0-bin_2.56.4-0ubuntu0.18.04.6_amd64.deb ...
Unpacking libglib2.0-bin (2.56.4-0ubuntu0.18.04.6) ...
Selecting previously unselected package libglib2.0-dev-bin.
Preparing to unpack .../152-libglib2.0-dev-bin_2.56.4-0ubuntu0.18.04.6_amd64.deb ...
Unpacking libglib2.0-dev-bin (2.56.4-0ubuntu0.18.04.6) ...
Selecting previously unselected package libpcre16-3:amd64.
Preparing to unpack .../153-libpcre16-3_2%3a8.39-9_amd64.deb ...
Unpacking libpcre16-3:amd64 (2:8.39-9) ...
Selecting previously unselected package libpcre32-3:amd64.
Preparing to unpack .../154-libpcre32-3_2%3a8.39-9_amd64.deb ...
Unpacking libpcre32-3:amd64 (2:8.39-9) ...
Selecting previously unselected package libpcrecpp0v5:amd64.
Preparing to unpack .../155-libpcrecpp0v5_2%3a8.39-9_amd64.deb ...
Unpacking libpcrecpp0v5:amd64 (2:8.39-9) ...
Selecting previously unselected package libpcre3-dev:amd64.
Preparing to unpack .../156-libpcre3-dev_2%3a8.39-9_amd64.deb ...
Unpacking libpcre3-dev:amd64 (2:8.39-9) ...
Selecting previously unselected package pkg-config.
Preparing to unpack .../157-pkg-config_0.29.1-0ubuntu2_amd64.deb ...
Unpacking pkg-config (0.29.1-0ubuntu2) ...
Selecting previously unselected package libglib2.0-dev:amd64.
Preparing to unpack .../158-libglib2.0-dev_2.56.4-0ubuntu0.18.04.6_amd64.deb ...
Unpacking libglib2.0-dev:amd64 (2.56.4-0ubuntu0.18.04.6) ...
Selecting previously unselected package libgraphite2-dev:amd64.
Preparing to unpack .../159-libgraphite2-dev_1.3.11-2_amd64.deb ...
Unpacking libgraphite2-dev:amd64 (1.3.11-2) ...
Selecting previously unselected package libharfbuzz-dev:amd64.
Preparing to unpack .../160-libharfbuzz-dev_1.7.2-1ubuntu1_amd64.deb ...
Unpacking libharfbuzz-dev:amd64 (1.7.2-1ubuntu1) ...
Selecting previously unselected package libicu-le-hb-dev:amd64.
Preparing to unpack .../161-libicu-le-hb-dev_1.0.3+git161113-4_amd64.deb ...
Unpacking libicu-le-hb-dev:amd64 (1.0.3+git161113-4) ...
Selecting previously unselected package libicu-dev.
Preparing to unpack .../162-libicu-dev_60.2-3ubuntu3.1_amd64.deb ...
Unpacking libicu-dev (60.2-3ubuntu3.1) ...
Selecting previously unselected package libboost-regex1.65-dev:amd64.
Preparing to unpack .../163-libboost-regex1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-regex1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-iostreams1.65.1:amd64.
Preparing to unpack .../164-libboost-iostreams1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-iostreams1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-iostreams1.65-dev:amd64.
Preparing to unpack .../165-libboost-iostreams1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-iostreams1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-iostreams-dev:amd64.
Preparing to unpack .../166-libboost-iostreams-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-iostreams-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-locale1.65.1:amd64.
Preparing to unpack .../167-libboost-locale1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-locale1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-locale1.65-dev:amd64.
Preparing to unpack .../168-libboost-locale1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-locale1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-locale-dev:amd64.
Preparing to unpack .../169-libboost-locale-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-locale-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-log1.65.1.
Preparing to unpack .../170-libboost-log1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-log1.65.1 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-thread1.65-dev:amd64.
Preparing to unpack .../171-libboost-thread1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-thread1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-log1.65-dev.
Preparing to unpack .../172-libboost-log1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-log1.65-dev (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-log-dev.
Preparing to unpack .../173-libboost-log-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-log-dev (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-math1.65.1:amd64.
Preparing to unpack .../174-libboost-math1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-math1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-math1.65-dev:amd64.
Preparing to unpack .../175-libboost-math1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-math1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-math-dev:amd64.
Preparing to unpack .../176-libboost-math-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-math-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package openmpi-common.
Preparing to unpack .../177-openmpi-common_2.1.1-8_all.deb ...
Unpacking openmpi-common (2.1.1-8) ...
Selecting previously unselected package libibverbs-dev:amd64.
Preparing to unpack .../178-libibverbs-dev_17.1-1ubuntu0.2_amd64.deb ...
Unpacking libibverbs-dev:amd64 (17.1-1ubuntu0.2) ...
Selecting previously unselected package libnuma-dev:amd64.
Preparing to unpack .../179-libnuma-dev_2.0.11-2.1ubuntu0.1_amd64.deb ...
Unpacking libnuma-dev:amd64 (2.0.11-2.1ubuntu0.1) ...
Selecting previously unselected package libhwloc-dev:amd64.
Preparing to unpack .../180-libhwloc-dev_1.11.9-1_amd64.deb ...
Unpacking libhwloc-dev:amd64 (1.11.9-1) ...
Selecting previously unselected package libopenmpi-dev.
Preparing to unpack .../181-libopenmpi-dev_2.1.1-8_amd64.deb ...
Unpacking libopenmpi-dev (2.1.1-8) ...
Selecting previously unselected package mpi-default-dev.
Preparing to unpack .../182-mpi-default-dev_1.10_amd64.deb ...
Unpacking mpi-default-dev (1.10) ...
Selecting previously unselected package libboost-mpi1.65-dev.
Preparing to unpack .../183-libboost-mpi1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-mpi1.65-dev (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-mpi-dev.
Preparing to unpack .../184-libboost-mpi-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-mpi-dev (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-python1.65.1.
Preparing to unpack .../185-libboost-python1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-python1.65.1 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package openmpi-bin.
Preparing to unpack .../186-openmpi-bin_2.1.1-8_amd64.deb ...
Unpacking openmpi-bin (2.1.1-8) ...
Selecting previously unselected package mpi-default-bin.
Preparing to unpack .../187-mpi-default-bin_1.10_amd64.deb ...
Unpacking mpi-default-bin (1.10) ...
Selecting previously unselected package libboost-mpi-python1.65.1.
Preparing to unpack .../188-libboost-mpi-python1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-mpi-python1.65.1 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-mpi-python1.65-dev.
Preparing to unpack .../189-libboost-mpi-python1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-mpi-python1.65-dev (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-mpi-python-dev.
Preparing to unpack .../190-libboost-mpi-python-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-mpi-python-dev (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-numpy1.65.1.
Preparing to unpack .../191-libboost-numpy1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-numpy1.65.1 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-numpy1.65-dev.
Preparing to unpack .../192-libboost-numpy1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-numpy1.65-dev (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-numpy-dev.
Preparing to unpack .../193-libboost-numpy-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-numpy-dev (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-program-options1.65.1:amd64.
Preparing to unpack .../194-libboost-program-options1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-program-options1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-program-options1.65-dev:amd64.
Preparing to unpack .../195-libboost-program-options1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-program-options1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-program-options-dev:amd64.
Preparing to unpack .../196-libboost-program-options-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-program-options-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libpython2.7:amd64.
Preparing to unpack .../197-libpython2.7_2.7.17-1~18.04_amd64.deb ...
Unpacking libpython2.7:amd64 (2.7.17-1~18.04) ...
Selecting previously unselected package libpython2.7-dev:amd64.
Preparing to unpack .../198-libpython2.7-dev_2.7.17-1~18.04_amd64.deb ...
Unpacking libpython2.7-dev:amd64 (2.7.17-1~18.04) ...
Selecting previously unselected package libpython-dev:amd64.
Preparing to unpack .../199-libpython-dev_2.7.15~rc1-1_amd64.deb ...
Unpacking libpython-dev:amd64 (2.7.15~rc1-1) ...
Selecting previously unselected package python2.7-dev.
Preparing to unpack .../200-python2.7-dev_2.7.17-1~18.04_amd64.deb ...
Unpacking python2.7-dev (2.7.17-1~18.04) ...
Selecting previously unselected package python-dev.
Preparing to unpack .../201-python-dev_2.7.15~rc1-1_amd64.deb ...
Unpacking python-dev (2.7.15~rc1-1) ...
Selecting previously unselected package libpython3.6:amd64.
Preparing to unpack .../202-libpython3.6_3.6.9-1~18.04_amd64.deb ...
Unpacking libpython3.6:amd64 (3.6.9-1~18.04) ...
Selecting previously unselected package libpython3.6-dev:amd64.
Preparing to unpack .../203-libpython3.6-dev_3.6.9-1~18.04_amd64.deb ...
Unpacking libpython3.6-dev:amd64 (3.6.9-1~18.04) ...
Selecting previously unselected package libpython3-dev:amd64.
Preparing to unpack .../204-libpython3-dev_3.6.7-1~18.04_amd64.deb ...
Unpacking libpython3-dev:amd64 (3.6.7-1~18.04) ...
Selecting previously unselected package python3.6-dev.
Preparing to unpack .../205-python3.6-dev_3.6.9-1~18.04_amd64.deb ...
Unpacking python3.6-dev (3.6.9-1~18.04) ...
Selecting previously unselected package python3-dev.
Preparing to unpack .../206-python3-dev_3.6.7-1~18.04_amd64.deb ...
Unpacking python3-dev (3.6.7-1~18.04) ...
Selecting previously unselected package libboost-python1.65-dev.
Preparing to unpack .../207-libboost-python1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-python1.65-dev (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-python-dev.
Preparing to unpack .../208-libboost-python-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-python-dev (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-random1.65.1:amd64.
Preparing to unpack .../209-libboost-random1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-random1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-random1.65-dev:amd64.
Preparing to unpack .../210-libboost-random1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-random1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-random-dev:amd64.
Preparing to unpack .../211-libboost-random-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-random-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-regex-dev:amd64.
Preparing to unpack .../212-libboost-regex-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-regex-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-serialization-dev:amd64.
Preparing to unpack .../213-libboost-serialization-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-serialization-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-signals1.65.1:amd64.
Preparing to unpack .../214-libboost-signals1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-signals1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-signals1.65-dev:amd64.
Preparing to unpack .../215-libboost-signals1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-signals1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-signals-dev:amd64.
Preparing to unpack .../216-libboost-signals-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-signals-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-stacktrace1.65.1:amd64.
Preparing to unpack .../217-libboost-stacktrace1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-stacktrace1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-stacktrace1.65-dev:amd64.
Preparing to unpack .../218-libboost-stacktrace1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-stacktrace1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-stacktrace-dev:amd64.
Preparing to unpack .../219-libboost-stacktrace-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-stacktrace-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-system-dev:amd64.
Preparing to unpack .../220-libboost-system-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-system-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-test-dev:amd64.
Preparing to unpack .../221-libboost-test-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-test-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-thread-dev:amd64.
Preparing to unpack .../222-libboost-thread-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-thread-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-timer1.65.1:amd64.
Preparing to unpack .../223-libboost-timer1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-timer1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-timer1.65-dev:amd64.
Preparing to unpack .../224-libboost-timer1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-timer1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-timer-dev:amd64.
Preparing to unpack .../225-libboost-timer-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-timer-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-type-erasure1.65.1:amd64.
Preparing to unpack .../226-libboost-type-erasure1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-type-erasure1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-type-erasure1.65-dev:amd64.
Preparing to unpack .../227-libboost-type-erasure1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-type-erasure1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-type-erasure-dev:amd64.
Preparing to unpack .../228-libboost-type-erasure-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-type-erasure-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-wave1.65.1:amd64.
Preparing to unpack .../229-libboost-wave1.65.1_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-wave1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-wave1.65-dev:amd64.
Preparing to unpack .../230-libboost-wave1.65-dev_1.65.1+dfsg-0ubuntu5_amd64.deb ...
Unpacking libboost-wave1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Selecting previously unselected package libboost-wave-dev:amd64.
Preparing to unpack .../231-libboost-wave-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-wave-dev:amd64 (1.65.1.0ubuntu1) ...
Selecting previously unselected package libboost-all-dev.
Preparing to unpack .../232-libboost-all-dev_1.65.1.0ubuntu1_amd64.deb ...
Unpacking libboost-all-dev (1.65.1.0ubuntu1) ...
Selecting previously unselected package libbz2-dev:amd64.
Preparing to unpack .../233-libbz2-dev_1.0.6-8.1ubuntu0.2_amd64.deb ...
Unpacking libbz2-dev:amd64 (1.0.6-8.1ubuntu0.2) ...
Selecting previously unselected package libcairo-gobject2:amd64.
Preparing to unpack .../234-libcairo-gobject2_1.15.10-2ubuntu0.1_amd64.deb ...
Unpacking libcairo-gobject2:amd64 (1.15.10-2ubuntu0.1) ...
Selecting previously unselected package liblcms2-2:amd64.
Preparing to unpack .../235-liblcms2-2_2.9-1ubuntu0.1_amd64.deb ...
Unpacking liblcms2-2:amd64 (2.9-1ubuntu0.1) ...
Selecting previously unselected package libcolord2:amd64.
Preparing to unpack .../236-libcolord2_1.3.3-2build1_amd64.deb ...
Unpacking libcolord2:amd64 (1.3.3-2build1) ...
Selecting previously unselected package libconsole-bridge0.4:amd64.
Preparing to unpack .../237-libconsole-bridge0.4_0.4.0+dfsg-2_amd64.deb ...
Unpacking libconsole-bridge0.4:amd64 (0.4.0+dfsg-2) ...
Selecting previously unselected package libcups2:amd64.
Preparing to unpack .../238-libcups2_2.2.7-1ubuntu2.7_amd64.deb ...
Unpacking libcups2:amd64 (2.2.7-1ubuntu2.7) ...
Selecting previously unselected package libdrm-amdgpu1:amd64.
Preparing to unpack .../239-libdrm-amdgpu1_2.4.99-1ubuntu1~18.04.2_amd64.deb ...
Unpacking libdrm-amdgpu1:amd64 (2.4.99-1ubuntu1~18.04.2) ...
Selecting previously unselected package libdrm-intel1:amd64.
Preparing to unpack .../240-libdrm-intel1_2.4.99-1ubuntu1~18.04.2_amd64.deb ...
Unpacking libdrm-intel1:amd64 (2.4.99-1ubuntu1~18.04.2) ...
Selecting previously unselected package libdrm-nouveau2:amd64.
Preparing to unpack .../241-libdrm-nouveau2_2.4.99-1ubuntu1~18.04.2_amd64.deb ...
Unpacking libdrm-nouveau2:amd64 (2.4.99-1ubuntu1~18.04.2) ...
Selecting previously unselected package libdrm-radeon1:amd64.
Preparing to unpack .../242-libdrm-radeon1_2.4.99-1ubuntu1~18.04.2_amd64.deb ...
Unpacking libdrm-radeon1:amd64 (2.4.99-1ubuntu1~18.04.2) ...
Selecting previously unselected package libepoxy0:amd64.
Preparing to unpack .../243-libepoxy0_1.4.3-1_amd64.deb ...
Unpacking libepoxy0:amd64 (1.4.3-1) ...
Selecting previously unselected package libgdk-pixbuf2.0-bin.
Preparing to unpack .../244-libgdk-pixbuf2.0-bin_2.36.11-2_amd64.deb ...
Unpacking libgdk-pixbuf2.0-bin (2.36.11-2) ...
Selecting previously unselected package libgfortran4:amd64.
Preparing to unpack .../245-libgfortran4_7.5.0-3ubuntu1~18.04_amd64.deb ...
Unpacking libgfortran4:amd64 (7.5.0-3ubuntu1~18.04) ...
Selecting previously unselected package libglapi-mesa:amd64.
Preparing to unpack .../246-libglapi-mesa_19.2.8-0ubuntu0~18.04.3_amd64.deb ...
Unpacking libglapi-mesa:amd64 (19.2.8-0ubuntu0~18.04.3) ...
Selecting previously unselected package libllvm9:amd64.
Preparing to unpack .../247-libllvm9_1%3a9-2~ubuntu18.04.2_amd64.deb ...
Unpacking libllvm9:amd64 (1:9-2~ubuntu18.04.2) ...
Selecting previously unselected package libsensors4:amd64.
Preparing to unpack .../248-libsensors4_1%3a3.4.0-4_amd64.deb ...
Unpacking libsensors4:amd64 (1:3.4.0-4) ...
Selecting previously unselected package libgl1-mesa-dri:amd64.
Preparing to unpack .../249-libgl1-mesa-dri_19.2.8-0ubuntu0~18.04.3_amd64.deb ...
Unpacking libgl1-mesa-dri:amd64 (19.2.8-0ubuntu0~18.04.3) ...
Selecting previously unselected package libx11-xcb1:amd64.
Preparing to unpack .../250-libx11-xcb1_2%3a1.6.4-3ubuntu0.2_amd64.deb ...
Unpacking libx11-xcb1:amd64 (2:1.6.4-3ubuntu0.2) ...
Selecting previously unselected package libxcb-dri2-0:amd64.
Preparing to unpack .../251-libxcb-dri2-0_1.13-2~ubuntu18.04_amd64.deb ...
Unpacking libxcb-dri2-0:amd64 (1.13-2~ubuntu18.04) ...
Selecting previously unselected package libxcb-dri3-0:amd64.
Preparing to unpack .../252-libxcb-dri3-0_1.13-2~ubuntu18.04_amd64.deb ...
Unpacking libxcb-dri3-0:amd64 (1.13-2~ubuntu18.04) ...
Selecting previously unselected package libxcb-glx0:amd64.
Preparing to unpack .../253-libxcb-glx0_1.13-2~ubuntu18.04_amd64.deb ...
Unpacking libxcb-glx0:amd64 (1.13-2~ubuntu18.04) ...
Selecting previously unselected package libxcb-present0:amd64.
Preparing to unpack .../254-libxcb-present0_1.13-2~ubuntu18.04_amd64.deb ...
Unpacking libxcb-present0:amd64 (1.13-2~ubuntu18.04) ...
Selecting previously unselected package libxcb-sync1:amd64.
Preparing to unpack .../255-libxcb-sync1_1.13-2~ubuntu18.04_amd64.deb ...
Unpacking libxcb-sync1:amd64 (1.13-2~ubuntu18.04) ...
Selecting previously unselected package libxdamage1:amd64.
Preparing to unpack .../256-libxdamage1_1%3a1.1.4-3_amd64.deb ...
Unpacking libxdamage1:amd64 (1:1.1.4-3) ...
Selecting previously unselected package libxfixes3:amd64.
Preparing to unpack .../257-libxfixes3_1%3a5.0.3-1_amd64.deb ...
Unpacking libxfixes3:amd64 (1:5.0.3-1) ...
Selecting previously unselected package libxshmfence1:amd64.
Preparing to unpack .../258-libxshmfence1_1.3-1_amd64.deb ...
Unpacking libxshmfence1:amd64 (1.3-1) ...
Selecting previously unselected package libglx-mesa0:amd64.
Preparing to unpack .../259-libglx-mesa0_19.2.8-0ubuntu0~18.04.3_amd64.deb ...
Unpacking libglx-mesa0:amd64 (19.2.8-0ubuntu0~18.04.3) ...
Selecting previously unselected package libgpg-error-dev.
Preparing to unpack .../260-libgpg-error-dev_1.27-6_amd64.deb ...
Unpacking libgpg-error-dev (1.27-6) ...
Selecting previously unselected package libgpgme11:amd64.
Preparing to unpack .../261-libgpgme11_1.10.0-1ubuntu2_amd64.deb ...
Unpacking libgpgme11:amd64 (1.10.0-1ubuntu2) ...
Selecting previously unselected package libgtest-dev:amd64.
Preparing to unpack .../262-libgtest-dev_1.8.0-6_amd64.deb ...
Unpacking libgtest-dev:amd64 (1.8.0-6) ...
Selecting previously unselected package libgtk-3-common.
Preparing to unpack .../263-libgtk-3-common_3.22.30-1ubuntu4_all.deb ...
Unpacking libgtk-3-common (3.22.30-1ubuntu4) ...
Selecting previously unselected package libjson-glib-1.0-common.
Preparing to unpack .../264-libjson-glib-1.0-common_1.4.2-3_all.deb ...
Unpacking libjson-glib-1.0-common (1.4.2-3) ...
Selecting previously unselected package libjson-glib-1.0-0:amd64.
Preparing to unpack .../265-libjson-glib-1.0-0_1.4.2-3_amd64.deb ...
Unpacking libjson-glib-1.0-0:amd64 (1.4.2-3) ...
Selecting previously unselected package libsoup2.4-1:amd64.
Preparing to unpack .../266-libsoup2.4-1_2.62.1-1ubuntu0.4_amd64.deb ...
Unpacking libsoup2.4-1:amd64 (2.62.1-1ubuntu0.4) ...
Selecting previously unselected package libsoup-gnome2.4-1:amd64.
Preparing to unpack .../267-libsoup-gnome2.4-1_2.62.1-1ubuntu0.4_amd64.deb ...
Unpacking libsoup-gnome2.4-1:amd64 (2.62.1-1ubuntu0.4) ...
Selecting previously unselected package librest-0.7-0:amd64.
Preparing to unpack .../268-librest-0.7-0_0.8.0-2_amd64.deb ...
Unpacking librest-0.7-0:amd64 (0.8.0-2) ...
Selecting previously unselected package libwayland-client0:amd64.
Preparing to unpack .../269-libwayland-client0_1.16.0-1ubuntu1.1~18.04.3_amd64.deb ...
Unpacking libwayland-client0:amd64 (1.16.0-1ubuntu1.1~18.04.3) ...
Selecting previously unselected package libwayland-cursor0:amd64.
Preparing to unpack .../270-libwayland-cursor0_1.16.0-1ubuntu1.1~18.04.3_amd64.deb ...
Unpacking libwayland-cursor0:amd64 (1.16.0-1ubuntu1.1~18.04.3) ...
Selecting previously unselected package libwayland-egl1:amd64.
Preparing to unpack .../271-libwayland-egl1_1.16.0-1ubuntu1.1~18.04.3_amd64.deb ...
Unpacking libwayland-egl1:amd64 (1.16.0-1ubuntu1.1~18.04.3) ...
Selecting previously unselected package libxcomposite1:amd64.
Preparing to unpack .../272-libxcomposite1_1%3a0.4.4-2_amd64.deb ...
Unpacking libxcomposite1:amd64 (1:0.4.4-2) ...
Selecting previously unselected package libxcursor1:amd64.
Preparing to unpack .../273-libxcursor1_1%3a1.1.15-1_amd64.deb ...
Unpacking libxcursor1:amd64 (1:1.1.15-1) ...
Selecting previously unselected package libxi6:amd64.
Preparing to unpack .../274-libxi6_2%3a1.7.9-1_amd64.deb ...
Unpacking libxi6:amd64 (2:1.7.9-1) ...
Selecting previously unselected package libxkbcommon0:amd64.
Preparing to unpack .../275-libxkbcommon0_0.8.2-1~ubuntu18.04.1_amd64.deb ...
Unpacking libxkbcommon0:amd64 (0.8.2-1~ubuntu18.04.1) ...
Selecting previously unselected package libxrandr2:amd64.
Preparing to unpack .../276-libxrandr2_2%3a1.5.1-1_amd64.deb ...
Unpacking libxrandr2:amd64 (2:1.5.1-1) ...
Selecting previously unselected package libgtk-3-0:amd64.
Preparing to unpack .../277-libgtk-3-0_3.22.30-1ubuntu4_amd64.deb ...
Unpacking libgtk-3-0:amd64 (3.22.30-1ubuntu4) ...
Selecting previously unselected package libgtk-3-bin.
Preparing to unpack .../278-libgtk-3-bin_3.22.30-1ubuntu4_amd64.deb ...
Unpacking libgtk-3-bin (3.22.30-1ubuntu4) ...
Selecting previously unselected package liblapack3:amd64.
Preparing to unpack .../279-liblapack3_3.7.1-4ubuntu1_amd64.deb ...
Unpacking liblapack3:amd64 (3.7.1-4ubuntu1) ...
Selecting previously unselected package liblog4cxx10v5:amd64.
Preparing to unpack .../280-liblog4cxx10v5_0.10.0-13ubuntu2_amd64.deb ...
Unpacking liblog4cxx10v5:amd64 (0.10.0-13ubuntu2) ...
Selecting previously unselected package libnotify4:amd64.
Preparing to unpack .../281-libnotify4_0.7.7-3_amd64.deb ...
Unpacking libnotify4:amd64 (0.7.7-3) ...
Selecting previously unselected package libodbc1:amd64.
Preparing to unpack .../282-libodbc1_2.3.4-1.1ubuntu3_amd64.deb ...
Unpacking libodbc1:amd64 (2.3.4-1.1ubuntu3) ...
Selecting previously unselected package libpaper1:amd64.
Preparing to unpack .../283-libpaper1_1.1.24+nmu5ubuntu1_amd64.deb ...
Unpacking libpaper1:amd64 (1.1.24+nmu5ubuntu1) ...
Selecting previously unselected package libpaper-utils.
Preparing to unpack .../284-libpaper-utils_1.1.24+nmu5ubuntu1_amd64.deb ...
Unpacking libpaper-utils (1.1.24+nmu5ubuntu1) ...
Selecting previously unselected package libpocofoundation50.
Preparing to unpack .../285-libpocofoundation50_1.8.0.1-1ubuntu4_amd64.deb ...
Unpacking libpocofoundation50 (1.8.0.1-1ubuntu4) ...
Selecting previously unselected package libpococrypto50.
Preparing to unpack .../286-libpococrypto50_1.8.0.1-1ubuntu4_amd64.deb ...
Unpacking libpococrypto50 (1.8.0.1-1ubuntu4) ...
Selecting previously unselected package libpocodata50.
Preparing to unpack .../287-libpocodata50_1.8.0.1-1ubuntu4_amd64.deb ...
Unpacking libpocodata50 (1.8.0.1-1ubuntu4) ...
Selecting previously unselected package libpocojson50.
Preparing to unpack .../288-libpocojson50_1.8.0.1-1ubuntu4_amd64.deb ...
Unpacking libpocojson50 (1.8.0.1-1ubuntu4) ...
Selecting previously unselected package libpocodatamysql50.
Preparing to unpack .../289-libpocodatamysql50_1.8.0.1-1ubuntu4_amd64.deb ...
Unpacking libpocodatamysql50 (1.8.0.1-1ubuntu4) ...
Selecting previously unselected package libpoconet50.
Preparing to unpack .../290-libpoconet50_1.8.0.1-1ubuntu4_amd64.deb ...
Unpacking libpoconet50 (1.8.0.1-1ubuntu4) ...
Selecting previously unselected package libpocomongodb50.
Preparing to unpack .../291-libpocomongodb50_1.8.0.1-1ubuntu4_amd64.deb ...
Unpacking libpocomongodb50 (1.8.0.1-1ubuntu4) ...
Selecting previously unselected package libpocoxml50.
Preparing to unpack .../292-libpocoxml50_1.8.0.1-1ubuntu4_amd64.deb ...
Unpacking libpocoxml50 (1.8.0.1-1ubuntu4) ...
Selecting previously unselected package libpocoutil50.
Preparing to unpack .../293-libpocoutil50_1.8.0.1-1ubuntu4_amd64.deb ...
Unpacking libpocoutil50 (1.8.0.1-1ubuntu4) ...
Selecting previously unselected package libpoconetssl50.
Preparing to unpack .../294-libpoconetssl50_1.8.0.1-1ubuntu4_amd64.deb ...
Unpacking libpoconetssl50 (1.8.0.1-1ubuntu4) ...
Selecting previously unselected package libpocodataodbc50.
Preparing to unpack .../295-libpocodataodbc50_1.8.0.1-1ubuntu4_amd64.deb ...
Unpacking libpocodataodbc50 (1.8.0.1-1ubuntu4) ...
Selecting previously unselected package libpocodatasqlite50.
Preparing to unpack .../296-libpocodatasqlite50_1.8.0.1-1ubuntu4_amd64.deb ...
Unpacking libpocodatasqlite50 (1.8.0.1-1ubuntu4) ...
Selecting previously unselected package libpocoredis50.
Preparing to unpack .../297-libpocoredis50_1.8.0.1-1ubuntu4_amd64.deb ...
Unpacking libpocoredis50 (1.8.0.1-1ubuntu4) ...
Selecting previously unselected package libpocozip50.
Preparing to unpack .../298-libpocozip50_1.8.0.1-1ubuntu4_amd64.deb ...
Unpacking libpocozip50 (1.8.0.1-1ubuntu4) ...
Selecting previously unselected package libsqlite3-dev:amd64.
Preparing to unpack .../299-libsqlite3-dev_3.22.0-1ubuntu0.3_amd64.deb ...
Unpacking libsqlite3-dev:amd64 (3.22.0-1ubuntu0.3) ...
Selecting previously unselected package libpoco-dev.
Preparing to unpack .../300-libpoco-dev_1.8.0.1-1ubuntu4_amd64.deb ...
Unpacking libpoco-dev (1.8.0.1-1ubuntu4) ...
Selecting previously unselected package libtinyxml2-6:amd64.
Preparing to unpack .../301-libtinyxml2-6_6.0.0+dfsg-1_amd64.deb ...
Unpacking libtinyxml2-6:amd64 (6.0.0+dfsg-1) ...
Selecting previously unselected package libwebp6:amd64.
Preparing to unpack .../302-libwebp6_0.6.1-2_amd64.deb ...
Unpacking libwebp6:amd64 (0.6.1-2) ...
Selecting previously unselected package libwebpdemux2:amd64.
Preparing to unpack .../303-libwebpdemux2_0.6.1-2_amd64.deb ...
Unpacking libwebpdemux2:amd64 (0.6.1-2) ...
Selecting previously unselected package libwebpmux3:amd64.
Preparing to unpack .../304-libwebpmux3_0.6.1-2_amd64.deb ...
Unpacking libwebpmux3:amd64 (0.6.1-2) ...
Selecting previously unselected package libwxbase3.0-0v5:amd64.
Preparing to unpack .../305-libwxbase3.0-0v5_3.0.4+dfsg-3_amd64.deb ...
Unpacking libwxbase3.0-0v5:amd64 (3.0.4+dfsg-3) ...
Selecting previously unselected package libglvnd0:amd64.
Preparing to unpack .../306-libglvnd0_1.0.0-2ubuntu2.3_amd64.deb ...
Unpacking libglvnd0:amd64 (1.0.0-2ubuntu2.3) ...
Selecting previously unselected package libglx0:amd64.
Preparing to unpack .../307-libglx0_1.0.0-2ubuntu2.3_amd64.deb ...
Unpacking libglx0:amd64 (1.0.0-2ubuntu2.3) ...
Selecting previously unselected package libgl1:amd64.
Preparing to unpack .../308-libgl1_1.0.0-2ubuntu2.3_amd64.deb ...
Unpacking libgl1:amd64 (1.0.0-2ubuntu2.3) ...
Selecting previously unselected package libwxgtk3.0-gtk3-0v5:amd64.
Preparing to unpack .../309-libwxgtk3.0-gtk3-0v5_3.0.4+dfsg-3_amd64.deb ...
Unpacking libwxgtk3.0-gtk3-0v5:amd64 (3.0.4+dfsg-3) ...
Selecting previously unselected package notification-daemon.
Preparing to unpack .../310-notification-daemon_3.20.0-3_amd64.deb ...
Unpacking notification-daemon (3.20.0-3) ...
Selecting previously unselected package python-asn1crypto.
Preparing to unpack .../311-python-asn1crypto_0.24.0-1_all.deb ...
Unpacking python-asn1crypto (0.24.0-1) ...
Selecting previously unselected package python-six.
Preparing to unpack .../312-python-six_1.11.0-2_all.deb ...
Unpacking python-six (1.11.0-2) ...
Selecting previously unselected package python-dateutil.
Preparing to unpack .../313-python-dateutil_2.6.1-1_all.deb ...
Unpacking python-dateutil (2.6.1-1) ...
Selecting previously unselected package python-roman.
Preparing to unpack .../314-python-roman_2.0.0-3_all.deb ...
Unpacking python-roman (2.0.0-3) ...
Selecting previously unselected package python-docutils.
Preparing to unpack .../315-python-docutils_0.14+dfsg-3_all.deb ...
Unpacking python-docutils (0.14+dfsg-3) ...
Selecting previously unselected package python-pyparsing.
Preparing to unpack .../316-python-pyparsing_2.2.0+dfsg1-2_all.deb ...
Unpacking python-pyparsing (2.2.0+dfsg1-2) ...
Selecting previously unselected package python-catkin-pkg-modules.
Preparing to unpack .../317-python-catkin-pkg-modules_0.4.17-1_all.deb ...
Unpacking python-catkin-pkg-modules (0.4.17-1) ...
Selecting previously unselected package python-catkin-pkg.
Preparing to unpack .../318-python-catkin-pkg_0.4.17-100_all.deb ...
Unpacking python-catkin-pkg (0.4.17-100) ...
Selecting previously unselected package python-cffi-backend.
Preparing to unpack .../319-python-cffi-backend_1.11.5-1_amd64.deb ...
Unpacking python-cffi-backend (1.11.5-1) ...
Selecting previously unselected package python-pkg-resources.
Preparing to unpack .../320-python-pkg-resources_39.0.1-2_all.deb ...
Unpacking python-pkg-resources (39.0.1-2) ...
Selecting previously unselected package python-chardet.
Preparing to unpack .../321-python-chardet_3.0.4-1_all.deb ...
Unpacking python-chardet (3.0.4-1) ...
Selecting previously unselected package python-enum34.
Preparing to unpack .../322-python-enum34_1.1.6-2_all.deb ...
Unpacking python-enum34 (1.1.6-2) ...
Selecting previously unselected package python-idna.
Preparing to unpack .../323-python-idna_2.6-1_all.deb ...
Unpacking python-idna (2.6-1) ...
Selecting previously unselected package python-ipaddress.
Preparing to unpack .../324-python-ipaddress_1.0.17-1_all.deb ...
Unpacking python-ipaddress (1.0.17-1) ...
Selecting previously unselected package python-cryptography.
Preparing to unpack .../325-python-cryptography_2.1.4-1ubuntu1.3_amd64.deb ...
Unpacking python-cryptography (2.1.4-1ubuntu1.3) ...
Selecting previously unselected package python-defusedxml.
Preparing to unpack .../326-python-defusedxml_0.5.0-1ubuntu1_all.deb ...
Unpacking python-defusedxml (0.5.0-1ubuntu1) ...
Selecting previously unselected package python-empy.
Preparing to unpack .../327-python-empy_3.3.2-1build1_all.deb ...
Unpacking python-empy (3.3.2-1build1) ...
Selecting previously unselected package python-gnupg.
Preparing to unpack .../328-python-gnupg_0.4.1-1ubuntu1.18.04.1_all.deb ...
Unpacking python-gnupg (0.4.1-1ubuntu1.18.04.1) ...
Selecting previously unselected package python-netifaces.
Preparing to unpack .../329-python-netifaces_0.10.4-0.1build4_amd64.deb ...
Unpacking python-netifaces (0.10.4-0.1build4) ...
Selecting previously unselected package python-nose.
Preparing to unpack .../330-python-nose_1.3.7-3_all.deb ...
Unpacking python-nose (1.3.7-3) ...
Selecting previously unselected package python-numpy.
Preparing to unpack .../331-python-numpy_1%3a1.13.3-2ubuntu1_amd64.deb ...
Unpacking python-numpy (1:1.13.3-2ubuntu1) ...
Selecting previously unselected package python-olefile.
Preparing to unpack .../332-python-olefile_0.45.1-1_all.deb ...
Unpacking python-olefile (0.45.1-1) ...
Selecting previously unselected package python-pyasn1.
Preparing to unpack .../333-python-pyasn1_0.4.2-3_all.deb ...
Unpacking python-pyasn1 (0.4.2-3) ...
Selecting previously unselected package python-paramiko.
Preparing to unpack .../334-python-paramiko_2.0.0-1ubuntu1.2_all.deb ...
Unpacking python-paramiko (2.0.0-1ubuntu1.2) ...
Selecting previously unselected package python-pil:amd64.
Preparing to unpack .../335-python-pil_5.1.0-1ubuntu0.2_amd64.deb ...
Unpacking python-pil:amd64 (5.1.0-1ubuntu0.2) ...
Selecting previously unselected package python-pycryptodome.
Preparing to unpack .../336-python-pycryptodome_3.4.7-1ubuntu1_amd64.deb ...
Unpacking python-pycryptodome (3.4.7-1ubuntu1) ...
Selecting previously unselected package python-pygments.
Preparing to unpack .../337-python-pygments_2.2.0+dfsg-1_all.deb ...
Unpacking python-pygments (2.2.0+dfsg-1) ...
Selecting previously unselected package python-yaml.
Preparing to unpack .../338-python-yaml_3.12-1build2_amd64.deb ...
Unpacking python-yaml (3.12-1build2) ...
Selecting previously unselected package python-rospkg-modules.
Preparing to unpack .../339-python-rospkg-modules_1.2.4-1_all.deb ...
Unpacking python-rospkg-modules (1.2.4-1) ...
Selecting previously unselected package python-setuptools.
Preparing to unpack .../340-python-setuptools_39.0.1-2_all.deb ...
Unpacking python-setuptools (39.0.1-2) ...
Selecting previously unselected package python-rosdistro-modules.
Preparing to unpack .../341-python-rosdistro-modules_0.8.1-1_all.deb ...
Unpacking python-rosdistro-modules (0.8.1-1) ...
Selecting previously unselected package python-rosdistro.
Preparing to unpack .../342-python-rosdistro_0.8.1-100_all.deb ...
Unpacking python-rosdistro (0.8.1-100) ...
Selecting previously unselected package python-rospkg.
Preparing to unpack .../343-python-rospkg_1.2.4-100_all.deb ...
Unpacking python-rospkg (1.2.4-100) ...
Selecting previously unselected package python-rosdep-modules.
Preparing to unpack .../344-python-rosdep-modules_0.19.0-1_all.deb ...
Unpacking python-rosdep-modules (0.19.0-1) ...
Selecting previously unselected package python-wxversion.
Preparing to unpack .../345-python-wxversion_3.0.2.0+dfsg-7_all.deb ...
Unpacking python-wxversion (3.0.2.0+dfsg-7) ...
Selecting previously unselected package python-wxgtk3.0.
Preparing to unpack .../346-python-wxgtk3.0_3.0.2.0+dfsg-7_amd64.deb ...
Unpacking python-wxgtk3.0 (3.0.2.0+dfsg-7) ...
Selecting previously unselected package python-wxtools.
Preparing to unpack .../347-python-wxtools_3.0.2.0+dfsg-7_all.deb ...
Unpacking python-wxtools (3.0.2.0+dfsg-7) ...
Selecting previously unselected package ros-melodic-catkin.
Preparing to unpack .../348-ros-melodic-catkin_0.7.23-1bionic.20200303.045725_amd64.deb ...
Unpacking ros-melodic-catkin (0.7.23-1bionic.20200303.045725) ...
Selecting previously unselected package ros-melodic-genmsg.
Preparing to unpack .../349-ros-melodic-genmsg_0.5.15-1bionic.20200303.053935_amd64.deb ...
Unpacking ros-melodic-genmsg (0.5.15-1bionic.20200303.053935) ...
Selecting previously unselected package ros-melodic-gencpp.
Preparing to unpack .../350-ros-melodic-gencpp_0.6.5-1bionic.20200304.001548_amd64.deb ...
Unpacking ros-melodic-gencpp (0.6.5-1bionic.20200304.001548) ...
Selecting previously unselected package ros-melodic-geneus.
Preparing to unpack .../351-ros-melodic-geneus_2.2.6-0bionic.20200303.054537_amd64.deb ...
Unpacking ros-melodic-geneus (2.2.6-0bionic.20200303.054537) ...
Selecting previously unselected package ros-melodic-genlisp.
Preparing to unpack .../352-ros-melodic-genlisp_0.4.16-0bionic.20200303.054506_amd64.deb ...
Unpacking ros-melodic-genlisp (0.4.16-0bionic.20200303.054506) ...
Selecting previously unselected package ros-melodic-gennodejs.
Preparing to unpack .../353-ros-melodic-gennodejs_2.0.1-0bionic.20200303.054547_amd64.deb ...
Unpacking ros-melodic-gennodejs (2.0.1-0bionic.20200303.054547) ...
Selecting previously unselected package ros-melodic-genpy.
Preparing to unpack .../354-ros-melodic-genpy_0.6.9-1bionic.20200303.054458_amd64.deb ...
Unpacking ros-melodic-genpy (0.6.9-1bionic.20200303.054458) ...
Selecting previously unselected package ros-melodic-message-generation.
Preparing to unpack .../355-ros-melodic-message-generation_0.4.1-1bionic.20200304.001834_amd64.deb ...
Unpacking ros-melodic-message-generation (0.4.1-1bionic.20200304.001834) ...
Selecting previously unselected package libconsole-bridge-dev:amd64.
Preparing to unpack .../356-libconsole-bridge-dev_0.4.0+dfsg-2_amd64.deb ...
Unpacking libconsole-bridge-dev:amd64 (0.4.0+dfsg-2) ...
Selecting previously unselected package libgpgme-dev.
Preparing to unpack .../357-libgpgme-dev_1.10.0-1ubuntu2_amd64.deb ...
Unpacking libgpgme-dev (1.10.0-1ubuntu2) ...
Selecting previously unselected package ros-melodic-cpp-common.
Preparing to unpack .../358-ros-melodic-cpp-common_0.6.13-1bionic.20200303.055220_amd64.deb ...
Unpacking ros-melodic-cpp-common (0.6.13-1bionic.20200303.055220) ...
Selecting previously unselected package libtinyxml2-dev:amd64.
Preparing to unpack .../359-libtinyxml2-dev_6.0.0+dfsg-1_amd64.deb ...
Unpacking libtinyxml2-dev:amd64 (6.0.0+dfsg-1) ...
Selecting previously unselected package ros-melodic-class-loader.
Preparing to unpack .../360-ros-melodic-class-loader_0.4.1-0bionic.20200303.063345_amd64.deb ...
Unpacking ros-melodic-class-loader (0.4.1-0bionic.20200303.063345) ...
Selecting previously unselected package liblog4cxx-dev:amd64.
Preparing to unpack .../361-liblog4cxx-dev_0.10.0-13ubuntu2_amd64.deb ...
Unpacking liblog4cxx-dev:amd64 (0.10.0-13ubuntu2) ...
Selecting previously unselected package ros-melodic-rostime.
Preparing to unpack .../362-ros-melodic-rostime_0.6.13-1bionic.20200303.061413_amd64.deb ...
Unpacking ros-melodic-rostime (0.6.13-1bionic.20200303.061413) ...
Selecting previously unselected package ros-melodic-roscpp-traits.
Preparing to unpack .../363-ros-melodic-roscpp-traits_0.6.13-1bionic.20200303.062231_amd64.deb ...
Unpacking ros-melodic-roscpp-traits (0.6.13-1bionic.20200303.062231) ...
Selecting previously unselected package ros-melodic-roscpp-serialization.
Preparing to unpack .../364-ros-melodic-roscpp-serialization_0.6.13-1bionic.20200303.063000_amd64.deb ...
Unpacking ros-melodic-roscpp-serialization (0.6.13-1bionic.20200303.063000) ...
Selecting previously unselected package ros-melodic-message-runtime.
Preparing to unpack .../365-ros-melodic-message-runtime_0.4.12-0bionic.20200303.064101_amd64.deb ...
Unpacking ros-melodic-message-runtime (0.4.12-0bionic.20200303.064101) ...
Selecting previously unselected package ros-melodic-rosbuild.
Preparing to unpack .../366-ros-melodic-rosbuild_1.14.8-1bionic.20200304.002242_amd64.deb ...
Unpacking ros-melodic-rosbuild (1.14.8-1bionic.20200304.002242) ...
Selecting previously unselected package ros-melodic-rosconsole.
Preparing to unpack .../367-ros-melodic-rosconsole_1.13.11-1bionic.20200304.002633_amd64.deb ...
Unpacking ros-melodic-rosconsole (1.13.11-1bionic.20200304.002633) ...
Selecting previously unselected package ros-melodic-ros-environment.
Preparing to unpack .../368-ros-melodic-ros-environment_1.2.2-1bionic.20200303.061936_amd64.deb ...
Unpacking ros-melodic-ros-environment (1.2.2-1bionic.20200303.061936) ...
Selecting previously unselected package ros-melodic-rospack.
Preparing to unpack .../369-ros-melodic-rospack_2.5.5-1bionic.20200303.063336_amd64.deb ...
Unpacking ros-melodic-rospack (2.5.5-1bionic.20200303.063336) ...
Selecting previously unselected package ros-melodic-roslib.
Preparing to unpack .../370-ros-melodic-roslib_1.14.8-1bionic.20200303.063927_amd64.deb ...
Unpacking ros-melodic-roslib (1.14.8-1bionic.20200303.063927) ...
Selecting previously unselected package ros-melodic-pluginlib.
Preparing to unpack .../371-ros-melodic-pluginlib_1.12.1-0bionic.20200304.012909_amd64.deb ...
Unpacking ros-melodic-pluginlib (1.12.1-0bionic.20200304.012909) ...
Selecting previously unselected package liblz4-dev:amd64.
Preparing to unpack .../372-liblz4-dev_0.0~r131-2ubuntu3_amd64.deb ...
Unpacking liblz4-dev:amd64 (0.0~r131-2ubuntu3) ...
Selecting previously unselected package ros-melodic-roslz4.
Preparing to unpack .../373-ros-melodic-roslz4_1.14.5-1bionic.20200320.101512_amd64.deb ...
Unpacking ros-melodic-roslz4 (1.14.5-1bionic.20200320.101512) ...
Selecting previously unselected package ros-melodic-rosbag-storage.
Preparing to unpack .../374-ros-melodic-rosbag-storage_1.14.5-1bionic.20200320.113139_amd64.deb ...
Unpacking ros-melodic-rosbag-storage (1.14.5-1bionic.20200320.113139) ...
Selecting previously unselected package ros-melodic-std-msgs.
Preparing to unpack .../375-ros-melodic-std-msgs_0.5.12-0bionic.20200304.002412_amd64.deb ...
Unpacking ros-melodic-std-msgs (0.5.12-0bionic.20200304.002412) ...
Selecting previously unselected package ros-melodic-rosgraph-msgs.
Preparing to unpack .../376-ros-melodic-rosgraph-msgs_1.11.2-0bionic.20200304.004654_amd64.deb ...
Unpacking ros-melodic-rosgraph-msgs (1.11.2-0bionic.20200304.004654) ...
Selecting previously unselected package ros-melodic-xmlrpcpp.
Preparing to unpack .../377-ros-melodic-xmlrpcpp_1.14.5-1bionic.20200320.101634_amd64.deb ...
Unpacking ros-melodic-xmlrpcpp (1.14.5-1bionic.20200320.101634) ...
Selecting previously unselected package ros-melodic-roscpp.
Preparing to unpack .../378-ros-melodic-roscpp_1.14.5-1bionic.20200320.102657_amd64.deb ...
Unpacking ros-melodic-roscpp (1.14.5-1bionic.20200320.102657) ...
Selecting previously unselected package ros-melodic-rosgraph.
Preparing to unpack .../379-ros-melodic-rosgraph_1.14.5-1bionic.20200320.101125_amd64.deb ...
Unpacking ros-melodic-rosgraph (1.14.5-1bionic.20200320.101125) ...
Selecting previously unselected package ros-melodic-rospy.
Preparing to unpack .../380-ros-melodic-rospy_1.14.5-1bionic.20200320.104032_amd64.deb ...
Unpacking ros-melodic-rospy (1.14.5-1bionic.20200320.104032) ...
Selecting previously unselected package ros-melodic-std-srvs.
Preparing to unpack .../381-ros-melodic-std-srvs_1.11.2-0bionic.20200304.002617_amd64.deb ...
Unpacking ros-melodic-std-srvs (1.11.2-0bionic.20200304.002617) ...
Selecting previously unselected package ros-melodic-topic-tools.
Preparing to unpack .../382-ros-melodic-topic-tools_1.14.5-1bionic.20200320.112246_amd64.deb ...
Unpacking ros-melodic-topic-tools (1.14.5-1bionic.20200320.112246) ...
Selecting previously unselected package ros-melodic-rosbag.
Preparing to unpack .../383-ros-melodic-rosbag_1.14.5-1bionic.20200320.113710_amd64.deb ...
Unpacking ros-melodic-rosbag (1.14.5-1bionic.20200320.113710) ...
Selecting previously unselected package ros-melodic-rosclean.
Preparing to unpack .../384-ros-melodic-rosclean_1.14.8-1bionic.20200303.050232_amd64.deb ...
Unpacking ros-melodic-rosclean (1.14.8-1bionic.20200303.050232) ...
Selecting previously unselected package ros-melodic-rosmaster.
Preparing to unpack .../385-ros-melodic-rosmaster_1.14.5-1bionic.20200320.101515_amd64.deb ...
Unpacking ros-melodic-rosmaster (1.14.5-1bionic.20200320.101515) ...
Selecting previously unselected package ros-melodic-rosout.
Preparing to unpack .../386-ros-melodic-rosout_1.14.5-1bionic.20200320.104017_amd64.deb ...
Unpacking ros-melodic-rosout (1.14.5-1bionic.20200320.104017) ...
Selecting previously unselected package ros-melodic-rosparam.
Preparing to unpack .../387-ros-melodic-rosparam_1.14.5-1bionic.20200320.101848_amd64.deb ...
Unpacking ros-melodic-rosparam (1.14.5-1bionic.20200320.101848) ...
Selecting previously unselected package ros-melodic-rosunit.
Preparing to unpack .../388-ros-melodic-rosunit_1.14.8-1bionic.20200303.064408_amd64.deb ...
Unpacking ros-melodic-rosunit (1.14.8-1bionic.20200303.064408) ...
Selecting previously unselected package ros-melodic-roslaunch.
Preparing to unpack .../389-ros-melodic-roslaunch_1.14.5-1bionic.20200320.110824_amd64.deb ...
Unpacking ros-melodic-roslaunch (1.14.5-1bionic.20200320.110824) ...
Selecting previously unselected package ros-melodic-rostest.
Preparing to unpack .../390-ros-melodic-rostest_1.14.5-1bionic.20200320.111356_amd64.deb ...
Unpacking ros-melodic-rostest (1.14.5-1bionic.20200320.111356) ...
Selecting previously unselected package ros-melodic-rostopic.
Preparing to unpack .../391-ros-melodic-rostopic_1.14.5-1bionic.20200320.121530_amd64.deb ...
Unpacking ros-melodic-rostopic (1.14.5-1bionic.20200320.121530) ...
Selecting previously unselected package ros-melodic-actionlib-msgs.
Preparing to unpack .../392-ros-melodic-actionlib-msgs_1.12.7-0bionic.20200304.002803_amd64.deb ...
Unpacking ros-melodic-actionlib-msgs (1.12.7-0bionic.20200304.002803) ...
Selecting previously unselected package ros-melodic-actionlib.
Preparing to unpack .../393-ros-melodic-actionlib_1.12.0-1bionic.20200320.122357_amd64.deb ...
Unpacking ros-melodic-actionlib (1.12.0-1bionic.20200320.122357) ...
Setting up libtinyxml2-6:amd64 (6.0.0+dfsg-1) ...
Setting up libedit2:amd64 (3.1-20170329-1) ...
Setting up libldap2-dev:amd64 (2.4.45+dfsg-1ubuntu1.4) ...
Setting up libapr1:amd64 (1.6.3-2) ...
Setting up libglvnd0:amd64 (1.0.0-2ubuntu2.3) ...
Setting up libboost-container1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-date-time1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libjson-glib-1.0-common (1.4.2-3) ...
Setting up libboost-iostreams1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-stacktrace1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libbz2-dev:amd64 (1.0.6-8.1ubuntu0.2) ...
Setting up libboost-python1.65.1 (1.65.1+dfsg-0ubuntu5) ...
Setting up libodbc1:amd64 (2.3.4-1.1ubuntu3) ...
Setting up glib-networking-common (2.56.0-1) ...
Setting up libsctp1:amd64 (1.0.17+dfsg-2) ...
Setting up libgfortran4:amd64 (7.5.0-3ubuntu1~18.04) ...
Setting up libglib2.0-dev-bin (2.56.4-0ubuntu0.18.04.6) ...
Setting up libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ...
Setting up libsqlite3-dev:amd64 (3.22.0-1ubuntu0.3) ...
Setting up liblcms2-2:amd64 (2.9-1ubuntu0.1) ...
Setting up libjbig0:amd64 (2.1-3.1build1) ...
Setting up fonts-dejavu-core (2.37-1) ...
Setting up libconsole-bridge0.4:amd64 (0.4.0+dfsg-2) ...
Setting up libuv1:amd64 (1.18.0-3) ...
Setting up libnuma1:amd64 (2.0.11-2.1ubuntu0.1) ...
Setting up tzdata (2019c-0ubuntu0.18.04) ...

Current default time zone: 'Etc/UTC'
Local time is now:      Mon Apr 20 14:24:12 UTC 2020.
Universal Time is now:  Mon Apr 20 14:24:12 UTC 2020.
Run 'dpkg-reconfigure tzdata' if you wish to change it.

Setting up libelf1:amd64 (0.170-0.4ubuntu0.1) ...
Setting up libssl-dev:amd64 (1.1.1-1ubuntu2.1~18.04.5) ...
Setting up libboost-atomic1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up mysql-common (5.8+1.0.4) ...
update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode
Setting up libxshmfence1:amd64 (1.3-1) ...
Setting up libgpg-error-dev (1.27-6) ...
Setting up libwayland-client0:amd64 (1.16.0-1ubuntu1.1~18.04.3) ...
Setting up xkb-data (2.23.1-1ubuntu1.18.04.1) ...
Setting up libproxy1v5:amd64 (0.4.15-1) ...
Setting up uuid-dev:amd64 (2.31.1-0.4ubuntu3.6) ...
Setting up ros-melodic-ros-environment (1.2.2-1bionic.20200303.061936) ...
Setting up libgdk-pixbuf2.0-common (2.36.11-2) ...
Setting up glib-networking-services (2.56.0-1) ...
Setting up libtinyxml2-dev:amd64 (6.0.0+dfsg-1) ...
Setting up distro-info-data (0.37ubuntu0.6) ...
Setting up libdatrie1:amd64 (0.2.10-7) ...
Setting up cmake-data (3.10.2-1ubuntu2.18.04.1) ...
Setting up libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.3) ...
Setting up libglapi-mesa:amd64 (19.2.8-0ubuntu0~18.04.3) ...
Setting up sgml-base (1.29) ...
Setting up lsb-release (9.20170808ubuntu1) ...
Setting up libboost-signals1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libhwloc5:amd64 (1.11.9-1) ...
Setting up ucf (3.0038) ...
Setting up libboost-serialization1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libgirepository-1.0-1:amd64 (1.56.1-1) ...
Setting up libfreetype6:amd64 (2.8.1-2ubuntu2) ...
Setting up libwxbase3.0-0v5:amd64 (3.0.4+dfsg-3) ...
Setting up libdrm-common (2.4.99-1ubuntu1~18.04.2) ...
Setting up libjson-glib-1.0-0:amd64 (1.4.2-3) ...
Setting up libgraphite2-3:amd64 (1.3.11-2) ...
Setting up librhash0:amd64 (1.3.6-2) ...
Setting up libgpgme11:amd64 (1.10.0-1ubuntu2) ...
Setting up libpsm-infinipath1 (3.3+20.604758e7-5) ...
update-alternatives: using /usr/lib/libpsm1/libpsm_infinipath.so.1.16 to provide /usr/lib/x86_64-linux-gnu/libpsm_infinipath.so.1 (libpsm_infinipath.so.1) in auto mode
Setting up libboost-system1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-context1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libatk1.0-data (2.28.1-1) ...
Setting up pkg-config (0.29.1-0ubuntu2) ...
Setting up libyaml-0-2:amd64 (0.1.7-2ubuntu3) ...
Setting up libx11-xcb1:amd64 (2:1.6.4-3ubuntu0.2) ...
Setting up libpixman-1-0:amd64 (0.34.0-2) ...
Setting up libblas3:amd64 (3.7.1-4ubuntu1) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
Setting up gir1.2-glib-2.0:amd64 (1.56.1-1) ...
Setting up openmpi-common (2.1.1-8) ...
Setting up libepoxy0:amd64 (1.4.3-1) ...
Setting up bzip2-doc (1.0.6-8.1ubuntu0.2) ...
Setting up libapparmor1:amd64 (2.12-4ubuntu5.1) ...
Setting up libatk1.0-0:amd64 (2.28.1-1) ...
Setting up libboost-thread1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libaprutil1:amd64 (1.6.1-2) ...
Setting up libassuan-dev (2.5.1-2) ...
Setting up libconsole-bridge-dev:amd64 (0.4.0+dfsg-2) ...
Setting up docutils-doc (0.14+dfsg-3) ...
Setting up libdconf1:amd64 (0.26.0-2ubuntu3) ...
Setting up libexpat1-dev:amd64 (2.2.5-3ubuntu0.2) ...
Setting up libpciaccess0:amd64 (0.14-1) ...
Setting up libsensors4:amd64 (1:3.4.0-4) ...
Setting up libxkbcommon0:amd64 (0.8.2-1~ubuntu18.04.1) ...
Setting up libboost-chrono1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libpcrecpp0v5:amd64 (2:8.39-9) ...
Setting up libpcre32-3:amd64 (2:8.39-9) ...
Setting up libmysqlclient20:amd64 (5.7.29-0ubuntu0.18.04.1) ...
Setting up icu-devtools (60.2-3ubuntu3.1) ...
Setting up libpcre16-3:amd64 (2:8.39-9) ...
Setting up libgpgme-dev (1.10.0-1ubuntu2) ...
Setting up libcolord2:amd64 (1.3.3-2build1) ...
Setting up libthai-data (0.1.27-2) ...
Setting up libxdmcp6:amd64 (1:1.1.2-3) ...
Setting up xml-core (0.18) ...
Setting up liblz4-dev:amd64 (0.0~r131-2ubuntu3) ...
Setting up libnuma-dev:amd64 (2.0.11-2.1ubuntu0.1) ...
Setting up ocl-icd-libopencl1:amd64 (2.2.11-1ubuntu1) ...
Setting up libllvm9:amd64 (1:9-2~ubuntu18.04.2) ...
Setting up libboost-program-options1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-numpy1.65.1 (1.65.1+dfsg-0ubuntu5) ...
Setting up libnl-3-200:amd64 (3.2.29-0ubuntu3) ...
Setting up x11-common (1:7.7+19ubuntu7.1) ...
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.
Setting up libboost-test1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up hicolor-icon-theme (0.17-2) ...
Setting up libglib2.0-bin (2.56.4-0ubuntu0.18.04.6) ...
Setting up libboost1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libgraphite2-dev:amd64 (1.3.11-2) ...
Setting up libwayland-cursor0:amd64 (1.16.0-1ubuntu1.1~18.04.3) ...
Setting up libboost-locale1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-random1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libwayland-egl1:amd64 (1.16.0-1ubuntu1.1~18.04.3) ...
Setting up libx11-data (2:1.6.4-3ubuntu0.2) ...
Setting up libpython2.7-stdlib:amd64 (2.7.17-1~18.04) ...
Setting up libboost1.65-tools-dev (1.65.1+dfsg-0ubuntu5) ...
Setting up libxau6:amd64 (1:1.0.8-1) ...
Setting up libboost-signals1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libdbus-1-3:amd64 (1.12.2-1ubuntu1.1) ...
Setting up liblzo2-2:amd64 (2.08-1.2) ...
Setting up libpocofoundation50 (1.8.0.1-1ubuntu4) ...
Setting up libavahi-common-data:amd64 (0.7-3.1ubuntu1.2) ...
Setting up libboost-math1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libpython3.6:amd64 (3.6.9-1~18.04) ...
Setting up libboost-regex1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-signals-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up libwebp6:amd64 (0.6.1-2) ...
Setting up libboost-locale1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up zlib1g-dev:amd64 (1:1.2.11.dfsg-0ubuntu2) ...
Setting up libjpeg8:amd64 (8c-2ubuntu8) ...
Setting up libjsoncpp1:amd64 (1.7.4-3) ...
Setting up libboost-locale-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up libpaper1:amd64 (1.1.24+nmu5ubuntu1) ...

Creating config file /etc/papersize with new version
Setting up libsctp-dev:amd64 (1.0.17+dfsg-2) ...
Setting up libboost-tools-dev (1.65.1.0ubuntu1) ...
Setting up liblog4cxx10v5:amd64 (0.10.0-13ubuntu2) ...
Setting up libboost-program-options1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libpaper-utils (1.1.24+nmu5ubuntu1) ...
Setting up libboost-stacktrace1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libpcre3-dev:amd64 (2:8.39-9) ...
Setting up libboost-atomic1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up fontconfig-config (2.12.6-0ubuntu2) ...
Setting up libapr1-dev (1.6.3-2) ...
Setting up libmysqlclient-dev (5.7.29-0ubuntu0.18.04.1) ...
Setting up libboost-atomic-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up libboost-test1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libhwloc-dev:amd64 (1.11.9-1) ...
Setting up dconf-service (0.26.0-2ubuntu3) ...
Setting up libpocodata50 (1.8.0.1-1ubuntu4) ...
Setting up libarchive13:amd64 (3.2.2-3.1ubuntu0.6) ...
Setting up libboost-numpy1.65-dev (1.65.1+dfsg-0ubuntu5) ...
Setting up liblapack3:amd64 (3.7.1-4ubuntu1) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
Setting up libboost-filesystem1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-stacktrace-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up libaprutil1-dev (1.6.1-2) ...
Setting up python2.7 (2.7.17-1~18.04) ...
Setting up libharfbuzz0b:amd64 (1.7.2-1ubuntu1) ...
Setting up libtiff5:amd64 (4.0.9-5ubuntu0.3) ...
Setting up libnl-route-3-200:amd64 (3.2.29-0ubuntu3) ...
Setting up libboost-type-erasure1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-serialization1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libthai0:amd64 (0.1.27-2) ...
Setting up libboost-chrono1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-graph1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-exception1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libpocozip50 (1.8.0.1-1ubuntu4) ...
Setting up libpython3.6-dev:amd64 (3.6.9-1~18.04) ...
Setting up libglib2.0-dev:amd64 (2.56.4-0ubuntu0.18.04.6) ...
Setting up libboost-log1.65.1 (1.65.1+dfsg-0ubuntu5) ...
Setting up libdrm2:amd64 (2.4.99-1ubuntu1~18.04.2) ...
Setting up libpocoxml50 (1.8.0.1-1ubuntu4) ...
Setting up libboost-coroutine1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libpython-stdlib:amd64 (2.7.15~rc1-1) ...
Setting up libhwloc-plugins (1.11.9-1) ...
Setting up libdrm-intel1:amd64 (2.4.99-1ubuntu1~18.04.2) ...
Setting up libpocojson50 (1.8.0.1-1ubuntu4) ...
Setting up libboost-exception-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up libboost-random1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up gir1.2-harfbuzz-0.0:amd64 (1.7.2-1ubuntu1) ...
Setting up libpococrypto50 (1.8.0.1-1ubuntu4) ...
Setting up libboost-wave1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libwebpmux3:amd64 (0.6.1-2) ...
Setting up liblog4cxx-dev:amd64 (0.10.0-13ubuntu2) ...
Setting up libboost-context1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libpython2.7:amd64 (2.7.17-1~18.04) ...
Setting up libboost-timer1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libice6:amd64 (2:1.0.9-2) ...
Setting up libpocodatamysql50 (1.8.0.1-1ubuntu4) ...
Setting up libwebpdemux2:amd64 (0.6.1-2) ...
Setting up libboost-context-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up libpython2.7-dev:amd64 (2.7.17-1~18.04) ...
Setting up libboost-test-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up libboost-system1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libavahi-common3:amd64 (0.7-3.1ubuntu1.2) ...
Setting up libdrm-radeon1:amd64 (2.4.99-1ubuntu1~18.04.2) ...
Setting up default-libmysqlclient-dev:amd64 (1.0.4) ...
Setting up libpoconet50 (1.8.0.1-1ubuntu4) ...
Setting up libboost-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up dbus (1.12.2-1ubuntu1.1) ...
Setting up libboost-container1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libdrm-nouveau2:amd64 (2.4.99-1ubuntu1~18.04.2) ...
Setting up python3.6-dev (3.6.9-1~18.04) ...
Setting up libboost-math1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up cmake (3.10.2-1ubuntu2.18.04.1) ...
Setting up libpocoredis50 (1.8.0.1-1ubuntu4) ...
Setting up libpocoutil50 (1.8.0.1-1ubuntu4) ...
Setting up libpocodatasqlite50 (1.8.0.1-1ubuntu4) ...
Setting up dconf-gsettings-backend:amd64 (0.26.0-2ubuntu3) ...
Setting up libboost-math-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up python2.7-dev (2.7.17-1~18.04) ...
Setting up libboost-numpy-dev (1.65.1.0ubuntu1) ...
Setting up libxcb1:amd64 (1.13-2~ubuntu18.04) ...
Setting up libharfbuzz-gobject0:amd64 (1.7.2-1ubuntu1) ...
Setting up python (2.7.15~rc1-1) ...
Setting up libboost-type-erasure1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-program-options-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up libpoconetssl50 (1.8.0.1-1ubuntu4) ...
Setting up libpython3-dev:amd64 (3.6.7-1~18.04) ...
Setting up python-pyparsing (2.2.0+dfsg1-2) ...
Setting up python-idna (2.6-1) ...
Setting up libibverbs1:amd64 (17.1-1ubuntu0.2) ...
Setting up libxcb-present0:amd64 (1.13-2~ubuntu18.04) ...
Setting up libboost-fiber1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-serialization-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up libpython-dev:amd64 (2.7.15~rc1-1) ...
Setting up libfontconfig1:amd64 (2.12.6-0ubuntu2) ...
Setting up libxcb-dri2-0:amd64 (1.13-2~ubuntu18.04) ...
Setting up libsm6:amd64 (2:1.2.2-1) ...
Setting up libxcb-dri3-0:amd64 (1.13-2~ubuntu18.04) ...
Setting up libxcb-glx0:amd64 (1.13-2~ubuntu18.04) ...
Setting up python-yaml (3.12-1build2) ...
Setting up python-asn1crypto (0.24.0-1) ...
Setting up libboost-fiber1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libxcb-render0:amd64 (1.13-2~ubuntu18.04) ...
Setting up libboost-coroutine1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libharfbuzz-icu0:amd64 (1.7.2-1ubuntu1) ...
Setting up libboost-graph1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libpocodataodbc50 (1.8.0.1-1ubuntu4) ...
Setting up gsettings-desktop-schemas (3.28.0-1ubuntu1) ...
Setting up python-defusedxml (0.5.0-1ubuntu1) ...
Setting up libdrm-amdgpu1:amd64 (2.4.99-1ubuntu1~18.04.2) ...
Setting up libgtk-3-common (3.22.30-1ubuntu4) ...
Setting up libboost-date-time1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up python-pycryptodome (3.4.7-1ubuntu1) ...
Setting up libboost-chrono-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up python-dev (2.7.15~rc1-1) ...
Setting up python-pyasn1 (0.4.2-3) ...
Setting up libboost-system-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up libboost-graph-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up python-wxversion (3.0.2.0+dfsg-7) ...
Setting up libicu-le-hb0:amd64 (1.0.3+git161113-4) ...
Setting up libx11-6:amd64 (2:1.6.4-3ubuntu0.2) ...
Setting up libgl1-mesa-dri:amd64 (19.2.8-0ubuntu0~18.04.3) ...
Setting up libboost-type-erasure-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up python3-dev (3.6.7-1~18.04) ...
Setting up libboost-fiber-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up librdmacm1:amd64 (17.1-1ubuntu0.2) ...
Setting up python-pkg-resources (39.0.1-2) ...
Setting up libboost-date-time-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up python-roman (2.0.0-3) ...
Setting up python-numpy (1:1.13.3-2ubuntu1) ...
Setting up python-netifaces (0.10.4-0.1build4) ...
Setting up libboost-filesystem1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libxcb-sync1:amd64 (1.13-2~ubuntu18.04) ...
Setting up libboost-container-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up ros-melodic-roslz4 (1.14.5-1bionic.20200320.101512) ...
Setting up python-cffi-backend (1.11.5-1) ...
Setting up libboost-random-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up python-six (1.11.0-2) ...
Setting up libpocomongodb50 (1.8.0.1-1ubuntu4) ...
Setting up googletest:amd64 (1.8.0-6) ...
Setting up python-pygments (2.2.0+dfsg-1) ...
Setting up libboost-thread1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-timer1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-python1.65-dev (1.65.1+dfsg-0ubuntu5) ...
Setting up python-empy (3.3.2-1build1) ...
Setting up ibverbs-providers:amd64 (17.1-1ubuntu0.2) ...
Setting up python-enum34 (1.1.6-2) ...
Setting up libiculx60:amd64 (60.2-3ubuntu3.1) ...
Setting up libgtest-dev:amd64 (1.8.0-6) ...
Setting up libxcomposite1:amd64 (1:0.4.4-2) ...
Setting up libxcb-shm0:amd64 (1.13-2~ubuntu18.04) ...
Setting up python-olefile (0.45.1-1) ...
Setting up libxrender1:amd64 (1:0.9.10-1) ...
Setting up libavahi-client3:amd64 (0.7-3.1ubuntu1.2) ...
Setting up libboost-coroutine-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up python-ipaddress (1.0.17-1) ...
Setting up python-nose (1.3.7-3) ...
Setting up python-pil:amd64 (5.1.0-1ubuntu0.2) ...
Setting up libibverbs-dev:amd64 (17.1-1ubuntu0.2) ...
Setting up python-gnupg (0.4.1-1ubuntu1.18.04.1) ...
Setting up fontconfig (2.12.6-0ubuntu2) ...
Regenerating fonts cache... done.
Setting up libcups2:amd64 (2.2.7-1ubuntu2.7) ...
Setting up libboost-python-dev (1.65.1.0ubuntu1) ...
Setting up python-setuptools (39.0.1-2) ...
Setting up google-mock:amd64 (1.8.0-6) ...
Setting up python-chardet (3.0.4-1) ...
Setting up libxdamage1:amd64 (1:1.1.4-3) ...
Setting up libboost-thread-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up libxext6:amd64 (2:1.3.3-1) ...
Setting up libxfixes3:amd64 (1:5.0.3-1) ...
Setting up libfabric1 (1.5.3-1) ...
Setting up libatspi2.0-0:amd64 (2.28.0-1) ...
Setting up libgdk-pixbuf2.0-0:amd64 (2.36.11-2) ...
Setting up libgdk-pixbuf2.0-bin (2.36.11-2) ...
Setting up libboost-wave1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-timer-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up libboost-filesystem-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up libxtst6:amd64 (2:1.2.3-1) ...
Setting up python-dateutil (2.6.1-1) ...
Setting up libpoco-dev (1.8.0.1-1ubuntu4) ...
Setting up gtk-update-icon-cache (3.22.30-1ubuntu4) ...
Setting up libboost-log1.65-dev (1.65.1+dfsg-0ubuntu5) ...
Setting up libxcursor1:amd64 (1:1.1.15-1) ...
Setting up libpango-1.0-0:amd64 (1.40.14-1ubuntu0.1) ...
Setting up libboost-wave-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up python-cryptography (2.1.4-1ubuntu1.3) ...
Setting up libatk-bridge2.0-0:amd64 (2.26.2-1) ...
Setting up libopenmpi2:amd64 (2.1.1-8) ...
Setting up libxxf86vm1:amd64 (1:1.1.4-1) ...
Setting up libxrandr2:amd64 (2:1.5.1-1) ...
Setting up libglx-mesa0:amd64 (19.2.8-0ubuntu0~18.04.3) ...
Setting up libxi6:amd64 (2:1.7.9-1) ...
Setting up libcairo2:amd64 (1.15.10-2ubuntu0.1) ...
Setting up libnotify4:amd64 (0.7.7-3) ...
Setting up libxinerama1:amd64 (2:1.1.3-1) ...
Setting up libboost-mpi1.65.1 (1.65.1+dfsg-0ubuntu5) ...
Setting up at-spi2-core (2.28.0-1) ...
Setting up libopenmpi-dev (2.1.1-8) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/openmpi/include to provide /usr/include/mpi (mpi) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/mpicc.1.gz because associated file /usr/share/man/man1/mpicc.openmpi.1.gz (of link group mpi) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/mpic++.1.gz because associated file /usr/share/man/man1/mpic++.openmpi.1.gz (of link group mpi) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/mpicxx.1.gz because associated file /usr/share/man/man1/mpicxx.openmpi.1.gz (of link group mpi) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/mpiCC.1.gz because associated file /usr/share/man/man1/mpiCC.openmpi.1.gz (of link group mpi) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/mpif77.1.gz because associated file /usr/share/man/man1/mpif77.openmpi.1.gz (of link group mpi) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/mpif90.1.gz because associated file /usr/share/man/man1/mpif90.openmpi.1.gz (of link group mpi) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/mpifort.1.gz because associated file /usr/share/man/man1/mpifort.openmpi.1.gz (of link group mpi) doesn't exist
Setting up libcairo-gobject2:amd64 (1.15.10-2ubuntu0.1) ...
Setting up openmpi-bin (2.1.1-8) ...
update-alternatives: using /usr/bin/mpirun.openmpi to provide /usr/bin/mpirun (mpirun) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/mpirun.1.gz because associated file /usr/share/man/man1/mpirun.openmpi.1.gz (of link group mpirun) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/mpiexec.1.gz because associated file /usr/share/man/man1/mpiexec.openmpi.1.gz (of link group mpirun) doesn't exist
Setting up mpi-default-dev (1.10) ...
Setting up libpangoft2-1.0-0:amd64 (1.40.14-1ubuntu0.1) ...
Setting up libboost-log-dev (1.65.1.0ubuntu1) ...
Setting up python-paramiko (2.0.0-1ubuntu1.2) ...
Setting up libglx0:amd64 (1.0.0-2ubuntu2.3) ...
Setting up libboost-mpi1.65-dev (1.65.1+dfsg-0ubuntu5) ...
Setting up mpi-default-bin (1.10) ...
Setting up libboost-graph-parallel1.65.1 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-graph-parallel1.65-dev (1.65.1+dfsg-0ubuntu5) ...
Setting up libpangocairo-1.0-0:amd64 (1.40.14-1ubuntu0.1) ...
Setting up libgl1:amd64 (1.0.0-2ubuntu2.3) ...
Setting up libboost-graph-parallel-dev (1.65.1.0ubuntu1) ...
Setting up libboost-mpi-dev (1.65.1.0ubuntu1) ...
Setting up libboost-mpi-python1.65.1 (1.65.1+dfsg-0ubuntu5) ...
Setting up librsvg2-2:amd64 (2.40.20-2) ...
Setting up librsvg2-common:amd64 (2.40.20-2) ...
Setting up libboost-mpi-python1.65-dev (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-mpi-python-dev (1.65.1.0ubuntu1) ...
Setting up adwaita-icon-theme (3.28.0-1ubuntu1) ...
update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode
Setting up humanity-icon-theme (0.6.15) ...
Setting up ubuntu-mono (16.10+18.04.20181005-0ubuntu1) ...
Processing triggers for libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.6) ...
Processing triggers for libc-bin (2.27-3ubuntu1) ...
Setting up glib-networking:amd64 (2.56.0-1) ...
Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
Processing triggers for shared-mime-info (1.9-2) ...
Setting up libharfbuzz-dev:amd64 (1.7.2-1ubuntu1) ...
Setting up libicu-le-hb-dev:amd64 (1.0.3+git161113-4) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Setting up libsoup2.4-1:amd64 (2.62.1-1ubuntu0.4) ...
Setting up libsoup-gnome2.4-1:amd64 (2.62.1-1ubuntu0.4) ...
Setting up libicu-dev (60.2-3ubuntu3.1) ...
Setting up librest-0.7-0:amd64 (0.8.0-2) ...
Setting up libboost-regex1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libboost-iostreams1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ...
Setting up libgtk-3-0:amd64 (3.22.30-1ubuntu4) ...
Setting up libgtk-3-bin (3.22.30-1ubuntu4) ...
Setting up libboost-iostreams-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up libwxgtk3.0-gtk3-0v5:amd64 (3.0.4+dfsg-3) ...
Setting up libboost-regex-dev:amd64 (1.65.1.0ubuntu1) ...
Setting up notification-daemon (3.20.0-3) ...
Setting up python-wxgtk3.0 (3.0.2.0+dfsg-7) ...
update-alternatives: using /usr/lib/wx/python/wx3.0.pth to provide /usr/lib/wx/python/wx.pth (wx.pth) in auto mode
Setting up python-wxtools (3.0.2.0+dfsg-7) ...
Setting up libboost-all-dev (1.65.1.0ubuntu1) ...
Setting up ros-melodic-cpp-common (0.6.13-1bionic.20200303.055220) ...
Setting up ros-melodic-class-loader (0.4.1-0bionic.20200303.063345) ...
Setting up ros-melodic-rostime (0.6.13-1bionic.20200303.061413) ...
Setting up ros-melodic-xmlrpcpp (1.14.5-1bionic.20200320.101634) ...
Setting up ros-melodic-roscpp-traits (0.6.13-1bionic.20200303.062231) ...
Setting up ros-melodic-roscpp-serialization (0.6.13-1bionic.20200303.063000) ...
Processing triggers for sgml-base (1.29) ...
Setting up docutils-common (0.14+dfsg-3) ...
Processing triggers for sgml-base (1.29) ...
Setting up python-docutils (0.14+dfsg-3) ...
update-alternatives: using /usr/share/docutils/scripts/python2/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python2/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode
Setting up python-catkin-pkg-modules (0.4.17-1) ...
Setting up python-rospkg-modules (1.2.4-1) ...
Setting up python-catkin-pkg (0.4.17-100) ...
Setting up ros-melodic-catkin (0.7.23-1bionic.20200303.045725) ...
Setting up python-rosdistro-modules (0.8.1-1) ...
Setting up python-rospkg (1.2.4-100) ...
Setting up ros-melodic-genmsg (0.5.15-1bionic.20200303.053935) ...
Setting up ros-melodic-rosgraph (1.14.5-1bionic.20200320.101125) ...
Setting up ros-melodic-gencpp (0.6.5-1bionic.20200304.001548) ...
Setting up python-rosdistro (0.8.1-100) ...
Setting up ros-melodic-genpy (0.6.9-1bionic.20200303.054458) ...
Setting up python-rosdep-modules (0.19.0-1) ...
Setting up ros-melodic-gennodejs (2.0.1-0bionic.20200303.054547) ...
Setting up ros-melodic-rosparam (1.14.5-1bionic.20200320.101848) ...
Setting up ros-melodic-rosclean (1.14.8-1bionic.20200303.050232) ...
Setting up ros-melodic-geneus (2.2.6-0bionic.20200303.054537) ...
Setting up ros-melodic-rosmaster (1.14.5-1bionic.20200320.101515) ...
Setting up ros-melodic-message-runtime (0.4.12-0bionic.20200303.064101) ...
Setting up ros-melodic-std-msgs (0.5.12-0bionic.20200304.002412) ...
Setting up ros-melodic-genlisp (0.4.16-0bionic.20200303.054506) ...
Setting up ros-melodic-rospack (2.5.5-1bionic.20200303.063336) ...
Setting up ros-melodic-std-srvs (1.11.2-0bionic.20200304.002617) ...
Setting up ros-melodic-rosgraph-msgs (1.11.2-0bionic.20200304.004654) ...
Setting up ros-melodic-message-generation (0.4.1-1bionic.20200304.001834) ...
Setting up ros-melodic-roslib (1.14.8-1bionic.20200303.063927) ...
Setting up ros-melodic-rosunit (1.14.8-1bionic.20200303.064408) ...
Setting up ros-melodic-rosbuild (1.14.8-1bionic.20200304.002242) ...
Setting up ros-melodic-actionlib-msgs (1.12.7-0bionic.20200304.002803) ...
Setting up ros-melodic-rosconsole (1.13.11-1bionic.20200304.002633) ...
Setting up ros-melodic-roscpp (1.14.5-1bionic.20200320.102657) ...
Setting up ros-melodic-rosout (1.14.5-1bionic.20200320.104017) ...
Setting up ros-melodic-roslaunch (1.14.5-1bionic.20200320.110824) ...
Setting up ros-melodic-topic-tools (1.14.5-1bionic.20200320.112246) ...
Setting up ros-melodic-pluginlib (1.12.1-0bionic.20200304.012909) ...
Setting up ros-melodic-rospy (1.14.5-1bionic.20200320.104032) ...
Setting up ros-melodic-rostest (1.14.5-1bionic.20200320.111356) ...
Setting up ros-melodic-rosbag-storage (1.14.5-1bionic.20200320.113139) ...
Setting up ros-melodic-rosbag (1.14.5-1bionic.20200320.113710) ...
Setting up ros-melodic-rostopic (1.14.5-1bionic.20200320.121530) ...
Setting up ros-melodic-actionlib (1.12.0-1bionic.20200320.122357) ...
Processing triggers for libgdk-pixbuf2.0-0:amd64 (2.36.11-2) ...
Processing triggers for libc-bin (2.27-3ubuntu1) ...
Invoking 'apt-get clean'
 ---> 1550ac4e3784
Removing intermediate container bcae27f05d51
Step 26/31 : RUN echo "ros-melodic-catkin: 0.7.23-1bionic.20200303.045725" && echo "ros-melodic-geometry-msgs: 1.12.7-0bionic.20200304.003838" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin ros-melodic-geometry-msgs
 ---> Running in 4295c1565f8f
ros-melodic-catkin: 0.7.23-1bionic.20200303.045725
ros-melodic-geometry-msgs: 1.12.7-0bionic.20200304.003838
Invoking 'apt-get update'
Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,826 B]
Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease
Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease
Get:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]
Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease
Hit:6 http://security.ubuntu.com/ubuntu bionic-security InRelease
Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease
Get:8 http://10.210.9.154/ubuntu/building bionic/main amd64 Packages [150 kB]
Fetched 227 kB in 3s (88.5 kB/s)
Reading package lists...
Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin ros-melodic-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-melodic-catkin is already the newest version (0.7.23-1bionic.20200303.045725).
ros-melodic-catkin set to manually installed.
The following NEW packages will be installed:
  ros-melodic-geometry-msgs
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
Need to get 66.4 kB of archives.
After this operation, 1,247 kB of additional disk space will be used.
Get:1 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-geometry-msgs amd64 1.12.7-0bionic.20200304.003838 [66.4 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 66.4 kB in 0s (207 kB/s)
Selecting previously unselected package ros-melodic-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 ... 62004 files and directories currently installed.)
Preparing to unpack .../ros-melodic-geometry-msgs_1.12.7-0bionic.20200304.003838_amd64.deb ...
Unpacking ros-melodic-geometry-msgs (1.12.7-0bionic.20200304.003838) ...
Setting up ros-melodic-geometry-msgs (1.12.7-0bionic.20200304.003838) ...
Invoking 'apt-get clean'
 ---> 74224ca5eac0
Removing intermediate container 4295c1565f8f
Step 27/31 : RUN echo "ros-melodic-message-generation: 0.4.1-1bionic.20200304.001834" && echo "ros-melodic-mongodb-store-msgs: 0.5.2-1bionic.20200320.135852" && echo "ros-melodic-rospy: 1.14.5-1bionic.20200320.104032" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-message-generation ros-melodic-mongodb-store-msgs ros-melodic-rospy
 ---> Running in 5e705d0e4bce
ros-melodic-message-generation: 0.4.1-1bionic.20200304.001834
ros-melodic-mongodb-store-msgs: 0.5.2-1bionic.20200320.135852
ros-melodic-rospy: 1.14.5-1bionic.20200320.104032
Invoking 'apt-get update'
Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease
Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease
Hit:3 http://archive.ubuntu.com/ubuntu bionic InRelease
Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease
Get:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]
Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease
Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease
Fetched 74.6 kB in 1s (69.8 kB/s)
Reading package lists...
Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-melodic-message-generation ros-melodic-mongodb-store-msgs ros-melodic-rospy'
Reading package lists...
Building dependency tree...
Reading state information...
Starting pkgProblemResolver with broken count: 0
Starting 2 pkgProblemResolver with broken count: 0
Done
ros-melodic-message-generation is already the newest version (0.4.1-1bionic.20200304.001834).
ros-melodic-message-generation set to manually installed.
ros-melodic-rospy is already the newest version (1.14.5-1bionic.20200320.104032).
ros-melodic-rospy set to manually installed.
The following NEW packages will be installed:
  ros-melodic-mongodb-store-msgs
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
Need to get 64.2 kB of archives.
After this operation, 1,162 kB of additional disk space will be used.
Get:1 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-mongodb-store-msgs amd64 0.5.2-1bionic.20200320.135852 [64.2 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 64.2 kB in 1s (107 kB/s)
Selecting previously unselected package ros-melodic-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 ... 62265 files and directories currently installed.)
Preparing to unpack .../ros-melodic-mongodb-store-msgs_0.5.2-1bionic.20200320.135852_amd64.deb ...
Unpacking ros-melodic-mongodb-store-msgs (0.5.2-1bionic.20200320.135852) ...
Setting up ros-melodic-mongodb-store-msgs (0.5.2-1bionic.20200320.135852) ...
Invoking 'apt-get clean'
 ---> c3ef27cb682d
Removing intermediate container 5e705d0e4bce
Step 28/31 : RUN echo "ros-melodic-sensor-msgs: 1.12.7-0bionic.20200320.125228" && echo "ros-melodic-std-msgs: 0.5.12-0bionic.20200304.002412" && echo "ros-melodic-strands-navigation-msgs: 2.0.0-1bionic.20200420.134853" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-sensor-msgs ros-melodic-std-msgs ros-melodic-strands-navigation-msgs
 ---> Running in d006a92c03b6
ros-melodic-sensor-msgs: 1.12.7-0bionic.20200320.125228
ros-melodic-std-msgs: 0.5.12-0bionic.20200304.002412
ros-melodic-strands-navigation-msgs: 2.0.0-1bionic.20200420.134853
Invoking 'apt-get update'
Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease
Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease
Hit:3 http://archive.ubuntu.com/ubuntu bionic InRelease
Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease
Get:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]
Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease
Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease
Fetched 74.6 kB in 1s (54.8 kB/s)
Reading package lists...
Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-melodic-sensor-msgs ros-melodic-std-msgs ros-melodic-strands-navigation-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-melodic-std-msgs is already the newest version (0.5.12-0bionic.20200304.002412).
ros-melodic-std-msgs set to manually installed.
The following NEW packages will be installed:
  ros-melodic-sensor-msgs ros-melodic-strands-navigation-msgs
0 upgraded, 2 newly installed, 0 to remove and 8 not upgraded.
Need to get 330 kB of archives.
After this operation, 6,238 kB of additional disk space will be used.
Get:1 http://10.210.9.154/ubuntu/building bionic/main amd64 ros-melodic-strands-navigation-msgs amd64 2.0.0-1bionic.20200420.134853 [198 kB]
Get:2 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-sensor-msgs amd64 1.12.7-0bionic.20200320.125228 [132 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 330 kB in 0s (670 kB/s)
Selecting previously unselected package ros-melodic-sensor-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 ... 62452 files and directories currently installed.)
Preparing to unpack .../ros-melodic-sensor-msgs_1.12.7-0bionic.20200320.125228_amd64.deb ...
Unpacking ros-melodic-sensor-msgs (1.12.7-0bionic.20200320.125228) ...
Selecting previously unselected package ros-melodic-strands-navigation-msgs.
Preparing to unpack .../ros-melodic-strands-navigation-msgs_2.0.0-1bionic.20200420.134853_amd64.deb ...
Unpacking ros-melodic-strands-navigation-msgs (2.0.0-1bionic.20200420.134853) ...
Setting up ros-melodic-sensor-msgs (1.12.7-0bionic.20200320.125228) ...
Setting up ros-melodic-strands-navigation-msgs (2.0.0-1bionic.20200420.134853) ...
Invoking 'apt-get clean'
 ---> 34f7a5f35080
Removing intermediate container d006a92c03b6
Step 29/31 : USER buildfarm
 ---> Running in 68db9d5e6f0a
 ---> 7a62fdc66fd9
Removing intermediate container 68db9d5e6f0a
Step 30/31 : ENTRYPOINT sh -c
 ---> Running in 86e56a460cfd
 ---> e078f89772e4
Removing intermediate container 86e56a460cfd
Step 31/31 : CMD PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic strands_executive_msgs --sourcedeb-dir /tmp/binarydeb
 ---> Running in b3650e4d2ebc
 ---> 3fdeda192b23
Removing intermediate container b3650e4d2ebc
Successfully built 3fdeda192b23
Successfully tagged binarydeb_build.melodic_ubuntu_bionic_amd64_strands_executive_msgs:latest
+ 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/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid -e=HOME= -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_build.melodic_ubuntu_bionic_amd64_strands_executive_msgs
# BEGIN SUBSECTION: build binarydeb
Package 'ros-melodic-strands-executive-msgs' version: 1.2.5-1bionic.20200420.142014
Invoking 'apt-src build ros-melodic-strands-executive-msgs' in '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5'
I: Building in /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 ..
dpkg-buildpackage: info: source package ros-melodic-strands-executive-msgs
dpkg-buildpackage: info: source version 1.2.5-1bionic.20200420.142014
dpkg-buildpackage: info: source distribution bionic
dpkg-buildpackage: info: source changed by Nick Hawes <n.a.hawes@cs.bham.ac.uk>
dpkg-buildpackage: info: host architecture amd64
 dpkg-source --before-build ros-melodic-strands-executive-msgs-1.2.5
dpkg-source: info: using options from ros-melodic-strands-executive-msgs-1.2.5/debian/source/options: --auto-commit
 fakeroot debian/rules clean
dh clean -v --buildsystem=cmake
   dh_testdir -O-v -O--buildsystem=cmake
   dh_auto_clean -O-v -O--buildsystem=cmake
   dh_clean -O-v -O--buildsystem=cmake
	rm -f debian/debhelper-build-stamp
	rm -rf debian/.debhelper/
	rm -f -- debian/ros-melodic-strands-executive-msgs.substvars debian/files
	rm -fr -- debian/ros-melodic-strands-executive-msgs/ debian/tmp/
	find .  \( \( \
		\( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS -o -path .\*/.pc -o -path .\*/_darcs \) -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 {} + \) \)
 debian/rules build
dh build -v --buildsystem=cmake
   dh_testdir -O-v -O--buildsystem=cmake
   dh_update_autotools_config -O-v -O--buildsystem=cmake
   debian/rules override_dh_auto_configure
make[1]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5'
# 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/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \
dh_auto_configure -- \
	-DCATKIN_BUILD_BINARY_PACKAGE="1" \
	-DCMAKE_INSTALL_PREFIX="/opt/ros/melodic" \
	-DCMAKE_PREFIX_PATH="/opt/ros/melodic"
	install -d 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 -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON -DCATKIN_BUILD_BINARY_PACKAGE=1 -DCMAKE_INSTALL_PREFIX=/opt/ros/melodic -DCMAKE_PREFIX_PATH=/opt/ros/melodic
-- The C compiler identification is GNU 7.5.0
-- The CXX compiler identification is GNU 7.5.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- 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/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- 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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel
-- Using CMAKE_PREFIX_PATH: /opt/ros/melodic
-- This workspace overlays: /opt/ros/melodic
-- Found PythonInterp: /usr/bin/python2 (found suitable version "2.7.17", minimum required is "2") 
-- Using PYTHON_EXECUTABLE: /usr/bin/python2
-- 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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/test_results
-- Found gtest sources under '/usr/src/googletest': gtests will be built
-- Found gmock sources under '/usr/src/googletest': gmock will be built
-- Found PythonInterp: /usr/bin/python2 (found version "2.7.17") 
-- 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  
-- Using Python nosetests: /usr/bin/nosetests-2.7
-- catkin 0.7.23
-- BUILD_SHARED_LIBS is on
-- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy
-- Generating .msg files for action strands_executive_msgs/ExecutePolicy /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/action/ExecutePolicy.action
Generating for action ExecutePolicy
-- strands_executive_msgs: 22 messages, 17 services
-- Configuring done
-- Generating done
CMake Warning:
  Manually-specified variables were not used by the project:

    CMAKE_EXPORT_NO_PACKAGE_REGISTRY
    CMAKE_INSTALL_LOCALSTATEDIR
    CMAKE_INSTALL_SYSCONFDIR


-- Build files have been written to: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu
make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5'
   debian/rules override_dh_auto_build
make[1]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5'
# 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/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \
dh_auto_build
	cd obj-x86_64-linux-gnu && make -j1
make[2]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
/usr/bin/cmake -H/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 -B/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0
/usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/progress.marks
make -f CMakeFiles/Makefile2 all
make[3]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetBlacklistedNodes.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetBlacklistedNodes.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetBlacklistedNodes.dir/DependInfo.cmake --color=
Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_GetBlacklistedNodes
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetBlacklistedNodes.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetBlacklistedNodes.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetBlacklistedNodes.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetBlacklistedNodes
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/UpdateNavStatistics.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_ExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutionStatus.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/ExecutionStatus.msg mongodb_store_msgs/StringPair:strands_executive_msgs/Task:std_msgs/Header
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_StringTriple.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringTriple.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/StringTriple.msg 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_SetExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_SetExecutionStatus.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/SetExecutionStatus.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_AddTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTasks.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddTasks.srv strands_executive_msgs/Task:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_AddTasks
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target actionlib_msgs_generate_messages_cpp
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpTask.msg strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/MdpDomainSpec:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_GetActiveTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetActiveTasks.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetActiveTasks.srv strands_executive_msgs/Task:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_GetGuaranteesForCoSafeTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetGuaranteesForCoSafeTask.srv strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/MdpDomainSpec:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetSchedule.srv strands_executive_msgs/DurationMatrix:strands_executive_msgs/DurationList:strands_executive_msgs/Task:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetSchedule
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target std_msgs_generate_messages_cpp
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/IsTaskInterruptible.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_ExecutePolicyFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target mongodb_store_msgs_generate_messages_cpp
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg actionlib_msgs/GoalID:actionlib_msgs/GoalStatus:strands_executive_msgs/ExecutePolicyResult:std_msgs/Header
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_CancelActiveTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelActiveTask.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelActiveTask.dir/DependInfo.cmake --color=
Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_CancelActiveTask
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelActiveTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelActiveTask.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CancelActiveTask.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_CancelActiveTask
make -f CMakeFiles/sensor_msgs_generate_messages_cpp.dir/build.make CMakeFiles/sensor_msgs_generate_messages_cpp.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/sensor_msgs_generate_messages_cpp.dir/DependInfo.cmake --color=
Scanning dependencies of target sensor_msgs_generate_messages_cpp
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/sensor_msgs_generate_messages_cpp.dir/build.make CMakeFiles/sensor_msgs_generate_messages_cpp.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/sensor_msgs_generate_messages_cpp.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target sensor_msgs_generate_messages_cpp
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/DemandTask.srv strands_executive_msgs/Task:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_DemandTask
make -f CMakeFiles/strands_navigation_msgs_generate_messages_cpp.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_cpp.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_navigation_msgs_generate_messages_cpp.dir/DependInfo.cmake --color=
Scanning dependencies of target strands_navigation_msgs_generate_messages_cpp
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/strands_navigation_msgs_generate_messages_cpp.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_cpp.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/strands_navigation_msgs_generate_messages_cpp.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target strands_navigation_msgs_generate_messages_cpp
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/Task.msg mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_ExecutePolicyGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyGoal.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/MdpDomainSpec:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_LastTaskID.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_LastTaskID.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/LastTaskID.msg 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_StringIntPair.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringIntPair.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/StringIntPair.msg 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_ExecutePolicyAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyAction.msg strands_executive_msgs/ExecutePolicyFeedback:actionlib_msgs/GoalID:strands_executive_msgs/ExecutePolicyActionResult:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/ExecutePolicyActionGoal:std_msgs/Header:mongodb_store_msgs/StringPair:strands_executive_msgs/ExecutePolicyActionFeedback:strands_executive_msgs/MdpStateVar:strands_executive_msgs/ExecutePolicyGoal:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/ExecutePolicyResult:actionlib_msgs/GoalStatus:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction
make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskExecutionStat.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskExecutionStat.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskExecutionStat.dir/DependInfo.cmake --color=
Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_TaskExecutionStat
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskExecutionStat.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskExecutionStat.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/TaskExecutionStat.msg strands_executive_msgs/ExecutePolicyFeedback:actionlib_msgs/GoalID:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/ExecutePolicyActionGoal:std_msgs/Header:mongodb_store_msgs/StringPair:strands_executive_msgs/ExecutePolicyActionFeedback:strands_executive_msgs/MdpStateVar:strands_executive_msgs/ExecutePolicyGoal:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:actionlib_msgs/GoalStatus:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_TaskExecutionStat
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpStateVar.msg 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_MdpAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpAction.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpAction.msg strands_executive_msgs/StringTriple:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_GetExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExecutionStatus.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetExecutionStatus.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_DurationMatrix.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationMatrix.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/DurationMatrix.msg strands_executive_msgs/DurationList
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_ExecutePolicyResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyResult.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyResult.msg 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_AddTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTask.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddTask.srv strands_executive_msgs/Task:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_MdpDomainSpec.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpDomainSpec.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpDomainSpec.msg strands_executive_msgs/StringTriple:strands_executive_msgs/MdpAction:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_CreateTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CreateTask.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CreateTask.srv strands_executive_msgs/Task:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_GetIDs.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetIDs.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetIDs.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_DurationList.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationList.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/DurationList.msg 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_DemandCoSafeTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/DemandCoSafeTask.srv strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/MdpDomainSpec:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask
make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_NavExecutionStat.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_NavExecutionStat.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_NavExecutionStat.dir/DependInfo.cmake --color=
Scanning dependencies of target _strands_executive_msgs_generate_messages_check_deps_NavExecutionStat
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_NavExecutionStat.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_NavExecutionStat.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/NavExecutionStat.msg actionlib_msgs/GoalID:geometry_msgs/Pose:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/ExecutePolicyActionGoal:std_msgs/Header:mongodb_store_msgs/StringPair:sensor_msgs/Image:strands_executive_msgs/MdpStateVar:strands_executive_msgs/ExecutePolicyGoal:geometry_msgs/Quaternion:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_navigation_msgs/MonitoredNavEvent:geometry_msgs/Point:strands_navigation_msgs/NavStatistics:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_NavExecutionStat
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CancelTask.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_CancelTask
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/TaskEvent.msg strands_executive_msgs/Task:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_MdpActionOutcome.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpActionOutcome.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpActionOutcome.msg strands_executive_msgs/StringTriple:strands_executive_msgs/StringIntPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_ExecutePolicyActionGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionGoal.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg actionlib_msgs/GoalID:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/ExecutePolicyGoal:std_msgs/Header:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_ExecutePolicyActionFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionFeedback.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg strands_executive_msgs/ExecutePolicyFeedback:actionlib_msgs/GoalID:actionlib_msgs/GoalStatus:std_msgs/Header
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_AddCoSafeTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddCoSafeTasks.srv strands_executive_msgs/MdpTask:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/MdpDomainSpec:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Generating C++ code from strands_executive_msgs/StringIntPair.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/StringIntPair.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  1%] Generating C++ code from strands_executive_msgs/MdpStateVar.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpStateVar.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  1%] Generating C++ code from strands_executive_msgs/MdpAction.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  2%] Generating C++ code from strands_executive_msgs/DurationMatrix.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/DurationMatrix.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  2%] Generating C++ code from strands_executive_msgs/ExecutePolicyResult.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  3%] Generating C++ code from strands_executive_msgs/MdpDomainSpec.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpDomainSpec.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  3%] Generating C++ code from strands_executive_msgs/DurationList.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/DurationList.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  4%] Generating C++ code from strands_executive_msgs/NavExecutionStat.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/NavExecutionStat.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  4%] Generating C++ code from strands_executive_msgs/TaskExecutionStat.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/TaskExecutionStat.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  5%] Generating C++ code from strands_executive_msgs/ExecutePolicyAction.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  5%] Generating C++ code from strands_executive_msgs/MdpActionOutcome.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpActionOutcome.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  6%] Generating C++ code from strands_executive_msgs/ExecutePolicyActionFeedback.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  6%] Generating C++ code from strands_executive_msgs/TaskEvent.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/TaskEvent.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  6%] Generating C++ code from strands_executive_msgs/ExecutePolicyActionGoal.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  7%] Generating C++ code from strands_executive_msgs/ExecutePolicyGoal.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  7%] Generating C++ code from strands_executive_msgs/LastTaskID.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/LastTaskID.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  8%] Generating C++ code from strands_executive_msgs/MdpTask.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpTask.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  8%] Generating C++ code from strands_executive_msgs/ExecutePolicyActionResult.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  9%] Generating C++ code from strands_executive_msgs/StringTriple.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/StringTriple.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[  9%] Generating C++ code from strands_executive_msgs/ExecutePolicyFeedback.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 10%] Generating C++ code from strands_executive_msgs/ExecutionStatus.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/ExecutionStatus.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 10%] Generating C++ code from strands_executive_msgs/Task.msg
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/Task.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 11%] Generating C++ code from strands_executive_msgs/IsTaskInterruptible.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/IsTaskInterruptible.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 11%] Generating C++ code from strands_executive_msgs/CancelTask.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CancelTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 12%] Generating C++ code from strands_executive_msgs/GetActiveTasks.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetActiveTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 12%] Generating C++ code from strands_executive_msgs/AddTasks.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 13%] Generating C++ code from strands_executive_msgs/GetSchedule.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetSchedule.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 13%] Generating C++ code from strands_executive_msgs/SetExecutionStatus.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/SetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 14%] Generating C++ code from strands_executive_msgs/GetIDs.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetIDs.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 14%] Generating C++ code from strands_executive_msgs/AddCoSafeTasks.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddCoSafeTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 15%] Generating C++ code from strands_executive_msgs/GetBlacklistedNodes.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetBlacklistedNodes.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 15%] Generating C++ code from strands_executive_msgs/CreateTask.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CreateTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 16%] Generating C++ code from strands_executive_msgs/CancelActiveTask.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CancelActiveTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 16%] Generating C++ code from strands_executive_msgs/DemandTask.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/DemandTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 17%] Generating C++ code from strands_executive_msgs/AddTask.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 17%] Generating C++ code from strands_executive_msgs/DemandCoSafeTask.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/DemandCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 17%] Generating C++ code from strands_executive_msgs/GetExecutionStatus.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 18%] Generating C++ code from strands_executive_msgs/UpdateNavStatistics.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/UpdateNavStatistics.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
[ 18%] Generating C++ code from strands_executive_msgs/GetGuaranteesForCoSafeTask.srv
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 && /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetGuaranteesForCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/include/strands_executive_msgs -e /opt/ros/melodic/share/gencpp/cmake/..
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 18%] Built target strands_executive_msgs_generate_messages_cpp
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 18%] Built target std_msgs_generate_messages_py
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 18%] Built target mongodb_store_msgs_generate_messages_py
make -f CMakeFiles/strands_navigation_msgs_generate_messages_py.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_py.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_navigation_msgs_generate_messages_py.dir/DependInfo.cmake --color=
Scanning dependencies of target strands_navigation_msgs_generate_messages_py
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/strands_navigation_msgs_generate_messages_py.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_py.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/strands_navigation_msgs_generate_messages_py.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 18%] Built target strands_navigation_msgs_generate_messages_py
make -f CMakeFiles/sensor_msgs_generate_messages_py.dir/build.make CMakeFiles/sensor_msgs_generate_messages_py.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/sensor_msgs_generate_messages_py.dir/DependInfo.cmake --color=
Scanning dependencies of target sensor_msgs_generate_messages_py
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/sensor_msgs_generate_messages_py.dir/build.make CMakeFiles/sensor_msgs_generate_messages_py.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/sensor_msgs_generate_messages_py.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 18%] Built target sensor_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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 18%] Built target actionlib_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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 18%] Generating Python from MSG strands_executive_msgs/StringIntPair
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/StringIntPair.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 20%] Generating Python from MSG strands_executive_msgs/MdpStateVar
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpStateVar.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 20%] Generating Python from MSG strands_executive_msgs/MdpAction
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 21%] Generating Python from MSG strands_executive_msgs/DurationMatrix
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/DurationMatrix.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 21%] Generating Python from MSG strands_executive_msgs/ExecutePolicyResult
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 22%] Generating Python from MSG strands_executive_msgs/MdpDomainSpec
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpDomainSpec.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 22%] Generating Python from MSG strands_executive_msgs/DurationList
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/DurationList.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 23%] Generating Python from MSG strands_executive_msgs/NavExecutionStat
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/NavExecutionStat.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 23%] Generating Python from MSG strands_executive_msgs/TaskExecutionStat
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/TaskExecutionStat.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 24%] Generating Python from MSG strands_executive_msgs/ExecutePolicyAction
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 24%] Generating Python from MSG strands_executive_msgs/MdpActionOutcome
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpActionOutcome.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 25%] Generating Python from MSG strands_executive_msgs/ExecutePolicyActionFeedback
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 25%] Generating Python from MSG strands_executive_msgs/TaskEvent
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/TaskEvent.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 26%] Generating Python from MSG strands_executive_msgs/ExecutePolicyActionGoal
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 26%] Generating Python from MSG strands_executive_msgs/ExecutePolicyGoal
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 27%] Generating Python from MSG strands_executive_msgs/LastTaskID
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/LastTaskID.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 27%] Generating Python from MSG strands_executive_msgs/MdpTask
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpTask.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 27%] Generating Python from MSG strands_executive_msgs/ExecutePolicyActionResult
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 28%] Generating Python from MSG strands_executive_msgs/StringTriple
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/StringTriple.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 28%] Generating Python from MSG strands_executive_msgs/ExecutePolicyFeedback
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 29%] Generating Python from MSG strands_executive_msgs/ExecutionStatus
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/ExecutionStatus.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 29%] Generating Python from MSG strands_executive_msgs/Task
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/Task.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg
[ 30%] Generating Python code from SRV strands_executive_msgs/IsTaskInterruptible
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/IsTaskInterruptible.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 30%] Generating Python code from SRV strands_executive_msgs/CancelTask
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CancelTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 31%] Generating Python code from SRV strands_executive_msgs/GetActiveTasks
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetActiveTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 31%] Generating Python code from SRV strands_executive_msgs/AddTasks
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 32%] Generating Python code from SRV strands_executive_msgs/GetSchedule
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetSchedule.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 32%] Generating Python code from SRV strands_executive_msgs/SetExecutionStatus
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/SetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 33%] Generating Python code from SRV strands_executive_msgs/GetIDs
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetIDs.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 33%] Generating Python code from SRV strands_executive_msgs/AddCoSafeTasks
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddCoSafeTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 34%] Generating Python code from SRV strands_executive_msgs/GetBlacklistedNodes
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetBlacklistedNodes.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 34%] Generating Python code from SRV strands_executive_msgs/CreateTask
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CreateTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 35%] Generating Python code from SRV strands_executive_msgs/CancelActiveTask
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CancelActiveTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 35%] Generating Python code from SRV strands_executive_msgs/DemandTask
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/DemandTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 36%] Generating Python code from SRV strands_executive_msgs/AddTask
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 36%] Generating Python code from SRV strands_executive_msgs/DemandCoSafeTask
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/DemandCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 37%] Generating Python code from SRV strands_executive_msgs/GetExecutionStatus
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 37%] Generating Python code from SRV strands_executive_msgs/UpdateNavStatistics
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/UpdateNavStatistics.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 38%] Generating Python code from SRV strands_executive_msgs/GetGuaranteesForCoSafeTask
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetGuaranteesForCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv
[ 38%] Generating Python msg __init__.py for strands_executive_msgs
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg --initpy
[ 40%] Generating Python srv __init__.py for strands_executive_msgs
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv --initpy
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 40%] Built target strands_executive_msgs_generate_messages_py
make -f CMakeFiles/sensor_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/sensor_msgs_generate_messages_nodejs.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/sensor_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color=
Scanning dependencies of target sensor_msgs_generate_messages_nodejs
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/sensor_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/sensor_msgs_generate_messages_nodejs.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/sensor_msgs_generate_messages_nodejs.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 40%] Built target sensor_msgs_generate_messages_nodejs
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 40%] Built target std_msgs_generate_messages_nodejs
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 40%] Built target actionlib_msgs_generate_messages_nodejs
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 40%] Built target mongodb_store_msgs_generate_messages_nodejs
make -f CMakeFiles/strands_navigation_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_nodejs.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_navigation_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color=
Scanning dependencies of target strands_navigation_msgs_generate_messages_nodejs
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/strands_navigation_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_nodejs.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/strands_navigation_msgs_generate_messages_nodejs.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 40%] Built target strands_navigation_msgs_generate_messages_nodejs
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 41%] Generating Javascript code from strands_executive_msgs/StringIntPair.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/StringIntPair.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 41%] Generating Javascript code from strands_executive_msgs/MdpStateVar.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpStateVar.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 42%] Generating Javascript code from strands_executive_msgs/MdpAction.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 42%] Generating Javascript code from strands_executive_msgs/DurationMatrix.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/DurationMatrix.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 43%] Generating Javascript code from strands_executive_msgs/ExecutePolicyResult.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 43%] Generating Javascript code from strands_executive_msgs/MdpDomainSpec.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpDomainSpec.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 44%] Generating Javascript code from strands_executive_msgs/DurationList.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/DurationList.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 44%] Generating Javascript code from strands_executive_msgs/NavExecutionStat.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/NavExecutionStat.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 45%] Generating Javascript code from strands_executive_msgs/TaskExecutionStat.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/TaskExecutionStat.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 45%] Generating Javascript code from strands_executive_msgs/ExecutePolicyAction.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 45%] Generating Javascript code from strands_executive_msgs/MdpActionOutcome.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpActionOutcome.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 46%] Generating Javascript code from strands_executive_msgs/ExecutePolicyActionFeedback.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 46%] Generating Javascript code from strands_executive_msgs/TaskEvent.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/TaskEvent.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 47%] Generating Javascript code from strands_executive_msgs/ExecutePolicyActionGoal.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 47%] Generating Javascript code from strands_executive_msgs/ExecutePolicyGoal.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 48%] Generating Javascript code from strands_executive_msgs/LastTaskID.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/LastTaskID.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 48%] Generating Javascript code from strands_executive_msgs/MdpTask.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpTask.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 49%] Generating Javascript code from strands_executive_msgs/ExecutePolicyActionResult.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 49%] Generating Javascript code from strands_executive_msgs/StringTriple.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/StringTriple.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 50%] Generating Javascript code from strands_executive_msgs/ExecutePolicyFeedback.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 50%] Generating Javascript code from strands_executive_msgs/ExecutionStatus.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/ExecutionStatus.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 51%] Generating Javascript code from strands_executive_msgs/Task.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/Task.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/msg
[ 51%] Generating Javascript code from strands_executive_msgs/IsTaskInterruptible.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/IsTaskInterruptible.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 52%] Generating Javascript code from strands_executive_msgs/CancelTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CancelTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 52%] Generating Javascript code from strands_executive_msgs/GetActiveTasks.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetActiveTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 53%] Generating Javascript code from strands_executive_msgs/AddTasks.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 53%] Generating Javascript code from strands_executive_msgs/GetSchedule.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetSchedule.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 54%] Generating Javascript code from strands_executive_msgs/SetExecutionStatus.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/SetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 54%] Generating Javascript code from strands_executive_msgs/GetIDs.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetIDs.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 55%] Generating Javascript code from strands_executive_msgs/AddCoSafeTasks.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddCoSafeTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 55%] Generating Javascript code from strands_executive_msgs/GetBlacklistedNodes.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetBlacklistedNodes.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 56%] Generating Javascript code from strands_executive_msgs/CreateTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CreateTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 56%] Generating Javascript code from strands_executive_msgs/CancelActiveTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CancelActiveTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 56%] Generating Javascript code from strands_executive_msgs/DemandTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/DemandTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 57%] Generating Javascript code from strands_executive_msgs/AddTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 57%] Generating Javascript code from strands_executive_msgs/DemandCoSafeTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/DemandCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 58%] Generating Javascript code from strands_executive_msgs/GetExecutionStatus.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 58%] Generating Javascript code from strands_executive_msgs/UpdateNavStatistics.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/UpdateNavStatistics.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
[ 60%] Generating Javascript code from strands_executive_msgs/GetGuaranteesForCoSafeTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetGuaranteesForCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/strands_executive_msgs/srv
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 60%] Built target strands_executive_msgs_generate_messages_nodejs
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 60%] Built target std_msgs_generate_messages_eus
make -f CMakeFiles/sensor_msgs_generate_messages_eus.dir/build.make CMakeFiles/sensor_msgs_generate_messages_eus.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/sensor_msgs_generate_messages_eus.dir/DependInfo.cmake --color=
Scanning dependencies of target sensor_msgs_generate_messages_eus
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/sensor_msgs_generate_messages_eus.dir/build.make CMakeFiles/sensor_msgs_generate_messages_eus.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/sensor_msgs_generate_messages_eus.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 60%] Built target sensor_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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 60%] Built target mongodb_store_msgs_generate_messages_eus
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 60%] Built target actionlib_msgs_generate_messages_eus
make -f CMakeFiles/strands_navigation_msgs_generate_messages_eus.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_eus.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_navigation_msgs_generate_messages_eus.dir/DependInfo.cmake --color=
Scanning dependencies of target strands_navigation_msgs_generate_messages_eus
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/strands_navigation_msgs_generate_messages_eus.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_eus.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/strands_navigation_msgs_generate_messages_eus.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 60%] Built target strands_navigation_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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 61%] Generating EusLisp code from strands_executive_msgs/StringIntPair.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/StringIntPair.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 61%] Generating EusLisp code from strands_executive_msgs/MdpStateVar.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpStateVar.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 62%] Generating EusLisp code from strands_executive_msgs/MdpAction.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 62%] Generating EusLisp code from strands_executive_msgs/DurationMatrix.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/DurationMatrix.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 63%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyResult.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 63%] Generating EusLisp code from strands_executive_msgs/MdpDomainSpec.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpDomainSpec.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 64%] Generating EusLisp code from strands_executive_msgs/DurationList.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/DurationList.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 64%] Generating EusLisp code from strands_executive_msgs/NavExecutionStat.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/NavExecutionStat.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 65%] Generating EusLisp code from strands_executive_msgs/TaskExecutionStat.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/TaskExecutionStat.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 65%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyAction.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 66%] Generating EusLisp code from strands_executive_msgs/MdpActionOutcome.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpActionOutcome.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 67%] Generating EusLisp code from strands_executive_msgs/TaskEvent.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/TaskEvent.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 67%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyActionGoal.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 68%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyGoal.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 68%] Generating EusLisp code from strands_executive_msgs/LastTaskID.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/LastTaskID.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 69%] Generating EusLisp code from strands_executive_msgs/MdpTask.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpTask.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 70%] Generating EusLisp code from strands_executive_msgs/StringTriple.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/StringTriple.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 70%] Generating EusLisp code from strands_executive_msgs/ExecutePolicyFeedback.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 70%] Generating EusLisp code from strands_executive_msgs/ExecutionStatus.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/ExecutionStatus.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 71%] Generating EusLisp code from strands_executive_msgs/Task.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/Task.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/msg
[ 71%] Generating EusLisp code from strands_executive_msgs/IsTaskInterruptible.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/IsTaskInterruptible.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 72%] Generating EusLisp code from strands_executive_msgs/CancelTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CancelTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 72%] Generating EusLisp code from strands_executive_msgs/GetActiveTasks.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetActiveTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 73%] Generating EusLisp code from strands_executive_msgs/GetSchedule.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetSchedule.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 74%] Generating EusLisp code from strands_executive_msgs/SetExecutionStatus.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/SetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 74%] Generating EusLisp code from strands_executive_msgs/GetIDs.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetIDs.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 75%] Generating EusLisp code from strands_executive_msgs/AddCoSafeTasks.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddCoSafeTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 75%] Generating EusLisp code from strands_executive_msgs/GetBlacklistedNodes.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetBlacklistedNodes.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 76%] Generating EusLisp code from strands_executive_msgs/CreateTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CreateTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 76%] Generating EusLisp code from strands_executive_msgs/CancelActiveTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CancelActiveTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 77%] Generating EusLisp code from strands_executive_msgs/DemandTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/DemandTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 77%] Generating EusLisp code from strands_executive_msgs/AddTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 78%] Generating EusLisp code from strands_executive_msgs/DemandCoSafeTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/DemandCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 78%] Generating EusLisp code from strands_executive_msgs/GetExecutionStatus.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 80%] Generating EusLisp code from strands_executive_msgs/UpdateNavStatistics.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/UpdateNavStatistics.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 80%] Generating EusLisp code from strands_executive_msgs/GetGuaranteesForCoSafeTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetGuaranteesForCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs/srv
[ 81%] Generating EusLisp manifest code for strands_executive_msgs
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py -m -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/roseus/ros/strands_executive_msgs strands_executive_msgs mongodb_store_msgs std_msgs actionlib_msgs strands_navigation_msgs sensor_msgs
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 81%] Built target strands_executive_msgs_generate_messages_eus
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 81%] Built target actionlib_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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 81%] Built target std_msgs_generate_messages_lisp
make -f CMakeFiles/sensor_msgs_generate_messages_lisp.dir/build.make CMakeFiles/sensor_msgs_generate_messages_lisp.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/DependInfo.cmake --color=
Scanning dependencies of target sensor_msgs_generate_messages_lisp
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/sensor_msgs_generate_messages_lisp.dir/build.make CMakeFiles/sensor_msgs_generate_messages_lisp.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/sensor_msgs_generate_messages_lisp.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 81%] Built target sensor_msgs_generate_messages_lisp
make -f CMakeFiles/strands_navigation_msgs_generate_messages_lisp.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_lisp.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_navigation_msgs_generate_messages_lisp.dir/DependInfo.cmake --color=
Scanning dependencies of target strands_navigation_msgs_generate_messages_lisp
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/strands_navigation_msgs_generate_messages_lisp.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_lisp.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/strands_navigation_msgs_generate_messages_lisp.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 81%] Built target strands_navigation_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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 81%] Built target mongodb_store_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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 81%] Generating Lisp code from strands_executive_msgs/StringIntPair.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/StringIntPair.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 82%] Generating Lisp code from strands_executive_msgs/MdpStateVar.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpStateVar.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 82%] Generating Lisp code from strands_executive_msgs/MdpAction.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 82%] Generating Lisp code from strands_executive_msgs/DurationMatrix.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/DurationMatrix.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 83%] Generating Lisp code from strands_executive_msgs/ExecutePolicyResult.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 83%] Generating Lisp code from strands_executive_msgs/MdpDomainSpec.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpDomainSpec.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 84%] Generating Lisp code from strands_executive_msgs/DurationList.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/DurationList.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 84%] Generating Lisp code from strands_executive_msgs/NavExecutionStat.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/NavExecutionStat.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 85%] Generating Lisp code from strands_executive_msgs/TaskExecutionStat.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/TaskExecutionStat.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 85%] Generating Lisp code from strands_executive_msgs/ExecutePolicyAction.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyAction.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 86%] Generating Lisp code from strands_executive_msgs/MdpActionOutcome.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpActionOutcome.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 86%] Generating Lisp code from strands_executive_msgs/ExecutePolicyActionFeedback.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 87%] Generating Lisp code from strands_executive_msgs/TaskEvent.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/TaskEvent.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 87%] Generating Lisp code from strands_executive_msgs/ExecutePolicyActionGoal.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 88%] Generating Lisp code from strands_executive_msgs/ExecutePolicyGoal.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 88%] Generating Lisp code from strands_executive_msgs/LastTaskID.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/LastTaskID.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 89%] Generating Lisp code from strands_executive_msgs/MdpTask.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpTask.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 89%] Generating Lisp code from strands_executive_msgs/ExecutePolicyActionResult.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 90%] Generating Lisp code from strands_executive_msgs/StringTriple.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/StringTriple.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 90%] Generating Lisp code from strands_executive_msgs/ExecutePolicyFeedback.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 91%] Generating Lisp code from strands_executive_msgs/ExecutionStatus.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/ExecutionStatus.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 91%] Generating Lisp code from strands_executive_msgs/Task.msg
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/Task.msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/msg
[ 92%] Generating Lisp code from strands_executive_msgs/IsTaskInterruptible.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/IsTaskInterruptible.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[ 92%] Generating Lisp code from strands_executive_msgs/CancelTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CancelTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[ 93%] Generating Lisp code from strands_executive_msgs/GetActiveTasks.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetActiveTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[ 93%] Generating Lisp code from strands_executive_msgs/AddTasks.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[ 93%] Generating Lisp code from strands_executive_msgs/GetSchedule.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetSchedule.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[ 94%] Generating Lisp code from strands_executive_msgs/SetExecutionStatus.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/SetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[ 94%] Generating Lisp code from strands_executive_msgs/GetIDs.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetIDs.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[ 95%] Generating Lisp code from strands_executive_msgs/AddCoSafeTasks.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddCoSafeTasks.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[ 95%] Generating Lisp code from strands_executive_msgs/GetBlacklistedNodes.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetBlacklistedNodes.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[ 96%] Generating Lisp code from strands_executive_msgs/CreateTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CreateTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[ 96%] Generating Lisp code from strands_executive_msgs/CancelActiveTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CancelActiveTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[ 97%] Generating Lisp code from strands_executive_msgs/DemandTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/DemandTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[ 97%] Generating Lisp code from strands_executive_msgs/AddTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[ 98%] Generating Lisp code from strands_executive_msgs/DemandCoSafeTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/DemandCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[ 98%] Generating Lisp code from strands_executive_msgs/GetExecutionStatus.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetExecutionStatus.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[100%] Generating Lisp code from strands_executive_msgs/UpdateNavStatistics.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/UpdateNavStatistics.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
[100%] Generating Lisp code from strands_executive_msgs/GetGuaranteesForCoSafeTask.srv
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetGuaranteesForCoSafeTask.srv -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg -Istrands_executive_msgs:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg -Imongodb_store_msgs:/opt/ros/melodic/share/mongodb_store_msgs/cmake/../msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Iactionlib_msgs:/opt/ros/melodic/share/actionlib_msgs/cmake/../msg -Istrands_navigation_msgs:/opt/ros/melodic/share/strands_navigation_msgs/cmake/../msg -Isensor_msgs:/opt/ros/melodic/share/sensor_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p strands_executive_msgs -o /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/strands_executive_msgs/srv
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[100%] Built target strands_executive_msgs_generate_messages_lisp
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[100%] Built target strands_executive_msgs_generate_messages
make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
/usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles 0
make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5'
   debian/rules override_dh_auto_test
make[1]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5'
# 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/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \
dh_auto_test || true
make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5'
 fakeroot debian/rules binary
dh binary -v --buildsystem=cmake
   dh_testroot -O-v -O--buildsystem=cmake
   dh_prep -O-v -O--buildsystem=cmake
	rm -f -- debian/ros-melodic-strands-executive-msgs.substvars
	rm -fr -- debian/.debhelper/generated/ros-melodic-strands-executive-msgs/ debian/ros-melodic-strands-executive-msgs/ debian/tmp/
   dh_installdirs -O-v -O--buildsystem=cmake
	install -d debian/ros-melodic-strands-executive-msgs
   debian/rules override_dh_auto_install
make[1]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5'
# 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/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \
dh_auto_install
	cd obj-x86_64-linux-gnu && make -j1 install DESTDIR=/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs AM_UPDATE_INFO_DIR=no
make[2]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
/usr/bin/cmake -H/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 -B/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0
/usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/progress.marks
make -f CMakeFiles/Makefile2 all
make[3]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetBlacklistedNodes.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetBlacklistedNodes.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetBlacklistedNodes.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetBlacklistedNodes.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetBlacklistedNodes.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetBlacklistedNodes.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetBlacklistedNodes
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/UpdateNavStatistics.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_ExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutionStatus.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/ExecutionStatus.msg mongodb_store_msgs/StringPair:strands_executive_msgs/Task:std_msgs/Header
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_StringTriple.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringTriple.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/StringTriple.msg 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_SetExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_SetExecutionStatus.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/SetExecutionStatus.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_AddTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTasks.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddTasks.srv strands_executive_msgs/Task:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_AddTasks
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/actionlib_msgs_generate_messages_cpp.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target actionlib_msgs_generate_messages_cpp
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpTask.msg strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/MdpDomainSpec:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_GetActiveTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetActiveTasks.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetActiveTasks.srv strands_executive_msgs/Task:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_GetGuaranteesForCoSafeTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetGuaranteesForCoSafeTask.srv strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/MdpDomainSpec:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetGuaranteesForCoSafeTask
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetSchedule.srv strands_executive_msgs/DurationMatrix:strands_executive_msgs/DurationList:strands_executive_msgs/Task:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_GetSchedule
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target std_msgs_generate_messages_cpp
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/IsTaskInterruptible.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_ExecutePolicyFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyFeedback
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/mongodb_store_msgs_generate_messages_cpp.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target mongodb_store_msgs_generate_messages_cpp
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg actionlib_msgs/GoalID:actionlib_msgs/GoalStatus:strands_executive_msgs/ExecutePolicyResult:std_msgs/Header
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_CancelActiveTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelActiveTask.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelActiveTask.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelActiveTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CancelActiveTask.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CancelActiveTask.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_CancelActiveTask
make -f CMakeFiles/sensor_msgs_generate_messages_cpp.dir/build.make CMakeFiles/sensor_msgs_generate_messages_cpp.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/sensor_msgs_generate_messages_cpp.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/sensor_msgs_generate_messages_cpp.dir/build.make CMakeFiles/sensor_msgs_generate_messages_cpp.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/sensor_msgs_generate_messages_cpp.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target sensor_msgs_generate_messages_cpp
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/DemandTask.srv strands_executive_msgs/Task:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_DemandTask
make -f CMakeFiles/strands_navigation_msgs_generate_messages_cpp.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_cpp.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_navigation_msgs_generate_messages_cpp.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/strands_navigation_msgs_generate_messages_cpp.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_cpp.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/strands_navigation_msgs_generate_messages_cpp.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target strands_navigation_msgs_generate_messages_cpp
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/Task.msg mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_ExecutePolicyGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyGoal.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/MdpDomainSpec:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_LastTaskID.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_LastTaskID.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/LastTaskID.msg 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_StringIntPair.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_StringIntPair.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/StringIntPair.msg 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_ExecutePolicyAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyAction.msg strands_executive_msgs/ExecutePolicyFeedback:actionlib_msgs/GoalID:strands_executive_msgs/ExecutePolicyActionResult:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/ExecutePolicyActionGoal:std_msgs/Header:mongodb_store_msgs/StringPair:strands_executive_msgs/ExecutePolicyActionFeedback:strands_executive_msgs/MdpStateVar:strands_executive_msgs/ExecutePolicyGoal:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/ExecutePolicyResult:actionlib_msgs/GoalStatus:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_ExecutePolicyAction
make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskExecutionStat.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskExecutionStat.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskExecutionStat.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskExecutionStat.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_TaskExecutionStat.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/TaskExecutionStat.msg strands_executive_msgs/ExecutePolicyFeedback:actionlib_msgs/GoalID:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/ExecutePolicyActionGoal:std_msgs/Header:mongodb_store_msgs/StringPair:strands_executive_msgs/ExecutePolicyActionFeedback:strands_executive_msgs/MdpStateVar:strands_executive_msgs/ExecutePolicyGoal:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:actionlib_msgs/GoalStatus:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_TaskExecutionStat
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpStateVar.msg 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_MdpAction.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpAction.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpAction.msg strands_executive_msgs/StringTriple:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_GetExecutionStatus.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetExecutionStatus.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetExecutionStatus.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_DurationMatrix.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationMatrix.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/DurationMatrix.msg strands_executive_msgs/DurationList
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_ExecutePolicyResult.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyResult.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyResult.msg 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_AddTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddTask.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddTask.srv strands_executive_msgs/Task:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_MdpDomainSpec.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpDomainSpec.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpDomainSpec.msg strands_executive_msgs/StringTriple:strands_executive_msgs/MdpAction:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/StringIntPair:strands_executive_msgs/MdpActionOutcome
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_CreateTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_CreateTask.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CreateTask.srv strands_executive_msgs/Task:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_GetIDs.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_GetIDs.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/GetIDs.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_DurationList.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DurationList.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/DurationList.msg 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_DemandCoSafeTask.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/DemandCoSafeTask.srv strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/MdpDomainSpec:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_DemandCoSafeTask
make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_NavExecutionStat.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_NavExecutionStat.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_NavExecutionStat.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_NavExecutionStat.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_NavExecutionStat.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/NavExecutionStat.msg actionlib_msgs/GoalID:geometry_msgs/Pose:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/ExecutePolicyActionGoal:std_msgs/Header:mongodb_store_msgs/StringPair:sensor_msgs/Image:strands_executive_msgs/MdpStateVar:strands_executive_msgs/ExecutePolicyGoal:geometry_msgs/Quaternion:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_navigation_msgs/MonitoredNavEvent:geometry_msgs/Point:strands_navigation_msgs/NavStatistics:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_NavExecutionStat
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/CancelTask.srv 
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_CancelTask
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/TaskEvent.msg strands_executive_msgs/Task:mongodb_store_msgs/StringPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_MdpActionOutcome.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_MdpActionOutcome.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg/MdpActionOutcome.msg strands_executive_msgs/StringTriple:strands_executive_msgs/StringIntPair
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_ExecutePolicyActionGoal.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionGoal.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg actionlib_msgs/GoalID:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/ExecutePolicyGoal:std_msgs/Header:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/MdpDomainSpec:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_ExecutePolicyActionFeedback.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_ExecutePolicyActionFeedback.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg strands_executive_msgs/ExecutePolicyFeedback:actionlib_msgs/GoalID:actionlib_msgs/GoalStatus:std_msgs/Header
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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_AddCoSafeTasks.dir/build.make CMakeFiles/_strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py strands_executive_msgs /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv/AddCoSafeTasks.srv strands_executive_msgs/MdpTask:strands_executive_msgs/MdpActionOutcome:strands_executive_msgs/MdpAction:strands_executive_msgs/MdpDomainSpec:mongodb_store_msgs/StringPair:strands_executive_msgs/MdpStateVar:strands_executive_msgs/StringIntPair:strands_executive_msgs/StringTriple
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[  0%] Built target _strands_executive_msgs_generate_messages_check_deps_AddCoSafeTasks
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages_cpp.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 18%] Built target strands_executive_msgs_generate_messages_cpp
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 18%] Built target std_msgs_generate_messages_py
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/mongodb_store_msgs_generate_messages_py.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 18%] Built target mongodb_store_msgs_generate_messages_py
make -f CMakeFiles/strands_navigation_msgs_generate_messages_py.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_py.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_navigation_msgs_generate_messages_py.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/strands_navigation_msgs_generate_messages_py.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_py.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/strands_navigation_msgs_generate_messages_py.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 18%] Built target strands_navigation_msgs_generate_messages_py
make -f CMakeFiles/sensor_msgs_generate_messages_py.dir/build.make CMakeFiles/sensor_msgs_generate_messages_py.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/sensor_msgs_generate_messages_py.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/sensor_msgs_generate_messages_py.dir/build.make CMakeFiles/sensor_msgs_generate_messages_py.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/sensor_msgs_generate_messages_py.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 18%] Built target sensor_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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/actionlib_msgs_generate_messages_py.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 18%] Built target actionlib_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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages_py.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 40%] Built target strands_executive_msgs_generate_messages_py
make -f CMakeFiles/sensor_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/sensor_msgs_generate_messages_nodejs.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/sensor_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/sensor_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/sensor_msgs_generate_messages_nodejs.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/sensor_msgs_generate_messages_nodejs.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 40%] Built target sensor_msgs_generate_messages_nodejs
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 40%] Built target std_msgs_generate_messages_nodejs
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/actionlib_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 40%] Built target actionlib_msgs_generate_messages_nodejs
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/mongodb_store_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 40%] Built target mongodb_store_msgs_generate_messages_nodejs
make -f CMakeFiles/strands_navigation_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_nodejs.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_navigation_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/strands_navigation_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_nodejs.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/strands_navigation_msgs_generate_messages_nodejs.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 40%] Built target strands_navigation_msgs_generate_messages_nodejs
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 60%] Built target strands_executive_msgs_generate_messages_nodejs
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 60%] Built target std_msgs_generate_messages_eus
make -f CMakeFiles/sensor_msgs_generate_messages_eus.dir/build.make CMakeFiles/sensor_msgs_generate_messages_eus.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/sensor_msgs_generate_messages_eus.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/sensor_msgs_generate_messages_eus.dir/build.make CMakeFiles/sensor_msgs_generate_messages_eus.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/sensor_msgs_generate_messages_eus.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 60%] Built target sensor_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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/mongodb_store_msgs_generate_messages_eus.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 60%] Built target mongodb_store_msgs_generate_messages_eus
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/actionlib_msgs_generate_messages_eus.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 60%] Built target actionlib_msgs_generate_messages_eus
make -f CMakeFiles/strands_navigation_msgs_generate_messages_eus.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_eus.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_navigation_msgs_generate_messages_eus.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/strands_navigation_msgs_generate_messages_eus.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_eus.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/strands_navigation_msgs_generate_messages_eus.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 60%] Built target strands_navigation_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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages_eus.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 81%] Built target strands_executive_msgs_generate_messages_eus
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/actionlib_msgs_generate_messages_lisp.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 81%] Built target actionlib_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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 81%] Built target std_msgs_generate_messages_lisp
make -f CMakeFiles/sensor_msgs_generate_messages_lisp.dir/build.make CMakeFiles/sensor_msgs_generate_messages_lisp.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/sensor_msgs_generate_messages_lisp.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/sensor_msgs_generate_messages_lisp.dir/build.make CMakeFiles/sensor_msgs_generate_messages_lisp.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/sensor_msgs_generate_messages_lisp.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 81%] Built target sensor_msgs_generate_messages_lisp
make -f CMakeFiles/strands_navigation_msgs_generate_messages_lisp.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_lisp.dir/depend
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_navigation_msgs_generate_messages_lisp.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make -f CMakeFiles/strands_navigation_msgs_generate_messages_lisp.dir/build.make CMakeFiles/strands_navigation_msgs_generate_messages_lisp.dir/build
make[4]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[4]: Nothing to be done for 'CMakeFiles/strands_navigation_msgs_generate_messages_lisp.dir/build'.
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 81%] Built target strands_navigation_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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/mongodb_store_msgs_generate_messages_lisp.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[ 81%] Built target mongodb_store_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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages_lisp.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[100%] Built target strands_executive_msgs_generate_messages_lisp
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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles/strands_executive_msgs_generate_messages.dir/DependInfo.cmake --color=
make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
[100%] Built target strands_executive_msgs_generate_messages
make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
/usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/CMakeFiles 0
make -f CMakeFiles/Makefile2 preinstall
make[3]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[3]: Nothing to be done for 'preinstall'.
make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
Install the project...
/usr/bin/cmake -P cmake_install.cmake
-- Install configuration: "None"
+ cd /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5
+ mkdir -p /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages
+ /usr/bin/env PYTHONPATH=/opt/ros/melodic/lib/python2.7/dist-packages:/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/lib/python2.7/dist-packages:/opt/ros/melodic/lib/python2.7/dist-packages:/tmp/ros_buildfarm: CATKIN_BINARY_DIR=/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu /usr/bin/python2 /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/setup.py build --build-base /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu install --root=/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs --install-layout=deb --prefix=/opt/ros/melodic --install-scripts=/opt/ros/melodic/bin
running build
running build_py
creating /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7
creating /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/strands_executive_msgs
copying src/strands_executive_msgs/__init__.py -> /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/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-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/strands_executive_msgs
running install
running install_lib
creating /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs
copying /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/strands_executive_msgs/task_utils.py -> /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs
copying /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/strands_executive_msgs/__init__.py -> /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs
copying /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/strands_executive_msgs/mdp_action_utils.py -> /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs
copying /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/strands_executive_msgs/abstract_task_server.py -> /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs
byte-compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/task_utils.py to task_utils.pyc
byte-compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/__init__.py to __init__.pyc
byte-compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/mdp_action_utils.py to mdp_action_utils.pyc
byte-compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/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-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs-1.2.5.egg-info
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/Task.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/ExecutionStatus.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/TaskEvent.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/DurationList.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/DurationMatrix.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/MdpAction.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/MdpActionOutcome.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/MdpStateVar.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/StringIntPair.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/StringTriple.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/MdpDomainSpec.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/MdpTask.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/LastTaskID.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/NavExecutionStat.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/TaskExecutionStat.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/AddTask.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/AddTasks.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/AddCoSafeTasks.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/CreateTask.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/DemandTask.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/CancelTask.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/CancelActiveTask.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/SetExecutionStatus.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/GetExecutionStatus.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/GetSchedule.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/UpdateNavStatistics.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/IsTaskInterruptible.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/GetActiveTasks.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/GetGuaranteesForCoSafeTask.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/GetIDs.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/DemandCoSafeTask.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/srv/GetBlacklistedNodes.srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/action/ExecutePolicy.action
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/ExecutePolicyAction.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/ExecutePolicyActionGoal.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/ExecutePolicyActionResult.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/ExecutePolicyActionFeedback.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/ExecutePolicyGoal.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/ExecutePolicyResult.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/msg/ExecutePolicyFeedback.msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/cmake/strands_executive_msgs-msg-paths.cmake
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/DemandTaskRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/MdpDomainSpec.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetBlacklistedNodes.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/AddTaskRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/AddTasksResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/CancelActiveTaskResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/CreateTaskRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/TaskExecutionStat.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/AddTasksRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetIDsRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/ExecutePolicyAction.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/ExecutePolicyFeedback.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/ExecutePolicyActionResult.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/IsTaskInterruptibleRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/ExecutePolicyActionFeedback.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/ExecutionStatus.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetBlacklistedNodesRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetActiveTasksResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/MdpTask.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetExecutionStatusRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/CreateTaskResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetScheduleRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/AddTask.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/MdpStateVar.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetGuaranteesForCoSafeTask.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/ExecutePolicyResult.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/TaskEvent.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/SetExecutionStatusResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/IsTaskInterruptible.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/AddTasks.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetGuaranteesForCoSafeTaskResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/UpdateNavStatisticsRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetIDs.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetBlacklistedNodesResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/UpdateNavStatisticsResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/IsTaskInterruptibleResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/AddCoSafeTasksResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/DemandCoSafeTaskRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/DemandTaskResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/SetExecutionStatus.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetScheduleResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetActiveTasks.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/MdpAction.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/DemandCoSafeTask.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/CancelTaskResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/CreateTask.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/DemandCoSafeTaskResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/CancelTaskRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/CancelActiveTaskRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetExecutionStatus.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/CancelActiveTask.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/DurationMatrix.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/DurationList.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/MdpActionOutcome.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetExecutionStatusResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/DemandTask.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/ExecutePolicyActionGoal.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetActiveTasksRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/LastTaskID.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/ExecutePolicyGoal.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/StringTriple.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/AddTaskResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/NavExecutionStat.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetSchedule.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/AddCoSafeTasks.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/UpdateNavStatistics.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetGuaranteesForCoSafeTaskRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/SetExecutionStatusRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/Task.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/CancelTask.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/AddCoSafeTasksRequest.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/StringIntPair.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/include/strands_executive_msgs/GetIDsResponse.h
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/SetExecutionStatus.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/CancelTask.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/GetBlacklistedNodes.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/AddTasks.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/GetSchedule.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/DemandTask.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/CreateTask.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/GetGuaranteesForCoSafeTask.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/GetIDs.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/AddCoSafeTasks.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/DemandCoSafeTask.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/UpdateNavStatistics.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/CancelActiveTask.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/GetActiveTasks.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/AddTask.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/GetExecutionStatus.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/srv/IsTaskInterruptible.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/StringIntPair.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/MdpDomainSpec.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/NavExecutionStat.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyActionFeedback.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyActionResult.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/MdpStateVar.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/DurationMatrix.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyFeedback.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/MdpAction.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/LastTaskID.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/TaskExecutionStat.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/TaskEvent.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/Task.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/MdpActionOutcome.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyResult.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/ExecutionStatus.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/DurationList.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyGoal.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/StringTriple.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyAction.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/MdpTask.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/msg/ExecutePolicyActionGoal.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/roseus/ros/strands_executive_msgs/manifest.l
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_DemandTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_CancelActiveTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_GetIDs.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/CancelActiveTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_UpdateNavStatistics.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/GetIDs.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_GetActiveTasks.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/CancelTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_GetSchedule.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_AddTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/CreateTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_DemandCoSafeTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/AddTasks.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_CancelTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/AddTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_AddCoSafeTasks.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/GetExecutionStatus.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_AddTasks.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/DemandCoSafeTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/AddCoSafeTasks.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/GetBlacklistedNodes.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/GetGuaranteesForCoSafeTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_IsTaskInterruptible.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_GetGuaranteesForCoSafeTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/IsTaskInterruptible.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_GetBlacklistedNodes.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/UpdateNavStatistics.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/GetActiveTasks.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_CreateTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/SetExecutionStatus.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/DemandTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/strands_executive_msgs-srv.asd
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_GetExecutionStatus.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/GetSchedule.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/srv/_package_SetExecutionStatus.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_DurationList.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyGoal.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/StringTriple.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_MdpActionOutcome.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_DurationMatrix.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/MdpDomainSpec.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyAction.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/TaskExecutionStat.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/MdpAction.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/MdpActionOutcome.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyResult.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/NavExecutionStat.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/MdpStateVar.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyActionFeedback.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/MdpTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_Task.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutionStatus.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/LastTaskID.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_StringTriple.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyGoal.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyResult.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyActionGoal.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyActionResult.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyActionResult.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_MdpTask.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/TaskEvent.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutionStatus.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_MdpDomainSpec.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_ExecutePolicyFeedback.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyActionFeedback.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/DurationList.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyAction.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyFeedback.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/strands_executive_msgs-msg.asd
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/ExecutePolicyActionGoal.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/DurationMatrix.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_MdpAction.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/StringIntPair.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_MdpStateVar.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_NavExecutionStat.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/Task.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_LastTaskID.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_TaskExecutionStat.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_StringIntPair.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/common-lisp/ros/strands_executive_msgs/msg/_package_TaskEvent.lisp
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/AddTask.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/GetBlacklistedNodes.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/DemandCoSafeTask.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/CreateTask.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/GetGuaranteesForCoSafeTask.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/CancelActiveTask.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/CancelTask.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/GetActiveTasks.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/IsTaskInterruptible.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/UpdateNavStatistics.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/DemandTask.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/SetExecutionStatus.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/GetIDs.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/GetExecutionStatus.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/AddTasks.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/AddCoSafeTasks.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/_index.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/srv/GetSchedule.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/DurationList.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/StringIntPair.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/MdpDomainSpec.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutionStatus.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyResult.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyActionGoal.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/Task.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/NavExecutionStat.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/MdpStateVar.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/DurationMatrix.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyAction.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyActionFeedback.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyActionResult.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/TaskExecutionStat.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/MdpActionOutcome.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/LastTaskID.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/MdpTask.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyFeedback.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/TaskEvent.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/StringTriple.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/_index.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/ExecutePolicyGoal.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/msg/MdpAction.js
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/gennodejs/ros/strands_executive_msgs/_index.js
Listing /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/__init__.py ...
Listing /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_DurationList.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_DurationMatrix.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyAction.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionFeedback.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionGoal.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionResult.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyFeedback.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyGoal.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyResult.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutionStatus.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_LastTaskID.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpAction.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpActionOutcome.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpDomainSpec.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpStateVar.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpTask.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_NavExecutionStat.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_StringIntPair.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_StringTriple.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_Task.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_TaskEvent.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/_TaskExecutionStat.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/msg/__init__.py ...
Listing /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddCoSafeTasks.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddTask.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddTasks.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_CancelActiveTask.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_CancelTask.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_CreateTask.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_DemandCoSafeTask.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_DemandTask.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetActiveTasks.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetBlacklistedNodes.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetExecutionStatus.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetGuaranteesForCoSafeTask.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetIDs.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetSchedule.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_IsTaskInterruptible.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_SetExecutionStatus.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/_UpdateNavStatistics.py ...
Compiling /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/strands_executive_msgs/srv/__init__.py ...
-- Up-to-date: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_IsTaskInterruptible.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddTasks.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetActiveTasks.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetIDs.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddTasks.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_DemandCoSafeTask.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetExecutionStatus.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_CreateTask.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetBlacklistedNodes.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddCoSafeTasks.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_CancelActiveTask.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetSchedule.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_DemandTask.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddCoSafeTasks.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetBlacklistedNodes.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_SetExecutionStatus.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddTask.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetGuaranteesForCoSafeTask.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetGuaranteesForCoSafeTask.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_CancelTask.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_CreateTask.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_CancelTask.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_DemandTask.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetExecutionStatus.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_SetExecutionStatus.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_AddTask.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetIDs.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_UpdateNavStatistics.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_DemandCoSafeTask.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_CancelActiveTask.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetActiveTasks.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_GetSchedule.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_UpdateNavStatistics.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/_IsTaskInterruptible.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutionStatus.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_StringIntPair.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpStateVar.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_StringIntPair.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_TaskExecutionStat.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_StringTriple.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionResult.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpActionOutcome.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyAction.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_StringTriple.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_DurationMatrix.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_TaskExecutionStat.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyResult.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpDomainSpec.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyResult.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_Task.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpActionOutcome.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutionStatus.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_TaskEvent.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_LastTaskID.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_NavExecutionStat.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpAction.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpTask.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_Task.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyFeedback.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_DurationList.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyAction.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionGoal.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpDomainSpec.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_DurationMatrix.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyFeedback.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyGoal.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_LastTaskID.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionFeedback.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionGoal.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpAction.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpTask.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_TaskEvent.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_NavExecutionStat.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionFeedback.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_DurationList.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyGoal.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_ExecutePolicyActionResult.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/_MdpStateVar.pyc
-- Up-to-date: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs
-- Up-to-date: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/__init__.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/srv/__init__.pyc
-- Up-to-date: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/__init__.py
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/python2.7/dist-packages/strands_executive_msgs/msg/__init__.pyc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/lib/pkgconfig/strands_executive_msgs.pc
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/cmake/strands_executive_msgs-msg-extras.cmake
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/cmake/strands_executive_msgsConfig.cmake
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/cmake/strands_executive_msgsConfig-version.cmake
-- Installing: /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs/opt/ros/melodic/share/strands_executive_msgs/package.xml
make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu'
make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5'
   dh_install -O-v -O--buildsystem=cmake
	install -d debian/.debhelper/generated/ros-melodic-strands-executive-msgs
   dh_installdocs -O-v -O--buildsystem=cmake
	install -d debian/ros-melodic-strands-executive-msgs/usr/share/doc/ros-melodic-strands-executive-msgs
   dh_installchangelogs -O-v -O--buildsystem=cmake
	install -p -m0644 debian/changelog debian/ros-melodic-strands-executive-msgs/usr/share/doc/ros-melodic-strands-executive-msgs/changelog.Debian
   dh_installexamples -O-v -O--buildsystem=cmake
   dh_installman -O-v -O--buildsystem=cmake
   dh_installcatalogs -O-v -O--buildsystem=cmake
   dh_installcron -O-v -O--buildsystem=cmake
   dh_installdebconf -O-v -O--buildsystem=cmake
	install -d debian/ros-melodic-strands-executive-msgs/DEBIAN
   dh_installemacsen -O-v -O--buildsystem=cmake
   dh_installifupdown -O-v -O--buildsystem=cmake
   dh_installinfo -O-v -O--buildsystem=cmake
   dh_installinit -O-v -O--buildsystem=cmake
   dh_installmenu -O-v -O--buildsystem=cmake
   dh_installmime -O-v -O--buildsystem=cmake
   dh_installmodules -O-v -O--buildsystem=cmake
   dh_installlogcheck -O-v -O--buildsystem=cmake
   dh_installlogrotate -O-v -O--buildsystem=cmake
   dh_installpam -O-v -O--buildsystem=cmake
   dh_installppp -O-v -O--buildsystem=cmake
   dh_installudev -O-v -O--buildsystem=cmake
   dh_installgsettings -O-v -O--buildsystem=cmake
   dh_bugfiles -O-v -O--buildsystem=cmake
   dh_ucf -O-v -O--buildsystem=cmake
   dh_lintian -O-v -O--buildsystem=cmake
   dh_gconf -O-v -O--buildsystem=cmake
   dh_icons -O-v -O--buildsystem=cmake
   dh_perl -O-v -O--buildsystem=cmake
   dh_usrlocal -O-v -O--buildsystem=cmake
   dh_link -O-v -O--buildsystem=cmake
   dh_installwm -O-v -O--buildsystem=cmake
   dh_installxfonts -O-v -O--buildsystem=cmake
   dh_strip_nondeterminism -O-v -O--buildsystem=cmake
   dh_compress -O-v -O--buildsystem=cmake
	cd debian/ros-melodic-strands-executive-msgs
	chmod a-x usr/share/doc/ros-melodic-strands-executive-msgs/changelog.Debian
	gzip -9nf usr/share/doc/ros-melodic-strands-executive-msgs/changelog.Debian
	cd '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5'
   dh_fixperms -O-v -O--buildsystem=cmake
	find debian/ros-melodic-strands-executive-msgs -true -print0 2>/dev/null | xargs -0r chown --no-dereference 0:0
	find debian/ros-melodic-strands-executive-msgs ! -type l -a -true -a -true -print0 2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s
	find debian/ros-melodic-strands-executive-msgs/usr/share/doc -type f -a -true -a ! -regex 'debian/ros-melodic-strands-executive-msgs/usr/share/doc/[^/]*/examples/.*' -print0 2>/dev/null | xargs -0r chmod 0644
	find debian/ros-melodic-strands-executive-msgs/usr/share/doc -type d -a -true -a -true -print0 2>/dev/null | xargs -0r chmod 0755
	find debian/ros-melodic-strands-executive-msgs -type f \( -name '*.so.*' -o -name '*.so' -o -name '*.la' -o -name '*.a' -o -name '*.js' -o -name '*.css' -o -name '*.scss' -o -name '*.sass' -o -name '*.jpeg' -o -name '*.jpg' -o -name '*.png' -o -name '*.gif' -o -name '*.cmxs' \) -a -true -a -true -print0 2>/dev/null | xargs -0r chmod 0644
   dh_missing -O-v -O--buildsystem=cmake
   dh_strip -O-v -O--buildsystem=cmake
   dh_makeshlibs -O-v -O--buildsystem=cmake
	rm -f debian/ros-melodic-strands-executive-msgs/DEBIAN/shlibs
   debian/rules override_dh_shlibdeps
make[1]: Entering directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5'
# 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/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \
dh_shlibdeps -l/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian/ros-melodic-strands-executive-msgs//opt/ros/melodic/lib/
make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5'
   dh_installdeb -O-v -O--buildsystem=cmake
   dh_gencontrol -O-v -O--buildsystem=cmake
	echo misc:Depends= >> debian/ros-melodic-strands-executive-msgs.substvars
	echo misc:Pre-Depends= >> debian/ros-melodic-strands-executive-msgs.substvars
	dpkg-gencontrol -pros-melodic-strands-executive-msgs -ldebian/changelog -Tdebian/ros-melodic-strands-executive-msgs.substvars -Pdebian/ros-melodic-strands-executive-msgs -UMulti-Arch
dpkg-gencontrol: warning: Depends field of package ros-melodic-strands-executive-msgs: unknown substitution variable ${shlibs:Depends}
	chmod 0644 -- debian/ros-melodic-strands-executive-msgs/DEBIAN/control
	chown 0:0 -- debian/ros-melodic-strands-executive-msgs/DEBIAN/control
   dh_md5sums -O-v -O--buildsystem=cmake
	(cd debian/ros-melodic-strands-executive-msgs >/dev/null ; find . -type f  ! -regex './DEBIAN/.*' -printf '%P\0' | LC_ALL=C sort -z | xargs -r0 md5sum | perl -pe 'if (s@^\\@@) { s/\\\\/\\/g; }' > DEBIAN/md5sums) >/dev/null
	chmod 0644 -- debian/ros-melodic-strands-executive-msgs/DEBIAN/md5sums
	chown 0:0 -- debian/ros-melodic-strands-executive-msgs/DEBIAN/md5sums
   dh_builddeb -O-v -O--buildsystem=cmake
	dpkg-deb --build debian/ros-melodic-strands-executive-msgs ..
dpkg-deb: building package 'ros-melodic-strands-executive-msgs' in '../ros-melodic-strands-executive-msgs_1.2.5-1bionic.20200420.142014_amd64.deb'.
 dpkg-genbuildinfo --build=binary
 dpkg-genchanges --build=binary >../ros-melodic-strands-executive-msgs_1.2.5-1bionic.20200420.142014_amd64.changes
dpkg-genchanges: info: binary-only upload (no source code included)
 dpkg-source --after-build ros-melodic-strands-executive-msgs-1.2.5
dpkg-source: info: using options from ros-melodic-strands-executive-msgs-1.2.5/debian/source/options: --auto-commit
dpkg-buildpackage: info: binary-only upload (no source included)
I: Successfully built in /tmp/binarydeb/ros-melodic-strands-executive-msgs-1.2.5
# END SUBSECTION
+ echo # END SECTION
# END SECTION
[Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins4754550893170640449.sh
+ [ false = false ]
+ echo # BEGIN SECTION: Clean up to save disk space on agents
# BEGIN SECTION: Clean up to save disk space on agents
+ chmod -R u+w /home/jenkins-slave/workspace/Mbin_uB64__strands_executive_msgs__ubuntu_bionic_amd64__binary/binarydeb
+ rm -fr binarydeb/ros-melodic-strands-executive-msgs-1.2.5/CHANGELOG.rst binarydeb/ros-melodic-strands-executive-msgs-1.2.5/CMakeLists.txt binarydeb/ros-melodic-strands-executive-msgs-1.2.5/action binarydeb/ros-melodic-strands-executive-msgs-1.2.5/debian binarydeb/ros-melodic-strands-executive-msgs-1.2.5/msg binarydeb/ros-melodic-strands-executive-msgs-1.2.5/obj-x86_64-linux-gnu binarydeb/ros-melodic-strands-executive-msgs-1.2.5/package.xml binarydeb/ros-melodic-strands-executive-msgs-1.2.5/setup.py binarydeb/ros-melodic-strands-executive-msgs-1.2.5/src binarydeb/ros-melodic-strands-executive-msgs-1.2.5/srv
+ echo # END SECTION
# END SECTION
SSH: Connecting from host [lcas-buildfarm-slave-1]
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 Mrel_import-package
Mrel_import-package #478 started.
Mrel_import-package #478 completed. Result was SUCCESS
$ ssh-agent -k
unset SSH_AUTH_SOCK;
unset SSH_AGENT_PID;
echo Agent pid 8168 killed;
[ssh-agent] Stopped.
[description-setter] Description set: 1.2.5-1bionic.20200420.142014
Triggering a new build of Mrel_sync-packages-to-testing_bionic_amd64
Triggering a new build of Mbin_uB64__task_executor__ubuntu_bionic_amd64__binary
Triggering a new build of Mbin_uB64__mdp_plan_exec__ubuntu_bionic_amd64__binary
Triggering a new build of Mbin_uB64__gcal_routine__ubuntu_bionic_amd64__binary
Triggering a new build of Mbin_uB64__wait_action__ubuntu_bionic_amd64__binary
Finished: SUCCESS