Console Output
09:55:25 Started by upstream project "Mrel_trigger-jobs" build number 38340 09:55:25 originally caused by: 09:55:25 Started by timer 09:55:25 Running as SYSTEM 09:55:25 Building remotely on build client 3a (slave buildslave indigo_devel_default buildagent) in workspace /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source 09:55:25 [ssh-agent] Looking for ssh-agent implementation... 09:55:25 [ssh-agent] Exec ssh-agent (binary ssh-agent on a remote machine) 09:55:26 $ ssh-agent 09:55:26 SSH_AUTH_SOCK=/tmp/ssh-Ne7iExXW7MVy/agent.21575 09:55:26 SSH_AGENT_PID=21577 09:55:26 [ssh-agent] Started. 09:55:26 Running ssh-add (command line suppressed) 09:55:26 Identity added: /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source@tmp/private_key_5549527762072787854.key (/home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source@tmp/private_key_5549527762072787854.key) 09:55:26 [ssh-agent] Using credentials jenkins-slave09:55:26 [Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source] $ /bin/sh -xe /tmp/jenkins6707685599236112930.sh 09:55:26 + echo # BEGIN SECTION: docker version1. Check free disk spaceHide Details
09:55:26 # BEGIN SECTION: Check free disk space 09:55:26 Usable disk space = 54507454464 bytes 09:55:26 Free space threshold = 5368709120 bytes 09:55:26 # END SECTION09:55:27 + echo # BEGIN SECTION: docker info2. docker versionHide Details
09:55:26 # BEGIN SECTION: docker version 09:55:26 + docker version 09:55:27 Client: 09:55:27 Version: 1.9.1 09:55:27 API version: 1.21 09:55:27 Go version: go1.4.2 09:55:27 Git commit: a34a1d5 09:55:27 Built: Fri Nov 20 13:12:04 UTC 2015 09:55:27 OS/Arch: linux/amd64 09:55:27 09:55:27 Server: 09:55:27 Version: 1.9.1 09:55:27 API version: 1.21 09:55:27 Go version: go1.4.2 09:55:27 Git commit: a34a1d5 09:55:27 Built: Fri Nov 20 13:12:04 UTC 2015 09:55:27 OS/Arch: linux/amd64 09:55:27 + echo # END SECTION 09:55:27 # END SECTION09:55:31 [Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source] $ /bin/sh -xe /tmp/jenkins1417146611872225563.sh 09:55:31 + echo # BEGIN SECTION: Check docker status3. docker infoHide Details
09:55:27 # BEGIN SECTION: docker info 09:55:27 + docker info 09:55:31 Containers: 135 09:55:31 Images: 1309 09:55:31 Server Version: 1.9.1 09:55:31 Storage Driver: aufs 09:55:31 Root Dir: /var/lib/docker/aufs 09:55:31 Backing Filesystem: extfs 09:55:31 Dirs: 1728 09:55:31 Dirperm1 Supported: false 09:55:31 Execution Driver: native-0.2 09:55:31 Logging Driver: json-file 09:55:31 Kernel Version: 3.13.0-29-generic 09:55:31 Operating System: Ubuntu 14.04 LTS 09:55:31 CPUs: 2 09:55:31 Total Memory: 3.861 GiB 09:55:31 Name: lcas-buildfarm-slave-3 09:55:31 ID: LZSS:PF7G:CREH:TEQW:FH57:3M6D:KCSS:ODQY:SPHA:ND7A:FHYG:PNDE 09:55:31 WARNING: No swap limit support 09:55:31 + echo # END SECTION 09:55:31 # END SECTION09:55:34 [Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source] $ /bin/sh -xe /tmp/jenkins6400935055501832953.sh 09:55:34 + echo # BEGIN SECTION: Embed wrapper scripts4. Check docker statusHide Details
09:55:31 # BEGIN SECTION: Check docker status 09:55:31 + echo Testing trivial docker invocation... 09:55:31 Testing trivial docker invocation... 09:55:31 + docker run --rm ubuntu:bionic true 09:55:34 + echo 'docker run' returned 0 09:55:34 'docker run' returned 0 09:55:34 docker seems operational, continuing 09:55:34 [Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source] $ /bin/sh -xe /tmp/jenkins1044434412124280737.sh 09:55:34 + echo # END SECTION 09:55:34 # END SECTION09:55:34 [Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source] $ /bin/sh -xe /tmp/jenkins3818998019402514111.sh 09:55:34 + echo # BEGIN SECTION: Clone ros_buildfarm5. Embed wrapper scriptsHide Details
09:55:34 # BEGIN SECTION: Embed wrapper scripts 09:55:34 + rm -fr wrapper_scripts 09:55:34 + mkdir wrapper_scripts 09:55:34 + 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()) 09:55:34 + echo # END SECTION 09:55:34 # END SECTION09:55:36 [Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source] $ /bin/sh -xe /tmp/jenkins3657998983050977262.sh 09:55:36 + echo # BEGIN SECTION: Write PGP repository keys6. Clone ros_buildfarmHide Details
09:55:34 # BEGIN SECTION: Clone ros_buildfarm 09:55:34 + rm -fr ros_buildfarm 09:55:35 + python3 -u wrapper_scripts/git.py clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm 09:55:35 Invoking 'git clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm' 09:55:35 Cloning into 'ros_buildfarm'... 09:55:36 + git -C ros_buildfarm --no-pager log -n 1 09:55:36 commit 5847ba20c70a194f12d32fd0ad5364bed338f8e2 09:55:36 Author: Marc Hanheide <marc@hanheide.net> 09:55:36 Date: Fri Jun 5 12:50:43 2020 +0100 09:55:36 09:55:36 added openssl 09:55:36 + rm -fr ros_buildfarm/.git 09:55:36 + rm -fr ros_buildfarm/doc 09:55:36 + echo # END SECTION 09:55:36 # END SECTION09:55:36 [Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source] $ /bin/sh -xe /tmp/jenkins767445561819924532.sh 09:55:36 + rm -fr /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/docker_sourcedeb 09:55:36 + mkdir -p /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/docker_sourcedeb 09:55:36 + sleep 1 09:55:36 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/ros_buildfarm/scripts/subprocess_reaper.py 21901 --cid-file /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/docker_sourcedeb/docker.cid 09:55:37 + echo # BEGIN SECTION: Generate Dockerfile - sourcedeb task7. Write PGP repository keysHide Details
09:55:36 # BEGIN SECTION: Write PGP repository keys 09:55:36 + mkdir -p /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/keys 09:55:36 + rm -fr /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/keys/0.key /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/keys/1.key 09:55:36 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 09:55:36 Version: GnuPG v1.4.11 (GNU/Linux) 09:55:36 09:55:36 mQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn 09:55:36 MsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf 09:55:36 xcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw 09:55:36 kPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv 09:55:36 /o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh 09:55:36 EBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg 09:55:36 KFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD 09:55:36 BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX 09:55:36 yQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI 09:55:36 7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy 09:55:36 JjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T 09:55:36 Yh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++ 09:55:36 Cut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ 09:55:36 cvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM 09:55:36 hU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3 09:55:36 IWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm 09:55:36 Z4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK 09:55:36 7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb 09:55:36 oRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC 09:55:36 AAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U 09:55:36 NTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0 09:55:36 ikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU 09:55:36 M7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N 09:55:36 l9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ 09:55:36 Chb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ== 09:55:36 =nFcN 09:55:36 -----END PGP PUBLIC KEY BLOCK----- 09:55:36 09:55:36 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 09:55:36 Version: SKS 1.1.6 09:55:36 Comment: Hostname: keyserver.ubuntu.com 09:55:36 09:55:36 mQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L 09:55:36 /HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw 09:55:36 DuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47 09:55:36 ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+ 09:55:36 d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS 09:55:36 6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN 09:55:36 qoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL 09:55:36 8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/ 09:55:36 /SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz 09:55:36 vz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90 09:55:36 aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu 09:55:36 1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur 09:55:36 F8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN 09:55:36 KARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s 09:55:36 NGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv 09:55:36 ZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO 09:55:36 K+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo 09:55:36 bC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs 09:55:36 Fn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s 09:55:36 QNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR 09:55:36 hE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp 09:55:36 PWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd 09:55:36 =4Ofr 09:55:36 -----END PGP PUBLIC KEY BLOCK----- 09:55:36 09:55:36 + echo # END SECTION 09:55:36 # END SECTION09:55:38 + echo # BEGIN SECTION: Build Dockerfile - generate sourcedeb8. Generate Dockerfile - sourcedeb taskHide Details
09:55:37 # BEGIN SECTION: Generate Dockerfile - sourcedeb task 09:55:37 + export TZ=GMT+00 09:55:37 + export PYTHONPATH=/home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/ros_buildfarm: 09:55:37 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/ros_buildfarm/scripts/release/run_sourcedeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic kobuki_gazebo_plugins ubuntu bionic --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/keys/0.key /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/keys/1.key --source-dir /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/sourcedeb/source --dockerfile-dir /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/docker_sourcedeb 09:55:38 Using the following distribution repositories: 09:55:38 http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/keys/0.key) 09:55:38 http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/keys/1.key) 09:55:38 Generating Dockerfile '/home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/docker_sourcedeb/Dockerfile': 09:55:38 # generated from release/sourcedeb_task.Dockerfile.em 09:55:38 09:55:38 FROM ubuntu:bionic 09:55:38 09:55:38 VOLUME ["/var/cache/apt/archives"] 09:55:38 09:55:38 ENV DEBIAN_FRONTEND noninteractive 09:55:38 09:55:38 09:55:38 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 09:55:38 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 09:55:38 RUN locale-gen en_US.UTF-8 09:55:38 ENV LANG en_US.UTF-8 09:55:38 ENV TZ GMT+00 09:55:38 09:55:38 RUN useradd -u 1002 -l -m buildfarm 09:55:38 09:55:38 RUN mkdir /tmp/keys 09:55:38 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 09:55:38 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 09:55:38 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 09:55:38 RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 09:55:38 RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 09:55:38 09:55:38 RUN mkdir /tmp/wrapper_scripts 09:55:38 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 09:55:38 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 09:55:38 09:55:38 # automatic invalidation once every day 09:55:38 RUN echo "2021-03-05 (+0000)" 09:55:38 09:55:38 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 09:55:38 09:55:38 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 09:55:38 09:55:38 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y debhelper dpkg dpkg-dev git git-buildpackage python3-catkin-pkg-modules python3-rosdistro-modules python3-yaml 09:55:38 09:55:38 COPY .git-credentials /home/buildfarm/.git-credentials 09:55:38 RUN chmod 600 /home/buildfarm/.git-credentials 09:55:38 RUN chown buildfarm /home/buildfarm/.git-credentials 09:55:38 09:55:38 USER buildfarm 09:55:38 RUN git config --global credential.helper 'store' 09:55:38 RUN git config --global http.sslVerify false 09:55:38 09:55:38 ENTRYPOINT ["sh", "-c"] 09:55:38 CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/get_sources.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic kobuki_gazebo_plugins ubuntu bionic http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --source-dir /tmp/sourcedeb/source && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/build_sourcedeb.py ubuntu bionic --source-dir /tmp/sourcedeb/source"] 09:55:38 + echo # END SECTION 09:55:38 # END SECTION10:05:15 + echo # BEGIN SECTION: Run Dockerfile - generate sourcedeb9. Build Dockerfile - generate sourcedebHide Details
09:55:38 # BEGIN SECTION: Build Dockerfile - generate sourcedeb 09:55:38 + cd /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/docker_sourcedeb 09:55:38 + cp -L **** /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/docker_sourcedeb/.git-credentials 09:55:38 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 09:55:38 Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic 09:55:38 Check docker base image for updates: docker pull ubuntu:bionic 09:55:39 bionic: Pulling from library/ubuntu 09:55:39 da679e9320a7: Pulling fs layer 09:55:39 2874a44e01ef: Pulling fs layer 09:55:39 7802dc52ed55: Pulling fs layer 09:55:39 df22ffa0b80c: Pulling fs layer 09:55:39 b6d20e24f6f3: Pulling fs layer 09:55:40 df22ffa0b80c: Verifying Checksum 09:55:40 df22ffa0b80c: Download complete 09:55:40 b6d20e24f6f3: Verifying Checksum 09:55:40 b6d20e24f6f3: Download complete 09:55:40 2874a44e01ef: Verifying Checksum 09:55:40 2874a44e01ef: Download complete 09:55:40 7802dc52ed55: Verifying Checksum 09:55:40 7802dc52ed55: Download complete 09:55:41 da679e9320a7: Verifying Checksum 09:55:41 da679e9320a7: Download complete 09:55:45 da679e9320a7: Pull complete 09:55:45 2874a44e01ef: Pull complete 09:55:45 7802dc52ed55: Pull complete 09:55:45 df22ffa0b80c: Pull complete 09:55:45 b6d20e24f6f3: Pull complete 09:55:45 Digest: sha256:b7e2fbc7c8ab515e95a280ce1548ccd75a1351cfe7e4c9fcf728f9e0af1af8c9 09:55:45 Status: Downloaded newer image for ubuntu:bionic 09:55:45 + docker build --force-rm -t sourcedeb.melodic_ubuntu_bionic_kobuki_gazebo_plugins . 09:55:45 Sending build context to Docker daemon 18.94 kB Sending build context to Docker daemon 18.94 kB 09:55:45 Step 1 : FROM ubuntu:bionic 09:55:45 ---> b6d20e24f6f3 09:55:45 Step 2 : VOLUME /var/cache/apt/archives 09:55:46 ---> Running in 94e3c87720b8 09:55:46 ---> 752ea1326f84 09:55:46 Removing intermediate container 94e3c87720b8 09:55:46 Step 3 : ENV DEBIAN_FRONTEND noninteractive 09:55:46 ---> Running in 687d7bc936be 09:55:47 ---> 7cc2688104d7 09:55:47 Removing intermediate container 687d7bc936be 09:55:47 Step 4 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 09:55:48 ---> Running in 7983e06e8bc7 09:55:48 Get:1 http://archive.ubuntu.com/ubuntu bionic InRelease [242 kB] 09:55:48 Get:2 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] 09:55:48 Get:3 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB] 09:55:49 Get:4 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 09:55:49 Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages [1344 kB] 09:55:49 Get:6 http://archive.ubuntu.com/ubuntu bionic/universe amd64 Packages [11.3 MB] 09:55:50 Get:7 http://archive.ubuntu.com/ubuntu bionic/multiverse amd64 Packages [186 kB] 09:55:50 Get:8 http://archive.ubuntu.com/ubuntu bionic/restricted amd64 Packages [13.5 kB] 09:55:50 Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [31.4 kB] 09:55:50 Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [353 kB] 09:55:50 Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [2394 kB] 09:55:50 Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [2163 kB] 09:55:51 Get:13 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [11.4 kB] 09:55:51 Get:14 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [11.3 kB] 09:55:51 Get:15 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [324 kB] 09:55:51 Get:16 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1396 kB] 09:55:51 Get:17 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [1963 kB] 09:55:51 Get:18 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [24.5 kB] 09:55:53 Fetched 22.0 MB in 5s (4531 kB/s) 09:55:53 Reading package lists... 09:55:55 Reading package lists... 09:55:58 Building dependency tree... 09:55:58 Reading state information... 09:55:59 The following NEW packages will be installed: 09:55:59 locales 09:55:59 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 09:55:59 Need to get 3611 kB of archives. 09:55:59 After this operation, 14.5 MB of additional disk space will be used. 09:55:59 Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 locales all 2.27-3ubuntu1.4 [3611 kB] 09:55:59 [91mdebconf: delaying package configuration, since apt-utils is not installed 09:55:59 [0mFetched 3611 kB in 0s (24.9 MB/s) 09:55:59 Selecting previously unselected package locales. 09:55:59 (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 ... 4045 files and directories currently installed.) 09:55:59 Preparing to unpack .../locales_2.27-3ubuntu1.4_all.deb ... 09:55:59 Unpacking locales (2.27-3ubuntu1.4) ... 09:56:06 Setting up locales (2.27-3ubuntu1.4) ... 09:56:09 Generating locales (this might take a while)... 09:56:09 Generation complete. 09:56:13 ---> f5ba9868e3ea 09:56:13 Removing intermediate container 7983e06e8bc7 09:56:13 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 09:56:13 ---> Running in 8921b7a3482d 09:56:15 ---> ccfde45b9da6 09:56:15 Removing intermediate container 8921b7a3482d 09:56:15 Step 6 : RUN locale-gen en_US.UTF-8 09:56:15 ---> Running in dc41a99141cd 09:56:15 Generating locales (this might take a while)... 09:56:15 en_US.UTF-8... done 09:56:17 Generation complete. 09:56:17 ---> 0010f4046f08 09:56:17 Removing intermediate container dc41a99141cd 09:56:17 Step 7 : ENV LANG en_US.UTF-8 09:56:18 ---> Running in aaaff23761c7 09:56:18 ---> 69b2641580c7 09:56:19 Removing intermediate container aaaff23761c7 09:56:19 Step 8 : ENV TZ GMT+00 09:56:19 ---> Running in e7d6c87fe1ae 09:56:20 ---> bc5d72ed4bfe 09:56:20 Removing intermediate container e7d6c87fe1ae 09:56:20 Step 9 : RUN useradd -u 1002 -l -m buildfarm 09:56:20 ---> Running in f0d068cad864 09:56:21 ---> c084a62bbc59 09:56:21 Error removing intermediate container f0d068cad864: rmdriverfs: Driver aufs failed to remove root filesystem f0d068cad8645910bb3f538c31faec264215a9c99e957335092891c230421e5a: rename /var/lib/docker/aufs/mnt/f0d068cad8645910bb3f538c31faec264215a9c99e957335092891c230421e5a /var/lib/docker/aufs/mnt/f0d068cad8645910bb3f538c31faec264215a9c99e957335092891c230421e5a-removing: device or resource busy 09:56:21 Step 10 : RUN mkdir /tmp/keys 09:56:21 ---> Running in 3919603494e9 09:56:23 ---> 234f7dba7cff 09:56:23 Error removing intermediate container f0d068cad864: nosuchcontainer: no such id: f0d068cad8645910bb3f538c31faec264215a9c99e957335092891c230421e5a 09:56:23 Step 11 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 09:56:23 ---> Running in f33ca8cf131c 09:56:24 Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease 09:56:24 Hit:2 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 09:56:24 Hit:3 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 09:56:24 Hit:4 http://security.ubuntu.com/ubuntu bionic-security InRelease 09:56:25 Reading package lists... 09:56:27 Reading package lists... 09:56:29 Building dependency tree... 09:56:29 Reading state information... 09:56:29 The following additional packages will be installed: 09:56:29 dirmngr gnupg-l10n gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server 09:56:29 gpgconf gpgsm libasn1-8-heimdal libassuan0 libgssapi3-heimdal 09:56:29 libhcrypto4-heimdal libheimbase1-heimdal libheimntlm0-heimdal 09:56:29 libhx509-5-heimdal libkrb5-26-heimdal libksba8 libldap-2.4-2 libldap-common 09:56:29 libnpth0 libreadline7 libroken18-heimdal libsasl2-2 libsasl2-modules 09:56:29 libsasl2-modules-db libsqlite3-0 libssl1.1 libwind0-heimdal pinentry-curses 09:56:29 readline-common 09:56:29 Suggested packages: 09:56:29 dbus-user-session libpam-systemd pinentry-gnome3 tor parcimonie xloadimage 09:56:29 scdaemon libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal 09:56:29 libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql pinentry-doc 09:56:29 readline-doc 09:56:29 The following NEW packages will be installed: 09:56:29 dirmngr gnupg gnupg-l10n gnupg-utils gpg gpg-agent gpg-wks-client 09:56:29 gpg-wks-server gpgconf gpgsm libasn1-8-heimdal libassuan0 libgssapi3-heimdal 09:56:29 libhcrypto4-heimdal libheimbase1-heimdal libheimntlm0-heimdal 09:56:29 libhx509-5-heimdal libkrb5-26-heimdal libksba8 libldap-2.4-2 libldap-common 09:56:29 libnpth0 libreadline7 libroken18-heimdal libsasl2-2 libsasl2-modules 09:56:29 libsasl2-modules-db libsqlite3-0 libssl1.1 libwind0-heimdal pinentry-curses 09:56:29 readline-common 09:56:30 0 upgraded, 32 newly installed, 0 to remove and 0 not upgraded. 09:56:30 Need to get 5,186 kB of archives. 09:56:30 After this operation, 15.8 MB of additional disk space will be used. 09:56:30 Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 readline-common all 7.0-3 [52.9 kB] 09:56:30 Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 libreadline7 amd64 7.0-3 [124 kB] 09:56:30 Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsqlite3-0 amd64 3.22.0-1ubuntu0.4 [499 kB] 09:56:30 Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libssl1.1 amd64 1.1.1-1ubuntu2.1~18.04.8 [1,301 kB] 09:56:30 Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 libassuan0 amd64 2.5.1-2 [35.0 kB] 09:56:30 Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gpgconf amd64 2.2.4-1ubuntu1.4 [123 kB] 09:56:30 Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 libksba8 amd64 1.3.5-2 [92.6 kB] 09:56:30 Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 libroken18-heimdal amd64 7.5.0+dfsg-1 [41.3 kB] 09:56:30 Get:9 http://archive.ubuntu.com/ubuntu bionic/main amd64 libasn1-8-heimdal amd64 7.5.0+dfsg-1 [175 kB] 09:56:30 Get:10 http://archive.ubuntu.com/ubuntu bionic/main amd64 libheimbase1-heimdal amd64 7.5.0+dfsg-1 [29.3 kB] 09:56:30 Get:11 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhcrypto4-heimdal amd64 7.5.0+dfsg-1 [85.9 kB] 09:56:30 Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwind0-heimdal amd64 7.5.0+dfsg-1 [47.8 kB] 09:56:30 Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhx509-5-heimdal amd64 7.5.0+dfsg-1 [107 kB] 09:56:30 Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 libkrb5-26-heimdal amd64 7.5.0+dfsg-1 [206 kB] 09:56:30 Get:15 http://archive.ubuntu.com/ubuntu bionic/main amd64 libheimntlm0-heimdal amd64 7.5.0+dfsg-1 [14.8 kB] 09:56:30 Get:16 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgssapi3-heimdal amd64 7.5.0+dfsg-1 [96.5 kB] 09:56:30 Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsasl2-modules-db amd64 2.1.27~101-g0780600+dfsg-3ubuntu2.3 [15.0 kB] 09:56:30 Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsasl2-2 amd64 2.1.27~101-g0780600+dfsg-3ubuntu2.3 [49.2 kB] 09:56:30 Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libldap-common all 2.4.45+dfsg-1ubuntu1.10 [15.8 kB] 09:56:30 Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libldap-2.4-2 amd64 2.4.45+dfsg-1ubuntu1.10 [154 kB] 09:56:30 Get:21 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnpth0 amd64 1.5-3 [7,668 B] 09:56:30 Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 dirmngr amd64 2.2.4-1ubuntu1.4 [316 kB] 09:56:30 Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gnupg-l10n all 2.2.4-1ubuntu1.4 [49.8 kB] 09:56:30 Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gnupg-utils amd64 2.2.4-1ubuntu1.4 [128 kB] 09:56:30 Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gpg amd64 2.2.4-1ubuntu1.4 [467 kB] 09:56:30 Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 pinentry-curses amd64 1.1.0-1 [35.8 kB] 09:56:30 Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gpg-agent amd64 2.2.4-1ubuntu1.4 [227 kB] 09:56:30 Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gpg-wks-client amd64 2.2.4-1ubuntu1.4 [91.8 kB] 09:56:30 Get:29 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gpg-wks-server amd64 2.2.4-1ubuntu1.4 [85.0 kB] 09:56:30 Get:30 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gpgsm amd64 2.2.4-1ubuntu1.4 [215 kB] 09:56:30 Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gnupg amd64 2.2.4-1ubuntu1.4 [249 kB] 09:56:30 Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsasl2-modules amd64 2.1.27~101-g0780600+dfsg-3ubuntu2.3 [48.9 kB] 09:56:30 [91mdebconf: delaying package configuration, since apt-utils is not installed 09:56:30 [0mFetched 5,186 kB in 0s (16.7 MB/s) 09:56:30 Selecting previously unselected package readline-common. 09:56:30 (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 ... 4663 files and directories currently installed.) 09:56:30 Preparing to unpack .../00-readline-common_7.0-3_all.deb ... 09:56:30 Unpacking readline-common (7.0-3) ... 09:56:30 Selecting previously unselected package libreadline7:amd64. 09:56:30 Preparing to unpack .../01-libreadline7_7.0-3_amd64.deb ... 09:56:30 Unpacking libreadline7:amd64 (7.0-3) ... 09:56:31 Selecting previously unselected package libsqlite3-0:amd64. 09:56:31 Preparing to unpack .../02-libsqlite3-0_3.22.0-1ubuntu0.4_amd64.deb ... 09:56:31 Unpacking libsqlite3-0:amd64 (3.22.0-1ubuntu0.4) ... 09:56:31 Selecting previously unselected package libssl1.1:amd64. 09:56:31 Preparing to unpack .../03-libssl1.1_1.1.1-1ubuntu2.1~18.04.8_amd64.deb ... 09:56:31 Unpacking libssl1.1:amd64 (1.1.1-1ubuntu2.1~18.04.8) ... 09:56:31 Selecting previously unselected package libassuan0:amd64. 09:56:31 Preparing to unpack .../04-libassuan0_2.5.1-2_amd64.deb ... 09:56:31 Unpacking libassuan0:amd64 (2.5.1-2) ... 09:56:31 Selecting previously unselected package gpgconf. 09:56:31 Preparing to unpack .../05-gpgconf_2.2.4-1ubuntu1.4_amd64.deb ... 09:56:31 Unpacking gpgconf (2.2.4-1ubuntu1.4) ... 09:56:31 Selecting previously unselected package libksba8:amd64. 09:56:31 Preparing to unpack .../06-libksba8_1.3.5-2_amd64.deb ... 09:56:31 Unpacking libksba8:amd64 (1.3.5-2) ... 09:56:31 Selecting previously unselected package libroken18-heimdal:amd64. 09:56:32 Preparing to unpack .../07-libroken18-heimdal_7.5.0+dfsg-1_amd64.deb ... 09:56:32 Unpacking libroken18-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:32 Selecting previously unselected package libasn1-8-heimdal:amd64. 09:56:32 Preparing to unpack .../08-libasn1-8-heimdal_7.5.0+dfsg-1_amd64.deb ... 09:56:32 Unpacking libasn1-8-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:32 Selecting previously unselected package libheimbase1-heimdal:amd64. 09:56:32 Preparing to unpack .../09-libheimbase1-heimdal_7.5.0+dfsg-1_amd64.deb ... 09:56:32 Unpacking libheimbase1-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:32 Selecting previously unselected package libhcrypto4-heimdal:amd64. 09:56:32 Preparing to unpack .../10-libhcrypto4-heimdal_7.5.0+dfsg-1_amd64.deb ... 09:56:32 Unpacking libhcrypto4-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:32 Selecting previously unselected package libwind0-heimdal:amd64. 09:56:32 Preparing to unpack .../11-libwind0-heimdal_7.5.0+dfsg-1_amd64.deb ... 09:56:32 Unpacking libwind0-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:32 Selecting previously unselected package libhx509-5-heimdal:amd64. 09:56:32 Preparing to unpack .../12-libhx509-5-heimdal_7.5.0+dfsg-1_amd64.deb ... 09:56:32 Unpacking libhx509-5-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:33 Selecting previously unselected package libkrb5-26-heimdal:amd64. 09:56:33 Preparing to unpack .../13-libkrb5-26-heimdal_7.5.0+dfsg-1_amd64.deb ... 09:56:33 Unpacking libkrb5-26-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:33 Selecting previously unselected package libheimntlm0-heimdal:amd64. 09:56:33 Preparing to unpack .../14-libheimntlm0-heimdal_7.5.0+dfsg-1_amd64.deb ... 09:56:33 Unpacking libheimntlm0-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:33 Selecting previously unselected package libgssapi3-heimdal:amd64. 09:56:33 Preparing to unpack .../15-libgssapi3-heimdal_7.5.0+dfsg-1_amd64.deb ... 09:56:33 Unpacking libgssapi3-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:33 Selecting previously unselected package libsasl2-modules-db:amd64. 09:56:33 Preparing to unpack .../16-libsasl2-modules-db_2.1.27~101-g0780600+dfsg-3ubuntu2.3_amd64.deb ... 09:56:33 Unpacking libsasl2-modules-db:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.3) ... 09:56:33 Selecting previously unselected package libsasl2-2:amd64. 09:56:33 Preparing to unpack .../17-libsasl2-2_2.1.27~101-g0780600+dfsg-3ubuntu2.3_amd64.deb ... 09:56:33 Unpacking libsasl2-2:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.3) ... 09:56:34 Selecting previously unselected package libldap-common. 09:56:34 Preparing to unpack .../18-libldap-common_2.4.45+dfsg-1ubuntu1.10_all.deb ... 09:56:34 Unpacking libldap-common (2.4.45+dfsg-1ubuntu1.10) ... 09:56:34 Selecting previously unselected package libldap-2.4-2:amd64. 09:56:34 Preparing to unpack .../19-libldap-2.4-2_2.4.45+dfsg-1ubuntu1.10_amd64.deb ... 09:56:34 Unpacking libldap-2.4-2:amd64 (2.4.45+dfsg-1ubuntu1.10) ... 09:56:34 Selecting previously unselected package libnpth0:amd64. 09:56:34 Preparing to unpack .../20-libnpth0_1.5-3_amd64.deb ... 09:56:34 Unpacking libnpth0:amd64 (1.5-3) ... 09:56:34 Selecting previously unselected package dirmngr. 09:56:34 Preparing to unpack .../21-dirmngr_2.2.4-1ubuntu1.4_amd64.deb ... 09:56:34 Unpacking dirmngr (2.2.4-1ubuntu1.4) ... 09:56:35 Selecting previously unselected package gnupg-l10n. 09:56:35 Preparing to unpack .../22-gnupg-l10n_2.2.4-1ubuntu1.4_all.deb ... 09:56:35 Unpacking gnupg-l10n (2.2.4-1ubuntu1.4) ... 09:56:35 Selecting previously unselected package gnupg-utils. 09:56:35 Preparing to unpack .../23-gnupg-utils_2.2.4-1ubuntu1.4_amd64.deb ... 09:56:35 Unpacking gnupg-utils (2.2.4-1ubuntu1.4) ... 09:56:35 Selecting previously unselected package gpg. 09:56:35 Preparing to unpack .../24-gpg_2.2.4-1ubuntu1.4_amd64.deb ... 09:56:35 Unpacking gpg (2.2.4-1ubuntu1.4) ... 09:56:36 Selecting previously unselected package pinentry-curses. 09:56:36 Preparing to unpack .../25-pinentry-curses_1.1.0-1_amd64.deb ... 09:56:36 Unpacking pinentry-curses (1.1.0-1) ... 09:56:36 Selecting previously unselected package gpg-agent. 09:56:36 Preparing to unpack .../26-gpg-agent_2.2.4-1ubuntu1.4_amd64.deb ... 09:56:36 Unpacking gpg-agent (2.2.4-1ubuntu1.4) ... 09:56:36 Selecting previously unselected package gpg-wks-client. 09:56:36 Preparing to unpack .../27-gpg-wks-client_2.2.4-1ubuntu1.4_amd64.deb ... 09:56:36 Unpacking gpg-wks-client (2.2.4-1ubuntu1.4) ... 09:56:36 Selecting previously unselected package gpg-wks-server. 09:56:36 Preparing to unpack .../28-gpg-wks-server_2.2.4-1ubuntu1.4_amd64.deb ... 09:56:36 Unpacking gpg-wks-server (2.2.4-1ubuntu1.4) ... 09:56:37 Selecting previously unselected package gpgsm. 09:56:37 Preparing to unpack .../29-gpgsm_2.2.4-1ubuntu1.4_amd64.deb ... 09:56:37 Unpacking gpgsm (2.2.4-1ubuntu1.4) ... 09:56:37 Selecting previously unselected package gnupg. 09:56:37 Preparing to unpack .../30-gnupg_2.2.4-1ubuntu1.4_amd64.deb ... 09:56:37 Unpacking gnupg (2.2.4-1ubuntu1.4) ... 09:56:37 Selecting previously unselected package libsasl2-modules:amd64. 09:56:37 Preparing to unpack .../31-libsasl2-modules_2.1.27~101-g0780600+dfsg-3ubuntu2.3_amd64.deb ... 09:56:37 Unpacking libsasl2-modules:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.3) ... 09:56:37 Setting up libnpth0:amd64 (1.5-3) ... 09:56:37 Setting up readline-common (7.0-3) ... 09:56:37 Setting up libldap-common (2.4.45+dfsg-1ubuntu1.10) ... 09:56:37 Setting up libreadline7:amd64 (7.0-3) ... 09:56:37 Setting up libsasl2-modules-db:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.3) ... 09:56:37 Setting up libsasl2-2:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.3) ... 09:56:37 Setting up libroken18-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:37 Setting up libksba8:amd64 (1.3.5-2) ... 09:56:37 Setting up gnupg-l10n (2.2.4-1ubuntu1.4) ... 09:56:38 Setting up libssl1.1:amd64 (1.1.1-1ubuntu2.1~18.04.8) ... 09:56:38 Setting up libheimbase1-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:38 Setting up libsqlite3-0:amd64 (3.22.0-1ubuntu0.4) ... 09:56:38 Setting up libsasl2-modules:amd64 (2.1.27~101-g0780600+dfsg-3ubuntu2.3) ... 09:56:38 Setting up libassuan0:amd64 (2.5.1-2) ... 09:56:38 Setting up libwind0-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:38 Setting up libasn1-8-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:38 Setting up gpgconf (2.2.4-1ubuntu1.4) ... 09:56:38 Setting up libhcrypto4-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:38 Setting up libhx509-5-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:38 Setting up gpgsm (2.2.4-1ubuntu1.4) ... 09:56:38 Setting up gnupg-utils (2.2.4-1ubuntu1.4) ... 09:56:38 Setting up pinentry-curses (1.1.0-1) ... 09:56:38 Setting up libkrb5-26-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:38 Setting up libheimntlm0-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:38 Setting up gpg (2.2.4-1ubuntu1.4) ... 09:56:39 Setting up gpg-agent (2.2.4-1ubuntu1.4) ... 09:56:39 Setting up gpg-wks-server (2.2.4-1ubuntu1.4) ... 09:56:39 Setting up libgssapi3-heimdal:amd64 (7.5.0+dfsg-1) ... 09:56:39 Setting up libldap-2.4-2:amd64 (2.4.45+dfsg-1ubuntu1.10) ... 09:56:39 Setting up dirmngr (2.2.4-1ubuntu1.4) ... 09:56:39 Setting up gpg-wks-client (2.2.4-1ubuntu1.4) ... 09:56:39 Setting up gnupg (2.2.4-1ubuntu1.4) ... 09:56:39 Processing triggers for libc-bin (2.27-3ubuntu1.4) ... 09:56:40 ---> b11b7a8b2268 09:56:40 Error removing intermediate container f0d068cad864: nosuchcontainer: no such id: f0d068cad8645910bb3f538c31faec264215a9c99e957335092891c230421e5a 09:56:40 Step 12 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key 09:56:41 ---> Running in afa5edf7e7fb 09:56:42 [91mWarning: apt-key output should not be parsed (stdout is not a terminal) 09:56:42 [0mOK 09:56:43 ---> 5c025b0262a6 09:56:43 Error removing intermediate container f0d068cad864: nosuchcontainer: no such id: f0d068cad8645910bb3f538c31faec264215a9c99e957335092891c230421e5a 09:56:43 Step 13 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 09:56:43 ---> Running in f9b1d9bc12ea 09:56:45 [91mWarning: apt-key output should not be parsed (stdout is not a terminal) 09:56:45 [0mOK 09:56:46 ---> 20d3accd51dc 09:56:46 Error removing intermediate container f0d068cad864: nosuchcontainer: no such id: f0d068cad8645910bb3f538c31faec264215a9c99e957335092891c230421e5a 09:56:46 Step 14 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 09:56:47 ---> Running in c6783f7a0822 09:56:48 deb http://10.210.9.154/ubuntu/building bionic main 09:56:48 ---> 39e138ba2e86 09:56:49 Removing intermediate container afa5edf7e7fb 09:56:49 Removing intermediate container f9b1d9bc12ea 09:56:49 Removing intermediate container c6783f7a0822 09:56:49 Error removing intermediate container f0d068cad864: nosuchcontainer: no such id: f0d068cad8645910bb3f538c31faec264215a9c99e957335092891c230421e5a 09:56:49 Step 15 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 09:56:49 ---> Running in 7878d222b527 09:56:49 deb http://packages.ros.org/ros/ubuntu bionic main 09:56:50 ---> eb401292b15e 09:56:50 Error removing intermediate container f0d068cad864: nosuchcontainer: no such id: f0d068cad8645910bb3f538c31faec264215a9c99e957335092891c230421e5a 09:56:50 Step 16 : RUN mkdir /tmp/wrapper_scripts 09:56:51 ---> Running in a17468579b7f 09:56:52 ---> b3458343c8bf 09:56:52 Error removing intermediate container f0d068cad864: nosuchcontainer: no such id: f0d068cad8645910bb3f538c31faec264215a9c99e957335092891c230421e5a 09:56:52 Step 17 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n '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 09:56:52 ---> Running in 10cd1b2bc890 09:56:53 ---> 268d50518342 09:56:53 Error removing intermediate container 10cd1b2bc890: rmdriverfs: Driver aufs failed to remove root filesystem 10cd1b2bc890650409bfdbc4c6da0e2d40f220e279b31e2ea6ec91bef858f2de: rename /var/lib/docker/aufs/mnt/10cd1b2bc890650409bfdbc4c6da0e2d40f220e279b31e2ea6ec91bef858f2de /var/lib/docker/aufs/mnt/10cd1b2bc890650409bfdbc4c6da0e2d40f220e279b31e2ea6ec91bef858f2de-removing: device or resource busy 09:56:53 Step 18 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py 09:56:53 ---> Running in 7e6088181545 09:56:55 ---> 7c1dbf7bf46a 09:56:55 Error removing intermediate container 7e6088181545: rmdriverfs: Driver aufs failed to remove root filesystem 7e60881815451879ca0bd2d663f6b5239f2b01db355f333c7acc66c6014f063c: rename /var/lib/docker/aufs/mnt/7e60881815451879ca0bd2d663f6b5239f2b01db355f333c7acc66c6014f063c /var/lib/docker/aufs/mnt/7e60881815451879ca0bd2d663f6b5239f2b01db355f333c7acc66c6014f063c-removing: device or resource busy 09:56:55 Step 19 : RUN echo "2021-03-05 (+0000)" 09:56:55 ---> Running in bd2b9537675d 09:56:55 2021-03-05 (+0000) 09:56:56 ---> 5ca4ff8b71f7 09:56:56 Error removing intermediate container bd2b9537675d: rmdriverfs: Driver aufs failed to remove root filesystem bd2b9537675d122c460a26c187d436459586b01347faf2396bc7a4c3a440b149: rename /var/lib/docker/aufs/mnt/bd2b9537675d122c460a26c187d436459586b01347faf2396bc7a4c3a440b149 /var/lib/docker/aufs/mnt/bd2b9537675d122c460a26c187d436459586b01347faf2396bc7a4c3a440b149-removing: device or resource busy 09:56:56 Step 20 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 09:56:56 ---> Running in 41ef23bdac67 09:56:57 Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,826 B] 09:56:57 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 09:56:57 Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 09:56:57 Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 09:56:57 Hit:5 http://security.ubuntu.com/ubuntu bionic-security InRelease 09:56:57 Get:6 http://packages.ros.org/ros/ubuntu bionic InRelease [4,683 B] 09:56:57 Get:7 http://10.210.9.154/ubuntu/building bionic/main amd64 Packages [193 kB] 09:56:58 Get:8 http://packages.ros.org/ros/ubuntu bionic/main amd64 Packages [754 kB] 09:56:59 Fetched 955 kB in 2s (450 kB/s) 09:56:59 Reading package lists... 09:57:01 Reading package lists... 09:57:03 Building dependency tree... 09:57:03 Reading state information... 09:57:04 The following additional packages will be installed: 09:57:04 file libexpat1 libmagic-mgc libmagic1 libmpdec2 libpython3-stdlib 09:57:04 libpython3.6-minimal libpython3.6-stdlib mime-support python3-minimal 09:57:04 python3.6 python3.6-minimal xz-utils 09:57:04 Suggested packages: 09:57:04 python3-doc python3-tk python3-venv python3.6-venv python3.6-doc binutils 09:57:04 binfmt-support 09:57:04 The following NEW packages will be installed: 09:57:04 file libexpat1 libmagic-mgc libmagic1 libmpdec2 libpython3-stdlib 09:57:04 libpython3.6-minimal libpython3.6-stdlib mime-support python3 09:57:04 python3-minimal python3.6 python3.6-minimal xz-utils 09:57:04 0 upgraded, 14 newly installed, 0 to remove and 0 not upgraded. 09:57:04 Need to get 4,690 kB of archives. 09:57:04 After this operation, 28.3 MB of additional disk space will be used. 09:57:04 Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-minimal amd64 3.6.9-1~18.04ubuntu1.4 [534 kB] 09:57:04 Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libexpat1 amd64 2.2.5-3ubuntu0.2 [80.5 kB] 09:57:04 Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6-minimal amd64 3.6.9-1~18.04ubuntu1.4 [1,610 kB] 09:57:04 Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-minimal amd64 3.6.7-1~18.04 [23.7 kB] 09:57:04 Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 mime-support all 3.60ubuntu1 [30.1 kB] 09:57:04 Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpdec2 amd64 2.4.2-1ubuntu1 [84.1 kB] 09:57:04 Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-stdlib amd64 3.6.9-1~18.04ubuntu1.4 [1,712 kB] 09:57:04 Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6 amd64 3.6.9-1~18.04ubuntu1.4 [203 kB] 09:57:04 Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3-stdlib amd64 3.6.7-1~18.04 [7,240 B] 09:57:04 Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3 amd64 3.6.7-1~18.04 [47.2 kB] 09:57:04 Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic-mgc amd64 1:5.32-2ubuntu0.4 [184 kB] 09:57:04 Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic1 amd64 1:5.32-2ubuntu0.4 [68.6 kB] 09:57:04 Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 file amd64 1:5.32-2ubuntu0.4 [22.1 kB] 09:57:04 Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 xz-utils amd64 5.2.2-1.3 [83.8 kB] 09:57:04 [91mdebconf: delaying package configuration, since apt-utils is not installed 09:57:04 [0mFetched 4,690 kB in 0s (20.3 MB/s) 09:57:05 Selecting previously unselected package libpython3.6-minimal:amd64. 09:57:05 (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 ... 5005 files and directories currently installed.) 09:57:05 Preparing to unpack .../libpython3.6-minimal_3.6.9-1~18.04ubuntu1.4_amd64.deb ... 09:57:05 Unpacking libpython3.6-minimal:amd64 (3.6.9-1~18.04ubuntu1.4) ... 09:57:05 Selecting previously unselected package libexpat1:amd64. 09:57:05 Preparing to unpack .../libexpat1_2.2.5-3ubuntu0.2_amd64.deb ... 09:57:05 Unpacking libexpat1:amd64 (2.2.5-3ubuntu0.2) ... 09:57:05 Selecting previously unselected package python3.6-minimal. 09:57:05 Preparing to unpack .../python3.6-minimal_3.6.9-1~18.04ubuntu1.4_amd64.deb ... 09:57:05 Unpacking python3.6-minimal (3.6.9-1~18.04ubuntu1.4) ... 09:57:05 Setting up libpython3.6-minimal:amd64 (3.6.9-1~18.04ubuntu1.4) ... 09:57:05 Setting up libexpat1:amd64 (2.2.5-3ubuntu0.2) ... 09:57:06 Setting up python3.6-minimal (3.6.9-1~18.04ubuntu1.4) ... 09:57:07 Selecting previously unselected package python3-minimal. 09:57:07 (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 ... 5252 files and directories currently installed.) 09:57:07 Preparing to unpack .../0-python3-minimal_3.6.7-1~18.04_amd64.deb ... 09:57:07 Unpacking python3-minimal (3.6.7-1~18.04) ... 09:57:07 Selecting previously unselected package mime-support. 09:57:07 Preparing to unpack .../1-mime-support_3.60ubuntu1_all.deb ... 09:57:07 Unpacking mime-support (3.60ubuntu1) ... 09:57:07 Selecting previously unselected package libmpdec2:amd64. 09:57:07 Preparing to unpack .../2-libmpdec2_2.4.2-1ubuntu1_amd64.deb ... 09:57:07 Unpacking libmpdec2:amd64 (2.4.2-1ubuntu1) ... 09:57:08 Selecting previously unselected package libpython3.6-stdlib:amd64. 09:57:08 Preparing to unpack .../3-libpython3.6-stdlib_3.6.9-1~18.04ubuntu1.4_amd64.deb ... 09:57:08 Unpacking libpython3.6-stdlib:amd64 (3.6.9-1~18.04ubuntu1.4) ... 09:57:09 Selecting previously unselected package python3.6. 09:57:09 Preparing to unpack .../4-python3.6_3.6.9-1~18.04ubuntu1.4_amd64.deb ... 09:57:09 Unpacking python3.6 (3.6.9-1~18.04ubuntu1.4) ... 09:57:09 Selecting previously unselected package libpython3-stdlib:amd64. 09:57:09 Preparing to unpack .../5-libpython3-stdlib_3.6.7-1~18.04_amd64.deb ... 09:57:09 Unpacking libpython3-stdlib:amd64 (3.6.7-1~18.04) ... 09:57:09 Setting up python3-minimal (3.6.7-1~18.04) ... 09:57:09 Selecting previously unselected package python3. 09:57:09 (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 ... 5682 files and directories currently installed.) 09:57:09 Preparing to unpack .../python3_3.6.7-1~18.04_amd64.deb ... 09:57:09 Unpacking python3 (3.6.7-1~18.04) ... 09:57:10 Selecting previously unselected package libmagic-mgc. 09:57:10 Preparing to unpack .../libmagic-mgc_1%3a5.32-2ubuntu0.4_amd64.deb ... 09:57:10 Unpacking libmagic-mgc (1:5.32-2ubuntu0.4) ... 09:57:10 Selecting previously unselected package libmagic1:amd64. 09:57:10 Preparing to unpack .../libmagic1_1%3a5.32-2ubuntu0.4_amd64.deb ... 09:57:10 Unpacking libmagic1:amd64 (1:5.32-2ubuntu0.4) ... 09:57:10 Selecting previously unselected package file. 09:57:10 Preparing to unpack .../file_1%3a5.32-2ubuntu0.4_amd64.deb ... 09:57:10 Unpacking file (1:5.32-2ubuntu0.4) ... 09:57:10 Selecting previously unselected package xz-utils. 09:57:10 Preparing to unpack .../xz-utils_5.2.2-1.3_amd64.deb ... 09:57:10 Unpacking xz-utils (5.2.2-1.3) ... 09:57:11 Setting up mime-support (3.60ubuntu1) ... 09:57:11 Setting up libmagic-mgc (1:5.32-2ubuntu0.4) ... 09:57:11 Setting up libmagic1:amd64 (1:5.32-2ubuntu0.4) ... 09:57:11 Setting up xz-utils (5.2.2-1.3) ... 09:57:11 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode 09:57:11 update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist 09:57:11 update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist 09:57:11 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist 09:57:11 update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist 09:57:11 update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist 09:57:12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist 09:57:12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist 09:57:12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist 09:57:12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist 09:57:12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist 09:57:12 Setting up libmpdec2:amd64 (2.4.2-1ubuntu1) ... 09:57:12 Setting up libpython3.6-stdlib:amd64 (3.6.9-1~18.04ubuntu1.4) ... 09:57:12 Setting up python3.6 (3.6.9-1~18.04ubuntu1.4) ... 09:57:13 Setting up file (1:5.32-2ubuntu0.4) ... 09:57:13 Setting up libpython3-stdlib:amd64 (3.6.7-1~18.04) ... 09:57:13 Setting up python3 (3.6.7-1~18.04) ... 09:57:13 Processing triggers for libc-bin (2.27-3ubuntu1.4) ... 09:57:15 ---> 642eacb3985a 09:57:15 Error removing intermediate container 10cd1b2bc890: nosuchcontainer: no such id: 10cd1b2bc890650409bfdbc4c6da0e2d40f220e279b31e2ea6ec91bef858f2de 09:57:15 Step 21 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 09:57:16 ---> Running in ded029319de8 09:57:16 Invoking 'apt-get update' 09:57:16 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease 09:57:16 Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease 09:57:16 Hit:3 http://archive.ubuntu.com/ubuntu bionic InRelease 09:57:16 Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 09:57:16 Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 09:57:16 Hit:6 http://packages.ros.org/ros/ubuntu bionic InRelease 09:57:19 Reading package lists... 09:57:20 Invoking 'apt-get install -q -y dh-python' 09:57:22 Reading package lists... 09:57:22 Building dependency tree... 09:57:22 Reading state information... 09:57:23 The following additional packages will be installed: 09:57:23 python3-distutils python3-lib2to3 09:57:23 Suggested packages: 09:57:23 libdpkg-perl dpkg-dev 09:57:23 The following NEW packages will be installed: 09:57:23 dh-python python3-distutils python3-lib2to3 09:57:23 0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded. 09:57:23 Need to get 311 kB of archives. 09:57:23 After this operation, 3,582 kB of additional disk space will be used. 09:57:23 Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-lib2to3 all 3.6.9-1~18.04 [77.4 kB] 09:57:23 Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-distutils all 3.6.9-1~18.04 [144 kB] 09:57:23 Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-python all 3.20180325ubuntu2 [89.2 kB] 09:57:23 debconf: delaying package configuration, since apt-utils is not installed 09:57:23 Fetched 311 kB in 0s (4,997 kB/s) 09:57:23 Selecting previously unselected package python3-lib2to3. 09:57:23 (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 ... 5786 files and directories currently installed.) 09:57:23 Preparing to unpack .../python3-lib2to3_3.6.9-1~18.04_all.deb ... 09:57:23 Unpacking python3-lib2to3 (3.6.9-1~18.04) ... 09:57:23 Selecting previously unselected package python3-distutils. 09:57:23 Preparing to unpack .../python3-distutils_3.6.9-1~18.04_all.deb ... 09:57:23 Unpacking python3-distutils (3.6.9-1~18.04) ... 09:57:24 Selecting previously unselected package dh-python. 09:57:24 Preparing to unpack .../dh-python_3.20180325ubuntu2_all.deb ... 09:57:24 Unpacking dh-python (3.20180325ubuntu2) ... 09:57:24 Setting up python3-lib2to3 (3.6.9-1~18.04) ... 09:57:24 Setting up python3-distutils (3.6.9-1~18.04) ... 09:57:24 Setting up dh-python (3.20180325ubuntu2) ... 09:57:25 Invoking 'apt-get clean' 09:57:26 ---> 0617e9adea20 09:57:26 Error removing intermediate container bd2b9537675d: nosuchcontainer: no such id: bd2b9537675d122c460a26c187d436459586b01347faf2396bc7a4c3a440b149 09:57:26 Step 22 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y debhelper dpkg dpkg-dev git git-buildpackage python3-catkin-pkg-modules python3-rosdistro-modules python3-yaml 09:57:26 ---> Running in 797012254acb 09:57:27 Invoking 'apt-get update' 09:57:27 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease 09:57:27 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 09:57:27 Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 09:57:27 Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 09:57:27 Hit:5 http://packages.ros.org/ros/ubuntu bionic InRelease 09:57:27 Hit:6 http://security.ubuntu.com/ubuntu bionic-security InRelease 09:57:31 Reading package lists... 09:57:31 Invoking 'apt-get install -q -y debhelper dpkg dpkg-dev git git-buildpackage python3-catkin-pkg-modules python3-rosdistro-modules python3-yaml' 09:57:33 Reading package lists... 09:57:34 Building dependency tree... 09:57:34 Reading state information... 09:57:34 dpkg is already the newest version (1.19.0.5ubuntu2.3). 09:57:34 The following additional packages will be installed: 09:57:34 at autoconf automake autopoint autotools-dev binutils binutils-common 09:57:34 binutils-x86-64-linux-gnu bsdmainutils build-essential ca-certificates 09:57:34 cowbuilder cowdancer cpp cpp-7 curl dctrl-tools debootstrap devscripts 09:57:34 dh-autoreconf dh-strip-nondeterminism diffstat distro-info-data 09:57:34 docutils-common dput eatmydata fakeroot g++ g++-7 gcc gcc-7 gcc-7-base 09:57:34 gettext gettext-base git-man groff-base intltool-debian iso-codes 09:57:34 krb5-locales less libalgorithm-diff-perl libalgorithm-diff-xs-perl 09:57:34 libalgorithm-merge-perl libapt-inst2.0 libapt-pkg-perl libarchive-cpio-perl 09:57:34 libarchive-zip-perl libasan4 libatomic1 libauthen-sasl-perl 09:57:34 libb-hooks-endofscope-perl libb-hooks-op-check-perl libbinutils libbsd0 09:57:34 libc-dev-bin libc6-dev libcc1-0 libcgi-fast-perl libcgi-pm-perl libcilkrts5 09:57:34 libclass-accessor-perl libclass-method-modifiers-perl 09:57:34 libclass-xsaccessor-perl libclone-perl libcroco3 libcurl3-gnutls libcurl4 09:57:34 libdata-dump-perl libdata-optlist-perl libdevel-callchecker-perl 09:57:34 libdevel-globaldestruction-perl libdigest-hmac-perl libdistro-info-perl 09:57:34 libdpkg-perl libdynaloader-functions-perl libeatmydata1 libedit2 09:57:34 libemail-valid-perl libencode-locale-perl liberror-perl 09:57:34 libexporter-tiny-perl libfakeroot libfcgi-perl libfile-basedir-perl 09:57:34 libfile-chdir-perl libfile-fcntllock-perl libfile-homedir-perl 09:57:34 libfile-listing-perl libfile-stripnondeterminism-perl libfile-which-perl 09:57:34 libfont-afm-perl libfreetype6 libgcc-7-dev libgdbm-compat4 libgdbm5 09:57:34 libgetopt-long-descriptive-perl libgit-wrapper-perl libglib2.0-0 09:57:34 libglib2.0-data libgomp1 libgpgme11 libgssapi-krb5-2 libhtml-form-perl 09:57:34 libhtml-format-perl libhtml-parser-perl libhtml-tagset-perl 09:57:34 libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl 09:57:34 libhttp-message-perl libhttp-negotiate-perl libicu60 libimport-into-perl 09:57:34 libio-html-perl libio-pty-perl libio-socket-inet6-perl libio-socket-ssl-perl 09:57:34 libio-string-perl libio-stringy-perl libipc-run-perl 09:57:34 libipc-system-simple-perl libisl19 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 09:57:34 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblcms2-2 09:57:34 liblist-compare-perl liblist-moreutils-perl liblocale-gettext-perl liblsan0 09:57:34 libltdl-dev libltdl7 liblwp-mediatypes-perl liblwp-protocol-https-perl 09:57:34 libmail-sendmail-perl libmailtools-perl libmodule-implementation-perl 09:57:34 libmodule-runtime-perl libmoo-perl libmpc3 libmpfr6 libmpx2 09:57:34 libnamespace-clean-perl libnet-dns-perl libnet-domain-tld-perl 09:57:34 libnet-http-perl libnet-ip-perl libnet-smtp-ssl-perl libnet-ssleay-perl 09:57:34 libnghttp2-14 libnumber-compare-perl libnumber-range-perl 09:57:34 libpackage-stash-perl libpackage-stash-xs-perl libpaper-utils libpaper1 09:57:34 libparams-classify-perl libparams-util-perl libparams-validate-perl 09:57:34 libparse-debianchangelog-perl libpath-iterator-rule-perl libpath-tiny-perl 09:57:34 libperl5.26 libperlio-gzip-perl libpipeline1 libpng16-16 09:57:34 libpod-constants-perl libpsl5 libquadmath0 libregexp-pattern-license-perl 09:57:34 librole-tiny-perl librtmp1 libsigsegv2 libsocket6-perl libsort-key-perl 09:57:34 libsort-versions-perl libssl1.0.0 libstdc++-7-dev libstrictures-perl 09:57:34 libstring-copyright-perl libstring-escape-perl libsub-exporter-perl 09:57:34 libsub-exporter-progressive-perl libsub-identify-perl libsub-install-perl 09:57:34 libsub-name-perl libsub-quote-perl libsys-hostname-long-perl 09:57:34 libtext-glob-perl libtext-levenshtein-perl libtiff5 libtimedate-perl libtool 09:57:34 libtry-tiny-perl libtsan0 libubsan0 libunicode-utf8-perl libunwind8 09:57:34 liburi-perl libvariable-magic-perl libwebp6 libwebpdemux2 libwebpmux3 09:57:34 libwww-perl libwww-robotrules-perl libx11-6 libx11-data libxau6 libxcb1 09:57:34 libxdelta2 libxdmcp6 libxext6 libxml-libxml-perl 09:57:34 libxml-namespacesupport-perl libxml-parser-perl libxml-sax-base-perl 09:57:34 libxml-sax-expat-perl libxml-sax-perl libxml-simple-perl libxml2 libxmuu1 09:57:34 libyaml-0-2 libyaml-libyaml-perl licensecheck lintian linux-libc-dev 09:57:34 lsb-release m4 make man-db manpages manpages-dev multiarch-support net-tools 09:57:34 netbase openssh-client openssl patch patchutils pbuilder pbzip2 perl 09:57:34 perl-modules-5.26 perl-openssl-defaults po-debconf pristine-tar publicsuffix 09:57:34 python-apt-common python3-apt python3-certifi python3-chardet 09:57:34 python3-dateutil python3-debian python3-docutils python3-gpg python3-idna 09:57:34 python3-magic python3-olefile python3-pil python3-pkg-resources 09:57:34 python3-pygments python3-pyparsing python3-requests python3-roman 09:57:34 python3-rospkg-modules python3-setuptools python3-six python3-unidiff 09:57:34 python3-urllib3 python3-xdg sgml-base shared-mime-info strace sudo t1utils 09:57:34 tzdata ucf unzip wdiff wget xauth xdelta xdelta3 xdg-user-dirs xml-core 09:57:34 Suggested packages: 09:57:34 default-mta | mail-transport-agent autoconf-archive gnu-standards 09:57:34 autoconf-doc binutils-doc wamerican | wordlist whois vacation cpp-doc 09:57:34 gcc-7-locales debtags dh-make dwz ubuntu-archive-keyring adequate 09:57:34 autopkgtest bls-standalone bsd-mailx | mailx check-all-the-things 09:57:34 cvs-buildpackage devscripts-el diffoscope disorderfs dose-extra duck 09:57:34 faketime gnuplot how-can-i-help libfile-desktopentry-perl libnet-smtps-perl 09:57:34 libterm-size-perl libyaml-syck-perl mozilla-devscripts mutt piuparts 09:57:34 postgresql-client quilt ratt reprotest svn-buildpackage w3m debian-keyring 09:57:34 equivs libsoap-lite-perl python3-paramiko mini-dinstall rsync g++-multilib 09:57:34 g++-7-multilib gcc-7-doc libstdc++6-7-dbg gcc-multilib flex bison gdb 09:57:34 gcc-doc gcc-7-multilib libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg 09:57:34 libasan4-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg libcilkrts5-dbg 09:57:34 libmpx2-dbg libquadmath0-dbg gettext-doc libasprintf-dev libgettextpo-dev 09:57:34 git-daemon-run | git-daemon-sysvinit git-doc git-el git-email git-gui gitk 09:57:34 gitweb git-cvs git-mediawiki git-svn python3-notify2 groff isoquery 09:57:34 libgssapi-perl glibc-doc bzr gdbm-l10n krb5-doc krb5-user liblcms2-utils 09:57:34 libtool-doc libcrypt-ssleay-perl libscalar-number-perl libhtml-template-perl 09:57:34 libstdc++-7-doc libbareword-filehandles-perl libindirect-perl 09:57:34 libmultidimensional-perl gfortran | fortran95-compiler gcj-jdk 09:57:34 libauthen-ntlm-perl bash-completion binutils-multiarch libtext-template-perl 09:57:34 lsb m4-doc make-doc apparmor www-browser keychain libpam-ssh monkeysphere 09:57:34 ssh-askpass ed diffutils-doc gdebi-core perl-doc libterm-readline-gnu-perl 09:57:34 | libterm-readline-perl-perl libmail-box-perl python3-apt-dbg python-apt-doc 09:57:34 docutils-doc fonts-linuxlibertine | ttf-linux-libertine texlive-lang-french 09:57:34 texlive-latex-base texlive-latex-recommended python-pil-doc python3-pil-dbg 09:57:34 ttf-bitstream-vera python-pyparsing-doc python3-cryptography python3-openssl 09:57:34 python3-socks python-setuptools-doc sgml-base-doc zip wdiff-doc 09:57:36 The following NEW packages will be installed: 09:57:36 at autoconf automake autopoint autotools-dev binutils binutils-common 09:57:36 binutils-x86-64-linux-gnu bsdmainutils build-essential ca-certificates 09:57:36 cowbuilder cowdancer cpp cpp-7 curl dctrl-tools debhelper debootstrap 09:57:36 devscripts dh-autoreconf dh-strip-nondeterminism diffstat distro-info-data 09:57:36 docutils-common dpkg-dev dput eatmydata fakeroot g++ g++-7 gcc gcc-7 09:57:36 gcc-7-base gettext gettext-base git git-buildpackage git-man groff-base 09:57:36 intltool-debian iso-codes krb5-locales less libalgorithm-diff-perl 09:57:36 libalgorithm-diff-xs-perl libalgorithm-merge-perl libapt-inst2.0 09:57:36 libapt-pkg-perl libarchive-cpio-perl libarchive-zip-perl libasan4 libatomic1 09:57:36 libauthen-sasl-perl libb-hooks-endofscope-perl libb-hooks-op-check-perl 09:57:36 libbinutils libbsd0 libc-dev-bin libc6-dev libcc1-0 libcgi-fast-perl 09:57:36 libcgi-pm-perl libcilkrts5 libclass-accessor-perl 09:57:36 libclass-method-modifiers-perl libclass-xsaccessor-perl libclone-perl 09:57:36 libcroco3 libcurl3-gnutls libcurl4 libdata-dump-perl libdata-optlist-perl 09:57:36 libdevel-callchecker-perl libdevel-globaldestruction-perl 09:57:36 libdigest-hmac-perl libdistro-info-perl libdpkg-perl 09:57:36 libdynaloader-functions-perl libeatmydata1 libedit2 libemail-valid-perl 09:57:36 libencode-locale-perl liberror-perl libexporter-tiny-perl libfakeroot 09:57:36 libfcgi-perl libfile-basedir-perl libfile-chdir-perl libfile-fcntllock-perl 09:57:36 libfile-homedir-perl libfile-listing-perl libfile-stripnondeterminism-perl 09:57:36 libfile-which-perl libfont-afm-perl libfreetype6 libgcc-7-dev 09:57:36 libgdbm-compat4 libgdbm5 libgetopt-long-descriptive-perl libgit-wrapper-perl 09:57:36 libglib2.0-0 libglib2.0-data libgomp1 libgpgme11 libgssapi-krb5-2 09:57:36 libhtml-form-perl libhtml-format-perl libhtml-parser-perl 09:57:36 libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl 09:57:36 libhttp-daemon-perl libhttp-date-perl libhttp-message-perl 09:57:36 libhttp-negotiate-perl libicu60 libimport-into-perl libio-html-perl 09:57:36 libio-pty-perl libio-socket-inet6-perl libio-socket-ssl-perl 09:57:36 libio-string-perl libio-stringy-perl libipc-run-perl 09:57:36 libipc-system-simple-perl libisl19 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 09:57:36 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblcms2-2 09:57:36 liblist-compare-perl liblist-moreutils-perl liblocale-gettext-perl liblsan0 09:57:36 libltdl-dev libltdl7 liblwp-mediatypes-perl liblwp-protocol-https-perl 09:57:36 libmail-sendmail-perl libmailtools-perl libmodule-implementation-perl 09:57:36 libmodule-runtime-perl libmoo-perl libmpc3 libmpfr6 libmpx2 09:57:36 libnamespace-clean-perl libnet-dns-perl libnet-domain-tld-perl 09:57:36 libnet-http-perl libnet-ip-perl libnet-smtp-ssl-perl libnet-ssleay-perl 09:57:36 libnghttp2-14 libnumber-compare-perl libnumber-range-perl 09:57:36 libpackage-stash-perl libpackage-stash-xs-perl libpaper-utils libpaper1 09:57:36 libparams-classify-perl libparams-util-perl libparams-validate-perl 09:57:36 libparse-debianchangelog-perl libpath-iterator-rule-perl libpath-tiny-perl 09:57:36 libperl5.26 libperlio-gzip-perl libpipeline1 libpng16-16 09:57:36 libpod-constants-perl libpsl5 libquadmath0 libregexp-pattern-license-perl 09:57:36 librole-tiny-perl librtmp1 libsigsegv2 libsocket6-perl libsort-key-perl 09:57:36 libsort-versions-perl libssl1.0.0 libstdc++-7-dev libstrictures-perl 09:57:36 libstring-copyright-perl libstring-escape-perl libsub-exporter-perl 09:57:36 libsub-exporter-progressive-perl libsub-identify-perl libsub-install-perl 09:57:36 libsub-name-perl libsub-quote-perl libsys-hostname-long-perl 09:57:36 libtext-glob-perl libtext-levenshtein-perl libtiff5 libtimedate-perl libtool 09:57:36 libtry-tiny-perl libtsan0 libubsan0 libunicode-utf8-perl libunwind8 09:57:36 liburi-perl libvariable-magic-perl libwebp6 libwebpdemux2 libwebpmux3 09:57:36 libwww-perl libwww-robotrules-perl libx11-6 libx11-data libxau6 libxcb1 09:57:36 libxdelta2 libxdmcp6 libxext6 libxml-libxml-perl 09:57:36 libxml-namespacesupport-perl libxml-parser-perl libxml-sax-base-perl 09:57:36 libxml-sax-expat-perl libxml-sax-perl libxml-simple-perl libxml2 libxmuu1 09:57:36 libyaml-0-2 libyaml-libyaml-perl licensecheck lintian linux-libc-dev 09:57:36 lsb-release m4 make man-db manpages manpages-dev multiarch-support net-tools 09:57:36 netbase openssh-client openssl patch patchutils pbuilder pbzip2 perl 09:57:36 perl-modules-5.26 perl-openssl-defaults po-debconf pristine-tar publicsuffix 09:57:36 python-apt-common python3-apt python3-catkin-pkg-modules python3-certifi 09:57:36 python3-chardet python3-dateutil python3-debian python3-docutils python3-gpg 09:57:36 python3-idna python3-magic python3-olefile python3-pil python3-pkg-resources 09:57:36 python3-pygments python3-pyparsing python3-requests python3-roman 09:57:36 python3-rosdistro-modules python3-rospkg-modules python3-setuptools 09:57:36 python3-six python3-unidiff python3-urllib3 python3-xdg python3-yaml 09:57:36 sgml-base shared-mime-info strace sudo t1utils tzdata ucf unzip wdiff wget 09:57:36 xauth xdelta xdelta3 xdg-user-dirs xml-core 09:57:36 0 upgraded, 298 newly installed, 0 to remove and 0 not upgraded. 09:57:36 Need to get 94.8 MB of archives. 09:57:36 After this operation, 403 MB of additional disk space will be used. 09:57:36 Get:1 http://10.210.9.154/ubuntu/building bionic/main amd64 python3-catkin-pkg-modules all 0.4.23-1 [42.3 kB] 09:57:36 Get:2 http://10.210.9.154/ubuntu/building bionic/main amd64 python3-rospkg-modules all 1.2.10-1 [24.1 kB] 09:57:36 Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblocale-gettext-perl amd64 1.07-3build2 [16.6 kB] 09:57:36 Get:4 http://10.210.9.154/ubuntu/building bionic/main amd64 python3-rosdistro-modules all 0.8.3-1 [31.8 kB] 09:57:36 Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 multiarch-support amd64 2.27-3ubuntu1.4 [6,944 B] 09:57:36 Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxau6 amd64 1:1.0.8-1ubuntu1 [7,556 B] 09:57:36 Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbsd0 amd64 0.8.7-1ubuntu0.1 [41.6 kB] 09:57:36 Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxdmcp6 amd64 1:1.1.2-3 [10.7 kB] 09:57:36 Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb1 amd64 1.13-2~ubuntu18.04 [45.5 kB] 09:57:36 Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-data all 2:1.6.4-3ubuntu0.3 [114 kB] 09:57:36 Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-6 amd64 2:1.6.4-3ubuntu0.3 [571 kB] 09:57:36 Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxext6 amd64 2:1.3.3-1 [29.4 kB] 09:57:36 Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 bsdmainutils amd64 11.1.2ubuntu1 [181 kB] 09:57:36 Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 groff-base amd64 1.22.3-10 [1,153 kB] 09:57:36 Get:15 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm5 amd64 1.14.1-6 [26.0 kB] 09:57:36 Get:16 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpipeline1 amd64 1.5.0-1 [25.3 kB] 09:57:36 Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 man-db amd64 2.8.3-2ubuntu0.1 [1,019 kB] 09:57:36 Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libjpeg-turbo8 amd64 1.5.2-0ubuntu5.18.04.4 [110 kB] 09:57:36 Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl-modules-5.26 all 5.26.1-6ubuntu0.5 [2,762 kB] 09:57:36 Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm-compat4 amd64 1.14.1-6 [6,084 B] 09:57:36 Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libperl5.26 amd64 5.26.1-6ubuntu0.5 [3,534 kB] 09:57:36 Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl amd64 5.26.1-6ubuntu0.5 [201 kB] 09:57:36 Get:23 http://archive.ubuntu.com/ubuntu bionic/main amd64 sgml-base all 1.29 [12.3 kB] 09:57:36 Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openssl amd64 1.1.1-1ubuntu2.1~18.04.8 [614 kB] 09:57:36 Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 ca-certificates all 20210119~18.04.1 [147 kB] 09:57:36 Get:26 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 distro-info-data all 0.37ubuntu0.9 [4,708 B] 09:57:36 Get:27 http://archive.ubuntu.com/ubuntu bionic/main amd64 less amd64 487-0.1 [112 kB] 09:57:36 Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libapt-inst2.0 amd64 1.6.12ubuntu0.2 [54.7 kB] 09:57:36 Get:29 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-0 amd64 2.56.4-0ubuntu0.18.04.6 [1,171 kB] 09:57:36 Get:30 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-data all 2.56.4-0ubuntu0.18.04.6 [4,540 B] 09:57:36 Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libicu60 amd64 60.2-3ubuntu3.1 [8,054 kB] 09:57:37 Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxml2 amd64 2.9.4+dfsg1-6.1ubuntu1.3 [663 kB] 09:57:37 Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 libyaml-0-2 amd64 0.1.7-2ubuntu3 [47.2 kB] 09:57:37 Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 lsb-release all 9.20170808ubuntu1 [11.0 kB] 09:57:37 Get:35 http://archive.ubuntu.com/ubuntu bionic/main amd64 netbase all 5.4 [12.7 kB] 09:57:37 Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-yaml amd64 3.12-1build2 [109 kB] 09:57:37 Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 shared-mime-info amd64 1.9-2 [426 kB] 09:57:37 Get:38 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 sudo amd64 1.8.21p2-3ubuntu1.4 [428 kB] 09:57:37 Get:39 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 tzdata all 2021a-0ubuntu0.18.04 [190 kB] 09:57:37 Get:40 http://archive.ubuntu.com/ubuntu bionic/main amd64 ucf all 3.0038 [50.5 kB] 09:57:37 Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 xdg-user-dirs amd64 0.17-1ubuntu1 [48.0 kB] 09:57:37 Get:42 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext-base amd64 0.19.8.1-6ubuntu0.3 [113 kB] 09:57:37 Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 iso-codes all 3.79-1 [2,565 kB] 09:57:37 Get:44 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 krb5-locales all 1.16-2ubuntu0.2 [13.4 kB] 09:57:37 Get:45 http://archive.ubuntu.com/ubuntu bionic/main amd64 libedit2 amd64 3.1-20170329-1 [76.9 kB] 09:57:37 Get:46 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5support0 amd64 1.16-2ubuntu0.2 [30.8 kB] 09:57:37 Get:47 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libk5crypto3 amd64 1.16-2ubuntu0.2 [85.5 kB] 09:57:37 Get:48 http://archive.ubuntu.com/ubuntu bionic/main amd64 libkeyutils1 amd64 1.5.9-9.2ubuntu2 [8,720 B] 09:57:37 Get:49 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5-3 amd64 1.16-2ubuntu0.2 [279 kB] 09:57:37 Get:50 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgssapi-krb5-2 amd64 1.16-2ubuntu0.2 [122 kB] 09:57:37 Get:51 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpng16-16 amd64 1.6.34-1ubuntu0.18.04.2 [176 kB] 09:57:37 Get:52 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpsl5 amd64 0.19.1-5build1 [41.8 kB] 09:57:37 Get:53 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libssl1.0.0 amd64 1.0.2n-1ubuntu5.6 [1,089 kB] 09:57:37 Get:54 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxmuu1 amd64 2:1.1.2-2 [9,674 B] 09:57:37 Get:55 http://archive.ubuntu.com/ubuntu bionic/main amd64 manpages all 4.15-1 [1,234 kB] 09:57:37 Get:56 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openssh-client amd64 1:7.6p1-4ubuntu0.3 [614 kB] 09:57:37 Get:57 http://archive.ubuntu.com/ubuntu bionic/main amd64 publicsuffix all 20180223.1310-1 [97.6 kB] 09:57:37 Get:58 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python-apt-common all 1.6.5ubuntu0.5 [16.9 kB] 09:57:37 Get:59 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-apt amd64 1.6.5ubuntu0.5 [149 kB] 09:57:37 Get:60 http://archive.ubuntu.com/ubuntu bionic/main amd64 libunwind8 amd64 1.2.1-8 [47.5 kB] 09:57:37 Get:61 http://archive.ubuntu.com/ubuntu bionic/main amd64 strace amd64 4.21-1ubuntu1 [333 kB] 09:57:37 Get:62 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 wget amd64 1.19.4-1ubuntu2.2 [316 kB] 09:57:37 Get:63 http://archive.ubuntu.com/ubuntu bionic/main amd64 xauth amd64 1:1.0.10-1 [24.6 kB] 09:57:37 Get:64 http://archive.ubuntu.com/ubuntu bionic/main amd64 at amd64 3.1.20-3.1ubuntu2 [39.5 kB] 09:57:37 Get:65 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsigsegv2 amd64 2.12-1 [14.7 kB] 09:57:37 Get:66 http://archive.ubuntu.com/ubuntu bionic/main amd64 m4 amd64 1.4.18-1 [197 kB] 09:57:37 Get:67 http://archive.ubuntu.com/ubuntu bionic/main amd64 autoconf all 2.69-11 [322 kB] 09:57:37 Get:68 http://archive.ubuntu.com/ubuntu bionic/main amd64 autotools-dev all 20180224.1 [39.6 kB] 09:57:37 Get:69 http://archive.ubuntu.com/ubuntu bionic/main amd64 automake all 1:1.15.1-3ubuntu2 [509 kB] 09:57:37 Get:70 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 autopoint all 0.19.8.1-6ubuntu0.3 [426 kB] 09:57:37 Get:71 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils-common amd64 2.30-21ubuntu1~18.04.5 [197 kB] 09:57:37 Get:72 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbinutils amd64 2.30-21ubuntu1~18.04.5 [489 kB] 09:57:37 Get:73 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils-x86-64-linux-gnu amd64 2.30-21ubuntu1~18.04.5 [1,839 kB] 09:57:37 Get:74 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils amd64 2.30-21ubuntu1~18.04.5 [3,388 B] 09:57:37 Get:75 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libc-dev-bin amd64 2.27-3ubuntu1.4 [71.8 kB] 09:57:37 Get:76 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-libc-dev amd64 4.15.0-136.140 [1,001 kB] 09:57:37 Get:77 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libc6-dev amd64 2.27-3ubuntu1.4 [2,585 kB] 09:57:37 Get:78 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc-7-base amd64 7.5.0-3ubuntu1~18.04 [18.3 kB] 09:57:37 Get:79 http://archive.ubuntu.com/ubuntu bionic/main amd64 libisl19 amd64 0.19-1 [551 kB] 09:57:37 Get:80 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpfr6 amd64 4.0.1-1 [243 kB] 09:57:37 Get:81 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpc3 amd64 1.1.0-1 [40.8 kB] 09:57:37 Get:82 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cpp-7 amd64 7.5.0-3ubuntu1~18.04 [8,591 kB] 09:57:38 Get:83 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cpp amd64 4:7.4.0-1ubuntu2.3 [27.7 kB] 09:57:38 Get:84 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcc1-0 amd64 8.4.0-1ubuntu1~18.04 [39.4 kB] 09:57:38 Get:85 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgomp1 amd64 8.4.0-1ubuntu1~18.04 [76.5 kB] 09:57:38 Get:86 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libitm1 amd64 8.4.0-1ubuntu1~18.04 [27.9 kB] 09:57:38 Get:87 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libatomic1 amd64 8.4.0-1ubuntu1~18.04 [9,192 B] 09:57:38 Get:88 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libasan4 amd64 7.5.0-3ubuntu1~18.04 [358 kB] 09:57:38 Get:89 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblsan0 amd64 8.4.0-1ubuntu1~18.04 [133 kB] 09:57:38 Get:90 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtsan0 amd64 8.4.0-1ubuntu1~18.04 [288 kB] 09:57:38 Get:91 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libubsan0 amd64 7.5.0-3ubuntu1~18.04 [126 kB] 09:57:38 Get:92 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcilkrts5 amd64 7.5.0-3ubuntu1~18.04 [42.5 kB] 09:57:38 Get:93 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmpx2 amd64 8.4.0-1ubuntu1~18.04 [11.6 kB] 09:57:38 Get:94 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libquadmath0 amd64 8.4.0-1ubuntu1~18.04 [134 kB] 09:57:38 Get:95 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgcc-7-dev amd64 7.5.0-3ubuntu1~18.04 [2,378 kB] 09:57:38 Get:96 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc-7 amd64 7.5.0-3ubuntu1~18.04 [9,381 kB] 09:57:39 Get:97 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc amd64 4:7.4.0-1ubuntu2.3 [5,184 B] 09:57:39 Get:98 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libstdc++-7-dev amd64 7.5.0-3ubuntu1~18.04 [1,471 kB] 09:57:39 Get:99 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++-7 amd64 7.5.0-3ubuntu1~18.04 [9,697 kB] 09:57:39 Get:100 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++ amd64 4:7.4.0-1ubuntu2.3 [1,568 B] 09:57:39 Get:101 http://archive.ubuntu.com/ubuntu bionic/main amd64 make amd64 4.1-9.1ubuntu1 [154 kB] 09:57:39 Get:102 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdpkg-perl all 1.19.0.5ubuntu2.3 [211 kB] 09:57:39 Get:103 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 patch amd64 2.7.6-2ubuntu1.1 [102 kB] 09:57:39 Get:104 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 dpkg-dev all 1.19.0.5ubuntu2.3 [607 kB] 09:57:39 Get:105 http://archive.ubuntu.com/ubuntu bionic/main amd64 build-essential amd64 12.4ubuntu1 [4,758 B] 09:57:39 Get:106 http://archive.ubuntu.com/ubuntu bionic/universe amd64 cowdancer amd64 0.86 [23.5 kB] 09:57:39 Get:107 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 debootstrap all 1.0.95ubuntu0.8 [35.3 kB] 09:57:39 Get:108 http://archive.ubuntu.com/ubuntu bionic/main amd64 pbuilder all 0.229.1 [317 kB] 09:57:39 Get:109 http://archive.ubuntu.com/ubuntu bionic/universe amd64 cowbuilder amd64 0.86 [20.1 kB] 09:57:39 Get:110 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnghttp2-14 amd64 1.30.0-1ubuntu1 [77.8 kB] 09:57:39 Get:111 http://archive.ubuntu.com/ubuntu bionic/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-1 [54.2 kB] 09:57:39 Get:112 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.12 [214 kB] 09:57:39 Get:113 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 curl amd64 7.58.0-2ubuntu3.12 [159 kB] 09:57:39 Get:114 http://archive.ubuntu.com/ubuntu bionic/main amd64 dctrl-tools amd64 2.24-2build1 [60.9 kB] 09:57:39 Get:115 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtool all 2.4.6-2 [194 kB] 09:57:39 Get:116 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-autoreconf all 17 [15.8 kB] 09:57:39 Get:117 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libarchive-zip-perl all 1.60-1ubuntu0.1 [84.6 kB] 09:57:39 Get:118 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-stripnondeterminism-perl all 0.040-1.1~build1 [13.8 kB] 09:57:39 Get:119 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtimedate-perl all 2.3000-2 [37.5 kB] 09:57:39 Get:120 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-strip-nondeterminism all 0.040-1.1~build1 [5,208 B] 09:57:39 Get:121 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcroco3 amd64 0.6.12-2 [81.3 kB] 09:57:39 Get:122 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext amd64 0.19.8.1-6ubuntu0.3 [1,293 kB] 09:57:39 Get:123 http://archive.ubuntu.com/ubuntu bionic/main amd64 intltool-debian all 0.35.0+20060710.4 [24.9 kB] 09:57:39 Get:124 http://archive.ubuntu.com/ubuntu bionic/main amd64 po-debconf all 1.0.20 [232 kB] 09:57:39 Get:125 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 debhelper all 11.1.6ubuntu2 [902 kB] 09:57:39 Get:126 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-which-perl all 1.21-1 [11.8 kB] 09:57:39 Get:127 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-homedir-perl all 1.002-1 [37.1 kB] 09:57:39 Get:128 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 devscripts amd64 2.17.12ubuntu1.1 [870 kB] 09:57:39 Get:129 http://archive.ubuntu.com/ubuntu bionic/main amd64 diffstat amd64 1.61-1build1 [24.1 kB] 09:57:39 Get:130 http://archive.ubuntu.com/ubuntu bionic/main amd64 xml-core all 0.18 [21.3 kB] 09:57:39 Get:131 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-common all 0.14+dfsg-3 [156 kB] 09:57:39 Get:132 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-pkg-resources all 39.0.1-2 [98.8 kB] 09:57:39 Get:133 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-chardet all 3.0.4-1 [80.3 kB] 09:57:39 Get:134 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-six all 1.11.0-2 [11.4 kB] 09:57:39 Get:135 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-debian all 0.1.32 [65.4 kB] 09:57:39 Get:136 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgpgme11 amd64 1.10.0-1ubuntu2 [111 kB] 09:57:39 Get:137 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-gpg amd64 1.10.0-1ubuntu2 [150 kB] 09:57:39 Get:138 http://archive.ubuntu.com/ubuntu bionic/main amd64 dput all 1.0.1ubuntu1 [42.7 kB] 09:57:39 Get:139 http://archive.ubuntu.com/ubuntu bionic/main amd64 libeatmydata1 amd64 105-6 [6,932 B] 09:57:39 Get:140 http://archive.ubuntu.com/ubuntu bionic/main amd64 eatmydata all 105-6 [5,404 B] 09:57:39 Get:141 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfakeroot amd64 1.22-2ubuntu1 [25.9 kB] 09:57:39 Get:142 http://archive.ubuntu.com/ubuntu bionic/main amd64 fakeroot amd64 1.22-2ubuntu1 [62.3 kB] 09:57:39 Get:143 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcurl3-gnutls amd64 7.58.0-2ubuntu3.12 [212 kB] 09:57:39 Get:144 http://archive.ubuntu.com/ubuntu bionic/main amd64 liberror-perl all 0.17025-1 [22.8 kB] 09:57:39 Get:145 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 git-man all 1:2.17.1-1ubuntu0.7 [804 kB] 09:57:39 Get:146 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 git amd64 1:2.17.1-1ubuntu0.7 [3,915 kB] 09:57:39 Get:147 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-dateutil all 2.6.1-1 [52.3 kB] 09:57:39 Get:148 http://archive.ubuntu.com/ubuntu bionic/universe amd64 git-buildpackage all 0.9.8 [771 kB] 09:57:39 Get:149 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-perl all 1.19.03-1 [47.6 kB] 09:57:40 Get:150 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-xs-perl amd64 0.04-5 [11.1 kB] 09:57:40 Get:151 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB] 09:57:40 Get:152 http://archive.ubuntu.com/ubuntu bionic/main amd64 libapt-pkg-perl amd64 0.1.33build1 [68.0 kB] 09:57:40 Get:153 http://archive.ubuntu.com/ubuntu bionic/main amd64 libarchive-cpio-perl all 0.10-1 [9,644 B] 09:57:40 Get:154 http://archive.ubuntu.com/ubuntu bionic/main amd64 libb-hooks-op-check-perl amd64 0.22-1 [10.1 kB] 09:57:40 Get:155 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdynaloader-functions-perl all 0.003-1 [11.9 kB] 09:57:40 Get:156 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdevel-callchecker-perl amd64 0.007-2build1 [14.1 kB] 09:57:40 Get:157 http://archive.ubuntu.com/ubuntu bionic/main amd64 libparams-classify-perl amd64 0.015-1 [21.2 kB] 09:57:40 Get:158 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmodule-runtime-perl all 0.016-1 [16.2 kB] 09:57:40 Get:159 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtry-tiny-perl all 0.30-1 [20.5 kB] 09:57:40 Get:160 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmodule-implementation-perl all 0.09-1 [12.2 kB] 09:57:40 Get:161 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-exporter-progressive-perl all 0.001013-1 [6,784 B] 09:57:40 Get:162 http://archive.ubuntu.com/ubuntu bionic/main amd64 libvariable-magic-perl amd64 0.62-1 [34.5 kB] 09:57:40 Get:163 http://archive.ubuntu.com/ubuntu bionic/main amd64 libb-hooks-endofscope-perl all 0.21-1 [14.7 kB] 09:57:40 Get:164 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-tagset-perl all 3.20-3 [12.1 kB] 09:57:40 Get:165 http://archive.ubuntu.com/ubuntu bionic/main amd64 liburi-perl all 1.73-1 [77.2 kB] 09:57:40 Get:166 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-parser-perl amd64 3.72-3build1 [85.9 kB] 09:57:40 Get:167 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcgi-pm-perl all 4.38-1 [185 kB] 09:57:40 Get:168 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfcgi-perl amd64 0.78-2build1 [32.8 kB] 09:57:40 Get:169 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcgi-fast-perl all 1:2.13-1 [9,940 B] 09:57:40 Get:170 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-name-perl amd64 0.21-1build1 [11.6 kB] 09:57:40 Get:171 http://archive.ubuntu.com/ubuntu bionic/main amd64 libclass-accessor-perl all 0.51-1 [21.2 kB] 09:57:40 Get:172 http://archive.ubuntu.com/ubuntu bionic/main amd64 libclass-method-modifiers-perl all 2.12-1 [15.7 kB] 09:57:40 Get:173 http://archive.ubuntu.com/ubuntu bionic/main amd64 libclass-xsaccessor-perl amd64 1.19-2build8 [32.8 kB] 09:57:40 Get:174 http://archive.ubuntu.com/ubuntu bionic/main amd64 libclone-perl amd64 0.39-1 [10.4 kB] 09:57:40 Get:175 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdata-dump-perl all 1.23-1 [27.0 kB] 09:57:40 Get:176 http://archive.ubuntu.com/ubuntu bionic/main amd64 libparams-util-perl amd64 1.07-3build3 [19.6 kB] 09:57:40 Get:177 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-install-perl all 0.928-1 [10.5 kB] 09:57:40 Get:178 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdata-optlist-perl all 0.110-1 [9,956 B] 09:57:40 Get:179 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdevel-globaldestruction-perl all 0.14-1 [6,752 B] 09:57:40 Get:180 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdigest-hmac-perl all 1.03+dfsg-1 [12.1 kB] 09:57:40 Get:181 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdistro-info-perl all 0.18ubuntu0.18.04.1 [4,892 B] 09:57:40 Get:182 http://archive.ubuntu.com/ubuntu bionic/main amd64 perl-openssl-defaults amd64 3build1 [7,012 B] 09:57:40 Get:183 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libnet-ssleay-perl amd64 1.84-1ubuntu0.2 [283 kB] 09:57:40 Get:184 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libio-socket-ssl-perl all 2.060-3~ubuntu18.04.1 [173 kB] 09:57:40 Get:185 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-smtp-ssl-perl all 1.04-1 [5,948 B] 09:57:40 Get:186 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmailtools-perl all 2.18-1 [74.0 kB] 09:57:40 Get:187 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsocket6-perl amd64 0.27-1build2 [23.0 kB] 09:57:40 Get:188 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-socket-inet6-perl all 2.72-2 [13.8 kB] 09:57:40 Get:189 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-ip-perl all 1.26-1 [31.5 kB] 09:57:40 Get:190 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-dns-perl all 1.10-2 [335 kB] 09:57:40 Get:191 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-domain-tld-perl all 1.75-1 [29.1 kB] 09:57:40 Get:192 http://archive.ubuntu.com/ubuntu bionic/main amd64 libemail-valid-perl all 1.202-1 [16.3 kB] 09:57:40 Get:193 http://archive.ubuntu.com/ubuntu bionic/main amd64 libencode-locale-perl all 1.05-1 [12.3 kB] 09:57:40 Get:194 http://archive.ubuntu.com/ubuntu bionic/main amd64 libexporter-tiny-perl all 1.000000-2 [34.6 kB] 09:57:40 Get:195 http://archive.ubuntu.com/ubuntu bionic/main amd64 libipc-system-simple-perl all 1.25-4 [22.5 kB] 09:57:40 Get:196 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-basedir-perl all 0.07-1 [16.9 kB] 09:57:40 Get:197 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-chdir-perl all 0.1008-1 [11.7 kB] 09:57:40 Get:198 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-fcntllock-perl amd64 0.22-3build2 [33.2 kB] 09:57:40 Get:199 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-date-perl all 6.02-1 [10.4 kB] 09:57:40 Get:200 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-listing-perl all 6.04-1 [9,774 B] 09:57:40 Get:201 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfont-afm-perl all 1.20-2 [13.2 kB] 09:57:40 Get:202 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libfreetype6 amd64 2.8.1-2ubuntu2.1 [335 kB] 09:57:40 Get:203 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-stringy-perl all 2.111-2 [60.6 kB] 09:57:40 Get:204 http://archive.ubuntu.com/ubuntu bionic/main amd64 libparams-validate-perl amd64 1.29-1 [52.3 kB] 09:57:40 Get:205 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-exporter-perl all 0.987-1 [44.9 kB] 09:57:40 Get:206 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgetopt-long-descriptive-perl all 0.102-1 [24.4 kB] 09:57:40 Get:207 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsort-versions-perl all 1.62-1 [9,294 B] 09:57:40 Get:208 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgit-wrapper-perl all 0.047-1 [29.6 kB] 09:57:40 Get:209 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-html-perl all 1.001-1 [14.9 kB] 09:57:40 Get:210 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblwp-mediatypes-perl all 6.02-1 [21.7 kB] 09:57:40 Get:211 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-message-perl all 6.14-1 [72.1 kB] 09:57:40 Get:212 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-form-perl all 6.03-1 [23.5 kB] 09:57:40 Get:213 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-tree-perl all 5.07-1 [200 kB] 09:57:40 Get:214 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-format-perl all 2.12-1 [41.3 kB] 09:57:40 Get:215 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-cookies-perl all 6.04-1 [17.2 kB] 09:57:40 Get:216 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-daemon-perl all 6.01-1 [17.0 kB] 09:57:40 Get:217 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-negotiate-perl all 6.00-2 [13.4 kB] 09:57:40 Get:218 http://archive.ubuntu.com/ubuntu bionic/main amd64 libimport-into-perl all 1.002005-1 [11.0 kB] 09:57:40 Get:219 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-pty-perl amd64 1:1.08-1.1build4 [30.1 kB] 09:57:40 Get:220 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-string-perl all 1.08-3 [11.1 kB] 09:57:40 Get:221 http://archive.ubuntu.com/ubuntu bionic/main amd64 libipc-run-perl all 0.96-1 [89.9 kB] 09:57:40 Get:222 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjpeg8 amd64 8c-2ubuntu8 [2,194 B] 09:57:40 Get:223 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblcms2-2 amd64 2.9-1ubuntu0.1 [139 kB] 09:57:40 Get:224 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblist-compare-perl all 0.53-1 [65.6 kB] 09:57:40 Get:225 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblist-moreutils-perl amd64 0.416-1build3 [55.5 kB] 09:57:40 Get:226 http://archive.ubuntu.com/ubuntu bionic/main amd64 libltdl7 amd64 2.4.6-2 [38.8 kB] 09:57:40 Get:227 http://archive.ubuntu.com/ubuntu bionic/main amd64 libltdl-dev amd64 2.4.6-2 [162 kB] 09:57:40 Get:228 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-http-perl all 6.17-1 [22.7 kB] 09:57:40 Get:229 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwww-robotrules-perl all 6.01-1 [14.1 kB] 09:57:40 Get:230 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwww-perl all 6.31-1ubuntu0.1 [137 kB] 09:57:40 Get:231 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblwp-protocol-https-perl all 6.07-2 [8,284 B] 09:57:40 Get:232 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsys-hostname-long-perl all 1.5-1 [11.7 kB] 09:57:40 Get:233 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmail-sendmail-perl all 0.80-1 [22.6 kB] 09:57:40 Get:234 http://archive.ubuntu.com/ubuntu bionic/main amd64 librole-tiny-perl all 2.000006-1 [15.9 kB] 09:57:40 Get:235 http://archive.ubuntu.com/ubuntu bionic/main amd64 libstrictures-perl all 2.000003-1 [16.1 kB] 09:57:40 Get:236 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-quote-perl all 2.005000-1 [17.0 kB] 09:57:40 Get:237 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmoo-perl all 2.003004-1 [45.5 kB] 09:57:40 Get:238 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpackage-stash-perl all 0.37-1 [18.3 kB] 09:57:40 Get:239 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-identify-perl amd64 0.14-1 [10.5 kB] 09:57:40 Get:240 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnamespace-clean-perl all 0.27-1 [13.6 kB] 09:57:40 Get:241 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnumber-compare-perl all 0.03-1 [7,318 B] 09:57:40 Get:242 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnumber-range-perl all 0.12-1 [8,556 B] 09:57:40 Get:243 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpackage-stash-xs-perl amd64 0.28-3build2 [16.4 kB] 09:57:40 Get:244 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper1 amd64 1.1.24+nmu5ubuntu1 [13.6 kB] 09:57:40 Get:245 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper-utils amd64 1.1.24+nmu5ubuntu1 [8,170 B] 09:57:40 Get:246 http://archive.ubuntu.com/ubuntu bionic/main amd64 libparse-debianchangelog-perl all 1.2.0-12 [49.5 kB] 09:57:40 Get:247 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtext-glob-perl all 0.10-1 [7,554 B] 09:57:40 Get:248 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpath-iterator-rule-perl all 1.009-1 [49.1 kB] 09:57:40 Get:249 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpath-tiny-perl all 0.104-1 [55.3 kB] 09:57:40 Get:250 http://archive.ubuntu.com/ubuntu bionic/main amd64 libperlio-gzip-perl amd64 0.19-1build3 [14.4 kB] 09:57:40 Get:251 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpod-constants-perl all 0.19-1 [16.0 kB] 09:57:40 Get:252 http://archive.ubuntu.com/ubuntu bionic/main amd64 libregexp-pattern-license-perl all 3.0.31-3 [14.7 kB] 09:57:40 Get:253 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsort-key-perl amd64 1.33-2 [35.0 kB] 09:57:40 Get:254 http://archive.ubuntu.com/ubuntu bionic/main amd64 libstring-copyright-perl all 0.003005-1 [10.1 kB] 09:57:40 Get:255 http://archive.ubuntu.com/ubuntu bionic/main amd64 libstring-escape-perl all 2010.002-2 [17.6 kB] 09:57:40 Get:256 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtext-levenshtein-perl all 0.13-1 [9,612 B] 09:57:40 Get:257 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjbig0 amd64 2.1-3.1build1 [26.7 kB] 09:57:40 Get:258 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtiff5 amd64 4.0.9-5ubuntu0.4 [153 kB] 09:57:40 Get:259 http://archive.ubuntu.com/ubuntu bionic/main amd64 libunicode-utf8-perl amd64 0.60-1build4 [17.9 kB] 09:57:40 Get:260 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebp6 amd64 0.6.1-2 [185 kB] 09:57:40 Get:261 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpdemux2 amd64 0.6.1-2 [9,472 B] 09:57:40 Get:262 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpmux3 amd64 0.6.1-2 [19.6 kB] 09:57:40 Get:263 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libxdelta2 amd64 1.1.3-9.2 [47.7 kB] 09:57:40 Get:264 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-namespacesupport-perl all 1.12-1 [13.2 kB] 09:57:40 Get:265 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-sax-base-perl all 1.09-1 [18.8 kB] 09:57:40 Get:266 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-sax-perl all 0.99+dfsg-2ubuntu1 [64.6 kB] 09:57:40 Get:267 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-libxml-perl amd64 2.0128+dfsg-5 [316 kB] 09:57:40 Get:268 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-parser-perl amd64 2.44-2build3 [199 kB] 09:57:40 Get:269 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-sax-expat-perl all 0.40-2 [11.5 kB] 09:57:40 Get:270 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-simple-perl all 2.24-1 [63.6 kB] 09:57:40 Get:271 http://archive.ubuntu.com/ubuntu bionic/main amd64 libyaml-libyaml-perl amd64 0.69+repack-1 [26.4 kB] 09:57:40 Get:272 http://archive.ubuntu.com/ubuntu bionic/main amd64 licensecheck all 3.0.31-2 [22.0 kB] 09:57:40 Get:273 http://archive.ubuntu.com/ubuntu bionic/main amd64 patchutils amd64 0.3.4-2 [71.1 kB] 09:57:40 Get:274 http://archive.ubuntu.com/ubuntu bionic/main amd64 t1utils amd64 1.41-2 [56.0 kB] 09:57:40 Get:275 http://archive.ubuntu.com/ubuntu bionic/main amd64 lintian all 2.5.81ubuntu1 [847 kB] 09:57:40 Get:276 http://archive.ubuntu.com/ubuntu bionic/main amd64 manpages-dev all 4.15-1 [2,217 kB] 09:57:40 Get:277 http://archive.ubuntu.com/ubuntu bionic/main amd64 net-tools amd64 1.60+git20161116.90da8a0-1ubuntu1 [194 kB] 09:57:40 Get:278 http://archive.ubuntu.com/ubuntu bionic/universe amd64 pbzip2 amd64 1.1.9-1build1 [37.1 kB] 09:57:40 Get:279 http://archive.ubuntu.com/ubuntu bionic/universe amd64 xdelta amd64 1.1.3-9.2 [24.6 kB] 09:57:40 Get:280 http://archive.ubuntu.com/ubuntu bionic/main amd64 xdelta3 amd64 3.0.11-dfsg-1ubuntu1 [68.9 kB] 09:57:40 Get:281 http://archive.ubuntu.com/ubuntu bionic/universe amd64 pristine-tar amd64 1.42 [108 kB] 09:57:40 Get:282 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-roman all 2.0.0-3 [8,624 B] 09:57:40 Get:283 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-docutils all 0.14+dfsg-3 [363 kB] 09:57:40 Get:284 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-pyparsing all 2.2.0+dfsg1-2 [52.2 kB] 09:57:40 Get:285 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-certifi all 2018.1.18-2 [144 kB] 09:57:40 Get:286 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-idna all 2.6-1 [32.5 kB] 09:57:40 Get:287 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-olefile all 0.45.1-1 [33.3 kB] 09:57:40 Get:288 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-pil amd64 5.1.0-1ubuntu0.4 [329 kB] 09:57:40 Get:289 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-pygments all 2.2.0+dfsg-1 [574 kB] 09:57:40 Get:290 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-urllib3 all 1.22-1ubuntu0.18.04.2 [86.2 kB] 09:57:40 Get:291 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-requests all 2.18.4-2ubuntu0.1 [58.3 kB] 09:57:40 Get:292 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-setuptools all 39.0.1-2 [248 kB] 09:57:40 Get:293 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-unidiff all 0.5.4-1 [7,140 B] 09:57:40 Get:294 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-xdg all 0.25-4ubuntu1.1 [31.3 kB] 09:57:40 Get:295 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 unzip amd64 6.0-21ubuntu1.1 [168 kB] 09:57:40 Get:296 http://archive.ubuntu.com/ubuntu bionic/main amd64 wdiff amd64 1.2.2-2 [29.6 kB] 09:57:40 Get:297 http://archive.ubuntu.com/ubuntu bionic/main amd64 libauthen-sasl-perl all 2.1600-1 [48.7 kB] 09:57:40 Get:298 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-magic all 2:0.4.15-1 [9,280 B] 09:57:41 debconf: delaying package configuration, since apt-utils is not installed 09:57:41 Fetched 94.8 MB in 4s (22.5 MB/s) 09:57:41 Selecting previously unselected package liblocale-gettext-perl. 09:57:41 (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 ... 6239 files and directories currently installed.) 09:57:41 Preparing to unpack .../0-liblocale-gettext-perl_1.07-3build2_amd64.deb ... 09:57:41 Unpacking liblocale-gettext-perl (1.07-3build2) ... 09:57:43 Selecting previously unselected package multiarch-support. 09:57:43 Preparing to unpack .../1-multiarch-support_2.27-3ubuntu1.4_amd64.deb ... 09:57:43 Unpacking multiarch-support (2.27-3ubuntu1.4) ... 09:57:43 Selecting previously unselected package libxau6:amd64. 09:57:43 Preparing to unpack .../2-libxau6_1%3a1.0.8-1ubuntu1_amd64.deb ... 09:57:43 Unpacking libxau6:amd64 (1:1.0.8-1ubuntu1) ... 09:57:43 Selecting previously unselected package libbsd0:amd64. 09:57:43 Preparing to unpack .../3-libbsd0_0.8.7-1ubuntu0.1_amd64.deb ... 09:57:43 Unpacking libbsd0:amd64 (0.8.7-1ubuntu0.1) ... 09:57:44 Selecting previously unselected package libxdmcp6:amd64. 09:57:44 Preparing to unpack .../4-libxdmcp6_1%3a1.1.2-3_amd64.deb ... 09:57:44 Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... 09:57:45 Selecting previously unselected package libxcb1:amd64. 09:57:45 Preparing to unpack .../5-libxcb1_1.13-2~ubuntu18.04_amd64.deb ... 09:57:45 Unpacking libxcb1:amd64 (1.13-2~ubuntu18.04) ... 09:57:45 Selecting previously unselected package libx11-data. 09:57:45 Preparing to unpack .../6-libx11-data_2%3a1.6.4-3ubuntu0.3_all.deb ... 09:57:45 Unpacking libx11-data (2:1.6.4-3ubuntu0.3) ... 09:57:47 Selecting previously unselected package libx11-6:amd64. 09:57:47 Preparing to unpack .../7-libx11-6_2%3a1.6.4-3ubuntu0.3_amd64.deb ... 09:57:47 Unpacking libx11-6:amd64 (2:1.6.4-3ubuntu0.3) ... 09:57:51 Setting up multiarch-support (2.27-3ubuntu1.4) ... 09:57:52 Selecting previously unselected package libxext6:amd64. 09:57:52 (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 ... 6543 files and directories currently installed.) 09:57:52 Preparing to unpack .../000-libxext6_2%3a1.3.3-1_amd64.deb ... 09:57:53 Unpacking libxext6:amd64 (2:1.3.3-1) ... 09:57:56 Selecting previously unselected package bsdmainutils. 09:57:56 Preparing to unpack .../001-bsdmainutils_11.1.2ubuntu1_amd64.deb ... 09:57:56 Unpacking bsdmainutils (11.1.2ubuntu1) ... 09:57:57 Selecting previously unselected package groff-base. 09:57:57 Preparing to unpack .../002-groff-base_1.22.3-10_amd64.deb ... 09:57:57 Unpacking groff-base (1.22.3-10) ... 09:57:57 Selecting previously unselected package libgdbm5:amd64. 09:57:57 Preparing to unpack .../003-libgdbm5_1.14.1-6_amd64.deb ... 09:57:57 Unpacking libgdbm5:amd64 (1.14.1-6) ... 09:57:57 Selecting previously unselected package libpipeline1:amd64. 09:57:57 Preparing to unpack .../004-libpipeline1_1.5.0-1_amd64.deb ... 09:57:58 Unpacking libpipeline1:amd64 (1.5.0-1) ... 09:57:58 Selecting previously unselected package man-db. 09:57:58 Preparing to unpack .../005-man-db_2.8.3-2ubuntu0.1_amd64.deb ... 09:57:58 Unpacking man-db (2.8.3-2ubuntu0.1) ... 09:58:00 Selecting previously unselected package libjpeg-turbo8:amd64. 09:58:00 Preparing to unpack .../006-libjpeg-turbo8_1.5.2-0ubuntu5.18.04.4_amd64.deb ... 09:58:00 Unpacking libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.4) ... 09:58:01 Selecting previously unselected package perl-modules-5.26. 09:58:01 Preparing to unpack .../007-perl-modules-5.26_5.26.1-6ubuntu0.5_all.deb ... 09:58:01 Unpacking perl-modules-5.26 (5.26.1-6ubuntu0.5) ... 09:58:07 Selecting previously unselected package libgdbm-compat4:amd64. 09:58:07 Preparing to unpack .../008-libgdbm-compat4_1.14.1-6_amd64.deb ... 09:58:07 Unpacking libgdbm-compat4:amd64 (1.14.1-6) ... 09:58:07 Selecting previously unselected package libperl5.26:amd64. 09:58:07 Preparing to unpack .../009-libperl5.26_5.26.1-6ubuntu0.5_amd64.deb ... 09:58:07 Unpacking libperl5.26:amd64 (5.26.1-6ubuntu0.5) ... 09:58:09 Selecting previously unselected package perl. 09:58:09 Preparing to unpack .../010-perl_5.26.1-6ubuntu0.5_amd64.deb ... 09:58:09 Unpacking perl (5.26.1-6ubuntu0.5) ... 09:58:09 Selecting previously unselected package sgml-base. 09:58:09 Preparing to unpack .../011-sgml-base_1.29_all.deb ... 09:58:09 Unpacking sgml-base (1.29) ... 09:58:09 Selecting previously unselected package openssl. 09:58:09 Preparing to unpack .../012-openssl_1.1.1-1ubuntu2.1~18.04.8_amd64.deb ... 09:58:09 Unpacking openssl (1.1.1-1ubuntu2.1~18.04.8) ... 09:58:16 Selecting previously unselected package ca-certificates. 09:58:16 Preparing to unpack .../013-ca-certificates_20210119~18.04.1_all.deb ... 09:58:16 Unpacking ca-certificates (20210119~18.04.1) ... 09:58:16 Selecting previously unselected package distro-info-data. 09:58:16 Preparing to unpack .../014-distro-info-data_0.37ubuntu0.9_all.deb ... 09:58:16 Unpacking distro-info-data (0.37ubuntu0.9) ... 09:58:16 Selecting previously unselected package less. 09:58:16 Preparing to unpack .../015-less_487-0.1_amd64.deb ... 09:58:16 Unpacking less (487-0.1) ... 09:58:16 Selecting previously unselected package libapt-inst2.0:amd64. 09:58:16 Preparing to unpack .../016-libapt-inst2.0_1.6.12ubuntu0.2_amd64.deb ... 09:58:16 Unpacking libapt-inst2.0:amd64 (1.6.12ubuntu0.2) ... 09:58:17 Selecting previously unselected package libglib2.0-0:amd64. 09:58:17 Preparing to unpack .../017-libglib2.0-0_2.56.4-0ubuntu0.18.04.6_amd64.deb ... 09:58:17 Unpacking libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.6) ... 09:58:17 Selecting previously unselected package libglib2.0-data. 09:58:17 Preparing to unpack .../018-libglib2.0-data_2.56.4-0ubuntu0.18.04.6_all.deb ... 09:58:17 Unpacking libglib2.0-data (2.56.4-0ubuntu0.18.04.6) ... 09:58:19 Selecting previously unselected package libicu60:amd64. 09:58:19 Preparing to unpack .../019-libicu60_60.2-3ubuntu3.1_amd64.deb ... 09:58:19 Unpacking libicu60:amd64 (60.2-3ubuntu3.1) ... 09:58:27 Selecting previously unselected package libxml2:amd64. 09:58:27 Preparing to unpack .../020-libxml2_2.9.4+dfsg1-6.1ubuntu1.3_amd64.deb ... 09:58:27 Unpacking libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.3) ... 09:58:27 Selecting previously unselected package libyaml-0-2:amd64. 09:58:27 Preparing to unpack .../021-libyaml-0-2_0.1.7-2ubuntu3_amd64.deb ... 09:58:27 Unpacking libyaml-0-2:amd64 (0.1.7-2ubuntu3) ... 09:58:27 Selecting previously unselected package lsb-release. 09:58:27 Preparing to unpack .../022-lsb-release_9.20170808ubuntu1_all.deb ... 09:58:27 Unpacking lsb-release (9.20170808ubuntu1) ... 09:58:28 Selecting previously unselected package netbase. 09:58:28 Preparing to unpack .../023-netbase_5.4_all.deb ... 09:58:28 Unpacking netbase (5.4) ... 09:58:28 Selecting previously unselected package python3-yaml. 09:58:28 Preparing to unpack .../024-python3-yaml_3.12-1build2_amd64.deb ... 09:58:28 Unpacking python3-yaml (3.12-1build2) ... 09:58:28 Selecting previously unselected package shared-mime-info. 09:58:28 Preparing to unpack .../025-shared-mime-info_1.9-2_amd64.deb ... 09:58:28 Unpacking shared-mime-info (1.9-2) ... 09:58:28 Selecting previously unselected package sudo. 09:58:28 Preparing to unpack .../026-sudo_1.8.21p2-3ubuntu1.4_amd64.deb ... 09:58:28 Unpacking sudo (1.8.21p2-3ubuntu1.4) ... 09:58:28 Selecting previously unselected package tzdata. 09:58:28 Preparing to unpack .../027-tzdata_2021a-0ubuntu0.18.04_all.deb ... 09:58:28 Unpacking tzdata (2021a-0ubuntu0.18.04) ... 09:58:31 Selecting previously unselected package ucf. 09:58:31 Preparing to unpack .../028-ucf_3.0038_all.deb ... 09:58:31 Moving old data out of the way 09:58:31 Unpacking ucf (3.0038) ... 09:58:31 Selecting previously unselected package xdg-user-dirs. 09:58:31 Preparing to unpack .../029-xdg-user-dirs_0.17-1ubuntu1_amd64.deb ... 09:58:31 Unpacking xdg-user-dirs (0.17-1ubuntu1) ... 09:58:32 Selecting previously unselected package gettext-base. 09:58:32 Preparing to unpack .../030-gettext-base_0.19.8.1-6ubuntu0.3_amd64.deb ... 09:58:32 Unpacking gettext-base (0.19.8.1-6ubuntu0.3) ... 09:58:32 Selecting previously unselected package iso-codes. 09:58:32 Preparing to unpack .../031-iso-codes_3.79-1_all.deb ... 09:58:32 Unpacking iso-codes (3.79-1) ... 09:58:33 Selecting previously unselected package krb5-locales. 09:58:33 Preparing to unpack .../032-krb5-locales_1.16-2ubuntu0.2_all.deb ... 09:58:33 Unpacking krb5-locales (1.16-2ubuntu0.2) ... 09:58:33 Selecting previously unselected package libedit2:amd64. 09:58:33 Preparing to unpack .../033-libedit2_3.1-20170329-1_amd64.deb ... 09:58:33 Unpacking libedit2:amd64 (3.1-20170329-1) ... 09:58:33 Selecting previously unselected package libkrb5support0:amd64. 09:58:33 Preparing to unpack .../034-libkrb5support0_1.16-2ubuntu0.2_amd64.deb ... 09:58:33 Unpacking libkrb5support0:amd64 (1.16-2ubuntu0.2) ... 09:58:33 Selecting previously unselected package libk5crypto3:amd64. 09:58:33 Preparing to unpack .../035-libk5crypto3_1.16-2ubuntu0.2_amd64.deb ... 09:58:33 Unpacking libk5crypto3:amd64 (1.16-2ubuntu0.2) ... 09:58:33 Selecting previously unselected package libkeyutils1:amd64. 09:58:33 Preparing to unpack .../036-libkeyutils1_1.5.9-9.2ubuntu2_amd64.deb ... 09:58:33 Unpacking libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... 09:58:34 Selecting previously unselected package libkrb5-3:amd64. 09:58:34 Preparing to unpack .../037-libkrb5-3_1.16-2ubuntu0.2_amd64.deb ... 09:58:34 Unpacking libkrb5-3:amd64 (1.16-2ubuntu0.2) ... 09:58:34 Selecting previously unselected package libgssapi-krb5-2:amd64. 09:58:34 Preparing to unpack .../038-libgssapi-krb5-2_1.16-2ubuntu0.2_amd64.deb ... 09:58:34 Unpacking libgssapi-krb5-2:amd64 (1.16-2ubuntu0.2) ... 09:58:34 Selecting previously unselected package libpng16-16:amd64. 09:58:34 Preparing to unpack .../039-libpng16-16_1.6.34-1ubuntu0.18.04.2_amd64.deb ... 09:58:34 Unpacking libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ... 09:58:34 Selecting previously unselected package libpsl5:amd64. 09:58:34 Preparing to unpack .../040-libpsl5_0.19.1-5build1_amd64.deb ... 09:58:34 Unpacking libpsl5:amd64 (0.19.1-5build1) ... 09:58:34 Selecting previously unselected package libssl1.0.0:amd64. 09:58:34 Preparing to unpack .../041-libssl1.0.0_1.0.2n-1ubuntu5.6_amd64.deb ... 09:58:34 Unpacking libssl1.0.0:amd64 (1.0.2n-1ubuntu5.6) ... 09:58:38 Selecting previously unselected package libxmuu1:amd64. 09:58:38 Preparing to unpack .../042-libxmuu1_2%3a1.1.2-2_amd64.deb ... 09:58:38 Unpacking libxmuu1:amd64 (2:1.1.2-2) ... 09:58:39 Selecting previously unselected package manpages. 09:58:39 Preparing to unpack .../043-manpages_4.15-1_all.deb ... 09:58:39 Unpacking manpages (4.15-1) ... 09:58:39 Selecting previously unselected package openssh-client. 09:58:39 Preparing to unpack .../044-openssh-client_1%3a7.6p1-4ubuntu0.3_amd64.deb ... 09:58:39 Unpacking openssh-client (1:7.6p1-4ubuntu0.3) ... 09:58:39 Selecting previously unselected package publicsuffix. 09:58:39 Preparing to unpack .../045-publicsuffix_20180223.1310-1_all.deb ... 09:58:39 Unpacking publicsuffix (20180223.1310-1) ... 09:58:39 Selecting previously unselected package python-apt-common. 09:58:39 Preparing to unpack .../046-python-apt-common_1.6.5ubuntu0.5_all.deb ... 09:58:39 Unpacking python-apt-common (1.6.5ubuntu0.5) ... 09:58:40 Selecting previously unselected package python3-apt. 09:58:40 Preparing to unpack .../047-python3-apt_1.6.5ubuntu0.5_amd64.deb ... 09:58:40 Unpacking python3-apt (1.6.5ubuntu0.5) ... 09:58:40 Selecting previously unselected package libunwind8:amd64. 09:58:40 Preparing to unpack .../048-libunwind8_1.2.1-8_amd64.deb ... 09:58:40 Unpacking libunwind8:amd64 (1.2.1-8) ... 09:58:40 Selecting previously unselected package strace. 09:58:40 Preparing to unpack .../049-strace_4.21-1ubuntu1_amd64.deb ... 09:58:40 Unpacking strace (4.21-1ubuntu1) ... 09:58:41 Selecting previously unselected package wget. 09:58:41 Preparing to unpack .../050-wget_1.19.4-1ubuntu2.2_amd64.deb ... 09:58:41 Unpacking wget (1.19.4-1ubuntu2.2) ... 09:58:44 Selecting previously unselected package xauth. 09:58:44 Preparing to unpack .../051-xauth_1%3a1.0.10-1_amd64.deb ... 09:58:44 Unpacking xauth (1:1.0.10-1) ... 09:58:44 Selecting previously unselected package at. 09:58:44 Preparing to unpack .../052-at_3.1.20-3.1ubuntu2_amd64.deb ... 09:58:45 Unpacking at (3.1.20-3.1ubuntu2) ... 09:58:45 Selecting previously unselected package libsigsegv2:amd64. 09:58:45 Preparing to unpack .../053-libsigsegv2_2.12-1_amd64.deb ... 09:58:45 Unpacking libsigsegv2:amd64 (2.12-1) ... 09:58:45 Selecting previously unselected package m4. 09:58:45 Preparing to unpack .../054-m4_1.4.18-1_amd64.deb ... 09:58:45 Unpacking m4 (1.4.18-1) ... 09:58:45 Selecting previously unselected package autoconf. 09:58:45 Preparing to unpack .../055-autoconf_2.69-11_all.deb ... 09:58:45 Unpacking autoconf (2.69-11) ... 09:58:47 Selecting previously unselected package autotools-dev. 09:58:47 Preparing to unpack .../056-autotools-dev_20180224.1_all.deb ... 09:58:47 Unpacking autotools-dev (20180224.1) ... 09:58:48 Selecting previously unselected package automake. 09:58:48 Preparing to unpack .../057-automake_1%3a1.15.1-3ubuntu2_all.deb ... 09:58:48 Unpacking automake (1:1.15.1-3ubuntu2) ... 09:58:49 Selecting previously unselected package autopoint. 09:58:49 Preparing to unpack .../058-autopoint_0.19.8.1-6ubuntu0.3_all.deb ... 09:58:49 Unpacking autopoint (0.19.8.1-6ubuntu0.3) ... 09:58:49 Selecting previously unselected package binutils-common:amd64. 09:58:49 Preparing to unpack .../059-binutils-common_2.30-21ubuntu1~18.04.5_amd64.deb ... 09:58:49 Unpacking binutils-common:amd64 (2.30-21ubuntu1~18.04.5) ... 09:58:49 Selecting previously unselected package libbinutils:amd64. 09:58:49 Preparing to unpack .../060-libbinutils_2.30-21ubuntu1~18.04.5_amd64.deb ... 09:58:49 Unpacking libbinutils:amd64 (2.30-21ubuntu1~18.04.5) ... 09:58:49 Selecting previously unselected package binutils-x86-64-linux-gnu. 09:58:49 Preparing to unpack .../061-binutils-x86-64-linux-gnu_2.30-21ubuntu1~18.04.5_amd64.deb ... 09:58:49 Unpacking binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.5) ... 09:58:50 Selecting previously unselected package binutils. 09:58:50 Preparing to unpack .../062-binutils_2.30-21ubuntu1~18.04.5_amd64.deb ... 09:58:50 Unpacking binutils (2.30-21ubuntu1~18.04.5) ... 09:58:50 Selecting previously unselected package libc-dev-bin. 09:58:50 Preparing to unpack .../063-libc-dev-bin_2.27-3ubuntu1.4_amd64.deb ... 09:58:51 Unpacking libc-dev-bin (2.27-3ubuntu1.4) ... 09:58:51 Selecting previously unselected package linux-libc-dev:amd64. 09:58:51 Preparing to unpack .../064-linux-libc-dev_4.15.0-136.140_amd64.deb ... 09:58:51 Unpacking linux-libc-dev:amd64 (4.15.0-136.140) ... 09:58:52 Selecting previously unselected package libc6-dev:amd64. 09:58:52 Preparing to unpack .../065-libc6-dev_2.27-3ubuntu1.4_amd64.deb ... 09:58:52 Unpacking libc6-dev:amd64 (2.27-3ubuntu1.4) ... 09:58:54 Selecting previously unselected package gcc-7-base:amd64. 09:58:54 Preparing to unpack .../066-gcc-7-base_7.5.0-3ubuntu1~18.04_amd64.deb ... 09:58:54 Unpacking gcc-7-base:amd64 (7.5.0-3ubuntu1~18.04) ... 09:58:54 Selecting previously unselected package libisl19:amd64. 09:58:55 Preparing to unpack .../067-libisl19_0.19-1_amd64.deb ... 09:58:55 Unpacking libisl19:amd64 (0.19-1) ... 09:58:55 Selecting previously unselected package libmpfr6:amd64. 09:58:55 Preparing to unpack .../068-libmpfr6_4.0.1-1_amd64.deb ... 09:58:55 Unpacking libmpfr6:amd64 (4.0.1-1) ... 09:58:55 Selecting previously unselected package libmpc3:amd64. 09:58:55 Preparing to unpack .../069-libmpc3_1.1.0-1_amd64.deb ... 09:58:55 Unpacking libmpc3:amd64 (1.1.0-1) ... 09:58:55 Selecting previously unselected package cpp-7. 09:58:55 Preparing to unpack .../070-cpp-7_7.5.0-3ubuntu1~18.04_amd64.deb ... 09:58:55 Unpacking cpp-7 (7.5.0-3ubuntu1~18.04) ... 09:58:57 Selecting previously unselected package cpp. 09:58:57 Preparing to unpack .../071-cpp_4%3a7.4.0-1ubuntu2.3_amd64.deb ... 09:58:57 Unpacking cpp (4:7.4.0-1ubuntu2.3) ... 09:58:58 Selecting previously unselected package libcc1-0:amd64. 09:58:58 Preparing to unpack .../072-libcc1-0_8.4.0-1ubuntu1~18.04_amd64.deb ... 09:58:58 Unpacking libcc1-0:amd64 (8.4.0-1ubuntu1~18.04) ... 09:58:58 Selecting previously unselected package libgomp1:amd64. 09:58:58 Preparing to unpack .../073-libgomp1_8.4.0-1ubuntu1~18.04_amd64.deb ... 09:58:58 Unpacking libgomp1:amd64 (8.4.0-1ubuntu1~18.04) ... 09:58:58 Selecting previously unselected package libitm1:amd64. 09:58:58 Preparing to unpack .../074-libitm1_8.4.0-1ubuntu1~18.04_amd64.deb ... 09:58:58 Unpacking libitm1:amd64 (8.4.0-1ubuntu1~18.04) ... 09:58:58 Selecting previously unselected package libatomic1:amd64. 09:58:58 Preparing to unpack .../075-libatomic1_8.4.0-1ubuntu1~18.04_amd64.deb ... 09:58:58 Unpacking libatomic1:amd64 (8.4.0-1ubuntu1~18.04) ... 09:58:59 Selecting previously unselected package libasan4:amd64. 09:58:59 Preparing to unpack .../076-libasan4_7.5.0-3ubuntu1~18.04_amd64.deb ... 09:59:00 Unpacking libasan4:amd64 (7.5.0-3ubuntu1~18.04) ... 09:59:01 Selecting previously unselected package liblsan0:amd64. 09:59:01 Preparing to unpack .../077-liblsan0_8.4.0-1ubuntu1~18.04_amd64.deb ... 09:59:01 Unpacking liblsan0:amd64 (8.4.0-1ubuntu1~18.04) ... 09:59:01 Selecting previously unselected package libtsan0:amd64. 09:59:01 Preparing to unpack .../078-libtsan0_8.4.0-1ubuntu1~18.04_amd64.deb ... 09:59:01 Unpacking libtsan0:amd64 (8.4.0-1ubuntu1~18.04) ... 09:59:01 Selecting previously unselected package libubsan0:amd64. 09:59:01 Preparing to unpack .../079-libubsan0_7.5.0-3ubuntu1~18.04_amd64.deb ... 09:59:01 Unpacking libubsan0:amd64 (7.5.0-3ubuntu1~18.04) ... 09:59:02 Selecting previously unselected package libcilkrts5:amd64. 09:59:02 Preparing to unpack .../080-libcilkrts5_7.5.0-3ubuntu1~18.04_amd64.deb ... 09:59:02 Unpacking libcilkrts5:amd64 (7.5.0-3ubuntu1~18.04) ... 09:59:02 Selecting previously unselected package libmpx2:amd64. 09:59:02 Preparing to unpack .../081-libmpx2_8.4.0-1ubuntu1~18.04_amd64.deb ... 09:59:02 Unpacking libmpx2:amd64 (8.4.0-1ubuntu1~18.04) ... 09:59:02 Selecting previously unselected package libquadmath0:amd64. 09:59:02 Preparing to unpack .../082-libquadmath0_8.4.0-1ubuntu1~18.04_amd64.deb ... 09:59:02 Unpacking libquadmath0:amd64 (8.4.0-1ubuntu1~18.04) ... 09:59:03 Selecting previously unselected package libgcc-7-dev:amd64. 09:59:03 Preparing to unpack .../083-libgcc-7-dev_7.5.0-3ubuntu1~18.04_amd64.deb ... 09:59:03 Unpacking libgcc-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... 09:59:04 Selecting previously unselected package gcc-7. 09:59:04 Preparing to unpack .../084-gcc-7_7.5.0-3ubuntu1~18.04_amd64.deb ... 09:59:04 Unpacking gcc-7 (7.5.0-3ubuntu1~18.04) ... 09:59:06 Selecting previously unselected package gcc. 09:59:06 Preparing to unpack .../085-gcc_4%3a7.4.0-1ubuntu2.3_amd64.deb ... 09:59:06 Unpacking gcc (4:7.4.0-1ubuntu2.3) ... 09:59:07 Selecting previously unselected package libstdc++-7-dev:amd64. 09:59:07 Preparing to unpack .../086-libstdc++-7-dev_7.5.0-3ubuntu1~18.04_amd64.deb ... 09:59:07 Unpacking libstdc++-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... 09:59:08 Selecting previously unselected package g++-7. 09:59:08 Preparing to unpack .../087-g++-7_7.5.0-3ubuntu1~18.04_amd64.deb ... 09:59:08 Unpacking g++-7 (7.5.0-3ubuntu1~18.04) ... 09:59:10 Selecting previously unselected package g++. 09:59:10 Preparing to unpack .../088-g++_4%3a7.4.0-1ubuntu2.3_amd64.deb ... 09:59:10 Unpacking g++ (4:7.4.0-1ubuntu2.3) ... 09:59:11 Selecting previously unselected package make. 09:59:11 Preparing to unpack .../089-make_4.1-9.1ubuntu1_amd64.deb ... 09:59:11 Unpacking make (4.1-9.1ubuntu1) ... 09:59:11 Selecting previously unselected package libdpkg-perl. 09:59:11 Preparing to unpack .../090-libdpkg-perl_1.19.0.5ubuntu2.3_all.deb ... 09:59:11 Unpacking libdpkg-perl (1.19.0.5ubuntu2.3) ... 09:59:12 Selecting previously unselected package patch. 09:59:12 Preparing to unpack .../091-patch_2.7.6-2ubuntu1.1_amd64.deb ... 09:59:12 Unpacking patch (2.7.6-2ubuntu1.1) ... 09:59:12 Selecting previously unselected package dpkg-dev. 09:59:12 Preparing to unpack .../092-dpkg-dev_1.19.0.5ubuntu2.3_all.deb ... 09:59:12 Unpacking dpkg-dev (1.19.0.5ubuntu2.3) ... 09:59:12 Selecting previously unselected package build-essential. 09:59:12 Preparing to unpack .../093-build-essential_12.4ubuntu1_amd64.deb ... 09:59:12 Unpacking build-essential (12.4ubuntu1) ... 09:59:12 Selecting previously unselected package cowdancer. 09:59:12 Preparing to unpack .../094-cowdancer_0.86_amd64.deb ... 09:59:12 Unpacking cowdancer (0.86) ... 09:59:12 Selecting previously unselected package debootstrap. 09:59:12 Preparing to unpack .../095-debootstrap_1.0.95ubuntu0.8_all.deb ... 09:59:12 Unpacking debootstrap (1.0.95ubuntu0.8) ... 09:59:13 Selecting previously unselected package pbuilder. 09:59:13 Preparing to unpack .../096-pbuilder_0.229.1_all.deb ... 09:59:13 Unpacking pbuilder (0.229.1) ... 09:59:13 Selecting previously unselected package cowbuilder. 09:59:13 Preparing to unpack .../097-cowbuilder_0.86_amd64.deb ... 09:59:13 Unpacking cowbuilder (0.86) ... 09:59:13 Selecting previously unselected package libnghttp2-14:amd64. 09:59:13 Preparing to unpack .../098-libnghttp2-14_1.30.0-1ubuntu1_amd64.deb ... 09:59:13 Unpacking libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... 09:59:14 Selecting previously unselected package librtmp1:amd64. 09:59:14 Preparing to unpack .../099-librtmp1_2.4+20151223.gitfa8646d.1-1_amd64.deb ... 09:59:14 Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... 09:59:15 Selecting previously unselected package libcurl4:amd64. 09:59:15 Preparing to unpack .../100-libcurl4_7.58.0-2ubuntu3.12_amd64.deb ... 09:59:15 Unpacking libcurl4:amd64 (7.58.0-2ubuntu3.12) ... 09:59:15 Selecting previously unselected package curl. 09:59:15 Preparing to unpack .../101-curl_7.58.0-2ubuntu3.12_amd64.deb ... 09:59:15 Unpacking curl (7.58.0-2ubuntu3.12) ... 09:59:16 Selecting previously unselected package dctrl-tools. 09:59:16 Preparing to unpack .../102-dctrl-tools_2.24-2build1_amd64.deb ... 09:59:16 Unpacking dctrl-tools (2.24-2build1) ... 09:59:16 Selecting previously unselected package libtool. 09:59:16 Preparing to unpack .../103-libtool_2.4.6-2_all.deb ... 09:59:16 Unpacking libtool (2.4.6-2) ... 09:59:16 Selecting previously unselected package dh-autoreconf. 09:59:16 Preparing to unpack .../104-dh-autoreconf_17_all.deb ... 09:59:16 Unpacking dh-autoreconf (17) ... 09:59:16 Selecting previously unselected package libarchive-zip-perl. 09:59:16 Preparing to unpack .../105-libarchive-zip-perl_1.60-1ubuntu0.1_all.deb ... 09:59:16 Unpacking libarchive-zip-perl (1.60-1ubuntu0.1) ... 09:59:16 Selecting previously unselected package libfile-stripnondeterminism-perl. 09:59:16 Preparing to unpack .../106-libfile-stripnondeterminism-perl_0.040-1.1~build1_all.deb ... 09:59:16 Unpacking libfile-stripnondeterminism-perl (0.040-1.1~build1) ... 09:59:16 Selecting previously unselected package libtimedate-perl. 09:59:16 Preparing to unpack .../107-libtimedate-perl_2.3000-2_all.deb ... 09:59:16 Unpacking libtimedate-perl (2.3000-2) ... 09:59:16 Selecting previously unselected package dh-strip-nondeterminism. 09:59:16 Preparing to unpack .../108-dh-strip-nondeterminism_0.040-1.1~build1_all.deb ... 09:59:16 Unpacking dh-strip-nondeterminism (0.040-1.1~build1) ... 09:59:17 Selecting previously unselected package libcroco3:amd64. 09:59:17 Preparing to unpack .../109-libcroco3_0.6.12-2_amd64.deb ... 09:59:17 Unpacking libcroco3:amd64 (0.6.12-2) ... 09:59:17 Selecting previously unselected package gettext. 09:59:17 Preparing to unpack .../110-gettext_0.19.8.1-6ubuntu0.3_amd64.deb ... 09:59:17 Unpacking gettext (0.19.8.1-6ubuntu0.3) ... 09:59:17 Selecting previously unselected package intltool-debian. 09:59:17 Preparing to unpack .../111-intltool-debian_0.35.0+20060710.4_all.deb ... 09:59:17 Unpacking intltool-debian (0.35.0+20060710.4) ... 09:59:17 Selecting previously unselected package po-debconf. 09:59:17 Preparing to unpack .../112-po-debconf_1.0.20_all.deb ... 09:59:17 Unpacking po-debconf (1.0.20) ... 09:59:18 Selecting previously unselected package debhelper. 09:59:18 Preparing to unpack .../113-debhelper_11.1.6ubuntu2_all.deb ... 09:59:18 Unpacking debhelper (11.1.6ubuntu2) ... 09:59:18 Selecting previously unselected package libfile-which-perl. 09:59:18 Preparing to unpack .../114-libfile-which-perl_1.21-1_all.deb ... 09:59:18 Unpacking libfile-which-perl (1.21-1) ... 09:59:19 Selecting previously unselected package libfile-homedir-perl. 09:59:19 Preparing to unpack .../115-libfile-homedir-perl_1.002-1_all.deb ... 09:59:19 Unpacking libfile-homedir-perl (1.002-1) ... 09:59:19 Selecting previously unselected package devscripts. 09:59:19 Preparing to unpack .../116-devscripts_2.17.12ubuntu1.1_amd64.deb ... 09:59:19 Unpacking devscripts (2.17.12ubuntu1.1) ... 09:59:23 Selecting previously unselected package diffstat. 09:59:23 Preparing to unpack .../117-diffstat_1.61-1build1_amd64.deb ... 09:59:23 Unpacking diffstat (1.61-1build1) ... 09:59:23 Selecting previously unselected package xml-core. 09:59:23 Preparing to unpack .../118-xml-core_0.18_all.deb ... 09:59:23 Unpacking xml-core (0.18) ... 09:59:23 Selecting previously unselected package docutils-common. 09:59:23 Preparing to unpack .../119-docutils-common_0.14+dfsg-3_all.deb ... 09:59:23 Unpacking docutils-common (0.14+dfsg-3) ... 09:59:24 Selecting previously unselected package python3-pkg-resources. 09:59:24 Preparing to unpack .../120-python3-pkg-resources_39.0.1-2_all.deb ... 09:59:24 Unpacking python3-pkg-resources (39.0.1-2) ... 09:59:24 Selecting previously unselected package python3-chardet. 09:59:24 Preparing to unpack .../121-python3-chardet_3.0.4-1_all.deb ... 09:59:24 Unpacking python3-chardet (3.0.4-1) ... 09:59:24 Selecting previously unselected package python3-six. 09:59:24 Preparing to unpack .../122-python3-six_1.11.0-2_all.deb ... 09:59:24 Unpacking python3-six (1.11.0-2) ... 09:59:24 Selecting previously unselected package python3-debian. 09:59:24 Preparing to unpack .../123-python3-debian_0.1.32_all.deb ... 09:59:24 Unpacking python3-debian (0.1.32) ... 09:59:24 Selecting previously unselected package libgpgme11:amd64. 09:59:24 Preparing to unpack .../124-libgpgme11_1.10.0-1ubuntu2_amd64.deb ... 09:59:24 Unpacking libgpgme11:amd64 (1.10.0-1ubuntu2) ... 09:59:24 Selecting previously unselected package python3-gpg. 09:59:24 Preparing to unpack .../125-python3-gpg_1.10.0-1ubuntu2_amd64.deb ... 09:59:24 Unpacking python3-gpg (1.10.0-1ubuntu2) ... 09:59:25 Selecting previously unselected package dput. 09:59:25 Preparing to unpack .../126-dput_1.0.1ubuntu1_all.deb ... 09:59:25 Unpacking dput (1.0.1ubuntu1) ... 09:59:25 Selecting previously unselected package libeatmydata1:amd64. 09:59:25 Preparing to unpack .../127-libeatmydata1_105-6_amd64.deb ... 09:59:25 Unpacking libeatmydata1:amd64 (105-6) ... 09:59:25 Selecting previously unselected package eatmydata. 09:59:25 Preparing to unpack .../128-eatmydata_105-6_all.deb ... 09:59:25 Unpacking eatmydata (105-6) ... 09:59:25 Selecting previously unselected package libfakeroot:amd64. 09:59:25 Preparing to unpack .../129-libfakeroot_1.22-2ubuntu1_amd64.deb ... 09:59:25 Unpacking libfakeroot:amd64 (1.22-2ubuntu1) ... 09:59:25 Selecting previously unselected package fakeroot. 09:59:25 Preparing to unpack .../130-fakeroot_1.22-2ubuntu1_amd64.deb ... 09:59:25 Unpacking fakeroot (1.22-2ubuntu1) ... 09:59:25 Selecting previously unselected package libcurl3-gnutls:amd64. 09:59:25 Preparing to unpack .../131-libcurl3-gnutls_7.58.0-2ubuntu3.12_amd64.deb ... 09:59:25 Unpacking libcurl3-gnutls:amd64 (7.58.0-2ubuntu3.12) ... 09:59:26 Selecting previously unselected package liberror-perl. 09:59:26 Preparing to unpack .../132-liberror-perl_0.17025-1_all.deb ... 09:59:26 Unpacking liberror-perl (0.17025-1) ... 09:59:26 Selecting previously unselected package git-man. 09:59:26 Preparing to unpack .../133-git-man_1%3a2.17.1-1ubuntu0.7_all.deb ... 09:59:26 Unpacking git-man (1:2.17.1-1ubuntu0.7) ... 09:59:26 Selecting previously unselected package git. 09:59:26 Preparing to unpack .../134-git_1%3a2.17.1-1ubuntu0.7_amd64.deb ... 09:59:26 Unpacking git (1:2.17.1-1ubuntu0.7) ... 09:59:28 Selecting previously unselected package python3-dateutil. 09:59:28 Preparing to unpack .../135-python3-dateutil_2.6.1-1_all.deb ... 09:59:28 Unpacking python3-dateutil (2.6.1-1) ... 09:59:28 Selecting previously unselected package git-buildpackage. 09:59:28 Preparing to unpack .../136-git-buildpackage_0.9.8_all.deb ... 09:59:28 Unpacking git-buildpackage (0.9.8) ... 09:59:29 Selecting previously unselected package libalgorithm-diff-perl. 09:59:29 Preparing to unpack .../137-libalgorithm-diff-perl_1.19.03-1_all.deb ... 09:59:29 Unpacking libalgorithm-diff-perl (1.19.03-1) ... 09:59:29 Selecting previously unselected package libalgorithm-diff-xs-perl. 09:59:29 Preparing to unpack .../138-libalgorithm-diff-xs-perl_0.04-5_amd64.deb ... 09:59:29 Unpacking libalgorithm-diff-xs-perl (0.04-5) ... 09:59:29 Selecting previously unselected package libalgorithm-merge-perl. 09:59:29 Preparing to unpack .../139-libalgorithm-merge-perl_0.08-3_all.deb ... 09:59:29 Unpacking libalgorithm-merge-perl (0.08-3) ... 09:59:29 Selecting previously unselected package libapt-pkg-perl. 09:59:29 Preparing to unpack .../140-libapt-pkg-perl_0.1.33build1_amd64.deb ... 09:59:29 Unpacking libapt-pkg-perl (0.1.33build1) ... 09:59:29 Selecting previously unselected package libarchive-cpio-perl. 09:59:29 Preparing to unpack .../141-libarchive-cpio-perl_0.10-1_all.deb ... 09:59:29 Unpacking libarchive-cpio-perl (0.10-1) ... 09:59:30 Selecting previously unselected package libb-hooks-op-check-perl. 09:59:30 Preparing to unpack .../142-libb-hooks-op-check-perl_0.22-1_amd64.deb ... 09:59:30 Unpacking libb-hooks-op-check-perl (0.22-1) ... 09:59:30 Selecting previously unselected package libdynaloader-functions-perl. 09:59:30 Preparing to unpack .../143-libdynaloader-functions-perl_0.003-1_all.deb ... 09:59:30 Unpacking libdynaloader-functions-perl (0.003-1) ... 09:59:30 Selecting previously unselected package libdevel-callchecker-perl. 09:59:30 Preparing to unpack .../144-libdevel-callchecker-perl_0.007-2build1_amd64.deb ... 09:59:30 Unpacking libdevel-callchecker-perl (0.007-2build1) ... 09:59:30 Selecting previously unselected package libparams-classify-perl. 09:59:30 Preparing to unpack .../145-libparams-classify-perl_0.015-1_amd64.deb ... 09:59:30 Unpacking libparams-classify-perl (0.015-1) ... 09:59:30 Selecting previously unselected package libmodule-runtime-perl. 09:59:30 Preparing to unpack .../146-libmodule-runtime-perl_0.016-1_all.deb ... 09:59:30 Unpacking libmodule-runtime-perl (0.016-1) ... 09:59:31 Selecting previously unselected package libtry-tiny-perl. 09:59:31 Preparing to unpack .../147-libtry-tiny-perl_0.30-1_all.deb ... 09:59:31 Unpacking libtry-tiny-perl (0.30-1) ... 09:59:31 Selecting previously unselected package libmodule-implementation-perl. 09:59:31 Preparing to unpack .../148-libmodule-implementation-perl_0.09-1_all.deb ... 09:59:31 Unpacking libmodule-implementation-perl (0.09-1) ... 09:59:32 Selecting previously unselected package libsub-exporter-progressive-perl. 09:59:32 Preparing to unpack .../149-libsub-exporter-progressive-perl_0.001013-1_all.deb ... 09:59:32 Unpacking libsub-exporter-progressive-perl (0.001013-1) ... 09:59:32 Selecting previously unselected package libvariable-magic-perl. 09:59:32 Preparing to unpack .../150-libvariable-magic-perl_0.62-1_amd64.deb ... 09:59:32 Unpacking libvariable-magic-perl (0.62-1) ... 09:59:32 Selecting previously unselected package libb-hooks-endofscope-perl. 09:59:32 Preparing to unpack .../151-libb-hooks-endofscope-perl_0.21-1_all.deb ... 09:59:32 Unpacking libb-hooks-endofscope-perl (0.21-1) ... 09:59:32 Selecting previously unselected package libhtml-tagset-perl. 09:59:32 Preparing to unpack .../152-libhtml-tagset-perl_3.20-3_all.deb ... 09:59:32 Unpacking libhtml-tagset-perl (3.20-3) ... 09:59:32 Selecting previously unselected package liburi-perl. 09:59:32 Preparing to unpack .../153-liburi-perl_1.73-1_all.deb ... 09:59:32 Unpacking liburi-perl (1.73-1) ... 09:59:32 Selecting previously unselected package libhtml-parser-perl. 09:59:32 Preparing to unpack .../154-libhtml-parser-perl_3.72-3build1_amd64.deb ... 09:59:32 Unpacking libhtml-parser-perl (3.72-3build1) ... 09:59:33 Selecting previously unselected package libcgi-pm-perl. 09:59:33 Preparing to unpack .../155-libcgi-pm-perl_4.38-1_all.deb ... 09:59:33 Unpacking libcgi-pm-perl (4.38-1) ... 09:59:33 Selecting previously unselected package libfcgi-perl. 09:59:33 Preparing to unpack .../156-libfcgi-perl_0.78-2build1_amd64.deb ... 09:59:33 Unpacking libfcgi-perl (0.78-2build1) ... 09:59:33 Selecting previously unselected package libcgi-fast-perl. 09:59:33 Preparing to unpack .../157-libcgi-fast-perl_1%3a2.13-1_all.deb ... 09:59:33 Unpacking libcgi-fast-perl (1:2.13-1) ... 09:59:33 Selecting previously unselected package libsub-name-perl. 09:59:33 Preparing to unpack .../158-libsub-name-perl_0.21-1build1_amd64.deb ... 09:59:33 Unpacking libsub-name-perl (0.21-1build1) ... 09:59:33 Selecting previously unselected package libclass-accessor-perl. 09:59:33 Preparing to unpack .../159-libclass-accessor-perl_0.51-1_all.deb ... 09:59:33 Unpacking libclass-accessor-perl (0.51-1) ... 09:59:33 Selecting previously unselected package libclass-method-modifiers-perl. 09:59:33 Preparing to unpack .../160-libclass-method-modifiers-perl_2.12-1_all.deb ... 09:59:33 Unpacking libclass-method-modifiers-perl (2.12-1) ... 09:59:33 Selecting previously unselected package libclass-xsaccessor-perl. 09:59:33 Preparing to unpack .../161-libclass-xsaccessor-perl_1.19-2build8_amd64.deb ... 09:59:34 Unpacking libclass-xsaccessor-perl (1.19-2build8) ... 09:59:34 Selecting previously unselected package libclone-perl. 09:59:34 Preparing to unpack .../162-libclone-perl_0.39-1_amd64.deb ... 09:59:34 Unpacking libclone-perl (0.39-1) ... 09:59:34 Selecting previously unselected package libdata-dump-perl. 09:59:34 Preparing to unpack .../163-libdata-dump-perl_1.23-1_all.deb ... 09:59:34 Unpacking libdata-dump-perl (1.23-1) ... 09:59:34 Selecting previously unselected package libparams-util-perl. 09:59:34 Preparing to unpack .../164-libparams-util-perl_1.07-3build3_amd64.deb ... 09:59:34 Unpacking libparams-util-perl (1.07-3build3) ... 09:59:34 Selecting previously unselected package libsub-install-perl. 09:59:34 Preparing to unpack .../165-libsub-install-perl_0.928-1_all.deb ... 09:59:34 Unpacking libsub-install-perl (0.928-1) ... 09:59:34 Selecting previously unselected package libdata-optlist-perl. 09:59:34 Preparing to unpack .../166-libdata-optlist-perl_0.110-1_all.deb ... 09:59:34 Unpacking libdata-optlist-perl (0.110-1) ... 09:59:34 Selecting previously unselected package libdevel-globaldestruction-perl. 09:59:35 Preparing to unpack .../167-libdevel-globaldestruction-perl_0.14-1_all.deb ... 09:59:35 Unpacking libdevel-globaldestruction-perl (0.14-1) ... 09:59:35 Selecting previously unselected package libdigest-hmac-perl. 09:59:35 Preparing to unpack .../168-libdigest-hmac-perl_1.03+dfsg-1_all.deb ... 09:59:35 Unpacking libdigest-hmac-perl (1.03+dfsg-1) ... 09:59:35 Selecting previously unselected package libdistro-info-perl. 09:59:35 Preparing to unpack .../169-libdistro-info-perl_0.18ubuntu0.18.04.1_all.deb ... 09:59:35 Unpacking libdistro-info-perl (0.18ubuntu0.18.04.1) ... 09:59:35 Selecting previously unselected package perl-openssl-defaults:amd64. 09:59:35 Preparing to unpack .../170-perl-openssl-defaults_3build1_amd64.deb ... 09:59:35 Unpacking perl-openssl-defaults:amd64 (3build1) ... 09:59:35 Selecting previously unselected package libnet-ssleay-perl. 09:59:35 Preparing to unpack .../171-libnet-ssleay-perl_1.84-1ubuntu0.2_amd64.deb ... 09:59:35 Unpacking libnet-ssleay-perl (1.84-1ubuntu0.2) ... 09:59:35 Selecting previously unselected package libio-socket-ssl-perl. 09:59:35 Preparing to unpack .../172-libio-socket-ssl-perl_2.060-3~ubuntu18.04.1_all.deb ... 09:59:35 Unpacking libio-socket-ssl-perl (2.060-3~ubuntu18.04.1) ... 09:59:36 Selecting previously unselected package libnet-smtp-ssl-perl. 09:59:36 Preparing to unpack .../173-libnet-smtp-ssl-perl_1.04-1_all.deb ... 09:59:36 Unpacking libnet-smtp-ssl-perl (1.04-1) ... 09:59:37 Selecting previously unselected package libmailtools-perl. 09:59:37 Preparing to unpack .../174-libmailtools-perl_2.18-1_all.deb ... 09:59:37 Unpacking libmailtools-perl (2.18-1) ... 09:59:38 Selecting previously unselected package libsocket6-perl. 09:59:38 Preparing to unpack .../175-libsocket6-perl_0.27-1build2_amd64.deb ... 09:59:38 Unpacking libsocket6-perl (0.27-1build2) ... 09:59:38 Selecting previously unselected package libio-socket-inet6-perl. 09:59:38 Preparing to unpack .../176-libio-socket-inet6-perl_2.72-2_all.deb ... 09:59:38 Unpacking libio-socket-inet6-perl (2.72-2) ... 09:59:38 Selecting previously unselected package libnet-ip-perl. 09:59:38 Preparing to unpack .../177-libnet-ip-perl_1.26-1_all.deb ... 09:59:38 Unpacking libnet-ip-perl (1.26-1) ... 09:59:38 Selecting previously unselected package libnet-dns-perl. 09:59:38 Preparing to unpack .../178-libnet-dns-perl_1.10-2_all.deb ... 09:59:38 Unpacking libnet-dns-perl (1.10-2) ... 09:59:38 Selecting previously unselected package libnet-domain-tld-perl. 09:59:38 Preparing to unpack .../179-libnet-domain-tld-perl_1.75-1_all.deb ... 09:59:39 Unpacking libnet-domain-tld-perl (1.75-1) ... 09:59:39 Selecting previously unselected package libemail-valid-perl. 09:59:39 Preparing to unpack .../180-libemail-valid-perl_1.202-1_all.deb ... 09:59:39 Unpacking libemail-valid-perl (1.202-1) ... 09:59:39 Selecting previously unselected package libencode-locale-perl. 09:59:39 Preparing to unpack .../181-libencode-locale-perl_1.05-1_all.deb ... 09:59:39 Unpacking libencode-locale-perl (1.05-1) ... 09:59:39 Selecting previously unselected package libexporter-tiny-perl. 09:59:39 Preparing to unpack .../182-libexporter-tiny-perl_1.000000-2_all.deb ... 09:59:39 Unpacking libexporter-tiny-perl (1.000000-2) ... 09:59:39 Selecting previously unselected package libipc-system-simple-perl. 09:59:39 Preparing to unpack .../183-libipc-system-simple-perl_1.25-4_all.deb ... 09:59:39 Unpacking libipc-system-simple-perl (1.25-4) ... 09:59:39 Selecting previously unselected package libfile-basedir-perl. 09:59:39 Preparing to unpack .../184-libfile-basedir-perl_0.07-1_all.deb ... 09:59:39 Unpacking libfile-basedir-perl (0.07-1) ... 09:59:40 Selecting previously unselected package libfile-chdir-perl. 09:59:40 Preparing to unpack .../185-libfile-chdir-perl_0.1008-1_all.deb ... 09:59:40 Unpacking libfile-chdir-perl (0.1008-1) ... 09:59:40 Selecting previously unselected package libfile-fcntllock-perl. 09:59:40 Preparing to unpack .../186-libfile-fcntllock-perl_0.22-3build2_amd64.deb ... 09:59:40 Unpacking libfile-fcntllock-perl (0.22-3build2) ... 09:59:40 Selecting previously unselected package libhttp-date-perl. 09:59:40 Preparing to unpack .../187-libhttp-date-perl_6.02-1_all.deb ... 09:59:40 Unpacking libhttp-date-perl (6.02-1) ... 09:59:40 Selecting previously unselected package libfile-listing-perl. 09:59:40 Preparing to unpack .../188-libfile-listing-perl_6.04-1_all.deb ... 09:59:40 Unpacking libfile-listing-perl (6.04-1) ... 09:59:40 Selecting previously unselected package libfont-afm-perl. 09:59:40 Preparing to unpack .../189-libfont-afm-perl_1.20-2_all.deb ... 09:59:40 Unpacking libfont-afm-perl (1.20-2) ... 09:59:40 Selecting previously unselected package libfreetype6:amd64. 09:59:40 Preparing to unpack .../190-libfreetype6_2.8.1-2ubuntu2.1_amd64.deb ... 09:59:40 Unpacking libfreetype6:amd64 (2.8.1-2ubuntu2.1) ... 09:59:41 Selecting previously unselected package libio-stringy-perl. 09:59:41 Preparing to unpack .../191-libio-stringy-perl_2.111-2_all.deb ... 09:59:41 Unpacking libio-stringy-perl (2.111-2) ... 09:59:41 Selecting previously unselected package libparams-validate-perl. 09:59:41 Preparing to unpack .../192-libparams-validate-perl_1.29-1_amd64.deb ... 09:59:41 Unpacking libparams-validate-perl (1.29-1) ... 09:59:41 Selecting previously unselected package libsub-exporter-perl. 09:59:41 Preparing to unpack .../193-libsub-exporter-perl_0.987-1_all.deb ... 09:59:41 Unpacking libsub-exporter-perl (0.987-1) ... 09:59:41 Selecting previously unselected package libgetopt-long-descriptive-perl. 09:59:41 Preparing to unpack .../194-libgetopt-long-descriptive-perl_0.102-1_all.deb ... 09:59:41 Unpacking libgetopt-long-descriptive-perl (0.102-1) ... 09:59:41 Selecting previously unselected package libsort-versions-perl. 09:59:41 Preparing to unpack .../195-libsort-versions-perl_1.62-1_all.deb ... 09:59:41 Unpacking libsort-versions-perl (1.62-1) ... 09:59:42 Selecting previously unselected package libgit-wrapper-perl. 09:59:42 Preparing to unpack .../196-libgit-wrapper-perl_0.047-1_all.deb ... 09:59:42 Unpacking libgit-wrapper-perl (0.047-1) ... 09:59:42 Selecting previously unselected package libio-html-perl. 09:59:42 Preparing to unpack .../197-libio-html-perl_1.001-1_all.deb ... 09:59:42 Unpacking libio-html-perl (1.001-1) ... 09:59:42 Selecting previously unselected package liblwp-mediatypes-perl. 09:59:42 Preparing to unpack .../198-liblwp-mediatypes-perl_6.02-1_all.deb ... 09:59:42 Unpacking liblwp-mediatypes-perl (6.02-1) ... 09:59:42 Selecting previously unselected package libhttp-message-perl. 09:59:42 Preparing to unpack .../199-libhttp-message-perl_6.14-1_all.deb ... 09:59:42 Unpacking libhttp-message-perl (6.14-1) ... 09:59:42 Selecting previously unselected package libhtml-form-perl. 09:59:42 Preparing to unpack .../200-libhtml-form-perl_6.03-1_all.deb ... 09:59:42 Unpacking libhtml-form-perl (6.03-1) ... 09:59:43 Selecting previously unselected package libhtml-tree-perl. 09:59:43 Preparing to unpack .../201-libhtml-tree-perl_5.07-1_all.deb ... 09:59:43 Unpacking libhtml-tree-perl (5.07-1) ... 09:59:43 Selecting previously unselected package libhtml-format-perl. 09:59:43 Preparing to unpack .../202-libhtml-format-perl_2.12-1_all.deb ... 09:59:43 Unpacking libhtml-format-perl (2.12-1) ... 09:59:43 Selecting previously unselected package libhttp-cookies-perl. 09:59:43 Preparing to unpack .../203-libhttp-cookies-perl_6.04-1_all.deb ... 09:59:43 Unpacking libhttp-cookies-perl (6.04-1) ... 09:59:43 Selecting previously unselected package libhttp-daemon-perl. 09:59:43 Preparing to unpack .../204-libhttp-daemon-perl_6.01-1_all.deb ... 09:59:43 Unpacking libhttp-daemon-perl (6.01-1) ... 09:59:44 Selecting previously unselected package libhttp-negotiate-perl. 09:59:44 Preparing to unpack .../205-libhttp-negotiate-perl_6.00-2_all.deb ... 09:59:44 Unpacking libhttp-negotiate-perl (6.00-2) ... 09:59:44 Selecting previously unselected package libimport-into-perl. 09:59:44 Preparing to unpack .../206-libimport-into-perl_1.002005-1_all.deb ... 09:59:44 Unpacking libimport-into-perl (1.002005-1) ... 09:59:44 Selecting previously unselected package libio-pty-perl. 09:59:44 Preparing to unpack .../207-libio-pty-perl_1%3a1.08-1.1build4_amd64.deb ... 09:59:44 Unpacking libio-pty-perl (1:1.08-1.1build4) ... 09:59:44 Selecting previously unselected package libio-string-perl. 09:59:44 Preparing to unpack .../208-libio-string-perl_1.08-3_all.deb ... 09:59:44 Unpacking libio-string-perl (1.08-3) ... 09:59:44 Selecting previously unselected package libipc-run-perl. 09:59:44 Preparing to unpack .../209-libipc-run-perl_0.96-1_all.deb ... 09:59:44 Unpacking libipc-run-perl (0.96-1) ... 09:59:55 Selecting previously unselected package libjpeg8:amd64. 09:59:55 Preparing to unpack .../210-libjpeg8_8c-2ubuntu8_amd64.deb ... 09:59:55 Unpacking libjpeg8:amd64 (8c-2ubuntu8) ... 09:59:55 Selecting previously unselected package liblcms2-2:amd64. 09:59:55 Preparing to unpack .../211-liblcms2-2_2.9-1ubuntu0.1_amd64.deb ... 09:59:55 Unpacking liblcms2-2:amd64 (2.9-1ubuntu0.1) ... 09:59:56 Selecting previously unselected package liblist-compare-perl. 09:59:56 Preparing to unpack .../212-liblist-compare-perl_0.53-1_all.deb ... 09:59:56 Unpacking liblist-compare-perl (0.53-1) ... 09:59:56 Selecting previously unselected package liblist-moreutils-perl. 09:59:56 Preparing to unpack .../213-liblist-moreutils-perl_0.416-1build3_amd64.deb ... 09:59:56 Unpacking liblist-moreutils-perl (0.416-1build3) ... 09:59:56 Selecting previously unselected package libltdl7:amd64. 09:59:56 Preparing to unpack .../214-libltdl7_2.4.6-2_amd64.deb ... 09:59:56 Unpacking libltdl7:amd64 (2.4.6-2) ... 09:59:56 Selecting previously unselected package libltdl-dev:amd64. 09:59:56 Preparing to unpack .../215-libltdl-dev_2.4.6-2_amd64.deb ... 09:59:56 Unpacking libltdl-dev:amd64 (2.4.6-2) ... 09:59:56 Selecting previously unselected package libnet-http-perl. 09:59:56 Preparing to unpack .../216-libnet-http-perl_6.17-1_all.deb ... 09:59:56 Unpacking libnet-http-perl (6.17-1) ... 09:59:56 Selecting previously unselected package libwww-robotrules-perl. 09:59:56 Preparing to unpack .../217-libwww-robotrules-perl_6.01-1_all.deb ... 09:59:56 Unpacking libwww-robotrules-perl (6.01-1) ... 09:59:56 Selecting previously unselected package libwww-perl. 09:59:56 Preparing to unpack .../218-libwww-perl_6.31-1ubuntu0.1_all.deb ... 09:59:56 Unpacking libwww-perl (6.31-1ubuntu0.1) ... 09:59:57 Selecting previously unselected package liblwp-protocol-https-perl. 09:59:57 Preparing to unpack .../219-liblwp-protocol-https-perl_6.07-2_all.deb ... 09:59:57 Unpacking liblwp-protocol-https-perl (6.07-2) ... 09:59:57 Selecting previously unselected package libsys-hostname-long-perl. 09:59:57 Preparing to unpack .../220-libsys-hostname-long-perl_1.5-1_all.deb ... 09:59:57 Unpacking libsys-hostname-long-perl (1.5-1) ... 09:59:57 Selecting previously unselected package libmail-sendmail-perl. 09:59:57 Preparing to unpack .../221-libmail-sendmail-perl_0.80-1_all.deb ... 09:59:57 Unpacking libmail-sendmail-perl (0.80-1) ... 09:59:57 Selecting previously unselected package librole-tiny-perl. 09:59:57 Preparing to unpack .../222-librole-tiny-perl_2.000006-1_all.deb ... 09:59:57 Unpacking librole-tiny-perl (2.000006-1) ... 09:59:57 Selecting previously unselected package libstrictures-perl. 09:59:57 Preparing to unpack .../223-libstrictures-perl_2.000003-1_all.deb ... 09:59:57 Unpacking libstrictures-perl (2.000003-1) ... 09:59:57 Selecting previously unselected package libsub-quote-perl. 09:59:57 Preparing to unpack .../224-libsub-quote-perl_2.005000-1_all.deb ... 09:59:57 Unpacking libsub-quote-perl (2.005000-1) ... 09:59:58 Selecting previously unselected package libmoo-perl. 09:59:58 Preparing to unpack .../225-libmoo-perl_2.003004-1_all.deb ... 09:59:58 Unpacking libmoo-perl (2.003004-1) ... 09:59:58 Selecting previously unselected package libpackage-stash-perl. 09:59:58 Preparing to unpack .../226-libpackage-stash-perl_0.37-1_all.deb ... 09:59:58 Unpacking libpackage-stash-perl (0.37-1) ... 09:59:58 Selecting previously unselected package libsub-identify-perl. 09:59:58 Preparing to unpack .../227-libsub-identify-perl_0.14-1_amd64.deb ... 09:59:58 Unpacking libsub-identify-perl (0.14-1) ... 09:59:58 Selecting previously unselected package libnamespace-clean-perl. 09:59:58 Preparing to unpack .../228-libnamespace-clean-perl_0.27-1_all.deb ... 09:59:58 Unpacking libnamespace-clean-perl (0.27-1) ... 09:59:58 Selecting previously unselected package libnumber-compare-perl. 09:59:58 Preparing to unpack .../229-libnumber-compare-perl_0.03-1_all.deb ... 09:59:58 Unpacking libnumber-compare-perl (0.03-1) ... 09:59:58 Selecting previously unselected package libnumber-range-perl. 09:59:58 Preparing to unpack .../230-libnumber-range-perl_0.12-1_all.deb ... 09:59:58 Unpacking libnumber-range-perl (0.12-1) ... 09:59:58 Selecting previously unselected package libpackage-stash-xs-perl. 09:59:58 Preparing to unpack .../231-libpackage-stash-xs-perl_0.28-3build2_amd64.deb ... 09:59:58 Unpacking libpackage-stash-xs-perl (0.28-3build2) ... 09:59:59 Selecting previously unselected package libpaper1:amd64. 09:59:59 Preparing to unpack .../232-libpaper1_1.1.24+nmu5ubuntu1_amd64.deb ... 09:59:59 Unpacking libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... 09:59:59 Selecting previously unselected package libpaper-utils. 09:59:59 Preparing to unpack .../233-libpaper-utils_1.1.24+nmu5ubuntu1_amd64.deb ... 09:59:59 Unpacking libpaper-utils (1.1.24+nmu5ubuntu1) ... 09:59:59 Selecting previously unselected package libparse-debianchangelog-perl. 09:59:59 Preparing to unpack .../234-libparse-debianchangelog-perl_1.2.0-12_all.deb ... 10:00:00 Unpacking libparse-debianchangelog-perl (1.2.0-12) ... 10:00:01 Selecting previously unselected package libtext-glob-perl. 10:00:01 Preparing to unpack .../235-libtext-glob-perl_0.10-1_all.deb ... 10:00:02 Unpacking libtext-glob-perl (0.10-1) ... 10:00:04 Selecting previously unselected package libpath-iterator-rule-perl. 10:00:04 Preparing to unpack .../236-libpath-iterator-rule-perl_1.009-1_all.deb ... 10:00:04 Unpacking libpath-iterator-rule-perl (1.009-1) ... 10:00:05 Selecting previously unselected package libpath-tiny-perl. 10:00:05 Preparing to unpack .../237-libpath-tiny-perl_0.104-1_all.deb ... 10:00:05 Unpacking libpath-tiny-perl (0.104-1) ... 10:00:05 Selecting previously unselected package libperlio-gzip-perl. 10:00:05 Preparing to unpack .../238-libperlio-gzip-perl_0.19-1build3_amd64.deb ... 10:00:05 Unpacking libperlio-gzip-perl (0.19-1build3) ... 10:00:09 Selecting previously unselected package libpod-constants-perl. 10:00:09 Preparing to unpack .../239-libpod-constants-perl_0.19-1_all.deb ... 10:00:09 Unpacking libpod-constants-perl (0.19-1) ... 10:00:09 Selecting previously unselected package libregexp-pattern-license-perl. 10:00:09 Preparing to unpack .../240-libregexp-pattern-license-perl_3.0.31-3_all.deb ... 10:00:09 Unpacking libregexp-pattern-license-perl (3.0.31-3) ... 10:00:10 Selecting previously unselected package libsort-key-perl. 10:00:10 Preparing to unpack .../241-libsort-key-perl_1.33-2_amd64.deb ... 10:00:10 Unpacking libsort-key-perl (1.33-2) ... 10:00:10 Selecting previously unselected package libstring-copyright-perl. 10:00:10 Preparing to unpack .../242-libstring-copyright-perl_0.003005-1_all.deb ... 10:00:10 Unpacking libstring-copyright-perl (0.003005-1) ... 10:00:10 Selecting previously unselected package libstring-escape-perl. 10:00:10 Preparing to unpack .../243-libstring-escape-perl_2010.002-2_all.deb ... 10:00:10 Unpacking libstring-escape-perl (2010.002-2) ... 10:00:11 Selecting previously unselected package libtext-levenshtein-perl. 10:00:11 Preparing to unpack .../244-libtext-levenshtein-perl_0.13-1_all.deb ... 10:00:11 Unpacking libtext-levenshtein-perl (0.13-1) ... 10:00:11 Selecting previously unselected package libjbig0:amd64. 10:00:11 Preparing to unpack .../245-libjbig0_2.1-3.1build1_amd64.deb ... 10:00:11 Unpacking libjbig0:amd64 (2.1-3.1build1) ... 10:00:12 Selecting previously unselected package libtiff5:amd64. 10:00:12 Preparing to unpack .../246-libtiff5_4.0.9-5ubuntu0.4_amd64.deb ... 10:00:12 Unpacking libtiff5:amd64 (4.0.9-5ubuntu0.4) ... 10:00:12 Selecting previously unselected package libunicode-utf8-perl. 10:00:12 Preparing to unpack .../247-libunicode-utf8-perl_0.60-1build4_amd64.deb ... 10:00:12 Unpacking libunicode-utf8-perl (0.60-1build4) ... 10:00:12 Selecting previously unselected package libwebp6:amd64. 10:00:12 Preparing to unpack .../248-libwebp6_0.6.1-2_amd64.deb ... 10:00:12 Unpacking libwebp6:amd64 (0.6.1-2) ... 10:00:12 Selecting previously unselected package libwebpdemux2:amd64. 10:00:12 Preparing to unpack .../249-libwebpdemux2_0.6.1-2_amd64.deb ... 10:00:12 Unpacking libwebpdemux2:amd64 (0.6.1-2) ... 10:00:13 Selecting previously unselected package libwebpmux3:amd64. 10:00:13 Preparing to unpack .../250-libwebpmux3_0.6.1-2_amd64.deb ... 10:00:13 Unpacking libwebpmux3:amd64 (0.6.1-2) ... 10:00:13 Selecting previously unselected package libxdelta2. 10:00:13 Preparing to unpack .../251-libxdelta2_1.1.3-9.2_amd64.deb ... 10:00:13 Unpacking libxdelta2 (1.1.3-9.2) ... 10:00:13 Selecting previously unselected package libxml-namespacesupport-perl. 10:00:13 Preparing to unpack .../252-libxml-namespacesupport-perl_1.12-1_all.deb ... 10:00:13 Unpacking libxml-namespacesupport-perl (1.12-1) ... 10:00:14 Selecting previously unselected package libxml-sax-base-perl. 10:00:14 Preparing to unpack .../253-libxml-sax-base-perl_1.09-1_all.deb ... 10:00:14 Unpacking libxml-sax-base-perl (1.09-1) ... 10:00:14 Selecting previously unselected package libxml-sax-perl. 10:00:14 Preparing to unpack .../254-libxml-sax-perl_0.99+dfsg-2ubuntu1_all.deb ... 10:00:14 Unpacking libxml-sax-perl (0.99+dfsg-2ubuntu1) ... 10:00:14 Selecting previously unselected package libxml-libxml-perl. 10:00:14 Preparing to unpack .../255-libxml-libxml-perl_2.0128+dfsg-5_amd64.deb ... 10:00:14 Unpacking libxml-libxml-perl (2.0128+dfsg-5) ... 10:00:14 Selecting previously unselected package libxml-parser-perl. 10:00:14 Preparing to unpack .../256-libxml-parser-perl_2.44-2build3_amd64.deb ... 10:00:14 Unpacking libxml-parser-perl (2.44-2build3) ... 10:00:15 Selecting previously unselected package libxml-sax-expat-perl. 10:00:15 Preparing to unpack .../257-libxml-sax-expat-perl_0.40-2_all.deb ... 10:00:15 Unpacking libxml-sax-expat-perl (0.40-2) ... 10:00:15 Selecting previously unselected package libxml-simple-perl. 10:00:15 Preparing to unpack .../258-libxml-simple-perl_2.24-1_all.deb ... 10:00:15 Unpacking libxml-simple-perl (2.24-1) ... 10:00:16 Selecting previously unselected package libyaml-libyaml-perl. 10:00:16 Preparing to unpack .../259-libyaml-libyaml-perl_0.69+repack-1_amd64.deb ... 10:00:16 Unpacking libyaml-libyaml-perl (0.69+repack-1) ... 10:00:16 Selecting previously unselected package licensecheck. 10:00:16 Preparing to unpack .../260-licensecheck_3.0.31-2_all.deb ... 10:00:16 Unpacking licensecheck (3.0.31-2) ... 10:00:16 Selecting previously unselected package patchutils. 10:00:16 Preparing to unpack .../261-patchutils_0.3.4-2_amd64.deb ... 10:00:16 Unpacking patchutils (0.3.4-2) ... 10:00:17 Selecting previously unselected package t1utils. 10:00:17 Preparing to unpack .../262-t1utils_1.41-2_amd64.deb ... 10:00:17 Unpacking t1utils (1.41-2) ... 10:00:17 Selecting previously unselected package lintian. 10:00:17 Preparing to unpack .../263-lintian_2.5.81ubuntu1_all.deb ... 10:00:17 Unpacking lintian (2.5.81ubuntu1) ... 10:00:19 Selecting previously unselected package manpages-dev. 10:00:19 Preparing to unpack .../264-manpages-dev_4.15-1_all.deb ... 10:00:19 Unpacking manpages-dev (4.15-1) ... 10:00:19 Selecting previously unselected package net-tools. 10:00:19 Preparing to unpack .../265-net-tools_1.60+git20161116.90da8a0-1ubuntu1_amd64.deb ... 10:00:19 Unpacking net-tools (1.60+git20161116.90da8a0-1ubuntu1) ... 10:00:20 Selecting previously unselected package pbzip2. 10:00:20 Preparing to unpack .../266-pbzip2_1.1.9-1build1_amd64.deb ... 10:00:20 Unpacking pbzip2 (1.1.9-1build1) ... 10:00:20 Selecting previously unselected package xdelta. 10:00:20 Preparing to unpack .../267-xdelta_1.1.3-9.2_amd64.deb ... 10:00:20 Unpacking xdelta (1.1.3-9.2) ... 10:00:20 Selecting previously unselected package xdelta3. 10:00:20 Preparing to unpack .../268-xdelta3_3.0.11-dfsg-1ubuntu1_amd64.deb ... 10:00:20 Unpacking xdelta3 (3.0.11-dfsg-1ubuntu1) ... 10:00:20 Selecting previously unselected package pristine-tar. 10:00:20 Preparing to unpack .../269-pristine-tar_1.42_amd64.deb ... 10:00:20 Unpacking pristine-tar (1.42) ... 10:00:21 Selecting previously unselected package python3-roman. 10:00:21 Preparing to unpack .../270-python3-roman_2.0.0-3_all.deb ... 10:00:21 Unpacking python3-roman (2.0.0-3) ... 10:00:21 Selecting previously unselected package python3-docutils. 10:00:21 Preparing to unpack .../271-python3-docutils_0.14+dfsg-3_all.deb ... 10:00:21 Unpacking python3-docutils (0.14+dfsg-3) ... 10:00:22 Selecting previously unselected package python3-pyparsing. 10:00:22 Preparing to unpack .../272-python3-pyparsing_2.2.0+dfsg1-2_all.deb ... 10:00:22 Unpacking python3-pyparsing (2.2.0+dfsg1-2) ... 10:00:23 Selecting previously unselected package python3-catkin-pkg-modules. 10:00:23 Preparing to unpack .../273-python3-catkin-pkg-modules_0.4.23-1_all.deb ... 10:00:23 Unpacking python3-catkin-pkg-modules (0.4.23-1) ... 10:00:24 Selecting previously unselected package python3-certifi. 10:00:24 Preparing to unpack .../274-python3-certifi_2018.1.18-2_all.deb ... 10:00:24 Unpacking python3-certifi (2018.1.18-2) ... 10:00:24 Selecting previously unselected package python3-idna. 10:00:24 Preparing to unpack .../275-python3-idna_2.6-1_all.deb ... 10:00:24 Unpacking python3-idna (2.6-1) ... 10:00:25 Selecting previously unselected package python3-olefile. 10:00:25 Preparing to unpack .../276-python3-olefile_0.45.1-1_all.deb ... 10:00:25 Unpacking python3-olefile (0.45.1-1) ... 10:00:25 Selecting previously unselected package python3-pil:amd64. 10:00:25 Preparing to unpack .../277-python3-pil_5.1.0-1ubuntu0.4_amd64.deb ... 10:00:25 Unpacking python3-pil:amd64 (5.1.0-1ubuntu0.4) ... 10:00:26 Selecting previously unselected package python3-pygments. 10:00:26 Preparing to unpack .../278-python3-pygments_2.2.0+dfsg-1_all.deb ... 10:00:26 Unpacking python3-pygments (2.2.0+dfsg-1) ... 10:00:28 Selecting previously unselected package python3-urllib3. 10:00:28 Preparing to unpack .../279-python3-urllib3_1.22-1ubuntu0.18.04.2_all.deb ... 10:00:28 Unpacking python3-urllib3 (1.22-1ubuntu0.18.04.2) ... 10:00:29 Selecting previously unselected package python3-requests. 10:00:29 Preparing to unpack .../280-python3-requests_2.18.4-2ubuntu0.1_all.deb ... 10:00:29 Unpacking python3-requests (2.18.4-2ubuntu0.1) ... 10:00:29 Selecting previously unselected package python3-rospkg-modules. 10:00:29 Preparing to unpack .../281-python3-rospkg-modules_1.2.10-1_all.deb ... 10:00:29 Unpacking python3-rospkg-modules (1.2.10-1) ... 10:00:30 Selecting previously unselected package python3-setuptools. 10:00:30 Preparing to unpack .../282-python3-setuptools_39.0.1-2_all.deb ... 10:00:30 Unpacking python3-setuptools (39.0.1-2) ... 10:00:30 Selecting previously unselected package python3-rosdistro-modules. 10:00:30 Preparing to unpack .../283-python3-rosdistro-modules_0.8.3-1_all.deb ... 10:00:30 Unpacking python3-rosdistro-modules (0.8.3-1) ... 10:00:30 Selecting previously unselected package python3-unidiff. 10:00:30 Preparing to unpack .../284-python3-unidiff_0.5.4-1_all.deb ... 10:00:30 Unpacking python3-unidiff (0.5.4-1) ... 10:00:31 Selecting previously unselected package python3-xdg. 10:00:31 Preparing to unpack .../285-python3-xdg_0.25-4ubuntu1.1_all.deb ... 10:00:32 Unpacking python3-xdg (0.25-4ubuntu1.1) ... 10:00:32 Selecting previously unselected package unzip. 10:00:32 Preparing to unpack .../286-unzip_6.0-21ubuntu1.1_amd64.deb ... 10:00:32 Unpacking unzip (6.0-21ubuntu1.1) ... 10:00:34 Selecting previously unselected package wdiff. 10:00:34 Preparing to unpack .../287-wdiff_1.2.2-2_amd64.deb ... 10:00:34 Unpacking wdiff (1.2.2-2) ... 10:00:34 Selecting previously unselected package libauthen-sasl-perl. 10:00:34 Preparing to unpack .../288-libauthen-sasl-perl_2.1600-1_all.deb ... 10:00:34 Unpacking libauthen-sasl-perl (2.1600-1) ... 10:00:34 Selecting previously unselected package python3-magic. 10:00:34 Preparing to unpack .../289-python3-magic_2%3a0.4.15-1_all.deb ... 10:00:34 Unpacking python3-magic (2:0.4.15-1) ... 10:00:35 Setting up libquadmath0:amd64 (8.4.0-1ubuntu1~18.04) ... 10:00:35 Setting up python-apt-common (1.6.5ubuntu0.5) ... 10:00:35 Setting up cowdancer (0.86) ... 10:00:35 Setting up libedit2:amd64 (3.1-20170329-1) ... 10:00:35 Setting up libgomp1:amd64 (8.4.0-1ubuntu1~18.04) ... 10:00:37 Setting up libatomic1:amd64 (8.4.0-1ubuntu1~18.04) ... 10:00:37 Setting up libapt-inst2.0:amd64 (1.6.12ubuntu0.2) ... 10:00:37 Setting up manpages (4.15-1) ... 10:00:38 Setting up git-man (1:2.17.1-1ubuntu0.7) ... 10:00:38 Setting up libicu60:amd64 (60.2-3ubuntu3.1) ... 10:00:38 Setting up libcc1-0:amd64 (8.4.0-1ubuntu1~18.04) ... 10:00:38 Setting up less (487-0.1) ... 10:00:39 Setting up python3-roman (2.0.0-3) ... 10:00:40 Setting up make (4.1-9.1ubuntu1) ... 10:00:40 Setting up python3-apt (1.6.5ubuntu0.5) ... 10:00:40 Setting up libapt-pkg-perl (0.1.33build1) ... 10:00:40 Setting up libssl1.0.0:amd64 (1.0.2n-1ubuntu5.6) ... 10:00:41 Setting up libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... 10:00:41 Setting up python3-olefile (0.45.1-1) ... 10:00:41 Setting up sudo (1.8.21p2-3ubuntu1.4) ... 10:00:42 Setting up iso-codes (3.79-1) ... 10:00:42 Setting up libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ... 10:00:42 Setting up liblcms2-2:amd64 (2.9-1ubuntu0.1) ... 10:00:42 Setting up libjbig0:amd64 (2.1-3.1build1) ... 10:00:42 Setting up libsigsegv2:amd64 (2.12-1) ... 10:00:42 Setting up libeatmydata1:amd64 (105-6) ... 10:00:42 Setting up perl-openssl-defaults:amd64 (3build1) ... 10:00:42 Setting up libpsl5:amd64 (0.19.1-5build1) ... 10:00:42 Setting up tzdata (2021a-0ubuntu0.18.04) ... 10:00:44 10:00:44 Current default time zone: 'Etc/UTC' 10:00:44 Local time is now: Fri Mar 5 10:00:44 UTC 2021. 10:00:44 Universal Time is now: Fri Mar 5 10:00:44 UTC 2021. 10:00:44 Run 'dpkg-reconfigure tzdata' if you wish to change it. 10:00:44 10:00:44 Setting up libtsan0:amd64 (8.4.0-1ubuntu1~18.04) ... 10:00:44 Setting up groff-base (1.22.3-10) ... 10:00:44 Setting up libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.6) ... 10:00:44 No schema files found: doing nothing. 10:00:44 Setting up python3-magic (2:0.4.15-1) ... 10:00:45 Setting up python3-idna (2.6-1) ... 10:00:45 Setting up python3-xdg (0.25-4ubuntu1.1) ... 10:00:46 Setting up python3-six (1.11.0-2) ... 10:00:47 Setting up unzip (6.0-21ubuntu1.1) ... 10:00:47 Setting up linux-libc-dev:amd64 (4.15.0-136.140) ... 10:00:47 Setting up libmpfr6:amd64 (4.0.1-1) ... 10:00:47 Setting up python3-pyparsing (2.2.0+dfsg1-2) ... 10:00:48 Setting up dctrl-tools (2.24-2build1) ... 10:00:48 Setting up distro-info-data (0.37ubuntu0.9) ... 10:00:48 Setting up gettext-base (0.19.8.1-6ubuntu0.3) ... 10:00:49 Setting up libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.4) ... 10:00:49 Setting up libpipeline1:amd64 (1.5.0-1) ... 10:00:49 Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... 10:00:49 Setting up perl-modules-5.26 (5.26.1-6ubuntu0.5) ... 10:00:49 Setting up m4 (1.4.18-1) ... 10:00:49 Setting up sgml-base (1.29) ... 10:00:49 Setting up python3-pkg-resources (39.0.1-2) ... 10:00:50 Setting up libgdbm5:amd64 (1.14.1-6) ... 10:00:50 Setting up lsb-release (9.20170808ubuntu1) ... 10:00:50 Setting up at (3.1.20-3.1ubuntu2) ... 10:00:51 invoke-rc.d: could not determine current runlevel 10:00:51 invoke-rc.d: policy-rc.d denied execution of start. 10:00:51 Setting up libbsd0:amd64 (0.8.7-1ubuntu0.1) ... 10:00:51 Setting up libkrb5support0:amd64 (1.16-2ubuntu0.2) ... 10:00:51 Setting up ucf (3.0038) ... 10:00:51 Setting up libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.3) ... 10:00:51 Setting up libfreetype6:amd64 (2.8.1-2ubuntu2.1) ... 10:00:51 Setting up liblsan0:amd64 (8.4.0-1ubuntu1~18.04) ... 10:00:51 Setting up libcroco3:amd64 (0.6.12-2) ... 10:00:52 Setting up libgpgme11:amd64 (1.10.0-1ubuntu2) ... 10:00:52 Setting up gcc-7-base:amd64 (7.5.0-3ubuntu1~18.04) ... 10:00:52 Setting up binutils-common:amd64 (2.30-21ubuntu1~18.04.5) ... 10:00:52 Setting up libmpx2:amd64 (8.4.0-1ubuntu1~18.04) ... 10:00:52 Setting up libyaml-0-2:amd64 (0.1.7-2ubuntu3) ... 10:00:52 Setting up pbzip2 (1.1.9-1build1) ... 10:00:52 Setting up patch (2.7.6-2ubuntu1.1) ... 10:00:52 Setting up libglib2.0-data (2.56.4-0ubuntu0.18.04.6) ... 10:00:52 Setting up libunwind8:amd64 (1.2.1-8) ... 10:00:52 Setting up krb5-locales (1.16-2ubuntu0.2) ... 10:00:53 Setting up publicsuffix (20180223.1310-1) ... 10:00:54 Setting up autotools-dev (20180224.1) ... 10:00:54 Setting up python3-chardet (3.0.4-1) ... 10:00:55 Setting up t1utils (1.41-2) ... 10:00:55 Setting up libfakeroot:amd64 (1.22-2ubuntu1) ... 10:00:55 Setting up libltdl7:amd64 (2.4.6-2) ... 10:00:55 Setting up openssl (1.1.1-1ubuntu2.1~18.04.8) ... 10:00:55 Setting up wget (1.19.4-1ubuntu2.2) ... 10:00:55 Setting up liblocale-gettext-perl (1.07-3build2) ... 10:00:55 Setting up wdiff (1.2.2-2) ... 10:00:56 Setting up shared-mime-info (1.9-2) ... 10:01:08 Setting up python3-urllib3 (1.22-1ubuntu0.18.04.2) ... 10:01:09 Setting up python3-unidiff (0.5.4-1) ... 10:01:09 Setting up libmpc3:amd64 (1.1.0-1) ... 10:01:09 Setting up libc-dev-bin (2.27-3ubuntu1.4) ... 10:01:09 Setting up debootstrap (1.0.95ubuntu0.8) ... 10:01:10 Setting up libxdmcp6:amd64 (1:1.1.2-3) ... 10:01:10 Setting up xml-core (0.18) ... 10:01:11 Setting up libgdbm-compat4:amd64 (1.14.1-6) ... 10:01:11 Setting up libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... 10:01:11 Setting up bsdmainutils (11.1.2ubuntu1) ... 10:01:11 update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode 10:01:11 update-alternatives: warning: skip creation of /usr/share/man/man1/write.1.gz because associated file /usr/share/man/man1/bsd-write.1.gz (of link group write) doesn't exist 10:01:11 update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode 10:01:11 update-alternatives: warning: skip creation of /usr/share/man/man1/from.1.gz because associated file /usr/share/man/man1/bsd-from.1.gz (of link group from) doesn't exist 10:01:11 Setting up python3-setuptools (39.0.1-2) ... 10:01:12 Setting up net-tools (1.60+git20161116.90da8a0-1ubuntu1) ... 10:01:12 Setting up ca-certificates (20210119~18.04.1) ... 10:01:14 Updating certificates in /etc/ssl/certs... 10:01:20 129 added, 0 removed; done. 10:01:20 Setting up manpages-dev (4.15-1) ... 10:01:20 Setting up libc6-dev:amd64 (2.27-3ubuntu1.4) ... 10:01:20 Setting up xdg-user-dirs (0.17-1ubuntu1) ... 10:01:20 Setting up python3-debian (0.1.32) ... 10:01:21 Setting up libitm1:amd64 (8.4.0-1ubuntu1~18.04) ... 10:01:21 Setting up libx11-data (2:1.6.4-3ubuntu0.3) ... 10:01:21 Setting up diffstat (1.61-1build1) ... 10:01:21 Setting up libxau6:amd64 (1:1.0.8-1ubuntu1) ... 10:01:21 Setting up autopoint (0.19.8.1-6ubuntu0.3) ... 10:01:21 Setting up python3-dateutil (2.6.1-1) ... 10:01:22 Setting up netbase (5.4) ... 10:01:22 Setting up xdelta3 (3.0.11-dfsg-1ubuntu1) ... 10:01:22 Setting up libwebp6:amd64 (0.6.1-2) ... 10:01:22 Setting up libjpeg8:amd64 (8c-2ubuntu8) ... 10:01:22 Setting up libisl19:amd64 (0.19-1) ... 10:01:22 Setting up python3-pygments (2.2.0+dfsg-1) ... 10:01:23 Setting up libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... 10:01:24 10:01:24 Creating config file /etc/papersize with new version 10:01:24 Setting up python3-yaml (3.12-1build2) ... 10:01:24 Setting up strace (4.21-1ubuntu1) ... 10:01:24 Setting up eatmydata (105-6) ... 10:01:24 Setting up libk5crypto3:amd64 (1.16-2ubuntu0.2) ... 10:01:24 Setting up libpaper-utils (1.1.24+nmu5ubuntu1) ... 10:01:24 Setting up libxdelta2 (1.1.3-9.2) ... 10:01:24 Setting up libltdl-dev:amd64 (2.4.6-2) ... 10:01:24 Setting up libasan4:amd64 (7.5.0-3ubuntu1~18.04) ... 10:01:24 Setting up gettext (0.19.8.1-6ubuntu0.3) ... 10:01:24 Setting up libbinutils:amd64 (2.30-21ubuntu1~18.04.5) ... 10:01:24 Setting up libcilkrts5:amd64 (7.5.0-3ubuntu1~18.04) ... 10:01:24 Setting up libubsan0:amd64 (7.5.0-3ubuntu1~18.04) ... 10:01:25 Setting up python3-certifi (2018.1.18-2) ... 10:01:25 Setting up libtiff5:amd64 (4.0.9-5ubuntu0.4) ... 10:01:25 Setting up python3-gpg (1.10.0-1ubuntu2) ... 10:01:25 Setting up fakeroot (1.22-2ubuntu1) ... 10:01:26 update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode 10:01:26 update-alternatives: warning: skip creation of /usr/share/man/man1/fakeroot.1.gz because associated file /usr/share/man/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist 10:01:26 update-alternatives: warning: skip creation of /usr/share/man/man1/faked.1.gz because associated file /usr/share/man/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist 10:01:26 update-alternatives: warning: skip creation of /usr/share/man/es/man1/fakeroot.1.gz because associated file /usr/share/man/es/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist 10:01:26 update-alternatives: warning: skip creation of /usr/share/man/es/man1/faked.1.gz because associated file /usr/share/man/es/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist 10:01:26 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/fakeroot.1.gz because associated file /usr/share/man/fr/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist 10:01:26 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/faked.1.gz because associated file /usr/share/man/fr/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist 10:01:26 update-alternatives: warning: skip creation of /usr/share/man/sv/man1/fakeroot.1.gz because associated file /usr/share/man/sv/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist 10:01:26 update-alternatives: warning: skip creation of /usr/share/man/sv/man1/faked.1.gz because associated file /usr/share/man/sv/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist 10:01:26 Setting up libgcc-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... 10:01:26 Setting up cpp-7 (7.5.0-3ubuntu1~18.04) ... 10:01:26 Setting up libstdc++-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... 10:01:26 Setting up libperl5.26:amd64 (5.26.1-6ubuntu0.5) ... 10:01:27 Setting up libwebpmux3:amd64 (0.6.1-2) ... 10:01:27 Setting up dput (1.0.1ubuntu1) ... 10:01:27 Setting up python3-requests (2.18.4-2ubuntu0.1) ... 10:01:28 Setting up libwebpdemux2:amd64 (0.6.1-2) ... 10:01:28 Setting up man-db (2.8.3-2ubuntu0.1) ... 10:01:28 Building database of manual pages ... 10:01:29 Setting up libkrb5-3:amd64 (1.16-2ubuntu0.2) ... 10:01:29 Setting up xdelta (1.1.3-9.2) ... 10:01:29 Setting up libxcb1:amd64 (1.13-2~ubuntu18.04) ... 10:01:29 Setting up binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.5) ... 10:01:29 Setting up cpp (4:7.4.0-1ubuntu2.3) ... 10:01:30 Setting up python3-pil:amd64 (5.1.0-1ubuntu0.4) ... 10:01:30 Setting up libx11-6:amd64 (2:1.6.4-3ubuntu0.3) ... 10:01:30 Setting up libxmuu1:amd64 (2:1.1.2-2) ... 10:01:30 Setting up libgssapi-krb5-2:amd64 (1.16-2ubuntu0.2) ... 10:01:31 Setting up perl (5.26.1-6ubuntu0.5) ... 10:01:31 Setting up libfile-chdir-perl (0.1008-1) ... 10:01:31 Setting up libsys-hostname-long-perl (1.5-1) ... 10:01:31 Setting up libfile-fcntllock-perl (0.22-3build2) ... 10:01:31 Setting up libtext-glob-perl (0.10-1) ... 10:01:31 Setting up intltool-debian (0.35.0+20060710.4) ... 10:01:31 Setting up libxml-sax-base-perl (1.09-1) ... 10:01:31 Setting up libpackage-stash-xs-perl (0.28-3build2) ... 10:01:31 Setting up libstrictures-perl (2.000003-1) ... 10:01:31 Setting up liblwp-mediatypes-perl (6.02-1) ... 10:01:31 Setting up libmail-sendmail-perl (0.80-1) ... 10:01:31 Setting up pristine-tar (1.42) ... 10:01:31 Setting up libsocket6-perl (0.27-1build2) ... 10:01:31 Setting up patchutils (0.3.4-2) ... 10:01:31 Setting up liburi-perl (1.73-1) ... 10:01:31 Setting up libdata-dump-perl (1.23-1) ... 10:01:31 Setting up libdigest-hmac-perl (1.03+dfsg-1) ... 10:01:31 Setting up libio-string-perl (1.08-3) ... 10:01:31 Setting up libalgorithm-diff-perl (1.19.03-1) ... 10:01:32 Setting up libclone-perl (0.39-1) ... 10:01:32 Setting up libclass-xsaccessor-perl (1.19-2build8) ... 10:01:32 Setting up libnet-http-perl (6.17-1) ... 10:01:32 Setting up libnumber-compare-perl (0.03-1) ... 10:01:32 Setting up binutils (2.30-21ubuntu1~18.04.5) ... 10:01:32 Setting up libunicode-utf8-perl (0.60-1build4) ... 10:01:32 Setting up libparams-util-perl (1.07-3build3) ... 10:01:32 Setting up libsub-name-perl (0.21-1build1) ... 10:01:32 Setting up openssh-client (1:7.6p1-4ubuntu0.3) ... 10:01:33 Setting up libyaml-libyaml-perl (0.69+repack-1) ... 10:01:33 Setting up libsub-quote-perl (2.005000-1) ... 10:01:33 Setting up libfcgi-perl (0.78-2build1) ... 10:01:33 Setting up libwww-robotrules-perl (6.01-1) ... 10:01:33 Setting up libauthen-sasl-perl (2.1600-1) ... 10:01:33 Setting up libclass-accessor-perl (0.51-1) ... 10:01:33 Setting up libsort-key-perl (1.33-2) ... 10:01:33 Setting up libhtml-tagset-perl (3.20-3) ... 10:01:34 Setting up libpath-tiny-perl (0.104-1) ... 10:01:34 Setting up libnet-domain-tld-perl (1.75-1) ... 10:01:34 Setting up libsub-install-perl (0.928-1) ... 10:01:34 Setting up libdata-optlist-perl (0.110-1) ... 10:01:34 Setting up libio-stringy-perl (2.111-2) ... 10:01:34 Setting up libsub-exporter-progressive-perl (0.001013-1) ... 10:01:34 Setting up libtry-tiny-perl (0.30-1) ... 10:01:34 Setting up libclass-method-modifiers-perl (2.12-1) ... 10:01:34 Setting up libfont-afm-perl (1.20-2) ... 10:01:34 Setting up libregexp-pattern-license-perl (3.0.31-3) ... 10:01:34 Setting up libarchive-zip-perl (1.60-1ubuntu0.1) ... 10:01:34 Setting up libxext6:amd64 (2:1.3.3-1) ... 10:01:34 Setting up po-debconf (1.0.20) ... 10:01:34 Setting up libdistro-info-perl (0.18ubuntu0.18.04.1) ... 10:01:34 Setting up libio-socket-inet6-perl (2.72-2) ... 10:01:34 Setting up libxml-namespacesupport-perl (1.12-1) ... 10:01:34 Setting up libio-pty-perl (1:1.08-1.1build4) ... 10:01:34 Setting up libfile-which-perl (1.21-1) ... 10:01:35 Setting up libencode-locale-perl (1.05-1) ... 10:01:35 Setting up libperlio-gzip-perl (0.19-1build3) ... 10:01:35 Setting up libtext-levenshtein-perl (0.13-1) ... 10:01:35 Setting up gcc-7 (7.5.0-3ubuntu1~18.04) ... 10:01:35 Setting up liberror-perl (0.17025-1) ... 10:01:35 Setting up libvariable-magic-perl (0.62-1) ... 10:01:35 Setting up libtimedate-perl (2.3000-2) ... 10:01:35 Setting up libnet-ip-perl (1.26-1) ... 10:01:35 Setting up librole-tiny-perl (2.000006-1) ... 10:01:35 Setting up libnet-ssleay-perl (1.84-1ubuntu0.2) ... 10:01:35 Setting up g++-7 (7.5.0-3ubuntu1~18.04) ... 10:01:35 Setting up libcurl3-gnutls:amd64 (7.58.0-2ubuntu3.12) ... 10:01:35 Setting up libfile-homedir-perl (1.002-1) ... 10:01:35 Setting up libipc-system-simple-perl (1.25-4) ... 10:01:35 Setting up libfile-basedir-perl (0.07-1) ... 10:01:35 Setting up libstring-escape-perl (2010.002-2) ... 10:01:35 Setting up libb-hooks-op-check-perl (0.22-1) ... 10:01:35 Setting up libio-html-perl (1.001-1) ... 10:01:35 Setting up libexporter-tiny-perl (1.000000-2) ... 10:01:35 Setting up libcurl4:amd64 (7.58.0-2ubuntu3.12) ... 10:01:35 Setting up libarchive-cpio-perl (0.10-1) ... 10:01:35 Setting up libdpkg-perl (1.19.0.5ubuntu2.3) ... 10:01:35 Setting up libnumber-range-perl (0.12-1) ... 10:01:36 Setting up liblist-compare-perl (0.53-1) ... 10:01:36 Setting up autoconf (2.69-11) ... 10:01:36 Setting up libpath-iterator-rule-perl (1.009-1) ... 10:01:36 Setting up gcc (4:7.4.0-1ubuntu2.3) ... 10:01:36 Setting up libnet-dns-perl (1.10-2) ... 10:01:36 Setting up libsub-identify-perl (0.14-1) ... 10:01:36 Setting up libpod-constants-perl (0.19-1) ... 10:01:37 Setting up libsort-versions-perl (1.62-1) ... 10:01:37 Setting up libio-socket-ssl-perl (2.060-3~ubuntu18.04.1) ... 10:01:37 Setting up libdynaloader-functions-perl (0.003-1) ... 10:01:37 Setting up libsub-exporter-perl (0.987-1) ... 10:01:37 Setting up xauth (1:1.0.10-1) ... 10:01:37 Setting up libalgorithm-merge-perl (0.08-3) ... 10:01:37 Setting up dpkg-dev (1.19.0.5ubuntu2.3) ... 10:01:38 Setting up libalgorithm-diff-xs-perl (0.04-5) ... 10:01:38 Setting up libstring-copyright-perl (0.003005-1) ... 10:01:41 Setting up libhtml-parser-perl (3.72-3build1) ... 10:01:41 Setting up automake (1:1.15.1-3ubuntu2) ... 10:01:41 update-alternatives: using /usr/bin/automake-1.15 to provide /usr/bin/automake (automake) in auto mode 10:01:41 update-alternatives: warning: skip creation of /usr/share/man/man1/automake.1.gz because associated file /usr/share/man/man1/automake-1.15.1.gz (of link group automake) doesn't exist 10:01:41 update-alternatives: warning: skip creation of /usr/share/man/man1/aclocal.1.gz because associated file /usr/share/man/man1/aclocal-1.15.1.gz (of link group automake) doesn't exist 10:01:41 Setting up libipc-run-perl (0.96-1) ... 10:01:41 Setting up libcgi-pm-perl (4.38-1) ... 10:01:42 Setting up libdevel-globaldestruction-perl (0.14-1) ... 10:01:42 Setting up libparse-debianchangelog-perl (1.2.0-12) ... 10:01:42 Setting up g++ (4:7.4.0-1ubuntu2.3) ... 10:01:42 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 10:01:42 update-alternatives: warning: skip creation of /usr/share/man/man1/c++.1.gz because associated file /usr/share/man/man1/g++.1.gz (of link group c++) doesn't exist 10:01:42 Setting up pbuilder (0.229.1) ... 10:01:48 Setting up git (1:2.17.1-1ubuntu0.7) ... 10:01:49 Setting up libfile-stripnondeterminism-perl (0.040-1.1~build1) ... 10:01:51 Setting up libxml-sax-perl (0.99+dfsg-2ubuntu1) ... 10:01:51 update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::PurePerl with priority 10... 10:01:51 update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... 10:01:51 10:01:51 Creating config file /etc/perl/XML/SAX/ParserDetails.ini with new version 10:01:52 Setting up liblist-moreutils-perl (0.416-1build3) ... 10:01:52 Setting up libtool (2.4.6-2) ... 10:01:52 Setting up libgit-wrapper-perl (0.047-1) ... 10:01:54 Setting up libhttp-date-perl (6.02-1) ... 10:01:57 Setting up libnet-smtp-ssl-perl (1.04-1) ... 10:01:57 Setting up curl (7.58.0-2ubuntu3.12) ... 10:01:57 Setting up build-essential (12.4ubuntu1) ... 10:01:57 Setting up cowbuilder (0.86) ... 10:01:58 Setting up libdevel-callchecker-perl (0.007-2build1) ... 10:01:58 Setting up devscripts (2.17.12ubuntu1.1) ... 10:02:00 Setting up libcgi-fast-perl (1:2.13-1) ... 10:02:00 Setting up libhtml-tree-perl (5.07-1) ... 10:02:00 Setting up libfile-listing-perl (6.04-1) ... 10:02:00 Setting up libhttp-message-perl (6.14-1) ... 10:02:01 Setting up libxml-libxml-perl (2.0128+dfsg-5) ... 10:02:01 update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX::Parser with priority 50... 10:02:02 update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX with priority 50... 10:02:02 update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... 10:02:02 Replacing config file /etc/perl/XML/SAX/ParserDetails.ini with new version 10:02:02 Setting up libparams-classify-perl (0.015-1) ... 10:02:02 Setting up libhttp-negotiate-perl (6.00-2) ... 10:02:04 Setting up libmailtools-perl (2.18-1) ... 10:02:04 Setting up libhtml-format-perl (2.12-1) ... 10:02:05 Setting up libemail-valid-perl (1.202-1) ... 10:02:05 Setting up libhttp-cookies-perl (6.04-1) ... 10:02:05 Setting up libmodule-runtime-perl (0.016-1) ... 10:02:05 Setting up git-buildpackage (0.9.8) ... 10:02:06 Setting up libhttp-daemon-perl (6.01-1) ... 10:02:07 Setting up libxml-simple-perl (2.24-1) ... 10:02:07 Setting up lintian (2.5.81ubuntu1) ... 10:02:07 Setting up libhtml-form-perl (6.03-1) ... 10:02:07 Setting up libimport-into-perl (1.002005-1) ... 10:02:08 Setting up libmodule-implementation-perl (0.09-1) ... 10:02:08 Setting up libparams-validate-perl (1.29-1) ... 10:02:08 Setting up libmoo-perl (2.003004-1) ... 10:02:09 Setting up libb-hooks-endofscope-perl (0.21-1) ... 10:02:13 Setting up libpackage-stash-perl (0.37-1) ... 10:02:13 Setting up libgetopt-long-descriptive-perl (0.102-1) ... 10:02:16 Setting up libnamespace-clean-perl (0.27-1) ... 10:02:16 Setting up licensecheck (3.0.31-2) ... 10:02:16 Setting up libwww-perl (6.31-1ubuntu0.1) ... 10:02:16 Setting up debhelper (11.1.6ubuntu2) ... 10:02:16 Setting up dh-autoreconf (17) ... 10:02:17 Setting up liblwp-protocol-https-perl (6.07-2) ... 10:02:17 Setting up dh-strip-nondeterminism (0.040-1.1~build1) ... 10:02:17 Setting up libxml-parser-perl (2.44-2build3) ... 10:02:17 Setting up libxml-sax-expat-perl (0.40-2) ... 10:02:17 update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::Expat with priority 50... 10:02:17 update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... 10:02:18 Replacing config file /etc/perl/XML/SAX/ParserDetails.ini with new version 10:02:18 Processing triggers for mime-support (3.60ubuntu1) ... 10:02:19 Processing triggers for libc-bin (2.27-3ubuntu1.4) ... 10:02:20 Processing triggers for sgml-base (1.29) ... 10:02:20 Setting up docutils-common (0.14+dfsg-3) ... 10:02:20 Processing triggers for sgml-base (1.29) ... 10:02:21 Setting up python3-docutils (0.14+dfsg-3) ... 10:02:21 update-alternatives: using /usr/share/docutils/scripts/python3/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode 10:02:21 update-alternatives: using /usr/share/docutils/scripts/python3/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode 10:02:21 update-alternatives: using /usr/share/docutils/scripts/python3/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode 10:02:21 update-alternatives: using /usr/share/docutils/scripts/python3/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode 10:02:21 update-alternatives: using /usr/share/docutils/scripts/python3/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode 10:02:21 update-alternatives: using /usr/share/docutils/scripts/python3/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode 10:02:21 update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode 10:02:21 update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode 10:02:21 update-alternatives: using /usr/share/docutils/scripts/python3/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode 10:02:21 update-alternatives: using /usr/share/docutils/scripts/python3/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode 10:02:21 update-alternatives: using /usr/share/docutils/scripts/python3/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode 10:02:21 update-alternatives: using /usr/share/docutils/scripts/python3/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode 10:02:21 update-alternatives: using /usr/share/docutils/scripts/python3/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode 10:02:22 Setting up python3-catkin-pkg-modules (0.4.23-1) ... 10:02:23 Setting up python3-rospkg-modules (1.2.10-1) ... 10:02:23 Setting up python3-rosdistro-modules (0.8.3-1) ... 10:02:24 Processing triggers for ca-certificates (20210119~18.04.1) ... 10:02:24 Updating certificates in /etc/ssl/certs... 10:02:26 0 added, 0 removed; done. 10:02:26 Running hooks in /etc/ca-certificates/update.d... 10:02:26 done. 10:02:26 Invoking 'apt-get clean' 10:03:39 ---> 15ccd156e51a 10:03:40 Removing intermediate container 3919603494e9 10:03:40 Removing intermediate container f33ca8cf131c 10:03:40 Removing intermediate container 7878d222b527 10:03:40 Removing intermediate container a17468579b7f 10:03:40 Error removing intermediate container 10cd1b2bc890: nosuchcontainer: no such id: 10cd1b2bc890650409bfdbc4c6da0e2d40f220e279b31e2ea6ec91bef858f2de 10:03:40 Step 23 : COPY .git-credentials /home/buildfarm/.git-credentials 10:04:57 ---> 5dad9cf65b78 10:05:00 Removing intermediate container 41ef23bdac67 10:05:00 Removing intermediate container c83ef6e90002 10:05:00 Error removing intermediate container 10cd1b2bc890: nosuchcontainer: no such id: 10cd1b2bc890650409bfdbc4c6da0e2d40f220e279b31e2ea6ec91bef858f2de 10:05:00 Step 24 : RUN chmod 600 /home/buildfarm/.git-credentials 10:05:01 ---> Running in 2c54d91ed39f 10:05:03 ---> 978db7e2492f 10:05:06 Removing intermediate container 797012254acb 10:05:06 Removing intermediate container 2c54d91ed39f 10:05:06 Error removing intermediate container f0d068cad864: nosuchcontainer: no such id: f0d068cad8645910bb3f538c31faec264215a9c99e957335092891c230421e5a 10:05:06 Step 25 : RUN chown buildfarm /home/buildfarm/.git-credentials 10:05:06 ---> Running in 095f963d8261 10:05:08 ---> 4491ddd79388 10:05:08 Error removing intermediate container f0d068cad864: nosuchcontainer: no such id: f0d068cad8645910bb3f538c31faec264215a9c99e957335092891c230421e5a 10:05:08 Step 26 : USER buildfarm 10:05:08 ---> Running in 33d76b6afd63 10:05:09 ---> 3c59f11d00a2 10:05:09 Removing intermediate container 095f963d8261 10:05:09 Removing intermediate container 33d76b6afd63 10:05:09 Error removing intermediate container 10cd1b2bc890: nosuchcontainer: no such id: 10cd1b2bc890650409bfdbc4c6da0e2d40f220e279b31e2ea6ec91bef858f2de 10:05:09 Step 27 : RUN git config --global credential.helper 'store' 10:05:09 ---> Running in 3beadbe3f62e 10:05:11 ---> 0f44ec38ac20 10:05:11 Error removing intermediate container 3beadbe3f62e: rmdriverfs: Driver aufs failed to remove root filesystem 3beadbe3f62e8529aefb98c70f805d1ee975a867a574e448a367fe7ac62dba79: rename /var/lib/docker/aufs/mnt/3beadbe3f62e8529aefb98c70f805d1ee975a867a574e448a367fe7ac62dba79 /var/lib/docker/aufs/mnt/3beadbe3f62e8529aefb98c70f805d1ee975a867a574e448a367fe7ac62dba79-removing: device or resource busy 10:05:11 Step 28 : RUN git config --global http.sslVerify false 10:05:11 ---> Running in 2a5972480530 10:05:13 ---> d09c863eb8a1 10:05:13 Removing intermediate container 2a5972480530 10:05:13 Error removing intermediate container f0d068cad864: nosuchcontainer: no such id: f0d068cad8645910bb3f538c31faec264215a9c99e957335092891c230421e5a 10:05:13 Step 29 : ENTRYPOINT sh -c 10:05:14 ---> Running in 8b555e502fd0 10:05:14 ---> 131104c79179 10:05:14 Error removing intermediate container f0d068cad864: nosuchcontainer: no such id: f0d068cad8645910bb3f538c31faec264215a9c99e957335092891c230421e5a 10:05:14 Step 30 : CMD PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/get_sources.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic kobuki_gazebo_plugins ubuntu bionic http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --source-dir /tmp/sourcedeb/source && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/build_sourcedeb.py ubuntu bionic --source-dir /tmp/sourcedeb/source 10:05:14 ---> Running in 0ee70399da10 10:05:15 ---> 8f5853c51f18 10:05:15 Error removing intermediate container 10cd1b2bc890: nosuchcontainer: no such id: 10cd1b2bc890650409bfdbc4c6da0e2d40f220e279b31e2ea6ec91bef858f2de 10:05:15 Successfully built 8f5853c51f18 10:05:15 + echo # END SECTION 10:05:15 # END SECTION10:05:40 [Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source] $ /bin/sh -xe /tmp/jenkins1798852890921097425.sh 10:05:40 + [ false = false ] 10:05:40 + echo # BEGIN SECTION: Clean up to save disk space on agents10. Run Dockerfile - generate sourcedebHide Details
10:05:15 # BEGIN SECTION: Run Dockerfile - generate sourcedeb 10:05:15 + rm -fr /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/sourcedeb 10:05:15 + mkdir -p /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/sourcedeb/source 10:05:15 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/docker_sourcedeb/docker.cid -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Msrc_uB__kobuki_gazebo_plugins__ubuntu_bionic__source/sourcedeb:/tmp/sourcedeb sourcedeb.melodic_ubuntu_bionic_kobuki_gazebo_plugins10.1. get sourcesHide Details
10:05:16 # BEGIN SUBSECTION: get sources 10:05:27 Invoking 'git clone --branch debian/ros-melodic-kobuki-gazebo-plugins_3.0.2-1_bionic --depth 1 --no-single-branch https://github.com/strands-project-releases/lcas_teaching.git /tmp/sourcedeb/source' 10:05:27 Cloning into '/tmp/sourcedeb/source'... 10:05:32 Note: checking out 'b41400e9a064028342a39f356ea46be7e74c635e'. 10:05:32 10:05:32 You are in 'detached HEAD' state. You can look around, make experimental 10:05:32 changes and commit them, and you can discard any commits you make in this 10:05:32 state without impacting any branches by performing another checkout. 10:05:32 10:05:32 If you want to create a new branch to retain commits you create, you may 10:05:32 do so (now or later) by using -b with the checkout command again. Example: 10:05:32 10:05:32 git checkout -b <new-branch-name> 10:05:32 10:05:32 No tarball found at 'http://10.210.9.154/ubuntu/building/pool/main/r/ros-melodic-kobuki-gazebo-plugins/ros-melodic-kobuki-gazebo-plugins_3.0.2.orig.tar.gz' 10:05:32 No tarball found at 'http://packages.ros.org/ros/ubuntu/pool/main/r/ros-melodic-kobuki-gazebo-plugins/ros-melodic-kobuki-gazebo-plugins_3.0.2.orig.tar.gz' 10:05:32 Package 'kobuki_gazebo_plugins' version: 3.0.2-1bionic 10:05:32 Package maintainer emails: marc@hanheide.net 10:05:32 # END SUBSECTION10:05:40 + echo # END SECTION 10:05:40 # END SECTION10.2. build sourcedebHide Details
10:05:32 # BEGIN SUBSECTION: build sourcedeb 10:05:32 Invoking 'gbp buildpackage --git-ignore-new --git-ignore-branch -S -d -ui -us -uc --lintian-opts --suppress-tags newer-standards-version' in '/tmp/sourcedeb/source' 10:05:33 gbp:warning: Old style config section [git-buildpackage] found please rename to [buildpackage] 10:05:33 gbp:info: Creating ros-melodic-kobuki-gazebo-plugins_3.0.2.orig.tar.gz from 'release/melodic/kobuki_gazebo_plugins/3.0.2-1' 10:05:33 gbp:info: Performing the build 10:05:33 dpkg-buildpackage -rfakeroot -us -uc -ui -i -I -S -d 10:05:34 dpkg-buildpackage: info: source package ros-melodic-kobuki-gazebo-plugins 10:05:34 dpkg-buildpackage: info: source version 3.0.2-1bionic 10:05:34 dpkg-buildpackage: info: source distribution bionic 10:05:34 dpkg-buildpackage: info: source changed by Marc Hanheide <marc@hanheide.net> 10:05:34 dpkg-source -i -I --before-build source 10:05:34 dpkg-source: info: using options from source/debian/source/options: --auto-commit 10:05:34 fakeroot debian/rules clean 10:05:35 dh clean -v --buildsystem=cmake 10:05:35 dh_testdir -O-v -O--buildsystem=cmake 10:05:35 dh_auto_clean -O-v -O--buildsystem=cmake 10:05:35 dh_clean -O-v -O--buildsystem=cmake 10:05:35 rm -f debian/debhelper-build-stamp 10:05:35 rm -rf debian/.debhelper/ 10:05:35 rm -f -- debian/ros-melodic-kobuki-gazebo-plugins.substvars debian/files 10:05:35 rm -fr -- debian/ros-melodic-kobuki-gazebo-plugins/ debian/tmp/ 10:05:35 find . \( \( \ 10:05:35 \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS -o -path .\*/.pc -o -path .\*/_darcs \) -prune -o -type f -a \ 10:05:35 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 10:05:35 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 10:05:35 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 10:05:35 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 10:05:35 \) -exec rm -f {} + \) -o \ 10:05:35 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 10:05:35 dpkg-source -i -I -b source 10:05:35 dpkg-source: info: using options from source/debian/source/options: --auto-commit 10:05:35 dpkg-source: info: using source format '3.0 (quilt)' 10:05:35 dpkg-source: info: building ros-melodic-kobuki-gazebo-plugins using existing ./ros-melodic-kobuki-gazebo-plugins_3.0.2.orig.tar.gz 10:05:35 dpkg-source: info: building ros-melodic-kobuki-gazebo-plugins in ros-melodic-kobuki-gazebo-plugins_3.0.2-1bionic.debian.tar.xz 10:05:36 dpkg-source: info: building ros-melodic-kobuki-gazebo-plugins in ros-melodic-kobuki-gazebo-plugins_3.0.2-1bionic.dsc 10:05:36 dpkg-genbuildinfo --build=source 10:05:36 dpkg-genchanges --build=source >../ros-melodic-kobuki-gazebo-plugins_3.0.2-1bionic_source.changes 10:05:36 dpkg-genchanges: info: including full source code in upload 10:05:36 dpkg-source -i -I --after-build source 10:05:36 dpkg-source: info: using options from source/debian/source/options: --auto-commit 10:05:36 dpkg-buildpackage: info: full upload (original source is included) 10:05:36 Now running lintian --suppress-tags newer-standards-version ros-melodic-kobuki-gazebo-plugins_3.0.2-1bionic_source.changes ... 10:05:39 W: ros-melodic-kobuki-gazebo-plugins source: no-debian-copyright 10:05:39 W: ros-melodic-kobuki-gazebo-plugins source: ancient-standards-version 3.9.2 (released 2011-04-07) (current is 4.1.4) 10:05:39 Finished running lintian. 10:05:39 # END SUBSECTION10:05:41 SSH: Connecting from host [lcas-buildfarm-slave-3] 10:05:41 SSH: Connecting with configuration [repo] ... 10:05:45 SSH: Disconnecting configuration [repo] ... 10:05:45 SSH: Transferred 5 file(s) 10:05:45 Build step 'Send files or execute commands over SSH' changed build result to SUCCESS 10:05:45 Waiting for the completion of Mrel_import-package 10:06:10 Mrel_import-package #846 started. 10:06:20 Mrel_import-package #846 completed. Result was SUCCESS11. Clean up to save disk space on agentsHide Details
10:05:40 # BEGIN SECTION: Clean up to save disk space on agents 10:05:40 + rm -fr sourcedeb/source 10:05:40 + echo # END SECTION 10:05:40 # END SECTION10:06:20 $ ssh-agent -k 10:06:20 unset SSH_AUTH_SOCK; 10:06:20 unset SSH_AGENT_PID; 10:06:20 echo Agent pid 21577 killed; 10:06:20 [ssh-agent] Stopped. 10:06:20 [description-setter] Description set: 3.0.2-1bionic 10:06:20 Triggering a new build of Mbin_uB64__kobuki_gazebo_plugins__ubuntu_bionic_amd64__binary 10:06:20 Finished: SUCCESS12. Check if triggered build failedHide Details
10:06:20 # BEGIN SECTION: Check if triggered build failed 10:06:20 Pattern not found in build log, continuing... 10:06:20 # END SECTION