Started by upstream project "Msrc_uB__rwth_perception_people_msgs__ubuntu_bionic__source" build number 1 originally caused by: Started by upstream project "Mrel_trigger-jobs" build number 28025 originally caused by: Started by timer Running as SYSTEM Building remotely on build client 3a (slave buildslave indigo_devel_default buildagent) in workspace /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_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-qImDDbu9jJum/agent.9271 SSH_AGENT_PID=9273 [ssh-agent] Started. Running ssh-add (command line suppressed) Identity added: /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary@tmp/private_key_7191548454923372219.key (/home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary@tmp/private_key_7191548454923372219.key) [ssh-agent] Using credentials jenkins-slave # BEGIN SECTION: Check upstream projects Verify that no recursive upstream project is broken: - 'Msrc_uB__rwth_perception_people_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 = 52085215232 bytes Free space threshold = 5368709120 bytes # END SECTION [Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins875491629501010694.sh + echo # BEGIN SECTION: docker version # BEGIN SECTION: docker version + docker version Client: Version: 1.9.1 API version: 1.21 Go version: go1.4.2 Git commit: a34a1d5 Built: Fri Nov 20 13:12:04 UTC 2015 OS/Arch: linux/amd64 Server: Version: 1.9.1 API version: 1.21 Go version: go1.4.2 Git commit: a34a1d5 Built: Fri Nov 20 13:12:04 UTC 2015 OS/Arch: linux/amd64 + echo # END SECTION # END SECTION + echo # BEGIN SECTION: docker info # BEGIN SECTION: docker info + docker info Containers: 55 Images: 1295 Server Version: 1.9.1 Storage Driver: aufs Root Dir: /var/lib/docker/aufs Backing Filesystem: extfs Dirs: 1457 Dirperm1 Supported: false Execution Driver: native-0.2 Logging Driver: json-file Kernel Version: 3.13.0-29-generic Operating System: Ubuntu 14.04 LTS CPUs: 2 Total Memory: 3.861 GiB Name: lcas-buildfarm-slave-3 ID: LZSS:PF7G:CREH:TEQW:FH57:3M6D:KCSS:ODQY:SPHA:ND7A:FHYG:PNDE WARNING: No swap limit support + echo # END SECTION # END SECTION [Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins3052698825853199804.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__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins2537028624969168324.sh + echo # END SECTION # END SECTION [Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins3426522810830578616.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__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins3538179012119822480.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 5847ba20c70a194f12d32fd0ad5364bed338f8e2 Author: Marc Hanheide Date: Fri Jun 5 12:50:43 2020 +0100 added openssl + rm -fr ros_buildfarm/.git + rm -fr ros_buildfarm/doc + echo # END SECTION # END SECTION [Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins6675293705046832965.sh + echo # BEGIN SECTION: Write PGP repository keys # BEGIN SECTION: Write PGP repository keys + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/keys + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/keys/* + echo -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.11 (GNU/Linux) mQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn MsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf xcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw kPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv /o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh EBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg KFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX yQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI 7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy JjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T Yh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++ Cut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ cvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM hU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3 IWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm Z4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK 7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb oRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC AAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U NTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0 ikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU M7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N l9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ Chb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ== =nFcN -----END PGP PUBLIC KEY BLOCK----- + echo -----BEGIN PGP PUBLIC KEY BLOCK----- Version: 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__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins1173622320142075638.sh + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/docker_generating_docker + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/docker_generating_docker + sleep 1 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 10257 --cid-file /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_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__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/ros_buildfarm: + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_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 rwth_perception_people_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__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/keys/0.key /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_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__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/binarydeb --dockerfile-dir /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_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__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/keys/0.key) http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/keys/1.key) Generating Dockerfile '/home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_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-08-26 (+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 openssl # always invalidate to actually have the latest apt repo state RUN echo "2020-08-26 15:21:08 +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 rwth_perception_people_msgs --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py melodic rwth_perception_people_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 rwth_perception_people_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__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/docker_generating_docker + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_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:cad1b4f53584896048526f7873f7de1eefe7d9f916e876daa1167eef618c5ebe Status: Image is up to date for ubuntu:bionic + docker build --force-rm -t binarydeb_task_generation.melodic_ubuntu_bionic_amd64_rwth_perception_people_msgs . Sending build context to Docker daemon 20.99 kB Sending build context to Docker daemon 20.99 kB Step 1 : FROM ubuntu:bionic ---> 9238192d9362 Step 2 : VOLUME /var/cache/apt/archives ---> Using cache ---> 963cb1e1007f Step 3 : ENV DEBIAN_FRONTEND noninteractive ---> Using cache ---> 4de5bf965b50 Step 4 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done ---> Using cache ---> 04edaa6f2fac Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen ---> Using cache ---> 5dece69ef2ae Step 6 : RUN locale-gen en_US.UTF-8 ---> Using cache ---> c7e7c9cbb9e9 Step 7 : ENV LANG en_US.UTF-8 ---> Using cache ---> 8ec7ca2734bf Step 8 : ENV TZ GMT+00 ---> Using cache ---> c4d0fbc4de9c Step 9 : RUN useradd -u 1002 -l -m buildfarm ---> Using cache ---> 0ba06486fed5 Step 10 : RUN mkdir /tmp/keys ---> Using cache ---> d822485da183 Step 11 : 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 ---> 2db4b49aa028 Step 12 : 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 ---> 6ceeca8bfc2d Step 13 : 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 ---> 0e63ae4fbcf9 Step 14 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> 84dfd31cbcc5 Step 15 : RUN echo deb-src http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> f74b4add1cd8 Step 16 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> bfede4d83d65 Step 17 : 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 ---> 1c295c391a74 Step 18 : RUN mkdir /tmp/wrapper_scripts ---> Using cache ---> 614e06756eef Step 19 : 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 ---> f2a8c44ffe3f Step 20 : 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 ---> bff9340f68c3 Step 21 : RUN echo "2020-08-26 (+0000)" ---> Using cache ---> 194f53862a6e Step 22 : 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 ---> 6ac333aa6816 Step 23 : 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 openssl ---> Using cache ---> 6b483f9d907c Step 24 : RUN echo "2020-08-26 15:21:08 +0000" ---> Running in 0de5ec862645 2020-08-26 15:21:08 +0000 ---> bc62076e75d4 Removing intermediate container 0de5ec862645 Step 25 : RUN python3 -u /tmp/wrapper_scripts/apt.py update ---> Running in 32431ebfe288 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 amd64 Packages [163 kB] Get:9 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [890 kB] Fetched 1,396 kB in 2s (780 kB/s) Reading package lists... ---> 2f388cf71190 Removing intermediate container 32431ebfe288 Step 26 : USER buildfarm ---> Running in 1a36afeb9c31 ---> dbed7b65fe95 Removing intermediate container 1a36afeb9c31 Step 27 : ENTRYPOINT sh -c ---> Running in 1d5e15572838 ---> 4378e12db12c Removing intermediate container 1d5e15572838 Step 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 rwth_perception_people_msgs --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py melodic rwth_perception_people_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 rwth_perception_people_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 4aa9b0c57632 ---> 04aa24917d50 Removing intermediate container 4aa9b0c57632 Successfully built 04aa24917d50 + 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__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/binarydeb ] + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/binarydeb + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/docker_build_binarydeb + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/binarydeb + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/docker_build_binarydeb + docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_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__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_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_rwth_perception_people_msgs # BEGIN SUBSECTION: get sourcedeb Invoking '/usr/bin/python3 /tmp/ros_buildfarm/ros_buildfarm/wrapper/apt.py source --download-only --only-source ros-melodic-rwth-perception-people-msgs=1.2.0-1bionic' Invoking 'apt-get source --download-only --only-source ros-melodic-rwth-perception-people-msgs=1.2.0-1bionic' Reading package lists... Need to get 8,020 B of source archives. Get:1 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-rwth-perception-people-msgs 1.2.0-1bionic (dsc) [1,253 B] Get:2 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-rwth-perception-people-msgs 1.2.0-1bionic (tar) [4,615 B] Get:3 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-rwth-perception-people-msgs 1.2.0-1bionic (diff) [2,152 B] Fetched 8,020 B in 0s (241 kB/s) Download complete and in download only mode Invoking 'dpkg-source -x ros-melodic-rwth-perception-people-msgs_1.2.0-1bionic.dsc' dpkg-source: warning: extracting unsigned source package (ros-melodic-rwth-perception-people-msgs_1.2.0-1bionic.dsc) dpkg-source: info: extracting ros-melodic-rwth-perception-people-msgs in ros-melodic-rwth-perception-people-msgs-1.2.0 dpkg-source: info: unpacking ros-melodic-rwth-perception-people-msgs_1.2.0.orig.tar.gz dpkg-source: info: unpacking ros-melodic-rwth-perception-people-msgs_1.2.0-1bionic.debian.tar.xz Package maintainer emails: cdondrup@lincoln.ac.uk # END SUBSECTION # BEGIN SUBSECTION: append build timestamp Invoking 'debchange -v 1.2.0-1bionic.20200826.152152 -p -D bionic -u high -m Append timestamp when binarydeb was built.' in '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0' # END SUBSECTION Looking for the '.dsc' file of package 'ros-melodic-rwth-perception-people-msgs' with version '1.2.0-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-08-26 (+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" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src RUN echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes debhelper RUN echo "ros-melodic-catkin: 0.7.28-1bionic.20200731.223830" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin RUN echo "ros-melodic-geometry-msgs: 1.12.7-0bionic.20200812.174659" && echo "ros-melodic-message-generation: 0.4.1-1bionic.20200812.162033" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-geometry-msgs ros-melodic-message-generation RUN echo "ros-melodic-roslib: 1.14.9-1bionic.20200801.032024" && echo "ros-melodic-std-msgs: 0.5.12-0bionic.20200812.163541" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-roslib ros-melodic-std-msgs USER buildfarm ENTRYPOINT ["sh", "-c"] CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic rwth_perception_people_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__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins1011192154149348584.sh + sleep 1 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 13412 --cid-file /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_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__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/docker_build_binarydeb + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_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:cad1b4f53584896048526f7873f7de1eefe7d9f916e876daa1167eef618c5ebe Status: Image is up to date for ubuntu:bionic + docker build --force-rm -t binarydeb_build.melodic_ubuntu_bionic_amd64_rwth_perception_people_msgs . Sending build context to Docker daemon 20.99 kB Sending build context to Docker daemon 20.99 kB Step 1 : FROM ubuntu:bionic ---> 9238192d9362 Step 2 : VOLUME /var/cache/apt/archives ---> Using cache ---> 963cb1e1007f Step 3 : ENV DEBIAN_FRONTEND noninteractive ---> Using cache ---> 4de5bf965b50 Step 4 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done ---> Using cache ---> 04edaa6f2fac Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen ---> Using cache ---> 5dece69ef2ae Step 6 : RUN locale-gen en_US.UTF-8 ---> Using cache ---> c7e7c9cbb9e9 Step 7 : ENV LANG en_US.UTF-8 ---> Using cache ---> 8ec7ca2734bf Step 8 : ENV TZ GMT+00 ---> Using cache ---> c4d0fbc4de9c Step 9 : RUN useradd -u 1002 -l -m buildfarm ---> Using cache ---> 0ba06486fed5 Step 10 : RUN mkdir /tmp/keys ---> Using cache ---> d822485da183 Step 11 : 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 ---> 2db4b49aa028 Step 12 : 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 ---> 6ceeca8bfc2d Step 13 : 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 ---> 0e63ae4fbcf9 Step 14 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> 84dfd31cbcc5 Step 15 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> 75a00b64a428 Step 16 : 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 ---> 450688e65962 Step 17 : RUN mkdir /tmp/wrapper_scripts ---> Using cache ---> cd4ce355217d Step 18 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n '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 ---> 034b0116a3b2 Step 19 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py ---> Using cache ---> 01016b0c4c02 Step 20 : RUN echo "2020-08-26 (+0000)" ---> Using cache ---> fbf3ed1cdf16 Step 21 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done ---> Using cache ---> 43c304eddafb Step 22 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python ---> Using cache ---> a46f31f664b0 Step 23 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential ---> Using cache ---> 3e13f3dca196 Step 24 : RUN echo "apt-src: 0.25.2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src ---> Using cache ---> 94d13837c5d4 Step 25 : RUN echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes debhelper ---> Running in 0dccc9665c05 debhelper: 12.1.1ubuntu1~ubuntu18.04.1 Invoking 'apt-get update' Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,826 B] 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 Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:6 http://archive.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 [163 kB] Fetched 166 kB in 2s (83.6 kB/s) Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes debhelper' 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: autoconf automake autopoint autotools-dev bsdmainutils ca-certificates curl dh-autoreconf dh-strip-nondeterminism gettext gettext-base groff-base intltool-debian krb5-locales libarchive-cpio-perl libarchive-zip-perl libbsd0 libcroco3 libcurl4 libfile-stripnondeterminism-perl libglib2.0-0 libglib2.0-data libgssapi-krb5-2 libicu60 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libltdl-dev libltdl7 libmail-sendmail-perl libnghttp2-14 libpipeline1 libpsl5 librtmp1 libsigsegv2 libsys-hostname-long-perl libtimedate-perl libtool libxml2 m4 man-db openssl po-debconf publicsuffix shared-mime-info xdg-user-dirs Suggested packages: autoconf-archive gnu-standards autoconf-doc wamerican | wordlist whois vacation dh-make dwz gettext-doc libasprintf-dev libgettextpo-dev groff krb5-doc krb5-user libtool-doc gfortran | fortran95-compiler gcj-jdk m4-doc apparmor less www-browser libmail-box-perl The following NEW packages will be installed: autoconf automake autopoint autotools-dev bsdmainutils ca-certificates curl debhelper dh-autoreconf dh-strip-nondeterminism gettext gettext-base groff-base intltool-debian krb5-locales libarchive-cpio-perl libarchive-zip-perl libbsd0 libcroco3 libcurl4 libfile-stripnondeterminism-perl libglib2.0-0 libglib2.0-data libgssapi-krb5-2 libicu60 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libltdl-dev libltdl7 libmail-sendmail-perl libnghttp2-14 libpipeline1 libpsl5 librtmp1 libsigsegv2 libsys-hostname-long-perl libtimedate-perl libtool libxml2 m4 man-db openssl po-debconf publicsuffix shared-mime-info xdg-user-dirs 0 upgraded, 48 newly installed, 0 to remove and 4 not upgraded. Need to get 19.5 MB of archives. After this operation, 70.7 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbsd0 amd64 0.8.7-1ubuntu0.1 [41.6 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 bsdmainutils amd64 11.1.2ubuntu1 [181 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 groff-base amd64 1.22.3-10 [1,153 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpipeline1 amd64 1.5.0-1 [25.3 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 man-db amd64 2.8.3-2ubuntu0.1 [1,019 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openssl amd64 1.1.1-1ubuntu2.1~18.04.6 [614 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 ca-certificates all 20190110~18.04.1 [146 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-0 amd64 2.56.4-0ubuntu0.18.04.6 [1,171 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-data all 2.56.4-0ubuntu0.18.04.6 [4,540 B] Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libicu60 amd64 60.2-3ubuntu3.1 [8,054 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxml2 amd64 2.9.4+dfsg1-6.1ubuntu1.3 [663 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 shared-mime-info amd64 1.9-2 [426 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 xdg-user-dirs amd64 0.17-1ubuntu1 [48.0 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext-base amd64 0.19.8.1-6ubuntu0.3 [113 kB] Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 krb5-locales all 1.16-2ubuntu0.1 [13.5 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5support0 amd64 1.16-2ubuntu0.1 [30.9 kB] Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libk5crypto3 amd64 1.16-2ubuntu0.1 [85.6 kB] Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 libkeyutils1 amd64 1.5.9-9.2ubuntu2 [8,720 B] Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5-3 amd64 1.16-2ubuntu0.1 [279 kB] Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgssapi-krb5-2 amd64 1.16-2ubuntu0.1 [122 kB] Get:21 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpsl5 amd64 0.19.1-5build1 [41.8 kB] Get:22 http://archive.ubuntu.com/ubuntu bionic/main amd64 publicsuffix all 20180223.1310-1 [97.6 kB] Get:23 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsigsegv2 amd64 2.12-1 [14.7 kB] Get:24 http://archive.ubuntu.com/ubuntu bionic/main amd64 m4 amd64 1.4.18-1 [197 kB] Get:25 http://archive.ubuntu.com/ubuntu bionic/main amd64 autoconf all 2.69-11 [322 kB] Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 autotools-dev all 20180224.1 [39.6 kB] Get:27 http://archive.ubuntu.com/ubuntu bionic/main amd64 automake all 1:1.15.1-3ubuntu2 [509 kB] Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 autopoint all 0.19.8.1-6ubuntu0.3 [426 kB] Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnghttp2-14 amd64 1.30.0-1ubuntu1 [77.8 kB] Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-1 [54.2 kB] Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.10 [214 kB] Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 curl amd64 7.58.0-2ubuntu3.10 [159 kB] Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtool all 2.4.6-2 [194 kB] Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-autoreconf all 17 [15.8 kB] Get:35 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libarchive-zip-perl all 1.60-1ubuntu0.1 [84.6 kB] Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-stripnondeterminism-perl all 0.040-1.1~build1 [13.8 kB] Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtimedate-perl all 2.3000-2 [37.5 kB] Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-strip-nondeterminism all 0.040-1.1~build1 [5,208 B] Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcroco3 amd64 0.6.12-2 [81.3 kB] Get:40 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext amd64 0.19.8.1-6ubuntu0.3 [1,293 kB] Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 intltool-debian all 0.35.0+20060710.4 [24.9 kB] Get:42 http://archive.ubuntu.com/ubuntu bionic/main amd64 po-debconf all 1.0.20 [232 kB] Get:43 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 debhelper all 11.1.6ubuntu2 [902 kB] Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 libarchive-cpio-perl all 0.10-1 [9,644 B] Get:45 http://archive.ubuntu.com/ubuntu bionic/main amd64 libltdl7 amd64 2.4.6-2 [38.8 kB] Get:46 http://archive.ubuntu.com/ubuntu bionic/main amd64 libltdl-dev amd64 2.4.6-2 [162 kB] Get:47 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsys-hostname-long-perl all 1.5-1 [11.7 kB] Get:48 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmail-sendmail-perl all 0.80-1 [22.6 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 19.5 MB in 1s (27.7 MB/s) Selecting previously unselected package libbsd0: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 ... 14049 files and directories currently installed.) Preparing to unpack .../00-libbsd0_0.8.7-1ubuntu0.1_amd64.deb ... Unpacking libbsd0:amd64 (0.8.7-1ubuntu0.1) ... Selecting previously unselected package bsdmainutils. Preparing to unpack .../01-bsdmainutils_11.1.2ubuntu1_amd64.deb ... Unpacking bsdmainutils (11.1.2ubuntu1) ... Selecting previously unselected package groff-base. Preparing to unpack .../02-groff-base_1.22.3-10_amd64.deb ... Unpacking groff-base (1.22.3-10) ... Selecting previously unselected package libpipeline1:amd64. Preparing to unpack .../03-libpipeline1_1.5.0-1_amd64.deb ... Unpacking libpipeline1:amd64 (1.5.0-1) ... Selecting previously unselected package man-db. Preparing to unpack .../04-man-db_2.8.3-2ubuntu0.1_amd64.deb ... Unpacking man-db (2.8.3-2ubuntu0.1) ... Selecting previously unselected package openssl. Preparing to unpack .../05-openssl_1.1.1-1ubuntu2.1~18.04.6_amd64.deb ... Unpacking openssl (1.1.1-1ubuntu2.1~18.04.6) ... Selecting previously unselected package ca-certificates. Preparing to unpack .../06-ca-certificates_20190110~18.04.1_all.deb ... Unpacking ca-certificates (20190110~18.04.1) ... Selecting previously unselected package libglib2.0-0:amd64. Preparing to unpack .../07-libglib2.0-0_2.56.4-0ubuntu0.18.04.6_amd64.deb ... Unpacking libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.6) ... Selecting previously unselected package libglib2.0-data. Preparing to unpack .../08-libglib2.0-data_2.56.4-0ubuntu0.18.04.6_all.deb ... Unpacking libglib2.0-data (2.56.4-0ubuntu0.18.04.6) ... Selecting previously unselected package libicu60:amd64. Preparing to unpack .../09-libicu60_60.2-3ubuntu3.1_amd64.deb ... Unpacking libicu60:amd64 (60.2-3ubuntu3.1) ... Selecting previously unselected package libxml2:amd64. Preparing to unpack .../10-libxml2_2.9.4+dfsg1-6.1ubuntu1.3_amd64.deb ... Unpacking libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.3) ... Selecting previously unselected package shared-mime-info. Preparing to unpack .../11-shared-mime-info_1.9-2_amd64.deb ... Unpacking shared-mime-info (1.9-2) ... Selecting previously unselected package xdg-user-dirs. Preparing to unpack .../12-xdg-user-dirs_0.17-1ubuntu1_amd64.deb ... Unpacking xdg-user-dirs (0.17-1ubuntu1) ... Selecting previously unselected package gettext-base. Preparing to unpack .../13-gettext-base_0.19.8.1-6ubuntu0.3_amd64.deb ... Unpacking gettext-base (0.19.8.1-6ubuntu0.3) ... Selecting previously unselected package krb5-locales. Preparing to unpack .../14-krb5-locales_1.16-2ubuntu0.1_all.deb ... Unpacking krb5-locales (1.16-2ubuntu0.1) ... Selecting previously unselected package libkrb5support0:amd64. Preparing to unpack .../15-libkrb5support0_1.16-2ubuntu0.1_amd64.deb ... Unpacking libkrb5support0:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libk5crypto3:amd64. Preparing to unpack .../16-libk5crypto3_1.16-2ubuntu0.1_amd64.deb ... Unpacking libk5crypto3:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libkeyutils1:amd64. Preparing to unpack .../17-libkeyutils1_1.5.9-9.2ubuntu2_amd64.deb ... Unpacking libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... Selecting previously unselected package libkrb5-3:amd64. Preparing to unpack .../18-libkrb5-3_1.16-2ubuntu0.1_amd64.deb ... Unpacking libkrb5-3:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libgssapi-krb5-2:amd64. Preparing to unpack .../19-libgssapi-krb5-2_1.16-2ubuntu0.1_amd64.deb ... Unpacking libgssapi-krb5-2:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libpsl5:amd64. Preparing to unpack .../20-libpsl5_0.19.1-5build1_amd64.deb ... Unpacking libpsl5:amd64 (0.19.1-5build1) ... Selecting previously unselected package publicsuffix. Preparing to unpack .../21-publicsuffix_20180223.1310-1_all.deb ... Unpacking publicsuffix (20180223.1310-1) ... Selecting previously unselected package libsigsegv2:amd64. Preparing to unpack .../22-libsigsegv2_2.12-1_amd64.deb ... Unpacking libsigsegv2:amd64 (2.12-1) ... Selecting previously unselected package m4. Preparing to unpack .../23-m4_1.4.18-1_amd64.deb ... Unpacking m4 (1.4.18-1) ... Selecting previously unselected package autoconf. Preparing to unpack .../24-autoconf_2.69-11_all.deb ... Unpacking autoconf (2.69-11) ... Selecting previously unselected package autotools-dev. Preparing to unpack .../25-autotools-dev_20180224.1_all.deb ... Unpacking autotools-dev (20180224.1) ... Selecting previously unselected package automake. Preparing to unpack .../26-automake_1%3a1.15.1-3ubuntu2_all.deb ... Unpacking automake (1:1.15.1-3ubuntu2) ... Selecting previously unselected package autopoint. Preparing to unpack .../27-autopoint_0.19.8.1-6ubuntu0.3_all.deb ... Unpacking autopoint (0.19.8.1-6ubuntu0.3) ... Selecting previously unselected package libnghttp2-14:amd64. Preparing to unpack .../28-libnghttp2-14_1.30.0-1ubuntu1_amd64.deb ... Unpacking libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... Selecting previously unselected package librtmp1:amd64. Preparing to unpack .../29-librtmp1_2.4+20151223.gitfa8646d.1-1_amd64.deb ... Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... Selecting previously unselected package libcurl4:amd64. Preparing to unpack .../30-libcurl4_7.58.0-2ubuntu3.10_amd64.deb ... Unpacking libcurl4:amd64 (7.58.0-2ubuntu3.10) ... Selecting previously unselected package curl. Preparing to unpack .../31-curl_7.58.0-2ubuntu3.10_amd64.deb ... Unpacking curl (7.58.0-2ubuntu3.10) ... Selecting previously unselected package libtool. Preparing to unpack .../32-libtool_2.4.6-2_all.deb ... Unpacking libtool (2.4.6-2) ... Selecting previously unselected package dh-autoreconf. Preparing to unpack .../33-dh-autoreconf_17_all.deb ... Unpacking dh-autoreconf (17) ... Selecting previously unselected package libarchive-zip-perl. Preparing to unpack .../34-libarchive-zip-perl_1.60-1ubuntu0.1_all.deb ... Unpacking libarchive-zip-perl (1.60-1ubuntu0.1) ... Selecting previously unselected package libfile-stripnondeterminism-perl. Preparing to unpack .../35-libfile-stripnondeterminism-perl_0.040-1.1~build1_all.deb ... Unpacking libfile-stripnondeterminism-perl (0.040-1.1~build1) ... Selecting previously unselected package libtimedate-perl. Preparing to unpack .../36-libtimedate-perl_2.3000-2_all.deb ... Unpacking libtimedate-perl (2.3000-2) ... Selecting previously unselected package dh-strip-nondeterminism. Preparing to unpack .../37-dh-strip-nondeterminism_0.040-1.1~build1_all.deb ... Unpacking dh-strip-nondeterminism (0.040-1.1~build1) ... Selecting previously unselected package libcroco3:amd64. Preparing to unpack .../38-libcroco3_0.6.12-2_amd64.deb ... Unpacking libcroco3:amd64 (0.6.12-2) ... Selecting previously unselected package gettext. Preparing to unpack .../39-gettext_0.19.8.1-6ubuntu0.3_amd64.deb ... Unpacking gettext (0.19.8.1-6ubuntu0.3) ... Selecting previously unselected package intltool-debian. Preparing to unpack .../40-intltool-debian_0.35.0+20060710.4_all.deb ... Unpacking intltool-debian (0.35.0+20060710.4) ... Selecting previously unselected package po-debconf. Preparing to unpack .../41-po-debconf_1.0.20_all.deb ... Unpacking po-debconf (1.0.20) ... Selecting previously unselected package debhelper. Preparing to unpack .../42-debhelper_11.1.6ubuntu2_all.deb ... Unpacking debhelper (11.1.6ubuntu2) ... Selecting previously unselected package libarchive-cpio-perl. Preparing to unpack .../43-libarchive-cpio-perl_0.10-1_all.deb ... Unpacking libarchive-cpio-perl (0.10-1) ... Selecting previously unselected package libltdl7:amd64. Preparing to unpack .../44-libltdl7_2.4.6-2_amd64.deb ... Unpacking libltdl7:amd64 (2.4.6-2) ... Selecting previously unselected package libltdl-dev:amd64. Preparing to unpack .../45-libltdl-dev_2.4.6-2_amd64.deb ... Unpacking libltdl-dev:amd64 (2.4.6-2) ... Selecting previously unselected package libsys-hostname-long-perl. Preparing to unpack .../46-libsys-hostname-long-perl_1.5-1_all.deb ... Unpacking libsys-hostname-long-perl (1.5-1) ... Selecting previously unselected package libmail-sendmail-perl. Preparing to unpack .../47-libmail-sendmail-perl_0.80-1_all.deb ... Unpacking libmail-sendmail-perl (0.80-1) ... Setting up libicu60:amd64 (60.2-3ubuntu3.1) ... Setting up libarchive-zip-perl (1.60-1ubuntu0.1) ... Setting up libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... Setting up libtimedate-perl (2.3000-2) ... Setting up libsigsegv2:amd64 (2.12-1) ... Setting up libpsl5:amd64 (0.19.1-5build1) ... Setting up groff-base (1.22.3-10) ... Setting up libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.6) ... No schema files found: doing nothing. Setting up libarchive-cpio-perl (0.10-1) ... Setting up gettext-base (0.19.8.1-6ubuntu0.3) ... Setting up libpipeline1:amd64 (1.5.0-1) ... Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... Setting up m4 (1.4.18-1) ... Setting up libbsd0:amd64 (0.8.7-1ubuntu0.1) ... Setting up libkrb5support0:amd64 (1.16-2ubuntu0.1) ... Setting up libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.3) ... Setting up libcroco3:amd64 (0.6.12-2) ... Setting up libsys-hostname-long-perl (1.5-1) ... Setting up libglib2.0-data (2.56.4-0ubuntu0.18.04.6) ... Setting up libmail-sendmail-perl (0.80-1) ... Setting up krb5-locales (1.16-2ubuntu0.1) ... Setting up publicsuffix (20180223.1310-1) ... Setting up autotools-dev (20180224.1) ... Setting up libltdl7:amd64 (2.4.6-2) ... Setting up openssl (1.1.1-1ubuntu2.1~18.04.6) ... Setting up shared-mime-info (1.9-2) ... Setting up libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... Setting up bsdmainutils (11.1.2ubuntu1) ... update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/write.1.gz because associated file /usr/share/man/man1/bsd-write.1.gz (of link group write) doesn't exist update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/from.1.gz because associated file /usr/share/man/man1/bsd-from.1.gz (of link group from) doesn't exist Setting up ca-certificates (20190110~18.04.1) ... Updating certificates in /etc/ssl/certs... 127 added, 0 removed; done. Setting up xdg-user-dirs (0.17-1ubuntu1) ... Setting up autopoint (0.19.8.1-6ubuntu0.3) ... Setting up libfile-stripnondeterminism-perl (0.040-1.1~build1) ... Setting up libtool (2.4.6-2) ... Setting up libk5crypto3:amd64 (1.16-2ubuntu0.1) ... Setting up libltdl-dev:amd64 (2.4.6-2) ... Setting up gettext (0.19.8.1-6ubuntu0.3) ... Setting up autoconf (2.69-11) ... Setting up intltool-debian (0.35.0+20060710.4) ... Setting up automake (1:1.15.1-3ubuntu2) ... update-alternatives: using /usr/bin/automake-1.15 to provide /usr/bin/automake (automake) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/automake.1.gz because associated file /usr/share/man/man1/automake-1.15.1.gz (of link group automake) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/aclocal.1.gz because associated file /usr/share/man/man1/aclocal-1.15.1.gz (of link group automake) doesn't exist Setting up man-db (2.8.3-2ubuntu0.1) ... Building database of manual pages ... Setting up libkrb5-3:amd64 (1.16-2ubuntu0.1) ... Setting up po-debconf (1.0.20) ... Setting up libgssapi-krb5-2:amd64 (1.16-2ubuntu0.1) ... Setting up libcurl4:amd64 (7.58.0-2ubuntu3.10) ... Setting up curl (7.58.0-2ubuntu3.10) ... Setting up dh-autoreconf (17) ... Setting up debhelper (11.1.6ubuntu2) ... Setting up dh-strip-nondeterminism (0.040-1.1~build1) ... Processing triggers for libc-bin (2.27-3ubuntu1.2) ... Processing triggers for mime-support (3.60ubuntu1) ... Processing triggers for ca-certificates (20190110~18.04.1) ... Updating certificates in /etc/ssl/certs... 0 added, 0 removed; done. Running hooks in /etc/ca-certificates/update.d... done. Invoking 'apt-get clean' ---> 59c77fdd4799 Removing intermediate container 0dccc9665c05 Step 26 : RUN echo "ros-melodic-catkin: 0.7.28-1bionic.20200731.223830" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin ---> Running in bb9f22b9c1c5 ros-melodic-catkin: 0.7.28-1bionic.20200731.223830 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 Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 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 [164 kB] Fetched 167 kB in 6s (29.3 kB/s) Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin' 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: cmake cmake-data docutils-common docutils-doc google-mock googletest libarchive13 libfreetype6 libgtest-dev libjbig0 libjpeg-turbo8 libjpeg8 libjsoncpp1 liblcms2-2 liblzo2-2 libpaper-utils libpaper1 libpng16-16 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib librhash0 libtiff5 libuv1 libwebp6 libwebpdemux2 libwebpmux3 multiarch-support python python-catkin-pkg python-catkin-pkg-modules python-chardet python-dateutil python-docutils python-empy python-minimal python-nose python-olefile python-pil python-pkg-resources python-pygments python-pyparsing python-roman python-six python2.7 python2.7-minimal sgml-base tzdata ucf xml-core Suggested packages: cmake-doc ninja-build lrzip liblcms2-utils python-doc python-tk fonts-linuxlibertine | ttf-linux-libertine texlive-lang-french texlive-latex-base texlive-latex-recommended python-coverage python-nose-doc python-pil-doc python-pil-dbg python-setuptools ttf-bitstream-vera python-pyparsing-doc python2.7-doc binfmt-support sgml-base-doc The following NEW packages will be installed: cmake cmake-data docutils-common docutils-doc google-mock googletest libarchive13 libfreetype6 libgtest-dev libjbig0 libjpeg-turbo8 libjpeg8 libjsoncpp1 liblcms2-2 liblzo2-2 libpaper-utils libpaper1 libpng16-16 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib librhash0 libtiff5 libuv1 libwebp6 libwebpdemux2 libwebpmux3 multiarch-support python python-catkin-pkg python-catkin-pkg-modules python-chardet python-dateutil python-docutils python-empy python-minimal python-nose python-olefile python-pil python-pkg-resources python-pygments python-pyparsing python-roman python-six python2.7 python2.7-minimal ros-melodic-catkin sgml-base tzdata ucf xml-core 0 upgraded, 51 newly installed, 0 to remove and 4 not upgraded. Need to get 14.2 MB of archives. After this operation, 72.7 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.22-1 [42.1 kB] Get:2 http://10.210.9.154/ubuntu/building bionic/main amd64 python-catkin-pkg all 0.4.22-100 [3,516 B] Get:3 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-catkin amd64 0.7.28-1bionic.20200731.223830 [128 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 multiarch-support amd64 2.27-3ubuntu1.2 [6,920 B] Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libjpeg-turbo8 amd64 1.5.2-0ubuntu5.18.04.4 [110 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblzo2-2 amd64 2.08-1.2 [48.7 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-minimal amd64 2.7.17-1~18.04ubuntu1.1 [335 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7-minimal amd64 2.7.17-1~18.04ubuntu1.1 [1,303 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-minimal amd64 2.7.15~rc1-1 [28.1 kB] Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-stdlib amd64 2.7.17-1~18.04ubuntu1.1 [1,915 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7 amd64 2.7.17-1~18.04ubuntu1.1 [248 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpython-stdlib amd64 2.7.15~rc1-1 [7,620 B] Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 python amd64 2.7.15~rc1-1 [140 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 sgml-base all 1.29 [12.3 kB] Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 tzdata all 2020a-0ubuntu0.18.04 [190 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic/main amd64 ucf all 3.0038 [50.5 kB] Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpng16-16 amd64 1.6.34-1ubuntu0.18.04.2 [176 kB] Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cmake-data all 3.10.2-1ubuntu2.18.04.1 [1,332 kB] Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libarchive13 amd64 3.2.2-3.1ubuntu0.6 [288 kB] Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjsoncpp1 amd64 1.7.4-3 [73.6 kB] Get:21 http://archive.ubuntu.com/ubuntu bionic/main amd64 librhash0 amd64 1.3.6-2 [78.1 kB] Get:22 http://archive.ubuntu.com/ubuntu bionic/main amd64 libuv1 amd64 1.18.0-3 [64.4 kB] Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cmake amd64 3.10.2-1ubuntu2.18.04.1 [3,152 kB] Get:24 http://archive.ubuntu.com/ubuntu bionic/main amd64 xml-core all 0.18 [21.3 kB] Get:25 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-common all 0.14+dfsg-3 [156 kB] Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-doc all 0.14+dfsg-3 [913 kB] Get:27 http://archive.ubuntu.com/ubuntu bionic/universe amd64 googletest amd64 1.8.0-6 [652 kB] Get:28 http://archive.ubuntu.com/ubuntu bionic/universe amd64 google-mock amd64 1.8.0-6 [2,972 B] Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfreetype6 amd64 2.8.1-2ubuntu2 [335 kB] Get:30 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libgtest-dev amd64 1.8.0-6 [2,718 B] Get:31 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjpeg8 amd64 8c-2ubuntu8 [2,194 B] Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblcms2-2 amd64 2.9-1ubuntu0.1 [139 kB] Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper1 amd64 1.1.24+nmu5ubuntu1 [13.6 kB] Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper-utils amd64 1.1.24+nmu5ubuntu1 [8,170 B] Get:35 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjbig0 amd64 2.1-3.1build1 [26.7 kB] Get:36 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtiff5 amd64 4.0.9-5ubuntu0.3 [153 kB] Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebp6 amd64 0.6.1-2 [185 kB] Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpdemux2 amd64 0.6.1-2 [9,472 B] Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpmux3 amd64 0.6.1-2 [19.6 kB] Get:40 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-six all 1.11.0-2 [11.3 kB] Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-dateutil all 2.6.1-1 [60.6 kB] Get:42 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-roman all 2.0.0-3 [8,548 B] Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-docutils all 0.14+dfsg-3 [365 kB] Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pyparsing all 2.2.0+dfsg1-2 [52.1 kB] Get:45 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pkg-resources all 39.0.1-2 [128 kB] Get:46 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-chardet all 3.0.4-1 [80.3 kB] Get:47 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-empy all 3.3.2-1build1 [72.5 kB] Get:48 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-nose all 1.3.7-3 [116 kB] Get:49 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-olefile all 0.45.1-1 [33.2 kB] Get:50 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python-pil amd64 5.1.0-1ubuntu0.3 [301 kB] Get:51 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pygments all 2.2.0+dfsg-1 [577 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 14.2 MB in 1s (18.6 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 ... 16736 files and directories currently installed.) Preparing to unpack .../multiarch-support_2.27-3ubuntu1.2_amd64.deb ... Unpacking multiarch-support (2.27-3ubuntu1.2) ... Setting up multiarch-support (2.27-3ubuntu1.2) ... Selecting previously unselected package libjpeg-turbo8: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 ... 16739 files and directories currently installed.) Preparing to unpack .../0-libjpeg-turbo8_1.5.2-0ubuntu5.18.04.4_amd64.deb ... Unpacking libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.4) ... Selecting previously unselected package liblzo2-2:amd64. Preparing to unpack .../1-liblzo2-2_2.08-1.2_amd64.deb ... Unpacking liblzo2-2:amd64 (2.08-1.2) ... Selecting previously unselected package libpython2.7-minimal:amd64. Preparing to unpack .../2-libpython2.7-minimal_2.7.17-1~18.04ubuntu1.1_amd64.deb ... Unpacking libpython2.7-minimal:amd64 (2.7.17-1~18.04ubuntu1.1) ... Selecting previously unselected package python2.7-minimal. Preparing to unpack .../3-python2.7-minimal_2.7.17-1~18.04ubuntu1.1_amd64.deb ... Unpacking python2.7-minimal (2.7.17-1~18.04ubuntu1.1) ... Selecting previously unselected package python-minimal. Preparing to unpack .../4-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 .../5-libpython2.7-stdlib_2.7.17-1~18.04ubuntu1.1_amd64.deb ... Unpacking libpython2.7-stdlib:amd64 (2.7.17-1~18.04ubuntu1.1) ... Selecting previously unselected package python2.7. Preparing to unpack .../6-python2.7_2.7.17-1~18.04ubuntu1.1_amd64.deb ... Unpacking python2.7 (2.7.17-1~18.04ubuntu1.1) ... Selecting previously unselected package libpython-stdlib:amd64. Preparing to unpack .../7-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.04ubuntu1.1) ... Setting up python2.7-minimal (2.7.17-1~18.04ubuntu1.1) ... 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 ... 17504 files and directories currently installed.) Preparing to unpack .../00-python_2.7.15~rc1-1_amd64.deb ... Unpacking python (2.7.15~rc1-1) ... Selecting previously unselected package sgml-base. Preparing to unpack .../01-sgml-base_1.29_all.deb ... Unpacking sgml-base (1.29) ... Selecting previously unselected package tzdata. Preparing to unpack .../02-tzdata_2020a-0ubuntu0.18.04_all.deb ... Unpacking tzdata (2020a-0ubuntu0.18.04) ... Selecting previously unselected package ucf. Preparing to unpack .../03-ucf_3.0038_all.deb ... Moving old data out of the way Unpacking ucf (3.0038) ... Selecting previously unselected package libpng16-16:amd64. Preparing to unpack .../04-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 cmake-data. Preparing to unpack .../05-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 .../06-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 .../07-libjsoncpp1_1.7.4-3_amd64.deb ... Unpacking libjsoncpp1:amd64 (1.7.4-3) ... Selecting previously unselected package librhash0:amd64. Preparing to unpack .../08-librhash0_1.3.6-2_amd64.deb ... Unpacking librhash0:amd64 (1.3.6-2) ... Selecting previously unselected package libuv1:amd64. Preparing to unpack .../09-libuv1_1.18.0-3_amd64.deb ... Unpacking libuv1:amd64 (1.18.0-3) ... Selecting previously unselected package cmake. Preparing to unpack .../10-cmake_3.10.2-1ubuntu2.18.04.1_amd64.deb ... Unpacking cmake (3.10.2-1ubuntu2.18.04.1) ... Selecting previously unselected package xml-core. Preparing to unpack .../11-xml-core_0.18_all.deb ... Unpacking xml-core (0.18) ... Selecting previously unselected package docutils-common. Preparing to unpack .../12-docutils-common_0.14+dfsg-3_all.deb ... Unpacking docutils-common (0.14+dfsg-3) ... Selecting previously unselected package docutils-doc. Preparing to unpack .../13-docutils-doc_0.14+dfsg-3_all.deb ... Unpacking docutils-doc (0.14+dfsg-3) ... Selecting previously unselected package googletest:amd64. Preparing to unpack .../14-googletest_1.8.0-6_amd64.deb ... Unpacking googletest:amd64 (1.8.0-6) ... Selecting previously unselected package google-mock:amd64. Preparing to unpack .../15-google-mock_1.8.0-6_amd64.deb ... Unpacking google-mock:amd64 (1.8.0-6) ... Selecting previously unselected package libfreetype6:amd64. Preparing to unpack .../16-libfreetype6_2.8.1-2ubuntu2_amd64.deb ... Unpacking libfreetype6:amd64 (2.8.1-2ubuntu2) ... Selecting previously unselected package libgtest-dev:amd64. Preparing to unpack .../17-libgtest-dev_1.8.0-6_amd64.deb ... Unpacking libgtest-dev:amd64 (1.8.0-6) ... Selecting previously unselected package libjpeg8:amd64. Preparing to unpack .../18-libjpeg8_8c-2ubuntu8_amd64.deb ... Unpacking libjpeg8:amd64 (8c-2ubuntu8) ... Selecting previously unselected package liblcms2-2:amd64. Preparing to unpack .../19-liblcms2-2_2.9-1ubuntu0.1_amd64.deb ... Unpacking liblcms2-2:amd64 (2.9-1ubuntu0.1) ... Selecting previously unselected package libpaper1:amd64. Preparing to unpack .../20-libpaper1_1.1.24+nmu5ubuntu1_amd64.deb ... Unpacking libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... Selecting previously unselected package libpaper-utils. Preparing to unpack .../21-libpaper-utils_1.1.24+nmu5ubuntu1_amd64.deb ... Unpacking libpaper-utils (1.1.24+nmu5ubuntu1) ... Selecting previously unselected package libjbig0:amd64. Preparing to unpack .../22-libjbig0_2.1-3.1build1_amd64.deb ... Unpacking libjbig0:amd64 (2.1-3.1build1) ... Selecting previously unselected package libtiff5:amd64. Preparing to unpack .../23-libtiff5_4.0.9-5ubuntu0.3_amd64.deb ... Unpacking libtiff5:amd64 (4.0.9-5ubuntu0.3) ... Selecting previously unselected package libwebp6:amd64. Preparing to unpack .../24-libwebp6_0.6.1-2_amd64.deb ... Unpacking libwebp6:amd64 (0.6.1-2) ... Selecting previously unselected package libwebpdemux2:amd64. Preparing to unpack .../25-libwebpdemux2_0.6.1-2_amd64.deb ... Unpacking libwebpdemux2:amd64 (0.6.1-2) ... Selecting previously unselected package libwebpmux3:amd64. Preparing to unpack .../26-libwebpmux3_0.6.1-2_amd64.deb ... Unpacking libwebpmux3:amd64 (0.6.1-2) ... Selecting previously unselected package python-six. Preparing to unpack .../27-python-six_1.11.0-2_all.deb ... Unpacking python-six (1.11.0-2) ... Selecting previously unselected package python-dateutil. Preparing to unpack .../28-python-dateutil_2.6.1-1_all.deb ... Unpacking python-dateutil (2.6.1-1) ... Selecting previously unselected package python-roman. Preparing to unpack .../29-python-roman_2.0.0-3_all.deb ... Unpacking python-roman (2.0.0-3) ... Selecting previously unselected package python-docutils. Preparing to unpack .../30-python-docutils_0.14+dfsg-3_all.deb ... Unpacking python-docutils (0.14+dfsg-3) ... Selecting previously unselected package python-pyparsing. Preparing to unpack .../31-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 .../32-python-catkin-pkg-modules_0.4.22-1_all.deb ... Unpacking python-catkin-pkg-modules (0.4.22-1) ... Selecting previously unselected package python-catkin-pkg. Preparing to unpack .../33-python-catkin-pkg_0.4.22-100_all.deb ... Unpacking python-catkin-pkg (0.4.22-100) ... Selecting previously unselected package python-pkg-resources. Preparing to unpack .../34-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 .../35-python-chardet_3.0.4-1_all.deb ... Unpacking python-chardet (3.0.4-1) ... Selecting previously unselected package python-empy. Preparing to unpack .../36-python-empy_3.3.2-1build1_all.deb ... Unpacking python-empy (3.3.2-1build1) ... Selecting previously unselected package python-nose. Preparing to unpack .../37-python-nose_1.3.7-3_all.deb ... Unpacking python-nose (1.3.7-3) ... Selecting previously unselected package python-olefile. Preparing to unpack .../38-python-olefile_0.45.1-1_all.deb ... Unpacking python-olefile (0.45.1-1) ... Selecting previously unselected package python-pil:amd64. Preparing to unpack .../39-python-pil_5.1.0-1ubuntu0.3_amd64.deb ... Unpacking python-pil:amd64 (5.1.0-1ubuntu0.3) ... Selecting previously unselected package python-pygments. Preparing to unpack .../40-python-pygments_2.2.0+dfsg-1_all.deb ... Unpacking python-pygments (2.2.0+dfsg-1) ... Selecting previously unselected package ros-melodic-catkin. Preparing to unpack .../41-ros-melodic-catkin_0.7.28-1bionic.20200731.223830_amd64.deb ... Unpacking ros-melodic-catkin (0.7.28-1bionic.20200731.223830) ... Setting up libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ... Setting up liblcms2-2:amd64 (2.9-1ubuntu0.1) ... Setting up libjbig0:amd64 (2.1-3.1build1) ... Setting up libuv1:amd64 (1.18.0-3) ... Setting up tzdata (2020a-0ubuntu0.18.04) ... Current default time zone: 'Etc/UTC' Local time is now: Wed Aug 26 15:25:05 UTC 2020. Universal Time is now: Wed Aug 26 15:25:05 UTC 2020. Run 'dpkg-reconfigure tzdata' if you wish to change it. Setting up cmake-data (3.10.2-1ubuntu2.18.04.1) ... Setting up libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.4) ... Setting up sgml-base (1.29) ... Setting up ucf (3.0038) ... Setting up libfreetype6:amd64 (2.8.1-2ubuntu2) ... Setting up librhash0:amd64 (1.3.6-2) ... Setting up docutils-doc (0.14+dfsg-3) ... Setting up xml-core (0.18) ... Setting up libpython2.7-stdlib:amd64 (2.7.17-1~18.04ubuntu1.1) ... Setting up liblzo2-2:amd64 (2.08-1.2) ... Setting up libwebp6:amd64 (0.6.1-2) ... Setting up libjpeg8:amd64 (8c-2ubuntu8) ... Setting up libjsoncpp1:amd64 (1.7.4-3) ... Setting up libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... Creating config file /etc/papersize with new version Setting up libpaper-utils (1.1.24+nmu5ubuntu1) ... Setting up libarchive13:amd64 (3.2.2-3.1ubuntu0.6) ... Setting up python2.7 (2.7.17-1~18.04ubuntu1.1) ... Setting up libtiff5:amd64 (4.0.9-5ubuntu0.3) ... Setting up libpython-stdlib:amd64 (2.7.15~rc1-1) ... Setting up libwebpmux3:amd64 (0.6.1-2) ... Setting up libwebpdemux2:amd64 (0.6.1-2) ... Setting up cmake (3.10.2-1ubuntu2.18.04.1) ... Setting up python (2.7.15~rc1-1) ... Setting up python-pyparsing (2.2.0+dfsg1-2) ... Setting up python-pkg-resources (39.0.1-2) ... Setting up python-roman (2.0.0-3) ... Setting up python-six (1.11.0-2) ... Setting up googletest:amd64 (1.8.0-6) ... Setting up python-pygments (2.2.0+dfsg-1) ... Setting up python-empy (3.3.2-1build1) ... Setting up libgtest-dev:amd64 (1.8.0-6) ... Setting up python-olefile (0.45.1-1) ... Setting up python-nose (1.3.7-3) ... Setting up python-pil:amd64 (5.1.0-1ubuntu0.3) ... Setting up google-mock:amd64 (1.8.0-6) ... Setting up python-chardet (3.0.4-1) ... Setting up python-dateutil (2.6.1-1) ... Processing triggers for man-db (2.8.3-2ubuntu0.1) ... Processing triggers for shared-mime-info (1.9-2) ... Processing triggers for mime-support (3.60ubuntu1) ... Processing triggers for libc-bin (2.27-3ubuntu1.2) ... 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.22-1) ... Setting up python-catkin-pkg (0.4.22-100) ... Setting up ros-melodic-catkin (0.7.28-1bionic.20200731.223830) ... Invoking 'apt-get clean' ---> a4b6fe30a8e5 Removing intermediate container bb9f22b9c1c5 Step 27 : RUN echo "ros-melodic-geometry-msgs: 1.12.7-0bionic.20200812.174659" && echo "ros-melodic-message-generation: 0.4.1-1bionic.20200812.162033" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-geometry-msgs ros-melodic-message-generation ---> Running in b683e0289874 ros-melodic-geometry-msgs: 1.12.7-0bionic.20200812.174659 ros-melodic-message-generation: 0.4.1-1bionic.20200812.162033 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 Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 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 [164 kB] Fetched 167 kB in 2s (96.9 kB/s) Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-melodic-geometry-msgs ros-melodic-message-generation' 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: gir1.2-glib-2.0 gir1.2-harfbuzz-0.0 ibverbs-providers icu-devtools 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 libconsole-bridge-dev libconsole-bridge0.4 libelf1 libexpat1-dev libfabric1 libgirepository-1.0-1 libglib2.0-bin libglib2.0-dev libglib2.0-dev-bin libgraphite2-3 libgraphite2-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libharfbuzz0b libhwloc-dev libhwloc-plugins libhwloc5 libibverbs-dev libibverbs1 libicu-dev libicu-le-hb-dev libicu-le-hb0 libiculx60 libnl-3-200 libnl-route-3-200 libnuma-dev libnuma1 libopenmpi-dev libopenmpi2 libpciaccess0 libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpsm-infinipath1 libpython-dev libpython2.7 libpython2.7-dev libpython3-dev libpython3.6 libpython3.6-dev librdmacm1 libyaml-0-2 mpi-default-bin mpi-default-dev ocl-icd-libopencl1 openmpi-bin openmpi-common pkg-config python-dev python-yaml python2.7-dev python3-dev python3.6-dev 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-runtime ros-melodic-roscpp-serialization ros-melodic-roscpp-traits ros-melodic-rostime ros-melodic-std-msgs zlib1g-dev Suggested packages: libboost-doc graphviz libboost1.65-doc gccxml libmpfrc++-dev libntl-dev xsltproc doxygen docbook-xml docbook-xsl default-jdk fop libglib2.0-doc libgraphite2-utils libhwloc-contrib-plugins icu-doc openmpi-doc pciutils opencl-icd gfortran The following NEW packages will be installed: gir1.2-glib-2.0 gir1.2-harfbuzz-0.0 ibverbs-providers icu-devtools 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 libconsole-bridge-dev libconsole-bridge0.4 libelf1 libexpat1-dev libfabric1 libgirepository-1.0-1 libglib2.0-bin libglib2.0-dev libglib2.0-dev-bin libgraphite2-3 libgraphite2-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libharfbuzz0b libhwloc-dev libhwloc-plugins libhwloc5 libibverbs-dev libibverbs1 libicu-dev libicu-le-hb-dev libicu-le-hb0 libiculx60 libnl-3-200 libnl-route-3-200 libnuma-dev libnuma1 libopenmpi-dev libopenmpi2 libpciaccess0 libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpsm-infinipath1 libpython-dev libpython2.7 libpython2.7-dev libpython3-dev libpython3.6 libpython3.6-dev librdmacm1 libyaml-0-2 mpi-default-bin mpi-default-dev ocl-icd-libopencl1 openmpi-bin openmpi-common pkg-config python-dev python-yaml python2.7-dev python3-dev python3.6-dev ros-melodic-cpp-common ros-melodic-gencpp ros-melodic-geneus ros-melodic-genlisp ros-melodic-genmsg ros-melodic-gennodejs ros-melodic-genpy ros-melodic-geometry-msgs ros-melodic-message-generation ros-melodic-message-runtime ros-melodic-roscpp-serialization ros-melodic-roscpp-traits ros-melodic-rostime ros-melodic-std-msgs zlib1g-dev 0 upgraded, 171 newly installed, 0 to remove and 4 not upgraded. Need to get 109 MB of archives. After this operation, 395 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgirepository-1.0-1 amd64 1.56.1-1 [82.0 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 gir1.2-glib-2.0 amd64 1.56.1-1 [131 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libelf1 amd64 0.170-0.4ubuntu0.1 [44.8 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libyaml-0-2 amd64 0.1.7-2ubuntu3 [47.2 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libnuma1 amd64 2.0.11-2.1ubuntu0.1 [22.0 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgraphite2-3 amd64 1.3.11-2 [78.7 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz0b amd64 1.7.2-1ubuntu1 [232 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 gir1.2-harfbuzz-0.0 amd64 1.7.2-1ubuntu1 [18.6 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnl-3-200 amd64 3.2.29-0ubuntu3 [52.8 kB] Get:10 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnl-route-3-200 amd64 3.2.29-0ubuntu3 [146 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libibverbs1 amd64 17.1-1ubuntu0.2 [44.4 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 ibverbs-providers amd64 17.1-1ubuntu0.2 [160 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 icu-devtools amd64 60.2-3ubuntu3.1 [179 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [7,218 kB] Get:15 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-cpp-common amd64 0.6.14-1bionic.20200801.035855 [22.0 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-dev amd64 1.65.1.0ubuntu1 [3,128 B] Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost1.65-tools-dev amd64 1.65.1+dfsg-0ubuntu5 [1,222 kB] Get:18 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-tools-dev amd64 1.65.1.0ubuntu1 [3,096 B] Get:19 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-atomic1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [7,268 B] Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-atomic1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [5,160 B] Get:21 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-atomic-dev amd64 1.65.1.0ubuntu1 [3,224 B] Get:22 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-system1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [10.5 kB] Get:23 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-chrono1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [10.2 kB] Get:24 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-chrono1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [9,804 B] Get:25 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-chrono-dev amd64 1.65.1.0ubuntu1 [3,544 B] Get:26 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-container1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [43.4 kB] Get:27 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-container1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [41.7 kB] Get:28 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-container-dev amd64 1.65.1.0ubuntu1 [3,400 B] Get:29 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-context1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [8,336 B] Get:30 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-context1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [6,364 B] Get:31 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-context-dev amd64 1.65.1.0ubuntu1 [3,120 B] Get:32 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-thread1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [43.2 kB] Get:33 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-coroutine1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [22.6 kB] Get:34 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-coroutine1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [24.2 kB] Get:35 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-coroutine-dev amd64 1.65.1.0ubuntu1 [3,196 B] Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-date-time1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [20.5 kB] Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-serialization1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [99.3 kB] Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-serialization1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [137 kB] Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-date-time1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [26.7 kB] Get:40 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-date-time-dev amd64 1.65.1.0ubuntu1 [2,924 B] Get:41 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-exception1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [4,580 B] Get:42 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-exception-dev amd64 1.65.1.0ubuntu1 [2,916 B] Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-filesystem1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [40.3 kB] Get:44 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-fiber1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [108 kB] Get:45 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-fiber1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [121 kB] Get:46 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-fiber-dev amd64 1.65.1.0ubuntu1 [3,348 B] Get:47 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-system1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [11.8 kB] Get:48 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-genmsg amd64 0.5.16-1bionic.20200801.024608 [35.6 kB] Get:49 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-gencpp amd64 0.6.5-1bionic.20200801.032957 [15.3 kB] Get:50 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-filesystem1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [52.1 kB] Get:51 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-filesystem-dev amd64 1.65.1.0ubuntu1 [2,960 B] Get:52 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-regex1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [259 kB] Get:53 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [93.4 kB] Get:54 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-test1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [240 kB] Get:55 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-test1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [289 kB] Get:56 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [102 kB] Get:57 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph-dev amd64 1.65.1.0ubuntu1 [3,024 B] Get:58 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpsm-infinipath1 amd64 3.3+20.604758e7-5 [174 kB] Get:59 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 librdmacm1 amd64 17.1-1ubuntu0.2 [56.1 kB] Get:60 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libfabric1 amd64 1.5.3-1 [302 kB] Get:61 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libhwloc5 amd64 1.11.9-1 [105 kB] Get:62 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpciaccess0 amd64 0.14-1 [17.9 kB] Get:63 http://archive.ubuntu.com/ubuntu bionic/main amd64 ocl-icd-libopencl1 amd64 2.2.11-1ubuntu1 [30.3 kB] Get:64 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libhwloc-plugins amd64 1.11.9-1 [12.5 kB] Get:65 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libopenmpi2 amd64 2.1.1-8 [2,056 kB] Get:66 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-genpy amd64 0.6.14-1bionic.20200812.160538 [51.7 kB] Get:67 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [47.0 kB] Get:68 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph-parallel1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [62.3 kB] Get:69 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph-parallel1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [64.5 kB] Get:70 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-graph-parallel-dev amd64 1.65.1.0ubuntu1 [3,056 B] Get:71 http://archive.ubuntu.com/ubuntu bionic/main amd64 libicu-le-hb0 amd64 1.0.3+git161113-4 [14.3 kB] Get:72 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libiculx60 amd64 60.2-3ubuntu3.1 [19.0 kB] Get:73 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz-icu0 amd64 1.7.2-1ubuntu1 [5,604 B] Get:74 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz-gobject0 amd64 1.7.2-1ubuntu1 [13.4 kB] Get:75 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-bin amd64 2.56.4-0ubuntu0.18.04.6 [68.8 kB] Get:76 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-dev-bin amd64 2.56.4-0ubuntu0.18.04.6 [102 kB] Get:77 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcre16-3 amd64 2:8.39-9 [147 kB] Get:78 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcre32-3 amd64 2:8.39-9 [138 kB] Get:79 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcrecpp0v5 amd64 2:8.39-9 [15.3 kB] Get:80 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcre3-dev amd64 2:8.39-9 [537 kB] Get:81 http://archive.ubuntu.com/ubuntu bionic/main amd64 pkg-config amd64 0.29.1-0ubuntu2 [45.0 kB] Get:82 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-geneus amd64 2.2.6-0bionic.20200801.045720 [25.1 kB] Get:83 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-genlisp amd64 0.4.16-0bionic.20200801.045634 [21.8 kB] Get:84 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-gennodejs amd64 2.0.1-0bionic.20200801.033035 [21.8 kB] Get:85 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-message-generation amd64 0.4.1-1bionic.20200812.162033 [4,768 B] Get:86 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rostime amd64 0.6.14-1bionic.20200801.051100 [38.9 kB] Get:87 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-roscpp-traits amd64 0.6.14-1bionic.20200801.063118 [10.3 kB] Get:88 http://archive.ubuntu.com/ubuntu bionic/main amd64 zlib1g-dev amd64 1:1.2.11.dfsg-0ubuntu2 [176 kB] Get:89 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-roscpp-serialization amd64 0.6.14-1bionic.20200801.063506 [13.1 kB] Get:90 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-message-runtime amd64 0.4.12-0bionic.20200812.162010 [4,792 B] Get:91 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-std-msgs amd64 0.5.12-0bionic.20200812.163541 [56.4 kB] Get:92 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-dev amd64 2.56.4-0ubuntu0.18.04.6 [1,385 kB] Get:93 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgraphite2-dev amd64 1.3.11-2 [14.5 kB] Get:94 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz-dev amd64 1.7.2-1ubuntu1 [302 kB] Get:95 http://archive.ubuntu.com/ubuntu bionic/main amd64 libicu-le-hb-dev amd64 1.0.3+git161113-4 [29.5 kB] Get:96 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libicu-dev amd64 60.2-3ubuntu3.1 [8,889 kB] Get:97 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-geometry-msgs amd64 1.12.7-0bionic.20200812.174659 [66.7 kB] Get:98 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-regex1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [312 kB] Get:99 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-iostreams1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [29.2 kB] Get:100 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-iostreams1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [37.0 kB] Get:101 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-iostreams-dev amd64 1.65.1.0ubuntu1 [2,916 B] Get:102 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-locale1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [241 kB] Get:103 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-locale1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [329 kB] Get:104 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-locale-dev amd64 1.65.1.0ubuntu1 [3,248 B] Get:105 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-log1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [384 kB] Get:106 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-thread1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [49.0 kB] Get:107 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-log1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [553 kB] Get:108 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-log-dev amd64 1.65.1.0ubuntu1 [3,124 B] Get:109 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-math1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [311 kB] Get:110 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-math1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [560 kB] Get:111 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-math-dev amd64 1.65.1.0ubuntu1 [3,112 B] Get:112 http://archive.ubuntu.com/ubuntu bionic/universe amd64 openmpi-common all 2.1.1-8 [140 kB] Get:113 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libibverbs-dev amd64 17.1-1ubuntu0.2 [103 kB] Get:114 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libnuma-dev amd64 2.0.11-2.1ubuntu0.1 [32.3 kB] Get:115 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libhwloc-dev amd64 1.11.9-1 [167 kB] Get:116 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libopenmpi-dev amd64 2.1.1-8 [925 kB] Get:117 http://archive.ubuntu.com/ubuntu bionic/universe amd64 mpi-default-dev amd64 1.10 [3,888 B] Get:118 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [137 kB] Get:119 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi-dev amd64 1.65.1.0ubuntu1 [3,004 B] Get:120 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-python1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [101 kB] Get:121 http://archive.ubuntu.com/ubuntu bionic/universe amd64 openmpi-bin amd64 2.1.1-8 [88.2 kB] Get:122 http://archive.ubuntu.com/ubuntu bionic/universe amd64 mpi-default-bin amd64 1.10 [3,108 B] Get:123 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi-python1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [214 kB] Get:124 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi-python1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [24.7 kB] Get:125 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-mpi-python-dev amd64 1.65.1.0ubuntu1 [3,040 B] Get:126 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-numpy1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [17.4 kB] Get:127 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-numpy1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [17.4 kB] Get:128 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-numpy-dev amd64 1.65.1.0ubuntu1 [2,960 B] Get:129 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-program-options1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [137 kB] Get:130 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-program-options1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [163 kB] Get:131 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-program-options-dev amd64 1.65.1.0ubuntu1 [2,940 B] Get:132 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7 amd64 2.7.17-1~18.04ubuntu1.1 [1,053 kB] Get:133 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libexpat1-dev amd64 2.2.5-3ubuntu0.2 [122 kB] Get:134 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-dev amd64 2.7.17-1~18.04ubuntu1.1 [28.3 MB] Get:135 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpython-dev amd64 2.7.15~rc1-1 [7,684 B] Get:136 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7-dev amd64 2.7.17-1~18.04ubuntu1.1 [279 kB] Get:137 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-dev amd64 2.7.15~rc1-1 [1,256 B] Get:138 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6 amd64 3.6.9-1~18.04ubuntu1.1 [1,414 kB] Get:139 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-dev amd64 3.6.9-1~18.04ubuntu1.1 [44.9 MB] Get:140 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3-dev amd64 3.6.7-1~18.04 [7,328 B] Get:141 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6-dev amd64 3.6.9-1~18.04ubuntu1.1 [508 kB] Get:142 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-dev amd64 3.6.7-1~18.04 [1,288 B] Get:143 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-python1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [103 kB] Get:144 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-python-dev amd64 1.65.1.0ubuntu1 [3,216 B] Get:145 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-random1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [12.8 kB] Get:146 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-random1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [12.4 kB] Get:147 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-random-dev amd64 1.65.1.0ubuntu1 [2,924 B] Get:148 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-regex-dev amd64 1.65.1.0ubuntu1 [3,184 B] Get:149 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-serialization-dev amd64 1.65.1.0ubuntu1 [3,144 B] Get:150 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-signals1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [30.6 kB] Get:151 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-signals1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [33.1 kB] Get:152 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-signals-dev amd64 1.65.1.0ubuntu1 [2,996 B] Get:153 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-stacktrace1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [49.1 kB] Get:154 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-stacktrace1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [25.9 kB] Get:155 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-stacktrace-dev amd64 1.65.1.0ubuntu1 [2,924 B] Get:156 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-system-dev amd64 1.65.1.0ubuntu1 [3,060 B] Get:157 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-test-dev amd64 1.65.1.0ubuntu1 [2,960 B] Get:158 http://archive.ubuntu.com/ubuntu bionic/main amd64 libboost-thread-dev amd64 1.65.1.0ubuntu1 [2,948 B] Get:159 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-timer1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [11.9 kB] Get:160 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-timer1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [11.8 kB] Get:161 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-timer-dev amd64 1.65.1.0ubuntu1 [3,044 B] Get:162 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-type-erasure1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [20.7 kB] Get:163 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-type-erasure1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [20.1 kB] Get:164 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-type-erasure-dev amd64 1.65.1.0ubuntu1 [3,024 B] Get:165 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-wave1.65.1 amd64 1.65.1+dfsg-0ubuntu5 [178 kB] Get:166 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-wave1.65-dev amd64 1.65.1+dfsg-0ubuntu5 [234 kB] Get:167 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-wave-dev amd64 1.65.1.0ubuntu1 [2,952 B] Get:168 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libboost-all-dev amd64 1.65.1.0ubuntu1 [2,340 B] Get:169 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libconsole-bridge0.4 amd64 0.4.0+dfsg-2 [8,168 B] Get:170 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-yaml amd64 3.12-1build2 [115 kB] Get:171 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libconsole-bridge-dev amd64 0.4.0+dfsg-2 [6,596 B] debconf: delaying package configuration, since apt-utils is not installed Fetched 109 MB in 5s (20.2 MB/s) Selecting previously unselected package libgirepository-1.0-1: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 ... 23654 files and directories currently installed.) Preparing to unpack .../000-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 .../001-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 .../002-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 .../003-libyaml-0-2_0.1.7-2ubuntu3_amd64.deb ... Unpacking libyaml-0-2:amd64 (0.1.7-2ubuntu3) ... Selecting previously unselected package libnuma1:amd64. Preparing to unpack .../004-libnuma1_2.0.11-2.1ubuntu0.1_amd64.deb ... Unpacking libnuma1:amd64 (2.0.11-2.1ubuntu0.1) ... Selecting previously unselected package libgraphite2-3:amd64. Preparing to unpack .../005-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 .../006-libharfbuzz0b_1.7.2-1ubuntu1_amd64.deb ... Unpacking libharfbuzz0b:amd64 (1.7.2-1ubuntu1) ... Selecting previously unselected package gir1.2-harfbuzz-0.0:amd64. Preparing to unpack .../007-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 libnl-3-200:amd64. Preparing to unpack .../008-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 .../009-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 .../010-libibverbs1_17.1-1ubuntu0.2_amd64.deb ... Unpacking libibverbs1:amd64 (17.1-1ubuntu0.2) ... Selecting previously unselected package ibverbs-providers:amd64. Preparing to unpack .../011-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 .../012-icu-devtools_60.2-3ubuntu3.1_amd64.deb ... Unpacking icu-devtools (60.2-3ubuntu3.1) ... Selecting previously unselected package libboost1.65-dev:amd64. Preparing to unpack .../013-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 .../014-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 .../015-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 .../016-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 .../017-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 .../018-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 .../019-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 .../020-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 .../021-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 .../022-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 .../023-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 .../024-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 .../025-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 .../026-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 .../027-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 .../028-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 .../029-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 .../030-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 .../031-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 .../032-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 .../033-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 .../034-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 .../035-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 .../036-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 .../037-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 .../038-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 .../039-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 .../040-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 .../041-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 .../042-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 .../043-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 .../044-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 .../045-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 .../046-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 .../047-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 .../048-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 .../049-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 .../050-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 .../051-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 .../052-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 .../053-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 .../054-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 .../055-librdmacm1_17.1-1ubuntu0.2_amd64.deb ... Unpacking librdmacm1:amd64 (17.1-1ubuntu0.2) ... Selecting previously unselected package libfabric1. Preparing to unpack .../056-libfabric1_1.5.3-1_amd64.deb ... Unpacking libfabric1 (1.5.3-1) ... Selecting previously unselected package libhwloc5:amd64. Preparing to unpack .../057-libhwloc5_1.11.9-1_amd64.deb ... Unpacking libhwloc5:amd64 (1.11.9-1) ... Selecting previously unselected package libpciaccess0:amd64. Preparing to unpack .../058-libpciaccess0_0.14-1_amd64.deb ... Unpacking libpciaccess0:amd64 (0.14-1) ... Selecting previously unselected package ocl-icd-libopencl1:amd64. Preparing to unpack .../059-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 .../060-libhwloc-plugins_1.11.9-1_amd64.deb ... Unpacking libhwloc-plugins (1.11.9-1) ... Selecting previously unselected package libopenmpi2:amd64. Preparing to unpack .../061-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 .../062-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 .../063-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 .../064-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 .../065-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 .../066-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 .../067-libiculx60_60.2-3ubuntu3.1_amd64.deb ... Unpacking libiculx60:amd64 (60.2-3ubuntu3.1) ... Selecting previously unselected package libharfbuzz-icu0:amd64. Preparing to unpack .../068-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 .../069-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 .../070-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 .../071-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 .../072-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 .../073-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 .../074-libpcrecpp0v5_2%3a8.39-9_amd64.deb ... Unpacking libpcrecpp0v5:amd64 (2:8.39-9) ... Selecting previously unselected package libpcre3-dev:amd64. Preparing to unpack .../075-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 .../076-pkg-config_0.29.1-0ubuntu2_amd64.deb ... Unpacking pkg-config (0.29.1-0ubuntu2) ... Selecting previously unselected package zlib1g-dev:amd64. Preparing to unpack .../077-zlib1g-dev_1%3a1.2.11.dfsg-0ubuntu2_amd64.deb ... Unpacking zlib1g-dev:amd64 (1:1.2.11.dfsg-0ubuntu2) ... Selecting previously unselected package libglib2.0-dev:amd64. Preparing to unpack .../078-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 .../079-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 .../080-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 .../081-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 .../082-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 .../083-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 .../084-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 .../085-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 .../086-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 .../087-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 .../088-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 .../089-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 .../090-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 .../091-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 .../092-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 .../093-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 .../094-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 .../095-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 .../096-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 .../097-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 .../098-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 .../099-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 .../100-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 .../101-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 .../102-mpi-default-dev_1.10_amd64.deb ... Unpacking mpi-default-dev (1.10) ... Selecting previously unselected package libboost-mpi1.65-dev. Preparing to unpack .../103-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 .../104-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 .../105-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 .../106-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 .../107-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 .../108-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 .../109-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 .../110-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 .../111-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 .../112-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 .../113-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 .../114-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 .../115-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 .../116-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 .../117-libpython2.7_2.7.17-1~18.04ubuntu1.1_amd64.deb ... Unpacking libpython2.7:amd64 (2.7.17-1~18.04ubuntu1.1) ... Selecting previously unselected package libexpat1-dev:amd64. Preparing to unpack .../118-libexpat1-dev_2.2.5-3ubuntu0.2_amd64.deb ... Unpacking libexpat1-dev:amd64 (2.2.5-3ubuntu0.2) ... Selecting previously unselected package libpython2.7-dev:amd64. Preparing to unpack .../119-libpython2.7-dev_2.7.17-1~18.04ubuntu1.1_amd64.deb ... Unpacking libpython2.7-dev:amd64 (2.7.17-1~18.04ubuntu1.1) ... Selecting previously unselected package libpython-dev:amd64. Preparing to unpack .../120-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 .../121-python2.7-dev_2.7.17-1~18.04ubuntu1.1_amd64.deb ... Unpacking python2.7-dev (2.7.17-1~18.04ubuntu1.1) ... Selecting previously unselected package python-dev. Preparing to unpack .../122-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 .../123-libpython3.6_3.6.9-1~18.04ubuntu1.1_amd64.deb ... Unpacking libpython3.6:amd64 (3.6.9-1~18.04ubuntu1.1) ... Selecting previously unselected package libpython3.6-dev:amd64. Preparing to unpack .../124-libpython3.6-dev_3.6.9-1~18.04ubuntu1.1_amd64.deb ... Unpacking libpython3.6-dev:amd64 (3.6.9-1~18.04ubuntu1.1) ... Selecting previously unselected package libpython3-dev:amd64. Preparing to unpack .../125-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 .../126-python3.6-dev_3.6.9-1~18.04ubuntu1.1_amd64.deb ... Unpacking python3.6-dev (3.6.9-1~18.04ubuntu1.1) ... Selecting previously unselected package python3-dev. Preparing to unpack .../127-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 .../128-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 .../129-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 .../130-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 .../131-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 .../132-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 .../133-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 .../134-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 .../135-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 .../136-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 .../137-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 .../138-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 .../139-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 .../140-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 .../141-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 .../142-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 .../143-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 .../144-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 .../145-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 .../146-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 .../147-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 .../148-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 .../149-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 .../150-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 .../151-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 .../152-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 .../153-libboost-all-dev_1.65.1.0ubuntu1_amd64.deb ... Unpacking libboost-all-dev (1.65.1.0ubuntu1) ... Selecting previously unselected package libconsole-bridge0.4:amd64. Preparing to unpack .../154-libconsole-bridge0.4_0.4.0+dfsg-2_amd64.deb ... Unpacking libconsole-bridge0.4:amd64 (0.4.0+dfsg-2) ... Selecting previously unselected package python-yaml. Preparing to unpack .../155-python-yaml_3.12-1build2_amd64.deb ... Unpacking python-yaml (3.12-1build2) ... Selecting previously unselected package libconsole-bridge-dev:amd64. Preparing to unpack .../156-libconsole-bridge-dev_0.4.0+dfsg-2_amd64.deb ... Unpacking libconsole-bridge-dev:amd64 (0.4.0+dfsg-2) ... Selecting previously unselected package ros-melodic-cpp-common. Preparing to unpack .../157-ros-melodic-cpp-common_0.6.14-1bionic.20200801.035855_amd64.deb ... Unpacking ros-melodic-cpp-common (0.6.14-1bionic.20200801.035855) ... Selecting previously unselected package ros-melodic-genmsg. Preparing to unpack .../158-ros-melodic-genmsg_0.5.16-1bionic.20200801.024608_amd64.deb ... Unpacking ros-melodic-genmsg (0.5.16-1bionic.20200801.024608) ... Selecting previously unselected package ros-melodic-gencpp. Preparing to unpack .../159-ros-melodic-gencpp_0.6.5-1bionic.20200801.032957_amd64.deb ... Unpacking ros-melodic-gencpp (0.6.5-1bionic.20200801.032957) ... Selecting previously unselected package ros-melodic-genpy. Preparing to unpack .../160-ros-melodic-genpy_0.6.14-1bionic.20200812.160538_amd64.deb ... Unpacking ros-melodic-genpy (0.6.14-1bionic.20200812.160538) ... Selecting previously unselected package ros-melodic-geneus. Preparing to unpack .../161-ros-melodic-geneus_2.2.6-0bionic.20200801.045720_amd64.deb ... Unpacking ros-melodic-geneus (2.2.6-0bionic.20200801.045720) ... Selecting previously unselected package ros-melodic-genlisp. Preparing to unpack .../162-ros-melodic-genlisp_0.4.16-0bionic.20200801.045634_amd64.deb ... Unpacking ros-melodic-genlisp (0.4.16-0bionic.20200801.045634) ... Selecting previously unselected package ros-melodic-gennodejs. Preparing to unpack .../163-ros-melodic-gennodejs_2.0.1-0bionic.20200801.033035_amd64.deb ... Unpacking ros-melodic-gennodejs (2.0.1-0bionic.20200801.033035) ... Selecting previously unselected package ros-melodic-message-generation. Preparing to unpack .../164-ros-melodic-message-generation_0.4.1-1bionic.20200812.162033_amd64.deb ... Unpacking ros-melodic-message-generation (0.4.1-1bionic.20200812.162033) ... Selecting previously unselected package ros-melodic-rostime. Preparing to unpack .../165-ros-melodic-rostime_0.6.14-1bionic.20200801.051100_amd64.deb ... Unpacking ros-melodic-rostime (0.6.14-1bionic.20200801.051100) ... Selecting previously unselected package ros-melodic-roscpp-traits. Preparing to unpack .../166-ros-melodic-roscpp-traits_0.6.14-1bionic.20200801.063118_amd64.deb ... Unpacking ros-melodic-roscpp-traits (0.6.14-1bionic.20200801.063118) ... Selecting previously unselected package ros-melodic-roscpp-serialization. Preparing to unpack .../167-ros-melodic-roscpp-serialization_0.6.14-1bionic.20200801.063506_amd64.deb ... Unpacking ros-melodic-roscpp-serialization (0.6.14-1bionic.20200801.063506) ... Selecting previously unselected package ros-melodic-message-runtime. Preparing to unpack .../168-ros-melodic-message-runtime_0.4.12-0bionic.20200812.162010_amd64.deb ... Unpacking ros-melodic-message-runtime (0.4.12-0bionic.20200812.162010) ... Selecting previously unselected package ros-melodic-std-msgs. Preparing to unpack .../169-ros-melodic-std-msgs_0.5.12-0bionic.20200812.163541_amd64.deb ... Unpacking ros-melodic-std-msgs (0.5.12-0bionic.20200812.163541) ... Selecting previously unselected package ros-melodic-geometry-msgs. Preparing to unpack .../170-ros-melodic-geometry-msgs_1.12.7-0bionic.20200812.174659_amd64.deb ... Unpacking ros-melodic-geometry-msgs (1.12.7-0bionic.20200812.174659) ... 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 libboost-iostreams1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-stacktrace1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-python1.65.1 (1.65.1+dfsg-0ubuntu5) ... Setting up libglib2.0-dev-bin (2.56.4-0ubuntu0.18.04.6) ... Setting up libconsole-bridge0.4:amd64 (0.4.0+dfsg-2) ... Setting up libnuma1:amd64 (2.0.11-2.1ubuntu0.1) ... Setting up libelf1:amd64 (0.170-0.4ubuntu0.1) ... Setting up libboost-atomic1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-signals1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libhwloc5:amd64 (1.11.9-1) ... 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 libgraphite2-3:amd64 (1.3.11-2) ... 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 pkg-config (0.29.1-0ubuntu2) ... Setting up libyaml-0-2:amd64 (0.1.7-2ubuntu3) ... Setting up gir1.2-glib-2.0:amd64 (1.56.1-1) ... Setting up openmpi-common (2.1.1-8) ... Setting up libboost-thread1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libconsole-bridge-dev:amd64 (0.4.0+dfsg-2) ... Setting up libpython2.7:amd64 (2.7.17-1~18.04ubuntu1.1) ... Setting up libexpat1-dev:amd64 (2.2.5-3ubuntu0.2) ... Setting up libpciaccess0:amd64 (0.14-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 libpython2.7-dev:amd64 (2.7.17-1~18.04ubuntu1.1) ... Setting up icu-devtools (60.2-3ubuntu3.1) ... Setting up libpcre16-3:amd64 (2:8.39-9) ... Setting up libnuma-dev:amd64 (2.0.11-2.1ubuntu0.1) ... Setting up ocl-icd-libopencl1:amd64 (2.2.11-1ubuntu1) ... 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 ros-melodic-genmsg (0.5.16-1bionic.20200801.024608) ... Setting up libboost-test1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... 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 python2.7-dev (2.7.17-1~18.04ubuntu1.1) ... Setting up libgraphite2-dev:amd64 (1.3.11-2) ... 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 libboost1.65-tools-dev (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-signals1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-math1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libpython3.6:amd64 (3.6.9-1~18.04ubuntu1.1) ... Setting up libboost-regex1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-signals-dev:amd64 (1.65.1.0ubuntu1) ... 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 libboost-locale-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libpython-dev:amd64 (2.7.15~rc1-1) ... Setting up libboost-tools-dev (1.65.1.0ubuntu1) ... Setting up libboost-program-options1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up python-yaml (3.12-1build2) ... 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 ros-melodic-gencpp (0.6.5-1bionic.20200801.032957) ... 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 ros-melodic-genpy (0.6.14-1bionic.20200812.160538) ... Setting up libboost-numpy1.65-dev (1.65.1+dfsg-0ubuntu5) ... Setting up python-dev (2.7.15~rc1-1) ... Setting up libboost-filesystem1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-stacktrace-dev:amd64 (1.65.1.0ubuntu1) ... Setting up ros-melodic-gennodejs (2.0.1-0bionic.20200801.033035) ... Setting up libharfbuzz0b:amd64 (1.7.2-1ubuntu1) ... 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 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 libpython3.6-dev:amd64 (3.6.9-1~18.04ubuntu1.1) ... 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 ros-melodic-geneus (2.2.6-0bionic.20200801.045720) ... Setting up libboost-coroutine1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libhwloc-plugins (1.11.9-1) ... 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 libboost-wave1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-context1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-timer1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-context-dev:amd64 (1.65.1.0ubuntu1) ... Setting up ros-melodic-genlisp (0.4.16-0bionic.20200801.045634) ... Setting up libboost-test-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-system1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-container1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up python3.6-dev (3.6.9-1~18.04ubuntu1.1) ... Setting up libboost-math1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-math-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-numpy-dev (1.65.1.0ubuntu1) ... Setting up libharfbuzz-gobject0:amd64 (1.7.2-1ubuntu1) ... 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 libpython3-dev:amd64 (3.6.7-1~18.04) ... Setting up libibverbs1:amd64 (17.1-1ubuntu0.2) ... Setting up libboost-fiber1.65.1:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-serialization-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-fiber1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... 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 libboost-date-time1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-chrono-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-system-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-graph-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libicu-le-hb0:amd64 (1.0.3+git161113-4) ... 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 libboost-date-time-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-filesystem1.65-dev:amd64 (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-container-dev:amd64 (1.65.1.0ubuntu1) ... Setting up ros-melodic-message-generation (0.4.1-1bionic.20200812.162033) ... Setting up libboost-random-dev:amd64 (1.65.1.0ubuntu1) ... 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 ibverbs-providers:amd64 (17.1-1ubuntu0.2) ... Setting up libiculx60:amd64 (60.2-3ubuntu3.1) ... Setting up libboost-coroutine-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libibverbs-dev:amd64 (17.1-1ubuntu0.2) ... Setting up libboost-python-dev (1.65.1.0ubuntu1) ... Setting up libboost-thread-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libfabric1 (1.5.3-1) ... 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 libboost-log1.65-dev (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-wave-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libopenmpi2:amd64 (2.1.1-8) ... Setting up libboost-mpi1.65.1 (1.65.1+dfsg-0ubuntu5) ... 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 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 libboost-log-dev (1.65.1.0ubuntu1) ... 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 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 libboost-mpi-python1.65-dev (1.65.1+dfsg-0ubuntu5) ... Setting up libboost-mpi-python-dev (1.65.1.0ubuntu1) ... Processing triggers for man-db (2.8.3-2ubuntu0.1) ... Processing triggers for libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.6) ... No schema files found: doing nothing. Processing triggers for libc-bin (2.27-3ubuntu1.2) ... Setting up libharfbuzz-dev:amd64 (1.7.2-1ubuntu1) ... Setting up libicu-le-hb-dev:amd64 (1.0.3+git161113-4) ... Setting up libicu-dev (60.2-3ubuntu3.1) ... 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 libboost-iostreams-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-regex-dev:amd64 (1.65.1.0ubuntu1) ... Setting up libboost-all-dev (1.65.1.0ubuntu1) ... Setting up ros-melodic-cpp-common (0.6.14-1bionic.20200801.035855) ... Setting up ros-melodic-rostime (0.6.14-1bionic.20200801.051100) ... Setting up ros-melodic-roscpp-traits (0.6.14-1bionic.20200801.063118) ... Setting up ros-melodic-roscpp-serialization (0.6.14-1bionic.20200801.063506) ... Setting up ros-melodic-message-runtime (0.4.12-0bionic.20200812.162010) ... Setting up ros-melodic-std-msgs (0.5.12-0bionic.20200812.163541) ... Setting up ros-melodic-geometry-msgs (1.12.7-0bionic.20200812.174659) ... Invoking 'apt-get clean' ---> bfe5a1572d92 Removing intermediate container b683e0289874 Step 28 : RUN echo "ros-melodic-roslib: 1.14.9-1bionic.20200801.032024" && echo "ros-melodic-std-msgs: 0.5.12-0bionic.20200812.163541" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-roslib ros-melodic-std-msgs ---> Running in 83b7b615d6f3 ros-melodic-roslib: 1.14.9-1bionic.20200801.032024 ros-melodic-std-msgs: 0.5.12-0bionic.20200812.163541 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 Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-melodic-roslib ros-melodic-std-msgs' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done ros-melodic-std-msgs is already the newest version (0.5.12-0bionic.20200812.163541). ros-melodic-std-msgs set to manually installed. The following additional packages will be installed: distro-info-data libtinyxml2-6 libtinyxml2-dev lsb-release python-rosdep-modules python-rosdistro python-rosdistro-modules python-rospkg python-rospkg-modules python-setuptools ros-melodic-ros-environment ros-melodic-rospack Suggested packages: lsb python-setuptools-doc The following NEW packages will be installed: distro-info-data libtinyxml2-6 libtinyxml2-dev lsb-release python-rosdep-modules python-rosdistro python-rosdistro-modules python-rospkg python-rospkg-modules python-setuptools ros-melodic-ros-environment ros-melodic-roslib ros-melodic-rospack 0 upgraded, 13 newly installed, 0 to remove and 4 not upgraded. Need to get 701 kB of archives. After this operation, 3,354 kB of additional disk space will be used. Get:1 http://10.210.9.154/ubuntu/building bionic/main amd64 python-rospkg-modules all 1.2.8-1 [23.8 kB] Get:2 http://10.210.9.154/ubuntu/building bionic/main amd64 python-rosdistro-modules all 0.8.2-1 [31.5 kB] Get:3 http://10.210.9.154/ubuntu/building bionic/main amd64 python-rosdistro all 0.8.2-100 [6,244 B] Get:4 http://10.210.9.154/ubuntu/building bionic/main amd64 python-rospkg all 1.2.8-100 [2,066 B] Get:5 http://10.210.9.154/ubuntu/building bionic/main amd64 python-rosdep-modules all 0.19.0-1 [50.5 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 distro-info-data all 0.37ubuntu0.7 [4,676 B] Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 lsb-release all 9.20170808ubuntu1 [11.0 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libtinyxml2-6 amd64 6.0.0+dfsg-1 [27.9 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-setuptools all 39.0.1-2 [329 kB] Get:10 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libtinyxml2-dev amd64 6.0.0+dfsg-1 [17.6 kB] Get:11 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-ros-environment amd64 1.2.2-1bionic.20200801.022105 [5,664 B] Get:12 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-rospack amd64 2.5.6-1bionic.20200801.023428 [98.8 kB] Get:13 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-roslib amd64 1.14.9-1bionic.20200801.032024 [92.3 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 701 kB in 1s (1,326 kB/s) Selecting previously unselected package distro-info-data. (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 ... 41607 files and directories currently installed.) Preparing to unpack .../00-distro-info-data_0.37ubuntu0.7_all.deb ... Unpacking distro-info-data (0.37ubuntu0.7) ... Selecting previously unselected package lsb-release. Preparing to unpack .../01-lsb-release_9.20170808ubuntu1_all.deb ... Unpacking lsb-release (9.20170808ubuntu1) ... Selecting previously unselected package libtinyxml2-6:amd64. Preparing to unpack .../02-libtinyxml2-6_6.0.0+dfsg-1_amd64.deb ... Unpacking libtinyxml2-6:amd64 (6.0.0+dfsg-1) ... Selecting previously unselected package python-rospkg-modules. Preparing to unpack .../03-python-rospkg-modules_1.2.8-1_all.deb ... Unpacking python-rospkg-modules (1.2.8-1) ... Selecting previously unselected package python-setuptools. Preparing to unpack .../04-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 .../05-python-rosdistro-modules_0.8.2-1_all.deb ... Unpacking python-rosdistro-modules (0.8.2-1) ... Selecting previously unselected package python-rosdistro. Preparing to unpack .../06-python-rosdistro_0.8.2-100_all.deb ... Unpacking python-rosdistro (0.8.2-100) ... Selecting previously unselected package python-rospkg. Preparing to unpack .../07-python-rospkg_1.2.8-100_all.deb ... Unpacking python-rospkg (1.2.8-100) ... Selecting previously unselected package python-rosdep-modules. Preparing to unpack .../08-python-rosdep-modules_0.19.0-1_all.deb ... Unpacking python-rosdep-modules (0.19.0-1) ... Selecting previously unselected package ros-melodic-ros-environment. Preparing to unpack .../09-ros-melodic-ros-environment_1.2.2-1bionic.20200801.022105_amd64.deb ... Unpacking ros-melodic-ros-environment (1.2.2-1bionic.20200801.022105) ... Selecting previously unselected package libtinyxml2-dev:amd64. Preparing to unpack .../10-libtinyxml2-dev_6.0.0+dfsg-1_amd64.deb ... Unpacking libtinyxml2-dev:amd64 (6.0.0+dfsg-1) ... Selecting previously unselected package ros-melodic-rospack. Preparing to unpack .../11-ros-melodic-rospack_2.5.6-1bionic.20200801.023428_amd64.deb ... Unpacking ros-melodic-rospack (2.5.6-1bionic.20200801.023428) ... Selecting previously unselected package ros-melodic-roslib. Preparing to unpack .../12-ros-melodic-roslib_1.14.9-1bionic.20200801.032024_amd64.deb ... Unpacking ros-melodic-roslib (1.14.9-1bionic.20200801.032024) ... Setting up libtinyxml2-6:amd64 (6.0.0+dfsg-1) ... Setting up python-setuptools (39.0.1-2) ... Setting up ros-melodic-ros-environment (1.2.2-1bionic.20200801.022105) ... Setting up libtinyxml2-dev:amd64 (6.0.0+dfsg-1) ... Setting up distro-info-data (0.37ubuntu0.7) ... Setting up lsb-release (9.20170808ubuntu1) ... Setting up python-rospkg-modules (1.2.8-1) ... Setting up python-rosdistro-modules (0.8.2-1) ... Setting up python-rospkg (1.2.8-100) ... Setting up python-rosdistro (0.8.2-100) ... Setting up python-rosdep-modules (0.19.0-1) ... Setting up ros-melodic-rospack (2.5.6-1bionic.20200801.023428) ... Setting up ros-melodic-roslib (1.14.9-1bionic.20200801.032024) ... Processing triggers for libc-bin (2.27-3ubuntu1.2) ... Processing triggers for man-db (2.8.3-2ubuntu0.1) ... Invoking 'apt-get clean' ---> 6811736449ff Removing intermediate container 83b7b615d6f3 Step 29 : USER buildfarm ---> Running in 599a682a44dd ---> 11adf22017d1 Removing intermediate container 599a682a44dd Step 30 : ENTRYPOINT sh -c ---> Running in 4495d242e440 ---> eb392b364ed6 Removing intermediate container 4495d242e440 Step 31 : CMD PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic rwth_perception_people_msgs --sourcedeb-dir /tmp/binarydeb ---> Running in c24cf6baf07d ---> 06a52af1ded9 Removing intermediate container c24cf6baf07d Successfully built 06a52af1ded9 + 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__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid -e=HOME= -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_build.melodic_ubuntu_bionic_amd64_rwth_perception_people_msgs # BEGIN SUBSECTION: build binarydeb Package 'ros-melodic-rwth-perception-people-msgs' version: 1.2.0-1bionic.20200826.152152 Invoking 'apt-src build ros-melodic-rwth-perception-people-msgs' in '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0' I: Building in /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 .. dpkg-buildpackage: info: source package ros-melodic-rwth-perception-people-msgs dpkg-buildpackage: info: source version 1.2.0-1bionic.20200826.152152 dpkg-buildpackage: info: source distribution bionic dpkg-buildpackage: info: source changed by Christian Dondrup dpkg-source --before-build ros-melodic-rwth-perception-people-msgs-1.2.0 dpkg-buildpackage: info: host architecture amd64 dpkg-source: info: using options from ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs.substvars debian/files rm -fr -- debian/ros-melodic-rwth-perception-people-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-rwth-perception-people-msgs-1.2.0' # 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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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.28 -- BUILD_SHARED_LIBS is on -- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy -- rwth_perception_people_msgs: 9 messages, 0 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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0' debian/rules override_dh_auto_build make[1]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0' # 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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 -B/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/progress.marks make -f CMakeFiles/Makefile2 all make[3]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundHOGDetections.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundHOGDetections.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundHOGDetections.dir/DependInfo.cmake --color= Scanning dependencies of target _rwth_perception_people_msgs_generate_messages_check_deps_GroundHOGDetections make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundHOGDetections.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundHOGDetections.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/GroundHOGDetections.msg std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_GroundHOGDetections 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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target std_msgs_generate_messages_nodejs make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianLocations.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianLocations.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianLocations.dir/DependInfo.cmake --color= Scanning dependencies of target _rwth_perception_people_msgs_generate_messages_check_deps_PedestrianLocations make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianLocations.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianLocations.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianLocations.msg geometry_msgs/Pose:geometry_msgs/Point:geometry_msgs/Quaternion:std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_PedestrianLocations make -f CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color= Scanning dependencies of target geometry_msgs_generate_messages_nodejs make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target geometry_msgs_generate_messages_nodejs make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_AnnotatedFrame.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_AnnotatedFrame.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_AnnotatedFrame.dir/DependInfo.cmake --color= Scanning dependencies of target _rwth_perception_people_msgs_generate_messages_check_deps_AnnotatedFrame make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_AnnotatedFrame.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_AnnotatedFrame.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/AnnotatedFrame.msg rwth_perception_people_msgs/Annotation:std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_AnnotatedFrame make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_VisualOdometry.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_VisualOdometry.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_VisualOdometry.dir/DependInfo.cmake --color= Scanning dependencies of target _rwth_perception_people_msgs_generate_messages_check_deps_VisualOdometry make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_VisualOdometry.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_VisualOdometry.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/VisualOdometry.msg std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_VisualOdometry make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTrackingArray.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTrackingArray.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTrackingArray.dir/DependInfo.cmake --color= Scanning dependencies of target _rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTrackingArray make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTrackingArray.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTrackingArray.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianTrackingArray.msg rwth_perception_people_msgs/PedestrianTracking:std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTrackingArray make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_Annotation.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_Annotation.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_Annotation.dir/DependInfo.cmake --color= Scanning dependencies of target _rwth_perception_people_msgs_generate_messages_check_deps_Annotation make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_Annotation.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_Annotation.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/Annotation.msg std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_Annotation make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_UpperBodyDetector.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_UpperBodyDetector.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_UpperBodyDetector.dir/DependInfo.cmake --color= Scanning dependencies of target _rwth_perception_people_msgs_generate_messages_check_deps_UpperBodyDetector make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_UpperBodyDetector.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_UpperBodyDetector.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/UpperBodyDetector.msg std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_UpperBodyDetector make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundPlane.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundPlane.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundPlane.dir/DependInfo.cmake --color= Scanning dependencies of target _rwth_perception_people_msgs_generate_messages_check_deps_GroundPlane make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundPlane.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundPlane.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/GroundPlane.msg std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_GroundPlane make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTracking.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTracking.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTracking.dir/DependInfo.cmake --color= Scanning dependencies of target _rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTracking make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTracking.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTracking.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianTracking.msg std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTracking make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_nodejs.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/rwth_perception_people_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color= Scanning dependencies of target rwth_perception_people_msgs_generate_messages_nodejs make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_nodejs.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 2%] Generating Javascript code from rwth_perception_people_msgs/AnnotatedFrame.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/AnnotatedFrame.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/rwth_perception_people_msgs/msg [ 4%] Generating Javascript code from rwth_perception_people_msgs/VisualOdometry.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/VisualOdometry.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/rwth_perception_people_msgs/msg [ 6%] Generating Javascript code from rwth_perception_people_msgs/PedestrianTrackingArray.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianTrackingArray.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/rwth_perception_people_msgs/msg [ 8%] Generating Javascript code from rwth_perception_people_msgs/PedestrianLocations.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianLocations.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/rwth_perception_people_msgs/msg [ 10%] Generating Javascript code from rwth_perception_people_msgs/Annotation.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/Annotation.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/rwth_perception_people_msgs/msg [ 12%] Generating Javascript code from rwth_perception_people_msgs/UpperBodyDetector.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/UpperBodyDetector.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/rwth_perception_people_msgs/msg [ 14%] Generating Javascript code from rwth_perception_people_msgs/GroundPlane.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/GroundPlane.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/rwth_perception_people_msgs/msg [ 17%] Generating Javascript code from rwth_perception_people_msgs/PedestrianTracking.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianTracking.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/rwth_perception_people_msgs/msg [ 19%] Generating Javascript code from rwth_perception_people_msgs/GroundHOGDetections.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/GroundHOGDetections.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/rwth_perception_people_msgs/msg make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 19%] Built target rwth_perception_people_msgs_generate_messages_nodejs make -f CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make CMakeFiles/geometry_msgs_generate_messages_eus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/geometry_msgs_generate_messages_eus.dir/DependInfo.cmake --color= Scanning dependencies of target geometry_msgs_generate_messages_eus make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make CMakeFiles/geometry_msgs_generate_messages_eus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/geometry_msgs_generate_messages_eus.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 19%] Built target geometry_msgs_generate_messages_eus make -f CMakeFiles/std_msgs_generate_messages_eus.dir/build.make CMakeFiles/std_msgs_generate_messages_eus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 19%] Built target std_msgs_generate_messages_eus make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_eus.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_eus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/rwth_perception_people_msgs_generate_messages_eus.dir/DependInfo.cmake --color= Scanning dependencies of target rwth_perception_people_msgs_generate_messages_eus make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_eus.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_eus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 21%] Generating EusLisp code from rwth_perception_people_msgs/AnnotatedFrame.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/AnnotatedFrame.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/roseus/ros/rwth_perception_people_msgs/msg [ 23%] Generating EusLisp code from rwth_perception_people_msgs/VisualOdometry.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/VisualOdometry.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/roseus/ros/rwth_perception_people_msgs/msg [ 25%] Generating EusLisp code from rwth_perception_people_msgs/PedestrianTrackingArray.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianTrackingArray.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/roseus/ros/rwth_perception_people_msgs/msg [ 27%] Generating EusLisp code from rwth_perception_people_msgs/PedestrianLocations.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianLocations.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/roseus/ros/rwth_perception_people_msgs/msg [ 29%] Generating EusLisp code from rwth_perception_people_msgs/Annotation.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/Annotation.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/roseus/ros/rwth_perception_people_msgs/msg [ 31%] Generating EusLisp code from rwth_perception_people_msgs/UpperBodyDetector.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/UpperBodyDetector.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/roseus/ros/rwth_perception_people_msgs/msg [ 34%] Generating EusLisp code from rwth_perception_people_msgs/GroundPlane.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/GroundPlane.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/roseus/ros/rwth_perception_people_msgs/msg [ 36%] Generating EusLisp code from rwth_perception_people_msgs/PedestrianTracking.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianTracking.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/roseus/ros/rwth_perception_people_msgs/msg [ 38%] Generating EusLisp code from rwth_perception_people_msgs/GroundHOGDetections.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/GroundHOGDetections.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/roseus/ros/rwth_perception_people_msgs/msg [ 40%] Generating EusLisp manifest code for rwth_perception_people_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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/roseus/ros/rwth_perception_people_msgs rwth_perception_people_msgs std_msgs geometry_msgs make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 40%] Built target rwth_perception_people_msgs_generate_messages_eus 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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 40%] Built target std_msgs_generate_messages_cpp make -f CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make CMakeFiles/geometry_msgs_generate_messages_cpp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/DependInfo.cmake --color= Scanning dependencies of target geometry_msgs_generate_messages_cpp make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 40%] Built target geometry_msgs_generate_messages_cpp make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_cpp.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_cpp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/rwth_perception_people_msgs_generate_messages_cpp.dir/DependInfo.cmake --color= Scanning dependencies of target rwth_perception_people_msgs_generate_messages_cpp make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_cpp.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_cpp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 42%] Generating C++ code from rwth_perception_people_msgs/AnnotatedFrame.msg cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 && /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/msg/AnnotatedFrame.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/include/rwth_perception_people_msgs -e /opt/ros/melodic/share/gencpp/cmake/.. [ 44%] Generating C++ code from rwth_perception_people_msgs/VisualOdometry.msg cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 && /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/msg/VisualOdometry.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/include/rwth_perception_people_msgs -e /opt/ros/melodic/share/gencpp/cmake/.. [ 46%] Generating C++ code from rwth_perception_people_msgs/PedestrianTrackingArray.msg cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 && /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/msg/PedestrianTrackingArray.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/include/rwth_perception_people_msgs -e /opt/ros/melodic/share/gencpp/cmake/.. [ 48%] Generating C++ code from rwth_perception_people_msgs/PedestrianLocations.msg cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 && /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/msg/PedestrianLocations.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/include/rwth_perception_people_msgs -e /opt/ros/melodic/share/gencpp/cmake/.. [ 51%] Generating C++ code from rwth_perception_people_msgs/Annotation.msg cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 && /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/msg/Annotation.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/include/rwth_perception_people_msgs -e /opt/ros/melodic/share/gencpp/cmake/.. [ 53%] Generating C++ code from rwth_perception_people_msgs/UpperBodyDetector.msg cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 && /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/msg/UpperBodyDetector.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/include/rwth_perception_people_msgs -e /opt/ros/melodic/share/gencpp/cmake/.. [ 55%] Generating C++ code from rwth_perception_people_msgs/GroundPlane.msg cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 && /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/msg/GroundPlane.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/include/rwth_perception_people_msgs -e /opt/ros/melodic/share/gencpp/cmake/.. [ 57%] Generating C++ code from rwth_perception_people_msgs/PedestrianTracking.msg cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 && /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/msg/PedestrianTracking.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/include/rwth_perception_people_msgs -e /opt/ros/melodic/share/gencpp/cmake/.. [ 59%] Generating C++ code from rwth_perception_people_msgs/GroundHOGDetections.msg cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 && /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/msg/GroundHOGDetections.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/include/rwth_perception_people_msgs -e /opt/ros/melodic/share/gencpp/cmake/.. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 59%] Built target rwth_perception_people_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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 59%] Built target std_msgs_generate_messages_py make -f CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make CMakeFiles/geometry_msgs_generate_messages_py.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/geometry_msgs_generate_messages_py.dir/DependInfo.cmake --color= Scanning dependencies of target geometry_msgs_generate_messages_py make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make CMakeFiles/geometry_msgs_generate_messages_py.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/geometry_msgs_generate_messages_py.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 59%] Built target geometry_msgs_generate_messages_py make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_py.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_py.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/rwth_perception_people_msgs_generate_messages_py.dir/DependInfo.cmake --color= Scanning dependencies of target rwth_perception_people_msgs_generate_messages_py make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_py.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_py.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 61%] Generating Python from MSG rwth_perception_people_msgs/AnnotatedFrame catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/AnnotatedFrame.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg [ 63%] Generating Python from MSG rwth_perception_people_msgs/VisualOdometry catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/VisualOdometry.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg [ 65%] Generating Python from MSG rwth_perception_people_msgs/PedestrianTrackingArray catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianTrackingArray.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg [ 68%] Generating Python from MSG rwth_perception_people_msgs/PedestrianLocations catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianLocations.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg [ 70%] Generating Python from MSG rwth_perception_people_msgs/Annotation catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/Annotation.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg [ 72%] Generating Python from MSG rwth_perception_people_msgs/UpperBodyDetector catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/UpperBodyDetector.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg [ 74%] Generating Python from MSG rwth_perception_people_msgs/GroundPlane catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/GroundPlane.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg [ 76%] Generating Python from MSG rwth_perception_people_msgs/PedestrianTracking catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianTracking.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg [ 78%] Generating Python from MSG rwth_perception_people_msgs/GroundHOGDetections catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/GroundHOGDetections.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg [ 80%] Generating Python msg __init__.py for rwth_perception_people_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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg --initpy make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 80%] Built target rwth_perception_people_msgs_generate_messages_py 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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 80%] Built target std_msgs_generate_messages_lisp make -f CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make CMakeFiles/geometry_msgs_generate_messages_lisp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/DependInfo.cmake --color= Scanning dependencies of target geometry_msgs_generate_messages_lisp make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 80%] Built target geometry_msgs_generate_messages_lisp make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_lisp.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_lisp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/rwth_perception_people_msgs_generate_messages_lisp.dir/DependInfo.cmake --color= Scanning dependencies of target rwth_perception_people_msgs_generate_messages_lisp make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_lisp.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_lisp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 82%] Generating Lisp code from rwth_perception_people_msgs/AnnotatedFrame.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/AnnotatedFrame.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/rwth_perception_people_msgs/msg [ 85%] Generating Lisp code from rwth_perception_people_msgs/VisualOdometry.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/VisualOdometry.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/rwth_perception_people_msgs/msg [ 87%] Generating Lisp code from rwth_perception_people_msgs/PedestrianTrackingArray.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianTrackingArray.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/rwth_perception_people_msgs/msg [ 89%] Generating Lisp code from rwth_perception_people_msgs/PedestrianLocations.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianLocations.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/rwth_perception_people_msgs/msg [ 91%] Generating Lisp code from rwth_perception_people_msgs/Annotation.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/Annotation.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/rwth_perception_people_msgs/msg [ 93%] Generating Lisp code from rwth_perception_people_msgs/UpperBodyDetector.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/UpperBodyDetector.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/rwth_perception_people_msgs/msg [ 95%] Generating Lisp code from rwth_perception_people_msgs/GroundPlane.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/GroundPlane.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/rwth_perception_people_msgs/msg [ 97%] Generating Lisp code from rwth_perception_people_msgs/PedestrianTracking.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianTracking.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/rwth_perception_people_msgs/msg [100%] Generating Lisp code from rwth_perception_people_msgs/GroundHOGDetections.msg catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/GroundHOGDetections.msg -Irwth_perception_people_msgs:/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -Igeometry_msgs:/opt/ros/melodic/share/geometry_msgs/cmake/../msg -p rwth_perception_people_msgs -o /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/rwth_perception_people_msgs/msg make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [100%] Built target rwth_perception_people_msgs_generate_messages_lisp make -f CMakeFiles/rwth_perception_people_msgs_generate_messages.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/rwth_perception_people_msgs_generate_messages.dir/DependInfo.cmake --color= Scanning dependencies of target rwth_perception_people_msgs_generate_messages make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/rwth_perception_people_msgs_generate_messages.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/rwth_perception_people_msgs_generate_messages.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [100%] Built target rwth_perception_people_msgs_generate_messages make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles 0 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0' debian/rules override_dh_auto_test make[1]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0' # 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-rwth-perception-people-msgs-1.2.0' 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-rwth-perception-people-msgs.substvars rm -fr -- debian/.debhelper/generated/ros-melodic-rwth-perception-people-msgs/ debian/ros-melodic-rwth-perception-people-msgs/ debian/tmp/ dh_installdirs -O-v -O--buildsystem=cmake install -d debian/ros-melodic-rwth-perception-people-msgs debian/rules override_dh_auto_install make[1]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0' # 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-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs AM_UPDATE_INFO_DIR=no make[2]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 -B/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/progress.marks make -f CMakeFiles/Makefile2 all make[3]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundHOGDetections.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundHOGDetections.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundHOGDetections.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundHOGDetections.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundHOGDetections.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/GroundHOGDetections.msg std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_GroundHOGDetections 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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target std_msgs_generate_messages_nodejs make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianLocations.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianLocations.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianLocations.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianLocations.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianLocations.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianLocations.msg geometry_msgs/Pose:geometry_msgs/Point:geometry_msgs/Quaternion:std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_PedestrianLocations make -f CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/geometry_msgs_generate_messages_nodejs.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target geometry_msgs_generate_messages_nodejs make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_AnnotatedFrame.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_AnnotatedFrame.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_AnnotatedFrame.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_AnnotatedFrame.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_AnnotatedFrame.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/AnnotatedFrame.msg rwth_perception_people_msgs/Annotation:std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_AnnotatedFrame make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_VisualOdometry.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_VisualOdometry.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_VisualOdometry.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_VisualOdometry.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_VisualOdometry.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/VisualOdometry.msg std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_VisualOdometry make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTrackingArray.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTrackingArray.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTrackingArray.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTrackingArray.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTrackingArray.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianTrackingArray.msg rwth_perception_people_msgs/PedestrianTracking:std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTrackingArray make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_Annotation.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_Annotation.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_Annotation.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_Annotation.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_Annotation.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/Annotation.msg std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_Annotation make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_UpperBodyDetector.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_UpperBodyDetector.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_UpperBodyDetector.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_UpperBodyDetector.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_UpperBodyDetector.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/UpperBodyDetector.msg std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_UpperBodyDetector make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundPlane.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundPlane.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundPlane.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundPlane.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_GroundPlane.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/GroundPlane.msg std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_GroundPlane make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTracking.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTracking.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTracking.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTracking.dir/build.make CMakeFiles/_rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTracking.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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 rwth_perception_people_msgs /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg/PedestrianTracking.msg std_msgs/Header make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 0%] Built target _rwth_perception_people_msgs_generate_messages_check_deps_PedestrianTracking make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_nodejs.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/rwth_perception_people_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_nodejs.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/rwth_perception_people_msgs_generate_messages_nodejs.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 19%] Built target rwth_perception_people_msgs_generate_messages_nodejs make -f CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make CMakeFiles/geometry_msgs_generate_messages_eus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/geometry_msgs_generate_messages_eus.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/geometry_msgs_generate_messages_eus.dir/build.make CMakeFiles/geometry_msgs_generate_messages_eus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/geometry_msgs_generate_messages_eus.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 19%] Built target geometry_msgs_generate_messages_eus make -f CMakeFiles/std_msgs_generate_messages_eus.dir/build.make CMakeFiles/std_msgs_generate_messages_eus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 19%] Built target std_msgs_generate_messages_eus make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_eus.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_eus.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/rwth_perception_people_msgs_generate_messages_eus.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_eus.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_eus.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/rwth_perception_people_msgs_generate_messages_eus.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 40%] Built target rwth_perception_people_msgs_generate_messages_eus 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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 40%] Built target std_msgs_generate_messages_cpp make -f CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make CMakeFiles/geometry_msgs_generate_messages_cpp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/geometry_msgs_generate_messages_cpp.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build.make CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/geometry_msgs_generate_messages_cpp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 40%] Built target geometry_msgs_generate_messages_cpp make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_cpp.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_cpp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/rwth_perception_people_msgs_generate_messages_cpp.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_cpp.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_cpp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/rwth_perception_people_msgs_generate_messages_cpp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 59%] Built target rwth_perception_people_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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 59%] Built target std_msgs_generate_messages_py make -f CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make CMakeFiles/geometry_msgs_generate_messages_py.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/geometry_msgs_generate_messages_py.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/geometry_msgs_generate_messages_py.dir/build.make CMakeFiles/geometry_msgs_generate_messages_py.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/geometry_msgs_generate_messages_py.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 59%] Built target geometry_msgs_generate_messages_py make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_py.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_py.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/rwth_perception_people_msgs_generate_messages_py.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_py.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_py.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/rwth_perception_people_msgs_generate_messages_py.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 80%] Built target rwth_perception_people_msgs_generate_messages_py 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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/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-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 80%] Built target std_msgs_generate_messages_lisp make -f CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make CMakeFiles/geometry_msgs_generate_messages_lisp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/geometry_msgs_generate_messages_lisp.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build.make CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/geometry_msgs_generate_messages_lisp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [ 80%] Built target geometry_msgs_generate_messages_lisp make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_lisp.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_lisp.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/rwth_perception_people_msgs_generate_messages_lisp.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/rwth_perception_people_msgs_generate_messages_lisp.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages_lisp.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/rwth_perception_people_msgs_generate_messages_lisp.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [100%] Built target rwth_perception_people_msgs_generate_messages_lisp make -f CMakeFiles/rwth_perception_people_msgs_generate_messages.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/rwth_perception_people_msgs_generate_messages.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make -f CMakeFiles/rwth_perception_people_msgs_generate_messages.dir/build.make CMakeFiles/rwth_perception_people_msgs_generate_messages.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/rwth_perception_people_msgs_generate_messages.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' [100%] Built target rwth_perception_people_msgs_generate_messages make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/CMakeFiles 0 make -f CMakeFiles/Makefile2 preinstall make[3]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[3]: Nothing to be done for 'preinstall'. make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' Install the project... /usr/bin/cmake -P cmake_install.cmake -- Install configuration: "None" -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/rwth_perception_people_msgs/msg/VisualOdometry.msg -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/rwth_perception_people_msgs/msg/GroundHOGDetections.msg -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/rwth_perception_people_msgs/msg/UpperBodyDetector.msg -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/rwth_perception_people_msgs/msg/GroundPlane.msg -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/rwth_perception_people_msgs/msg/PedestrianTracking.msg -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/rwth_perception_people_msgs/msg/PedestrianTrackingArray.msg -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/rwth_perception_people_msgs/msg/PedestrianLocations.msg -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/rwth_perception_people_msgs/msg/AnnotatedFrame.msg -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/rwth_perception_people_msgs/msg/Annotation.msg -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/rwth_perception_people_msgs/cmake/rwth_perception_people_msgs-msg-paths.cmake -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/include/rwth_perception_people_msgs -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/include/rwth_perception_people_msgs/VisualOdometry.h -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/include/rwth_perception_people_msgs/AnnotatedFrame.h -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/include/rwth_perception_people_msgs/PedestrianLocations.h -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/include/rwth_perception_people_msgs/PedestrianTrackingArray.h -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/include/rwth_perception_people_msgs/UpperBodyDetector.h -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/include/rwth_perception_people_msgs/GroundHOGDetections.h -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/include/rwth_perception_people_msgs/GroundPlane.h -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/include/rwth_perception_people_msgs/PedestrianTracking.h -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/include/rwth_perception_people_msgs/Annotation.h -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/roseus/ros/rwth_perception_people_msgs -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/roseus/ros/rwth_perception_people_msgs/msg -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/roseus/ros/rwth_perception_people_msgs/msg/AnnotatedFrame.l -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/roseus/ros/rwth_perception_people_msgs/msg/GroundPlane.l -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/roseus/ros/rwth_perception_people_msgs/msg/Annotation.l -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/roseus/ros/rwth_perception_people_msgs/msg/GroundHOGDetections.l -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/roseus/ros/rwth_perception_people_msgs/msg/UpperBodyDetector.l -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/roseus/ros/rwth_perception_people_msgs/msg/PedestrianTrackingArray.l -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/roseus/ros/rwth_perception_people_msgs/msg/PedestrianLocations.l -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/roseus/ros/rwth_perception_people_msgs/msg/VisualOdometry.l -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/roseus/ros/rwth_perception_people_msgs/msg/PedestrianTracking.l -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/roseus/ros/rwth_perception_people_msgs/manifest.l -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/_package_VisualOdometry.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/VisualOdometry.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/_package_GroundPlane.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/UpperBodyDetector.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/_package_PedestrianTracking.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/_package_UpperBodyDetector.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/AnnotatedFrame.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/_package.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/GroundHOGDetections.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/rwth_perception_people_msgs-msg.asd -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/_package_GroundHOGDetections.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/PedestrianTracking.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/_package_Annotation.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/_package_PedestrianTrackingArray.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/_package_AnnotatedFrame.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/PedestrianTrackingArray.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/_package_PedestrianLocations.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/GroundPlane.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/PedestrianLocations.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/common-lisp/ros/rwth_perception_people_msgs/msg/Annotation.lisp -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/gennodejs/ros/rwth_perception_people_msgs -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/gennodejs/ros/rwth_perception_people_msgs/msg -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/gennodejs/ros/rwth_perception_people_msgs/msg/VisualOdometry.js -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/gennodejs/ros/rwth_perception_people_msgs/msg/PedestrianTracking.js -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/gennodejs/ros/rwth_perception_people_msgs/msg/Annotation.js -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/gennodejs/ros/rwth_perception_people_msgs/msg/PedestrianTrackingArray.js -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/gennodejs/ros/rwth_perception_people_msgs/msg/GroundHOGDetections.js -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/gennodejs/ros/rwth_perception_people_msgs/msg/GroundPlane.js -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/gennodejs/ros/rwth_perception_people_msgs/msg/AnnotatedFrame.js -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/gennodejs/ros/rwth_perception_people_msgs/msg/UpperBodyDetector.js -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/gennodejs/ros/rwth_perception_people_msgs/msg/PedestrianLocations.js -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/gennodejs/ros/rwth_perception_people_msgs/msg/_index.js -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/gennodejs/ros/rwth_perception_people_msgs/_index.js Listing /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs ... Compiling /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/__init__.py ... Listing /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg ... Compiling /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_AnnotatedFrame.py ... Compiling /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_Annotation.py ... Compiling /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_GroundHOGDetections.py ... Compiling /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_GroundPlane.py ... Compiling /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_PedestrianLocations.py ... Compiling /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_PedestrianTracking.py ... Compiling /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_PedestrianTrackingArray.py ... Compiling /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_UpperBodyDetector.py ... Compiling /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_VisualOdometry.py ... Compiling /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/__init__.py ... -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/__init__.py -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/__init__.pyc -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_PedestrianTrackingArray.py -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_PedestrianLocations.pyc -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_UpperBodyDetector.py -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_PedestrianTrackingArray.pyc -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_VisualOdometry.py -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_VisualOdometry.pyc -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_PedestrianLocations.py -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/__init__.py -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_PedestrianTracking.pyc -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/__init__.pyc -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_Annotation.pyc -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_Annotation.py -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_GroundHOGDetections.py -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_GroundPlane.py -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_PedestrianTracking.py -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_GroundPlane.pyc -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_GroundHOGDetections.pyc -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_AnnotatedFrame.py -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_UpperBodyDetector.pyc -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/python2.7/dist-packages/rwth_perception_people_msgs/msg/_AnnotatedFrame.pyc -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/lib/pkgconfig/rwth_perception_people_msgs.pc -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/rwth_perception_people_msgs/cmake/rwth_perception_people_msgs-msg-extras.cmake -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/rwth_perception_people_msgs/cmake/rwth_perception_people_msgsConfig.cmake -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/rwth_perception_people_msgs/cmake/rwth_perception_people_msgsConfig-version.cmake -- Installing: /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs/opt/ros/melodic/share/rwth_perception_people_msgs/package.xml make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu' make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0' dh_install -O-v -O--buildsystem=cmake install -d debian/.debhelper/generated/ros-melodic-rwth-perception-people-msgs dh_installdocs -O-v -O--buildsystem=cmake install -d debian/ros-melodic-rwth-perception-people-msgs/usr/share/doc/ros-melodic-rwth-perception-people-msgs dh_installchangelogs -O-v -O--buildsystem=cmake install -p -m0644 debian/changelog debian/ros-melodic-rwth-perception-people-msgs/usr/share/doc/ros-melodic-rwth-perception-people-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-rwth-perception-people-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-rwth-perception-people-msgs chmod a-x usr/share/doc/ros-melodic-rwth-perception-people-msgs/changelog.Debian gzip -9nf usr/share/doc/ros-melodic-rwth-perception-people-msgs/changelog.Debian cd '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0' dh_fixperms -O-v -O--buildsystem=cmake find debian/ros-melodic-rwth-perception-people-msgs -true -print0 2>/dev/null | xargs -0r chown --no-dereference 0:0 find debian/ros-melodic-rwth-perception-people-msgs ! -type l -a -true -a -true -print0 2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s find debian/ros-melodic-rwth-perception-people-msgs/usr/share/doc -type f -a -true -a ! -regex 'debian/ros-melodic-rwth-perception-people-msgs/usr/share/doc/[^/]*/examples/.*' -print0 2>/dev/null | xargs -0r chmod 0644 find debian/ros-melodic-rwth-perception-people-msgs/usr/share/doc -type d -a -true -a -true -print0 2>/dev/null | xargs -0r chmod 0755 find debian/ros-melodic-rwth-perception-people-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-rwth-perception-people-msgs/DEBIAN/shlibs debian/rules override_dh_shlibdeps make[1]: Entering directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0' # 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-rwth-perception-people-msgs-1.2.0/debian/ros-melodic-rwth-perception-people-msgs//opt/ros/melodic/lib/ make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0' dh_installdeb -O-v -O--buildsystem=cmake dh_gencontrol -O-v -O--buildsystem=cmake echo misc:Depends= >> debian/ros-melodic-rwth-perception-people-msgs.substvars echo misc:Pre-Depends= >> debian/ros-melodic-rwth-perception-people-msgs.substvars dpkg-gencontrol -pros-melodic-rwth-perception-people-msgs -ldebian/changelog -Tdebian/ros-melodic-rwth-perception-people-msgs.substvars -Pdebian/ros-melodic-rwth-perception-people-msgs -UMulti-Arch dpkg-gencontrol: warning: Depends field of package ros-melodic-rwth-perception-people-msgs: unknown substitution variable ${shlibs:Depends} chmod 0644 -- debian/ros-melodic-rwth-perception-people-msgs/DEBIAN/control chown 0:0 -- debian/ros-melodic-rwth-perception-people-msgs/DEBIAN/control dh_md5sums -O-v -O--buildsystem=cmake (cd debian/ros-melodic-rwth-perception-people-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-rwth-perception-people-msgs/DEBIAN/md5sums chown 0:0 -- debian/ros-melodic-rwth-perception-people-msgs/DEBIAN/md5sums dh_builddeb -O-v -O--buildsystem=cmake dpkg-deb --build debian/ros-melodic-rwth-perception-people-msgs .. dpkg-deb: building package 'ros-melodic-rwth-perception-people-msgs' in '../ros-melodic-rwth-perception-people-msgs_1.2.0-1bionic.20200826.152152_amd64.deb'. dpkg-genbuildinfo --build=binary dpkg-genchanges --build=binary >../ros-melodic-rwth-perception-people-msgs_1.2.0-1bionic.20200826.152152_amd64.changes dpkg-genchanges: info: binary-only upload (no source code included) dpkg-source --after-build ros-melodic-rwth-perception-people-msgs-1.2.0 dpkg-source: info: using options from ros-melodic-rwth-perception-people-msgs-1.2.0/debian/source/options: --auto-commit dpkg-buildpackage: info: binary-only upload (no source included) I: Successfully built in /tmp/binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0 # END SUBSECTION + echo # END SECTION # END SECTION [Mbin_uB64__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins2361747090074620318.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__rwth_perception_people_msgs__ubuntu_bionic_amd64__binary/binarydeb + rm -fr binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/CHANGELOG.rst binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/CMakeLists.txt binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/LICENSE binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/debian binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/msg binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/obj-x86_64-linux-gnu binarydeb/ros-melodic-rwth-perception-people-msgs-1.2.0/package.xml + echo # END SECTION # END SECTION SSH: Connecting from host [lcas-buildfarm-slave-3] 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 #628 started. Mrel_import-package #628 completed. Result was SUCCESS $ ssh-agent -k unset SSH_AUTH_SOCK; unset SSH_AGENT_PID; echo Agent pid 9273 killed; [ssh-agent] Stopped. [description-setter] Description set: 1.2.0-1bionic.20200826.152152 Triggering a new build of Mrel_sync-packages-to-testing_bionic_amd64 Triggering a new build of Mbin_uB64__spencer_people_tracking_full__ubuntu_bionic_amd64__binary Triggering a new build of Mbin_uB64__rwth_ground_hog__ubuntu_bionic_amd64__binary Triggering a new build of Mbin_uB64__rwth_upper_body_detector__ubuntu_bionic_amd64__binary Triggering a new build of Mbin_uB64__rwth_ground_plane__ubuntu_bionic_amd64__binary Finished: SUCCESS