Console Output
Skipping 65 KB.. Full Lognot 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 21:40:24 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 21:40:24 21:40:24 # automatic invalidation once every day 21:40:24 RUN echo "2018-09-10 (+0000)" 21:40:24 21:40:24 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done 21:40:24 21:40:24 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential 21:40:24 21:40:24 # for each dependency: echo version, apt update, apt install, apt clean 21:40:24 # to prevent exceeding the docker layer limit several lines have been folded 21:40:24 RUN echo "apt-src: 0.25.1-0.2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src 21:40:24 RUN echo "debhelper: 10.2.2ubuntu1~ubuntu16.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes debhelper 21:40:24 RUN echo "python-pydispatcher: 2.0.5" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes python-pydispatcher 21:40:24 RUN echo "python-ws4py: 0.3.4-2" && echo "ros-kinetic-catkin: 0.7.14-0xenial-20180809-132632-0800" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes python-ws4py ros-kinetic-catkin 21:40:24 RUN echo "ros-kinetic-rospy: 1.12.14-0xenial-20180824-093546-0800" && echo "ros-kinetic-std-msgs: 0.5.11-0xenial-20180824-085549-0800" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-rospy ros-kinetic-std-msgs 21:40:24 21:40:24 USER buildfarm 21:40:24 ENTRYPOINT ["sh", "-c"] 21:40:24 CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py kinetic rosduct --sourcedeb-dir /tmp/binarydeb"] 21:40:24 Mount the following volumes when running the container: 21:40:24 -v /tmp/ros_buildfarm:/tmp/ros_buildfarm:ro 21:40:24 -v /tmp/binarydeb:/tmp/binarydeb 21:40:25 + echo # END SECTION 21:40:25 # END SECTION 21:40:25 [Kbin_uX64__rosduct__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson1518034285462352263.sh 21:40:25 + sleep 1 21:40:25 + python3 -u /home/jenkins-slave/workspace/Kbin_uX64__rosduct__ubuntu_xenial_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 8704 --cid-file /home/jenkins-slave/workspace/Kbin_uX64__rosduct__ubuntu_xenial_amd64__binary/docker_build_binarydeb/docker.cid 21:40:26 + echo # BEGIN SECTION: Build Dockerfile - build binarydeb21:47:56 + echo # BEGIN SECTION: Run Dockerfile - build binarydeb1. Build Dockerfile - build binarydebHide Details
21:40:26 # BEGIN SECTION: Build Dockerfile - build binarydeb 21:40:26 + cd /home/jenkins-slave/workspace/Kbin_uX64__rosduct__ubuntu_xenial_amd64__binary/docker_build_binarydeb 21:40:26 + python3 -u /home/jenkins-slave/workspace/Kbin_uX64__rosduct__ubuntu_xenial_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 21:40:26 Get base image name from Dockerfile 'Dockerfile': ubuntu:xenial 21:40:26 Check docker base image for updates: docker pull ubuntu:xenial 21:40:28 xenial: Pulling from library/ubuntu 21:40:28 Digest: sha256:f53ee6c26fed293a1faaad6cb83713ce9289e4a38a9ea7e0d78c156fa1022e75 21:40:28 Status: Image is up to date for ubuntu:xenial 21:40:28 + docker build --force-rm -t binarydeb_build.kinetic_ubuntu_xenial_amd64_rosduct . 21:40:28 Sending build context to Docker daemon 18.94 kB Sending build context to Docker daemon 18.94 kB 21:40:28 Step 1 : FROM ubuntu:xenial 21:40:28 ---> 2b9623518fa2 21:40:28 Step 2 : VOLUME /var/cache/apt/archives 21:40:29 ---> Using cache 21:40:29 ---> 9fc7a5669c2a 21:40:29 Step 3 : ENV DEBIAN_FRONTEND noninteractive 21:40:30 ---> Using cache 21:40:30 ---> ed7a90235f37 21:40:30 Step 4 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done 21:40:31 ---> Using cache 21:40:31 ---> 8791888817b8 21:40:31 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 21:40:32 ---> Using cache 21:40:32 ---> ca63d359db0c 21:40:32 Step 6 : RUN locale-gen en_US.UTF-8 21:40:33 ---> Using cache 21:40:33 ---> 6e872b4029ed 21:40:33 Step 7 : ENV LANG en_US.UTF-8 21:40:34 ---> Using cache 21:40:34 ---> ee062c1ded06 21:40:34 Step 8 : ENV TZ GMT+00 21:40:35 ---> Using cache 21:40:35 ---> a0b18c3f60d8 21:40:35 Step 9 : RUN useradd -u 1002 -m buildfarm 21:40:36 ---> Using cache 21:40:36 ---> 7042c9d8f34b 21:40:36 Step 10 : RUN mkdir /tmp/keys 21:40:37 ---> Using cache 21:40:37 ---> f6927dbe64b3 21:40:37 Step 11 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key 21:40:38 ---> Using cache 21:40:38 ---> efa3936ea789 21:40:38 Step 12 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQGiBEsy5KkRBADJbDSISoamRM5AA20bfAeBuhhaI+VaiCVcxw90sq9AI5lIc42F\nWzM2acm8yplqWiehAqOLKd+iIrqNGZ+VavZEPTx7o06UZUMRoPBiTFaCwrQ5avKz\nlt7ij8PRMVWNrJ7A2lDYXfFQVV1o3Xo06qVnv0KLLUmiur0LBu4H/oTH3wCgt+/I\nD3LUKaMJsc77KwFBTjHB0EsD/26Z2Ud12f3urSNyN6VMWnP3rz6xsmtY4Qsmkbnr\nJuduxCQBZv6bX1Cr2ulXkv0fFOr+s5OyUv7zyCPbxiJFh3Br7fJGb0b5/M208KPe\ngiITY9hMh/aUbKjXCPoOXPxSL6SWOWV8taR6903EFyLBN0qno/kXIBKnVqBZobgn\njIEPA/0fTnxtZtE7EpirGQMF2caJfv7/LCgXmRs9xAhgbE0/caoa1tnc79uaHmLZ\nFtbGFoAO31YNYM/IUHtmabbGdvZ4oYUwDhjBevVvC7aI+XhuNGK5mU8qCLLSEUOl\nCUr6BJq/0iFmjwjmwk9idZEYhqSNy2OoYJbq45rbHfbdKLEVrbQeUk9TIEJ1aWxk\nZXIgPHJvc2J1aWxkQHJvcy5vcmc+iGAEExECACAFAksy5KkCGwMGCwkIBwMCBBUC\nCAMEFgIDAQIeAQIXgAAKCRBVI7rusB+hFmk7AJ0XsLp05KA8l3YzAumZfjSN04MZ\njQCfQHfp4aQUXdOCUtetVo0QZUX3IuO5Ag0ESzLkrhAIAOCuSC83VXYWf8gOMSzd\nxwpsH/uLV9Wze2LGnajsJLjEOhcsz2BHfxqNXhYaE9aQaodPCpbUAkPq8tLbpXy0\nSWRCx0F5RcplXx5vIWbP6TlfPbRpK70w7IWd6vsNrjwEHjlhOLcNcj42sp5pgx4b\ndceK06k5Ml2hYovPnD9o2TYgjOqg5FHZ2g1J0103n/66bN/hZnpLaZJYQiPWCyq6\nK0565i1k2Y7hgWB/OXqwaqCehqmLTvpyQGzE1UJvKLuYU+T+4hBnSPbT3KIi5fCz\nlIwvxijOMcfbkLhzYQXcU0Rd1VItcd5nmPL4z97jBxzuhkgxXpGR4WGKhvsA2Z9Y\nUtsAAwYH/3Bf44bTpD9bVADUdab3e7zm8iHfh9K/a83mIgDB7mHV6WuemQVTf/1d\neu4mI5WtpbOCoucybGfjGIIAcSxwIx6VfC7HSp4J51bOpHhbdDffUEk6QVsZjwoF\nyn3W9W3ZVeTI+ch/Qoo5a98SnmdjN8eXI/qCuiXOHc6rXDXc2R0iox/1EAS8xGVd\ncYZe7IWBO2CjCknyhLrWxZHoy+i1GCZ9KvPF/Ef2dmLhCydT73ZlumsY8N5vm76Q\nul1G7f8LNbnMgXQafRkPffrAXSVhGY3Z2IiBwFNgxcKTq479l7yedYRGeU1A+SYI\nYmRFWHXt3rTkMlQSpxCsB0fAYfrwEqqISQQYEQIACQUCSzLkrgIbDAAKCRBVI7ru\nsB+hFpryAJ9qNz3h3ijt9TkAV0CHufsPT6Cl4gCglfg7tJn2lsSF3HTpoDDO1Fgg\nx9o=\n=AGYp\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 21:40:39 ---> Using cache 21:40:39 ---> 3bdebf4a12fa 21:40:39 Step 13 : RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 21:40:41 ---> Using cache 21:40:41 ---> 2c52e9448836 21:40:41 Step 14 : RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 21:40:42 ---> Using cache 21:40:42 ---> 872185512d89 21:40:42 Step 15 : RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && (echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list && echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) || (echo "deb http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list && echo "deb http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list && echo "deb http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list && echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) 21:40:43 ---> Using cache 21:40:43 ---> 8c7dec57bb17 21:40:43 Step 16 : RUN mkdir /tmp/wrapper_scripts 21:40:44 ---> Using cache 21:40:44 ---> fa086b1dc98f 21:40:44 Step 17 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py 21:40:45 ---> Using cache 21:40:45 ---> b1e4ec763b8b 21:40:45 Step 18 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py 21:40:46 ---> Using cache 21:40:46 ---> 6210aa651d06 21:40:46 Step 19 : RUN echo "2018-09-10 (+0000)" 21:40:47 ---> Using cache 21:40:47 ---> c96df6ab6037 21:40:47 Step 20 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done 21:40:49 ---> Using cache 21:40:49 ---> bc81246e091d 21:40:49 Step 21 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential 21:40:50 ---> Using cache 21:40:50 ---> 41933f8cc76d 21:40:50 Step 22 : RUN echo "apt-src: 0.25.1-0.2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src 21:40:50 ---> Using cache 21:40:50 ---> b94e7292fb1f 21:40:50 Step 23 : RUN echo "debhelper: 10.2.2ubuntu1~ubuntu16.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes debhelper 21:40:51 ---> Using cache 21:40:51 ---> d6481bd2605f 21:40:51 Step 24 : RUN echo "python-pydispatcher: 2.0.5" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes python-pydispatcher 21:40:52 ---> Running in ea4ea29da66d 21:40:52 python-pydispatcher: 2.0.5 21:40:52 Invoking 'apt-get update' 21:40:52 Get:1 http://10.210.9.154/ubuntu/building xenial InRelease [2,856 B] 21:40:52 Hit:2 http://archive.ubuntu.com/ubuntu xenial InRelease 21:40:52 Get:3 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB] 21:40:53 Get:4 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB] 21:40:53 Get:5 http://archive.ubuntu.com/ubuntu xenial-security InRelease [107 kB] 21:40:53 Get:6 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB] 21:40:53 Hit:7 http://packages.ros.org/ros/ubuntu xenial InRelease 21:40:53 Get:8 http://10.210.9.154/ubuntu/building xenial/main amd64 Packages [148 kB] 21:40:53 Get:9 http://archive.ubuntu.com/ubuntu xenial-updates/universe Sources [278 kB] 21:40:53 Get:10 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [1,094 kB] 21:40:53 Get:11 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [879 kB] 21:40:54 Get:12 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [706 kB] 21:40:55 Fetched 3,537 kB in 2s (1,671 kB/s) 21:40:57 Reading package lists... 21:40:57 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:40:57 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:40:57 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:40:57 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:40:57 W: http://10.210.9.154/ubuntu/building/dists/xenial/InRelease: Signature by key 0379D44201EF3A91028107A8DCD74318AED39854 uses weak digest algorithm (SHA1) 21:40:57 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:40:57 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:40:57 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:40:57 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:40:57 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes python-pydispatcher' 21:40:58 Reading package lists... 21:40:59 Building dependency tree... 21:40:59 Reading state information... 21:40:59 Starting pkgProblemResolver with broken count: 0 21:40:59 Starting 2 pkgProblemResolver with broken count: 0 21:40:59 Done 21:40:59 The following NEW packages will be installed: 21:40:59 python-pydispatcher 21:40:59 0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded. 21:40:59 Need to get 16.7 kB of archives. 21:40:59 After this operation, 59.4 kB of additional disk space will be used. 21:40:59 Get:1 http://10.210.9.154/ubuntu/building xenial/main amd64 python-pydispatcher all 2.0.5 [16.7 kB] 21:40:59 debconf: delaying package configuration, since apt-utils is not installed 21:41:00 Fetched 16.7 kB in 0s (541 kB/s) 21:41:00 Selecting previously unselected package python-pydispatcher. 21:41:00 (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 ... 16270 files and directories currently installed.) 21:41:00 Preparing to unpack .../python-pydispatcher_2.0.5_all.deb ... 21:41:00 Unpacking python-pydispatcher (2.0.5) ... 21:41:00 Setting up python-pydispatcher (2.0.5) ... 21:41:02 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:41:02 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:41:02 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:41:02 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:41:02 Invoking 'apt-get clean' 21:41:09 ---> fabe61ad1c30 21:41:09 Removing intermediate container ea4ea29da66d 21:41:09 Step 25 : RUN echo "python-ws4py: 0.3.4-2" && echo "ros-kinetic-catkin: 0.7.14-0xenial-20180809-132632-0800" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes python-ws4py ros-kinetic-catkin 21:41:09 ---> Running in 161a715912fb 21:41:09 python-ws4py: 0.3.4-2 21:41:09 ros-kinetic-catkin: 0.7.14-0xenial-20180809-132632-0800 21:41:09 Invoking 'apt-get update' 21:41:10 Get:1 http://10.210.9.154/ubuntu/building xenial InRelease [2,856 B] 21:41:10 Hit:2 http://security.ubuntu.com/ubuntu xenial-security InRelease 21:41:10 Hit:3 http://archive.ubuntu.com/ubuntu xenial InRelease 21:41:10 Hit:4 http://archive.ubuntu.com/ubuntu xenial-updates InRelease 21:41:10 Get:5 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB] 21:41:10 Hit:6 http://archive.ubuntu.com/ubuntu xenial-security InRelease 21:41:10 Get:7 http://10.210.9.154/ubuntu/building xenial/main amd64 Packages [148 kB] 21:41:10 Hit:8 http://packages.ros.org/ros/ubuntu xenial InRelease 21:41:12 Fetched 258 kB in 2s (107 kB/s) 21:41:14 Reading package lists... 21:41:14 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:41:14 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:41:14 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:41:14 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:41:14 W: http://10.210.9.154/ubuntu/building/dists/xenial/InRelease: Signature by key 0379D44201EF3A91028107A8DCD74318AED39854 uses weak digest algorithm (SHA1) 21:41:14 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:41:14 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:41:14 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:41:14 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:41:14 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes python-ws4py ros-kinetic-catkin' 21:41:15 Reading package lists... 21:41:16 Building dependency tree... 21:41:16 Reading state information... 21:41:16 Starting pkgProblemResolver with broken count: 0 21:41:16 Starting 2 pkgProblemResolver with broken count: 0 21:41:16 Done 21:41:16 The following additional packages will be installed: 21:41:16 cmake cmake-data docutils-common docutils-doc google-mock javascript-common 21:41:16 libarchive13 libcurl3 libfreetype6 libgtest-dev libjbig0 libjpeg-turbo8 21:41:16 libjpeg8 libjs-jquery libjs-sphinxdoc libjs-underscore libjsoncpp1 21:41:16 liblcms2-2 liblzo2-2 libpaper-utils libpaper1 libpng12-0 libpython-stdlib 21:41:16 libpython2.7-minimal libpython2.7-stdlib libtiff5 libwebp5 libwebpmux1 21:41:16 python python-catkin-pkg python-catkin-pkg-modules python-chardet 21:41:16 python-dateutil python-docutils python-empy python-minimal python-nose 21:41:16 python-pil python-pkg-resources python-pygments python-pyparsing 21:41:16 python-roman python-six python2.7 python2.7-minimal tzdata ucf 21:41:16 Suggested packages: 21:41:16 codeblocks eclipse ninja-build apache2 | lighttpd | httpd lrzip 21:41:16 liblcms2-utils python-doc python-tk texlive-latex-recommended 21:41:16 texlive-latex-base texlive-lang-french fonts-linuxlibertine 21:41:16 | ttf-linux-libertine python-coverage python-nose-doc python-pil-doc 21:41:16 python-pil-dbg python-setuptools ttf-bitstream-vera python-cherrypy3 21:41:16 | python-gevent | python-tornado python2.7-doc binfmt-support 21:41:16 The following NEW packages will be installed: 21:41:16 cmake cmake-data docutils-common docutils-doc google-mock javascript-common 21:41:16 libarchive13 libcurl3 libfreetype6 libgtest-dev libjbig0 libjpeg-turbo8 21:41:16 libjpeg8 libjs-jquery libjs-sphinxdoc libjs-underscore libjsoncpp1 21:41:16 liblcms2-2 liblzo2-2 libpaper-utils libpaper1 libpng12-0 libpython-stdlib 21:41:16 libpython2.7-minimal libpython2.7-stdlib libtiff5 libwebp5 libwebpmux1 21:41:16 python python-catkin-pkg python-catkin-pkg-modules python-chardet 21:41:16 python-dateutil python-docutils python-empy python-minimal python-nose 21:41:16 python-pil python-pkg-resources python-pygments python-pyparsing 21:41:16 python-roman python-six python-ws4py python2.7 python2.7-minimal 21:41:16 ros-kinetic-catkin tzdata ucf 21:41:16 0 upgraded, 49 newly installed, 0 to remove and 1 not upgraded. 21:41:16 Need to get 13.0 MB of archives. 21:41:16 After this operation, 63.4 MB of additional disk space will be used. 21:41:16 Get:1 http://10.210.9.154/ubuntu/building xenial/main amd64 python-six all 1.11.0 [20.6 kB] 21:41:16 Get:2 http://10.210.9.154/ubuntu/building xenial/main amd64 python-catkin-pkg-modules all 0.4.8-1 [41.0 kB] 21:41:16 Get:3 http://10.210.9.154/ubuntu/building xenial/main amd64 python-catkin-pkg all 0.4.8-100 [3,442 B] 21:41:16 Get:4 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 cmake-data all 3.5.1-1ubuntu3 [1,121 kB] 21:41:16 Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 liblzo2-2 amd64 2.08-1.2 [48.7 kB] 21:41:16 Get:6 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libarchive13 amd64 3.1.2-11ubuntu0.16.04.4 [262 kB] 21:41:16 Get:7 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libcurl3 amd64 7.47.0-1ubuntu2.8 [187 kB] 21:41:16 Get:8 http://archive.ubuntu.com/ubuntu xenial/main amd64 libjsoncpp1 amd64 1.7.2-1 [73.0 kB] 21:41:16 Get:9 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 cmake amd64 3.5.1-1ubuntu3 [2,623 kB] 21:41:16 Get:10 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libjpeg-turbo8 amd64 1.4.2-0ubuntu3.1 [111 kB] 21:41:16 Get:11 http://archive.ubuntu.com/ubuntu xenial/main amd64 liblcms2-2 amd64 2.6-3ubuntu2 [137 kB] 21:41:16 Get:12 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython2.7-minimal amd64 2.7.12-1ubuntu0~16.04.3 [340 kB] 21:41:16 Get:13 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python2.7-minimal amd64 2.7.12-1ubuntu0~16.04.3 [1,261 kB] 21:41:17 Get:14 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-catkin amd64 0.7.14-0xenial-20180809-132632-0800 [112 kB] 21:41:17 Get:15 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-minimal amd64 2.7.12-1~16.04 [28.1 kB] 21:41:17 Get:16 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython2.7-stdlib amd64 2.7.12-1ubuntu0~16.04.3 [1,880 kB] 21:41:17 Get:17 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python2.7 amd64 2.7.12-1ubuntu0~16.04.3 [224 kB] 21:41:17 Get:18 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython-stdlib amd64 2.7.12-1~16.04 [7,768 B] 21:41:17 Get:19 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python amd64 2.7.12-1~16.04 [137 kB] 21:41:17 Get:20 http://archive.ubuntu.com/ubuntu xenial/main amd64 libjbig0 amd64 2.1-3.1 [26.6 kB] 21:41:17 Get:21 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 tzdata all 2017c-0ubuntu0.16.04 [166 kB] 21:41:17 Get:22 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpng12-0 amd64 1.2.54-1ubuntu1.1 [116 kB] 21:41:17 Get:23 http://archive.ubuntu.com/ubuntu xenial/main amd64 ucf all 3.0036 [52.9 kB] 21:41:17 Get:24 http://archive.ubuntu.com/ubuntu xenial/main amd64 docutils-common all 0.12+dfsg-1 [141 kB] 21:41:17 Get:25 http://archive.ubuntu.com/ubuntu xenial/main amd64 docutils-doc all 0.12+dfsg-1 [889 kB] 21:41:17 Get:26 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libgtest-dev amd64 1.7.0-4ubuntu1 [198 kB] 21:41:17 Get:27 http://archive.ubuntu.com/ubuntu xenial/universe amd64 google-mock amd64 1.7.0-18092013-1 [116 kB] 21:41:17 Get:28 http://archive.ubuntu.com/ubuntu xenial/main amd64 javascript-common all 11 [6,066 B] 21:41:17 Get:29 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libfreetype6 amd64 2.6.1-0.1ubuntu2.3 [316 kB] 21:41:17 Get:30 http://archive.ubuntu.com/ubuntu xenial/main amd64 libjpeg8 amd64 8c-2ubuntu8 [2,194 B] 21:41:17 Get:31 http://archive.ubuntu.com/ubuntu xenial/main amd64 libjs-jquery all 1.11.3+dfsg-4 [161 kB] 21:41:17 Get:32 http://archive.ubuntu.com/ubuntu xenial/main amd64 libjs-underscore all 1.7.0~dfsg-1ubuntu1 [46.7 kB] 21:41:17 Get:33 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libjs-sphinxdoc all 1.3.6-2ubuntu1.2 [57.8 kB] 21:41:17 Get:34 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpaper1 amd64 1.1.24+nmu4ubuntu1 [13.7 kB] 21:41:17 Get:35 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpaper-utils amd64 1.1.24+nmu4ubuntu1 [8,276 B] 21:41:17 Get:36 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libtiff5 amd64 4.0.6-1ubuntu0.4 [148 kB] 21:41:17 Get:37 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-roman all 2.0.0-2 [8,062 B] 21:41:17 Get:38 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-docutils all 0.12+dfsg-1 [348 kB] 21:41:17 Get:39 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-dateutil all 2.4.2-1 [42.5 kB] 21:41:17 Get:40 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-pyparsing all 2.0.3+dfsg1-1ubuntu0.1 [35.4 kB] 21:41:17 Get:41 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-pkg-resources all 20.7.0-1 [108 kB] 21:41:17 Get:42 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-chardet all 2.3.0-2 [96.3 kB] 21:41:17 Get:43 http://archive.ubuntu.com/ubuntu xenial/universe amd64 python-empy all 3.3.2-1build1 [72.5 kB] 21:41:17 Get:44 http://archive.ubuntu.com/ubuntu xenial/universe amd64 python-nose all 1.3.7-1 [116 kB] 21:41:17 Get:45 http://archive.ubuntu.com/ubuntu xenial/main amd64 libwebp5 amd64 0.4.4-1 [165 kB] 21:41:17 Get:46 http://archive.ubuntu.com/ubuntu xenial/main amd64 libwebpmux1 amd64 0.4.4-1 [14.2 kB] 21:41:17 Get:47 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-pil amd64 3.1.2-0ubuntu1.1 [312 kB] 21:41:17 Get:48 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-pygments all 2.1+dfsg-1 [522 kB] 21:41:17 Get:49 http://archive.ubuntu.com/ubuntu xenial/universe amd64 python-ws4py all 0.3.4-2 [123 kB] 21:41:17 debconf: delaying package configuration, since apt-utils is not installed 21:41:17 Fetched 13.0 MB in 0s (27.6 MB/s) 21:41:18 Selecting previously unselected package cmake-data. 21:41:18 (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 ... 16294 files and directories currently installed.) 21:41:18 Preparing to unpack .../cmake-data_3.5.1-1ubuntu3_all.deb ... 21:41:18 Unpacking cmake-data (3.5.1-1ubuntu3) ... 21:41:20 Selecting previously unselected package liblzo2-2:amd64. 21:41:20 Preparing to unpack .../liblzo2-2_2.08-1.2_amd64.deb ... 21:41:20 Unpacking liblzo2-2:amd64 (2.08-1.2) ... 21:41:20 Selecting previously unselected package libarchive13:amd64. 21:41:20 Preparing to unpack .../libarchive13_3.1.2-11ubuntu0.16.04.4_amd64.deb ... 21:41:20 Unpacking libarchive13:amd64 (3.1.2-11ubuntu0.16.04.4) ... 21:41:22 Selecting previously unselected package libcurl3:amd64. 21:41:22 Preparing to unpack .../libcurl3_7.47.0-1ubuntu2.8_amd64.deb ... 21:41:22 Unpacking libcurl3:amd64 (7.47.0-1ubuntu2.8) ... 21:41:22 Selecting previously unselected package libjsoncpp1:amd64. 21:41:22 Preparing to unpack .../libjsoncpp1_1.7.2-1_amd64.deb ... 21:41:22 Unpacking libjsoncpp1:amd64 (1.7.2-1) ... 21:41:23 Selecting previously unselected package cmake. 21:41:23 Preparing to unpack .../cmake_3.5.1-1ubuntu3_amd64.deb ... 21:41:24 Unpacking cmake (3.5.1-1ubuntu3) ... 21:41:28 Selecting previously unselected package libjpeg-turbo8:amd64. 21:41:28 Preparing to unpack .../libjpeg-turbo8_1.4.2-0ubuntu3.1_amd64.deb ... 21:41:28 Unpacking libjpeg-turbo8:amd64 (1.4.2-0ubuntu3.1) ... 21:41:28 Selecting previously unselected package liblcms2-2:amd64. 21:41:28 Preparing to unpack .../liblcms2-2_2.6-3ubuntu2_amd64.deb ... 21:41:29 Unpacking liblcms2-2:amd64 (2.6-3ubuntu2) ... 21:41:29 Selecting previously unselected package libpython2.7-minimal:amd64. 21:41:29 Preparing to unpack .../libpython2.7-minimal_2.7.12-1ubuntu0~16.04.3_amd64.deb ... 21:41:29 Unpacking libpython2.7-minimal:amd64 (2.7.12-1ubuntu0~16.04.3) ... 21:41:31 Selecting previously unselected package python2.7-minimal. 21:41:31 Preparing to unpack .../python2.7-minimal_2.7.12-1ubuntu0~16.04.3_amd64.deb ... 21:41:31 Unpacking python2.7-minimal (2.7.12-1ubuntu0~16.04.3) ... 21:41:33 Selecting previously unselected package python-minimal. 21:41:33 Preparing to unpack .../python-minimal_2.7.12-1~16.04_amd64.deb ... 21:41:33 Unpacking python-minimal (2.7.12-1~16.04) ... 21:41:35 Selecting previously unselected package libpython2.7-stdlib:amd64. 21:41:35 Preparing to unpack .../libpython2.7-stdlib_2.7.12-1ubuntu0~16.04.3_amd64.deb ... 21:41:35 Unpacking libpython2.7-stdlib:amd64 (2.7.12-1ubuntu0~16.04.3) ... 21:41:40 Selecting previously unselected package python2.7. 21:41:40 Preparing to unpack .../python2.7_2.7.12-1ubuntu0~16.04.3_amd64.deb ... 21:41:40 Unpacking python2.7 (2.7.12-1ubuntu0~16.04.3) ... 21:41:40 Selecting previously unselected package libpython-stdlib:amd64. 21:41:40 Preparing to unpack .../libpython-stdlib_2.7.12-1~16.04_amd64.deb ... 21:41:40 Unpacking libpython-stdlib:amd64 (2.7.12-1~16.04) ... 21:41:40 Processing triggers for man-db (2.7.5-1) ... 21:41:42 Processing triggers for libc-bin (2.23-0ubuntu10) ... 21:41:43 Processing triggers for mime-support (3.59ubuntu1) ... 21:41:43 Setting up libpython2.7-minimal:amd64 (2.7.12-1ubuntu0~16.04.3) ... 21:41:43 Setting up python2.7-minimal (2.7.12-1ubuntu0~16.04.3) ... 21:41:44 Setting up python-minimal (2.7.12-1~16.04) ... 21:41:44 Selecting previously unselected package python. 21:41:44 (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 ... 19140 files and directories currently installed.) 21:41:44 Preparing to unpack .../python_2.7.12-1~16.04_amd64.deb ... 21:41:44 Unpacking python (2.7.12-1~16.04) ... 21:41:45 Selecting previously unselected package libjbig0:amd64. 21:41:45 Preparing to unpack .../libjbig0_2.1-3.1_amd64.deb ... 21:41:45 Unpacking libjbig0:amd64 (2.1-3.1) ... 21:41:45 Selecting previously unselected package tzdata. 21:41:45 Preparing to unpack .../tzdata_2017c-0ubuntu0.16.04_all.deb ... 21:41:45 Unpacking tzdata (2017c-0ubuntu0.16.04) ... 21:41:47 Selecting previously unselected package libpng12-0:amd64. 21:41:47 Preparing to unpack .../libpng12-0_1.2.54-1ubuntu1.1_amd64.deb ... 21:41:47 Unpacking libpng12-0:amd64 (1.2.54-1ubuntu1.1) ... 21:41:48 Selecting previously unselected package ucf. 21:41:48 Preparing to unpack .../archives/ucf_3.0036_all.deb ... 21:41:48 Moving old data out of the way 21:41:48 Unpacking ucf (3.0036) ... 21:41:48 Selecting previously unselected package docutils-common. 21:41:48 Preparing to unpack .../docutils-common_0.12+dfsg-1_all.deb ... 21:41:48 Unpacking docutils-common (0.12+dfsg-1) ... 21:41:48 Selecting previously unselected package docutils-doc. 21:41:48 Preparing to unpack .../docutils-doc_0.12+dfsg-1_all.deb ... 21:41:48 Unpacking docutils-doc (0.12+dfsg-1) ... 21:41:49 Selecting previously unselected package libgtest-dev:amd64. 21:41:49 Preparing to unpack .../libgtest-dev_1.7.0-4ubuntu1_amd64.deb ... 21:41:49 Unpacking libgtest-dev:amd64 (1.7.0-4ubuntu1) ... 21:41:49 Selecting previously unselected package google-mock:amd64. 21:41:49 Preparing to unpack .../google-mock_1.7.0-18092013-1_amd64.deb ... 21:41:49 Unpacking google-mock:amd64 (1.7.0-18092013-1) ... 21:41:49 Selecting previously unselected package javascript-common. 21:41:49 Preparing to unpack .../javascript-common_11_all.deb ... 21:41:49 Unpacking javascript-common (11) ... 21:41:49 Selecting previously unselected package libfreetype6:amd64. 21:41:49 Preparing to unpack .../libfreetype6_2.6.1-0.1ubuntu2.3_amd64.deb ... 21:41:49 Unpacking libfreetype6:amd64 (2.6.1-0.1ubuntu2.3) ... 21:41:50 Selecting previously unselected package libjpeg8:amd64. 21:41:50 Preparing to unpack .../libjpeg8_8c-2ubuntu8_amd64.deb ... 21:41:50 Unpacking libjpeg8:amd64 (8c-2ubuntu8) ... 21:41:50 Selecting previously unselected package libjs-jquery. 21:41:50 Preparing to unpack .../libjs-jquery_1.11.3+dfsg-4_all.deb ... 21:41:50 Unpacking libjs-jquery (1.11.3+dfsg-4) ... 21:41:50 Selecting previously unselected package libjs-underscore. 21:41:50 Preparing to unpack .../libjs-underscore_1.7.0~dfsg-1ubuntu1_all.deb ... 21:41:50 Unpacking libjs-underscore (1.7.0~dfsg-1ubuntu1) ... 21:41:50 Selecting previously unselected package libjs-sphinxdoc. 21:41:50 Preparing to unpack .../libjs-sphinxdoc_1.3.6-2ubuntu1.2_all.deb ... 21:41:50 Unpacking libjs-sphinxdoc (1.3.6-2ubuntu1.2) ... 21:41:51 Selecting previously unselected package libpaper1:amd64. 21:41:51 Preparing to unpack .../libpaper1_1.1.24+nmu4ubuntu1_amd64.deb ... 21:41:51 Unpacking libpaper1:amd64 (1.1.24+nmu4ubuntu1) ... 21:41:51 Selecting previously unselected package libpaper-utils. 21:41:51 Preparing to unpack .../libpaper-utils_1.1.24+nmu4ubuntu1_amd64.deb ... 21:41:51 Unpacking libpaper-utils (1.1.24+nmu4ubuntu1) ... 21:41:51 Selecting previously unselected package libtiff5:amd64. 21:41:51 Preparing to unpack .../libtiff5_4.0.6-1ubuntu0.4_amd64.deb ... 21:41:51 Unpacking libtiff5:amd64 (4.0.6-1ubuntu0.4) ... 21:41:53 Selecting previously unselected package python-roman. 21:41:53 Preparing to unpack .../python-roman_2.0.0-2_all.deb ... 21:41:53 Unpacking python-roman (2.0.0-2) ... 21:41:53 Selecting previously unselected package python-docutils. 21:41:53 Preparing to unpack .../python-docutils_0.12+dfsg-1_all.deb ... 21:41:53 Unpacking python-docutils (0.12+dfsg-1) ... 21:41:53 Selecting previously unselected package python-six. 21:41:53 Preparing to unpack .../python-six_1.11.0_all.deb ... 21:41:53 Unpacking python-six (1.11.0) ... 21:41:53 Selecting previously unselected package python-dateutil. 21:41:53 Preparing to unpack .../python-dateutil_2.4.2-1_all.deb ... 21:41:53 Unpacking python-dateutil (2.4.2-1) ... 21:41:54 Selecting previously unselected package python-pyparsing. 21:41:54 Preparing to unpack .../python-pyparsing_2.0.3+dfsg1-1ubuntu0.1_all.deb ... 21:41:54 Unpacking python-pyparsing (2.0.3+dfsg1-1ubuntu0.1) ... 21:41:54 Selecting previously unselected package python-catkin-pkg-modules. 21:41:54 Preparing to unpack .../python-catkin-pkg-modules_0.4.8-1_all.deb ... 21:41:54 Unpacking python-catkin-pkg-modules (0.4.8-1) ... 21:41:54 Selecting previously unselected package python-catkin-pkg. 21:41:54 Preparing to unpack .../python-catkin-pkg_0.4.8-100_all.deb ... 21:41:54 Unpacking python-catkin-pkg (0.4.8-100) ... 21:41:54 Selecting previously unselected package python-pkg-resources. 21:41:54 Preparing to unpack .../python-pkg-resources_20.7.0-1_all.deb ... 21:41:54 Unpacking python-pkg-resources (20.7.0-1) ... 21:41:54 Selecting previously unselected package python-chardet. 21:41:54 Preparing to unpack .../python-chardet_2.3.0-2_all.deb ... 21:41:54 Unpacking python-chardet (2.3.0-2) ... 21:41:54 Selecting previously unselected package python-empy. 21:41:54 Preparing to unpack .../python-empy_3.3.2-1build1_all.deb ... 21:41:54 Unpacking python-empy (3.3.2-1build1) ... 21:41:55 Selecting previously unselected package python-nose. 21:41:55 Preparing to unpack .../python-nose_1.3.7-1_all.deb ... 21:41:55 Unpacking python-nose (1.3.7-1) ... 21:41:55 Selecting previously unselected package libwebp5:amd64. 21:41:55 Preparing to unpack .../libwebp5_0.4.4-1_amd64.deb ... 21:41:55 Unpacking libwebp5:amd64 (0.4.4-1) ... 21:41:56 Selecting previously unselected package libwebpmux1:amd64. 21:41:56 Preparing to unpack .../libwebpmux1_0.4.4-1_amd64.deb ... 21:41:56 Unpacking libwebpmux1:amd64 (0.4.4-1) ... 21:41:57 Selecting previously unselected package python-pil:amd64. 21:41:57 Preparing to unpack .../python-pil_3.1.2-0ubuntu1.1_amd64.deb ... 21:41:57 Unpacking python-pil:amd64 (3.1.2-0ubuntu1.1) ... 21:41:58 Selecting previously unselected package python-pygments. 21:41:58 Preparing to unpack .../python-pygments_2.1+dfsg-1_all.deb ... 21:41:58 Unpacking python-pygments (2.1+dfsg-1) ... 21:41:59 Selecting previously unselected package python-ws4py. 21:41:59 Preparing to unpack .../python-ws4py_0.3.4-2_all.deb ... 21:41:59 Unpacking python-ws4py (0.3.4-2) ... 21:41:59 Selecting previously unselected package ros-kinetic-catkin. 21:41:59 Preparing to unpack .../ros-kinetic-catkin_0.7.14-0xenial-20180809-132632-0800_amd64.deb ... 21:41:59 Unpacking ros-kinetic-catkin (0.7.14-0xenial-20180809-132632-0800) ... 21:41:59 Processing triggers for man-db (2.7.5-1) ... 21:42:02 Processing triggers for libc-bin (2.23-0ubuntu10) ... 21:42:02 Processing triggers for shared-mime-info (1.5-2ubuntu0.2) ... 21:42:14 Processing triggers for sgml-base (1.26+nmu4ubuntu1) ... 21:42:14 Setting up cmake-data (3.5.1-1ubuntu3) ... 21:42:14 Setting up liblzo2-2:amd64 (2.08-1.2) ... 21:42:14 Setting up libarchive13:amd64 (3.1.2-11ubuntu0.16.04.4) ... 21:42:14 Setting up libcurl3:amd64 (7.47.0-1ubuntu2.8) ... 21:42:14 Setting up libjsoncpp1:amd64 (1.7.2-1) ... 21:42:15 Setting up cmake (3.5.1-1ubuntu3) ... 21:42:15 Setting up libjpeg-turbo8:amd64 (1.4.2-0ubuntu3.1) ... 21:42:15 Setting up liblcms2-2:amd64 (2.6-3ubuntu2) ... 21:42:15 Setting up libpython2.7-stdlib:amd64 (2.7.12-1ubuntu0~16.04.3) ... 21:42:15 Setting up python2.7 (2.7.12-1ubuntu0~16.04.3) ... 21:42:20 Setting up libpython-stdlib:amd64 (2.7.12-1~16.04) ... 21:42:21 Setting up python (2.7.12-1~16.04) ... 21:42:21 Setting up libjbig0:amd64 (2.1-3.1) ... 21:42:21 Setting up tzdata (2017c-0ubuntu0.16.04) ... 21:42:22 21:42:22 Current default time zone: 'Etc/UTC' 21:42:22 Local time is now: Mon Sep 10 20:42:22 UTC 2018. 21:42:22 Universal Time is now: Mon Sep 10 20:42:22 UTC 2018. 21:42:22 Run 'dpkg-reconfigure tzdata' if you wish to change it. 21:42:22 21:42:23 Setting up libpng12-0:amd64 (1.2.54-1ubuntu1.1) ... 21:42:23 Setting up ucf (3.0036) ... 21:42:23 Setting up docutils-common (0.12+dfsg-1) ... 21:42:24 Setting up docutils-doc (0.12+dfsg-1) ... 21:42:24 Setting up libgtest-dev:amd64 (1.7.0-4ubuntu1) ... 21:42:24 Setting up google-mock:amd64 (1.7.0-18092013-1) ... 21:42:24 Setting up javascript-common (11) ... 21:42:24 Setting up libfreetype6:amd64 (2.6.1-0.1ubuntu2.3) ... 21:42:24 Setting up libjpeg8:amd64 (8c-2ubuntu8) ... 21:42:24 Setting up libjs-jquery (1.11.3+dfsg-4) ... 21:42:24 Setting up libjs-underscore (1.7.0~dfsg-1ubuntu1) ... 21:42:24 Setting up libjs-sphinxdoc (1.3.6-2ubuntu1.2) ... 21:42:25 Setting up libpaper1:amd64 (1.1.24+nmu4ubuntu1) ... 21:42:25 21:42:25 Creating config file /etc/papersize with new version 21:42:25 Setting up libpaper-utils (1.1.24+nmu4ubuntu1) ... 21:42:26 Setting up libtiff5:amd64 (4.0.6-1ubuntu0.4) ... 21:42:26 Setting up python-roman (2.0.0-2) ... 21:42:27 Setting up python-six (1.11.0) ... 21:42:27 Setting up python-dateutil (2.4.2-1) ... 21:42:28 Setting up python-pyparsing (2.0.3+dfsg1-1ubuntu0.1) ... 21:42:29 Setting up python-pkg-resources (20.7.0-1) ... 21:42:30 Setting up python-chardet (2.3.0-2) ... 21:42:30 Setting up python-empy (3.3.2-1build1) ... 21:42:32 Setting up python-nose (1.3.7-1) ... 21:42:32 Setting up libwebp5:amd64 (0.4.4-1) ... 21:42:32 Setting up libwebpmux1:amd64 (0.4.4-1) ... 21:42:32 Setting up python-pil:amd64 (3.1.2-0ubuntu1.1) ... 21:42:33 Setting up python-pygments (2.1+dfsg-1) ... 21:42:35 Setting up python-ws4py (0.3.4-2) ... 21:42:36 Processing triggers for sgml-base (1.26+nmu4ubuntu1) ... 21:42:36 Setting up python-docutils (0.12+dfsg-1) ... 21:42:37 update-alternatives: using /usr/share/docutils/scripts/python2/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode 21:42:37 update-alternatives: using /usr/share/docutils/scripts/python2/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode 21:42:37 update-alternatives: using /usr/share/docutils/scripts/python2/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode 21:42:37 update-alternatives: using /usr/share/docutils/scripts/python2/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode 21:42:37 update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode 21:42:37 update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode 21:42:37 update-alternatives: using /usr/share/docutils/scripts/python2/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode 21:42:37 update-alternatives: using /usr/share/docutils/scripts/python2/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode 21:42:37 update-alternatives: using /usr/share/docutils/scripts/python2/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode 21:42:37 update-alternatives: using /usr/share/docutils/scripts/python2/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode 21:42:37 update-alternatives: using /usr/share/docutils/scripts/python2/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode 21:42:38 Setting up python-catkin-pkg-modules (0.4.8-1) ... 21:42:39 Setting up python-catkin-pkg (0.4.8-100) ... 21:42:39 Setting up ros-kinetic-catkin (0.7.14-0xenial-20180809-132632-0800) ... 21:42:39 Processing triggers for libc-bin (2.23-0ubuntu10) ... 21:42:39 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:42:39 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:42:39 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:42:39 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:42:39 Invoking 'apt-get clean' 21:42:58 ---> 99b6c4f56a44 21:43:00 Removing intermediate container 161a715912fb 21:43:00 Step 26 : RUN echo "ros-kinetic-rospy: 1.12.14-0xenial-20180824-093546-0800" && echo "ros-kinetic-std-msgs: 0.5.11-0xenial-20180824-085549-0800" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-rospy ros-kinetic-std-msgs 21:43:00 ---> Running in e33557f9b490 21:43:00 ros-kinetic-rospy: 1.12.14-0xenial-20180824-093546-0800 21:43:00 ros-kinetic-std-msgs: 0.5.11-0xenial-20180824-085549-0800 21:43:01 Invoking 'apt-get update' 21:43:01 Get:1 http://10.210.9.154/ubuntu/building xenial InRelease [2,856 B] 21:43:01 Hit:2 http://archive.ubuntu.com/ubuntu xenial InRelease 21:43:01 Hit:3 http://archive.ubuntu.com/ubuntu xenial-updates InRelease 21:43:01 Hit:4 http://security.ubuntu.com/ubuntu xenial-security InRelease 21:43:01 Get:5 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB] 21:43:01 Hit:6 http://archive.ubuntu.com/ubuntu xenial-security InRelease 21:43:01 Get:7 http://10.210.9.154/ubuntu/building xenial/main amd64 Packages [148 kB] 21:43:01 Hit:8 http://packages.ros.org/ros/ubuntu xenial InRelease 21:43:02 Fetched 258 kB in 1s (246 kB/s) 21:43:04 Reading package lists... 21:43:04 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:43:04 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:43:04 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:43:04 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:43:04 W: http://10.210.9.154/ubuntu/building/dists/xenial/InRelease: Signature by key 0379D44201EF3A91028107A8DCD74318AED39854 uses weak digest algorithm (SHA1) 21:43:04 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:43:04 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:43:04 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:43:04 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:43:04 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-rospy ros-kinetic-std-msgs' 21:43:05 Reading package lists... 21:43:06 Building dependency tree... 21:43:06 Reading state information... 21:43:06 Starting pkgProblemResolver with broken count: 0 21:43:06 Starting 2 pkgProblemResolver with broken count: 0 21:43:06 Done 21:43:06 The following additional packages will be installed: 21:43:06 distro-info-data icu-devtools libapr1 libapr1-dev libaprutil1 21:43:06 libaprutil1-dev libblas-common libblas3 libboost-all-dev libboost-atomic-dev 21:43:06 libboost-atomic1.58-dev libboost-atomic1.58.0 libboost-chrono-dev 21:43:06 libboost-chrono1.58-dev libboost-chrono1.58.0 libboost-context-dev 21:43:06 libboost-context1.58-dev libboost-context1.58.0 libboost-coroutine-dev 21:43:06 libboost-coroutine1.58-dev libboost-coroutine1.58.0 libboost-date-time-dev 21:43:06 libboost-date-time1.58-dev libboost-date-time1.58.0 libboost-dev 21:43:06 libboost-exception-dev libboost-exception1.58-dev libboost-filesystem-dev 21:43:06 libboost-filesystem1.58-dev libboost-filesystem1.58.0 libboost-graph-dev 21:43:06 libboost-graph-parallel-dev libboost-graph-parallel1.58-dev 21:43:06 libboost-graph-parallel1.58.0 libboost-graph1.58-dev libboost-graph1.58.0 21:43:06 libboost-iostreams-dev libboost-iostreams1.58-dev libboost-iostreams1.58.0 21:43:06 libboost-locale-dev libboost-locale1.58-dev libboost-locale1.58.0 21:43:06 libboost-log-dev libboost-log1.58-dev libboost-log1.58.0 libboost-math-dev 21:43:06 libboost-math1.58-dev libboost-math1.58.0 libboost-mpi-dev 21:43:06 libboost-mpi-python-dev libboost-mpi-python1.58-dev 21:43:06 libboost-mpi-python1.58.0 libboost-mpi1.58-dev libboost-mpi1.58.0 21:43:06 libboost-program-options-dev libboost-program-options1.58-dev 21:43:06 libboost-program-options1.58.0 libboost-python-dev libboost-python1.58-dev 21:43:06 libboost-python1.58.0 libboost-random-dev libboost-random1.58-dev 21:43:06 libboost-random1.58.0 libboost-regex-dev libboost-regex1.58-dev 21:43:06 libboost-regex1.58.0 libboost-serialization-dev 21:43:06 libboost-serialization1.58-dev libboost-serialization1.58.0 21:43:06 libboost-signals-dev libboost-signals1.58-dev libboost-signals1.58.0 21:43:06 libboost-system-dev libboost-system1.58-dev libboost-system1.58.0 21:43:06 libboost-test-dev libboost-test1.58-dev libboost-test1.58.0 21:43:06 libboost-thread-dev libboost-thread1.58-dev libboost-thread1.58.0 21:43:06 libboost-timer-dev libboost-timer1.58-dev libboost-timer1.58.0 21:43:06 libboost-tools-dev libboost-wave-dev libboost-wave1.58-dev 21:43:06 libboost-wave1.58.0 libboost1.58-dev libboost1.58-tools-dev 21:43:06 libconsole-bridge-dev libconsole-bridge0.2v5 libexpat1-dev libgfortran3 21:43:06 libhwloc-dev libhwloc-plugins libhwloc5 libibverbs-dev libibverbs1 21:43:06 libicu-dev liblapack3 libldap2-dev liblog4cxx-dev liblog4cxx10-dev 21:43:06 liblog4cxx10v5 libltdl-dev libltdl7 libnuma-dev libnuma1 libopenmpi-dev 21:43:06 libopenmpi1.10 libpciaccess0 libpython-dev libpython2.7 libpython2.7-dev 21:43:06 libsctp-dev libsctp1 libtinyxml-dev libtinyxml2.6.2v5 libtool libyaml-0-2 21:43:06 lsb-release mpi-default-bin mpi-default-dev ocl-icd-libopencl1 openmpi-bin 21:43:06 openmpi-common pkg-config python-dev python-netifaces python-numpy 21:43:06 python-rosdep python-rosdistro python-rosdistro-modules python-rospkg 21:43:06 python-rospkg-modules python-setuptools python-yaml python2.7-dev 21:43:06 ros-kinetic-cpp-common ros-kinetic-gencpp ros-kinetic-geneus 21:43:06 ros-kinetic-genlisp ros-kinetic-genmsg ros-kinetic-gennodejs 21:43:06 ros-kinetic-genpy ros-kinetic-message-generation ros-kinetic-message-runtime 21:43:06 ros-kinetic-ros-environment ros-kinetic-rosbuild ros-kinetic-rosconsole 21:43:06 ros-kinetic-roscpp ros-kinetic-roscpp-serialization 21:43:06 ros-kinetic-roscpp-traits ros-kinetic-rosgraph ros-kinetic-rosgraph-msgs 21:43:06 ros-kinetic-roslib ros-kinetic-rospack ros-kinetic-rostime 21:43:06 ros-kinetic-xmlrpcpp uuid-dev 21:43:06 Suggested packages: 21:43:06 libboost-doc graphviz libboost1.58-doc gccxml libmpfrc++-dev libntl-dev 21:43:06 xsltproc doxygen docbook-xml docbook-xsl default-jdk fop 21:43:06 libhwloc-contrib-plugins icu-doc liblog4cxx-doc zip libtool-doc opennmpi-doc 21:43:06 pciutils lksctp-tools libtinyxml-doc autoconf automaken gfortran 21:43:06 | fortran95-compiler gcj-jdk lsb opencl-icd gfortran openmpi-checkpoint 21:43:06 python-numpy-dbg python-numpy-doc python-setuptools-doc 21:43:06 The following NEW packages will be installed: 21:43:06 distro-info-data icu-devtools libapr1 libapr1-dev libaprutil1 21:43:06 libaprutil1-dev libblas-common libblas3 libboost-all-dev libboost-atomic-dev 21:43:06 libboost-atomic1.58-dev libboost-atomic1.58.0 libboost-chrono-dev 21:43:06 libboost-chrono1.58-dev libboost-chrono1.58.0 libboost-context-dev 21:43:06 libboost-context1.58-dev libboost-context1.58.0 libboost-coroutine-dev 21:43:06 libboost-coroutine1.58-dev libboost-coroutine1.58.0 libboost-date-time-dev 21:43:06 libboost-date-time1.58-dev libboost-date-time1.58.0 libboost-dev 21:43:06 libboost-exception-dev libboost-exception1.58-dev libboost-filesystem-dev 21:43:06 libboost-filesystem1.58-dev libboost-filesystem1.58.0 libboost-graph-dev 21:43:06 libboost-graph-parallel-dev libboost-graph-parallel1.58-dev 21:43:06 libboost-graph-parallel1.58.0 libboost-graph1.58-dev libboost-graph1.58.0 21:43:06 libboost-iostreams-dev libboost-iostreams1.58-dev libboost-iostreams1.58.0 21:43:06 libboost-locale-dev libboost-locale1.58-dev libboost-locale1.58.0 21:43:06 libboost-log-dev libboost-log1.58-dev libboost-log1.58.0 libboost-math-dev 21:43:06 libboost-math1.58-dev libboost-math1.58.0 libboost-mpi-dev 21:43:06 libboost-mpi-python-dev libboost-mpi-python1.58-dev 21:43:06 libboost-mpi-python1.58.0 libboost-mpi1.58-dev libboost-mpi1.58.0 21:43:06 libboost-program-options-dev libboost-program-options1.58-dev 21:43:06 libboost-program-options1.58.0 libboost-python-dev libboost-python1.58-dev 21:43:06 libboost-python1.58.0 libboost-random-dev libboost-random1.58-dev 21:43:06 libboost-random1.58.0 libboost-regex-dev libboost-regex1.58-dev 21:43:06 libboost-regex1.58.0 libboost-serialization-dev 21:43:06 libboost-serialization1.58-dev libboost-serialization1.58.0 21:43:06 libboost-signals-dev libboost-signals1.58-dev libboost-signals1.58.0 21:43:06 libboost-system-dev libboost-system1.58-dev libboost-system1.58.0 21:43:06 libboost-test-dev libboost-test1.58-dev libboost-test1.58.0 21:43:06 libboost-thread-dev libboost-thread1.58-dev libboost-thread1.58.0 21:43:06 libboost-timer-dev libboost-timer1.58-dev libboost-timer1.58.0 21:43:06 libboost-tools-dev libboost-wave-dev libboost-wave1.58-dev 21:43:06 libboost-wave1.58.0 libboost1.58-dev libboost1.58-tools-dev 21:43:06 libconsole-bridge-dev libconsole-bridge0.2v5 libexpat1-dev libgfortran3 21:43:06 libhwloc-dev libhwloc-plugins libhwloc5 libibverbs-dev libibverbs1 21:43:06 libicu-dev liblapack3 libldap2-dev liblog4cxx-dev liblog4cxx10-dev 21:43:06 liblog4cxx10v5 libltdl-dev libltdl7 libnuma-dev libnuma1 libopenmpi-dev 21:43:06 libopenmpi1.10 libpciaccess0 libpython-dev libpython2.7 libpython2.7-dev 21:43:06 libsctp-dev libsctp1 libtinyxml-dev libtinyxml2.6.2v5 libtool libyaml-0-2 21:43:06 lsb-release mpi-default-bin mpi-default-dev ocl-icd-libopencl1 openmpi-bin 21:43:06 openmpi-common pkg-config python-dev python-netifaces python-numpy 21:43:06 python-rosdep python-rosdistro python-rosdistro-modules python-rospkg 21:43:06 python-rospkg-modules python-setuptools python-yaml python2.7-dev 21:43:06 ros-kinetic-cpp-common ros-kinetic-gencpp ros-kinetic-geneus 21:43:06 ros-kinetic-genlisp ros-kinetic-genmsg ros-kinetic-gennodejs 21:43:06 ros-kinetic-genpy ros-kinetic-message-generation ros-kinetic-message-runtime 21:43:06 ros-kinetic-ros-environment ros-kinetic-rosbuild ros-kinetic-rosconsole 21:43:06 ros-kinetic-roscpp ros-kinetic-roscpp-serialization 21:43:06 ros-kinetic-roscpp-traits ros-kinetic-rosgraph ros-kinetic-rosgraph-msgs 21:43:06 ros-kinetic-roslib ros-kinetic-rospack ros-kinetic-rospy ros-kinetic-rostime 21:43:06 ros-kinetic-std-msgs ros-kinetic-xmlrpcpp uuid-dev 21:43:07 0 upgraded, 163 newly installed, 0 to remove and 1 not upgraded. 21:43:07 Need to get 64.1 MB of archives. 21:43:07 After this operation, 332 MB of additional disk space will be used. 21:43:07 Get:1 http://10.210.9.154/ubuntu/building xenial/main amd64 python-rospkg-modules all 1.1.7-1 [23.4 kB] 21:43:07 Get:2 http://10.210.9.154/ubuntu/building xenial/main amd64 python-rospkg all 1.1.7-100 [2,102 B] 21:43:07 Get:3 http://10.210.9.154/ubuntu/building xenial/main amd64 python-rosdistro-modules all 0.6.9-1 [30.5 kB] 21:43:07 Get:4 http://10.210.9.154/ubuntu/building xenial/main amd64 python-rosdistro all 0.6.9-100 [6,208 B] 21:43:07 Get:5 http://10.210.9.154/ubuntu/building xenial/main amd64 python-rosdep all 0.12.2-1 [46.7 kB] 21:43:07 Get:6 http://archive.ubuntu.com/ubuntu xenial/main amd64 libyaml-0-2 amd64 0.1.6-3 [47.6 kB] 21:43:07 Get:7 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 distro-info-data all 0.28ubuntu0.8 [4,502 B] 21:43:07 Get:8 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 lsb-release all 9.20160110ubuntu0.2 [11.8 kB] 21:43:07 Get:9 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libnuma1 amd64 2.0.11-1ubuntu1.1 [21.0 kB] 21:43:07 Get:10 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 icu-devtools amd64 55.1-7ubuntu0.4 [166 kB] 21:43:07 Get:11 http://archive.ubuntu.com/ubuntu xenial/main amd64 libapr1 amd64 1.5.2-3 [86.0 kB] 21:43:07 Get:12 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 uuid-dev amd64 2.27.1-6ubuntu3.6 [26.4 kB] 21:43:07 Get:13 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsctp1 amd64 1.0.16+dfsg-3 [8,088 B] 21:43:07 Get:14 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsctp-dev amd64 1.0.16+dfsg-3 [62.4 kB] 21:43:07 Get:15 http://archive.ubuntu.com/ubuntu xenial/main amd64 libapr1-dev amd64 1.5.2-3 [650 kB] 21:43:07 Get:16 http://archive.ubuntu.com/ubuntu xenial/main amd64 libaprutil1 amd64 1.5.4-1build1 [77.1 kB] 21:43:07 Get:17 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libldap2-dev amd64 2.4.42+dfsg-2ubuntu3.3 [262 kB] 21:43:07 Get:18 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libexpat1-dev amd64 2.1.0-7ubuntu0.16.04.3 [115 kB] 21:43:07 Get:19 http://archive.ubuntu.com/ubuntu xenial/main amd64 libaprutil1-dev amd64 1.5.4-1build1 [361 kB] 21:43:07 Get:20 http://archive.ubuntu.com/ubuntu xenial/main amd64 libblas-common amd64 3.6.0-2ubuntu2 [5,342 B] 21:43:07 Get:21 http://archive.ubuntu.com/ubuntu xenial/main amd64 libblas3 amd64 3.6.0-2ubuntu2 [147 kB] 21:43:07 Get:22 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libboost1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [6,222 kB] 21:43:07 Get:23 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-cpp-common amd64 0.6.11-0xenial-20180824-081824-0800 [18.9 kB] 21:43:07 Get:24 http://archive.ubuntu.com/ubuntu xenial/main amd64 libboost-dev amd64 1.58.0.1ubuntu1 [3,134 B] 21:43:07 Get:25 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libboost1.58-tools-dev amd64 1.58.0+dfsg-5ubuntu3.1 [1,140 kB] 21:43:07 Get:26 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-tools-dev amd64 1.58.0.1ubuntu1 [2,974 B] 21:43:07 Get:27 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-atomic1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [7,120 B] 21:43:07 Get:28 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-atomic1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [5,026 B] 21:43:07 Get:29 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-atomic-dev amd64 1.58.0.1ubuntu1 [3,104 B] 21:43:07 Get:30 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libboost-system1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [9,146 B] 21:43:07 Get:31 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-chrono1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [13.2 kB] 21:43:07 Get:32 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-chrono1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [15.6 kB] 21:43:07 Get:33 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-chrono-dev amd64 1.58.0.1ubuntu1 [3,422 B] 21:43:07 Get:34 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libboost-thread1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [47.0 kB] 21:43:07 Get:35 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-context1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [18.9 kB] 21:43:07 Get:36 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-context1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [19.0 kB] 21:43:07 Get:37 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-context-dev amd64 1.58.0.1ubuntu1 [2,994 B] 21:43:07 Get:38 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-coroutine1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [20.2 kB] 21:43:07 Get:39 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-coroutine1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [21.0 kB] 21:43:07 Get:40 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-coroutine-dev amd64 1.58.0.1ubuntu1 [3,070 B] 21:43:07 Get:41 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libboost-date-time1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [20.7 kB] 21:43:07 Get:42 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-serialization1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [113 kB] 21:43:07 Get:43 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-serialization1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [147 kB] 21:43:07 Get:44 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-date-time1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [27.4 kB] 21:43:07 Get:45 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-date-time-dev amd64 1.58.0.1ubuntu1 [2,800 B] 21:43:07 Get:46 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-exception1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [4,456 B] 21:43:07 Get:47 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-exception-dev amd64 1.58.0.1ubuntu1 [2,792 B] 21:43:07 Get:48 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libboost-filesystem1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [37.5 kB] 21:43:07 Get:49 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-system1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [8,526 B] 21:43:07 Get:50 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-filesystem1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [46.4 kB] 21:43:07 Get:51 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-filesystem-dev amd64 1.58.0.1ubuntu1 [2,826 B] 21:43:07 Get:52 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libboost-regex1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [261 kB] 21:43:07 Get:53 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-graph1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [94.2 kB] 21:43:07 Get:54 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-test1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [188 kB] 21:43:07 Get:55 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-test1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [232 kB] 21:43:07 Get:56 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-graph1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [104 kB] 21:43:07 Get:57 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-graph-dev amd64 1.58.0.1ubuntu1 [2,886 B] 21:43:07 Get:58 http://archive.ubuntu.com/ubuntu xenial/main amd64 libltdl7 amd64 2.4.6-0.1 [38.3 kB] 21:43:07 Get:59 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libhwloc5 amd64 1.11.2-3 [99.5 kB] 21:43:07 Get:60 http://archive.ubuntu.com/ubuntu xenial/main amd64 libibverbs1 amd64 1.1.8-1.1ubuntu2 [25.0 kB] 21:43:07 Get:61 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libopenmpi1.10 amd64 1.10.2-8ubuntu1 [2,025 kB] 21:43:07 Get:62 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-mpi1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [47.8 kB] 21:43:07 Get:63 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-graph-parallel1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [72.6 kB] 21:43:07 Get:64 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-graph-parallel1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [78.9 kB] 21:43:07 Get:65 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-graph-parallel-dev amd64 1.58.0.1ubuntu1 [2,932 B] 21:43:07 Get:66 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libicu-dev amd64 55.1-7ubuntu0.4 [8,566 kB] 21:43:07 Get:67 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-genmsg amd64 0.5.11-0xenial-20180824-080325-0800 [34.8 kB] 21:43:08 Get:68 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-regex1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [322 kB] 21:43:08 Get:69 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libboost-iostreams1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [29.0 kB] 21:43:08 Get:70 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-iostreams1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [36.2 kB] 21:43:08 Get:71 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-iostreams-dev amd64 1.58.0.1ubuntu1 [2,784 B] 21:43:08 Get:72 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-locale1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [242 kB] 21:43:08 Get:73 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-gencpp amd64 0.6.0-0xenial-20180824-081412-0800 [14.2 kB] 21:43:08 Get:74 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-geneus amd64 2.2.6-0xenial-20180824-081429-0800 [24.9 kB] 21:43:08 Get:75 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-genlisp amd64 0.4.16-0xenial-20180824-081624-0800 [21.5 kB] 21:43:08 Get:76 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-gennodejs amd64 2.0.1-0xenial-20180824-081715-0800 [21.6 kB] 21:43:08 Get:77 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-locale1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [331 kB] 21:43:08 Get:78 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-locale-dev amd64 1.58.0.1ubuntu1 [3,128 B] 21:43:08 Get:79 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-log1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [422 kB] 21:43:08 Get:80 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-thread1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [48.8 kB] 21:43:08 Get:81 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-log1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [533 kB] 21:43:08 Get:82 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-log-dev amd64 1.58.0.1ubuntu1 [2,986 B] 21:43:08 Get:83 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-math1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [291 kB] 21:43:08 Get:84 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-math1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [829 kB] 21:43:08 Get:85 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-genpy amd64 0.6.7-0xenial-20180824-081724-0800 [49.0 kB] 21:43:08 Get:86 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-message-generation amd64 0.4.0-0xenial-20180824-081816-0800 [4,418 B] 21:43:08 Get:87 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-math-dev amd64 1.58.0.1ubuntu1 [2,998 B] 21:43:08 Get:88 http://archive.ubuntu.com/ubuntu xenial/universe amd64 openmpi-common all 1.10.2-8ubuntu1 [129 kB] 21:43:08 Get:89 http://archive.ubuntu.com/ubuntu xenial/main amd64 libibverbs-dev amd64 1.1.8-1.1ubuntu2 [77.6 kB] 21:43:08 Get:90 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libnuma-dev amd64 2.0.11-1ubuntu1.1 [31.5 kB] 21:43:08 Get:91 http://archive.ubuntu.com/ubuntu xenial/main amd64 libltdl-dev amd64 2.4.6-0.1 [162 kB] 21:43:08 Get:92 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libhwloc-dev amd64 1.11.2-3 [155 kB] 21:43:08 Get:93 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libopenmpi-dev amd64 1.10.2-8ubuntu1 [537 kB] 21:43:08 Get:94 http://archive.ubuntu.com/ubuntu xenial/universe amd64 mpi-default-dev amd64 1.4 [4,154 B] 21:43:08 Get:95 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-mpi1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [147 kB] 21:43:08 Get:96 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-mpi-dev amd64 1.58.0.1ubuntu1 [2,876 B] 21:43:08 Get:97 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-python1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [120 kB] 21:43:08 Get:98 http://archive.ubuntu.com/ubuntu xenial/universe amd64 openmpi-bin amd64 1.10.2-8ubuntu1 [100 kB] 21:43:08 Get:99 http://archive.ubuntu.com/ubuntu xenial/universe amd64 mpi-default-bin amd64 1.4 [3,370 B] 21:43:08 Get:100 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-mpi-python1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [220 kB] 21:43:08 Get:101 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-mpi-python1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [27.0 kB] 21:43:08 Get:102 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-mpi-python-dev amd64 1.58.0.1ubuntu1 [2,912 B] 21:43:08 Get:103 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libboost-program-options1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [138 kB] 21:43:08 Get:104 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libboost-program-options1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [171 kB] 21:43:08 Get:105 http://archive.ubuntu.com/ubuntu xenial/main amd64 libboost-program-options-dev amd64 1.58.0.1ubuntu1 [2,808 B] 21:43:08 Get:106 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython2.7 amd64 2.7.12-1ubuntu0~16.04.3 [1,070 kB] 21:43:08 Get:107 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython2.7-dev amd64 2.7.12-1ubuntu0~16.04.3 [27.8 MB] 21:43:08 Get:108 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-rostime amd64 0.6.11-0xenial-20180824-082916-0800 [53.9 kB] 21:43:08 Get:109 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-roscpp-traits amd64 0.6.11-0xenial-20180824-083319-0800 [9,896 B] 21:43:08 Get:110 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-roscpp-serialization amd64 0.6.11-0xenial-20180824-083414-0800 [12.3 kB] 21:43:08 Get:111 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-message-runtime amd64 0.4.12-0xenial-20180824-083918-0800 [4,448 B] 21:43:08 Get:112 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-ros-environment amd64 1.0.0-0xenial-20180809-133925-0800 [5,106 B] 21:43:08 Get:113 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-rosbuild amd64 1.14.4-0xenial-20180824-084011-0800 [27.5 kB] 21:43:08 Get:114 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-rosconsole amd64 1.12.14-0xenial-20180824-085351-0800 [82.0 kB] 21:43:08 Get:115 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-std-msgs amd64 0.5.11-0xenial-20180824-085549-0800 [56.9 kB] 21:43:08 Get:116 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-rosgraph-msgs amd64 1.11.2-0xenial-20180824-085730-0800 [24.8 kB] 21:43:08 Get:117 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-xmlrpcpp amd64 1.12.14-0xenial-20180824-083404-0800 [57.9 kB] 21:43:08 Get:118 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-roscpp amd64 1.12.14-0xenial-20180824-091453-0800 [501 kB] 21:43:10 Get:119 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-rosgraph amd64 1.12.14-0xenial-20180824-082526-0800 [44.5 kB] 21:43:10 Get:120 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-rospack amd64 2.4.4-0xenial-20180809-135522-0800 [96.7 kB] 21:43:10 Get:121 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython-dev amd64 2.7.12-1~16.04 [7,840 B] 21:43:10 Get:122 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-roslib amd64 1.14.4-0xenial-20180824-082628-0800 [90.0 kB] 21:43:10 Get:123 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python2.7-dev amd64 2.7.12-1ubuntu0~16.04.3 [276 kB] 21:43:10 Get:124 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-rospy amd64 1.12.14-0xenial-20180824-093546-0800 [127 kB] 21:43:10 Get:125 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-dev amd64 2.7.12-1~16.04 [1,186 B] 21:43:10 Get:126 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-python1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [149 kB] 21:43:10 Get:127 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-python-dev amd64 1.58.0.1ubuntu1 [3,170 B] 21:43:10 Get:128 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libboost-random1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [11.7 kB] 21:43:10 Get:129 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-random1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [11.1 kB] 21:43:10 Get:130 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-random-dev amd64 1.58.0.1ubuntu1 [2,790 B] 21:43:10 Get:131 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-regex-dev amd64 1.58.0.1ubuntu1 [3,058 B] 21:43:10 Get:132 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-serialization-dev amd64 1.58.0.1ubuntu1 [3,026 B] 21:43:10 Get:133 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-signals1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [31.5 kB] 21:43:10 Get:134 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-signals1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [34.8 kB] 21:43:10 Get:135 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-signals-dev amd64 1.58.0.1ubuntu1 [2,856 B] 21:43:10 Get:136 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-system-dev amd64 1.58.0.1ubuntu1 [2,930 B] 21:43:10 Get:137 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-test-dev amd64 1.58.0.1ubuntu1 [2,830 B] 21:43:10 Get:138 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-thread-dev amd64 1.58.0.1ubuntu1 [2,818 B] 21:43:10 Get:139 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-timer1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [10.2 kB] 21:43:10 Get:140 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-timer1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [9,632 B] 21:43:10 Get:141 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-timer-dev amd64 1.58.0.1ubuntu1 [2,922 B] 21:43:10 Get:142 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-wave1.58.0 amd64 1.58.0+dfsg-5ubuntu3.1 [184 kB] 21:43:10 Get:143 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libboost-wave1.58-dev amd64 1.58.0+dfsg-5ubuntu3.1 [245 kB] 21:43:10 Get:144 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-wave-dev amd64 1.58.0.1ubuntu1 [2,838 B] 21:43:10 Get:145 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libboost-all-dev amd64 1.58.0.1ubuntu1 [2,228 B] 21:43:10 Get:146 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgfortran3 amd64 5.4.0-6ubuntu1~16.04.10 [260 kB] 21:43:10 Get:147 http://archive.ubuntu.com/ubuntu xenial/main amd64 liblapack3 amd64 3.6.0-2ubuntu2 [1,938 kB] 21:43:10 Get:148 http://archive.ubuntu.com/ubuntu xenial/universe amd64 liblog4cxx10v5 amd64 0.10.0-10ubuntu1 [416 kB] 21:43:10 Get:149 http://archive.ubuntu.com/ubuntu xenial/universe amd64 liblog4cxx-dev amd64 0.10.0-10ubuntu1 [683 kB] 21:43:10 Get:150 http://archive.ubuntu.com/ubuntu xenial/universe amd64 liblog4cxx10-dev amd64 0.10.0-10ubuntu1 [1,448 B] 21:43:10 Get:151 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpciaccess0 amd64 0.13.4-1 [18.1 kB] 21:43:10 Get:152 http://archive.ubuntu.com/ubuntu xenial/main amd64 libtinyxml2.6.2v5 amd64 2.6.2-3 [29.7 kB] 21:43:10 Get:153 http://archive.ubuntu.com/ubuntu xenial/main amd64 libtinyxml-dev amd64 2.6.2-3 [44.2 kB] 21:43:10 Get:154 http://archive.ubuntu.com/ubuntu xenial/main amd64 libtool all 2.4.6-0.1 [193 kB] 21:43:10 Get:155 http://archive.ubuntu.com/ubuntu xenial/main amd64 pkg-config amd64 0.29.1-0ubuntu1 [45.0 kB] 21:43:10 Get:156 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-netifaces amd64 0.10.4-0.1build2 [16.7 kB] 21:43:10 Get:157 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-numpy amd64 1:1.11.0-1ubuntu1 [1,763 kB] 21:43:10 Get:158 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-yaml amd64 3.11-3build1 [105 kB] 21:43:10 Get:159 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-setuptools all 20.7.0-1 [169 kB] 21:43:10 Get:160 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libconsole-bridge0.2v5 amd64 0.3.2-1 [8,370 B] 21:43:10 Get:161 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libconsole-bridge-dev amd64 0.3.2-1 [5,754 B] 21:43:10 Get:162 http://archive.ubuntu.com/ubuntu xenial/main amd64 ocl-icd-libopencl1 amd64 2.2.8-1 [29.7 kB] 21:43:10 Get:163 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libhwloc-plugins amd64 1.11.2-3 [13.2 kB] 21:43:11 debconf: delaying package configuration, since apt-utils is not installed 21:43:11 Fetched 64.1 MB in 3s (17.5 MB/s) 21:43:11 Selecting previously unselected package libyaml-0-2:amd64. 21:43:11 (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 ... 22617 files and directories currently installed.) 21:43:11 Preparing to unpack .../libyaml-0-2_0.1.6-3_amd64.deb ... 21:43:11 Unpacking libyaml-0-2:amd64 (0.1.6-3) ... 21:43:13 Selecting previously unselected package distro-info-data. 21:43:13 Preparing to unpack .../distro-info-data_0.28ubuntu0.8_all.deb ... 21:43:13 Unpacking distro-info-data (0.28ubuntu0.8) ... 21:43:13 Selecting previously unselected package lsb-release. 21:43:13 Preparing to unpack .../lsb-release_9.20160110ubuntu0.2_all.deb ... 21:43:13 Unpacking lsb-release (9.20160110ubuntu0.2) ... 21:43:13 Selecting previously unselected package libnuma1:amd64. 21:43:13 Preparing to unpack .../libnuma1_2.0.11-1ubuntu1.1_amd64.deb ... 21:43:14 Unpacking libnuma1:amd64 (2.0.11-1ubuntu1.1) ... 21:43:14 Selecting previously unselected package icu-devtools. 21:43:14 Preparing to unpack .../icu-devtools_55.1-7ubuntu0.4_amd64.deb ... 21:43:14 Unpacking icu-devtools (55.1-7ubuntu0.4) ... 21:43:14 Selecting previously unselected package libapr1:amd64. 21:43:14 Preparing to unpack .../libapr1_1.5.2-3_amd64.deb ... 21:43:14 Unpacking libapr1:amd64 (1.5.2-3) ... 21:43:14 Selecting previously unselected package uuid-dev:amd64. 21:43:14 Preparing to unpack .../uuid-dev_2.27.1-6ubuntu3.6_amd64.deb ... 21:43:14 Unpacking uuid-dev:amd64 (2.27.1-6ubuntu3.6) ... 21:43:14 Selecting previously unselected package libsctp1:amd64. 21:43:14 Preparing to unpack .../libsctp1_1.0.16+dfsg-3_amd64.deb ... 21:43:14 Unpacking libsctp1:amd64 (1.0.16+dfsg-3) ... 21:43:15 Selecting previously unselected package libsctp-dev. 21:43:15 Preparing to unpack .../libsctp-dev_1.0.16+dfsg-3_amd64.deb ... 21:43:15 Unpacking libsctp-dev (1.0.16+dfsg-3) ... 21:43:15 Selecting previously unselected package libapr1-dev. 21:43:15 Preparing to unpack .../libapr1-dev_1.5.2-3_amd64.deb ... 21:43:15 Unpacking libapr1-dev (1.5.2-3) ... 21:43:19 Selecting previously unselected package libaprutil1:amd64. 21:43:19 Preparing to unpack .../libaprutil1_1.5.4-1build1_amd64.deb ... 21:43:19 Unpacking libaprutil1:amd64 (1.5.4-1build1) ... 21:43:19 Selecting previously unselected package libldap2-dev:amd64. 21:43:19 Preparing to unpack .../libldap2-dev_2.4.42+dfsg-2ubuntu3.3_amd64.deb ... 21:43:19 Unpacking libldap2-dev:amd64 (2.4.42+dfsg-2ubuntu3.3) ... 21:43:20 Selecting previously unselected package libexpat1-dev:amd64. 21:43:20 Preparing to unpack .../libexpat1-dev_2.1.0-7ubuntu0.16.04.3_amd64.deb ... 21:43:20 Unpacking libexpat1-dev:amd64 (2.1.0-7ubuntu0.16.04.3) ... 21:43:20 Selecting previously unselected package libaprutil1-dev. 21:43:20 Preparing to unpack .../libaprutil1-dev_1.5.4-1build1_amd64.deb ... 21:43:20 Unpacking libaprutil1-dev (1.5.4-1build1) ... 21:43:21 Selecting previously unselected package libblas-common. 21:43:21 Preparing to unpack .../libblas-common_3.6.0-2ubuntu2_amd64.deb ... 21:43:21 Unpacking libblas-common (3.6.0-2ubuntu2) ... 21:43:21 Selecting previously unselected package libblas3. 21:43:21 Preparing to unpack .../libblas3_3.6.0-2ubuntu2_amd64.deb ... 21:43:21 Unpacking libblas3 (3.6.0-2ubuntu2) ... 21:43:21 Selecting previously unselected package libboost1.58-dev:amd64. 21:43:21 Preparing to unpack .../libboost1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:43:21 Unpacking libboost1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:43:58 Selecting previously unselected package libboost-dev:amd64. 21:43:58 Preparing to unpack .../libboost-dev_1.58.0.1ubuntu1_amd64.deb ... 21:43:58 Unpacking libboost-dev:amd64 (1.58.0.1ubuntu1) ... 21:43:58 Selecting previously unselected package libboost1.58-tools-dev. 21:43:58 Preparing to unpack .../libboost1.58-tools-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:43:58 Unpacking libboost1.58-tools-dev (1.58.0+dfsg-5ubuntu3.1) ... 21:43:59 Selecting previously unselected package libboost-tools-dev. 21:43:59 Preparing to unpack .../libboost-tools-dev_1.58.0.1ubuntu1_amd64.deb ... 21:43:59 Unpacking libboost-tools-dev (1.58.0.1ubuntu1) ... 21:43:59 Selecting previously unselected package libboost-atomic1.58.0:amd64. 21:43:59 Preparing to unpack .../libboost-atomic1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:43:59 Unpacking libboost-atomic1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:43:59 Selecting previously unselected package libboost-atomic1.58-dev:amd64. 21:43:59 Preparing to unpack .../libboost-atomic1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:43:59 Unpacking libboost-atomic1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:43:59 Selecting previously unselected package libboost-atomic-dev:amd64. 21:43:59 Preparing to unpack .../libboost-atomic-dev_1.58.0.1ubuntu1_amd64.deb ... 21:43:59 Unpacking libboost-atomic-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:00 Selecting previously unselected package libboost-system1.58.0:amd64. 21:44:00 Preparing to unpack .../libboost-system1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:00 Unpacking libboost-system1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:00 Selecting previously unselected package libboost-chrono1.58.0:amd64. 21:44:00 Preparing to unpack .../libboost-chrono1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:00 Unpacking libboost-chrono1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:00 Selecting previously unselected package libboost-chrono1.58-dev:amd64. 21:44:00 Preparing to unpack .../libboost-chrono1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:00 Unpacking libboost-chrono1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:00 Selecting previously unselected package libboost-chrono-dev:amd64. 21:44:00 Preparing to unpack .../libboost-chrono-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:00 Unpacking libboost-chrono-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:01 Selecting previously unselected package libboost-thread1.58.0:amd64. 21:44:01 Preparing to unpack .../libboost-thread1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:01 Unpacking libboost-thread1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:01 Selecting previously unselected package libboost-context1.58.0:amd64. 21:44:01 Preparing to unpack .../libboost-context1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:01 Unpacking libboost-context1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:01 Selecting previously unselected package libboost-context1.58-dev:amd64. 21:44:01 Preparing to unpack .../libboost-context1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:01 Unpacking libboost-context1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:01 Selecting previously unselected package libboost-context-dev:amd64. 21:44:01 Preparing to unpack .../libboost-context-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:01 Unpacking libboost-context-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:02 Selecting previously unselected package libboost-coroutine1.58.0:amd64. 21:44:02 Preparing to unpack .../libboost-coroutine1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:02 Unpacking libboost-coroutine1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:02 Selecting previously unselected package libboost-coroutine1.58-dev:amd64. 21:44:02 Preparing to unpack .../libboost-coroutine1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:02 Unpacking libboost-coroutine1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:03 Selecting previously unselected package libboost-coroutine-dev:amd64. 21:44:03 Preparing to unpack .../libboost-coroutine-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:03 Unpacking libboost-coroutine-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:03 Selecting previously unselected package libboost-date-time1.58.0:amd64. 21:44:03 Preparing to unpack .../libboost-date-time1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:03 Unpacking libboost-date-time1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:03 Selecting previously unselected package libboost-serialization1.58.0:amd64. 21:44:03 Preparing to unpack .../libboost-serialization1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:03 Unpacking libboost-serialization1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:04 Selecting previously unselected package libboost-serialization1.58-dev:amd64. 21:44:04 Preparing to unpack .../libboost-serialization1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:04 Unpacking libboost-serialization1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:05 Selecting previously unselected package libboost-date-time1.58-dev:amd64. 21:44:05 Preparing to unpack .../libboost-date-time1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:05 Unpacking libboost-date-time1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:07 Selecting previously unselected package libboost-date-time-dev:amd64. 21:44:07 Preparing to unpack .../libboost-date-time-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:07 Unpacking libboost-date-time-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:07 Selecting previously unselected package libboost-exception1.58-dev:amd64. 21:44:07 Preparing to unpack .../libboost-exception1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:08 Unpacking libboost-exception1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:08 Selecting previously unselected package libboost-exception-dev:amd64. 21:44:08 Preparing to unpack .../libboost-exception-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:08 Unpacking libboost-exception-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:08 Selecting previously unselected package libboost-filesystem1.58.0:amd64. 21:44:08 Preparing to unpack .../libboost-filesystem1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:08 Unpacking libboost-filesystem1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:08 Selecting previously unselected package libboost-system1.58-dev:amd64. 21:44:08 Preparing to unpack .../libboost-system1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:08 Unpacking libboost-system1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:08 Selecting previously unselected package libboost-filesystem1.58-dev:amd64. 21:44:08 Preparing to unpack .../libboost-filesystem1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:08 Unpacking libboost-filesystem1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:08 Selecting previously unselected package libboost-filesystem-dev:amd64. 21:44:08 Preparing to unpack .../libboost-filesystem-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:08 Unpacking libboost-filesystem-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:08 Selecting previously unselected package libboost-regex1.58.0:amd64. 21:44:08 Preparing to unpack .../libboost-regex1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:08 Unpacking libboost-regex1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:09 Selecting previously unselected package libboost-graph1.58.0:amd64. 21:44:09 Preparing to unpack .../libboost-graph1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:09 Unpacking libboost-graph1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:09 Selecting previously unselected package libboost-test1.58.0:amd64. 21:44:09 Preparing to unpack .../libboost-test1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:09 Unpacking libboost-test1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:09 Selecting previously unselected package libboost-test1.58-dev:amd64. 21:44:09 Preparing to unpack .../libboost-test1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:09 Unpacking libboost-test1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:10 Selecting previously unselected package libboost-graph1.58-dev:amd64. 21:44:10 Preparing to unpack .../libboost-graph1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:10 Unpacking libboost-graph1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:10 Selecting previously unselected package libboost-graph-dev:amd64. 21:44:10 Preparing to unpack .../libboost-graph-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:10 Unpacking libboost-graph-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:10 Selecting previously unselected package libltdl7:amd64. 21:44:10 Preparing to unpack .../libltdl7_2.4.6-0.1_amd64.deb ... 21:44:10 Unpacking libltdl7:amd64 (2.4.6-0.1) ... 21:44:10 Selecting previously unselected package libhwloc5:amd64. 21:44:10 Preparing to unpack .../libhwloc5_1.11.2-3_amd64.deb ... 21:44:10 Unpacking libhwloc5:amd64 (1.11.2-3) ... 21:44:11 Selecting previously unselected package libibverbs1. 21:44:11 Preparing to unpack .../libibverbs1_1.1.8-1.1ubuntu2_amd64.deb ... 21:44:11 Unpacking libibverbs1 (1.1.8-1.1ubuntu2) ... 21:44:13 Selecting previously unselected package libopenmpi1.10. 21:44:13 Preparing to unpack .../libopenmpi1.10_1.10.2-8ubuntu1_amd64.deb ... 21:44:13 Unpacking libopenmpi1.10 (1.10.2-8ubuntu1) ... 21:44:14 Selecting previously unselected package libboost-mpi1.58.0. 21:44:14 Preparing to unpack .../libboost-mpi1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:14 Unpacking libboost-mpi1.58.0 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:14 Selecting previously unselected package libboost-graph-parallel1.58.0. 21:44:14 Preparing to unpack .../libboost-graph-parallel1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:14 Unpacking libboost-graph-parallel1.58.0 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:14 Selecting previously unselected package libboost-graph-parallel1.58-dev. 21:44:14 Preparing to unpack .../libboost-graph-parallel1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:14 Unpacking libboost-graph-parallel1.58-dev (1.58.0+dfsg-5ubuntu3.1) ... 21:44:15 Selecting previously unselected package libboost-graph-parallel-dev. 21:44:15 Preparing to unpack .../libboost-graph-parallel-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:15 Unpacking libboost-graph-parallel-dev (1.58.0.1ubuntu1) ... 21:44:15 Selecting previously unselected package libicu-dev:amd64. 21:44:15 Preparing to unpack .../libicu-dev_55.1-7ubuntu0.4_amd64.deb ... 21:44:15 Unpacking libicu-dev:amd64 (55.1-7ubuntu0.4) ... 21:44:22 Selecting previously unselected package libboost-regex1.58-dev:amd64. 21:44:22 Preparing to unpack .../libboost-regex1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:22 Unpacking libboost-regex1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:24 Selecting previously unselected package libboost-iostreams1.58.0:amd64. 21:44:24 Preparing to unpack .../libboost-iostreams1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:24 Unpacking libboost-iostreams1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:25 Selecting previously unselected package libboost-iostreams1.58-dev:amd64. 21:44:25 Preparing to unpack .../libboost-iostreams1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:25 Unpacking libboost-iostreams1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:25 Selecting previously unselected package libboost-iostreams-dev:amd64. 21:44:25 Preparing to unpack .../libboost-iostreams-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:25 Unpacking libboost-iostreams-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:26 Selecting previously unselected package libboost-locale1.58.0:amd64. 21:44:26 Preparing to unpack .../libboost-locale1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:26 Unpacking libboost-locale1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:26 Selecting previously unselected package libboost-locale1.58-dev:amd64. 21:44:26 Preparing to unpack .../libboost-locale1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:26 Unpacking libboost-locale1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:27 Selecting previously unselected package libboost-locale-dev:amd64. 21:44:27 Preparing to unpack .../libboost-locale-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:27 Unpacking libboost-locale-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:27 Selecting previously unselected package libboost-log1.58.0. 21:44:27 Preparing to unpack .../libboost-log1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:27 Unpacking libboost-log1.58.0 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:28 Selecting previously unselected package libboost-thread1.58-dev:amd64. 21:44:28 Preparing to unpack .../libboost-thread1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:28 Unpacking libboost-thread1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:28 Selecting previously unselected package libboost-log1.58-dev. 21:44:28 Preparing to unpack .../libboost-log1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:28 Unpacking libboost-log1.58-dev (1.58.0+dfsg-5ubuntu3.1) ... 21:44:29 Selecting previously unselected package libboost-log-dev. 21:44:29 Preparing to unpack .../libboost-log-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:29 Unpacking libboost-log-dev (1.58.0.1ubuntu1) ... 21:44:30 Selecting previously unselected package libboost-math1.58.0:amd64. 21:44:30 Preparing to unpack .../libboost-math1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:30 Unpacking libboost-math1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:30 Selecting previously unselected package libboost-math1.58-dev:amd64. 21:44:30 Preparing to unpack .../libboost-math1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:30 Unpacking libboost-math1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:31 Selecting previously unselected package libboost-math-dev:amd64. 21:44:31 Preparing to unpack .../libboost-math-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:31 Unpacking libboost-math-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:31 Selecting previously unselected package openmpi-common. 21:44:31 Preparing to unpack .../openmpi-common_1.10.2-8ubuntu1_all.deb ... 21:44:31 Unpacking openmpi-common (1.10.2-8ubuntu1) ... 21:44:31 Selecting previously unselected package libibverbs-dev. 21:44:31 Preparing to unpack .../libibverbs-dev_1.1.8-1.1ubuntu2_amd64.deb ... 21:44:31 Unpacking libibverbs-dev (1.1.8-1.1ubuntu2) ... 21:44:31 Selecting previously unselected package libnuma-dev:amd64. 21:44:31 Preparing to unpack .../libnuma-dev_2.0.11-1ubuntu1.1_amd64.deb ... 21:44:32 Unpacking libnuma-dev:amd64 (2.0.11-1ubuntu1.1) ... 21:44:32 Selecting previously unselected package libltdl-dev:amd64. 21:44:32 Preparing to unpack .../libltdl-dev_2.4.6-0.1_amd64.deb ... 21:44:32 Unpacking libltdl-dev:amd64 (2.4.6-0.1) ... 21:44:32 Selecting previously unselected package libhwloc-dev:amd64. 21:44:32 Preparing to unpack .../libhwloc-dev_1.11.2-3_amd64.deb ... 21:44:32 Unpacking libhwloc-dev:amd64 (1.11.2-3) ... 21:44:37 Selecting previously unselected package libopenmpi-dev. 21:44:37 Preparing to unpack .../libopenmpi-dev_1.10.2-8ubuntu1_amd64.deb ... 21:44:37 Unpacking libopenmpi-dev (1.10.2-8ubuntu1) ... 21:44:38 Selecting previously unselected package mpi-default-dev. 21:44:38 Preparing to unpack .../mpi-default-dev_1.4_amd64.deb ... 21:44:38 Unpacking mpi-default-dev (1.4) ... 21:44:38 Selecting previously unselected package libboost-mpi1.58-dev. 21:44:38 Preparing to unpack .../libboost-mpi1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:38 Unpacking libboost-mpi1.58-dev (1.58.0+dfsg-5ubuntu3.1) ... 21:44:38 Selecting previously unselected package libboost-mpi-dev. 21:44:38 Preparing to unpack .../libboost-mpi-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:38 Unpacking libboost-mpi-dev (1.58.0.1ubuntu1) ... 21:44:39 Selecting previously unselected package libboost-python1.58.0. 21:44:39 Preparing to unpack .../libboost-python1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:39 Unpacking libboost-python1.58.0 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:39 Selecting previously unselected package openmpi-bin. 21:44:39 Preparing to unpack .../openmpi-bin_1.10.2-8ubuntu1_amd64.deb ... 21:44:39 Unpacking openmpi-bin (1.10.2-8ubuntu1) ... 21:44:39 Selecting previously unselected package mpi-default-bin. 21:44:39 Preparing to unpack .../mpi-default-bin_1.4_amd64.deb ... 21:44:39 Unpacking mpi-default-bin (1.4) ... 21:44:39 Selecting previously unselected package libboost-mpi-python1.58.0. 21:44:39 Preparing to unpack .../libboost-mpi-python1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:40 Unpacking libboost-mpi-python1.58.0 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:40 Selecting previously unselected package libboost-mpi-python1.58-dev. 21:44:40 Preparing to unpack .../libboost-mpi-python1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:40 Unpacking libboost-mpi-python1.58-dev (1.58.0+dfsg-5ubuntu3.1) ... 21:44:40 Selecting previously unselected package libboost-mpi-python-dev. 21:44:40 Preparing to unpack .../libboost-mpi-python-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:40 Unpacking libboost-mpi-python-dev (1.58.0.1ubuntu1) ... 21:44:40 Selecting previously unselected package libboost-program-options1.58.0:amd64. 21:44:40 Preparing to unpack .../libboost-program-options1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:40 Unpacking libboost-program-options1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:41 Selecting previously unselected package libboost-program-options1.58-dev:amd64. 21:44:41 Preparing to unpack .../libboost-program-options1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:41 Unpacking libboost-program-options1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:42 Selecting previously unselected package libboost-program-options-dev:amd64. 21:44:42 Preparing to unpack .../libboost-program-options-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:42 Unpacking libboost-program-options-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:42 Selecting previously unselected package libpython2.7:amd64. 21:44:42 Preparing to unpack .../libpython2.7_2.7.12-1ubuntu0~16.04.3_amd64.deb ... 21:44:42 Unpacking libpython2.7:amd64 (2.7.12-1ubuntu0~16.04.3) ... 21:44:43 Selecting previously unselected package libpython2.7-dev:amd64. 21:44:43 Preparing to unpack .../libpython2.7-dev_2.7.12-1ubuntu0~16.04.3_amd64.deb ... 21:44:43 Unpacking libpython2.7-dev:amd64 (2.7.12-1ubuntu0~16.04.3) ... 21:44:51 Selecting previously unselected package libpython-dev:amd64. 21:44:51 Preparing to unpack .../libpython-dev_2.7.12-1~16.04_amd64.deb ... 21:44:51 Unpacking libpython-dev:amd64 (2.7.12-1~16.04) ... 21:44:51 Selecting previously unselected package python2.7-dev. 21:44:51 Preparing to unpack .../python2.7-dev_2.7.12-1ubuntu0~16.04.3_amd64.deb ... 21:44:51 Unpacking python2.7-dev (2.7.12-1ubuntu0~16.04.3) ... 21:44:51 Selecting previously unselected package python-dev. 21:44:51 Preparing to unpack .../python-dev_2.7.12-1~16.04_amd64.deb ... 21:44:51 Unpacking python-dev (2.7.12-1~16.04) ... 21:44:51 Selecting previously unselected package libboost-python1.58-dev. 21:44:51 Preparing to unpack .../libboost-python1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:51 Unpacking libboost-python1.58-dev (1.58.0+dfsg-5ubuntu3.1) ... 21:44:52 Selecting previously unselected package libboost-python-dev. 21:44:52 Preparing to unpack .../libboost-python-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:52 Unpacking libboost-python-dev (1.58.0.1ubuntu1) ... 21:44:52 Selecting previously unselected package libboost-random1.58.0:amd64. 21:44:52 Preparing to unpack .../libboost-random1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:52 Unpacking libboost-random1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:52 Selecting previously unselected package libboost-random1.58-dev:amd64. 21:44:52 Preparing to unpack .../libboost-random1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:52 Unpacking libboost-random1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:53 Selecting previously unselected package libboost-random-dev:amd64. 21:44:53 Preparing to unpack .../libboost-random-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:53 Unpacking libboost-random-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:53 Selecting previously unselected package libboost-regex-dev:amd64. 21:44:53 Preparing to unpack .../libboost-regex-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:53 Unpacking libboost-regex-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:53 Selecting previously unselected package libboost-serialization-dev:amd64. 21:44:53 Preparing to unpack .../libboost-serialization-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:53 Unpacking libboost-serialization-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:53 Selecting previously unselected package libboost-signals1.58.0:amd64. 21:44:53 Preparing to unpack .../libboost-signals1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:53 Unpacking libboost-signals1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:54 Selecting previously unselected package libboost-signals1.58-dev:amd64. 21:44:54 Preparing to unpack .../libboost-signals1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:54 Unpacking libboost-signals1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:54 Selecting previously unselected package libboost-signals-dev:amd64. 21:44:54 Preparing to unpack .../libboost-signals-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:54 Unpacking libboost-signals-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:54 Selecting previously unselected package libboost-system-dev:amd64. 21:44:54 Preparing to unpack .../libboost-system-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:54 Unpacking libboost-system-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:54 Selecting previously unselected package libboost-test-dev:amd64. 21:44:54 Preparing to unpack .../libboost-test-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:54 Unpacking libboost-test-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:54 Selecting previously unselected package libboost-thread-dev:amd64. 21:44:54 Preparing to unpack .../libboost-thread-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:54 Unpacking libboost-thread-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:56 Selecting previously unselected package libboost-timer1.58.0:amd64. 21:44:56 Preparing to unpack .../libboost-timer1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:57 Unpacking libboost-timer1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:58 Selecting previously unselected package libboost-timer1.58-dev:amd64. 21:44:58 Preparing to unpack .../libboost-timer1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:58 Unpacking libboost-timer1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:58 Selecting previously unselected package libboost-timer-dev:amd64. 21:44:58 Preparing to unpack .../libboost-timer-dev_1.58.0.1ubuntu1_amd64.deb ... 21:44:58 Unpacking libboost-timer-dev:amd64 (1.58.0.1ubuntu1) ... 21:44:59 Selecting previously unselected package libboost-wave1.58.0:amd64. 21:44:59 Preparing to unpack .../libboost-wave1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:59 Unpacking libboost-wave1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:44:59 Selecting previously unselected package libboost-wave1.58-dev:amd64. 21:44:59 Preparing to unpack .../libboost-wave1.58-dev_1.58.0+dfsg-5ubuntu3.1_amd64.deb ... 21:44:59 Unpacking libboost-wave1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:45:00 Selecting previously unselected package libboost-wave-dev:amd64. 21:45:00 Preparing to unpack .../libboost-wave-dev_1.58.0.1ubuntu1_amd64.deb ... 21:45:02 Unpacking libboost-wave-dev:amd64 (1.58.0.1ubuntu1) ... 21:45:04 Selecting previously unselected package libboost-all-dev. 21:45:04 Preparing to unpack .../libboost-all-dev_1.58.0.1ubuntu1_amd64.deb ... 21:45:04 Unpacking libboost-all-dev (1.58.0.1ubuntu1) ... 21:45:06 Selecting previously unselected package libgfortran3:amd64. 21:45:06 Preparing to unpack .../libgfortran3_5.4.0-6ubuntu1~16.04.10_amd64.deb ... 21:45:07 Unpacking libgfortran3:amd64 (5.4.0-6ubuntu1~16.04.10) ... 21:45:08 Selecting previously unselected package liblapack3. 21:45:08 Preparing to unpack .../liblapack3_3.6.0-2ubuntu2_amd64.deb ... 21:45:08 Unpacking liblapack3 (3.6.0-2ubuntu2) ... 21:45:09 Selecting previously unselected package liblog4cxx10v5:amd64. 21:45:09 Preparing to unpack .../liblog4cxx10v5_0.10.0-10ubuntu1_amd64.deb ... 21:45:09 Unpacking liblog4cxx10v5:amd64 (0.10.0-10ubuntu1) ... 21:45:10 Selecting previously unselected package liblog4cxx-dev. 21:45:10 Preparing to unpack .../liblog4cxx-dev_0.10.0-10ubuntu1_amd64.deb ... 21:45:10 Unpacking liblog4cxx-dev (0.10.0-10ubuntu1) ... 21:45:12 Selecting previously unselected package liblog4cxx10-dev. 21:45:12 Preparing to unpack .../liblog4cxx10-dev_0.10.0-10ubuntu1_amd64.deb ... 21:45:13 Unpacking liblog4cxx10-dev (0.10.0-10ubuntu1) ... 21:45:14 Selecting previously unselected package libpciaccess0:amd64. 21:45:14 Preparing to unpack .../libpciaccess0_0.13.4-1_amd64.deb ... 21:45:15 Unpacking libpciaccess0:amd64 (0.13.4-1) ... 21:45:17 Selecting previously unselected package libtinyxml2.6.2v5:amd64. 21:45:17 Preparing to unpack .../libtinyxml2.6.2v5_2.6.2-3_amd64.deb ... 21:45:17 Unpacking libtinyxml2.6.2v5:amd64 (2.6.2-3) ... 21:45:18 Selecting previously unselected package libtinyxml-dev:amd64. 21:45:18 Preparing to unpack .../libtinyxml-dev_2.6.2-3_amd64.deb ... 21:45:18 Unpacking libtinyxml-dev:amd64 (2.6.2-3) ... 21:45:19 Selecting previously unselected package libtool. 21:45:19 Preparing to unpack .../libtool_2.4.6-0.1_all.deb ... 21:45:19 Unpacking libtool (2.4.6-0.1) ... 21:45:20 Selecting previously unselected package pkg-config. 21:45:20 Preparing to unpack .../pkg-config_0.29.1-0ubuntu1_amd64.deb ... 21:45:21 Unpacking pkg-config (0.29.1-0ubuntu1) ... 21:45:23 Selecting previously unselected package python-netifaces. 21:45:23 Preparing to unpack .../python-netifaces_0.10.4-0.1build2_amd64.deb ... 21:45:23 Unpacking python-netifaces (0.10.4-0.1build2) ... 21:45:24 Selecting previously unselected package python-numpy. 21:45:24 Preparing to unpack .../python-numpy_1%3a1.11.0-1ubuntu1_amd64.deb ... 21:45:25 Unpacking python-numpy (1:1.11.0-1ubuntu1) ... 21:45:27 Selecting previously unselected package python-yaml. 21:45:27 Preparing to unpack .../python-yaml_3.11-3build1_amd64.deb ... 21:45:27 Unpacking python-yaml (3.11-3build1) ... 21:45:28 Selecting previously unselected package python-rospkg-modules. 21:45:28 Preparing to unpack .../python-rospkg-modules_1.1.7-1_all.deb ... 21:45:29 Unpacking python-rospkg-modules (1.1.7-1) ... 21:45:30 Selecting previously unselected package python-rospkg. 21:45:30 Preparing to unpack .../python-rospkg_1.1.7-100_all.deb ... 21:45:30 Unpacking python-rospkg (1.1.7-100) ... 21:45:30 Selecting previously unselected package python-setuptools. 21:45:30 Preparing to unpack .../python-setuptools_20.7.0-1_all.deb ... 21:45:31 Unpacking python-setuptools (20.7.0-1) ... 21:45:33 Selecting previously unselected package python-rosdistro-modules. 21:45:33 Preparing to unpack .../python-rosdistro-modules_0.6.9-1_all.deb ... 21:45:33 Unpacking python-rosdistro-modules (0.6.9-1) ... 21:45:34 Selecting previously unselected package python-rosdistro. 21:45:34 Preparing to unpack .../python-rosdistro_0.6.9-100_all.deb ... 21:45:34 Unpacking python-rosdistro (0.6.9-100) ... 21:45:35 Selecting previously unselected package python-rosdep. 21:45:35 Preparing to unpack .../python-rosdep_0.12.2-1_all.deb ... 21:45:35 Unpacking python-rosdep (0.12.2-1) ... 21:45:36 Selecting previously unselected package libconsole-bridge0.2v5:amd64. 21:45:36 Preparing to unpack .../libconsole-bridge0.2v5_0.3.2-1_amd64.deb ... 21:45:36 Unpacking libconsole-bridge0.2v5:amd64 (0.3.2-1) ... 21:45:37 Selecting previously unselected package libconsole-bridge-dev:amd64. 21:45:37 Preparing to unpack .../libconsole-bridge-dev_0.3.2-1_amd64.deb ... 21:45:38 Unpacking libconsole-bridge-dev:amd64 (0.3.2-1) ... 21:45:38 Selecting previously unselected package ocl-icd-libopencl1:amd64. 21:45:38 Preparing to unpack .../ocl-icd-libopencl1_2.2.8-1_amd64.deb ... 21:45:38 Unpacking ocl-icd-libopencl1:amd64 (2.2.8-1) ... 21:45:39 Selecting previously unselected package libhwloc-plugins. 21:45:39 Preparing to unpack .../libhwloc-plugins_1.11.2-3_amd64.deb ... 21:45:39 Unpacking libhwloc-plugins (1.11.2-3) ... 21:45:39 Selecting previously unselected package ros-kinetic-cpp-common. 21:45:39 Preparing to unpack .../ros-kinetic-cpp-common_0.6.11-0xenial-20180824-081824-0800_amd64.deb ... 21:45:39 Unpacking ros-kinetic-cpp-common (0.6.11-0xenial-20180824-081824-0800) ... 21:45:40 Selecting previously unselected package ros-kinetic-genmsg. 21:45:40 Preparing to unpack .../ros-kinetic-genmsg_0.5.11-0xenial-20180824-080325-0800_amd64.deb ... 21:45:40 Unpacking ros-kinetic-genmsg (0.5.11-0xenial-20180824-080325-0800) ... 21:45:40 Selecting previously unselected package ros-kinetic-gencpp. 21:45:40 Preparing to unpack .../ros-kinetic-gencpp_0.6.0-0xenial-20180824-081412-0800_amd64.deb ... 21:45:40 Unpacking ros-kinetic-gencpp (0.6.0-0xenial-20180824-081412-0800) ... 21:45:41 Selecting previously unselected package ros-kinetic-geneus. 21:45:41 Preparing to unpack .../ros-kinetic-geneus_2.2.6-0xenial-20180824-081429-0800_amd64.deb ... 21:45:41 Unpacking ros-kinetic-geneus (2.2.6-0xenial-20180824-081429-0800) ... 21:45:41 Selecting previously unselected package ros-kinetic-genlisp. 21:45:41 Preparing to unpack .../ros-kinetic-genlisp_0.4.16-0xenial-20180824-081624-0800_amd64.deb ... 21:45:41 Unpacking ros-kinetic-genlisp (0.4.16-0xenial-20180824-081624-0800) ... 21:45:42 Selecting previously unselected package ros-kinetic-gennodejs. 21:45:42 Preparing to unpack .../ros-kinetic-gennodejs_2.0.1-0xenial-20180824-081715-0800_amd64.deb ... 21:45:42 Unpacking ros-kinetic-gennodejs (2.0.1-0xenial-20180824-081715-0800) ... 21:45:43 Selecting previously unselected package ros-kinetic-genpy. 21:45:43 Preparing to unpack .../ros-kinetic-genpy_0.6.7-0xenial-20180824-081724-0800_amd64.deb ... 21:45:44 Unpacking ros-kinetic-genpy (0.6.7-0xenial-20180824-081724-0800) ... 21:45:44 Selecting previously unselected package ros-kinetic-message-generation. 21:45:44 Preparing to unpack .../ros-kinetic-message-generation_0.4.0-0xenial-20180824-081816-0800_amd64.deb ... 21:45:44 Unpacking ros-kinetic-message-generation (0.4.0-0xenial-20180824-081816-0800) ... 21:45:44 Selecting previously unselected package ros-kinetic-rostime. 21:45:44 Preparing to unpack .../ros-kinetic-rostime_0.6.11-0xenial-20180824-082916-0800_amd64.deb ... 21:45:45 Unpacking ros-kinetic-rostime (0.6.11-0xenial-20180824-082916-0800) ... 21:45:45 Selecting previously unselected package ros-kinetic-roscpp-traits. 21:45:45 Preparing to unpack .../ros-kinetic-roscpp-traits_0.6.11-0xenial-20180824-083319-0800_amd64.deb ... 21:45:45 Unpacking ros-kinetic-roscpp-traits (0.6.11-0xenial-20180824-083319-0800) ... 21:45:45 Selecting previously unselected package ros-kinetic-roscpp-serialization. 21:45:45 Preparing to unpack .../ros-kinetic-roscpp-serialization_0.6.11-0xenial-20180824-083414-0800_amd64.deb ... 21:45:46 Unpacking ros-kinetic-roscpp-serialization (0.6.11-0xenial-20180824-083414-0800) ... 21:45:46 Selecting previously unselected package ros-kinetic-message-runtime. 21:45:46 Preparing to unpack .../ros-kinetic-message-runtime_0.4.12-0xenial-20180824-083918-0800_amd64.deb ... 21:45:47 Unpacking ros-kinetic-message-runtime (0.4.12-0xenial-20180824-083918-0800) ... 21:45:48 Selecting previously unselected package ros-kinetic-ros-environment. 21:45:48 Preparing to unpack .../ros-kinetic-ros-environment_1.0.0-0xenial-20180809-133925-0800_amd64.deb ... 21:45:48 Unpacking ros-kinetic-ros-environment (1.0.0-0xenial-20180809-133925-0800) ... 21:45:48 Selecting previously unselected package ros-kinetic-rosbuild. 21:45:48 Preparing to unpack .../ros-kinetic-rosbuild_1.14.4-0xenial-20180824-084011-0800_amd64.deb ... 21:45:48 Unpacking ros-kinetic-rosbuild (1.14.4-0xenial-20180824-084011-0800) ... 21:45:49 Selecting previously unselected package ros-kinetic-rosconsole. 21:45:49 Preparing to unpack .../ros-kinetic-rosconsole_1.12.14-0xenial-20180824-085351-0800_amd64.deb ... 21:45:49 Unpacking ros-kinetic-rosconsole (1.12.14-0xenial-20180824-085351-0800) ... 21:45:49 Selecting previously unselected package ros-kinetic-std-msgs. 21:45:49 Preparing to unpack .../ros-kinetic-std-msgs_0.5.11-0xenial-20180824-085549-0800_amd64.deb ... 21:45:49 Unpacking ros-kinetic-std-msgs (0.5.11-0xenial-20180824-085549-0800) ... 21:45:50 Selecting previously unselected package ros-kinetic-rosgraph-msgs. 21:45:50 Preparing to unpack .../ros-kinetic-rosgraph-msgs_1.11.2-0xenial-20180824-085730-0800_amd64.deb ... 21:45:50 Unpacking ros-kinetic-rosgraph-msgs (1.11.2-0xenial-20180824-085730-0800) ... 21:45:50 Selecting previously unselected package ros-kinetic-xmlrpcpp. 21:45:50 Preparing to unpack .../ros-kinetic-xmlrpcpp_1.12.14-0xenial-20180824-083404-0800_amd64.deb ... 21:45:50 Unpacking ros-kinetic-xmlrpcpp (1.12.14-0xenial-20180824-083404-0800) ... 21:45:51 Selecting previously unselected package ros-kinetic-roscpp. 21:45:51 Preparing to unpack .../ros-kinetic-roscpp_1.12.14-0xenial-20180824-091453-0800_amd64.deb ... 21:45:51 Unpacking ros-kinetic-roscpp (1.12.14-0xenial-20180824-091453-0800) ... 21:45:52 Selecting previously unselected package ros-kinetic-rosgraph. 21:45:52 Preparing to unpack .../ros-kinetic-rosgraph_1.12.14-0xenial-20180824-082526-0800_amd64.deb ... 21:45:52 Unpacking ros-kinetic-rosgraph (1.12.14-0xenial-20180824-082526-0800) ... 21:45:53 Selecting previously unselected package ros-kinetic-rospack. 21:45:53 Preparing to unpack .../ros-kinetic-rospack_2.4.4-0xenial-20180809-135522-0800_amd64.deb ... 21:45:53 Unpacking ros-kinetic-rospack (2.4.4-0xenial-20180809-135522-0800) ... 21:45:53 Selecting previously unselected package ros-kinetic-roslib. 21:45:53 Preparing to unpack .../ros-kinetic-roslib_1.14.4-0xenial-20180824-082628-0800_amd64.deb ... 21:45:53 Unpacking ros-kinetic-roslib (1.14.4-0xenial-20180824-082628-0800) ... 21:45:54 Selecting previously unselected package ros-kinetic-rospy. 21:45:54 Preparing to unpack .../ros-kinetic-rospy_1.12.14-0xenial-20180824-093546-0800_amd64.deb ... 21:45:54 Unpacking ros-kinetic-rospy (1.12.14-0xenial-20180824-093546-0800) ... 21:45:54 Processing triggers for man-db (2.7.5-1) ... 21:45:59 Processing triggers for libc-bin (2.23-0ubuntu10) ... 21:46:01 Setting up libyaml-0-2:amd64 (0.1.6-3) ... 21:46:01 Setting up distro-info-data (0.28ubuntu0.8) ... 21:46:02 Setting up lsb-release (9.20160110ubuntu0.2) ... 21:46:03 Setting up libnuma1:amd64 (2.0.11-1ubuntu1.1) ... 21:46:03 Setting up icu-devtools (55.1-7ubuntu0.4) ... 21:46:03 Setting up libapr1:amd64 (1.5.2-3) ... 21:46:03 Setting up uuid-dev:amd64 (2.27.1-6ubuntu3.6) ... 21:46:03 Setting up libsctp1:amd64 (1.0.16+dfsg-3) ... 21:46:04 Setting up libsctp-dev (1.0.16+dfsg-3) ... 21:46:04 Setting up libapr1-dev (1.5.2-3) ... 21:46:04 Setting up libaprutil1:amd64 (1.5.4-1build1) ... 21:46:04 Setting up libldap2-dev:amd64 (2.4.42+dfsg-2ubuntu3.3) ... 21:46:04 Setting up libexpat1-dev:amd64 (2.1.0-7ubuntu0.16.04.3) ... 21:46:05 Setting up libaprutil1-dev (1.5.4-1build1) ... 21:46:05 Setting up libblas-common (3.6.0-2ubuntu2) ... 21:46:05 Setting up libblas3 (3.6.0-2ubuntu2) ... 21:46:05 update-alternatives: using /usr/lib/libblas/libblas.so.3 to provide /usr/lib/libblas.so.3 (libblas.so.3) in auto mode 21:46:06 Setting up libboost1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:07 Setting up libboost-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:08 Setting up libboost1.58-tools-dev (1.58.0+dfsg-5ubuntu3.1) ... 21:46:08 Setting up libboost-tools-dev (1.58.0.1ubuntu1) ... 21:46:08 Setting up libboost-atomic1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:08 Setting up libboost-atomic1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:09 Setting up libboost-atomic-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:09 Setting up libboost-system1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:09 Setting up libboost-chrono1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:09 Setting up libboost-chrono1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:09 Setting up libboost-chrono-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:09 Setting up libboost-thread1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:10 Setting up libboost-context1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:10 Setting up libboost-context1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:10 Setting up libboost-context-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:11 Setting up libboost-coroutine1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:11 Setting up libboost-coroutine1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:11 Setting up libboost-coroutine-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:13 Setting up libboost-date-time1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:14 Setting up libboost-serialization1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:14 Setting up libboost-serialization1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:14 Setting up libboost-date-time1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:14 Setting up libboost-date-time-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:14 Setting up libboost-exception1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:14 Setting up libboost-exception-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:14 Setting up libboost-filesystem1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:15 Setting up libboost-system1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:15 Setting up libboost-filesystem1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:15 Setting up libboost-filesystem-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:16 Setting up libboost-regex1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:16 Setting up libboost-graph1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:16 Setting up libboost-test1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:16 Setting up libboost-test1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:16 Setting up libboost-graph1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:16 Setting up libboost-graph-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:16 Setting up libltdl7:amd64 (2.4.6-0.1) ... 21:46:16 Setting up libhwloc5:amd64 (1.11.2-3) ... 21:46:17 Setting up libibverbs1 (1.1.8-1.1ubuntu2) ... 21:46:17 Setting up libopenmpi1.10 (1.10.2-8ubuntu1) ... 21:46:17 Setting up libboost-mpi1.58.0 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:17 Setting up libboost-graph-parallel1.58.0 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:17 Setting up libboost-graph-parallel1.58-dev (1.58.0+dfsg-5ubuntu3.1) ... 21:46:17 Setting up libboost-graph-parallel-dev (1.58.0.1ubuntu1) ... 21:46:17 Setting up libicu-dev:amd64 (55.1-7ubuntu0.4) ... 21:46:18 Setting up libboost-regex1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:18 Setting up libboost-iostreams1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:18 Setting up libboost-iostreams1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:18 Setting up libboost-iostreams-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:18 Setting up libboost-locale1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:18 Setting up libboost-locale1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:19 Setting up libboost-locale-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:19 Setting up libboost-log1.58.0 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:19 Setting up libboost-thread1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:19 Setting up libboost-log1.58-dev (1.58.0+dfsg-5ubuntu3.1) ... 21:46:19 Setting up libboost-log-dev (1.58.0.1ubuntu1) ... 21:46:19 Setting up libboost-math1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:19 Setting up libboost-math1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:19 Setting up libboost-math-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:19 Setting up openmpi-common (1.10.2-8ubuntu1) ... 21:46:19 Setting up libibverbs-dev (1.1.8-1.1ubuntu2) ... 21:46:19 Setting up libnuma-dev:amd64 (2.0.11-1ubuntu1.1) ... 21:46:19 Setting up libltdl-dev:amd64 (2.4.6-0.1) ... 21:46:19 Setting up libhwloc-dev:amd64 (1.11.2-3) ... 21:46:19 Setting up libopenmpi-dev (1.10.2-8ubuntu1) ... 21:46:19 update-alternatives: using /usr/lib/openmpi/include to provide /usr/include/mpi (mpi) in auto mode 21:46:20 Setting up mpi-default-dev (1.4) ... 21:46:20 Setting up libboost-mpi1.58-dev (1.58.0+dfsg-5ubuntu3.1) ... 21:46:20 Setting up libboost-mpi-dev (1.58.0.1ubuntu1) ... 21:46:20 Setting up libboost-python1.58.0 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:20 Setting up openmpi-bin (1.10.2-8ubuntu1) ... 21:46:21 update-alternatives: using /usr/bin/mpirun.openmpi to provide /usr/bin/mpirun (mpirun) in auto mode 21:46:21 Setting up mpi-default-bin (1.4) ... 21:46:21 Setting up libboost-mpi-python1.58.0 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:22 Setting up libboost-mpi-python1.58-dev (1.58.0+dfsg-5ubuntu3.1) ... 21:46:22 Setting up libboost-mpi-python-dev (1.58.0.1ubuntu1) ... 21:46:22 Setting up libboost-program-options1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:22 Setting up libboost-program-options1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:22 Setting up libboost-program-options-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:23 Setting up libpython2.7:amd64 (2.7.12-1ubuntu0~16.04.3) ... 21:46:23 Setting up libpython2.7-dev:amd64 (2.7.12-1ubuntu0~16.04.3) ... 21:46:23 Setting up libpython-dev:amd64 (2.7.12-1~16.04) ... 21:46:23 Setting up python2.7-dev (2.7.12-1ubuntu0~16.04.3) ... 21:46:23 Setting up python-dev (2.7.12-1~16.04) ... 21:46:23 Setting up libboost-python1.58-dev (1.58.0+dfsg-5ubuntu3.1) ... 21:46:24 Setting up libboost-python-dev (1.58.0.1ubuntu1) ... 21:46:24 Setting up libboost-random1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:24 Setting up libboost-random1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:24 Setting up libboost-random-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:24 Setting up libboost-regex-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:24 Setting up libboost-serialization-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:24 Setting up libboost-signals1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:24 Setting up libboost-signals1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:24 Setting up libboost-signals-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:24 Setting up libboost-system-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:24 Setting up libboost-test-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:25 Setting up libboost-thread-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:25 Setting up libboost-timer1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:25 Setting up libboost-timer1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:25 Setting up libboost-timer-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:25 Setting up libboost-wave1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:25 Setting up libboost-wave1.58-dev:amd64 (1.58.0+dfsg-5ubuntu3.1) ... 21:46:25 Setting up libboost-wave-dev:amd64 (1.58.0.1ubuntu1) ... 21:46:25 Setting up libboost-all-dev (1.58.0.1ubuntu1) ... 21:46:25 Setting up libgfortran3:amd64 (5.4.0-6ubuntu1~16.04.10) ... 21:46:25 Setting up liblapack3 (3.6.0-2ubuntu2) ... 21:46:25 update-alternatives: using /usr/lib/lapack/liblapack.so.3 to provide /usr/lib/liblapack.so.3 (liblapack.so.3) in auto mode 21:46:25 Setting up liblog4cxx10v5:amd64 (0.10.0-10ubuntu1) ... 21:46:25 Setting up liblog4cxx-dev (0.10.0-10ubuntu1) ... 21:46:25 Setting up liblog4cxx10-dev (0.10.0-10ubuntu1) ... 21:46:25 Setting up libpciaccess0:amd64 (0.13.4-1) ... 21:46:26 Setting up libtinyxml2.6.2v5:amd64 (2.6.2-3) ... 21:46:26 Setting up libtinyxml-dev:amd64 (2.6.2-3) ... 21:46:26 Setting up libtool (2.4.6-0.1) ... 21:46:26 Setting up pkg-config (0.29.1-0ubuntu1) ... 21:46:27 Setting up python-netifaces (0.10.4-0.1build2) ... 21:46:27 Setting up python-numpy (1:1.11.0-1ubuntu1) ... 21:46:29 Setting up python-yaml (3.11-3build1) ... 21:46:29 Setting up python-rospkg-modules (1.1.7-1) ... 21:46:30 Setting up python-rospkg (1.1.7-100) ... 21:46:30 Setting up python-setuptools (20.7.0-1) ... 21:46:31 Setting up python-rosdistro-modules (0.6.9-1) ... 21:46:32 Setting up python-rosdistro (0.6.9-100) ... 21:46:32 Setting up python-rosdep (0.12.2-1) ... 21:46:33 Setting up libconsole-bridge0.2v5:amd64 (0.3.2-1) ... 21:46:33 Setting up libconsole-bridge-dev:amd64 (0.3.2-1) ... 21:46:33 Setting up ocl-icd-libopencl1:amd64 (2.2.8-1) ... 21:46:33 Setting up libhwloc-plugins (1.11.2-3) ... 21:46:34 Setting up ros-kinetic-cpp-common (0.6.11-0xenial-20180824-081824-0800) ... 21:46:34 Setting up ros-kinetic-genmsg (0.5.11-0xenial-20180824-080325-0800) ... 21:46:34 Setting up ros-kinetic-gencpp (0.6.0-0xenial-20180824-081412-0800) ... 21:46:34 Setting up ros-kinetic-geneus (2.2.6-0xenial-20180824-081429-0800) ... 21:46:34 Setting up ros-kinetic-genlisp (0.4.16-0xenial-20180824-081624-0800) ... 21:46:34 Setting up ros-kinetic-gennodejs (2.0.1-0xenial-20180824-081715-0800) ... 21:46:34 Setting up ros-kinetic-genpy (0.6.7-0xenial-20180824-081724-0800) ... 21:46:34 Setting up ros-kinetic-message-generation (0.4.0-0xenial-20180824-081816-0800) ... 21:46:35 Setting up ros-kinetic-rostime (0.6.11-0xenial-20180824-082916-0800) ... 21:46:35 Setting up ros-kinetic-roscpp-traits (0.6.11-0xenial-20180824-083319-0800) ... 21:46:35 Setting up ros-kinetic-roscpp-serialization (0.6.11-0xenial-20180824-083414-0800) ... 21:46:35 Setting up ros-kinetic-message-runtime (0.4.12-0xenial-20180824-083918-0800) ... 21:46:35 Setting up ros-kinetic-ros-environment (1.0.0-0xenial-20180809-133925-0800) ... 21:46:36 Setting up ros-kinetic-rosbuild (1.14.4-0xenial-20180824-084011-0800) ... 21:46:36 Setting up ros-kinetic-rosconsole (1.12.14-0xenial-20180824-085351-0800) ... 21:46:37 Setting up ros-kinetic-std-msgs (0.5.11-0xenial-20180824-085549-0800) ... 21:46:37 Setting up ros-kinetic-rosgraph-msgs (1.11.2-0xenial-20180824-085730-0800) ... 21:46:37 Setting up ros-kinetic-xmlrpcpp (1.12.14-0xenial-20180824-083404-0800) ... 21:46:37 Setting up ros-kinetic-roscpp (1.12.14-0xenial-20180824-091453-0800) ... 21:46:38 Setting up ros-kinetic-rosgraph (1.12.14-0xenial-20180824-082526-0800) ... 21:46:38 Setting up ros-kinetic-rospack (2.4.4-0xenial-20180809-135522-0800) ... 21:46:39 Setting up ros-kinetic-roslib (1.14.4-0xenial-20180824-082628-0800) ... 21:46:39 Setting up ros-kinetic-rospy (1.12.14-0xenial-20180824-093546-0800) ... 21:46:39 Processing triggers for libc-bin (2.23-0ubuntu10) ... 21:46:39 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:46:39 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:46:39 W: Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:46:39 W: Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:46:39 Invoking 'apt-get clean' 21:47:46 ---> 40e647f8887e 21:47:54 Removing intermediate container e33557f9b490 21:47:54 Step 27 : USER buildfarm 21:47:54 ---> Running in bd4b8351db9f 21:47:54 ---> fd391783b6de 21:47:54 Removing intermediate container bd4b8351db9f 21:47:54 Step 28 : ENTRYPOINT sh -c 21:47:55 ---> Running in 6342bc080464 21:47:55 ---> c52e4bf9e07a 21:47:55 Removing intermediate container 6342bc080464 21:47:55 Step 29 : CMD PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py kinetic rosduct --sourcedeb-dir /tmp/binarydeb 21:47:56 ---> Running in cfc167e064f9 21:47:56 ---> 6f35dcd1ab09 21:47:56 Removing intermediate container cfc167e064f9 21:47:56 Successfully built 6f35dcd1ab09 21:47:56 + echo # END SECTION 21:47:56 # END SECTION21:48:24 [Kbin_uX64__rosduct__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson7564949455780177244.sh 21:48:24 + [ false = false ] 21:48:24 + echo # BEGIN SECTION: Clean up to save disk space on slaves2. Run Dockerfile - build binarydebHide Details
21:47:56 # BEGIN SECTION: Run Dockerfile - build binarydeb 21:47:56 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Kbin_uX64__rosduct__ubuntu_xenial_amd64__binary/docker_build_binarydeb/docker.cid -e=HOME= -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Kbin_uX64__rosduct__ubuntu_xenial_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Kbin_uX64__rosduct__ubuntu_xenial_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_build.kinetic_ubuntu_xenial_amd64_rosduct21:48:24 + echo # END SECTION 21:48:24 # END SECTION2.1. build binarydebHide Details
21:47:57 # BEGIN SUBSECTION: build binarydeb 21:47:57 Package 'ros-kinetic-rosduct' version: 0.0.4-0xenial-20180910-204017+0000 21:47:58 Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:47:58 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:47:58 Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:47:58 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:48:00 Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:48:00 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:48:00 Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:48:00 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:48:00 Invoking 'apt-src build ros-kinetic-rosduct' in '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4' 21:48:00 Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:48:00 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:48:00 Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:48:00 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:48:02 Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:48:02 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:24 and /etc/apt/sources.list:50 21:48:02 Target Packages (multiverse/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:48:02 Target Packages (multiverse/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:26 and /etc/apt/sources.list:52 21:48:03 I: Building in /tmp/binarydeb/ros-kinetic-rosduct-0.0.4 .. 21:48:03 dpkg-buildpackage: source package ros-kinetic-rosduct 21:48:03 dpkg-buildpackage: source version 0.0.4-0xenial-20180910-204017+0000 21:48:03 dpkg-buildpackage: source distribution xenial 21:48:03 dpkg-buildpackage: source changed by Marc Hanheide <marc@hanheide.net> 21:48:04 dpkg-buildpackage: host architecture amd64 21:48:04 dpkg-source --before-build ros-kinetic-rosduct-0.0.4 21:48:04 dpkg-source: info: using options from ros-kinetic-rosduct-0.0.4/debian/source/options: --auto-commit 21:48:04 fakeroot debian/rules clean 21:48:05 dh clean -v --buildsystem=cmake 21:48:05 dh_testdir -O-v -O--buildsystem=cmake 21:48:05 dh_auto_clean -O-v -O--buildsystem=cmake 21:48:05 dh_clean -O-v -O--buildsystem=cmake 21:48:05 rm -f debian/debhelper-build-stamp 21:48:05 rm -f debian/ros-kinetic-rosduct.substvars 21:48:05 rm -f debian/ros-kinetic-rosduct.*.debhelper 21:48:05 rm -rf debian/ros-kinetic-rosduct/ 21:48:05 rm -rf debian/.debhelper/ 21:48:05 rm -f debian/*.debhelper.log 21:48:05 rm -f debian/files 21:48:05 find . \( \( \ 21:48:05 \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS \) -prune -o -type f -a \ 21:48:05 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 21:48:05 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 21:48:05 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 21:48:05 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 21:48:05 \) -exec rm -f {} + \) -o \ 21:48:05 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 21:48:05 rm -f *-stamp 21:48:05 debian/rules build 21:48:05 dh build -v --buildsystem=cmake 21:48:05 dh_testdir -O-v -O--buildsystem=cmake 21:48:05 dh_update_autotools_config -O-v -O--buildsystem=cmake 21:48:05 debian/rules override_dh_auto_configure 21:48:05 make[1]: Entering directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4' 21:48:05 # In case we're installing to a non-standard location, look for a setup.sh 21:48:05 # in the install tree that was dropped by catkin, and source it. It will 21:48:05 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 21:48:05 if [ -f "/opt/ros/kinetic/setup.sh" ]; then . "/opt/ros/kinetic/setup.sh"; fi && \ 21:48:05 dh_auto_configure -- \ 21:48:05 -DCATKIN_BUILD_BINARY_PACKAGE="1" \ 21:48:05 -DCMAKE_INSTALL_PREFIX="/opt/ros/kinetic" \ 21:48:05 -DCMAKE_PREFIX_PATH="/opt/ros/kinetic" 21:48:05 mkdir -p obj-x86_64-linux-gnu 21:48:05 cd obj-x86_64-linux-gnu 21:48:05 cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var -DCATKIN_BUILD_BINARY_PACKAGE=1 -DCMAKE_INSTALL_PREFIX=/opt/ros/kinetic -DCMAKE_PREFIX_PATH=/opt/ros/kinetic 21:48:07 -- The C compiler identification is GNU 5.4.0 21:48:07 -- The CXX compiler identification is GNU 5.4.0 21:48:08 -- Check for working C compiler: /usr/lib/ccache/x86_64-linux-gnu-gcc 21:48:09 -- Check for working C compiler: /usr/lib/ccache/x86_64-linux-gnu-gcc -- works 21:48:09 -- Detecting C compiler ABI info 21:48:09 -- Detecting C compiler ABI info - done 21:48:09 -- Detecting C compile features 21:48:10 -- Detecting C compile features - done 21:48:10 -- Check for working CXX compiler: /usr/lib/ccache/x86_64-linux-gnu-g++ 21:48:10 -- Check for working CXX compiler: /usr/lib/ccache/x86_64-linux-gnu-g++ -- works 21:48:10 -- Detecting CXX compiler ABI info 21:48:10 -- Detecting CXX compiler ABI info - done 21:48:10 -- Detecting CXX compile features 21:48:12 -- Detecting CXX compile features - done 21:48:12 -- Using CATKIN_DEVEL_PREFIX: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/devel 21:48:12 -- Using CMAKE_PREFIX_PATH: /opt/ros/kinetic 21:48:12 -- This workspace overlays: /opt/ros/kinetic 21:48:12 -- Found PythonInterp: /usr/bin/python (found version "2.7.12") 21:48:12 -- Using PYTHON_EXECUTABLE: /usr/bin/python 21:48:12 -- Using Debian Python package layout 21:48:12 -- Using empy: /usr/bin/empy 21:48:12 -- Using CATKIN_ENABLE_TESTING: ON 21:48:12 -- Skip enable_testing() when building binary package 21:48:12 -- Using CATKIN_TEST_RESULTS_DIR: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/test_results 21:48:13 -- Found gmock sources under '/usr/src/gmock': gmock will be built 21:48:13 -- Looking for pthread.h 21:48:14 -- Looking for pthread.h - found 21:48:14 -- Looking for pthread_create 21:48:14 -- Looking for pthread_create - not found 21:48:14 -- Looking for pthread_create in pthreads 21:48:14 -- Looking for pthread_create in pthreads - not found 21:48:14 -- Looking for pthread_create in pthread 21:48:14 -- Looking for pthread_create in pthread - found 21:48:14 -- Found Threads: TRUE 21:48:14 -- Found gtest sources under '/usr/src/gmock': gtests will be built 21:48:14 -- Using Python nosetests: /usr/bin/nosetests-2.7 21:48:15 -- catkin 0.7.14 21:48:16 -- Configuring done 21:48:16 -- Generating done 21:48:16 CMake Warning: 21:48:16 Manually-specified variables were not used by the project: 21:48:16 21:48:16 CMAKE_INSTALL_LOCALSTATEDIR 21:48:16 CMAKE_INSTALL_SYSCONFDIR 21:48:16 21:48:16 21:48:16 -- Build files have been written to: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu 21:48:16 cd /tmp/binarydeb/ros-kinetic-rosduct-0.0.4 21:48:16 make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4' 21:48:16 debian/rules override_dh_auto_build 21:48:16 make[1]: Entering directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4' 21:48:16 # In case we're installing to a non-standard location, look for a setup.sh 21:48:16 # in the install tree that was dropped by catkin, and source it. It will 21:48:16 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 21:48:16 if [ -f "/opt/ros/kinetic/setup.sh" ]; then . "/opt/ros/kinetic/setup.sh"; fi && \ 21:48:16 dh_auto_build 21:48:16 cd obj-x86_64-linux-gnu 21:48:16 make -j1 21:48:16 make[2]: Entering directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu' 21:48:16 /usr/bin/cmake -H/tmp/binarydeb/ros-kinetic-rosduct-0.0.4 -B/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 21:48:16 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/CMakeFiles/progress.marks 21:48:17 make -f CMakeFiles/Makefile2 all 21:48:17 make[3]: Entering directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu' 21:48:17 make[3]: Nothing to be done for 'all'. 21:48:17 make[3]: Leaving directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu' 21:48:17 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/CMakeFiles 0 21:48:17 make[2]: Leaving directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu' 21:48:17 cd /tmp/binarydeb/ros-kinetic-rosduct-0.0.4 21:48:17 make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4' 21:48:17 debian/rules override_dh_auto_test 21:48:17 make[1]: Entering directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4' 21:48:17 # In case we're installing to a non-standard location, look for a setup.sh 21:48:17 # in the install tree that was dropped by catkin, and source it. It will 21:48:17 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 21:48:17 echo -- Running tests. Even if one of them fails the build is not canceled. 21:48:17 -- Running tests. Even if one of them fails the build is not canceled. 21:48:17 if [ -f "/opt/ros/kinetic/setup.sh" ]; then . "/opt/ros/kinetic/setup.sh"; fi && \ 21:48:17 dh_auto_test || true 21:48:17 make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4' 21:48:17 fakeroot debian/rules binary 21:48:17 dh binary -v --buildsystem=cmake 21:48:18 dh_testroot -O-v -O--buildsystem=cmake 21:48:18 dh_prep -O-v -O--buildsystem=cmake 21:48:18 rm -f debian/ros-kinetic-rosduct.substvars 21:48:18 rm -f debian/ros-kinetic-rosduct.*.debhelper 21:48:18 rm -rf debian/ros-kinetic-rosduct/ 21:48:18 dh_installdirs -O-v -O--buildsystem=cmake 21:48:18 install -d debian/ros-kinetic-rosduct 21:48:18 debian/rules override_dh_auto_install 21:48:18 make[1]: Entering directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4' 21:48:18 # In case we're installing to a non-standard location, look for a setup.sh 21:48:18 # in the install tree that was dropped by catkin, and source it. It will 21:48:18 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 21:48:18 if [ -f "/opt/ros/kinetic/setup.sh" ]; then . "/opt/ros/kinetic/setup.sh"; fi && \ 21:48:18 dh_auto_install 21:48:18 cd obj-x86_64-linux-gnu 21:48:18 make -j1 install DESTDIR=/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct AM_UPDATE_INFO_DIR=no 21:48:18 make[2]: Entering directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu' 21:48:18 /usr/bin/cmake -H/tmp/binarydeb/ros-kinetic-rosduct-0.0.4 -B/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 21:48:18 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/CMakeFiles/progress.marks 21:48:19 make -f CMakeFiles/Makefile2 all 21:48:19 make[3]: Entering directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu' 21:48:19 make[3]: Nothing to be done for 'all'. 21:48:19 make[3]: Leaving directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu' 21:48:19 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/CMakeFiles 0 21:48:19 make -f CMakeFiles/Makefile2 preinstall 21:48:19 make[3]: Entering directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu' 21:48:19 make[3]: Nothing to be done for 'preinstall'. 21:48:19 make[3]: Leaving directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu' 21:48:19 Install the project... 21:48:19 /usr/bin/cmake -P cmake_install.cmake 21:48:19 -- Install configuration: "None" 21:48:19 + cd /tmp/binarydeb/ros-kinetic-rosduct-0.0.4 21:48:19 + mkdir -p /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/lib/python2.7/dist-packages 21:48:19 + /usr/bin/env PYTHONPATH=/opt/ros/kinetic/lib/python2.7/dist-packages:/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/lib/python2.7/dist-packages:/opt/ros/kinetic/lib/python2.7/dist-packages:/tmp/ros_buildfarm: CATKIN_BINARY_DIR=/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu /usr/bin/python /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/setup.py build --build-base /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu install --root=/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct --install-layout=deb --prefix=/opt/ros/kinetic --install-scripts=/opt/ros/kinetic/bin 21:48:19 running build 21:48:19 running build_py 21:48:19 creating /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7 21:48:19 creating /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/rosduct 21:48:19 copying src/rosduct/rosduct_impl.py -> /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/rosduct 21:48:19 copying src/rosduct/__init__.py -> /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/rosduct 21:48:19 copying src/rosduct/rosbridge_client.py -> /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/rosduct 21:48:19 copying src/rosduct/conversions.py -> /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/rosduct 21:48:19 running install 21:48:19 running install_lib 21:48:19 creating /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/lib/python2.7/dist-packages/rosduct 21:48:19 copying /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/rosduct/rosduct_impl.py -> /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/lib/python2.7/dist-packages/rosduct 21:48:19 copying /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/rosduct/__init__.py -> /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/lib/python2.7/dist-packages/rosduct 21:48:19 copying /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/rosduct/rosbridge_client.py -> /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/lib/python2.7/dist-packages/rosduct 21:48:19 copying /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/rosduct/conversions.py -> /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/lib/python2.7/dist-packages/rosduct 21:48:19 byte-compiling /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/lib/python2.7/dist-packages/rosduct/rosduct_impl.py to rosduct_impl.pyc 21:48:19 byte-compiling /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/lib/python2.7/dist-packages/rosduct/__init__.py to __init__.pyc 21:48:19 byte-compiling /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/lib/python2.7/dist-packages/rosduct/rosbridge_client.py to rosbridge_client.pyc 21:48:19 byte-compiling /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/lib/python2.7/dist-packages/rosduct/conversions.py to conversions.pyc 21:48:19 running install_egg_info 21:48:19 Writing /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/lib/python2.7/dist-packages/rosduct-0.0.4.egg-info 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/lib/pkgconfig/rosduct.pc 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/cmake/rosductConfig.cmake 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/cmake/rosductConfig-version.cmake 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/package.xml 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/lib/rosduct/rosduct_main.py 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/lib/rosduct/test_node.py 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/launch 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/launch/local_part.launch 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/launch/local_part_remap.launch 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/launch/rosduct.launch 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/launch/local_part_test.launch 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/launch/test_rosduct.launch 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/launch/remote_part.launch 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/launch/remote_part_test.launch 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/config 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/config/test.yaml 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/config/multiple_robots.yaml 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/config/my.yaml 21:48:19 -- Installing: /tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct/opt/ros/kinetic/share/rosduct/config/example.yaml 21:48:19 make[2]: Leaving directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu' 21:48:19 cd /tmp/binarydeb/ros-kinetic-rosduct-0.0.4 21:48:19 make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4' 21:48:19 dh_install -O-v -O--buildsystem=cmake 21:48:19 dh_installdocs -O-v -O--buildsystem=cmake 21:48:19 install -d debian/ros-kinetic-rosduct/usr/share/doc/ros-kinetic-rosduct 21:48:19 dh_installchangelogs -O-v -O--buildsystem=cmake 21:48:19 install -p -m0644 debian/changelog debian/ros-kinetic-rosduct/usr/share/doc/ros-kinetic-rosduct/changelog.Debian 21:48:19 dh_installexamples -O-v -O--buildsystem=cmake 21:48:19 dh_installman -O-v -O--buildsystem=cmake 21:48:19 dh_installcatalogs -O-v -O--buildsystem=cmake 21:48:20 dh_installcron -O-v -O--buildsystem=cmake 21:48:20 dh_installdebconf -O-v -O--buildsystem=cmake 21:48:20 install -d debian/ros-kinetic-rosduct/DEBIAN 21:48:20 dh_installemacsen -O-v -O--buildsystem=cmake 21:48:20 dh_installifupdown -O-v -O--buildsystem=cmake 21:48:20 dh_installinfo -O-v -O--buildsystem=cmake 21:48:20 dh_installinit -O-v -O--buildsystem=cmake 21:48:20 dh_installmenu -O-v -O--buildsystem=cmake 21:48:20 dh_installmime -O-v -O--buildsystem=cmake 21:48:20 dh_installmodules -O-v -O--buildsystem=cmake 21:48:20 dh_installlogcheck -O-v -O--buildsystem=cmake 21:48:20 dh_installlogrotate -O-v -O--buildsystem=cmake 21:48:20 dh_installpam -O-v -O--buildsystem=cmake 21:48:20 dh_installppp -O-v -O--buildsystem=cmake 21:48:20 dh_installudev -O-v -O--buildsystem=cmake 21:48:21 dh_installgsettings -O-v -O--buildsystem=cmake 21:48:21 dh_bugfiles -O-v -O--buildsystem=cmake 21:48:21 dh_ucf -O-v -O--buildsystem=cmake 21:48:21 dh_lintian -O-v -O--buildsystem=cmake 21:48:21 dh_gconf -O-v -O--buildsystem=cmake 21:48:21 dh_icons -O-v -O--buildsystem=cmake 21:48:21 dh_perl -O-v -O--buildsystem=cmake 21:48:21 dh_usrlocal -O-v -O--buildsystem=cmake 21:48:21 dh_link -O-v -O--buildsystem=cmake 21:48:21 dh_installwm -O-v -O--buildsystem=cmake 21:48:21 dh_installxfonts -O-v -O--buildsystem=cmake 21:48:21 dh_strip_nondeterminism -O-v -O--buildsystem=cmake 21:48:22 dh_compress -O-v -O--buildsystem=cmake 21:48:22 cd debian/ros-kinetic-rosduct 21:48:22 chmod a-x usr/share/doc/ros-kinetic-rosduct/changelog.Debian 21:48:22 gzip -9nf usr/share/doc/ros-kinetic-rosduct/changelog.Debian 21:48:22 cd '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4' 21:48:22 dh_fixperms -O-v -O--buildsystem=cmake 21:48:22 find debian/ros-kinetic-rosduct -print0 2>/dev/null | xargs -0r chown --no-dereference 0:0 21:48:22 find debian/ros-kinetic-rosduct ! -type l -print0 2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s 21:48:22 find debian/ros-kinetic-rosduct/usr/share/doc -type f ! -regex 'debian/ros-kinetic-rosduct/usr/share/doc/[^/]*/examples/.*' -print0 2>/dev/null | xargs -0r chmod 0644 21:48:22 find debian/ros-kinetic-rosduct/usr/share/doc -type d -print0 2>/dev/null | xargs -0r chmod 0755 21:48:22 find debian/ros-kinetic-rosduct/usr/share/man debian/ros-kinetic-rosduct/usr/man/ debian/ros-kinetic-rosduct/usr/X11*/man/ -type f -print0 2>/dev/null | xargs -0r chmod 0644 21:48:22 find debian/ros-kinetic-rosduct/usr/include -type f -print0 2>/dev/null | xargs -0r chmod 0644 21:48:22 find debian/ros-kinetic-rosduct/usr/share/applications -type f -print0 2>/dev/null | xargs -0r chmod 0644 21:48:22 find debian/ros-kinetic-rosduct/usr/lib/x86_64-linux-gnu/perl5/5.22 debian/ros-kinetic-rosduct/usr/share/perl5 -type f -perm -5 -name '*.pm' -print0 2>/dev/null | xargs -0r chmod a-X 21:48:22 find debian/ros-kinetic-rosduct -perm -5 -type f \( -name '*.so.*' -o -name '*.so' -o -name '*.la' -o -name '*.a' -o -name '*.js' -o -name '*.css' -o -name '*.jpeg' -o -name '*.jpg' -o -name '*.png' -o -name '*.gif' -o -name '*.cmxs' \) -print0 2>/dev/null | xargs -0r chmod 0644 21:48:22 find debian/ros-kinetic-rosduct/usr/lib -type f -name '*.ali' -print0 2>/dev/null | xargs -0r chmod uga-w 21:48:22 dh_strip -O-v -O--buildsystem=cmake 21:48:23 dh_makeshlibs -O-v -O--buildsystem=cmake 21:48:23 rm -f debian/ros-kinetic-rosduct/DEBIAN/shlibs 21:48:23 debian/rules override_dh_shlibdeps 21:48:23 make[1]: Entering directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4' 21:48:23 # In case we're installing to a non-standard location, look for a setup.sh 21:48:23 # in the install tree that was dropped by catkin, and source it. It will 21:48:23 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 21:48:23 if [ -f "/opt/ros/kinetic/setup.sh" ]; then . "/opt/ros/kinetic/setup.sh"; fi && \ 21:48:23 dh_shlibdeps -l/tmp/binarydeb/ros-kinetic-rosduct-0.0.4/debian/ros-kinetic-rosduct//opt/ros/kinetic/lib/ 21:48:23 make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-rosduct-0.0.4' 21:48:23 dh_installdeb -O-v -O--buildsystem=cmake 21:48:23 dh_gencontrol -O-v -O--buildsystem=cmake 21:48:23 echo misc:Depends= >> debian/ros-kinetic-rosduct.substvars 21:48:23 echo misc:Pre-Depends= >> debian/ros-kinetic-rosduct.substvars 21:48:23 dpkg-gencontrol -pros-kinetic-rosduct -ldebian/changelog -Tdebian/ros-kinetic-rosduct.substvars -Pdebian/ros-kinetic-rosduct 21:48:23 dpkg-gencontrol: warning: Depends field of package ros-kinetic-rosduct: unknown substitution variable ${shlibs:Depends} 21:48:23 chmod 0644 debian/ros-kinetic-rosduct/DEBIAN/control 21:48:23 chown 0:0 debian/ros-kinetic-rosduct/DEBIAN/control 21:48:23 dh_md5sums -O-v -O--buildsystem=cmake 21:48:23 (cd debian/ros-kinetic-rosduct >/dev/null ; find . -type f ! -regex './DEBIAN/.*' -printf '%P\0' | LC_ALL=C sort -z | xargs -r0 md5sum > DEBIAN/md5sums) >/dev/null 21:48:23 chmod 0644 debian/ros-kinetic-rosduct/DEBIAN/md5sums 21:48:23 chown 0:0 debian/ros-kinetic-rosduct/DEBIAN/md5sums 21:48:23 dh_builddeb -O-v -O--buildsystem=cmake 21:48:23 dpkg-deb --build debian/ros-kinetic-rosduct .. 21:48:23 dpkg-deb: building package 'ros-kinetic-rosduct' in '../ros-kinetic-rosduct_0.0.4-0xenial-20180910-204017+0000_amd64.deb'. 21:48:24 dpkg-genchanges -b >../ros-kinetic-rosduct_0.0.4-0xenial-20180910-204017+0000_amd64.changes 21:48:24 dpkg-genchanges: binary-only upload (no source code included) 21:48:24 dpkg-source --after-build ros-kinetic-rosduct-0.0.4 21:48:24 dpkg-source: info: using options from ros-kinetic-rosduct-0.0.4/debian/source/options: --auto-commit 21:48:24 dpkg-buildpackage: binary-only upload (no source included) 21:48:24 I: Successfully built in /tmp/binarydeb/ros-kinetic-rosduct-0.0.4 21:48:24 # END SUBSECTION21:48:24 SSH: Connecting from host [lcas-buildfarm-slave-1] 21:48:24 SSH: Connecting with configuration [repo] ... 21:48:25 SSH: Disconnecting configuration [repo] ... 21:48:25 SSH: Transferred 2 file(s) 21:48:25 Build step 'Send files or execute commands over SSH' changed build result to SUCCESS 21:48:25 Waiting for the completion of Krel_import-package 21:48:27 Krel_import-package #3174 completed. Result was SUCCESS 21:48:27 $ ssh-agent -k 21:48:28 unset SSH_AUTH_SOCK; 21:48:28 unset SSH_AGENT_PID; 21:48:28 echo Agent pid 6922 killed; 21:48:28 [ssh-agent] Stopped. 21:48:28 [description-setter] Description set: 0.0.4-0xenial-20180910-204017+0000 21:48:28 Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered 21:48:28 Triggering a new build of Krel_sync-packages-to-testing_xenial_amd64 21:48:28 Finished: SUCCESS3. Clean up to save disk space on slavesHide Details
21:48:24 # BEGIN SECTION: Clean up to save disk space on slaves 21:48:24 + chmod -R u+w /home/jenkins-slave/workspace/Kbin_uX64__rosduct__ubuntu_xenial_amd64__binary/binarydeb 21:48:24 + rm -fr binarydeb/ros-kinetic-rosduct-0.0.4/CHANGELOG.rst binarydeb/ros-kinetic-rosduct-0.0.4/CMakeLists.txt binarydeb/ros-kinetic-rosduct-0.0.4/README.md binarydeb/ros-kinetic-rosduct-0.0.4/config binarydeb/ros-kinetic-rosduct-0.0.4/debian binarydeb/ros-kinetic-rosduct-0.0.4/launch binarydeb/ros-kinetic-rosduct-0.0.4/obj-x86_64-linux-gnu binarydeb/ros-kinetic-rosduct-0.0.4/package.xml binarydeb/ros-kinetic-rosduct-0.0.4/scripts binarydeb/ros-kinetic-rosduct-0.0.4/setup.py binarydeb/ros-kinetic-rosduct-0.0.4/src 21:48:24 + echo # END SECTION 21:48:24 # END SECTION