Started by upstream project "Ksrc_uX__py_at_broker__ubuntu_xenial__source" build number 2 originally caused by: Started by upstream project "Krel_trigger-jobs" build number 86634 originally caused by: Started by upstream project "Krel_reconfigure-jobs" build number 2412 originally caused by: Started by user SYSTEM Building remotely on build client 4 (buildagent slave buildslave indigo_devel_default) in workspace /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary [ssh-agent] Looking for ssh-agent implementation... [ssh-agent] Exec ssh-agent (binary ssh-agent on a remote machine) $ ssh-agent SSH_AUTH_SOCK=/tmp/ssh-01H0CFVAquHq/agent.15583 SSH_AGENT_PID=15585 [ssh-agent] Started. $ ssh-add /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary@tmp/private_key_1340412213134519620.key Identity added: /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary@tmp/private_key_1340412213134519620.key (/home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary@tmp/private_key_1340412213134519620.key) [ssh-agent] Using credentials jenkins-slave # BEGIN SECTION: Check upstream projects Verify that no recursive upstream project is broken: - 'Ksrc_uX__py_at_broker__ubuntu_xenial__source' build '2' has result 'SUCCESS' All recursive upstream projects are (un)stable # END SECTION # BEGIN SECTION: Check free disk space Usable disk space = 58420436992 bytes Free space threshold = 5368709120 bytes # END SECTION [Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson9048752394160196759.sh + echo # BEGIN SECTION: docker version # BEGIN SECTION: docker version + docker version Client: Version: 18.06.3-ce API version: 1.38 Go version: go1.10.3 Git commit: d7080c1 Built: Wed Feb 20 02:27:13 2019 OS/Arch: linux/amd64 Experimental: false Server: Engine: Version: 18.06.3-ce API version: 1.38 (minimum version 1.12) Go version: go1.10.3 Git commit: d7080c1 Built: Wed Feb 20 02:25:38 2019 OS/Arch: linux/amd64 Experimental: false + echo # END SECTION # END SECTION + echo # BEGIN SECTION: docker info # BEGIN SECTION: docker info + docker info Containers: 1 Running: 1 Paused: 0 Stopped: 0 Images: 1173 Server Version: 18.06.3-ce Storage Driver: overlay2 Backing Filesystem: extfs Supports d_type: true Native Overlay Diff: true Logging Driver: json-file Cgroup Driver: cgroupfs Plugins: Volume: local Network: bridge host macvlan null overlay Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog Swarm: inactive Runtimes: runc Default Runtime: runc Init Binary: docker-init containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e runc version: a592beb5bc4c4092b1b1bac971afed27687340c5 init version: fec3683 Security Options: apparmor Kernel Version: 4.4.0-148-generic Operating System: Ubuntu 14.04.6 LTS OSType: linux Architecture: x86_64 CPUs: 2 Total Memory: 3.859GiB Name: lcas-buildfarm-slave-3 ID: LZSS:PF7G:CREH:TEQW:FH57:3M6D:KCSS:ODQY:SPHA:ND7A:FHYG:PNDE Docker Root Dir: /var/lib/docker Debug Mode (client): false Debug Mode (server): false Registry: https://index.docker.io/v1/ Labels: Experimental: false Insecure Registries: 127.0.0.0/8 Live Restore Enabled: false WARNING: No swap limit support + echo # END SECTION # END SECTION [Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson1943537678635842165.sh + echo # BEGIN SECTION: Check docker status # BEGIN SECTION: Check docker status + echo Testing trivial docker invocation... Testing trivial docker invocation... + docker run --rm ubuntu:xenial true + echo 'docker run' returned 0 'docker run' returned 0 docker seems operational, continuing [Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson3182394580017519650.sh + echo # END SECTION # END SECTION [Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson6705269191395728908.sh + echo # BEGIN SECTION: Embed wrapper scripts # BEGIN SECTION: Embed wrapper scripts + rm -fr wrapper_scripts + mkdir wrapper_scripts + printf #!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the "License");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an "AS IS" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert "Command '%%s' not implemented" %% command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print("Reinvoke 'git %%s' (%%d/%%d) after sleeping %%s seconds" %%\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print("Invoking '%%s'" %% ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main()) + echo # END SECTION # END SECTION [Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson568290623154509990.sh + echo # BEGIN SECTION: Clone ros_buildfarm # BEGIN SECTION: Clone ros_buildfarm + rm -fr ros_buildfarm + python3 -u wrapper_scripts/git.py clone --depth 1 -b lcas_new https://github.com/lcas/ros_buildfarm.git ros_buildfarm Invoking 'git clone --depth 1 -b lcas_new https://github.com/lcas/ros_buildfarm.git ros_buildfarm' Cloning into 'ros_buildfarm'... + git -C ros_buildfarm --no-pager log -n 1 commit a9f48d4703c1c5663464f4c3a9d24755ca822428 Author: Marc Hanheide Date: Sun Nov 10 18:41:29 2019 +0000 made flexible for distros and only transfer binaries + rm -fr ros_buildfarm/.git + rm -fr ros_buildfarm/doc + echo # END SECTION # END SECTION [Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson6939585676666428205.sh + echo # BEGIN SECTION: Write PGP repository keys # BEGIN SECTION: Write PGP repository keys + mkdir -p /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/keys + rm -fr /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/keys/0.key /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/keys/1.key + echo -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.11 (GNU/Linux) mQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn MsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf xcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw kPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv /o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh EBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg KFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX yQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI 7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy JjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T Yh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++ Cut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ cvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM hU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3 IWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm Z4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK 7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb oRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC AAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U NTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0 ikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU M7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N l9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ Chb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ== =nFcN -----END PGP PUBLIC KEY BLOCK----- + echo -----BEGIN PGP PUBLIC KEY BLOCK----- Version: SKS 1.1.6 Comment: Hostname: keyserver.ubuntu.com mQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L /HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw DuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47 ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+ d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS 6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN qoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL 8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/ /SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz vz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90 aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu 1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur F8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN KARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s NGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv ZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO K+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo bC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs Fn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s QNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR hE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp PWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd =4Ofr -----END PGP PUBLIC KEY BLOCK----- + echo # END SECTION # END SECTION [Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson719959967092090996.sh + rm -fr /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/docker_generating_docker + mkdir -p /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/docker_generating_docker + sleep 1 + python3 -u /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 15843 --cid-file /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/docker_generating_docker/docker.cid + echo # BEGIN SECTION: Generate Dockerfile - binarydeb task # BEGIN SECTION: Generate Dockerfile - binarydeb task + export TZ=GMT+00 + export PYTHONPATH=/home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/ros_buildfarm: + python3 -u /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/ros_buildfarm/scripts/release/run_binarydeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml kinetic py_at_broker ubuntu xenial amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/keys/0.key /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/keys/1.key --target-repository http://10.210.9.154/ubuntu/building --binarydeb-dir /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/binarydeb --dockerfile-dir /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/docker_generating_docker --append-timestamp Using the following distribution repositories: http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/keys/0.key) http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/keys/1.key) Generating Dockerfile '/home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/docker_generating_docker/Dockerfile': # generated from release/binarydeb_create_task.Dockerfile.em FROM ubuntu:xenial VOLUME ["/var/cache/apt/archives"] ENV DEBIAN_FRONTEND noninteractive RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen RUN locale-gen en_US.UTF-8 ENV LANG en_US.UTF-8 ENV TZ GMT+00 RUN useradd -u 1002 -m buildfarm RUN mkdir /tmp/keys RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN echo deb-src http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list)) RUN mkdir /tmp/wrapper_scripts RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py # automatic invalidation once every day RUN echo "2019-12-02 (+0000)" RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y devscripts dpkg-dev python3-apt python3-catkin-pkg-modules python3-empy python3-rosdistro-modules python3-yaml # always invalidate to actually have the latest apt repo state RUN echo "2019-12-02 14:19:22 +0000" RUN python3 -u /tmp/wrapper_scripts/apt.py update USER buildfarm ENTRYPOINT ["sh", "-c"] CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/get_sourcedeb.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml kinetic py_at_broker --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py kinetic py_at_broker --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/create_binarydeb_task_generator.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml kinetic py_at_broker ubuntu xenial amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /tmp/keys/0.key /tmp/keys/1.key --binarydeb-dir /tmp/binarydeb --dockerfile-dir /tmp/docker_build_binarydeb"] + echo # END SECTION # END SECTION + echo # BEGIN SECTION: Build Dockerfile - binarydeb task # BEGIN SECTION: Build Dockerfile - binarydeb task + cd /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/docker_generating_docker + python3 -u /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py Get base image name from Dockerfile 'Dockerfile': ubuntu:xenial Check docker base image for updates: docker pull ubuntu:xenial xenial: Pulling from library/ubuntu Digest: sha256:e10375c69cf9e22989c82b0a87c932a21e33619ee322d6c7ce6a61456f54c30c Status: Image is up to date for ubuntu:xenial + docker build --force-rm -t binarydeb_task_generation.kinetic_ubuntu_xenial_amd64_py_at_broker . Sending build context to Docker daemon 20.99kB Step 1/27 : FROM ubuntu:xenial ---> 56bab49eef2e Step 2/27 : VOLUME ["/var/cache/apt/archives"] ---> Using cache ---> ff0380ab88dd Step 3/27 : ENV DEBIAN_FRONTEND noninteractive ---> Using cache ---> 651b0bd4c585 Step 4/27 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done ---> Using cache ---> 62d10c99eccd Step 5/27 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen ---> Using cache ---> 243015388c59 Step 6/27 : RUN locale-gen en_US.UTF-8 ---> Using cache ---> 7359bbdd0059 Step 7/27 : ENV LANG en_US.UTF-8 ---> Using cache ---> a882de799c01 Step 8/27 : ENV TZ GMT+00 ---> Using cache ---> 6bc00fdebc88 Step 9/27 : RUN useradd -u 1002 -m buildfarm ---> Using cache ---> 5de0ec8b361a Step 10/27 : RUN mkdir /tmp/keys ---> Using cache ---> b32244ca9519 Step 11/27 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key ---> Using cache ---> 4f8882967207 Step 12/27 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key ---> Using cache ---> 69473738759e Step 13/27 : RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> f234ebd57546 Step 14/27 : RUN echo deb-src http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> 15638c9ee351 Step 15/27 : RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> 74d99cc40960 Step 16/27 : RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list)) ---> Using cache ---> 03e9d16af47d Step 17/27 : RUN mkdir /tmp/wrapper_scripts ---> Using cache ---> aa4e04f881bf Step 18/27 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py ---> Using cache ---> fb0e1e99befc Step 19/27 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py ---> Using cache ---> ea5a2ca25a26 Step 20/27 : RUN echo "2019-12-02 (+0000)" ---> Using cache ---> 17043fce2d15 Step 21/27 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done ---> Using cache ---> 55f4ec5dc090 Step 22/27 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y devscripts dpkg-dev python3-apt python3-catkin-pkg-modules python3-empy python3-rosdistro-modules python3-yaml ---> Using cache ---> 9ad42814e570 Step 23/27 : RUN echo "2019-12-02 14:19:22 +0000" ---> Running in b311b6cc8ec6 2019-12-02 14:19:22 +0000 Removing intermediate container b311b6cc8ec6 ---> 8dd1e9a7b5d3 Step 24/27 : RUN python3 -u /tmp/wrapper_scripts/apt.py update ---> Running in 07a1eeebfc3f Invoking 'apt-get update' Get:1 http://10.210.9.154/ubuntu/building xenial InRelease [2,820 B] Get:2 http://security.ubuntu.com/ubuntu xenial-security InRelease [109 kB] Hit:3 http://archive.ubuntu.com/ubuntu xenial InRelease Get:4 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB] Get:5 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB] Get:6 http://archive.ubuntu.com/ubuntu xenial-security InRelease [109 kB] Get:7 http://10.210.9.154/ubuntu/building xenial/main Sources [186 kB] Get:8 http://10.210.9.154/ubuntu/building xenial/main amd64 Packages [237 kB] Hit:9 http://packages.ros.org/ros/ubuntu xenial InRelease Get:10 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [1,005 kB] Get:11 http://security.ubuntu.com/ubuntu xenial-security/universe amd64 Packages [593 kB] Get:12 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [1,383 kB] Get:13 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [997 kB] Fetched 4,837 kB in 1s (3,052 kB/s) Reading package lists... Removing intermediate container 07a1eeebfc3f ---> 03308a29d4fe Step 25/27 : USER buildfarm ---> Running in c4cb33c524d8 Removing intermediate container c4cb33c524d8 ---> b51e299779ec Step 26/27 : ENTRYPOINT ["sh", "-c"] ---> Running in e7d1e7a314be Removing intermediate container e7d1e7a314be ---> 67508be7669d Step 27/27 : CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/get_sourcedeb.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml kinetic py_at_broker --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py kinetic py_at_broker --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/create_binarydeb_task_generator.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml kinetic py_at_broker ubuntu xenial amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /tmp/keys/0.key /tmp/keys/1.key --binarydeb-dir /tmp/binarydeb --dockerfile-dir /tmp/docker_build_binarydeb"] ---> Running in 56b3ea353cb6 Removing intermediate container 56b3ea353cb6 ---> 86c7bc902463 Successfully built 86c7bc902463 Successfully tagged binarydeb_task_generation.kinetic_ubuntu_xenial_amd64_py_at_broker:latest + echo # END SECTION # END SECTION + echo # BEGIN SECTION: Run Dockerfile - binarydeb task # BEGIN SECTION: Run Dockerfile - binarydeb task + [ -f /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/binarydeb ] + rm -fr /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/binarydeb + rm -fr /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/docker_build_binarydeb + mkdir -p /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/binarydeb + mkdir -p /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/docker_build_binarydeb + docker run --rm --cidfile=/home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/docker_generating_docker/docker.cid -e=TRAVIS= -e=ROS_BUILDFARM_PULL_REQUEST_BRANCH= -v /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/docker_build_binarydeb:/tmp/docker_build_binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_task_generation.kinetic_ubuntu_xenial_amd64_py_at_broker # BEGIN SUBSECTION: get sourcedeb Invoking '/usr/bin/python3 /tmp/ros_buildfarm/ros_buildfarm/wrapper/apt.py source --download-only --only-source ros-kinetic-py-at-broker=0.0.5-1xenial' Invoking 'apt-get source --download-only --only-source ros-kinetic-py-at-broker=0.0.5-1xenial' Reading package lists... Need to get 2,208 kB of source archives. Get:1 http://10.210.9.154/ubuntu/building xenial/main ros-kinetic-py-at-broker 0.0.5-1xenial (dsc) [1,051 B] Get:2 http://10.210.9.154/ubuntu/building xenial/main ros-kinetic-py-at-broker 0.0.5-1xenial (tar) [2,205 kB] Get:3 http://10.210.9.154/ubuntu/building xenial/main ros-kinetic-py-at-broker 0.0.5-1xenial (diff) [2,040 B] Fetched 2,208 kB in 0s (47.0 MB/s) Download complete and in download only mode Invoking 'dpkg-source -x ros-kinetic-py-at-broker_0.0.5-1xenial.dsc' dpkg-source: warning: extracting unsigned source package (ros-kinetic-py-at-broker_0.0.5-1xenial.dsc) dpkg-source: info: extracting ros-kinetic-py-at-broker in ros-kinetic-py-at-broker-0.0.5 dpkg-source: info: unpacking ros-kinetic-py-at-broker_0.0.5.orig.tar.gz dpkg-source: info: unpacking ros-kinetic-py-at-broker_0.0.5-1xenial.debian.tar.xz Package maintainer emails: marc@hanheide.net # END SUBSECTION # BEGIN SUBSECTION: append build timestamp Invoking 'debchange -v 0.0.5-1xenial-20191202-141949+0000 -p -D xenial -u high -m Append timestamp when binarydeb was built.' in '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5' # END SUBSECTION Looking for the '.dsc' file of package 'ros-kinetic-py-at-broker' with version '0.0.5-1' Using the following distribution repositories: http://10.210.9.154/ubuntu/building (/tmp/keys/0.key) http://packages.ros.org/ros/ubuntu (/tmp/keys/1.key) Generating Dockerfile '/tmp/docker_build_binarydeb/Dockerfile': # generated from release/binarydeb_task.Dockerfile.em FROM ubuntu:xenial VOLUME ["/var/cache/apt/archives"] ENV DEBIAN_FRONTEND noninteractive RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen RUN locale-gen en_US.UTF-8 ENV LANG en_US.UTF-8 ENV TZ GMT+00 RUN useradd -u 1002 -m buildfarm RUN mkdir /tmp/keys RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list)) RUN mkdir /tmp/wrapper_scripts RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py # automatic invalidation once every day RUN echo "2019-12-02 (+0000)" RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential # for each dependency: echo version, apt update, apt install, apt clean 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 RUN echo "clang: 1:3.8-33ubuntu3.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes clang 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 RUN echo "libczmq-dev: 3.0.2-5" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes libczmq-dev RUN echo "ros-kinetic-catkin: 0.7.18-1xenial-20190607-163525-0800" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-catkin USER buildfarm ENTRYPOINT ["sh", "-c"] CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py kinetic py_at_broker --sourcedeb-dir /tmp/binarydeb"] Mount the following volumes when running the container: -v /tmp/ros_buildfarm:/tmp/ros_buildfarm:ro -v /tmp/binarydeb:/tmp/binarydeb + echo # END SECTION # END SECTION [Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson2691060451627131630.sh + sleep 1 + python3 -u /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 18199 --cid-file /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/docker_build_binarydeb/docker.cid + echo # BEGIN SECTION: Build Dockerfile - build binarydeb # BEGIN SECTION: Build Dockerfile - build binarydeb + cd /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/docker_build_binarydeb + python3 -u /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py Get base image name from Dockerfile 'Dockerfile': ubuntu:xenial Check docker base image for updates: docker pull ubuntu:xenial xenial: Pulling from library/ubuntu Digest: sha256:e10375c69cf9e22989c82b0a87c932a21e33619ee322d6c7ce6a61456f54c30c Status: Image is up to date for ubuntu:xenial + docker build --force-rm -t binarydeb_build.kinetic_ubuntu_xenial_amd64_py_at_broker . Sending build context to Docker daemon 20.48kB Step 1/29 : FROM ubuntu:xenial ---> 56bab49eef2e Step 2/29 : VOLUME ["/var/cache/apt/archives"] ---> Using cache ---> ff0380ab88dd Step 3/29 : ENV DEBIAN_FRONTEND noninteractive ---> Using cache ---> 651b0bd4c585 Step 4/29 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done ---> Using cache ---> 62d10c99eccd Step 5/29 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen ---> Using cache ---> 243015388c59 Step 6/29 : RUN locale-gen en_US.UTF-8 ---> Using cache ---> 7359bbdd0059 Step 7/29 : ENV LANG en_US.UTF-8 ---> Using cache ---> a882de799c01 Step 8/29 : ENV TZ GMT+00 ---> Using cache ---> 6bc00fdebc88 Step 9/29 : RUN useradd -u 1002 -m buildfarm ---> Using cache ---> 5de0ec8b361a Step 10/29 : RUN mkdir /tmp/keys ---> Using cache ---> b32244ca9519 Step 11/29 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key ---> Using cache ---> 4f8882967207 Step 12/29 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key ---> Using cache ---> 69473738759e Step 13/29 : RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> f234ebd57546 Step 14/29 : RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> e067f6a00b57 Step 15/29 : RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? xenial ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? xenial-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? xenial-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial-security multiverse" >> /etc/apt/sources.list)) ---> Using cache ---> bff4da85f3b4 Step 16/29 : RUN mkdir /tmp/wrapper_scripts ---> Using cache ---> 18d2511fd397 Step 17/29 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py ---> Using cache ---> 918016fb4b99 Step 18/29 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py ---> Using cache ---> 06af47febfa5 Step 19/29 : RUN echo "2019-12-02 (+0000)" ---> Using cache ---> 1b1171c9e3e9 Step 20/29 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done ---> Using cache ---> 9fde9bb14a57 Step 21/29 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential ---> Using cache ---> 817cc8089e14 Step 22/29 : 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 ---> Running in 46da9f125310 apt-src: 0.25.1-0.2 Invoking 'apt-get update' Get:1 http://10.210.9.154/ubuntu/building xenial InRelease [2,820 B] Get:2 http://10.210.9.154/ubuntu/building xenial/main amd64 Packages [237 kB] Hit:3 http://packages.ros.org/ros/ubuntu xenial InRelease Hit:4 http://archive.ubuntu.com/ubuntu xenial InRelease Get:5 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB] Get:6 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB] Get:7 http://archive.ubuntu.com/ubuntu xenial-security InRelease [109 kB] Get:8 http://security.ubuntu.com/ubuntu xenial-security InRelease [109 kB] Get:9 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [1,383 kB] Get:10 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [997 kB] Get:11 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [1,005 kB] Get:12 http://security.ubuntu.com/ubuntu xenial-security/universe amd64 Packages [593 kB] Fetched 4,651 kB in 3s (1,289 kB/s) Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes apt-src' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done The following additional packages will be installed: libapt-pkg-perl sudo The following NEW packages will be installed: apt-src libapt-pkg-perl sudo 0 upgraded, 3 newly installed, 0 to remove and 1 not upgraded. Need to get 490 kB of archives. After this operation, 1,953 kB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 sudo amd64 1.8.16-0ubuntu1.8 [390 kB] Get:2 http://archive.ubuntu.com/ubuntu xenial/main amd64 libapt-pkg-perl amd64 0.1.29build7 [65.3 kB] Get:3 http://archive.ubuntu.com/ubuntu xenial/universe amd64 apt-src all 0.25.1-0.2 [34.5 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 490 kB in 0s (2,891 kB/s) Selecting previously unselected package sudo. (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 ... 13889 files and directories currently installed.) Preparing to unpack .../sudo_1.8.16-0ubuntu1.8_amd64.deb ... Unpacking sudo (1.8.16-0ubuntu1.8) ... Selecting previously unselected package libapt-pkg-perl. Preparing to unpack .../libapt-pkg-perl_0.1.29build7_amd64.deb ... Unpacking libapt-pkg-perl (0.1.29build7) ... Selecting previously unselected package apt-src. Preparing to unpack .../apt-src_0.25.1-0.2_all.deb ... Unpacking apt-src (0.25.1-0.2) ... Setting up sudo (1.8.16-0ubuntu1.8) ... Setting up libapt-pkg-perl (0.1.29build7) ... Setting up apt-src (0.25.1-0.2) ... Invoking 'apt-get clean' Removing intermediate container 46da9f125310 ---> 9728f206e07b Step 23/29 : RUN echo "clang: 1:3.8-33ubuntu3.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes clang ---> Running in 204dcd0974cb clang: 1:3.8-33ubuntu3.1 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building xenial InRelease Hit:2 http://archive.ubuntu.com/ubuntu xenial InRelease Hit:3 http://archive.ubuntu.com/ubuntu xenial-updates InRelease Hit:4 http://archive.ubuntu.com/ubuntu xenial-backports InRelease Hit:5 http://archive.ubuntu.com/ubuntu xenial-security InRelease Hit:6 http://security.ubuntu.com/ubuntu xenial-security InRelease Hit:7 http://packages.ros.org/ros/ubuntu xenial InRelease Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes clang' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done The following additional packages will be installed: binfmt-support clang-3.8 libbsd0 libclang-common-3.8-dev libclang1-3.8 libedit2 libffi-dev libffi6 libjsoncpp1 libllvm3.8 libobjc-5-dev libobjc4 libpipeline1 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib libtinfo-dev llvm-3.8 llvm-3.8-dev llvm-3.8-runtime python python-minimal python2.7 python2.7-minimal Suggested packages: gnustep gnustep-devel clang-3.8-doc llvm-3.8-doc python-doc python-tk python2.7-doc The following NEW packages will be installed: binfmt-support clang clang-3.8 libbsd0 libclang-common-3.8-dev libclang1-3.8 libedit2 libffi-dev libffi6 libjsoncpp1 libllvm3.8 libobjc-5-dev libobjc4 libpipeline1 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib libtinfo-dev llvm-3.8 llvm-3.8-dev llvm-3.8-runtime python python-minimal python2.7 python2.7-minimal 0 upgraded, 25 newly installed, 0 to remove and 1 not upgraded. Need to get 60.3 MB of archives. After this operation, 303 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython2.7-minimal amd64 2.7.12-1ubuntu0~16.04.9 [338 kB] Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python2.7-minimal amd64 2.7.12-1ubuntu0~16.04.9 [1,262 kB] Get:3 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-minimal amd64 2.7.12-1~16.04 [28.1 kB] Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 libffi6 amd64 3.2.1-4 [17.8 kB] Get:5 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython2.7-stdlib amd64 2.7.12-1ubuntu0~16.04.9 [1,884 kB] Get:6 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python2.7 amd64 2.7.12-1ubuntu0~16.04.9 [224 kB] Get:7 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython-stdlib amd64 2.7.12-1~16.04 [7,768 B] Get:8 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python amd64 2.7.12-1~16.04 [137 kB] Get:9 http://archive.ubuntu.com/ubuntu xenial/main amd64 libbsd0 amd64 0.8.2-1 [41.7 kB] Get:10 http://archive.ubuntu.com/ubuntu xenial/main amd64 libedit2 amd64 3.1-20150325-1ubuntu2 [76.5 kB] Get:11 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpipeline1 amd64 1.4.1-2 [24.6 kB] Get:12 http://archive.ubuntu.com/ubuntu xenial/main amd64 binfmt-support amd64 2.1.6-1 [50.7 kB] Get:13 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libllvm3.8 amd64 1:3.8-2ubuntu4 [10.3 MB] Get:14 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libobjc4 amd64 5.4.0-6ubuntu1~16.04.12 [111 kB] Get:15 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libobjc-5-dev amd64 5.4.0-6ubuntu1~16.04.12 [381 kB] Get:16 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libclang1-3.8 amd64 1:3.8-2ubuntu4 [4,139 kB] Get:17 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libclang-common-3.8-dev amd64 1:3.8-2ubuntu4 [1,167 kB] Get:18 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 clang-3.8 amd64 1:3.8-2ubuntu4 [21.5 MB] Get:19 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 clang amd64 1:3.8-33ubuntu3.1 [3,248 B] Get:20 http://archive.ubuntu.com/ubuntu xenial/main amd64 libtinfo-dev amd64 6.0+20160213-1ubuntu1 [77.4 kB] Get:21 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 llvm-3.8-runtime amd64 1:3.8-2ubuntu4 [72.3 kB] Get:22 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 llvm-3.8 amd64 1:3.8-2ubuntu4 [1,524 kB] Get:23 http://archive.ubuntu.com/ubuntu xenial/main amd64 libjsoncpp1 amd64 1.7.2-1 [73.0 kB] Get:24 http://archive.ubuntu.com/ubuntu xenial/main amd64 libffi-dev amd64 3.2.1-4 [161 kB] Get:25 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 llvm-3.8-dev amd64 1:3.8-2ubuntu4 [16.7 MB] debconf: delaying package configuration, since apt-utils is not installed Fetched 60.3 MB in 1s (35.0 MB/s) Selecting previously unselected package libpython2.7-minimal:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13982 files and directories currently installed.) Preparing to unpack .../libpython2.7-minimal_2.7.12-1ubuntu0~16.04.9_amd64.deb ... Unpacking libpython2.7-minimal:amd64 (2.7.12-1ubuntu0~16.04.9) ... Selecting previously unselected package python2.7-minimal. Preparing to unpack .../python2.7-minimal_2.7.12-1ubuntu0~16.04.9_amd64.deb ... Unpacking python2.7-minimal (2.7.12-1ubuntu0~16.04.9) ... Selecting previously unselected package python-minimal. Preparing to unpack .../python-minimal_2.7.12-1~16.04_amd64.deb ... Unpacking python-minimal (2.7.12-1~16.04) ... Selecting previously unselected package libffi6:amd64. Preparing to unpack .../libffi6_3.2.1-4_amd64.deb ... Unpacking libffi6:amd64 (3.2.1-4) ... Selecting previously unselected package libpython2.7-stdlib:amd64. Preparing to unpack .../libpython2.7-stdlib_2.7.12-1ubuntu0~16.04.9_amd64.deb ... Unpacking libpython2.7-stdlib:amd64 (2.7.12-1ubuntu0~16.04.9) ... Selecting previously unselected package python2.7. Preparing to unpack .../python2.7_2.7.12-1ubuntu0~16.04.9_amd64.deb ... Unpacking python2.7 (2.7.12-1ubuntu0~16.04.9) ... Selecting previously unselected package libpython-stdlib:amd64. Preparing to unpack .../libpython-stdlib_2.7.12-1~16.04_amd64.deb ... Unpacking libpython-stdlib:amd64 (2.7.12-1~16.04) ... Processing triggers for libc-bin (2.23-0ubuntu11) ... Processing triggers for mime-support (3.59ubuntu1) ... Setting up libpython2.7-minimal:amd64 (2.7.12-1ubuntu0~16.04.9) ... Setting up python2.7-minimal (2.7.12-1ubuntu0~16.04.9) ... Setting up python-minimal (2.7.12-1~16.04) ... Selecting previously unselected package python. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 14734 files and directories currently installed.) Preparing to unpack .../python_2.7.12-1~16.04_amd64.deb ... Unpacking python (2.7.12-1~16.04) ... Selecting previously unselected package libbsd0:amd64. Preparing to unpack .../libbsd0_0.8.2-1_amd64.deb ... Unpacking libbsd0:amd64 (0.8.2-1) ... Selecting previously unselected package libedit2:amd64. Preparing to unpack .../libedit2_3.1-20150325-1ubuntu2_amd64.deb ... Unpacking libedit2:amd64 (3.1-20150325-1ubuntu2) ... Selecting previously unselected package libpipeline1:amd64. Preparing to unpack .../libpipeline1_1.4.1-2_amd64.deb ... Unpacking libpipeline1:amd64 (1.4.1-2) ... Selecting previously unselected package binfmt-support. Preparing to unpack .../binfmt-support_2.1.6-1_amd64.deb ... Unpacking binfmt-support (2.1.6-1) ... Selecting previously unselected package libllvm3.8:amd64. Preparing to unpack .../libllvm3.8_1%3a3.8-2ubuntu4_amd64.deb ... Unpacking libllvm3.8:amd64 (1:3.8-2ubuntu4) ... Selecting previously unselected package libobjc4:amd64. Preparing to unpack .../libobjc4_5.4.0-6ubuntu1~16.04.12_amd64.deb ... Unpacking libobjc4:amd64 (5.4.0-6ubuntu1~16.04.12) ... Selecting previously unselected package libobjc-5-dev:amd64. Preparing to unpack .../libobjc-5-dev_5.4.0-6ubuntu1~16.04.12_amd64.deb ... Unpacking libobjc-5-dev:amd64 (5.4.0-6ubuntu1~16.04.12) ... Selecting previously unselected package libclang1-3.8:amd64. Preparing to unpack .../libclang1-3.8_1%3a3.8-2ubuntu4_amd64.deb ... Unpacking libclang1-3.8:amd64 (1:3.8-2ubuntu4) ... Selecting previously unselected package libclang-common-3.8-dev. Preparing to unpack .../libclang-common-3.8-dev_1%3a3.8-2ubuntu4_amd64.deb ... Unpacking libclang-common-3.8-dev (1:3.8-2ubuntu4) ... Selecting previously unselected package clang-3.8. Preparing to unpack .../clang-3.8_1%3a3.8-2ubuntu4_amd64.deb ... Unpacking clang-3.8 (1:3.8-2ubuntu4) ... Selecting previously unselected package clang. Preparing to unpack .../clang_1%3a3.8-33ubuntu3.1_amd64.deb ... Unpacking clang (1:3.8-33ubuntu3.1) ... Selecting previously unselected package libtinfo-dev:amd64. Preparing to unpack .../libtinfo-dev_6.0+20160213-1ubuntu1_amd64.deb ... Unpacking libtinfo-dev:amd64 (6.0+20160213-1ubuntu1) ... Selecting previously unselected package llvm-3.8-runtime. Preparing to unpack .../llvm-3.8-runtime_1%3a3.8-2ubuntu4_amd64.deb ... Unpacking llvm-3.8-runtime (1:3.8-2ubuntu4) ... Selecting previously unselected package llvm-3.8. Preparing to unpack .../llvm-3.8_1%3a3.8-2ubuntu4_amd64.deb ... Unpacking llvm-3.8 (1:3.8-2ubuntu4) ... Selecting previously unselected package libjsoncpp1:amd64. Preparing to unpack .../libjsoncpp1_1.7.2-1_amd64.deb ... Unpacking libjsoncpp1:amd64 (1.7.2-1) ... Selecting previously unselected package libffi-dev:amd64. Preparing to unpack .../libffi-dev_3.2.1-4_amd64.deb ... Unpacking libffi-dev:amd64 (3.2.1-4) ... Selecting previously unselected package llvm-3.8-dev. Preparing to unpack .../llvm-3.8-dev_1%3a3.8-2ubuntu4_amd64.deb ... Unpacking llvm-3.8-dev (1:3.8-2ubuntu4) ... Processing triggers for libc-bin (2.23-0ubuntu11) ... Processing triggers for systemd (229-4ubuntu21.22) ... Processing triggers for ccache (3.2.4-1) ... Updating symlinks in /usr/lib/ccache ... Setting up libffi6:amd64 (3.2.1-4) ... Setting up libpython2.7-stdlib:amd64 (2.7.12-1ubuntu0~16.04.9) ... Setting up python2.7 (2.7.12-1ubuntu0~16.04.9) ... Setting up libpython-stdlib:amd64 (2.7.12-1~16.04) ... Setting up python (2.7.12-1~16.04) ... Setting up libbsd0:amd64 (0.8.2-1) ... Setting up libedit2:amd64 (3.1-20150325-1ubuntu2) ... Setting up libpipeline1:amd64 (1.4.1-2) ... Setting up binfmt-support (2.1.6-1) ... mount: binfmt_misc is write-protected, mounting read-only mount: cannot mount binfmt_misc read-only update-binfmts: warning: Couldn't mount the binfmt_misc filesystem on /proc/sys/fs/binfmt_misc. mount: binfmt_misc is write-protected, mounting read-only mount: cannot mount binfmt_misc read-only update-binfmts: warning: Couldn't mount the binfmt_misc filesystem on /proc/sys/fs/binfmt_misc. mount: binfmt_misc is write-protected, mounting read-only mount: cannot mount binfmt_misc read-only update-binfmts: warning: Couldn't mount the binfmt_misc filesystem on /proc/sys/fs/binfmt_misc. invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of start. Setting up libllvm3.8:amd64 (1:3.8-2ubuntu4) ... Setting up libobjc4:amd64 (5.4.0-6ubuntu1~16.04.12) ... Setting up libobjc-5-dev:amd64 (5.4.0-6ubuntu1~16.04.12) ... Setting up libclang1-3.8:amd64 (1:3.8-2ubuntu4) ... Setting up libclang-common-3.8-dev (1:3.8-2ubuntu4) ... Setting up clang-3.8 (1:3.8-2ubuntu4) ... Setting up clang (1:3.8-33ubuntu3.1) ... Setting up libtinfo-dev:amd64 (6.0+20160213-1ubuntu1) ... Setting up llvm-3.8-runtime (1:3.8-2ubuntu4) ... mount: binfmt_misc is write-protected, mounting read-only mount: cannot mount binfmt_misc read-only update-binfmts: warning: Couldn't mount the binfmt_misc filesystem on /proc/sys/fs/binfmt_misc. Setting up llvm-3.8 (1:3.8-2ubuntu4) ... Setting up libjsoncpp1:amd64 (1.7.2-1) ... Setting up libffi-dev:amd64 (3.2.1-4) ... Setting up llvm-3.8-dev (1:3.8-2ubuntu4) ... Processing triggers for libc-bin (2.23-0ubuntu11) ... Processing triggers for systemd (229-4ubuntu21.22) ... Invoking 'apt-get clean' Removing intermediate container 204dcd0974cb ---> cc508034afe6 Step 24/29 : 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 ---> Running in 7a1625c19e9a debhelper: 10.2.2ubuntu1~ubuntu16.04.1 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building xenial InRelease Hit:2 http://archive.ubuntu.com/ubuntu xenial InRelease Hit:3 http://archive.ubuntu.com/ubuntu xenial-updates InRelease Hit:4 http://archive.ubuntu.com/ubuntu xenial-backports InRelease Hit:5 http://archive.ubuntu.com/ubuntu xenial-security InRelease Hit:6 http://security.ubuntu.com/ubuntu xenial-security InRelease Hit:7 http://packages.ros.org/ros/ubuntu xenial InRelease Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes debhelper' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done The following additional packages will be installed: autotools-dev bsdmainutils ca-certificates curl dh-strip-nondeterminism gettext gettext-base groff-base intltool-debian krb5-locales libarchive-zip-perl libasn1-8-heimdal libasprintf-dev libasprintf0v5 libcroco3 libcurl3-gnutls libfile-stripnondeterminism-perl libgettextpo-dev libgettextpo0 libglib2.0-0 libglib2.0-data libgnutls30 libgssapi-krb5-2 libgssapi3-heimdal libhcrypto4-heimdal libheimbase1-heimdal libheimntlm0-heimdal libhogweed4 libhx509-5-heimdal libicu55 libidn11 libk5crypto3 libkeyutils1 libkrb5-26-heimdal libkrb5-3 libkrb5support0 libldap-2.4-2 libmail-sendmail-perl libnettle6 libp11-kit0 libroken18-heimdal librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db libsys-hostname-long-perl libtasn1-6 libtimedate-perl libunistring0 libwind0-heimdal libxml2 man-db openssl po-debconf sgml-base shared-mime-info xdg-user-dirs xml-core Suggested packages: wamerican | wordlist whois vacation dh-make gettext-doc autopoint groff gnutls-bin krb5-doc krb5-user libsasl2-modules-otp libsasl2-modules-ldap libsasl2-modules-sql libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal less www-browser libmail-box-perl sgml-base-doc The following NEW packages will be installed: autotools-dev bsdmainutils ca-certificates curl debhelper dh-strip-nondeterminism gettext gettext-base groff-base intltool-debian krb5-locales libarchive-zip-perl libasn1-8-heimdal libasprintf-dev libasprintf0v5 libcroco3 libcurl3-gnutls libfile-stripnondeterminism-perl libgettextpo-dev libgettextpo0 libglib2.0-0 libglib2.0-data libgnutls30 libgssapi-krb5-2 libgssapi3-heimdal libhcrypto4-heimdal libheimbase1-heimdal libheimntlm0-heimdal libhogweed4 libhx509-5-heimdal libicu55 libidn11 libk5crypto3 libkeyutils1 libkrb5-26-heimdal libkrb5-3 libkrb5support0 libldap-2.4-2 libmail-sendmail-perl libnettle6 libp11-kit0 libroken18-heimdal librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db libsys-hostname-long-perl libtasn1-6 libtimedate-perl libunistring0 libwind0-heimdal libxml2 man-db openssl po-debconf sgml-base shared-mime-info xdg-user-dirs xml-core 0 upgraded, 59 newly installed, 0 to remove and 1 not upgraded. Need to get 18.9 MB of archives. After this operation, 70.3 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libglib2.0-0 amd64 2.48.2-0ubuntu4.4 [1,120 kB] Get:2 http://archive.ubuntu.com/ubuntu xenial/main amd64 groff-base amd64 1.22.3-7 [1,151 kB] Get:3 http://archive.ubuntu.com/ubuntu xenial/main amd64 bsdmainutils amd64 9.0.6ubuntu3 [174 kB] Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 man-db amd64 2.7.5-1 [854 kB] Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 sgml-base all 1.26+nmu4ubuntu1 [12.5 kB] Get:6 http://archive.ubuntu.com/ubuntu xenial/main amd64 libunistring0 amd64 0.9.3-5.2ubuntu1 [279 kB] Get:7 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libnettle6 amd64 3.2-1ubuntu0.16.04.1 [93.5 kB] Get:8 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libhogweed4 amd64 3.2-1ubuntu0.16.04.1 [136 kB] Get:9 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libidn11 amd64 1.32-3ubuntu1.2 [46.5 kB] Get:10 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libp11-kit0 amd64 0.23.2-5~ubuntu16.04.1 [105 kB] Get:11 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libtasn1-6 amd64 4.7-3ubuntu0.16.04.3 [43.5 kB] Get:12 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgnutls30 amd64 3.4.10-4ubuntu1.5 [548 kB] Get:13 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 openssl amd64 1.0.2g-1ubuntu4.15 [492 kB] Get:14 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 ca-certificates all 20170717~16.04.2 [167 kB] Get:15 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libasprintf0v5 amd64 0.19.7-2ubuntu3.1 [6,568 B] Get:16 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 gettext-base amd64 0.19.7-2ubuntu3.1 [48.0 kB] Get:17 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 krb5-locales all 1.13.2+dfsg-5ubuntu2.1 [13.6 kB] Get:18 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libroken18-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [41.4 kB] Get:19 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libasn1-8-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [174 kB] Get:20 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libkrb5support0 amd64 1.13.2+dfsg-5ubuntu2.1 [31.2 kB] Get:21 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libk5crypto3 amd64 1.13.2+dfsg-5ubuntu2.1 [81.3 kB] Get:22 http://archive.ubuntu.com/ubuntu xenial/main amd64 libkeyutils1 amd64 1.5.9-8ubuntu1 [9,904 B] Get:23 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libkrb5-3 amd64 1.13.2+dfsg-5ubuntu2.1 [273 kB] Get:24 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgssapi-krb5-2 amd64 1.13.2+dfsg-5ubuntu2.1 [120 kB] Get:25 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libhcrypto4-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [85.0 kB] Get:26 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libheimbase1-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [29.3 kB] Get:27 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libwind0-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [47.8 kB] Get:28 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libhx509-5-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [107 kB] Get:29 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libkrb5-26-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [202 kB] Get:30 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libheimntlm0-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [15.1 kB] Get:31 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgssapi3-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [96.1 kB] Get:32 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libsasl2-modules-db amd64 2.1.26.dfsg1-14ubuntu0.1 [14.5 kB] Get:33 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libsasl2-2 amd64 2.1.26.dfsg1-14ubuntu0.1 [48.6 kB] Get:34 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libldap-2.4-2 amd64 2.4.42+dfsg-2ubuntu3.7 [160 kB] Get:35 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d-1ubuntu0.1 [54.4 kB] Get:36 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libcurl3-gnutls amd64 7.47.0-1ubuntu2.14 [184 kB] Get:37 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libglib2.0-data all 2.48.2-0ubuntu4.4 [131 kB] Get:38 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libicu55 amd64 55.1-7ubuntu0.4 [7,646 kB] Get:39 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libsasl2-modules amd64 2.1.26.dfsg1-14ubuntu0.1 [47.5 kB] Get:40 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libxml2 amd64 2.9.3+dfsg1-1ubuntu0.6 [697 kB] Get:41 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 shared-mime-info amd64 1.5-2ubuntu0.2 [405 kB] Get:42 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 xdg-user-dirs amd64 0.15-2ubuntu6.16.04.1 [61.8 kB] Get:43 http://archive.ubuntu.com/ubuntu xenial/main amd64 xml-core all 0.13+nmu2 [23.3 kB] Get:44 http://archive.ubuntu.com/ubuntu xenial/main amd64 autotools-dev all 20150820.1 [39.8 kB] Get:45 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 curl amd64 7.47.0-1ubuntu2.14 [139 kB] Get:46 http://archive.ubuntu.com/ubuntu xenial/main amd64 libcroco3 amd64 0.6.11-1 [81.6 kB] Get:47 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 gettext amd64 0.19.7-2ubuntu3.1 [1,082 kB] Get:48 http://archive.ubuntu.com/ubuntu xenial/main amd64 intltool-debian all 0.35.0+20060710.4 [24.9 kB] Get:49 http://archive.ubuntu.com/ubuntu xenial/main amd64 po-debconf all 1.0.19 [234 kB] Get:50 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libarchive-zip-perl all 1.56-2ubuntu0.1 [84.7 kB] Get:51 http://archive.ubuntu.com/ubuntu xenial/main amd64 libfile-stripnondeterminism-perl all 0.015-1 [10.3 kB] Get:52 http://archive.ubuntu.com/ubuntu xenial/main amd64 libtimedate-perl all 2.3000-2 [37.5 kB] Get:53 http://archive.ubuntu.com/ubuntu xenial/main amd64 dh-strip-nondeterminism all 0.015-1 [4,864 B] Get:54 http://archive.ubuntu.com/ubuntu xenial/main amd64 debhelper all 9.20160115ubuntu3 [739 kB] Get:55 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libasprintf-dev amd64 0.19.7-2ubuntu3.1 [4,778 B] Get:56 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgettextpo0 amd64 0.19.7-2ubuntu3.1 [125 kB] Get:57 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgettextpo-dev amd64 0.19.7-2ubuntu3.1 [141 kB] Get:58 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsys-hostname-long-perl all 1.5-1 [11.7 kB] Get:59 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmail-sendmail-perl all 0.79.16-1 [26.5 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 18.9 MB in 0s (20.0 MB/s) Selecting previously unselected package libglib2.0-0:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 16325 files and directories currently installed.) Preparing to unpack .../libglib2.0-0_2.48.2-0ubuntu4.4_amd64.deb ... Unpacking libglib2.0-0:amd64 (2.48.2-0ubuntu4.4) ... Selecting previously unselected package groff-base. Preparing to unpack .../groff-base_1.22.3-7_amd64.deb ... Unpacking groff-base (1.22.3-7) ... Selecting previously unselected package bsdmainutils. Preparing to unpack .../bsdmainutils_9.0.6ubuntu3_amd64.deb ... Unpacking bsdmainutils (9.0.6ubuntu3) ... Selecting previously unselected package man-db. Preparing to unpack .../man-db_2.7.5-1_amd64.deb ... Unpacking man-db (2.7.5-1) ... Selecting previously unselected package sgml-base. Preparing to unpack .../sgml-base_1.26+nmu4ubuntu1_all.deb ... Unpacking sgml-base (1.26+nmu4ubuntu1) ... Selecting previously unselected package libunistring0:amd64. Preparing to unpack .../libunistring0_0.9.3-5.2ubuntu1_amd64.deb ... Unpacking libunistring0:amd64 (0.9.3-5.2ubuntu1) ... Selecting previously unselected package libnettle6:amd64. Preparing to unpack .../libnettle6_3.2-1ubuntu0.16.04.1_amd64.deb ... Unpacking libnettle6:amd64 (3.2-1ubuntu0.16.04.1) ... Selecting previously unselected package libhogweed4:amd64. Preparing to unpack .../libhogweed4_3.2-1ubuntu0.16.04.1_amd64.deb ... Unpacking libhogweed4:amd64 (3.2-1ubuntu0.16.04.1) ... Selecting previously unselected package libidn11:amd64. Preparing to unpack .../libidn11_1.32-3ubuntu1.2_amd64.deb ... Unpacking libidn11:amd64 (1.32-3ubuntu1.2) ... Selecting previously unselected package libp11-kit0:amd64. Preparing to unpack .../libp11-kit0_0.23.2-5~ubuntu16.04.1_amd64.deb ... Unpacking libp11-kit0:amd64 (0.23.2-5~ubuntu16.04.1) ... Selecting previously unselected package libtasn1-6:amd64. Preparing to unpack .../libtasn1-6_4.7-3ubuntu0.16.04.3_amd64.deb ... Unpacking libtasn1-6:amd64 (4.7-3ubuntu0.16.04.3) ... Selecting previously unselected package libgnutls30:amd64. Preparing to unpack .../libgnutls30_3.4.10-4ubuntu1.5_amd64.deb ... Unpacking libgnutls30:amd64 (3.4.10-4ubuntu1.5) ... Selecting previously unselected package openssl. Preparing to unpack .../openssl_1.0.2g-1ubuntu4.15_amd64.deb ... Unpacking openssl (1.0.2g-1ubuntu4.15) ... Selecting previously unselected package ca-certificates. Preparing to unpack .../ca-certificates_20170717~16.04.2_all.deb ... Unpacking ca-certificates (20170717~16.04.2) ... Selecting previously unselected package libasprintf0v5:amd64. Preparing to unpack .../libasprintf0v5_0.19.7-2ubuntu3.1_amd64.deb ... Unpacking libasprintf0v5:amd64 (0.19.7-2ubuntu3.1) ... Selecting previously unselected package gettext-base. Preparing to unpack .../gettext-base_0.19.7-2ubuntu3.1_amd64.deb ... Unpacking gettext-base (0.19.7-2ubuntu3.1) ... Selecting previously unselected package krb5-locales. Preparing to unpack .../krb5-locales_1.13.2+dfsg-5ubuntu2.1_all.deb ... Unpacking krb5-locales (1.13.2+dfsg-5ubuntu2.1) ... Selecting previously unselected package libroken18-heimdal:amd64. Preparing to unpack .../libroken18-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... Unpacking libroken18-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Selecting previously unselected package libasn1-8-heimdal:amd64. Preparing to unpack .../libasn1-8-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... Unpacking libasn1-8-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Selecting previously unselected package libkrb5support0:amd64. Preparing to unpack .../libkrb5support0_1.13.2+dfsg-5ubuntu2.1_amd64.deb ... Unpacking libkrb5support0:amd64 (1.13.2+dfsg-5ubuntu2.1) ... Selecting previously unselected package libk5crypto3:amd64. Preparing to unpack .../libk5crypto3_1.13.2+dfsg-5ubuntu2.1_amd64.deb ... Unpacking libk5crypto3:amd64 (1.13.2+dfsg-5ubuntu2.1) ... Selecting previously unselected package libkeyutils1:amd64. Preparing to unpack .../libkeyutils1_1.5.9-8ubuntu1_amd64.deb ... Unpacking libkeyutils1:amd64 (1.5.9-8ubuntu1) ... Selecting previously unselected package libkrb5-3:amd64. Preparing to unpack .../libkrb5-3_1.13.2+dfsg-5ubuntu2.1_amd64.deb ... Unpacking libkrb5-3:amd64 (1.13.2+dfsg-5ubuntu2.1) ... Selecting previously unselected package libgssapi-krb5-2:amd64. Preparing to unpack .../libgssapi-krb5-2_1.13.2+dfsg-5ubuntu2.1_amd64.deb ... Unpacking libgssapi-krb5-2:amd64 (1.13.2+dfsg-5ubuntu2.1) ... Selecting previously unselected package libhcrypto4-heimdal:amd64. Preparing to unpack .../libhcrypto4-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... Unpacking libhcrypto4-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Selecting previously unselected package libheimbase1-heimdal:amd64. Preparing to unpack .../libheimbase1-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... Unpacking libheimbase1-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Selecting previously unselected package libwind0-heimdal:amd64. Preparing to unpack .../libwind0-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... Unpacking libwind0-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Selecting previously unselected package libhx509-5-heimdal:amd64. Preparing to unpack .../libhx509-5-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... Unpacking libhx509-5-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Selecting previously unselected package libkrb5-26-heimdal:amd64. Preparing to unpack .../libkrb5-26-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... Unpacking libkrb5-26-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Selecting previously unselected package libheimntlm0-heimdal:amd64. Preparing to unpack .../libheimntlm0-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... Unpacking libheimntlm0-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Selecting previously unselected package libgssapi3-heimdal:amd64. Preparing to unpack .../libgssapi3-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... Unpacking libgssapi3-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Selecting previously unselected package libsasl2-modules-db:amd64. Preparing to unpack .../libsasl2-modules-db_2.1.26.dfsg1-14ubuntu0.1_amd64.deb ... Unpacking libsasl2-modules-db:amd64 (2.1.26.dfsg1-14ubuntu0.1) ... Selecting previously unselected package libsasl2-2:amd64. Preparing to unpack .../libsasl2-2_2.1.26.dfsg1-14ubuntu0.1_amd64.deb ... Unpacking libsasl2-2:amd64 (2.1.26.dfsg1-14ubuntu0.1) ... Selecting previously unselected package libldap-2.4-2:amd64. Preparing to unpack .../libldap-2.4-2_2.4.42+dfsg-2ubuntu3.7_amd64.deb ... Unpacking libldap-2.4-2:amd64 (2.4.42+dfsg-2ubuntu3.7) ... Selecting previously unselected package librtmp1:amd64. Preparing to unpack .../librtmp1_2.4+20151223.gitfa8646d-1ubuntu0.1_amd64.deb ... Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d-1ubuntu0.1) ... Selecting previously unselected package libcurl3-gnutls:amd64. Preparing to unpack .../libcurl3-gnutls_7.47.0-1ubuntu2.14_amd64.deb ... Unpacking libcurl3-gnutls:amd64 (7.47.0-1ubuntu2.14) ... Selecting previously unselected package libglib2.0-data. Preparing to unpack .../libglib2.0-data_2.48.2-0ubuntu4.4_all.deb ... Unpacking libglib2.0-data (2.48.2-0ubuntu4.4) ... Selecting previously unselected package libicu55:amd64. Preparing to unpack .../libicu55_55.1-7ubuntu0.4_amd64.deb ... Unpacking libicu55:amd64 (55.1-7ubuntu0.4) ... Selecting previously unselected package libsasl2-modules:amd64. Preparing to unpack .../libsasl2-modules_2.1.26.dfsg1-14ubuntu0.1_amd64.deb ... Unpacking libsasl2-modules:amd64 (2.1.26.dfsg1-14ubuntu0.1) ... Selecting previously unselected package libxml2:amd64. Preparing to unpack .../libxml2_2.9.3+dfsg1-1ubuntu0.6_amd64.deb ... Unpacking libxml2:amd64 (2.9.3+dfsg1-1ubuntu0.6) ... Selecting previously unselected package shared-mime-info. Preparing to unpack .../shared-mime-info_1.5-2ubuntu0.2_amd64.deb ... Unpacking shared-mime-info (1.5-2ubuntu0.2) ... Selecting previously unselected package xdg-user-dirs. Preparing to unpack .../xdg-user-dirs_0.15-2ubuntu6.16.04.1_amd64.deb ... Unpacking xdg-user-dirs (0.15-2ubuntu6.16.04.1) ... Selecting previously unselected package xml-core. Preparing to unpack .../xml-core_0.13+nmu2_all.deb ... Unpacking xml-core (0.13+nmu2) ... Selecting previously unselected package autotools-dev. Preparing to unpack .../autotools-dev_20150820.1_all.deb ... Unpacking autotools-dev (20150820.1) ... Selecting previously unselected package curl. Preparing to unpack .../curl_7.47.0-1ubuntu2.14_amd64.deb ... Unpacking curl (7.47.0-1ubuntu2.14) ... Selecting previously unselected package libcroco3:amd64. Preparing to unpack .../libcroco3_0.6.11-1_amd64.deb ... Unpacking libcroco3:amd64 (0.6.11-1) ... Selecting previously unselected package gettext. Preparing to unpack .../gettext_0.19.7-2ubuntu3.1_amd64.deb ... Unpacking gettext (0.19.7-2ubuntu3.1) ... Selecting previously unselected package intltool-debian. Preparing to unpack .../intltool-debian_0.35.0+20060710.4_all.deb ... Unpacking intltool-debian (0.35.0+20060710.4) ... Selecting previously unselected package po-debconf. Preparing to unpack .../po-debconf_1.0.19_all.deb ... Unpacking po-debconf (1.0.19) ... Selecting previously unselected package libarchive-zip-perl. Preparing to unpack .../libarchive-zip-perl_1.56-2ubuntu0.1_all.deb ... Unpacking libarchive-zip-perl (1.56-2ubuntu0.1) ... Selecting previously unselected package libfile-stripnondeterminism-perl. Preparing to unpack .../libfile-stripnondeterminism-perl_0.015-1_all.deb ... Unpacking libfile-stripnondeterminism-perl (0.015-1) ... Selecting previously unselected package libtimedate-perl. Preparing to unpack .../libtimedate-perl_2.3000-2_all.deb ... Unpacking libtimedate-perl (2.3000-2) ... Selecting previously unselected package dh-strip-nondeterminism. Preparing to unpack .../dh-strip-nondeterminism_0.015-1_all.deb ... Unpacking dh-strip-nondeterminism (0.015-1) ... Selecting previously unselected package debhelper. Preparing to unpack .../debhelper_9.20160115ubuntu3_all.deb ... Unpacking debhelper (9.20160115ubuntu3) ... Selecting previously unselected package libasprintf-dev:amd64. Preparing to unpack .../libasprintf-dev_0.19.7-2ubuntu3.1_amd64.deb ... Unpacking libasprintf-dev:amd64 (0.19.7-2ubuntu3.1) ... Selecting previously unselected package libgettextpo0:amd64. Preparing to unpack .../libgettextpo0_0.19.7-2ubuntu3.1_amd64.deb ... Unpacking libgettextpo0:amd64 (0.19.7-2ubuntu3.1) ... Selecting previously unselected package libgettextpo-dev:amd64. Preparing to unpack .../libgettextpo-dev_0.19.7-2ubuntu3.1_amd64.deb ... Unpacking libgettextpo-dev:amd64 (0.19.7-2ubuntu3.1) ... Selecting previously unselected package libsys-hostname-long-perl. Preparing to unpack .../libsys-hostname-long-perl_1.5-1_all.deb ... Unpacking libsys-hostname-long-perl (1.5-1) ... Selecting previously unselected package libmail-sendmail-perl. Preparing to unpack .../libmail-sendmail-perl_0.79.16-1_all.deb ... Unpacking libmail-sendmail-perl (0.79.16-1) ... Processing triggers for libc-bin (2.23-0ubuntu11) ... Processing triggers for mime-support (3.59ubuntu1) ... Setting up libglib2.0-0:amd64 (2.48.2-0ubuntu4.4) ... No schema files found: doing nothing. Setting up groff-base (1.22.3-7) ... Setting up bsdmainutils (9.0.6ubuntu3) ... update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode Setting up man-db (2.7.5-1) ... Building database of manual pages ... Setting up sgml-base (1.26+nmu4ubuntu1) ... Setting up libunistring0:amd64 (0.9.3-5.2ubuntu1) ... Setting up libnettle6:amd64 (3.2-1ubuntu0.16.04.1) ... Setting up libhogweed4:amd64 (3.2-1ubuntu0.16.04.1) ... Setting up libidn11:amd64 (1.32-3ubuntu1.2) ... Setting up libp11-kit0:amd64 (0.23.2-5~ubuntu16.04.1) ... Setting up libtasn1-6:amd64 (4.7-3ubuntu0.16.04.3) ... Setting up libgnutls30:amd64 (3.4.10-4ubuntu1.5) ... Setting up openssl (1.0.2g-1ubuntu4.15) ... Setting up ca-certificates (20170717~16.04.2) ... Setting up libasprintf0v5:amd64 (0.19.7-2ubuntu3.1) ... Setting up gettext-base (0.19.7-2ubuntu3.1) ... Setting up krb5-locales (1.13.2+dfsg-5ubuntu2.1) ... Setting up libroken18-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Setting up libasn1-8-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Setting up libkrb5support0:amd64 (1.13.2+dfsg-5ubuntu2.1) ... Setting up libk5crypto3:amd64 (1.13.2+dfsg-5ubuntu2.1) ... Setting up libkeyutils1:amd64 (1.5.9-8ubuntu1) ... Setting up libkrb5-3:amd64 (1.13.2+dfsg-5ubuntu2.1) ... Setting up libgssapi-krb5-2:amd64 (1.13.2+dfsg-5ubuntu2.1) ... Setting up libhcrypto4-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Setting up libheimbase1-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Setting up libwind0-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Setting up libhx509-5-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Setting up libkrb5-26-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Setting up libheimntlm0-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Setting up libgssapi3-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... Setting up libsasl2-modules-db:amd64 (2.1.26.dfsg1-14ubuntu0.1) ... Setting up libsasl2-2:amd64 (2.1.26.dfsg1-14ubuntu0.1) ... Setting up libldap-2.4-2:amd64 (2.4.42+dfsg-2ubuntu3.7) ... Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d-1ubuntu0.1) ... Setting up libcurl3-gnutls:amd64 (7.47.0-1ubuntu2.14) ... Setting up libglib2.0-data (2.48.2-0ubuntu4.4) ... Setting up libicu55:amd64 (55.1-7ubuntu0.4) ... Setting up libsasl2-modules:amd64 (2.1.26.dfsg1-14ubuntu0.1) ... Setting up libxml2:amd64 (2.9.3+dfsg1-1ubuntu0.6) ... Setting up shared-mime-info (1.5-2ubuntu0.2) ... Setting up xdg-user-dirs (0.15-2ubuntu6.16.04.1) ... Setting up xml-core (0.13+nmu2) ... Setting up autotools-dev (20150820.1) ... Setting up curl (7.47.0-1ubuntu2.14) ... Setting up libcroco3:amd64 (0.6.11-1) ... Setting up gettext (0.19.7-2ubuntu3.1) ... Setting up intltool-debian (0.35.0+20060710.4) ... Setting up po-debconf (1.0.19) ... Setting up libarchive-zip-perl (1.56-2ubuntu0.1) ... Setting up libfile-stripnondeterminism-perl (0.015-1) ... Setting up libtimedate-perl (2.3000-2) ... Setting up libasprintf-dev:amd64 (0.19.7-2ubuntu3.1) ... Setting up libgettextpo0:amd64 (0.19.7-2ubuntu3.1) ... Setting up libgettextpo-dev:amd64 (0.19.7-2ubuntu3.1) ... Setting up libsys-hostname-long-perl (1.5-1) ... Setting up libmail-sendmail-perl (0.79.16-1) ... Setting up dh-strip-nondeterminism (0.015-1) ... Setting up debhelper (9.20160115ubuntu3) ... Processing triggers for libc-bin (2.23-0ubuntu11) ... Processing triggers for ca-certificates (20170717~16.04.2) ... Updating certificates in /etc/ssl/certs... 148 added, 0 removed; done. Running hooks in /etc/ca-certificates/update.d... done. Processing triggers for sgml-base (1.26+nmu4ubuntu1) ... Invoking 'apt-get clean' Removing intermediate container 7a1625c19e9a ---> 9ddc6c19017b Step 25/29 : RUN echo "libczmq-dev: 3.0.2-5" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes libczmq-dev ---> Running in 333758f6c2fa libczmq-dev: 3.0.2-5 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building xenial InRelease Hit:2 http://archive.ubuntu.com/ubuntu xenial InRelease Hit:3 http://archive.ubuntu.com/ubuntu xenial-updates InRelease Hit:4 http://security.ubuntu.com/ubuntu xenial-security InRelease Hit:5 http://archive.ubuntu.com/ubuntu xenial-backports InRelease Hit:6 http://archive.ubuntu.com/ubuntu xenial-security InRelease Hit:7 http://packages.ros.org/ros/ubuntu xenial InRelease Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes libczmq-dev' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done The following additional packages will be installed: libczmq3 libsodium18 libzmq3-dev libzmq5 The following NEW packages will be installed: libczmq-dev libczmq3 libsodium18 libzmq3-dev libzmq5 0 upgraded, 5 newly installed, 0 to remove and 1 not upgraded. Need to get 953 kB of archives. After this operation, 4,594 kB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libsodium18 amd64 1.0.8-5 [144 kB] Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libzmq5 amd64 4.1.4-7ubuntu0.1 [149 kB] Get:3 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libzmq3-dev amd64 4.1.4-7ubuntu0.1 [282 kB] Get:4 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libczmq3 amd64 3.0.2-5 [159 kB] Get:5 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libczmq-dev amd64 3.0.2-5 [219 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 953 kB in 0s (8,007 kB/s) Selecting previously unselected package libsodium18:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 18615 files and directories currently installed.) Preparing to unpack .../libsodium18_1.0.8-5_amd64.deb ... Unpacking libsodium18:amd64 (1.0.8-5) ... Selecting previously unselected package libzmq5:amd64. Preparing to unpack .../libzmq5_4.1.4-7ubuntu0.1_amd64.deb ... Unpacking libzmq5:amd64 (4.1.4-7ubuntu0.1) ... Selecting previously unselected package libzmq3-dev:amd64. Preparing to unpack .../libzmq3-dev_4.1.4-7ubuntu0.1_amd64.deb ... Unpacking libzmq3-dev:amd64 (4.1.4-7ubuntu0.1) ... Selecting previously unselected package libczmq3:amd64. Preparing to unpack .../libczmq3_3.0.2-5_amd64.deb ... Unpacking libczmq3:amd64 (3.0.2-5) ... Selecting previously unselected package libczmq-dev:amd64. Preparing to unpack .../libczmq-dev_3.0.2-5_amd64.deb ... Unpacking libczmq-dev:amd64 (3.0.2-5) ... Processing triggers for libc-bin (2.23-0ubuntu11) ... Processing triggers for man-db (2.7.5-1) ... Setting up libsodium18:amd64 (1.0.8-5) ... Setting up libzmq5:amd64 (4.1.4-7ubuntu0.1) ... Setting up libzmq3-dev:amd64 (4.1.4-7ubuntu0.1) ... Setting up libczmq3:amd64 (3.0.2-5) ... Setting up libczmq-dev:amd64 (3.0.2-5) ... Processing triggers for libc-bin (2.23-0ubuntu11) ... Invoking 'apt-get clean' Removing intermediate container 333758f6c2fa ---> 0010b8e7d82f Step 26/29 : RUN echo "ros-kinetic-catkin: 0.7.18-1xenial-20190607-163525-0800" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-catkin ---> Running in 75fdceebba5f ros-kinetic-catkin: 0.7.18-1xenial-20190607-163525-0800 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building xenial InRelease Hit:2 http://archive.ubuntu.com/ubuntu xenial InRelease Hit:3 http://archive.ubuntu.com/ubuntu xenial-updates InRelease Hit:4 http://archive.ubuntu.com/ubuntu xenial-backports InRelease Hit:5 http://archive.ubuntu.com/ubuntu xenial-security InRelease Hit:6 http://security.ubuntu.com/ubuntu xenial-security InRelease Hit:7 http://packages.ros.org/ros/ubuntu xenial InRelease Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-kinetic-catkin' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done The following additional packages will be installed: cmake cmake-data docutils-common docutils-doc google-mock libarchive13 libcurl3 libfreetype6 libgtest-dev libjbig0 libjpeg-turbo8 libjpeg8 liblcms2-2 liblzo2-2 libpaper-utils libpaper1 libpng12-0 libtiff5 libwebp5 libwebpmux1 python-catkin-pkg python-catkin-pkg-modules python-chardet python-dateutil python-docutils python-empy python-nose python-pil python-pkg-resources python-pygments python-pyparsing python-roman python-six tzdata ucf Suggested packages: codeblocks eclipse ninja-build lrzip liblcms2-utils texlive-latex-recommended texlive-latex-base texlive-lang-french fonts-linuxlibertine | ttf-linux-libertine python-coverage python-nose-doc python-pil-doc python-pil-dbg python-setuptools ttf-bitstream-vera The following NEW packages will be installed: cmake cmake-data docutils-common docutils-doc google-mock libarchive13 libcurl3 libfreetype6 libgtest-dev libjbig0 libjpeg-turbo8 libjpeg8 liblcms2-2 liblzo2-2 libpaper-utils libpaper1 libpng12-0 libtiff5 libwebp5 libwebpmux1 python-catkin-pkg python-catkin-pkg-modules python-chardet python-dateutil python-docutils python-empy python-nose python-pil python-pkg-resources python-pygments python-pyparsing python-roman python-six ros-kinetic-catkin tzdata ucf 0 upgraded, 36 newly installed, 0 to remove and 1 not upgraded. Need to get 8,714 kB of archives. After this operation, 44.4 MB of additional disk space will be used. Get:1 http://10.210.9.154/ubuntu/building xenial/main amd64 python-six all 1.11.0 [20.6 kB] Get:2 http://10.210.9.154/ubuntu/building xenial/main amd64 python-catkin-pkg-modules all 0.4.14-1 [41.5 kB] Get:3 http://10.210.9.154/ubuntu/building xenial/main amd64 python-catkin-pkg all 0.4.14-100 [3,516 B] Get:4 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 cmake-data all 3.5.1-1ubuntu3 [1,121 kB] Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 liblzo2-2 amd64 2.08-1.2 [48.7 kB] Get:6 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libarchive13 amd64 3.1.2-11ubuntu0.16.04.7 [262 kB] Get:7 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libcurl3 amd64 7.47.0-1ubuntu2.14 [186 kB] Get:8 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 cmake amd64 3.5.1-1ubuntu3 [2,623 kB] Get:9 http://packages.ros.org/ros/ubuntu xenial/main amd64 ros-kinetic-catkin amd64 0.7.18-1xenial-20190607-163525-0800 [124 kB] Get:10 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libjpeg-turbo8 amd64 1.4.2-0ubuntu3.3 [111 kB] Get:11 http://archive.ubuntu.com/ubuntu xenial/main amd64 libjbig0 amd64 2.1-3.1 [26.6 kB] Get:12 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 tzdata all 2019c-0ubuntu0.16.04 [168 kB] Get:13 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpng12-0 amd64 1.2.54-1ubuntu1.1 [116 kB] Get:14 http://archive.ubuntu.com/ubuntu xenial/main amd64 ucf all 3.0036 [52.9 kB] Get:15 http://archive.ubuntu.com/ubuntu xenial/main amd64 docutils-common all 0.12+dfsg-1 [141 kB] Get:16 http://archive.ubuntu.com/ubuntu xenial/main amd64 docutils-doc all 0.12+dfsg-1 [889 kB] Get:17 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libgtest-dev amd64 1.7.0-4ubuntu1 [198 kB] Get:18 http://archive.ubuntu.com/ubuntu xenial/universe amd64 google-mock amd64 1.7.0-18092013-1 [116 kB] Get:19 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libfreetype6 amd64 2.6.1-0.1ubuntu2.4 [315 kB] Get:20 http://archive.ubuntu.com/ubuntu xenial/main amd64 libjpeg8 amd64 8c-2ubuntu8 [2,194 B] Get:21 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 liblcms2-2 amd64 2.6-3ubuntu2.1 [136 kB] Get:22 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpaper1 amd64 1.1.24+nmu4ubuntu1 [13.7 kB] Get:23 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpaper-utils amd64 1.1.24+nmu4ubuntu1 [8,276 B] Get:24 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libtiff5 amd64 4.0.6-1ubuntu0.7 [149 kB] Get:25 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-dateutil all 2.4.2-1 [42.5 kB] Get:26 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-roman all 2.0.0-2 [8,062 B] Get:27 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-docutils all 0.12+dfsg-1 [348 kB] Get:28 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-pyparsing all 2.0.3+dfsg1-1ubuntu0.1 [35.4 kB] Get:29 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-pkg-resources all 20.7.0-1 [108 kB] Get:30 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-chardet all 2.3.0-2 [96.3 kB] Get:31 http://archive.ubuntu.com/ubuntu xenial/universe amd64 python-empy all 3.3.2-1build1 [72.5 kB] Get:32 http://archive.ubuntu.com/ubuntu xenial/universe amd64 python-nose all 1.3.7-1 [116 kB] Get:33 http://archive.ubuntu.com/ubuntu xenial/main amd64 libwebp5 amd64 0.4.4-1 [165 kB] Get:34 http://archive.ubuntu.com/ubuntu xenial/main amd64 libwebpmux1 amd64 0.4.4-1 [14.2 kB] Get:35 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-pil amd64 3.1.2-0ubuntu1.1 [312 kB] Get:36 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-pygments all 2.1+dfsg-1 [522 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 8,714 kB in 0s (14.5 MB/s) Selecting previously unselected package cmake-data. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 18746 files and directories currently installed.) Preparing to unpack .../cmake-data_3.5.1-1ubuntu3_all.deb ... Unpacking cmake-data (3.5.1-1ubuntu3) ... Selecting previously unselected package liblzo2-2:amd64. Preparing to unpack .../liblzo2-2_2.08-1.2_amd64.deb ... Unpacking liblzo2-2:amd64 (2.08-1.2) ... Selecting previously unselected package libarchive13:amd64. Preparing to unpack .../libarchive13_3.1.2-11ubuntu0.16.04.7_amd64.deb ... Unpacking libarchive13:amd64 (3.1.2-11ubuntu0.16.04.7) ... Selecting previously unselected package libcurl3:amd64. Preparing to unpack .../libcurl3_7.47.0-1ubuntu2.14_amd64.deb ... Unpacking libcurl3:amd64 (7.47.0-1ubuntu2.14) ... Selecting previously unselected package cmake. Preparing to unpack .../cmake_3.5.1-1ubuntu3_amd64.deb ... Unpacking cmake (3.5.1-1ubuntu3) ... Selecting previously unselected package libjpeg-turbo8:amd64. Preparing to unpack .../libjpeg-turbo8_1.4.2-0ubuntu3.3_amd64.deb ... Unpacking libjpeg-turbo8:amd64 (1.4.2-0ubuntu3.3) ... Selecting previously unselected package libjbig0:amd64. Preparing to unpack .../libjbig0_2.1-3.1_amd64.deb ... Unpacking libjbig0:amd64 (2.1-3.1) ... Selecting previously unselected package tzdata. Preparing to unpack .../tzdata_2019c-0ubuntu0.16.04_all.deb ... Unpacking tzdata (2019c-0ubuntu0.16.04) ... Selecting previously unselected package libpng12-0:amd64. Preparing to unpack .../libpng12-0_1.2.54-1ubuntu1.1_amd64.deb ... Unpacking libpng12-0:amd64 (1.2.54-1ubuntu1.1) ... Selecting previously unselected package ucf. Preparing to unpack .../archives/ucf_3.0036_all.deb ... Moving old data out of the way Unpacking ucf (3.0036) ... Selecting previously unselected package docutils-common. Preparing to unpack .../docutils-common_0.12+dfsg-1_all.deb ... Unpacking docutils-common (0.12+dfsg-1) ... Selecting previously unselected package docutils-doc. Preparing to unpack .../docutils-doc_0.12+dfsg-1_all.deb ... Unpacking docutils-doc (0.12+dfsg-1) ... Selecting previously unselected package libgtest-dev:amd64. Preparing to unpack .../libgtest-dev_1.7.0-4ubuntu1_amd64.deb ... Unpacking libgtest-dev:amd64 (1.7.0-4ubuntu1) ... Selecting previously unselected package google-mock:amd64. Preparing to unpack .../google-mock_1.7.0-18092013-1_amd64.deb ... Unpacking google-mock:amd64 (1.7.0-18092013-1) ... Selecting previously unselected package libfreetype6:amd64. Preparing to unpack .../libfreetype6_2.6.1-0.1ubuntu2.4_amd64.deb ... Unpacking libfreetype6:amd64 (2.6.1-0.1ubuntu2.4) ... Selecting previously unselected package libjpeg8:amd64. Preparing to unpack .../libjpeg8_8c-2ubuntu8_amd64.deb ... Unpacking libjpeg8:amd64 (8c-2ubuntu8) ... Selecting previously unselected package liblcms2-2:amd64. Preparing to unpack .../liblcms2-2_2.6-3ubuntu2.1_amd64.deb ... Unpacking liblcms2-2:amd64 (2.6-3ubuntu2.1) ... Selecting previously unselected package libpaper1:amd64. Preparing to unpack .../libpaper1_1.1.24+nmu4ubuntu1_amd64.deb ... Unpacking libpaper1:amd64 (1.1.24+nmu4ubuntu1) ... Selecting previously unselected package libpaper-utils. Preparing to unpack .../libpaper-utils_1.1.24+nmu4ubuntu1_amd64.deb ... Unpacking libpaper-utils (1.1.24+nmu4ubuntu1) ... Selecting previously unselected package libtiff5:amd64. Preparing to unpack .../libtiff5_4.0.6-1ubuntu0.7_amd64.deb ... Unpacking libtiff5:amd64 (4.0.6-1ubuntu0.7) ... Selecting previously unselected package python-six. Preparing to unpack .../python-six_1.11.0_all.deb ... Unpacking python-six (1.11.0) ... Selecting previously unselected package python-dateutil. Preparing to unpack .../python-dateutil_2.4.2-1_all.deb ... Unpacking python-dateutil (2.4.2-1) ... Selecting previously unselected package python-roman. Preparing to unpack .../python-roman_2.0.0-2_all.deb ... Unpacking python-roman (2.0.0-2) ... Selecting previously unselected package python-docutils. Preparing to unpack .../python-docutils_0.12+dfsg-1_all.deb ... Unpacking python-docutils (0.12+dfsg-1) ... Selecting previously unselected package python-pyparsing. Preparing to unpack .../python-pyparsing_2.0.3+dfsg1-1ubuntu0.1_all.deb ... Unpacking python-pyparsing (2.0.3+dfsg1-1ubuntu0.1) ... Selecting previously unselected package python-catkin-pkg-modules. Preparing to unpack .../python-catkin-pkg-modules_0.4.14-1_all.deb ... Unpacking python-catkin-pkg-modules (0.4.14-1) ... Selecting previously unselected package python-catkin-pkg. Preparing to unpack .../python-catkin-pkg_0.4.14-100_all.deb ... Unpacking python-catkin-pkg (0.4.14-100) ... Selecting previously unselected package python-pkg-resources. Preparing to unpack .../python-pkg-resources_20.7.0-1_all.deb ... Unpacking python-pkg-resources (20.7.0-1) ... Selecting previously unselected package python-chardet. Preparing to unpack .../python-chardet_2.3.0-2_all.deb ... Unpacking python-chardet (2.3.0-2) ... Selecting previously unselected package python-empy. Preparing to unpack .../python-empy_3.3.2-1build1_all.deb ... Unpacking python-empy (3.3.2-1build1) ... Selecting previously unselected package python-nose. Preparing to unpack .../python-nose_1.3.7-1_all.deb ... Unpacking python-nose (1.3.7-1) ... Selecting previously unselected package libwebp5:amd64. Preparing to unpack .../libwebp5_0.4.4-1_amd64.deb ... Unpacking libwebp5:amd64 (0.4.4-1) ... Selecting previously unselected package libwebpmux1:amd64. Preparing to unpack .../libwebpmux1_0.4.4-1_amd64.deb ... Unpacking libwebpmux1:amd64 (0.4.4-1) ... Selecting previously unselected package python-pil:amd64. Preparing to unpack .../python-pil_3.1.2-0ubuntu1.1_amd64.deb ... Unpacking python-pil:amd64 (3.1.2-0ubuntu1.1) ... Selecting previously unselected package python-pygments. Preparing to unpack .../python-pygments_2.1+dfsg-1_all.deb ... Unpacking python-pygments (2.1+dfsg-1) ... Selecting previously unselected package ros-kinetic-catkin. Preparing to unpack .../ros-kinetic-catkin_0.7.18-1xenial-20190607-163525-0800_amd64.deb ... Unpacking ros-kinetic-catkin (0.7.18-1xenial-20190607-163525-0800) ... Processing triggers for man-db (2.7.5-1) ... Processing triggers for libc-bin (2.23-0ubuntu11) ... Processing triggers for shared-mime-info (1.5-2ubuntu0.2) ... Processing triggers for sgml-base (1.26+nmu4ubuntu1) ... Setting up cmake-data (3.5.1-1ubuntu3) ... Setting up liblzo2-2:amd64 (2.08-1.2) ... Setting up libarchive13:amd64 (3.1.2-11ubuntu0.16.04.7) ... Setting up libcurl3:amd64 (7.47.0-1ubuntu2.14) ... Setting up cmake (3.5.1-1ubuntu3) ... Setting up libjpeg-turbo8:amd64 (1.4.2-0ubuntu3.3) ... Setting up libjbig0:amd64 (2.1-3.1) ... Setting up tzdata (2019c-0ubuntu0.16.04) ... Current default time zone: 'Etc/UTC' Local time is now: Mon Dec 2 14:23:21 UTC 2019. Universal Time is now: Mon Dec 2 14:23:21 UTC 2019. Run 'dpkg-reconfigure tzdata' if you wish to change it. Setting up libpng12-0:amd64 (1.2.54-1ubuntu1.1) ... Setting up ucf (3.0036) ... Setting up docutils-common (0.12+dfsg-1) ... Setting up docutils-doc (0.12+dfsg-1) ... Setting up libgtest-dev:amd64 (1.7.0-4ubuntu1) ... Setting up google-mock:amd64 (1.7.0-18092013-1) ... Setting up libfreetype6:amd64 (2.6.1-0.1ubuntu2.4) ... Setting up libjpeg8:amd64 (8c-2ubuntu8) ... Setting up liblcms2-2:amd64 (2.6-3ubuntu2.1) ... Setting up libpaper1:amd64 (1.1.24+nmu4ubuntu1) ... Creating config file /etc/papersize with new version Setting up libpaper-utils (1.1.24+nmu4ubuntu1) ... Setting up libtiff5:amd64 (4.0.6-1ubuntu0.7) ... Setting up python-six (1.11.0) ... Setting up python-dateutil (2.4.2-1) ... Setting up python-roman (2.0.0-2) ... Setting up python-pyparsing (2.0.3+dfsg1-1ubuntu0.1) ... Setting up python-pkg-resources (20.7.0-1) ... Setting up python-chardet (2.3.0-2) ... Setting up python-empy (3.3.2-1build1) ... Setting up python-nose (1.3.7-1) ... Setting up libwebp5:amd64 (0.4.4-1) ... Setting up libwebpmux1:amd64 (0.4.4-1) ... Setting up python-pil:amd64 (3.1.2-0ubuntu1.1) ... Setting up python-pygments (2.1+dfsg-1) ... Processing triggers for sgml-base (1.26+nmu4ubuntu1) ... Setting up python-docutils (0.12+dfsg-1) ... update-alternatives: using /usr/share/docutils/scripts/python2/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode Setting up python-catkin-pkg-modules (0.4.14-1) ... Setting up python-catkin-pkg (0.4.14-100) ... Setting up ros-kinetic-catkin (0.7.18-1xenial-20190607-163525-0800) ... Processing triggers for libc-bin (2.23-0ubuntu11) ... Invoking 'apt-get clean' Removing intermediate container 75fdceebba5f ---> 5a4830c51b8e Step 27/29 : USER buildfarm ---> Running in 51ad573633ca Removing intermediate container 51ad573633ca ---> e68fd04abb0a Step 28/29 : ENTRYPOINT ["sh", "-c"] ---> Running in ba942e2e1be6 Removing intermediate container ba942e2e1be6 ---> ae0998f4e527 Step 29/29 : CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py kinetic py_at_broker --sourcedeb-dir /tmp/binarydeb"] ---> Running in 215988d8580f Removing intermediate container 215988d8580f ---> 80e81f5e0c17 Successfully built 80e81f5e0c17 Successfully tagged binarydeb_build.kinetic_ubuntu_xenial_amd64_py_at_broker:latest + echo # END SECTION # END SECTION + echo # BEGIN SECTION: Run Dockerfile - build binarydeb # BEGIN SECTION: Run Dockerfile - build binarydeb + docker run --rm --cidfile=/home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/docker_build_binarydeb/docker.cid -e=HOME= -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_build.kinetic_ubuntu_xenial_amd64_py_at_broker # BEGIN SUBSECTION: build binarydeb Package 'ros-kinetic-py-at-broker' version: 0.0.5-1xenial-20191202-141949+0000 Invoking 'apt-src build ros-kinetic-py-at-broker' in '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5' I: Building in /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5 .. dpkg-buildpackage: source package ros-kinetic-py-at-broker dpkg-buildpackage: source version 0.0.5-1xenial-20191202-141949+0000 dpkg-buildpackage: source distribution xenial dpkg-buildpackage: source changed by Marc Hanheide dpkg-source --before-build ros-kinetic-py-at-broker-0.0.5 dpkg-buildpackage: host architecture amd64 dpkg-source: info: using options from ros-kinetic-py-at-broker-0.0.5/debian/source/options: --auto-commit fakeroot debian/rules clean dh clean -v --buildsystem=cmake dh_testdir -O-v -O--buildsystem=cmake dh_auto_clean -O-v -O--buildsystem=cmake dh_clean -O-v -O--buildsystem=cmake rm -f debian/debhelper-build-stamp rm -f debian/ros-kinetic-py-at-broker.substvars rm -f debian/ros-kinetic-py-at-broker.*.debhelper rm -rf debian/ros-kinetic-py-at-broker/ rm -rf debian/.debhelper/ rm -f debian/*.debhelper.log rm -f debian/files find . \( \( \ \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS \) -prune -o -type f -a \ \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ \) -exec rm -f {} + \) -o \ \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) rm -f *-stamp debian/rules build dh build -v --buildsystem=cmake dh_testdir -O-v -O--buildsystem=cmake dh_update_autotools_config -O-v -O--buildsystem=cmake debian/rules override_dh_auto_configure make[1]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/kinetic/setup.sh" ]; then . "/opt/ros/kinetic/setup.sh"; fi && \ dh_auto_configure -- -DCMAKE_INSTALL_PREFIX="/opt/ros/kinetic" mkdir -p obj-x86_64-linux-gnu cd obj-x86_64-linux-gnu cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var -DCMAKE_INSTALL_PREFIX=/opt/ros/kinetic -- The CXX compiler identification is GNU 5.4.0 -- Check for working CXX compiler: /usr/lib/ccache/x86_64-linux-gnu-g++ -- Check for working CXX compiler: /usr/lib/ccache/x86_64-linux-gnu-g++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE) -- Looking for C++ include pthread.h -- Looking for C++ include pthread.h - found -- Looking for pthread_create -- Looking for pthread_create - not found -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- Configuring done -- Generating done -- Build files have been written to: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5 make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5' debian/rules override_dh_auto_build make[1]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/kinetic/setup.sh" ]; then . "/opt/ros/kinetic/setup.sh"; fi && \ dh_auto_build cd obj-x86_64-linux-gnu make -j1 make[2]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' /usr/bin/cmake -H/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5 -B/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/CMakeFiles/progress.marks make -f CMakeFiles/Makefile2 all make[3]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' make -f addr_broker/CMakeFiles/abroker.dir/build.make addr_broker/CMakeFiles/abroker.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5 /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker/CMakeFiles/abroker.dir/DependInfo.cmake --color= Scanning dependencies of target abroker make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' make -f addr_broker/CMakeFiles/abroker.dir/build.make addr_broker/CMakeFiles/abroker.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' [ 11%] Building CXX object addr_broker/CMakeFiles/abroker.dir/src/addr_broker.cc.o cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker && /usr/lib/ccache/x86_64-linux-gnu-g++ -I/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker/lib/flatbuffers/include -I/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker/lib/spdlog/include -I/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/include -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -std=gnu++11 -o CMakeFiles/abroker.dir/src/addr_broker.cc.o -c /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker/src/addr_broker.cc [ 22%] Linking CXX static library libabroker.a cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker && /usr/bin/cmake -P CMakeFiles/abroker.dir/cmake_clean_target.cmake cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker && /usr/bin/cmake -E cmake_link_script CMakeFiles/abroker.dir/link.txt --verbose=1 /usr/bin/ar qc libabroker.a CMakeFiles/abroker.dir/src/addr_broker.cc.o /usr/bin/ranlib libabroker.a make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' [ 22%] Built target abroker make -f addr_broker/CMakeFiles/addr_broker.dir/build.make addr_broker/CMakeFiles/addr_broker.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5 /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker/CMakeFiles/addr_broker.dir/DependInfo.cmake --color= Scanning dependencies of target addr_broker make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' make -f addr_broker/CMakeFiles/addr_broker.dir/build.make addr_broker/CMakeFiles/addr_broker.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' [ 33%] Building CXX object addr_broker/CMakeFiles/addr_broker.dir/src/addr_broker_main.cc.o cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker && /usr/lib/ccache/x86_64-linux-gnu-g++ -I/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker/lib/flatbuffers/include -I/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker/lib/spdlog/include -I/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/include -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -std=gnu++11 -o CMakeFiles/addr_broker.dir/src/addr_broker_main.cc.o -c /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker/src/addr_broker_main.cc [ 44%] Linking CXX executable addr_broker cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker && /usr/bin/cmake -E cmake_link_script CMakeFiles/addr_broker.dir/link.txt --verbose=1 /usr/lib/ccache/x86_64-linux-gnu-g++ -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 CMakeFiles/addr_broker.dir/src/addr_broker_main.cc.o -o addr_broker -rdynamic libabroker.a -lzmq -lczmq -lpthread make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' [ 44%] Built target addr_broker make -f addr_broker/CMakeFiles/kill_addr_broker.dir/build.make addr_broker/CMakeFiles/kill_addr_broker.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5 /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker/CMakeFiles/kill_addr_broker.dir/DependInfo.cmake --color= Scanning dependencies of target kill_addr_broker make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' make -f addr_broker/CMakeFiles/kill_addr_broker.dir/build.make addr_broker/CMakeFiles/kill_addr_broker.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' [ 55%] Building CXX object addr_broker/CMakeFiles/kill_addr_broker.dir/src/kill_addr_broker_main.cc.o cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker && /usr/lib/ccache/x86_64-linux-gnu-g++ -I/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/include -I/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker/lib/flatbuffers/include -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -std=gnu++11 -o CMakeFiles/kill_addr_broker.dir/src/kill_addr_broker_main.cc.o -c /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker/src/kill_addr_broker_main.cc [ 66%] Linking CXX executable kill_addr_broker cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker && /usr/bin/cmake -E cmake_link_script CMakeFiles/kill_addr_broker.dir/link.txt --verbose=1 /usr/lib/ccache/x86_64-linux-gnu-g++ -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 CMakeFiles/kill_addr_broker.dir/src/kill_addr_broker_main.cc.o -o kill_addr_broker -rdynamic -lzmq -lczmq make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' [ 66%] Built target kill_addr_broker make -f cpp/CMakeFiles/atc.dir/build.make cpp/CMakeFiles/atc.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5 /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/cpp /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/cpp /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/cpp/CMakeFiles/atc.dir/DependInfo.cmake --color= Scanning dependencies of target atc make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' make -f cpp/CMakeFiles/atc.dir/build.make cpp/CMakeFiles/atc.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' [ 77%] Building CXX object cpp/CMakeFiles/atc.dir/src/broker.cc.o cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/cpp && /usr/lib/ccache/x86_64-linux-gnu-g++ -DATC_REALTIME_KERNEL=1 -Datc_EXPORTS -I/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker/lib/spdlog/include -I/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker/lib/flatbuffers/include -I/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/include -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -std=gnu++11 -o CMakeFiles/atc.dir/src/broker.cc.o -c /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/cpp/src/broker.cc [ 88%] Building CXX object cpp/CMakeFiles/atc.dir/src/fb_msg.cc.o cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/cpp && /usr/lib/ccache/x86_64-linux-gnu-g++ -DATC_REALTIME_KERNEL=1 -Datc_EXPORTS -I/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker/lib/spdlog/include -I/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker/lib/flatbuffers/include -I/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/include -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -std=gnu++11 -o CMakeFiles/atc.dir/src/fb_msg.cc.o -c /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/cpp/src/fb_msg.cc [100%] Linking CXX shared library libatc.so cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/cpp && /usr/bin/cmake -E cmake_link_script CMakeFiles/atc.dir/link.txt --verbose=1 /usr/lib/ccache/x86_64-linux-gnu-g++ -fPIC -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -shared -Wl,-soname,libatc.so -o libatc.so CMakeFiles/atc.dir/src/broker.cc.o CMakeFiles/atc.dir/src/fb_msg.cc.o -lzmq -lczmq make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' [100%] Built target atc make[3]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/CMakeFiles 0 make[2]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5 make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5' debian/rules override_dh_auto_test make[1]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. echo -- Running tests. Even if one of them fails the build is not canceled. -- Running tests. Even if one of them fails the build is not canceled. if [ -f "/opt/ros/kinetic/setup.sh" ]; then . "/opt/ros/kinetic/setup.sh"; fi && \ dh_auto_test || true make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5' fakeroot debian/rules binary dh binary -v --buildsystem=cmake dh_testroot -O-v -O--buildsystem=cmake dh_prep -O-v -O--buildsystem=cmake rm -f debian/ros-kinetic-py-at-broker.substvars rm -f debian/ros-kinetic-py-at-broker.*.debhelper rm -rf debian/ros-kinetic-py-at-broker/ dh_installdirs -O-v -O--buildsystem=cmake install -d debian/ros-kinetic-py-at-broker debian/rules override_dh_auto_install make[1]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/kinetic/setup.sh" ]; then . "/opt/ros/kinetic/setup.sh"; fi && \ dh_auto_install cd obj-x86_64-linux-gnu make -j1 install DESTDIR=/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker AM_UPDATE_INFO_DIR=no make[2]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' /usr/bin/cmake -H/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5 -B/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/CMakeFiles/progress.marks make -f CMakeFiles/Makefile2 all make[3]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' make -f addr_broker/CMakeFiles/abroker.dir/build.make addr_broker/CMakeFiles/abroker.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5 /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker/CMakeFiles/abroker.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' make -f addr_broker/CMakeFiles/abroker.dir/build.make addr_broker/CMakeFiles/abroker.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'addr_broker/CMakeFiles/abroker.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' [ 22%] Built target abroker make -f addr_broker/CMakeFiles/addr_broker.dir/build.make addr_broker/CMakeFiles/addr_broker.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5 /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker/CMakeFiles/addr_broker.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' make -f addr_broker/CMakeFiles/addr_broker.dir/build.make addr_broker/CMakeFiles/addr_broker.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'addr_broker/CMakeFiles/addr_broker.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' [ 44%] Built target addr_broker make -f addr_broker/CMakeFiles/kill_addr_broker.dir/build.make addr_broker/CMakeFiles/kill_addr_broker.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5 /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker/CMakeFiles/kill_addr_broker.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' make -f addr_broker/CMakeFiles/kill_addr_broker.dir/build.make addr_broker/CMakeFiles/kill_addr_broker.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'addr_broker/CMakeFiles/kill_addr_broker.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' [ 66%] Built target kill_addr_broker make -f cpp/CMakeFiles/atc.dir/build.make cpp/CMakeFiles/atc.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5 /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/cpp /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/cpp /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/cpp/CMakeFiles/atc.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' make -f cpp/CMakeFiles/atc.dir/build.make cpp/CMakeFiles/atc.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'cpp/CMakeFiles/atc.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' [100%] Built target atc make[3]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/CMakeFiles 0 make -f CMakeFiles/Makefile2 preinstall make[3]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' make[3]: Nothing to be done for 'preinstall'. make[3]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' Install the project... /usr/bin/cmake -P cmake_install.cmake -- Install configuration: "None" -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/atc/messages -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/atc/messages/AddrBrokerComm_generated.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/atc/messages/franka_images_generated.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/atc/messages/task_policy_generated.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/atc/messages/double_signal_generated.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/atc/messages/Timestamp_generated.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/atc/messages/empowerment_policy_generated.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/atc/messages/gripper_cmd_generated.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/atc/messages/Signal_generated.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/atc/messages/franka_state_generated.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/atc/messages/franka_lidar_generated.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/atc/messages/des_tau_generated.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/atc/broker.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/atc/fb_msg.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/lib/cmake/atc/atcConfig.cmake -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/bin/addr_broker -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/bin/kill_addr_broker -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/lib/libatc.so -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/fmt -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/fmt/ostr.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/fmt/bundled -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/fmt/bundled/posix.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/fmt/bundled/LICENSE.rst -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/fmt/bundled/printf.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/fmt/bundled/posix.cc -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/fmt/bundled/time.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/fmt/bundled/format.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/fmt/bundled/format.cc -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/fmt/bundled/printf.cc -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/fmt/bundled/ostream.cc -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/fmt/bundled/ostream.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/fmt/fmt.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/sinks -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/sinks/android_sink.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/sinks/file_sinks.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/sinks/ansicolor_sink.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/sinks/null_sink.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/sinks/stdout_sinks.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/sinks/ostream_sink.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/sinks/base_sink.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/sinks/sink.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/sinks/wincolor_sink.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/sinks/windebug_sink.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/sinks/syslog_sink.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/sinks/msvc_sink.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/sinks/dist_sink.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/async_logger.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/formatter.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/spdlog.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/common.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/tweakme.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/details -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/details/log_msg.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/details/pattern_formatter_impl.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/details/spdlog_impl.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/details/async_log_helper.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/details/os.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/details/async_logger_impl.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/details/mpmc_bounded_q.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/details/logger_impl.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/details/null_mutex.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/details/registry.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/details/file_helper.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/spdlog/logger.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/flatbuffers -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/flatbuffers/stl_emulation.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/flatbuffers/idl.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/flatbuffers/util.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/flatbuffers/base.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/flatbuffers/minireflect.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/flatbuffers/hash.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/flatbuffers/code_generators.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/flatbuffers/flatbuffers.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/flatbuffers/flexbuffers.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/flatbuffers/grpc.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/flatbuffers/registry.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/flatbuffers/reflection_generated.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/flatbuffers/reflection.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/include/flatbuffers/flatc.h -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/lib/cmake/atc/atcTargets.cmake -- Installing: /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker/opt/ros/kinetic/lib/cmake/atc/atcTargets-none.cmake make[2]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5 make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5' dh_install -O-v -O--buildsystem=cmake dh_installdocs -O-v -O--buildsystem=cmake install -d debian/ros-kinetic-py-at-broker/usr/share/doc/ros-kinetic-py-at-broker dh_installchangelogs -O-v -O--buildsystem=cmake install -p -m0644 debian/changelog debian/ros-kinetic-py-at-broker/usr/share/doc/ros-kinetic-py-at-broker/changelog.Debian dh_installexamples -O-v -O--buildsystem=cmake dh_installman -O-v -O--buildsystem=cmake dh_installcatalogs -O-v -O--buildsystem=cmake dh_installcron -O-v -O--buildsystem=cmake dh_installdebconf -O-v -O--buildsystem=cmake install -d debian/ros-kinetic-py-at-broker/DEBIAN dh_installemacsen -O-v -O--buildsystem=cmake dh_installifupdown -O-v -O--buildsystem=cmake dh_installinfo -O-v -O--buildsystem=cmake dh_installinit -O-v -O--buildsystem=cmake dh_installmenu -O-v -O--buildsystem=cmake dh_installmime -O-v -O--buildsystem=cmake dh_installmodules -O-v -O--buildsystem=cmake dh_installlogcheck -O-v -O--buildsystem=cmake dh_installlogrotate -O-v -O--buildsystem=cmake dh_installpam -O-v -O--buildsystem=cmake dh_installppp -O-v -O--buildsystem=cmake dh_installudev -O-v -O--buildsystem=cmake dh_installgsettings -O-v -O--buildsystem=cmake dh_bugfiles -O-v -O--buildsystem=cmake dh_ucf -O-v -O--buildsystem=cmake dh_lintian -O-v -O--buildsystem=cmake dh_gconf -O-v -O--buildsystem=cmake dh_icons -O-v -O--buildsystem=cmake dh_perl -O-v -O--buildsystem=cmake dh_usrlocal -O-v -O--buildsystem=cmake dh_link -O-v -O--buildsystem=cmake dh_installwm -O-v -O--buildsystem=cmake dh_installxfonts -O-v -O--buildsystem=cmake dh_strip_nondeterminism -O-v -O--buildsystem=cmake dh_compress -O-v -O--buildsystem=cmake cd debian/ros-kinetic-py-at-broker chmod a-x usr/share/doc/ros-kinetic-py-at-broker/changelog.Debian gzip -9nf usr/share/doc/ros-kinetic-py-at-broker/changelog.Debian cd '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5' dh_fixperms -O-v -O--buildsystem=cmake find debian/ros-kinetic-py-at-broker -print0 2>/dev/null | xargs -0r chown --no-dereference 0:0 find debian/ros-kinetic-py-at-broker ! -type l -print0 2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s find debian/ros-kinetic-py-at-broker/usr/share/doc -type f ! -regex 'debian/ros-kinetic-py-at-broker/usr/share/doc/[^/]*/examples/.*' -print0 2>/dev/null | xargs -0r chmod 0644 find debian/ros-kinetic-py-at-broker/usr/share/doc -type d -print0 2>/dev/null | xargs -0r chmod 0755 find debian/ros-kinetic-py-at-broker/usr/share/man debian/ros-kinetic-py-at-broker/usr/man/ debian/ros-kinetic-py-at-broker/usr/X11*/man/ -type f -print0 2>/dev/null | xargs -0r chmod 0644 find debian/ros-kinetic-py-at-broker/usr/include -type f -print0 2>/dev/null | xargs -0r chmod 0644 find debian/ros-kinetic-py-at-broker/usr/share/applications -type f -print0 2>/dev/null | xargs -0r chmod 0644 find debian/ros-kinetic-py-at-broker/usr/lib/x86_64-linux-gnu/perl5/5.22 debian/ros-kinetic-py-at-broker/usr/share/perl5 -type f -perm -5 -name '*.pm' -print0 2>/dev/null | xargs -0r chmod a-X find debian/ros-kinetic-py-at-broker -perm -5 -type f \( -name '*.so.*' -o -name '*.so' -o -name '*.la' -o -name '*.a' -o -name '*.js' -o -name '*.css' -o -name '*.jpeg' -o -name '*.jpg' -o -name '*.png' -o -name '*.gif' -o -name '*.cmxs' \) -print0 2>/dev/null | xargs -0r chmod 0644 find debian/ros-kinetic-py-at-broker/usr/lib -type f -name '*.ali' -print0 2>/dev/null | xargs -0r chmod uga-w dh_strip -O-v -O--buildsystem=cmake strip --remove-section=.comment --remove-section=.note --strip-unneeded debian/ros-kinetic-py-at-broker/opt/ros/kinetic/lib/libatc.so strip --remove-section=.comment --remove-section=.note debian/ros-kinetic-py-at-broker/opt/ros/kinetic/bin/addr_broker strip --remove-section=.comment --remove-section=.note debian/ros-kinetic-py-at-broker/opt/ros/kinetic/bin/kill_addr_broker dh_makeshlibs -O-v -O--buildsystem=cmake rm -f debian/ros-kinetic-py-at-broker/DEBIAN/shlibs debian/rules override_dh_shlibdeps make[1]: Entering directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/kinetic/setup.sh" ]; then . "/opt/ros/kinetic/setup.sh"; fi && \ dh_shlibdeps -l/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker//opt/ros/kinetic/lib/ dpkg-shlibdeps -Tdebian/ros-kinetic-py-at-broker.substvars -l/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5/debian/ros-kinetic-py-at-broker//opt/ros/kinetic/lib/ debian/ros-kinetic-py-at-broker/opt/ros/kinetic/lib/libatc.so debian/ros-kinetic-py-at-broker/opt/ros/kinetic/bin/addr_broker debian/ros-kinetic-py-at-broker/opt/ros/kinetic/bin/kill_addr_broker dpkg-shlibdeps: warning: symbol pthread_create used by debian/ros-kinetic-py-at-broker/opt/ros/kinetic/lib/libatc.so found in none of the libraries make[1]: Leaving directory '/tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5' dh_installdeb -O-v -O--buildsystem=cmake dh_gencontrol -O-v -O--buildsystem=cmake echo misc:Depends= >> debian/ros-kinetic-py-at-broker.substvars echo misc:Pre-Depends= >> debian/ros-kinetic-py-at-broker.substvars dpkg-gencontrol -pros-kinetic-py-at-broker -ldebian/changelog -Tdebian/ros-kinetic-py-at-broker.substvars -Pdebian/ros-kinetic-py-at-broker chmod 0644 debian/ros-kinetic-py-at-broker/DEBIAN/control chown 0:0 debian/ros-kinetic-py-at-broker/DEBIAN/control dh_md5sums -O-v -O--buildsystem=cmake (cd debian/ros-kinetic-py-at-broker >/dev/null ; find . -type f ! -regex './DEBIAN/.*' -printf '%P\0' | LC_ALL=C sort -z | xargs -r0 md5sum > DEBIAN/md5sums) >/dev/null chmod 0644 debian/ros-kinetic-py-at-broker/DEBIAN/md5sums chown 0:0 debian/ros-kinetic-py-at-broker/DEBIAN/md5sums dh_builddeb -O-v -O--buildsystem=cmake dpkg-deb --build debian/ros-kinetic-py-at-broker .. dpkg-deb: building package 'ros-kinetic-py-at-broker' in '../ros-kinetic-py-at-broker_0.0.5-1xenial-20191202-141949+0000_amd64.deb'. dpkg-genchanges -b >../ros-kinetic-py-at-broker_0.0.5-1xenial-20191202-141949+0000_amd64.changes dpkg-genchanges: binary-only upload (no source code included) dpkg-source --after-build ros-kinetic-py-at-broker-0.0.5 dpkg-source: info: using options from ros-kinetic-py-at-broker-0.0.5/debian/source/options: --auto-commit dpkg-buildpackage: binary-only upload (no source included) I: Successfully built in /tmp/binarydeb/ros-kinetic-py-at-broker-0.0.5 # END SUBSECTION + echo # END SECTION # END SECTION [Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary] $ /bin/sh -xe /tmp/hudson1687809486245877572.sh + [ false = false ] + echo # BEGIN SECTION: Clean up to save disk space on agents # BEGIN SECTION: Clean up to save disk space on agents + chmod -R u+w /home/jenkins-slave/workspace/Kbin_uX64__py_at_broker__ubuntu_xenial_amd64__binary/binarydeb + rm -fr binarydeb/ros-kinetic-py-at-broker-0.0.5/CHANGELOG.rst binarydeb/ros-kinetic-py-at-broker-0.0.5/CMakeFiles binarydeb/ros-kinetic-py-at-broker-0.0.5/CMakeLists.txt binarydeb/ros-kinetic-py-at-broker-0.0.5/Doxyfile binarydeb/ros-kinetic-py-at-broker-0.0.5/addr_broker binarydeb/ros-kinetic-py-at-broker-0.0.5/atcConfig.cmake binarydeb/ros-kinetic-py-at-broker-0.0.5/cmake binarydeb/ros-kinetic-py-at-broker-0.0.5/cpp binarydeb/ros-kinetic-py-at-broker-0.0.5/debian binarydeb/ros-kinetic-py-at-broker-0.0.5/include binarydeb/ros-kinetic-py-at-broker-0.0.5/message_types binarydeb/ros-kinetic-py-at-broker-0.0.5/obj-x86_64-linux-gnu binarydeb/ros-kinetic-py-at-broker-0.0.5/package.xml binarydeb/ros-kinetic-py-at-broker-0.0.5/python binarydeb/ros-kinetic-py-at-broker-0.0.5/rST_docs binarydeb/ros-kinetic-py-at-broker-0.0.5/readme.rst + echo # END SECTION # END SECTION SSH: Connecting from host [lcas-buildfarm-slave-3] SSH: Connecting with configuration [repo] ... SSH: Disconnecting configuration [repo] ... SSH: Transferred 2 file(s) Build step 'Send files or execute commands over SSH' changed build result to SUCCESS Waiting for the completion of Krel_import-package Krel_import-package #5411 completed. Result was SUCCESS $ ssh-agent -k unset SSH_AUTH_SOCK; unset SSH_AGENT_PID; echo Agent pid 15585 killed; [ssh-agent] Stopped. [description-setter] Description set: 0.0.5-1xenial-20191202-141949+0000 Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered Triggering a new build of Krel_sync-packages-to-testing_xenial_amd64 Finished: SUCCESS