SuccessConsole Output

Skipping 21 KB.. Full Log
\"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
15:50:11   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
15:50:11   
15:50:11   # automatic invalidation once every day
15:50:11   RUN echo "2021-06-06 (+0000)"
15:50:11   
15:50:11   RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done
15:50:11   
15:50:11   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
15:50:11   
15:50:11   COPY .git-credentials /home/buildfarm/.git-credentials
15:50:11   RUN chmod 600 /home/buildfarm/.git-credentials
15:50:11   RUN chown buildfarm /home/buildfarm/.git-credentials
15:50:11   
15:50:11   USER buildfarm
15:50:11   RUN git config --global credential.helper 'store'
15:50:11   RUN git config --global http.sslVerify false
15:50:11   
15:50:11   ENTRYPOINT ["sh", "-c"]
15:50:11   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 kinetic pedsim_scenarios ubuntu xenial 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 xenial --source-dir /tmp/sourcedeb/source"]
15:50:11 + echo # END SECTION
15:50:11 # END SECTION
15:50:11 + echo # BEGIN SECTION: Build Dockerfile - generate sourcedeb
1. Build Dockerfile - generate sourcedeb

Hide Details

15:50:11 # BEGIN SECTION: Build Dockerfile - generate sourcedeb 15:50:11 + cd /home/jenkins-slave/workspace/Ksrc_uX__pedsim_scenarios__ubuntu_xenial__source/docker_sourcedeb 15:50:11 + cp -L **** /home/jenkins-slave/workspace/Ksrc_uX__pedsim_scenarios__ubuntu_xenial__source/docker_sourcedeb/.git-credentials 15:50:12 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__pedsim_scenarios__ubuntu_xenial__source/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 15:50:12 Get base image name from Dockerfile 'Dockerfile': ubuntu:xenial 15:50:12 Check docker base image for updates: docker pull ubuntu:xenial 15:50:13 xenial: Pulling from library/ubuntu 15:50:13 Digest: sha256:9775877f420d453ef790e6832d77630a49b32a92b7bedf330adf4d8669f6600e 15:50:13 Status: Image is up to date for ubuntu:xenial 15:50:13 + docker build --force-rm -t sourcedeb.kinetic_ubuntu_xenial_pedsim_scenarios . 15:50:13 Sending build context to Docker daemon 19.46kB 15:50:14 Step 1/28 : FROM ubuntu:xenial 15:50:14 ---> 9ff95a467e45 15:50:14 Step 2/28 : VOLUME /var/cache/apt/archives 15:50:15 ---> Running in b4b58bb6c65d 15:50:16 ---> 981b0f9110d7 15:50:16 Removing intermediate container b4b58bb6c65d 15:50:16 Step 3/28 : ENV DEBIAN_FRONTEND noninteractive 15:50:17 ---> Running in 3eb5f0f6b5b3 15:50:17 ---> af914ebe2119 15:50:17 Removing intermediate container 3eb5f0f6b5b3 15:50:17 Step 4/28 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done 15:50:18 ---> Running in 4fff34b7fdac 15:50:19 Get:1 http://archive.ubuntu.com/ubuntu xenial InRelease [247 kB] 15:50:19 Get:2 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB] 15:50:19 Get:3 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB] 15:50:19 Get:4 http://security.ubuntu.com/ubuntu xenial-security InRelease [109 kB] 15:50:19 Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages [1558 kB] 15:50:19 Get:6 http://archive.ubuntu.com/ubuntu xenial/restricted amd64 Packages [14.1 kB] 15:50:19 Get:7 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages [9827 kB] 15:50:20 Get:8 http://archive.ubuntu.com/ubuntu xenial/multiverse amd64 Packages [176 kB] 15:50:20 Get:9 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [2559 kB] 15:50:20 Get:10 http://archive.ubuntu.com/ubuntu xenial-updates/restricted amd64 Packages [16.4 kB] 15:50:20 Get:11 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [1544 kB] 15:50:21 Get:12 http://archive.ubuntu.com/ubuntu xenial-updates/multiverse amd64 Packages [26.2 kB] 15:50:21 Get:13 http://archive.ubuntu.com/ubuntu xenial-backports/main amd64 Packages [10.9 kB] 15:50:21 Get:14 http://archive.ubuntu.com/ubuntu xenial-backports/universe amd64 Packages [12.7 kB] 15:50:22 Get:15 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [2051 kB] 15:50:22 Get:16 http://security.ubuntu.com/ubuntu xenial-security/restricted amd64 Packages [15.9 kB] 15:50:22 Get:17 http://security.ubuntu.com/ubuntu xenial-security/universe amd64 Packages [984 kB] 15:50:22 Get:18 http://security.ubuntu.com/ubuntu xenial-security/multiverse amd64 Packages [8820 B] 15:50:24 Fetched 19.4 MB in 5s (3761 kB/s) 15:50:24 Reading package lists... 15:50:26 Reading package lists... 15:50:28 Building dependency tree... 15:50:29 Reading state information... 15:50:29 The following NEW packages will be installed: 15:50:29 locales 15:50:29 0 upgraded, 1 newly installed, 0 to remove and 5 not upgraded. 15:50:29 Need to get 3197 kB of archives. 15:50:29 After this operation, 14.0 MB of additional disk space will be used. 15:50:29 Get:1 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 locales all 2.23-0ubuntu11.3 [3197 kB] 15:50:30 debconf: delaying package configuration, since apt-utils is not installed 15:50:30 Fetched 3197 kB in 0s (24.6 MB/s) 15:50:31 Selecting previously unselected package locales. 15:50:31 (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 ... 4785 files and directories currently installed.) 15:50:32 Preparing to unpack .../locales_2.23-0ubuntu11.3_all.deb ... 15:50:32 Unpacking locales (2.23-0ubuntu11.3) ... 15:50:36 Setting up locales (2.23-0ubuntu11.3) ... 15:50:38 Generating locales (this might take a while)... 15:50:38 Generation complete. 15:50:46 ---> 3f8d475d26d8 15:50:46 Removing intermediate container 4fff34b7fdac 15:50:46 Step 5/28 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 15:50:46 ---> Running in bcb52dd28fd8 15:50:47 ---> 36e56686c139 15:50:47 Removing intermediate container bcb52dd28fd8 15:50:47 Step 6/28 : RUN locale-gen en_US.UTF-8 15:50:48 ---> Running in 0984f6e494f6 15:50:48 Generating locales (this might take a while)... 15:50:48 en_US.UTF-8... done 15:50:50 Generation complete. 15:50:51 ---> 320c50017a59 15:50:51 Removing intermediate container 0984f6e494f6 15:50:51 Step 7/28 : ENV LANG en_US.UTF-8 15:50:51 ---> Running in 2145cc9bb1ae 15:50:51 ---> c7a9bd6bd327 15:50:52 Removing intermediate container 2145cc9bb1ae 15:50:52 Step 8/28 : ENV TZ GMT+00 15:50:52 ---> Running in 62247031b2b4 15:50:52 ---> cc95783ffe37 15:50:52 Removing intermediate container 62247031b2b4 15:50:52 Step 9/28 : RUN useradd -u 1002 -m buildfarm 15:50:53 ---> Running in 5ba673c12606 15:50:54 ---> 8e2abcf984c4 15:50:54 Removing intermediate container 5ba673c12606 15:50:54 Step 10/28 : RUN mkdir /tmp/keys 15:50:54 ---> Running in daa05a8d4d9f 15:50:55 ---> 1a7474dd0ef5 15:50:56 Removing intermediate container daa05a8d4d9f 15:50:56 Step 11/28 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key 15:50:56 ---> Running in fdd6b1a489a7 15:50:57 OK 15:50:58 ---> 360077d87bb4 15:50:58 Removing intermediate container fdd6b1a489a7 15:50:58 Step 12/28 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jc\nVFrQhE0L/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3tro\nu5oCR+SyHN9xPnUwDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4\nK/AY0jzT6OpHfXU6ytlFsI47ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rG\naIoAWlx2H0J7sAHmqS29N9jV9mo135d+d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+\nTwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS6nHrWH2WqQxRbiITl0irkQoz\npwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBNqoAQRbvWvBhPjO/p\nV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL8bwxX7UT\nhM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVV\nokdGpcUzvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQAB\ntCZPcGVuIFJvYm90aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoA\nPhYhBMHPbjHmut6IaLFytPQu1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUK\nCQgLAgQWAgMBAh4BAheAAAoJEPQu1vurF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQ\nnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeANKARNCaGLyNIWkuyDovPV0xZJ\nrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/sNGByJEhs37F05AnF\nvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHvZSxRonWh\nNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kj\nJ4e7YAZobC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6\nDiJVfXuWkk5PM2zsFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbR\nfp/4W7uCPFvwAatWEHJhlM3sQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQ\nqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePRhE+J9mejgWRZxkjAH/FlAubqXkDgterC\nh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/MpPWAHCqpQhe2DET/jRSaM53US\nAHNx8kw4MPUkxExgI7SdiQJUBBMBCAA+AhsDBQsJCAcCBhUKCQgLAgQWAgMBAh4B\nAheAFiEEwc9uMea63ohosXK09C7W+6sXxlQFAmCx2FEFCQtMxbsACgkQ9C7W+6sX\nxlRMzA//d/sSQ48gWNR1Gak0nZ1viIFFC7lvZIlEb4oh1u9AHMpQExXr9FSEQM+O\nFdkjfMN6/MF7C8AwqSqzZDVxaj1ZXtk/JOS9LJ7L9OOf4+jNx2/OS+sSMMx+0iTw\nTVbMsaru+c8tnWr9vpWrgffvdn4QNZoNoPBbvYJsIEtYBW2p9/zQLCUjbHx9gcqv\ndUFSfBxc0dHj6dEAF8BadpTiT6hOyEJC5yx3y+K01+xJesq4rLP3UhEdE+cmPHxS\n8ZTi1EZ+seTDXnTkRm+A/Ta9d5HJYFF8qIvW8bLi0JJEN1k7eazYnabTxU+/rkew\ndpZgyc76s0mYxmP130l0v/0ZF/kXpTSq6ggUvf0GFQS8HKe6qWuqKy2fI6HDxb8h\nDL/KY3MExwzPqtwyMzCGSCb8s1ehIPXU6sm7iS1DBGHC8ZVqucHyKHCOxPFkXKVo\nuYVJ9oD44CU6oItLU6QhUzONb5SXoDqqOIIRQ6yeV/gIaWHM0xk7HeWjDqLHMSoo\n5x8QKl4iPzRrZ8EOZaRwACOUe7pUGEBNQMb17bEovNXZn8Mtixvf6f1Bbso7TJkp\n+K5SjoBhugCKhAqfmOHeJG+MaHZSOmjbYb6hp7c9wJzsb7PXaPrEhjvT0VC4Dj10\nDZinMx1rT85fgs/npJMS94NGs74KdXpYT4XkVogrBvvY8visuLg=\n=p9Xy\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 15:50:58 ---> Running in 220bdd8697a1 15:50:59 OK 15:51:00 ---> d713c64b2b71 15:51:00 Removing intermediate container 220bdd8697a1 15:51:00 Step 13/28 : RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 15:51:00 ---> Running in 7a96bcd31bfe 15:51:01 deb http://10.210.9.154/ubuntu/building xenial main 15:51:02 ---> 10ad47c6080c 15:51:02 Removing intermediate container 7a96bcd31bfe 15:51:02 Step 14/28 : RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 15:51:03 ---> Running in 9da1213361d5 15:51:05 deb http://packages.ros.org/ros/ubuntu xenial main 15:51:05 ---> 7e56e9fd4db7 15:51:05 Removing intermediate container 9da1213361d5 15:51:05 Step 15/28 : RUN mkdir /tmp/wrapper_scripts 15:51:05 ---> Running in 2abbf6a84e12 15:51:07 ---> dec551a800be 15:51:07 Removing intermediate container 2abbf6a84e12 15:51:07 Step 16/28 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py 15:51:07 ---> Running in 874b677fe217 15:51:09 ---> e9f19104b1d7 15:51:09 Removing intermediate container 874b677fe217 15:51:09 Step 17/28 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py 15:51:09 ---> Running in 9f175dd2ad68 15:51:11 ---> c9b9e01c15d3 15:51:11 Removing intermediate container 9f175dd2ad68 15:51:11 Step 18/28 : RUN echo "2021-06-06 (+0000)" 15:51:11 ---> Running in f0ba307e8b09 15:51:12 2021-06-06 (+0000) 15:51:13 ---> 11e6d24266c8 15:51:13 Removing intermediate container f0ba307e8b09 15:51:13 Step 19/28 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done 15:51:13 ---> Running in a4dca9986f07 15:51:13 Get:1 http://10.210.9.154/ubuntu/building xenial InRelease [2,820 B] 15:51:13 Hit:2 http://archive.ubuntu.com/ubuntu xenial InRelease 15:51:13 Hit:3 http://archive.ubuntu.com/ubuntu xenial-updates InRelease 15:51:13 Hit:4 http://archive.ubuntu.com/ubuntu xenial-backports InRelease 15:51:14 Hit:5 http://security.ubuntu.com/ubuntu xenial-security InRelease 15:51:14 Get:6 http://packages.ros.org/ros/ubuntu xenial InRelease [4,692 B] 15:51:14 Get:7 http://10.210.9.154/ubuntu/building xenial/main amd64 Packages [308 kB] 15:51:15 Get:8 http://packages.ros.org/ros/ubuntu xenial/main amd64 Packages [854 kB] 15:51:16 Fetched 1,169 kB in 2s (418 kB/s) 15:51:16 Reading package lists... 15:51:20 Reading package lists... 15:51:24 Building dependency tree... 15:51:24 Reading state information... 15:51:24 The following additional packages will be installed: 15:51:24 dh-python file libexpat1 libmagic1 libmpdec2 libpython3-stdlib 15:51:24 libpython3.5-minimal libpython3.5-stdlib libsqlite3-0 libssl1.0.0 15:51:24 mime-support python3-minimal python3.5 python3.5-minimal 15:51:24 Suggested packages: 15:51:24 libdpkg-perl python3-doc python3-tk python3-venv python3.5-venv 15:51:24 python3.5-doc binutils binfmt-support 15:51:24 The following NEW packages will be installed: 15:51:24 dh-python file libexpat1 libmagic1 libmpdec2 libpython3-stdlib 15:51:24 libpython3.5-minimal libpython3.5-stdlib libsqlite3-0 libssl1.0.0 15:51:24 mime-support python3 python3-minimal python3.5 python3.5-minimal 15:51:24 0 upgraded, 15 newly installed, 0 to remove and 5 not upgraded. 15:51:24 Need to get 6,437 kB of archives. 15:51:24 After this operation, 33.3 MB of additional disk space will be used. 15:51:24 Get:1 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libssl1.0.0 amd64 1.0.2g-1ubuntu4.19 [1,082 kB] 15:51:24 Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython3.5-minimal amd64 3.5.2-2ubuntu0~16.04.13 [524 kB] 15:51:24 Get:3 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libexpat1 amd64 2.1.0-7ubuntu0.16.04.5 [71.5 kB] 15:51:24 Get:4 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python3.5-minimal amd64 3.5.2-2ubuntu0~16.04.13 [1,597 kB] 15:51:24 Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 python3-minimal amd64 3.5.1-3 [23.3 kB] 15:51:24 Get:6 http://archive.ubuntu.com/ubuntu xenial/main amd64 mime-support all 3.59ubuntu1 [31.0 kB] 15:51:24 Get:7 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmpdec2 amd64 2.4.2-1 [82.6 kB] 15:51:24 Get:8 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libsqlite3-0 amd64 3.11.0-1ubuntu1.5 [398 kB] 15:51:24 Get:9 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython3.5-stdlib amd64 3.5.2-2ubuntu0~16.04.13 [2,135 kB] 15:51:24 Get:10 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python3.5 amd64 3.5.2-2ubuntu0~16.04.13 [165 kB] 15:51:24 Get:11 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpython3-stdlib amd64 3.5.1-3 [6,818 B] 15:51:24 Get:12 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 dh-python all 2.20151103ubuntu1.2 [73.9 kB] 15:51:24 Get:13 http://archive.ubuntu.com/ubuntu xenial/main amd64 python3 amd64 3.5.1-3 [8,710 B] 15:51:24 Get:14 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libmagic1 amd64 1:5.25-2ubuntu1.4 [216 kB] 15:51:24 Get:15 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 file amd64 1:5.25-2ubuntu1.4 [21.2 kB] 15:51:25 debconf: delaying package configuration, since apt-utils is not installed 15:51:25 Fetched 6,437 kB in 0s (25.6 MB/s) 15:51:25 Selecting previously unselected package libssl1.0.0:amd64. 15:51:25 (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 ... 5382 files and directories currently installed.) 15:51:25 Preparing to unpack .../libssl1.0.0_1.0.2g-1ubuntu4.19_amd64.deb ... 15:51:25 Unpacking libssl1.0.0:amd64 (1.0.2g-1ubuntu4.19) ... 15:51:26 Selecting previously unselected package libpython3.5-minimal:amd64. 15:51:26 Preparing to unpack .../libpython3.5-minimal_3.5.2-2ubuntu0~16.04.13_amd64.deb ... 15:51:26 Unpacking libpython3.5-minimal:amd64 (3.5.2-2ubuntu0~16.04.13) ... 15:51:27 Selecting previously unselected package libexpat1:amd64. 15:51:27 Preparing to unpack .../libexpat1_2.1.0-7ubuntu0.16.04.5_amd64.deb ... 15:51:27 Unpacking libexpat1:amd64 (2.1.0-7ubuntu0.16.04.5) ... 15:51:27 Selecting previously unselected package python3.5-minimal. 15:51:27 Preparing to unpack .../python3.5-minimal_3.5.2-2ubuntu0~16.04.13_amd64.deb ... 15:51:27 Unpacking python3.5-minimal (3.5.2-2ubuntu0~16.04.13) ... 15:51:27 Selecting previously unselected package python3-minimal. 15:51:27 Preparing to unpack .../python3-minimal_3.5.1-3_amd64.deb ... 15:51:27 Unpacking python3-minimal (3.5.1-3) ... 15:51:28 Selecting previously unselected package mime-support. 15:51:28 Preparing to unpack .../mime-support_3.59ubuntu1_all.deb ... 15:51:28 Unpacking mime-support (3.59ubuntu1) ... 15:51:28 Selecting previously unselected package libmpdec2:amd64. 15:51:28 Preparing to unpack .../libmpdec2_2.4.2-1_amd64.deb ... 15:51:28 Unpacking libmpdec2:amd64 (2.4.2-1) ... 15:51:28 Selecting previously unselected package libsqlite3-0:amd64. 15:51:28 Preparing to unpack .../libsqlite3-0_3.11.0-1ubuntu1.5_amd64.deb ... 15:51:28 Unpacking libsqlite3-0:amd64 (3.11.0-1ubuntu1.5) ... 15:51:28 Selecting previously unselected package libpython3.5-stdlib:amd64. 15:51:28 Preparing to unpack .../libpython3.5-stdlib_3.5.2-2ubuntu0~16.04.13_amd64.deb ... 15:51:28 Unpacking libpython3.5-stdlib:amd64 (3.5.2-2ubuntu0~16.04.13) ... 15:51:29 Selecting previously unselected package python3.5. 15:51:29 Preparing to unpack .../python3.5_3.5.2-2ubuntu0~16.04.13_amd64.deb ... 15:51:29 Unpacking python3.5 (3.5.2-2ubuntu0~16.04.13) ... 15:51:29 Selecting previously unselected package libpython3-stdlib:amd64. 15:51:29 Preparing to unpack .../libpython3-stdlib_3.5.1-3_amd64.deb ... 15:51:30 Unpacking libpython3-stdlib:amd64 (3.5.1-3) ... 15:51:30 Selecting previously unselected package dh-python. 15:51:30 Preparing to unpack .../dh-python_2.20151103ubuntu1.2_all.deb ... 15:51:30 Unpacking dh-python (2.20151103ubuntu1.2) ... 15:51:30 Processing triggers for libc-bin (2.23-0ubuntu11.2) ... 15:51:31 Setting up libssl1.0.0:amd64 (1.0.2g-1ubuntu4.19) ... 15:51:31 Setting up libpython3.5-minimal:amd64 (3.5.2-2ubuntu0~16.04.13) ... 15:51:31 Setting up libexpat1:amd64 (2.1.0-7ubuntu0.16.04.5) ... 15:51:31 Setting up python3.5-minimal (3.5.2-2ubuntu0~16.04.13) ... 15:51:33 Setting up python3-minimal (3.5.1-3) ... 15:51:34 Processing triggers for libc-bin (2.23-0ubuntu11.2) ... 15:51:34 Selecting previously unselected package python3. 15:51:34 (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 ... 6358 files and directories currently installed.) 15:51:34 Preparing to unpack .../python3_3.5.1-3_amd64.deb ... 15:51:34 Unpacking python3 (3.5.1-3) ... 15:51:34 Selecting previously unselected package libmagic1:amd64. 15:51:34 Preparing to unpack .../libmagic1_1%3a5.25-2ubuntu1.4_amd64.deb ... 15:51:34 Unpacking libmagic1:amd64 (1:5.25-2ubuntu1.4) ... 15:51:35 Selecting previously unselected package file. 15:51:35 Preparing to unpack .../file_1%3a5.25-2ubuntu1.4_amd64.deb ... 15:51:35 Unpacking file (1:5.25-2ubuntu1.4) ... 15:51:35 Processing triggers for libc-bin (2.23-0ubuntu11.2) ... 15:51:35 Setting up mime-support (3.59ubuntu1) ... 15:51:35 Setting up libmpdec2:amd64 (2.4.2-1) ... 15:51:35 Setting up libsqlite3-0:amd64 (3.11.0-1ubuntu1.5) ... 15:51:35 Setting up libpython3.5-stdlib:amd64 (3.5.2-2ubuntu0~16.04.13) ... 15:51:35 Setting up python3.5 (3.5.2-2ubuntu0~16.04.13) ... 15:51:37 Setting up libpython3-stdlib:amd64 (3.5.1-3) ... 15:51:38 Setting up libmagic1:amd64 (1:5.25-2ubuntu1.4) ... 15:51:38 Setting up file (1:5.25-2ubuntu1.4) ... 15:51:38 Setting up python3 (3.5.1-3) ... 15:51:38 Setting up dh-python (2.20151103ubuntu1.2) ... 15:51:39 Processing triggers for libc-bin (2.23-0ubuntu11.2) ... 15:51:47 ---> 5273cf43064e 15:51:48 Removing intermediate container a4dca9986f07 15:51:48 Step 20/28 : 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 15:51:48 ---> Running in cc634afe1924 15:51:49 Invoking 'apt-get update' 15:51:49 Hit:1 http://10.210.9.154/ubuntu/building xenial InRelease 15:51:49 Hit:2 http://archive.ubuntu.com/ubuntu xenial InRelease 15:51:49 Hit:3 http://archive.ubuntu.com/ubuntu xenial-updates InRelease 15:51:49 Hit:4 http://archive.ubuntu.com/ubuntu xenial-backports InRelease 15:51:49 Hit:5 http://security.ubuntu.com/ubuntu xenial-security InRelease 15:51:49 Hit:6 http://packages.ros.org/ros/ubuntu xenial InRelease 15:51:52 Reading package lists... 15:51:52 Invoking 'apt-get install -q -y debhelper dpkg dpkg-dev git git-buildpackage python3-catkin-pkg-modules python3-rosdistro-modules python3-yaml' 15:51:53 Reading package lists... 15:51:54 Building dependency tree... 15:51:54 Reading state information... 15:51:54 dpkg is already the newest version (1.18.4ubuntu1.7). 15:51:54 The following additional packages will be installed: 15:51:54 at autotools-dev binutils bsdmainutils build-essential bzip2 ca-certificates 15:51:54 cowbuilder cowdancer cpp cpp-5 curl dctrl-tools debootstrap devscripts 15:51:54 dh-strip-nondeterminism diffstat distro-info-data docutils-common dput 15:51:54 fakeroot g++ g++-5 gcc gcc-5 gettext gettext-base git-man groff-base 15:51:54 hardening-includes ifupdown intltool-debian iproute2 isc-dhcp-client 15:51:54 isc-dhcp-common iso-codes krb5-locales less libalgorithm-diff-perl 15:51:54 libalgorithm-diff-xs-perl libalgorithm-merge-perl libapt-inst2.0 15:51:54 libapt-pkg-perl libarchive-zip-perl libasan2 libasn1-8-heimdal 15:51:54 libasprintf-dev libasprintf0v5 libatm1 libatomic1 libauthen-sasl-perl 15:51:54 libbsd0 libc-dev-bin libc6 libc6-dev libcc1-0 libcgi-fast-perl 15:51:54 libcgi-pm-perl libcilkrts5 libclass-accessor-perl libclone-perl libcroco3 15:51:54 libcurl3-gnutls libdata-alias-perl libdigest-hmac-perl libdistro-info-perl 15:51:54 libdns-export162 libdpkg-perl libedit2 libemail-valid-perl 15:51:54 libencode-locale-perl liberror-perl libexporter-tiny-perl libfakeroot 15:51:54 libfcgi-perl libffi6 libfile-basedir-perl libfile-fcntllock-perl 15:51:54 libfile-listing-perl libfile-stripnondeterminism-perl libfont-afm-perl 15:51:54 libfreetype6 libgcc-5-dev libgdbm3 libgettextpo-dev libgettextpo0 15:51:54 libglib2.0-0 libglib2.0-data libgmp10 libgnutls30 libgomp1 libgssapi-krb5-2 15:51:54 libgssapi3-heimdal libhcrypto4-heimdal libheimbase1-heimdal 15:51:54 libheimntlm0-heimdal libhogweed4 libhtml-form-perl libhtml-format-perl 15:51:54 libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl 15:51:54 libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl 15:51:54 libhttp-message-perl libhttp-negotiate-perl libhx509-5-heimdal libicu55 15:51:54 libidn11 libio-html-perl libio-pty-perl libio-socket-inet6-perl 15:51:54 libio-socket-ssl-perl libio-string-perl libipc-run-perl 15:51:54 libipc-system-simple-perl libisc-export160 libisl15 libitm1 libjbig0 15:51:54 libjpeg-turbo8 libjpeg8 libk5crypto3 libkeyutils1 libkrb5-26-heimdal 15:51:54 libkrb5-3 libkrb5support0 liblcms2-2 libldap-2.4-2 liblist-moreutils-perl 15:51:54 liblocale-gettext-perl liblsan0 liblwp-mediatypes-perl 15:51:54 liblwp-protocol-https-perl libmail-sendmail-perl libmailtools-perl libmnl0 15:51:54 libmpc3 libmpfr4 libmpx0 libnet-dns-perl libnet-domain-tld-perl 15:51:54 libnet-http-perl libnet-ip-perl libnet-smtp-ssl-perl libnet-ssleay-perl 15:51:54 libnettle6 libp11-kit0 libpaper-utils libpaper1 15:51:54 libparse-debianchangelog-perl libperl5.22 libperlio-gzip-perl libpipeline1 15:51:54 libpng12-0 libpopt0 libpython-stdlib libpython2.7-minimal 15:51:54 libpython2.7-stdlib libquadmath0 libroken18-heimdal librtmp1 libsasl2-2 15:51:54 libsasl2-modules libsasl2-modules-db libsocket6-perl libstdc++-5-dev 15:51:54 libsub-name-perl libsys-hostname-long-perl libtasn1-6 15:51:54 libtext-levenshtein-perl libtiff5 libtimedate-perl libtsan0 libubsan0 15:51:54 libunistring0 liburi-perl libwebp5 libwebpmux1 libwind0-heimdal libwww-perl 15:51:54 libwww-robotrules-perl libx11-6 libx11-data libxau6 libxcb1 libxdelta2 15:51:54 libxdmcp6 libxext6 libxml2 libxmuu1 libxtables11 libyaml-0-2 15:51:54 libyaml-libyaml-perl lintian linux-libc-dev lsb-release make man-db manpages 15:51:54 manpages-dev netbase openssh-client openssl patch patchutils pbuilder pbzip2 15:51:54 perl perl-modules-5.22 po-debconf pristine-tar python python-apt-common 15:51:54 python-cffi-backend python-chardet python-cryptography python-dateutil 15:51:54 python-enum34 python-idna python-ipaddress python-minimal 15:51:54 python-ndg-httpsclient python-openssl python-pkg-resources python-pyasn1 15:51:54 python-requests python-six python-urllib3 python2.7 python2.7-minimal 15:51:54 python3-apt python3-chardet python3-dateutil python3-debian python3-docutils 15:51:54 python3-magic python3-pil python3-pkg-resources python3-pygments 15:51:54 python3-pyparsing python3-roman python3-rospkg-modules python3-setuptools 15:51:54 python3-six rename rsync sgml-base shared-mime-info strace sudo t1utils 15:51:54 tzdata ucf unzip wdiff wget xauth xdelta xdg-user-dirs xml-core xz-utils 15:51:54 Suggested packages: 15:51:54 default-mta | mail-transport-agent binutils-doc wamerican | wordlist whois 15:51:54 vacation bzip2-doc cpp-doc gcc-5-locales debtags dh-make bsd-mailx | mailx 15:51:54 cvs-buildpackage diffoscope devscripts-el dose-extra gnuplot 15:51:54 libfile-desktopentry-perl libterm-size-perl libyaml-syck-perl 15:51:54 mozilla-devscripts mutt svn-buildpackage w3m debian-keyring equivs 15:51:54 libsoap-lite-perl mini-dinstall python-bzrlib g++-multilib g++-5-multilib 15:51:54 gcc-5-doc libstdc++6-5-dbg gcc-multilib autoconf automake libtool flex bison 15:51:54 gdb gcc-doc gcc-5-multilib libgcc1-dbg libgomp1-dbg libitm1-dbg 15:51:54 libatomic1-dbg libasan2-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg 15:51:54 libcilkrts5-dbg libmpx0-dbg libquadmath0-dbg gettext-doc autopoint 15:51:54 git-daemon-run | git-daemon-sysvinit git-doc git-el git-email git-gui gitk 15:51:54 gitweb git-arch git-cvs git-mediawiki git-svn python-notify groff ppp rdnssd 15:51:54 iproute2-doc resolvconf avahi-autoipd isc-dhcp-client-ddns apparmor isoquery 15:51:54 libgssapi-perl glibc-doc gnutls-bin krb5-doc krb5-user libdata-dump-perl 15:51:54 liblcms2-utils libcrypt-ssleay-perl libhtml-template-perl libxml-simple-perl 15:51:54 libsasl2-modules-otp libsasl2-modules-ldap libsasl2-modules-sql 15:51:54 libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal 15:51:54 libstdc++-5-doc libauthen-ntlm-perl binutils-multiarch libtext-template-perl 15:51:54 lsb make-doc www-browser ssh-askpass libpam-ssh keychain monkeysphere ed 15:51:54 diffutils-doc gdebi-core perl-doc libterm-readline-gnu-perl 15:51:54 | libterm-readline-perl-perl libmail-box-perl python-doc python-tk 15:51:54 python-cryptography-doc python-cryptography-vectors python-enum34-doc 15:51:54 python-openssl-doc python-openssl-dbg python-setuptools doc-base python-ntlm 15:51:54 python2.7-doc binfmt-support python3-apt-dbg python-apt-doc 15:51:54 texlive-latex-recommended texlive-latex-base texlive-lang-french 15:51:54 fonts-linuxlibertine | ttf-linux-libertine docutils-doc python-pil-doc 15:51:54 python3-pil-dbg ttf-bitstream-vera python-setuptools-doc openssh-server 15:51:54 sgml-base-doc zip 15:51:54 The following NEW packages will be installed: 15:51:54 at autotools-dev binutils bsdmainutils build-essential bzip2 ca-certificates 15:51:54 cowbuilder cowdancer cpp cpp-5 curl dctrl-tools debhelper debootstrap 15:51:54 devscripts dh-strip-nondeterminism diffstat distro-info-data docutils-common 15:51:54 dpkg-dev dput fakeroot g++ g++-5 gcc gcc-5 gettext gettext-base git 15:51:54 git-buildpackage git-man groff-base hardening-includes ifupdown 15:51:54 intltool-debian iproute2 isc-dhcp-client isc-dhcp-common iso-codes 15:51:54 krb5-locales less libalgorithm-diff-perl libalgorithm-diff-xs-perl 15:51:54 libalgorithm-merge-perl libapt-inst2.0 libapt-pkg-perl libarchive-zip-perl 15:51:54 libasan2 libasn1-8-heimdal libasprintf-dev libasprintf0v5 libatm1 libatomic1 15:51:54 libauthen-sasl-perl libbsd0 libc-dev-bin libc6-dev libcc1-0 libcgi-fast-perl 15:51:54 libcgi-pm-perl libcilkrts5 libclass-accessor-perl libclone-perl libcroco3 15:51:54 libcurl3-gnutls libdata-alias-perl libdigest-hmac-perl libdistro-info-perl 15:51:54 libdns-export162 libdpkg-perl libedit2 libemail-valid-perl 15:51:54 libencode-locale-perl liberror-perl libexporter-tiny-perl libfakeroot 15:51:54 libfcgi-perl libffi6 libfile-basedir-perl libfile-fcntllock-perl 15:51:54 libfile-listing-perl libfile-stripnondeterminism-perl libfont-afm-perl 15:51:54 libfreetype6 libgcc-5-dev libgdbm3 libgettextpo-dev libgettextpo0 15:51:54 libglib2.0-0 libglib2.0-data libgmp10 libgnutls30 libgomp1 libgssapi-krb5-2 15:51:54 libgssapi3-heimdal libhcrypto4-heimdal libheimbase1-heimdal 15:51:54 libheimntlm0-heimdal libhogweed4 libhtml-form-perl libhtml-format-perl 15:51:54 libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl 15:51:54 libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl 15:51:54 libhttp-message-perl libhttp-negotiate-perl libhx509-5-heimdal libicu55 15:51:54 libidn11 libio-html-perl libio-pty-perl libio-socket-inet6-perl 15:51:54 libio-socket-ssl-perl libio-string-perl libipc-run-perl 15:51:54 libipc-system-simple-perl libisc-export160 libisl15 libitm1 libjbig0 15:51:54 libjpeg-turbo8 libjpeg8 libk5crypto3 libkeyutils1 libkrb5-26-heimdal 15:51:54 libkrb5-3 libkrb5support0 liblcms2-2 libldap-2.4-2 liblist-moreutils-perl 15:51:54 liblocale-gettext-perl liblsan0 liblwp-mediatypes-perl 15:51:54 liblwp-protocol-https-perl libmail-sendmail-perl libmailtools-perl libmnl0 15:51:54 libmpc3 libmpfr4 libmpx0 libnet-dns-perl libnet-domain-tld-perl 15:51:54 libnet-http-perl libnet-ip-perl libnet-smtp-ssl-perl libnet-ssleay-perl 15:51:54 libnettle6 libp11-kit0 libpaper-utils libpaper1 15:51:54 libparse-debianchangelog-perl libperl5.22 libperlio-gzip-perl libpipeline1 15:51:54 libpng12-0 libpopt0 libpython-stdlib libpython2.7-minimal 15:51:54 libpython2.7-stdlib libquadmath0 libroken18-heimdal librtmp1 libsasl2-2 15:51:54 libsasl2-modules libsasl2-modules-db libsocket6-perl libstdc++-5-dev 15:51:54 libsub-name-perl libsys-hostname-long-perl libtasn1-6 15:51:54 libtext-levenshtein-perl libtiff5 libtimedate-perl libtsan0 libubsan0 15:51:54 libunistring0 liburi-perl libwebp5 libwebpmux1 libwind0-heimdal libwww-perl 15:51:54 libwww-robotrules-perl libx11-6 libx11-data libxau6 libxcb1 libxdelta2 15:51:54 libxdmcp6 libxext6 libxml2 libxmuu1 libxtables11 libyaml-0-2 15:51:54 libyaml-libyaml-perl lintian linux-libc-dev lsb-release make man-db manpages 15:51:54 manpages-dev netbase openssh-client openssl patch patchutils pbuilder pbzip2 15:51:54 perl perl-modules-5.22 po-debconf pristine-tar python python-apt-common 15:51:54 python-cffi-backend python-chardet python-cryptography python-dateutil 15:51:54 python-enum34 python-idna python-ipaddress python-minimal 15:51:54 python-ndg-httpsclient python-openssl python-pkg-resources python-pyasn1 15:51:54 python-requests python-six python-urllib3 python2.7 python2.7-minimal 15:51:54 python3-apt python3-catkin-pkg-modules python3-chardet python3-dateutil 15:51:54 python3-debian python3-docutils python3-magic python3-pil 15:51:54 python3-pkg-resources python3-pygments python3-pyparsing python3-roman 15:51:54 python3-rosdistro-modules python3-rospkg-modules python3-setuptools 15:51:54 python3-six python3-yaml rename rsync sgml-base shared-mime-info strace sudo 15:51:54 t1utils tzdata ucf unzip wdiff wget xauth xdelta xdg-user-dirs xml-core 15:51:54 xz-utils 15:51:54 The following packages will be upgraded: 15:51:54 libc6 15:51:55 1 upgraded, 269 newly installed, 0 to remove and 4 not upgraded. 15:51:55 Need to get 92.6 MB of archives. 15:51:55 After this operation, 378 MB of additional disk space will be used. 15:51:55 Get:1 http://10.210.9.154/ubuntu/building xenial/main amd64 python-six all 1.11.0 [20.6 kB] 15:51:55 Get:2 http://10.210.9.154/ubuntu/building xenial/main amd64 python3-catkin-pkg-modules all 0.4.23-1 [42.3 kB] 15:51:55 Get:3 http://10.210.9.154/ubuntu/building xenial/main amd64 python3-rosdistro-modules all 0.8.3-1 [31.8 kB] 15:51:55 Get:4 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libc6 amd64 2.23-0ubuntu11.3 [2,590 kB] 15:51:55 Get:5 http://packages.ros.org/ros/ubuntu xenial/main amd64 python3-rospkg-modules all 1.3.0-1 [23.9 kB] 15:51:55 Get:6 http://archive.ubuntu.com/ubuntu xenial/main amd64 libatm1 amd64 1:2.5.1-1.5 [24.2 kB] 15:51:55 Get:7 http://archive.ubuntu.com/ubuntu xenial/main amd64 liblocale-gettext-perl amd64 1.07-1build1 [17.1 kB] 15:51:55 Get:8 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmnl0 amd64 1.0.3-5 [12.0 kB] 15:51:55 Get:9 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpopt0 amd64 1.16-10 [26.0 kB] 15:51:55 Get:10 http://archive.ubuntu.com/ubuntu xenial/main amd64 libgdbm3 amd64 1.8.3-13.1 [16.9 kB] 15:51:55 Get:11 http://archive.ubuntu.com/ubuntu xenial/main amd64 libffi6 amd64 3.2.1-4 [17.8 kB] 15:51:55 Get:12 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libglib2.0-0 amd64 2.48.2-0ubuntu4.8 [1,120 kB] 15:51:55 Get:13 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxau6 amd64 1:1.0.8-1 [8,376 B] 15:51:55 Get:14 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxdmcp6 amd64 1:1.1.2-1.1 [11.0 kB] 15:51:55 Get:15 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxcb1 amd64 1.11.1-1ubuntu1 [40.0 kB] 15:51:55 Get:16 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libx11-data all 2:1.6.3-1ubuntu2.2 [114 kB] 15:51:55 Get:17 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libx11-6 amd64 2:1.6.3-1ubuntu2.2 [572 kB] 15:51:55 Get:18 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxext6 amd64 2:1.3.3-1 [29.4 kB] 15:51:55 Get:19 http://archive.ubuntu.com/ubuntu xenial/main amd64 groff-base amd64 1.22.3-7 [1,151 kB] 15:51:55 Get:20 http://archive.ubuntu.com/ubuntu xenial/main amd64 bsdmainutils amd64 9.0.6ubuntu3 [174 kB] 15:51:55 Get:21 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpipeline1 amd64 1.4.1-2 [24.6 kB] 15:51:55 Get:22 http://archive.ubuntu.com/ubuntu xenial/main amd64 man-db amd64 2.7.5-1 [854 kB] 15:51:55 Get:23 http://archive.ubuntu.com/ubuntu xenial/main amd64 sgml-base all 1.26+nmu4ubuntu1 [12.5 kB] 15:51:55 Get:24 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libjpeg-turbo8 amd64 1.4.2-0ubuntu3.4 [111 kB] 15:51:55 Get:25 http://archive.ubuntu.com/ubuntu xenial/main amd64 libunistring0 amd64 0.9.3-5.2ubuntu1 [279 kB] 15:51:55 Get:26 http://archive.ubuntu.com/ubuntu xenial/main amd64 libyaml-0-2 amd64 0.1.6-3 [47.6 kB] 15:51:55 Get:27 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 perl-modules-5.22 all 5.22.1-9ubuntu0.9 [2,634 kB] 15:51:55 Get:28 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libperl5.22 amd64 5.22.1-9ubuntu0.9 [3,360 kB] 15:51:56 Get:29 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 perl amd64 5.22.1-9ubuntu0.9 [237 kB] 15:51:56 Get:30 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython2.7-minimal amd64 2.7.12-1ubuntu0~16.04.18 [338 kB] 15:51:56 Get:31 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python2.7-minimal amd64 2.7.12-1ubuntu0~16.04.18 [1,260 kB] 15:51:56 Get:32 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-minimal amd64 2.7.12-1~16.04 [28.1 kB] 15:51:56 Get:33 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython2.7-stdlib amd64 2.7.12-1ubuntu0~16.04.18 [1,883 kB] 15:51:56 Get:34 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python2.7 amd64 2.7.12-1ubuntu0~16.04.18 [224 kB] 15:51:56 Get:35 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython-stdlib amd64 2.7.12-1~16.04 [7,768 B] 15:51:56 Get:36 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python amd64 2.7.12-1~16.04 [137 kB] 15:51:56 Get:37 http://archive.ubuntu.com/ubuntu xenial/main amd64 libjbig0 amd64 2.1-3.1 [26.6 kB] 15:51:56 Get:38 http://archive.ubuntu.com/ubuntu xenial/main amd64 libgmp10 amd64 2:6.1.0+dfsg-2 [240 kB] 15:51:56 Get:39 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmpfr4 amd64 3.1.4-1 [191 kB] 15:51:56 Get:40 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmpc3 amd64 1.0.3-1 [39.7 kB] 15:51:56 Get:41 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 tzdata all 2021a-0ubuntu0.16.04 [167 kB] 15:51:56 Get:42 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 bzip2 amd64 1.0.6-8ubuntu0.2 [32.5 kB] 15:51:56 Get:43 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 distro-info-data all 0.28ubuntu0.17 [4,600 B] 15:51:56 Get:44 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 iproute2 amd64 4.3.0-1ubuntu3.16.04.5 [523 kB] 15:51:56 Get:45 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 ifupdown amd64 0.8.10ubuntu1.4 [54.9 kB] 15:51:56 Get:46 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libisc-export160 amd64 1:9.10.3.dfsg.P4-8ubuntu1.19 [153 kB] 15:51:56 Get:47 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libdns-export162 amd64 1:9.10.3.dfsg.P4-8ubuntu1.19 [665 kB] 15:51:56 Get:48 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 isc-dhcp-client amd64 4.3.3-5ubuntu12.10 [224 kB] 15:51:56 Get:49 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 isc-dhcp-common amd64 4.3.3-5ubuntu12.10 [105 kB] 15:51:56 Get:50 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 less amd64 481-2.1ubuntu0.2 [110 kB] 15:51:56 Get:51 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libapt-inst2.0 amd64 1.2.35 [54.8 kB] 15:51:56 Get:52 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libbsd0 amd64 0.8.2-1ubuntu0.1 [42.0 kB] 15:51:56 Get:53 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libnettle6 amd64 3.2-1ubuntu0.16.04.2 [93.7 kB] 15:51:56 Get:54 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libhogweed4 amd64 3.2-1ubuntu0.16.04.2 [136 kB] 15:51:56 Get:55 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libidn11 amd64 1.32-3ubuntu1.2 [46.5 kB] 15:51:56 Get:56 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libp11-kit0 amd64 0.23.2-5~ubuntu16.04.2 [107 kB] 15:51:56 Get:57 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libtasn1-6 amd64 4.7-3ubuntu0.16.04.3 [43.5 kB] 15:51:56 Get:58 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgnutls30 amd64 3.4.10-4ubuntu1.8 [548 kB] 15:51:56 Get:59 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpng12-0 amd64 1.2.54-1ubuntu1.1 [116 kB] 15:51:56 Get:60 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxtables11 amd64 1.6.0-2ubuntu3 [27.2 kB] 15:51:56 Get:61 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 lsb-release all 9.20160110ubuntu0.2 [11.8 kB] 15:51:56 Get:62 http://archive.ubuntu.com/ubuntu xenial/main amd64 netbase all 5.3 [12.9 kB] 15:51:56 Get:63 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 sudo amd64 1.8.16-0ubuntu1.10 [390 kB] 15:51:56 Get:64 http://archive.ubuntu.com/ubuntu xenial/main amd64 ucf all 3.0036 [52.9 kB] 15:51:56 Get:65 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 openssl amd64 1.0.2g-1ubuntu4.19 [492 kB] 15:51:56 Get:66 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 ca-certificates all 20210119~16.04.1 [148 kB] 15:51:56 Get:67 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libasprintf0v5 amd64 0.19.7-2ubuntu3.1 [6,568 B] 15:51:56 Get:68 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 gettext-base amd64 0.19.7-2ubuntu3.1 [48.0 kB] 15:51:56 Get:69 http://archive.ubuntu.com/ubuntu xenial/main amd64 iso-codes all 3.65-1 [2,268 kB] 15:51:56 Get:70 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 krb5-locales all 1.13.2+dfsg-5ubuntu2.2 [13.7 kB] 15:51:56 Get:71 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libroken18-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [41.4 kB] 15:51:56 Get:72 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libasn1-8-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [174 kB] 15:51:56 Get:73 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libkrb5support0 amd64 1.13.2+dfsg-5ubuntu2.2 [31.2 kB] 15:51:56 Get:74 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libk5crypto3 amd64 1.13.2+dfsg-5ubuntu2.2 [81.2 kB] 15:51:56 Get:75 http://archive.ubuntu.com/ubuntu xenial/main amd64 libkeyutils1 amd64 1.5.9-8ubuntu1 [9,904 B] 15:51:56 Get:76 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libkrb5-3 amd64 1.13.2+dfsg-5ubuntu2.2 [273 kB] 15:51:56 Get:77 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgssapi-krb5-2 amd64 1.13.2+dfsg-5ubuntu2.2 [120 kB] 15:51:56 Get:78 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libhcrypto4-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [85.0 kB] 15:51:56 Get:79 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libheimbase1-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [29.3 kB] 15:51:56 Get:80 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libwind0-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [47.8 kB] 15:51:56 Get:81 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libhx509-5-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [107 kB] 15:51:56 Get:82 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libkrb5-26-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [202 kB] 15:51:56 Get:83 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libheimntlm0-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [15.1 kB] 15:51:56 Get:84 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgssapi3-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [96.1 kB] 15:51:56 Get:85 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libsasl2-modules-db amd64 2.1.26.dfsg1-14ubuntu0.2 [14.5 kB] 15:51:56 Get:86 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libsasl2-2 amd64 2.1.26.dfsg1-14ubuntu0.2 [48.7 kB] 15:51:56 Get:87 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libldap-2.4-2 amd64 2.4.42+dfsg-2ubuntu3.13 [159 kB] 15:51:56 Get:88 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d-1ubuntu0.1 [54.4 kB] 15:51:56 Get:89 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libcurl3-gnutls amd64 7.47.0-1ubuntu2.19 [189 kB] 15:51:56 Get:90 http://archive.ubuntu.com/ubuntu xenial/main amd64 libedit2 amd64 3.1-20150325-1ubuntu2 [76.5 kB] 15:51:56 Get:91 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libglib2.0-data all 2.48.2-0ubuntu4.8 [131 kB] 15:51:56 Get:92 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libicu55 amd64 55.1-7ubuntu0.5 [7,650 kB] 15:51:56 Get:93 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libsasl2-modules amd64 2.1.26.dfsg1-14ubuntu0.2 [47.7 kB] 15:51:56 Get:94 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libxml2 amd64 2.9.3+dfsg1-1ubuntu0.7 [698 kB] 15:51:56 Get:95 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxmuu1 amd64 2:1.1.2-2 [9,674 B] 15:51:56 Get:96 http://archive.ubuntu.com/ubuntu xenial/main amd64 manpages all 4.04-2 [1,087 kB] 15:51:56 Get:97 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 openssh-client amd64 1:7.2p2-4ubuntu2.10 [590 kB] 15:51:56 Get:98 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-apt-common all 1.1.0~beta1ubuntu0.16.04.12 [16.7 kB] 15:51:56 Get:99 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python3-apt amd64 1.1.0~beta1ubuntu0.16.04.12 [145 kB] 15:51:56 Get:100 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 rsync amd64 3.1.1-3ubuntu1.3 [329 kB] 15:51:56 Get:101 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 shared-mime-info amd64 1.5-2ubuntu0.2 [405 kB] 15:51:56 Get:102 http://archive.ubuntu.com/ubuntu xenial/main amd64 strace amd64 4.11-1ubuntu3 [179 kB] 15:51:56 Get:103 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 wget amd64 1.17.1-1ubuntu1.5 [299 kB] 15:51:56 Get:104 http://archive.ubuntu.com/ubuntu xenial/main amd64 xauth amd64 1:1.0.9-1ubuntu2 [22.7 kB] 15:51:56 Get:105 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 xdg-user-dirs amd64 0.15-2ubuntu6.16.04.1 [61.8 kB] 15:51:56 Get:106 http://archive.ubuntu.com/ubuntu xenial/main amd64 xml-core all 0.13+nmu2 [23.3 kB] 15:51:57 Get:107 http://archive.ubuntu.com/ubuntu xenial/main amd64 at amd64 3.1.18-2ubuntu1 [37.8 kB] 15:51:57 Get:108 http://archive.ubuntu.com/ubuntu xenial/main amd64 autotools-dev all 20150820.1 [39.8 kB] 15:51:57 Get:109 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 binutils amd64 2.26.1-1ubuntu1~16.04.8 [2,312 kB] 15:51:57 Get:110 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libc-dev-bin amd64 2.23-0ubuntu11.3 [68.6 kB] 15:51:57 Get:111 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 linux-libc-dev amd64 4.4.0-210.242 [832 kB] 15:51:57 Get:112 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libc6-dev amd64 2.23-0ubuntu11.3 [2,083 kB] 15:51:57 Get:113 http://archive.ubuntu.com/ubuntu xenial/main amd64 libisl15 amd64 0.16.1-1 [524 kB] 15:51:57 Get:114 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 cpp-5 amd64 5.4.0-6ubuntu1~16.04.12 [7,783 kB] 15:51:57 Get:115 http://archive.ubuntu.com/ubuntu xenial/main amd64 cpp amd64 4:5.3.1-1ubuntu1 [27.7 kB] 15:51:57 Get:116 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libcc1-0 amd64 5.4.0-6ubuntu1~16.04.12 [38.8 kB] 15:51:57 Get:117 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgomp1 amd64 5.4.0-6ubuntu1~16.04.12 [55.2 kB] 15:51:57 Get:118 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libitm1 amd64 5.4.0-6ubuntu1~16.04.12 [27.4 kB] 15:51:57 Get:119 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libatomic1 amd64 5.4.0-6ubuntu1~16.04.12 [8,892 B] 15:51:57 Get:120 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libasan2 amd64 5.4.0-6ubuntu1~16.04.12 [265 kB] 15:51:57 Get:121 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 liblsan0 amd64 5.4.0-6ubuntu1~16.04.12 [105 kB] 15:51:57 Get:122 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libtsan0 amd64 5.4.0-6ubuntu1~16.04.12 [244 kB] 15:51:57 Get:123 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libubsan0 amd64 5.4.0-6ubuntu1~16.04.12 [95.3 kB] 15:51:57 Get:124 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libcilkrts5 amd64 5.4.0-6ubuntu1~16.04.12 [40.0 kB] 15:51:57 Get:125 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libmpx0 amd64 5.4.0-6ubuntu1~16.04.12 [9,762 B] 15:51:57 Get:126 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libquadmath0 amd64 5.4.0-6ubuntu1~16.04.12 [131 kB] 15:51:57 Get:127 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgcc-5-dev amd64 5.4.0-6ubuntu1~16.04.12 [2,239 kB] 15:51:57 Get:128 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 gcc-5 amd64 5.4.0-6ubuntu1~16.04.12 [8,612 kB] 15:51:57 Get:129 http://archive.ubuntu.com/ubuntu xenial/main amd64 gcc amd64 4:5.3.1-1ubuntu1 [5,244 B] 15:51:57 Get:130 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libstdc++-5-dev amd64 5.4.0-6ubuntu1~16.04.12 [1,428 kB] 15:51:57 Get:131 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 g++-5 amd64 5.4.0-6ubuntu1~16.04.12 [8,430 kB] 15:51:58 Get:132 http://archive.ubuntu.com/ubuntu xenial/main amd64 g++ amd64 4:5.3.1-1ubuntu1 [1,504 B] 15:51:58 Get:133 http://archive.ubuntu.com/ubuntu xenial/main amd64 make amd64 4.1-6 [151 kB] 15:51:58 Get:134 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libdpkg-perl all 1.18.4ubuntu1.7 [195 kB] 15:51:58 Get:135 http://archive.ubuntu.com/ubuntu xenial/main amd64 xz-utils amd64 5.1.1alpha+20120614-2ubuntu2 [78.8 kB] 15:51:58 Get:136 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 patch amd64 2.7.5-1ubuntu0.16.04.2 [90.8 kB] 15:51:58 Get:137 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 dpkg-dev all 1.18.4ubuntu1.7 [584 kB] 15:51:58 Get:138 http://archive.ubuntu.com/ubuntu xenial/main amd64 build-essential amd64 12.1ubuntu2 [4,758 B] 15:51:58 Get:139 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 debootstrap all 1.0.78+nmu1ubuntu1.13 [36.8 kB] 15:51:58 Get:140 http://archive.ubuntu.com/ubuntu xenial/main amd64 pbuilder all 0.223 [317 kB] 15:51:58 Get:141 http://archive.ubuntu.com/ubuntu xenial/universe amd64 cowdancer amd64 0.73 [21.7 kB] 15:51:58 Get:142 http://archive.ubuntu.com/ubuntu xenial/universe amd64 cowbuilder amd64 0.73 [17.9 kB] 15:51:58 Get:143 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 curl amd64 7.47.0-1ubuntu2.19 [139 kB] 15:51:58 Get:144 http://archive.ubuntu.com/ubuntu xenial/main amd64 dctrl-tools amd64 2.24-2 [59.1 kB] 15:51:58 Get:145 http://archive.ubuntu.com/ubuntu xenial/main amd64 libcroco3 amd64 0.6.11-1 [81.6 kB] 15:51:58 Get:146 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 gettext amd64 0.19.7-2ubuntu3.1 [1,082 kB] 15:51:58 Get:147 http://archive.ubuntu.com/ubuntu xenial/main amd64 intltool-debian all 0.35.0+20060710.4 [24.9 kB] 15:51:58 Get:148 http://archive.ubuntu.com/ubuntu xenial/main amd64 po-debconf all 1.0.19 [234 kB] 15:51:58 Get:149 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libarchive-zip-perl all 1.56-2ubuntu0.1 [84.7 kB] 15:51:58 Get:150 http://archive.ubuntu.com/ubuntu xenial/main amd64 libfile-stripnondeterminism-perl all 0.015-1 [10.3 kB] 15:51:58 Get:151 http://archive.ubuntu.com/ubuntu xenial/main amd64 libtimedate-perl all 2.3000-2 [37.5 kB] 15:51:58 Get:152 http://archive.ubuntu.com/ubuntu xenial/main amd64 dh-strip-nondeterminism all 0.015-1 [4,864 B] 15:51:58 Get:153 http://archive.ubuntu.com/ubuntu xenial/main amd64 debhelper all 9.20160115ubuntu3 [739 kB] 15:51:58 Get:154 http://archive.ubuntu.com/ubuntu xenial/main amd64 devscripts amd64 2.16.2ubuntu3 [848 kB] 15:51:58 Get:155 http://archive.ubuntu.com/ubuntu xenial/main amd64 diffstat amd64 1.61-1 [23.6 kB] 15:51:58 Get:156 http://archive.ubuntu.com/ubuntu xenial/main amd64 docutils-common all 0.12+dfsg-1 [141 kB] 15:51:58 Get:157 http://archive.ubuntu.com/ubuntu xenial/main amd64 dput all 0.9.6.4ubuntu3 [33.1 kB] 15:51:58 Get:158 http://archive.ubuntu.com/ubuntu xenial/main amd64 libfakeroot amd64 1.20.2-1ubuntu1 [25.5 kB] 15:51:58 Get:159 http://archive.ubuntu.com/ubuntu xenial/main amd64 fakeroot amd64 1.20.2-1ubuntu1 [61.8 kB] 15:51:58 Get:160 http://archive.ubuntu.com/ubuntu xenial/main amd64 liberror-perl all 0.17-1.2 [19.6 kB] 15:51:58 Get:161 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 git-man all 1:2.7.4-0ubuntu1.10 [737 kB] 15:51:58 Get:162 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 git amd64 1:2.7.4-0ubuntu1.10 [3,183 kB] 15:51:58 Get:163 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-dateutil all 2.4.2-1 [42.5 kB] 15:51:58 Get:164 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-pkg-resources all 20.7.0-1 [108 kB] 15:51:58 Get:165 http://archive.ubuntu.com/ubuntu xenial/universe amd64 git-buildpackage all 0.7.2 [283 kB] 15:51:58 Get:166 http://archive.ubuntu.com/ubuntu xenial/main amd64 libalgorithm-diff-perl all 1.19.03-1 [47.6 kB] 15:51:58 Get:167 http://archive.ubuntu.com/ubuntu xenial/main amd64 libalgorithm-diff-xs-perl amd64 0.04-4build1 [11.0 kB] 15:51:58 Get:168 http://archive.ubuntu.com/ubuntu xenial/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB] 15:51:58 Get:169 http://archive.ubuntu.com/ubuntu xenial/main amd64 libapt-pkg-perl amd64 0.1.29build7 [65.3 kB] 15:51:58 Get:170 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libasprintf-dev amd64 0.19.7-2ubuntu3.1 [4,778 B] 15:51:58 Get:171 http://archive.ubuntu.com/ubuntu xenial/main amd64 libhtml-tagset-perl all 3.20-2 [13.5 kB] 15:51:58 Get:172 http://archive.ubuntu.com/ubuntu xenial/main amd64 liburi-perl all 1.71-1 [76.9 kB] 15:51:58 Get:173 http://archive.ubuntu.com/ubuntu xenial/main amd64 libhtml-parser-perl amd64 3.72-1 [86.1 kB] 15:51:58 Get:174 http://archive.ubuntu.com/ubuntu xenial/main amd64 libcgi-pm-perl all 4.26-1 [185 kB] 15:51:58 Get:175 http://archive.ubuntu.com/ubuntu xenial/main amd64 libfcgi-perl amd64 0.77-1build1 [32.3 kB] 15:51:58 Get:176 http://archive.ubuntu.com/ubuntu xenial/main amd64 libcgi-fast-perl all 1:2.10-1 [10.2 kB] 15:51:58 Get:177 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsub-name-perl amd64 0.14-1build1 [10.8 kB] 15:51:58 Get:178 http://archive.ubuntu.com/ubuntu xenial/main amd64 libclass-accessor-perl all 0.34-1 [26.0 kB] 15:51:58 Get:179 http://archive.ubuntu.com/ubuntu xenial/main amd64 libclone-perl amd64 0.38-1build1 [10.3 kB] 15:51:58 Get:180 http://archive.ubuntu.com/ubuntu xenial/main amd64 libdata-alias-perl amd64 1.20-1build1 [33.9 kB] 15:51:58 Get:181 http://archive.ubuntu.com/ubuntu xenial/main amd64 libdigest-hmac-perl all 1.03+dfsg-1 [12.1 kB] 15:51:58 Get:182 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libdistro-info-perl all 0.14ubuntu0.2 [4,710 B] 15:51:58 Get:183 http://archive.ubuntu.com/ubuntu xenial/main amd64 libnet-ssleay-perl amd64 1.72-1build1 [259 kB] 15:51:58 Get:184 http://archive.ubuntu.com/ubuntu xenial/main amd64 libio-socket-ssl-perl all 2.024-1 [159 kB] 15:51:58 Get:185 http://archive.ubuntu.com/ubuntu xenial/main amd64 libnet-smtp-ssl-perl all 1.03-1 [6,288 B] 15:51:58 Get:186 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmailtools-perl all 2.13-1 [82.6 kB] 15:51:58 Get:187 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsocket6-perl amd64 0.25-1build2 [22.8 kB] 15:51:58 Get:188 http://archive.ubuntu.com/ubuntu xenial/main amd64 libio-socket-inet6-perl all 2.72-2 [13.8 kB] 15:51:58 Get:189 http://archive.ubuntu.com/ubuntu xenial/main amd64 libnet-ip-perl all 1.26-1 [31.5 kB] 15:51:58 Get:190 http://archive.ubuntu.com/ubuntu xenial/main amd64 libnet-dns-perl amd64 0.81-2build1 [266 kB] 15:51:58 Get:191 http://archive.ubuntu.com/ubuntu xenial/main amd64 libnet-domain-tld-perl all 1.73-1 [21.4 kB] 15:51:58 Get:192 http://archive.ubuntu.com/ubuntu xenial/main amd64 libemail-valid-perl all 1.198-1 [16.5 kB] 15:51:58 Get:193 http://archive.ubuntu.com/ubuntu xenial/main amd64 libencode-locale-perl all 1.05-1 [12.3 kB] 15:51:58 Get:194 http://archive.ubuntu.com/ubuntu xenial/main amd64 libexporter-tiny-perl all 0.042-1 [28.8 kB] 15:51:58 Get:195 http://archive.ubuntu.com/ubuntu xenial/main amd64 libipc-system-simple-perl all 1.25-3 [22.8 kB] 15:51:58 Get:196 http://archive.ubuntu.com/ubuntu xenial/main amd64 libfile-basedir-perl all 0.07-1 [16.9 kB] 15:51:58 Get:197 http://archive.ubuntu.com/ubuntu xenial/main amd64 libfile-fcntllock-perl amd64 0.22-3 [32.0 kB] 15:51:58 Get:198 http://archive.ubuntu.com/ubuntu xenial/main amd64 libhttp-date-perl all 6.02-1 [10.4 kB] 15:51:58 Get:199 http://archive.ubuntu.com/ubuntu xenial/main amd64 libfile-listing-perl all 6.04-1 [9,774 B] 15:51:58 Get:200 http://archive.ubuntu.com/ubuntu xenial/main amd64 libfont-afm-perl all 1.20-1 [14.3 kB] 15:51:58 Get:201 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libfreetype6 amd64 2.6.1-0.1ubuntu2.5 [316 kB] 15:51:58 Get:202 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgettextpo0 amd64 0.19.7-2ubuntu3.1 [125 kB] 15:51:58 Get:203 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgettextpo-dev amd64 0.19.7-2ubuntu3.1 [141 kB] 15:51:58 Get:204 http://archive.ubuntu.com/ubuntu xenial/main amd64 libio-html-perl all 1.001-1 [14.9 kB] 15:51:58 Get:205 http://archive.ubuntu.com/ubuntu xenial/main amd64 liblwp-mediatypes-perl all 6.02-1 [21.7 kB] 15:51:58 Get:206 http://archive.ubuntu.com/ubuntu xenial/main amd64 libhttp-message-perl all 6.11-1 [74.3 kB] 15:51:58 Get:207 http://archive.ubuntu.com/ubuntu xenial/main amd64 libhtml-form-perl all 6.03-1 [23.5 kB] 15:51:58 Get:208 http://archive.ubuntu.com/ubuntu xenial/main amd64 libhtml-tree-perl all 5.03-2 [197 kB] 15:51:58 Get:209 http://archive.ubuntu.com/ubuntu xenial/main amd64 libhtml-format-perl all 2.11-2 [41.3 kB] 15:51:58 Get:210 http://archive.ubuntu.com/ubuntu xenial/main amd64 libhttp-cookies-perl all 6.01-1 [17.2 kB] 15:51:58 Get:211 http://archive.ubuntu.com/ubuntu xenial/main amd64 libhttp-daemon-perl all 6.01-1 [17.0 kB] 15:51:58 Get:212 http://archive.ubuntu.com/ubuntu xenial/main amd64 libhttp-negotiate-perl all 6.00-2 [13.4 kB] 15:51:58 Get:213 http://archive.ubuntu.com/ubuntu xenial/main amd64 libio-pty-perl amd64 1:1.08-1.1build1 [30.2 kB] 15:51:58 Get:214 http://archive.ubuntu.com/ubuntu xenial/main amd64 libio-string-perl all 1.08-3 [11.1 kB] 15:51:58 Get:215 http://archive.ubuntu.com/ubuntu xenial/main amd64 libipc-run-perl all 0.94-1 [92.2 kB] 15:51:59 Get:216 http://archive.ubuntu.com/ubuntu xenial/main amd64 libjpeg8 amd64 8c-2ubuntu8 [2,194 B] 15:51:59 Get:217 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 liblcms2-2 amd64 2.6-3ubuntu2.1 [136 kB] 15:51:59 Get:218 http://archive.ubuntu.com/ubuntu xenial/main amd64 liblist-moreutils-perl amd64 0.413-1build1 [67.0 kB] 15:51:59 Get:219 http://archive.ubuntu.com/ubuntu xenial/main amd64 libnet-http-perl all 6.09-1 [24.0 kB] 15:51:59 Get:220 http://archive.ubuntu.com/ubuntu xenial/main amd64 libwww-robotrules-perl all 6.01-1 [14.1 kB] 15:51:59 Get:221 http://archive.ubuntu.com/ubuntu xenial/main amd64 libwww-perl all 6.15-1 [146 kB] 15:51:59 Get:222 http://archive.ubuntu.com/ubuntu xenial/main amd64 liblwp-protocol-https-perl all 6.06-2 [8,682 B] 15:51:59 Get:223 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsys-hostname-long-perl all 1.5-1 [11.7 kB] 15:51:59 Get:224 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmail-sendmail-perl all 0.79.16-1 [26.5 kB] 15:51:59 Get:225 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpaper1 amd64 1.1.24+nmu4ubuntu1 [13.7 kB] 15:51:59 Get:226 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpaper-utils amd64 1.1.24+nmu4ubuntu1 [8,276 B] 15:51:59 Get:227 http://archive.ubuntu.com/ubuntu xenial/main amd64 libparse-debianchangelog-perl all 1.2.0-8 [50.4 kB] 15:51:59 Get:228 http://archive.ubuntu.com/ubuntu xenial/main amd64 libperlio-gzip-perl amd64 0.19-1build1 [14.2 kB] 15:51:59 Get:229 http://archive.ubuntu.com/ubuntu xenial/main amd64 libtext-levenshtein-perl all 0.13-1 [9,612 B] 15:51:59 Get:230 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libtiff5 amd64 4.0.6-1ubuntu0.8 [149 kB] 15:51:59 Get:231 http://archive.ubuntu.com/ubuntu xenial/universe amd64 libxdelta2 amd64 1.1.3-9.1ubuntu1 [47.2 kB] 15:51:59 Get:232 http://archive.ubuntu.com/ubuntu xenial/main amd64 libyaml-libyaml-perl amd64 0.41-6build1 [61.2 kB] 15:51:59 Get:233 http://archive.ubuntu.com/ubuntu xenial/main amd64 hardening-includes all 2.7ubuntu2 [13.6 kB] 15:51:59 Get:234 http://archive.ubuntu.com/ubuntu xenial/main amd64 patchutils amd64 0.3.4-1 [70.1 kB] 15:51:59 Get:235 http://archive.ubuntu.com/ubuntu xenial/main amd64 t1utils amd64 1.39-2 [53.4 kB] 15:51:59 Get:236 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 lintian all 2.5.43ubuntu0.1 [626 kB] 15:51:59 Get:237 http://archive.ubuntu.com/ubuntu xenial/main amd64 manpages-dev all 4.04-2 [2,048 kB] 15:51:59 Get:238 http://archive.ubuntu.com/ubuntu xenial/universe amd64 pbzip2 amd64 1.1.9-1 [36.3 kB] 15:51:59 Get:239 http://archive.ubuntu.com/ubuntu xenial/universe amd64 xdelta amd64 1.1.3-9.1ubuntu1 [24.1 kB] 15:51:59 Get:240 http://archive.ubuntu.com/ubuntu xenial/universe amd64 pristine-tar amd64 1.33 [102 kB] 15:51:59 Get:241 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-cffi-backend amd64 1.5.2-1ubuntu1 [58.1 kB] 15:51:59 Get:242 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-chardet all 2.3.0-2 [96.3 kB] 15:51:59 Get:243 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-enum34 all 1.1.2-1 [35.8 kB] 15:51:59 Get:244 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-idna all 2.0-3 [35.1 kB] 15:51:59 Get:245 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-ipaddress all 1.0.16-1 [18.0 kB] 15:51:59 Get:246 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-pyasn1 all 0.1.9-1 [45.1 kB] 15:51:59 Get:247 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-cryptography amd64 1.2.3-1ubuntu0.3 [200 kB] 15:51:59 Get:248 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-openssl all 0.15.1-2ubuntu0.2 [84.9 kB] 15:51:59 Get:249 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-ndg-httpsclient all 0.4.0-3 [25.1 kB] 15:51:59 Get:250 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-urllib3 all 1.13.1-2ubuntu0.16.04.4 [58.5 kB] 15:51:59 Get:251 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-requests all 2.9.1-3ubuntu0.1 [55.9 kB] 15:51:59 Get:252 http://archive.ubuntu.com/ubuntu xenial/main amd64 python3-six all 1.10.0-3 [11.0 kB] 15:51:59 Get:253 http://archive.ubuntu.com/ubuntu xenial/universe amd64 python3-dateutil all 2.4.2-1 [39.1 kB] 15:51:59 Get:254 http://archive.ubuntu.com/ubuntu xenial/main amd64 python3-roman all 2.0.0-2 [8,140 B] 15:51:59 Get:255 http://archive.ubuntu.com/ubuntu xenial/main amd64 python3-docutils all 0.12+dfsg-1 [346 kB] 15:51:59 Get:256 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python3-pyparsing all 2.0.3+dfsg1-1ubuntu0.2 [35.5 kB] 15:51:59 Get:257 http://archive.ubuntu.com/ubuntu xenial/main amd64 python3-pkg-resources all 20.7.0-1 [79.0 kB] 15:51:59 Get:258 http://archive.ubuntu.com/ubuntu xenial/main amd64 python3-chardet all 2.3.0-2 [96.2 kB] 15:51:59 Get:259 http://archive.ubuntu.com/ubuntu xenial/main amd64 python3-debian all 0.1.27ubuntu2 [43.6 kB] 15:51:59 Get:260 http://archive.ubuntu.com/ubuntu xenial/main amd64 libwebp5 amd64 0.4.4-1 [165 kB] 15:51:59 Get:261 http://archive.ubuntu.com/ubuntu xenial/main amd64 libwebpmux1 amd64 0.4.4-1 [14.2 kB] 15:51:59 Get:262 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python3-pil amd64 3.1.2-0ubuntu1.6 [313 kB] 15:51:59 Get:263 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python3-pygments all 2.1+dfsg-1ubuntu0.2 [520 kB] 15:51:59 Get:264 http://archive.ubuntu.com/ubuntu xenial/main amd64 python3-yaml amd64 3.11-3build1 [95.6 kB] 15:51:59 Get:265 http://archive.ubuntu.com/ubuntu xenial/main amd64 python3-setuptools all 20.7.0-1 [88.0 kB] 15:51:59 Get:266 http://archive.ubuntu.com/ubuntu xenial/main amd64 rename all 0.20-4 [12.0 kB] 15:51:59 Get:267 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 unzip amd64 6.0-20ubuntu1.1 [162 kB] 15:51:59 Get:268 http://archive.ubuntu.com/ubuntu xenial/main amd64 wdiff amd64 1.2.2-1build1 [28.8 kB] 15:51:59 Get:269 http://archive.ubuntu.com/ubuntu xenial/main amd64 libauthen-sasl-perl all 2.1600-1 [48.7 kB] 15:51:59 Get:270 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python3-magic all 1:5.25-2ubuntu1.4 [5,440 B] 15:51:59 debconf: delaying package configuration, since apt-utils is not installed 15:51:59 Fetched 92.6 MB in 3s (23.2 MB/s) 15:52:00 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6401 files and directories currently installed.) 15:52:00 Preparing to unpack .../libc6_2.23-0ubuntu11.3_amd64.deb ... 15:52:00 Unpacking libc6:amd64 (2.23-0ubuntu11.3) over (2.23-0ubuntu11.2) ... 15:52:05 Setting up libc6:amd64 (2.23-0ubuntu11.3) ... 15:52:06 Processing triggers for libc-bin (2.23-0ubuntu11.2) ... 15:52:07 Selecting previously unselected package libatm1:amd64. 15:52: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 ... 6401 files and directories currently installed.) 15:52:07 Preparing to unpack .../libatm1_1%3a2.5.1-1.5_amd64.deb ... 15:52:07 Unpacking libatm1:amd64 (1:2.5.1-1.5) ... 15:52:07 Selecting previously unselected package liblocale-gettext-perl. 15:52:07 Preparing to unpack .../liblocale-gettext-perl_1.07-1build1_amd64.deb ... 15:52:07 Unpacking liblocale-gettext-perl (1.07-1build1) ... 15:52:07 Selecting previously unselected package libmnl0:amd64. 15:52:07 Preparing to unpack .../libmnl0_1.0.3-5_amd64.deb ... 15:52:07 Unpacking libmnl0:amd64 (1.0.3-5) ... 15:52:07 Selecting previously unselected package libpopt0:amd64. 15:52:07 Preparing to unpack .../libpopt0_1.16-10_amd64.deb ... 15:52:07 Unpacking libpopt0:amd64 (1.16-10) ... 15:52:08 Selecting previously unselected package libgdbm3:amd64. 15:52:08 Preparing to unpack .../libgdbm3_1.8.3-13.1_amd64.deb ... 15:52:08 Unpacking libgdbm3:amd64 (1.8.3-13.1) ... 15:52:09 Selecting previously unselected package libffi6:amd64. 15:52:09 Preparing to unpack .../libffi6_3.2.1-4_amd64.deb ... 15:52:09 Unpacking libffi6:amd64 (3.2.1-4) ... 15:52:10 Selecting previously unselected package libglib2.0-0:amd64. 15:52:10 Preparing to unpack .../libglib2.0-0_2.48.2-0ubuntu4.8_amd64.deb ... 15:52:10 Unpacking libglib2.0-0:amd64 (2.48.2-0ubuntu4.8) ... 15:52:11 Selecting previously unselected package libxau6:amd64. 15:52:11 Preparing to unpack .../libxau6_1%3a1.0.8-1_amd64.deb ... 15:52:11 Unpacking libxau6:amd64 (1:1.0.8-1) ... 15:52:12 Selecting previously unselected package libxdmcp6:amd64. 15:52:12 Preparing to unpack .../libxdmcp6_1%3a1.1.2-1.1_amd64.deb ... 15:52:12 Unpacking libxdmcp6:amd64 (1:1.1.2-1.1) ... 15:52:12 Selecting previously unselected package libxcb1:amd64. 15:52:12 Preparing to unpack .../libxcb1_1.11.1-1ubuntu1_amd64.deb ... 15:52:12 Unpacking libxcb1:amd64 (1.11.1-1ubuntu1) ... 15:52:12 Selecting previously unselected package libx11-data. 15:52:12 Preparing to unpack .../libx11-data_2%3a1.6.3-1ubuntu2.2_all.deb ... 15:52:12 Unpacking libx11-data (2:1.6.3-1ubuntu2.2) ... 15:52:13 Selecting previously unselected package libx11-6:amd64. 15:52:13 Preparing to unpack .../libx11-6_2%3a1.6.3-1ubuntu2.2_amd64.deb ... 15:52:13 Unpacking libx11-6:amd64 (2:1.6.3-1ubuntu2.2) ... 15:52:14 Selecting previously unselected package libxext6:amd64. 15:52:14 Preparing to unpack .../libxext6_2%3a1.3.3-1_amd64.deb ... 15:52:14 Unpacking libxext6:amd64 (2:1.3.3-1) ... 15:52:15 Selecting previously unselected package groff-base. 15:52:15 Preparing to unpack .../groff-base_1.22.3-7_amd64.deb ... 15:52:15 Unpacking groff-base (1.22.3-7) ... 15:52:18 Selecting previously unselected package bsdmainutils. 15:52:18 Preparing to unpack .../bsdmainutils_9.0.6ubuntu3_amd64.deb ... 15:52:18 Unpacking bsdmainutils (9.0.6ubuntu3) ... 15:52:19 Selecting previously unselected package libpipeline1:amd64. 15:52:19 Preparing to unpack .../libpipeline1_1.4.1-2_amd64.deb ... 15:52:19 Unpacking libpipeline1:amd64 (1.4.1-2) ... 15:52:19 Selecting previously unselected package man-db. 15:52:19 Preparing to unpack .../man-db_2.7.5-1_amd64.deb ... 15:52:19 Unpacking man-db (2.7.5-1) ... 15:52:19 Selecting previously unselected package sgml-base. 15:52:19 Preparing to unpack .../sgml-base_1.26+nmu4ubuntu1_all.deb ... 15:52:19 Unpacking sgml-base (1.26+nmu4ubuntu1) ... 15:52:20 Selecting previously unselected package libjpeg-turbo8:amd64. 15:52:20 Preparing to unpack .../libjpeg-turbo8_1.4.2-0ubuntu3.4_amd64.deb ... 15:52:20 Unpacking libjpeg-turbo8:amd64 (1.4.2-0ubuntu3.4) ... 15:52:20 Selecting previously unselected package libunistring0:amd64. 15:52:20 Preparing to unpack .../libunistring0_0.9.3-5.2ubuntu1_amd64.deb ... 15:52:20 Unpacking libunistring0:amd64 (0.9.3-5.2ubuntu1) ... 15:52:20 Selecting previously unselected package libyaml-0-2:amd64. 15:52:20 Preparing to unpack .../libyaml-0-2_0.1.6-3_amd64.deb ... 15:52:20 Unpacking libyaml-0-2:amd64 (0.1.6-3) ... 15:52:20 Selecting previously unselected package perl-modules-5.22. 15:52:20 Preparing to unpack .../perl-modules-5.22_5.22.1-9ubuntu0.9_all.deb ... 15:52:20 Unpacking perl-modules-5.22 (5.22.1-9ubuntu0.9) ... 15:52:26 Selecting previously unselected package libperl5.22:amd64. 15:52:26 Preparing to unpack .../libperl5.22_5.22.1-9ubuntu0.9_amd64.deb ... 15:52:26 Unpacking libperl5.22:amd64 (5.22.1-9ubuntu0.9) ... 15:52:37 Selecting previously unselected package perl. 15:52:37 Preparing to unpack .../perl_5.22.1-9ubuntu0.9_amd64.deb ... 15:52:37 Unpacking perl (5.22.1-9ubuntu0.9) ... 15:52:39 Selecting previously unselected package libpython2.7-minimal:amd64. 15:52:39 Preparing to unpack .../libpython2.7-minimal_2.7.12-1ubuntu0~16.04.18_amd64.deb ... 15:52:39 Unpacking libpython2.7-minimal:amd64 (2.7.12-1ubuntu0~16.04.18) ... 15:52:46 Selecting previously unselected package python2.7-minimal. 15:52:46 Preparing to unpack .../python2.7-minimal_2.7.12-1ubuntu0~16.04.18_amd64.deb ... 15:52:46 Unpacking python2.7-minimal (2.7.12-1ubuntu0~16.04.18) ... 15:52:46 Selecting previously unselected package python-minimal. 15:52:46 Preparing to unpack .../python-minimal_2.7.12-1~16.04_amd64.deb ... 15:52:46 Unpacking python-minimal (2.7.12-1~16.04) ... 15:52:47 Selecting previously unselected package libpython2.7-stdlib:amd64. 15:52:47 Preparing to unpack .../libpython2.7-stdlib_2.7.12-1ubuntu0~16.04.18_amd64.deb ... 15:52:47 Unpacking libpython2.7-stdlib:amd64 (2.7.12-1ubuntu0~16.04.18) ... 15:52:48 Selecting previously unselected package python2.7. 15:52:48 Preparing to unpack .../python2.7_2.7.12-1ubuntu0~16.04.18_amd64.deb ... 15:52:48 Unpacking python2.7 (2.7.12-1ubuntu0~16.04.18) ... 15:52:48 Selecting previously unselected package libpython-stdlib:amd64. 15:52:48 Preparing to unpack .../libpython-stdlib_2.7.12-1~16.04_amd64.deb ... 15:52:48 Unpacking libpython-stdlib:amd64 (2.7.12-1~16.04) ... 15:52:48 Processing triggers for libc-bin (2.23-0ubuntu11.2) ... 15:52:48 Processing triggers for mime-support (3.59ubuntu1) ... 15:52:48 Setting up libpython2.7-minimal:amd64 (2.7.12-1ubuntu0~16.04.18) ... 15:52:48 Setting up python2.7-minimal (2.7.12-1ubuntu0~16.04.18) ... 15:52:49 Setting up python-minimal (2.7.12-1~16.04) ... 15:52:50 Selecting previously unselected package python. 15:52:50 (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 ... 9806 files and directories currently installed.) 15:52:50 Preparing to unpack .../python_2.7.12-1~16.04_amd64.deb ... 15:52:52 Unpacking python (2.7.12-1~16.04) ... 15:52:57 Selecting previously unselected package libjbig0:amd64. 15:52:57 Preparing to unpack .../libjbig0_2.1-3.1_amd64.deb ... 15:52:57 Unpacking libjbig0:amd64 (2.1-3.1) ... 15:52:58 Selecting previously unselected package libgmp10:amd64. 15:52:58 Preparing to unpack .../libgmp10_2%3a6.1.0+dfsg-2_amd64.deb ... 15:52:58 Unpacking libgmp10:amd64 (2:6.1.0+dfsg-2) ... 15:52:58 Selecting previously unselected package libmpfr4:amd64. 15:52:58 Preparing to unpack .../libmpfr4_3.1.4-1_amd64.deb ... 15:52:58 Unpacking libmpfr4:amd64 (3.1.4-1) ... 15:52:59 Selecting previously unselected package libmpc3:amd64. 15:52:59 Preparing to unpack .../libmpc3_1.0.3-1_amd64.deb ... 15:52:59 Unpacking libmpc3:amd64 (1.0.3-1) ... 15:52:59 Selecting previously unselected package tzdata. 15:52:59 Preparing to unpack .../tzdata_2021a-0ubuntu0.16.04_all.deb ... 15:52:59 Unpacking tzdata (2021a-0ubuntu0.16.04) ... 15:53:00 Selecting previously unselected package bzip2. 15:53:00 Preparing to unpack .../bzip2_1.0.6-8ubuntu0.2_amd64.deb ... 15:53:00 Unpacking bzip2 (1.0.6-8ubuntu0.2) ... 15:53:00 Selecting previously unselected package distro-info-data. 15:53:00 Preparing to unpack .../distro-info-data_0.28ubuntu0.17_all.deb ... 15:53:00 Unpacking distro-info-data (0.28ubuntu0.17) ... 15:53:00 Selecting previously unselected package iproute2. 15:53:00 Preparing to unpack .../iproute2_4.3.0-1ubuntu3.16.04.5_amd64.deb ... 15:53:00 Unpacking iproute2 (4.3.0-1ubuntu3.16.04.5) ... 15:53:00 Selecting previously unselected package ifupdown. 15:53:00 Preparing to unpack .../ifupdown_0.8.10ubuntu1.4_amd64.deb ... 15:53:00 Unpacking ifupdown (0.8.10ubuntu1.4) ... 15:53:01 Selecting previously unselected package libisc-export160. 15:53:01 Preparing to unpack .../libisc-export160_1%3a9.10.3.dfsg.P4-8ubuntu1.19_amd64.deb ... 15:53:01 Unpacking libisc-export160 (1:9.10.3.dfsg.P4-8ubuntu1.19) ... 15:53:01 Selecting previously unselected package libdns-export162. 15:53:01 Preparing to unpack .../libdns-export162_1%3a9.10.3.dfsg.P4-8ubuntu1.19_amd64.deb ... 15:53:01 Unpacking libdns-export162 (1:9.10.3.dfsg.P4-8ubuntu1.19) ... 15:53:01 Selecting previously unselected package isc-dhcp-client. 15:53:01 Preparing to unpack .../isc-dhcp-client_4.3.3-5ubuntu12.10_amd64.deb ... 15:53:01 Unpacking isc-dhcp-client (4.3.3-5ubuntu12.10) ... 15:53:02 Selecting previously unselected package isc-dhcp-common. 15:53:02 Preparing to unpack .../isc-dhcp-common_4.3.3-5ubuntu12.10_amd64.deb ... 15:53:02 Unpacking isc-dhcp-common (4.3.3-5ubuntu12.10) ... 15:53:02 Selecting previously unselected package less. 15:53:02 Preparing to unpack .../less_481-2.1ubuntu0.2_amd64.deb ... 15:53:02 Unpacking less (481-2.1ubuntu0.2) ... 15:53:02 Selecting previously unselected package libapt-inst2.0:amd64. 15:53:02 Preparing to unpack .../libapt-inst2.0_1.2.35_amd64.deb ... 15:53:02 Unpacking libapt-inst2.0:amd64 (1.2.35) ... 15:53:03 Selecting previously unselected package libbsd0:amd64. 15:53:03 Preparing to unpack .../libbsd0_0.8.2-1ubuntu0.1_amd64.deb ... 15:53:03 Unpacking libbsd0:amd64 (0.8.2-1ubuntu0.1) ... 15:53:03 Selecting previously unselected package libnettle6:amd64. 15:53:03 Preparing to unpack .../libnettle6_3.2-1ubuntu0.16.04.2_amd64.deb ... 15:53:03 Unpacking libnettle6:amd64 (3.2-1ubuntu0.16.04.2) ... 15:53:03 Selecting previously unselected package libhogweed4:amd64. 15:53:03 Preparing to unpack .../libhogweed4_3.2-1ubuntu0.16.04.2_amd64.deb ... 15:53:03 Unpacking libhogweed4:amd64 (3.2-1ubuntu0.16.04.2) ... 15:53:03 Selecting previously unselected package libidn11:amd64. 15:53:03 Preparing to unpack .../libidn11_1.32-3ubuntu1.2_amd64.deb ... 15:53:03 Unpacking libidn11:amd64 (1.32-3ubuntu1.2) ... 15:53:04 Selecting previously unselected package libp11-kit0:amd64. 15:53:04 Preparing to unpack .../libp11-kit0_0.23.2-5~ubuntu16.04.2_amd64.deb ... 15:53:04 Unpacking libp11-kit0:amd64 (0.23.2-5~ubuntu16.04.2) ... 15:53:04 Selecting previously unselected package libtasn1-6:amd64. 15:53:04 Preparing to unpack .../libtasn1-6_4.7-3ubuntu0.16.04.3_amd64.deb ... 15:53:04 Unpacking libtasn1-6:amd64 (4.7-3ubuntu0.16.04.3) ... 15:53:04 Selecting previously unselected package libgnutls30:amd64. 15:53:04 Preparing to unpack .../libgnutls30_3.4.10-4ubuntu1.8_amd64.deb ... 15:53:04 Unpacking libgnutls30:amd64 (3.4.10-4ubuntu1.8) ... 15:53:04 Selecting previously unselected package libpng12-0:amd64. 15:53:04 Preparing to unpack .../libpng12-0_1.2.54-1ubuntu1.1_amd64.deb ... 15:53:04 Unpacking libpng12-0:amd64 (1.2.54-1ubuntu1.1) ... 15:53:05 Selecting previously unselected package libxtables11:amd64. 15:53:05 Preparing to unpack .../libxtables11_1.6.0-2ubuntu3_amd64.deb ... 15:53:05 Unpacking libxtables11:amd64 (1.6.0-2ubuntu3) ... 15:53:05 Selecting previously unselected package lsb-release. 15:53:05 Preparing to unpack .../lsb-release_9.20160110ubuntu0.2_all.deb ... 15:53:05 Unpacking lsb-release (9.20160110ubuntu0.2) ... 15:53:05 Selecting previously unselected package netbase. 15:53:05 Preparing to unpack .../archives/netbase_5.3_all.deb ... 15:53:05 Unpacking netbase (5.3) ... 15:53:05 Selecting previously unselected package sudo. 15:53:05 Preparing to unpack .../sudo_1.8.16-0ubuntu1.10_amd64.deb ... 15:53:05 Unpacking sudo (1.8.16-0ubuntu1.10) ... 15:53:06 Selecting previously unselected package ucf. 15:53:06 Preparing to unpack .../archives/ucf_3.0036_all.deb ... 15:53:06 Moving old data out of the way 15:53:06 Unpacking ucf (3.0036) ... 15:53:06 Selecting previously unselected package openssl. 15:53:06 Preparing to unpack .../openssl_1.0.2g-1ubuntu4.19_amd64.deb ... 15:53:06 Unpacking openssl (1.0.2g-1ubuntu4.19) ... 15:53:06 Selecting previously unselected package ca-certificates. 15:53:06 Preparing to unpack .../ca-certificates_20210119~16.04.1_all.deb ... 15:53:06 Unpacking ca-certificates (20210119~16.04.1) ... 15:53:07 Selecting previously unselected package libasprintf0v5:amd64. 15:53:07 Preparing to unpack .../libasprintf0v5_0.19.7-2ubuntu3.1_amd64.deb ... 15:53:07 Unpacking libasprintf0v5:amd64 (0.19.7-2ubuntu3.1) ... 15:53:07 Selecting previously unselected package gettext-base. 15:53:07 Preparing to unpack .../gettext-base_0.19.7-2ubuntu3.1_amd64.deb ... 15:53:07 Unpacking gettext-base (0.19.7-2ubuntu3.1) ... 15:53:08 Selecting previously unselected package iso-codes. 15:53:08 Preparing to unpack .../iso-codes_3.65-1_all.deb ... 15:53:08 Unpacking iso-codes (3.65-1) ... 15:53:11 Selecting previously unselected package krb5-locales. 15:53:11 Preparing to unpack .../krb5-locales_1.13.2+dfsg-5ubuntu2.2_all.deb ... 15:53:11 Unpacking krb5-locales (1.13.2+dfsg-5ubuntu2.2) ... 15:53:12 Selecting previously unselected package libroken18-heimdal:amd64. 15:53:12 Preparing to unpack .../libroken18-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... 15:53:12 Unpacking libroken18-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:53:12 Selecting previously unselected package libasn1-8-heimdal:amd64. 15:53:12 Preparing to unpack .../libasn1-8-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... 15:53:12 Unpacking libasn1-8-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:53:12 Selecting previously unselected package libkrb5support0:amd64. 15:53:12 Preparing to unpack .../libkrb5support0_1.13.2+dfsg-5ubuntu2.2_amd64.deb ... 15:53:12 Unpacking libkrb5support0:amd64 (1.13.2+dfsg-5ubuntu2.2) ... 15:53:12 Selecting previously unselected package libk5crypto3:amd64. 15:53:12 Preparing to unpack .../libk5crypto3_1.13.2+dfsg-5ubuntu2.2_amd64.deb ... 15:53:12 Unpacking libk5crypto3:amd64 (1.13.2+dfsg-5ubuntu2.2) ... 15:53:12 Selecting previously unselected package libkeyutils1:amd64. 15:53:12 Preparing to unpack .../libkeyutils1_1.5.9-8ubuntu1_amd64.deb ... 15:53:12 Unpacking libkeyutils1:amd64 (1.5.9-8ubuntu1) ... 15:53:13 Selecting previously unselected package libkrb5-3:amd64. 15:53:13 Preparing to unpack .../libkrb5-3_1.13.2+dfsg-5ubuntu2.2_amd64.deb ... 15:53:13 Unpacking libkrb5-3:amd64 (1.13.2+dfsg-5ubuntu2.2) ... 15:53:13 Selecting previously unselected package libgssapi-krb5-2:amd64. 15:53:13 Preparing to unpack .../libgssapi-krb5-2_1.13.2+dfsg-5ubuntu2.2_amd64.deb ... 15:53:13 Unpacking libgssapi-krb5-2:amd64 (1.13.2+dfsg-5ubuntu2.2) ... 15:53:13 Selecting previously unselected package libhcrypto4-heimdal:amd64. 15:53:13 Preparing to unpack .../libhcrypto4-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... 15:53:13 Unpacking libhcrypto4-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:53:13 Selecting previously unselected package libheimbase1-heimdal:amd64. 15:53:13 Preparing to unpack .../libheimbase1-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... 15:53:13 Unpacking libheimbase1-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:53:14 Selecting previously unselected package libwind0-heimdal:amd64. 15:53:14 Preparing to unpack .../libwind0-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... 15:53:14 Unpacking libwind0-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:53:14 Selecting previously unselected package libhx509-5-heimdal:amd64. 15:53:14 Preparing to unpack .../libhx509-5-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... 15:53:14 Unpacking libhx509-5-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:53:14 Selecting previously unselected package libkrb5-26-heimdal:amd64. 15:53:14 Preparing to unpack .../libkrb5-26-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... 15:53:14 Unpacking libkrb5-26-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:53:14 Selecting previously unselected package libheimntlm0-heimdal:amd64. 15:53:14 Preparing to unpack .../libheimntlm0-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... 15:53:14 Unpacking libheimntlm0-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:53:14 Selecting previously unselected package libgssapi3-heimdal:amd64. 15:53:14 Preparing to unpack .../libgssapi3-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb ... 15:53:14 Unpacking libgssapi3-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:53:15 Selecting previously unselected package libsasl2-modules-db:amd64. 15:53:15 Preparing to unpack .../libsasl2-modules-db_2.1.26.dfsg1-14ubuntu0.2_amd64.deb ... 15:53:15 Unpacking libsasl2-modules-db:amd64 (2.1.26.dfsg1-14ubuntu0.2) ... 15:53:15 Selecting previously unselected package libsasl2-2:amd64. 15:53:15 Preparing to unpack .../libsasl2-2_2.1.26.dfsg1-14ubuntu0.2_amd64.deb ... 15:53:15 Unpacking libsasl2-2:amd64 (2.1.26.dfsg1-14ubuntu0.2) ... 15:53:15 Selecting previously unselected package libldap-2.4-2:amd64. 15:53:15 Preparing to unpack .../libldap-2.4-2_2.4.42+dfsg-2ubuntu3.13_amd64.deb ... 15:53:15 Unpacking libldap-2.4-2:amd64 (2.4.42+dfsg-2ubuntu3.13) ... 15:53:15 Selecting previously unselected package librtmp1:amd64. 15:53:15 Preparing to unpack .../librtmp1_2.4+20151223.gitfa8646d-1ubuntu0.1_amd64.deb ... 15:53:15 Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d-1ubuntu0.1) ... 15:53:15 Selecting previously unselected package libcurl3-gnutls:amd64. 15:53:15 Preparing to unpack .../libcurl3-gnutls_7.47.0-1ubuntu2.19_amd64.deb ... 15:53:15 Unpacking libcurl3-gnutls:amd64 (7.47.0-1ubuntu2.19) ... 15:53:16 Selecting previously unselected package libedit2:amd64. 15:53:16 Preparing to unpack .../libedit2_3.1-20150325-1ubuntu2_amd64.deb ... 15:53:16 Unpacking libedit2:amd64 (3.1-20150325-1ubuntu2) ... 15:53:16 Selecting previously unselected package libglib2.0-data. 15:53:16 Preparing to unpack .../libglib2.0-data_2.48.2-0ubuntu4.8_all.deb ... 15:53:16 Unpacking libglib2.0-data (2.48.2-0ubuntu4.8) ... 15:53:16 Selecting previously unselected package libicu55:amd64. 15:53:16 Preparing to unpack .../libicu55_55.1-7ubuntu0.5_amd64.deb ... 15:53:16 Unpacking libicu55:amd64 (55.1-7ubuntu0.5) ... 15:53:18 Selecting previously unselected package libsasl2-modules:amd64. 15:53:18 Preparing to unpack .../libsasl2-modules_2.1.26.dfsg1-14ubuntu0.2_amd64.deb ... 15:53:18 Unpacking libsasl2-modules:amd64 (2.1.26.dfsg1-14ubuntu0.2) ... 15:53:18 Selecting previously unselected package libxml2:amd64. 15:53:18 Preparing to unpack .../libxml2_2.9.3+dfsg1-1ubuntu0.7_amd64.deb ... 15:53:18 Unpacking libxml2:amd64 (2.9.3+dfsg1-1ubuntu0.7) ... 15:53:18 Selecting previously unselected package libxmuu1:amd64. 15:53:18 Preparing to unpack .../libxmuu1_2%3a1.1.2-2_amd64.deb ... 15:53:18 Unpacking libxmuu1:amd64 (2:1.1.2-2) ... 15:53:18 Selecting previously unselected package manpages. 15:53:18 Preparing to unpack .../manpages_4.04-2_all.deb ... 15:53:18 Unpacking manpages (4.04-2) ... 15:53:19 Selecting previously unselected package openssh-client. 15:53:19 Preparing to unpack .../openssh-client_1%3a7.2p2-4ubuntu2.10_amd64.deb ... 15:53:19 Unpacking openssh-client (1:7.2p2-4ubuntu2.10) ... 15:53:19 Selecting previously unselected package python-apt-common. 15:53:19 Preparing to unpack .../python-apt-common_1.1.0~beta1ubuntu0.16.04.12_all.deb ... 15:53:19 Unpacking python-apt-common (1.1.0~beta1ubuntu0.16.04.12) ... 15:53:19 Selecting previously unselected package python3-apt. 15:53:19 Preparing to unpack .../python3-apt_1.1.0~beta1ubuntu0.16.04.12_amd64.deb ... 15:53:19 Unpacking python3-apt (1.1.0~beta1ubuntu0.16.04.12) ... 15:53:19 Selecting previously unselected package rsync. 15:53:19 Preparing to unpack .../rsync_3.1.1-3ubuntu1.3_amd64.deb ... 15:53:20 Unpacking rsync (3.1.1-3ubuntu1.3) ... 15:53:20 Selecting previously unselected package shared-mime-info. 15:53:20 Preparing to unpack .../shared-mime-info_1.5-2ubuntu0.2_amd64.deb ... 15:53:20 Unpacking shared-mime-info (1.5-2ubuntu0.2) ... 15:53:20 Selecting previously unselected package strace. 15:53:20 Preparing to unpack .../strace_4.11-1ubuntu3_amd64.deb ... 15:53:20 Unpacking strace (4.11-1ubuntu3) ... 15:53:20 Selecting previously unselected package wget. 15:53:20 Preparing to unpack .../wget_1.17.1-1ubuntu1.5_amd64.deb ... 15:53:20 Unpacking wget (1.17.1-1ubuntu1.5) ... 15:53:20 Selecting previously unselected package xauth. 15:53:20 Preparing to unpack .../xauth_1%3a1.0.9-1ubuntu2_amd64.deb ... 15:53:20 Unpacking xauth (1:1.0.9-1ubuntu2) ... 15:53:21 Selecting previously unselected package xdg-user-dirs. 15:53:21 Preparing to unpack .../xdg-user-dirs_0.15-2ubuntu6.16.04.1_amd64.deb ... 15:53:21 Unpacking xdg-user-dirs (0.15-2ubuntu6.16.04.1) ... 15:53:21 Selecting previously unselected package xml-core. 15:53:21 Preparing to unpack .../xml-core_0.13+nmu2_all.deb ... 15:53:21 Unpacking xml-core (0.13+nmu2) ... 15:53:22 Selecting previously unselected package at. 15:53:22 Preparing to unpack .../at_3.1.18-2ubuntu1_amd64.deb ... 15:53:22 Unpacking at (3.1.18-2ubuntu1) ... 15:53:22 Selecting previously unselected package autotools-dev. 15:53:22 Preparing to unpack .../autotools-dev_20150820.1_all.deb ... 15:53:22 Unpacking autotools-dev (20150820.1) ... 15:53:22 Selecting previously unselected package binutils. 15:53:22 Preparing to unpack .../binutils_2.26.1-1ubuntu1~16.04.8_amd64.deb ... 15:53:22 Unpacking binutils (2.26.1-1ubuntu1~16.04.8) ... 15:53:24 Selecting previously unselected package libc-dev-bin. 15:53:24 Preparing to unpack .../libc-dev-bin_2.23-0ubuntu11.3_amd64.deb ... 15:53:24 Unpacking libc-dev-bin (2.23-0ubuntu11.3) ... 15:53:25 Selecting previously unselected package linux-libc-dev:amd64. 15:53:25 Preparing to unpack .../linux-libc-dev_4.4.0-210.242_amd64.deb ... 15:53:25 Unpacking linux-libc-dev:amd64 (4.4.0-210.242) ... 15:53:26 Selecting previously unselected package libc6-dev:amd64. 15:53:26 Preparing to unpack .../libc6-dev_2.23-0ubuntu11.3_amd64.deb ... 15:53:26 Unpacking libc6-dev:amd64 (2.23-0ubuntu11.3) ... 15:53:27 Selecting previously unselected package libisl15:amd64. 15:53:27 Preparing to unpack .../libisl15_0.16.1-1_amd64.deb ... 15:53:27 Unpacking libisl15:amd64 (0.16.1-1) ... 15:53:28 Selecting previously unselected package cpp-5. 15:53:28 Preparing to unpack .../cpp-5_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:28 Unpacking cpp-5 (5.4.0-6ubuntu1~16.04.12) ... 15:53:29 Selecting previously unselected package cpp. 15:53:29 Preparing to unpack .../cpp_4%3a5.3.1-1ubuntu1_amd64.deb ... 15:53:29 Unpacking cpp (4:5.3.1-1ubuntu1) ... 15:53:29 Selecting previously unselected package libcc1-0:amd64. 15:53:29 Preparing to unpack .../libcc1-0_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:30 Unpacking libcc1-0:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:53:30 Selecting previously unselected package libgomp1:amd64. 15:53:30 Preparing to unpack .../libgomp1_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:30 Unpacking libgomp1:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:53:30 Selecting previously unselected package libitm1:amd64. 15:53:30 Preparing to unpack .../libitm1_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:30 Unpacking libitm1:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:53:30 Selecting previously unselected package libatomic1:amd64. 15:53:30 Preparing to unpack .../libatomic1_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:30 Unpacking libatomic1:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:53:30 Selecting previously unselected package libasan2:amd64. 15:53:30 Preparing to unpack .../libasan2_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:30 Unpacking libasan2:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:53:31 Selecting previously unselected package liblsan0:amd64. 15:53:31 Preparing to unpack .../liblsan0_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:31 Unpacking liblsan0:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:53:31 Selecting previously unselected package libtsan0:amd64. 15:53:31 Preparing to unpack .../libtsan0_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:31 Unpacking libtsan0:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:53:31 Selecting previously unselected package libubsan0:amd64. 15:53:31 Preparing to unpack .../libubsan0_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:31 Unpacking libubsan0:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:53:32 Selecting previously unselected package libcilkrts5:amd64. 15:53:32 Preparing to unpack .../libcilkrts5_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:32 Unpacking libcilkrts5:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:53:38 Selecting previously unselected package libmpx0:amd64. 15:53:38 Preparing to unpack .../libmpx0_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:39 Unpacking libmpx0:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:53:39 Selecting previously unselected package libquadmath0:amd64. 15:53:39 Preparing to unpack .../libquadmath0_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:39 Unpacking libquadmath0:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:53:39 Selecting previously unselected package libgcc-5-dev:amd64. 15:53:39 Preparing to unpack .../libgcc-5-dev_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:39 Unpacking libgcc-5-dev:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:53:40 Selecting previously unselected package gcc-5. 15:53:40 Preparing to unpack .../gcc-5_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:40 Unpacking gcc-5 (5.4.0-6ubuntu1~16.04.12) ... 15:53:42 Selecting previously unselected package gcc. 15:53:42 Preparing to unpack .../gcc_4%3a5.3.1-1ubuntu1_amd64.deb ... 15:53:42 Unpacking gcc (4:5.3.1-1ubuntu1) ... 15:53:42 Selecting previously unselected package libstdc++-5-dev:amd64. 15:53:42 Preparing to unpack .../libstdc++-5-dev_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:42 Unpacking libstdc++-5-dev:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:53:43 Selecting previously unselected package g++-5. 15:53:43 Preparing to unpack .../g++-5_5.4.0-6ubuntu1~16.04.12_amd64.deb ... 15:53:43 Unpacking g++-5 (5.4.0-6ubuntu1~16.04.12) ... 15:53:45 Selecting previously unselected package g++. 15:53:45 Preparing to unpack .../g++_4%3a5.3.1-1ubuntu1_amd64.deb ... 15:53:45 Unpacking g++ (4:5.3.1-1ubuntu1) ... 15:53:45 Selecting previously unselected package make. 15:53:45 Preparing to unpack .../archives/make_4.1-6_amd64.deb ... 15:53:45 Unpacking make (4.1-6) ... 15:53:45 Selecting previously unselected package libdpkg-perl. 15:53:45 Preparing to unpack .../libdpkg-perl_1.18.4ubuntu1.7_all.deb ... 15:53:45 Unpacking libdpkg-perl (1.18.4ubuntu1.7) ... 15:53:45 Selecting previously unselected package xz-utils. 15:53:45 Preparing to unpack .../xz-utils_5.1.1alpha+20120614-2ubuntu2_amd64.deb ... 15:53:45 Unpacking xz-utils (5.1.1alpha+20120614-2ubuntu2) ... 15:53:45 Selecting previously unselected package patch. 15:53:45 Preparing to unpack .../patch_2.7.5-1ubuntu0.16.04.2_amd64.deb ... 15:53:45 Unpacking patch (2.7.5-1ubuntu0.16.04.2) ... 15:53:46 Selecting previously unselected package dpkg-dev. 15:53:46 Preparing to unpack .../dpkg-dev_1.18.4ubuntu1.7_all.deb ... 15:53:46 Unpacking dpkg-dev (1.18.4ubuntu1.7) ... 15:53:46 Selecting previously unselected package build-essential. 15:53:46 Preparing to unpack .../build-essential_12.1ubuntu2_amd64.deb ... 15:53:46 Unpacking build-essential (12.1ubuntu2) ... 15:53:46 Selecting previously unselected package debootstrap. 15:53:46 Preparing to unpack .../debootstrap_1.0.78+nmu1ubuntu1.13_all.deb ... 15:53:46 Unpacking debootstrap (1.0.78+nmu1ubuntu1.13) ... 15:53:46 Selecting previously unselected package pbuilder. 15:53:46 Preparing to unpack .../pbuilder_0.223_all.deb ... 15:53:46 Unpacking pbuilder (0.223) ... 15:53:46 Selecting previously unselected package cowdancer. 15:53:46 Preparing to unpack .../cowdancer_0.73_amd64.deb ... 15:53:46 Unpacking cowdancer (0.73) ... 15:53:47 Selecting previously unselected package cowbuilder. 15:53:47 Preparing to unpack .../cowbuilder_0.73_amd64.deb ... 15:53:47 Unpacking cowbuilder (0.73) ... 15:53:47 Selecting previously unselected package curl. 15:53:47 Preparing to unpack .../curl_7.47.0-1ubuntu2.19_amd64.deb ... 15:53:47 Unpacking curl (7.47.0-1ubuntu2.19) ... 15:53:47 Selecting previously unselected package dctrl-tools. 15:53:47 Preparing to unpack .../dctrl-tools_2.24-2_amd64.deb ... 15:53:47 Unpacking dctrl-tools (2.24-2) ... 15:53:47 Selecting previously unselected package libcroco3:amd64. 15:53:47 Preparing to unpack .../libcroco3_0.6.11-1_amd64.deb ... 15:53:47 Unpacking libcroco3:amd64 (0.6.11-1) ... 15:53:47 Selecting previously unselected package gettext. 15:53:47 Preparing to unpack .../gettext_0.19.7-2ubuntu3.1_amd64.deb ... 15:53:47 Unpacking gettext (0.19.7-2ubuntu3.1) ... 15:53:48 Selecting previously unselected package intltool-debian. 15:53:48 Preparing to unpack .../intltool-debian_0.35.0+20060710.4_all.deb ... 15:53:48 Unpacking intltool-debian (0.35.0+20060710.4) ... 15:53:48 Selecting previously unselected package po-debconf. 15:53:48 Preparing to unpack .../po-debconf_1.0.19_all.deb ... 15:53:48 Unpacking po-debconf (1.0.19) ... 15:53:48 Selecting previously unselected package libarchive-zip-perl. 15:53:48 Preparing to unpack .../libarchive-zip-perl_1.56-2ubuntu0.1_all.deb ... 15:53:48 Unpacking libarchive-zip-perl (1.56-2ubuntu0.1) ... 15:53:48 Selecting previously unselected package libfile-stripnondeterminism-perl. 15:53:48 Preparing to unpack .../libfile-stripnondeterminism-perl_0.015-1_all.deb ... 15:53:48 Unpacking libfile-stripnondeterminism-perl (0.015-1) ... 15:53:48 Selecting previously unselected package libtimedate-perl. 15:53:48 Preparing to unpack .../libtimedate-perl_2.3000-2_all.deb ... 15:53:48 Unpacking libtimedate-perl (2.3000-2) ... 15:53:48 Selecting previously unselected package dh-strip-nondeterminism. 15:53:48 Preparing to unpack .../dh-strip-nondeterminism_0.015-1_all.deb ... 15:53:48 Unpacking dh-strip-nondeterminism (0.015-1) ... 15:53:49 Selecting previously unselected package debhelper. 15:53:49 Preparing to unpack .../debhelper_9.20160115ubuntu3_all.deb ... 15:53:49 Unpacking debhelper (9.20160115ubuntu3) ... 15:53:50 Selecting previously unselected package devscripts. 15:53:50 Preparing to unpack .../devscripts_2.16.2ubuntu3_amd64.deb ... 15:53:50 Unpacking devscripts (2.16.2ubuntu3) ... 15:53:50 Selecting previously unselected package diffstat. 15:53:50 Preparing to unpack .../diffstat_1.61-1_amd64.deb ... 15:53:50 Unpacking diffstat (1.61-1) ... 15:53:50 Selecting previously unselected package docutils-common. 15:53:50 Preparing to unpack .../docutils-common_0.12+dfsg-1_all.deb ... 15:53:50 Unpacking docutils-common (0.12+dfsg-1) ... 15:53:51 Selecting previously unselected package dput. 15:53:51 Preparing to unpack .../dput_0.9.6.4ubuntu3_all.deb ... 15:53:51 Unpacking dput (0.9.6.4ubuntu3) ... 15:53:51 Selecting previously unselected package libfakeroot:amd64. 15:53:51 Preparing to unpack .../libfakeroot_1.20.2-1ubuntu1_amd64.deb ... 15:53:51 Unpacking libfakeroot:amd64 (1.20.2-1ubuntu1) ... 15:53:51 Selecting previously unselected package fakeroot. 15:53:51 Preparing to unpack .../fakeroot_1.20.2-1ubuntu1_amd64.deb ... 15:53:51 Unpacking fakeroot (1.20.2-1ubuntu1) ... 15:53:51 Selecting previously unselected package liberror-perl. 15:53:51 Preparing to unpack .../liberror-perl_0.17-1.2_all.deb ... 15:53:51 Unpacking liberror-perl (0.17-1.2) ... 15:53:52 Selecting previously unselected package git-man. 15:53:52 Preparing to unpack .../git-man_1%3a2.7.4-0ubuntu1.10_all.deb ... 15:53:52 Unpacking git-man (1:2.7.4-0ubuntu1.10) ... 15:53:52 Selecting previously unselected package git. 15:53:52 Preparing to unpack .../git_1%3a2.7.4-0ubuntu1.10_amd64.deb ... 15:53:52 Unpacking git (1:2.7.4-0ubuntu1.10) ... 15:53:53 Selecting previously unselected package python-six. 15:53:53 Preparing to unpack .../python-six_1.11.0_all.deb ... 15:53:53 Unpacking python-six (1.11.0) ... 15:53:53 Selecting previously unselected package python-dateutil. 15:53:53 Preparing to unpack .../python-dateutil_2.4.2-1_all.deb ... 15:53:53 Unpacking python-dateutil (2.4.2-1) ... 15:53:53 Selecting previously unselected package python-pkg-resources. 15:53:53 Preparing to unpack .../python-pkg-resources_20.7.0-1_all.deb ... 15:53:53 Unpacking python-pkg-resources (20.7.0-1) ... 15:53:54 Selecting previously unselected package git-buildpackage. 15:53:54 Preparing to unpack .../git-buildpackage_0.7.2_all.deb ... 15:53:54 Unpacking git-buildpackage (0.7.2) ... 15:53:54 Selecting previously unselected package libalgorithm-diff-perl. 15:53:54 Preparing to unpack .../libalgorithm-diff-perl_1.19.03-1_all.deb ... 15:53:54 Unpacking libalgorithm-diff-perl (1.19.03-1) ... 15:53:54 Selecting previously unselected package libalgorithm-diff-xs-perl. 15:53:54 Preparing to unpack .../libalgorithm-diff-xs-perl_0.04-4build1_amd64.deb ... 15:53:54 Unpacking libalgorithm-diff-xs-perl (0.04-4build1) ... 15:53:54 Selecting previously unselected package libalgorithm-merge-perl. 15:53:54 Preparing to unpack .../libalgorithm-merge-perl_0.08-3_all.deb ... 15:53:54 Unpacking libalgorithm-merge-perl (0.08-3) ... 15:53:55 Selecting previously unselected package libapt-pkg-perl. 15:53:55 Preparing to unpack .../libapt-pkg-perl_0.1.29build7_amd64.deb ... 15:53:55 Unpacking libapt-pkg-perl (0.1.29build7) ... 15:53:55 Selecting previously unselected package libasprintf-dev:amd64. 15:53:55 Preparing to unpack .../libasprintf-dev_0.19.7-2ubuntu3.1_amd64.deb ... 15:53:55 Unpacking libasprintf-dev:amd64 (0.19.7-2ubuntu3.1) ... 15:53:55 Selecting previously unselected package libhtml-tagset-perl. 15:53:55 Preparing to unpack .../libhtml-tagset-perl_3.20-2_all.deb ... 15:53:55 Unpacking libhtml-tagset-perl (3.20-2) ... 15:53:55 Selecting previously unselected package liburi-perl. 15:53:55 Preparing to unpack .../liburi-perl_1.71-1_all.deb ... 15:53:55 Unpacking liburi-perl (1.71-1) ... 15:53:55 Selecting previously unselected package libhtml-parser-perl. 15:53:55 Preparing to unpack .../libhtml-parser-perl_3.72-1_amd64.deb ... 15:53:55 Unpacking libhtml-parser-perl (3.72-1) ... 15:53:55 Selecting previously unselected package libcgi-pm-perl. 15:53:55 Preparing to unpack .../libcgi-pm-perl_4.26-1_all.deb ... 15:53:55 Unpacking libcgi-pm-perl (4.26-1) ... 15:53:55 Selecting previously unselected package libfcgi-perl. 15:53:55 Preparing to unpack .../libfcgi-perl_0.77-1build1_amd64.deb ... 15:53:55 Unpacking libfcgi-perl (0.77-1build1) ... 15:53:56 Selecting previously unselected package libcgi-fast-perl. 15:53:56 Preparing to unpack .../libcgi-fast-perl_1%3a2.10-1_all.deb ... 15:53:56 Unpacking libcgi-fast-perl (1:2.10-1) ... 15:53:56 Selecting previously unselected package libsub-name-perl. 15:53:56 Preparing to unpack .../libsub-name-perl_0.14-1build1_amd64.deb ... 15:53:56 Unpacking libsub-name-perl (0.14-1build1) ... 15:53:56 Selecting previously unselected package libclass-accessor-perl. 15:53:56 Preparing to unpack .../libclass-accessor-perl_0.34-1_all.deb ... 15:53:56 Unpacking libclass-accessor-perl (0.34-1) ... 15:53:56 Selecting previously unselected package libclone-perl. 15:53:56 Preparing to unpack .../libclone-perl_0.38-1build1_amd64.deb ... 15:53:56 Unpacking libclone-perl (0.38-1build1) ... 15:53:56 Selecting previously unselected package libdata-alias-perl. 15:53:56 Preparing to unpack .../libdata-alias-perl_1.20-1build1_amd64.deb ... 15:53:56 Unpacking libdata-alias-perl (1.20-1build1) ... 15:53:56 Selecting previously unselected package libdigest-hmac-perl. 15:53:56 Preparing to unpack .../libdigest-hmac-perl_1.03+dfsg-1_all.deb ... 15:53:56 Unpacking libdigest-hmac-perl (1.03+dfsg-1) ... 15:53:57 Selecting previously unselected package libdistro-info-perl. 15:53:57 Preparing to unpack .../libdistro-info-perl_0.14ubuntu0.2_all.deb ... 15:53:57 Unpacking libdistro-info-perl (0.14ubuntu0.2) ... 15:53:57 Selecting previously unselected package libnet-ssleay-perl. 15:53:57 Preparing to unpack .../libnet-ssleay-perl_1.72-1build1_amd64.deb ... 15:53:57 Unpacking libnet-ssleay-perl (1.72-1build1) ... 15:53:57 Selecting previously unselected package libio-socket-ssl-perl. 15:53:57 Preparing to unpack .../libio-socket-ssl-perl_2.024-1_all.deb ... 15:53:57 Unpacking libio-socket-ssl-perl (2.024-1) ... 15:53:57 Selecting previously unselected package libnet-smtp-ssl-perl. 15:53:57 Preparing to unpack .../libnet-smtp-ssl-perl_1.03-1_all.deb ... 15:53:57 Unpacking libnet-smtp-ssl-perl (1.03-1) ... 15:53:58 Selecting previously unselected package libmailtools-perl. 15:53:58 Preparing to unpack .../libmailtools-perl_2.13-1_all.deb ... 15:53:58 Unpacking libmailtools-perl (2.13-1) ... 15:53:58 Selecting previously unselected package libsocket6-perl. 15:53:58 Preparing to unpack .../libsocket6-perl_0.25-1build2_amd64.deb ... 15:53:58 Unpacking libsocket6-perl (0.25-1build2) ... 15:53:58 Selecting previously unselected package libio-socket-inet6-perl. 15:53:58 Preparing to unpack .../libio-socket-inet6-perl_2.72-2_all.deb ... 15:53:58 Unpacking libio-socket-inet6-perl (2.72-2) ... 15:53:58 Selecting previously unselected package libnet-ip-perl. 15:53:58 Preparing to unpack .../libnet-ip-perl_1.26-1_all.deb ... 15:53:58 Unpacking libnet-ip-perl (1.26-1) ... 15:53:58 Selecting previously unselected package libnet-dns-perl. 15:53:58 Preparing to unpack .../libnet-dns-perl_0.81-2build1_amd64.deb ... 15:53:58 Unpacking libnet-dns-perl (0.81-2build1) ... 15:53:59 Selecting previously unselected package libnet-domain-tld-perl. 15:53:59 Preparing to unpack .../libnet-domain-tld-perl_1.73-1_all.deb ... 15:53:59 Unpacking libnet-domain-tld-perl (1.73-1) ... 15:53:59 Selecting previously unselected package libemail-valid-perl. 15:53:59 Preparing to unpack .../libemail-valid-perl_1.198-1_all.deb ... 15:53:59 Unpacking libemail-valid-perl (1.198-1) ... 15:53:59 Selecting previously unselected package libencode-locale-perl. 15:53:59 Preparing to unpack .../libencode-locale-perl_1.05-1_all.deb ... 15:53:59 Unpacking libencode-locale-perl (1.05-1) ... 15:53:59 Selecting previously unselected package libexporter-tiny-perl. 15:53:59 Preparing to unpack .../libexporter-tiny-perl_0.042-1_all.deb ... 15:53:59 Unpacking libexporter-tiny-perl (0.042-1) ... 15:53:59 Selecting previously unselected package libipc-system-simple-perl. 15:53:59 Preparing to unpack .../libipc-system-simple-perl_1.25-3_all.deb ... 15:53:59 Unpacking libipc-system-simple-perl (1.25-3) ... 15:53:59 Selecting previously unselected package libfile-basedir-perl. 15:53:59 Preparing to unpack .../libfile-basedir-perl_0.07-1_all.deb ... 15:53:59 Unpacking libfile-basedir-perl (0.07-1) ... 15:53:59 Selecting previously unselected package libfile-fcntllock-perl. 15:53:59 Preparing to unpack .../libfile-fcntllock-perl_0.22-3_amd64.deb ... 15:53:59 Unpacking libfile-fcntllock-perl (0.22-3) ... 15:54:00 Selecting previously unselected package libhttp-date-perl. 15:54:00 Preparing to unpack .../libhttp-date-perl_6.02-1_all.deb ... 15:54:00 Unpacking libhttp-date-perl (6.02-1) ... 15:54:00 Selecting previously unselected package libfile-listing-perl. 15:54:00 Preparing to unpack .../libfile-listing-perl_6.04-1_all.deb ... 15:54:00 Unpacking libfile-listing-perl (6.04-1) ... 15:54:00 Selecting previously unselected package libfont-afm-perl. 15:54:00 Preparing to unpack .../libfont-afm-perl_1.20-1_all.deb ... 15:54:00 Unpacking libfont-afm-perl (1.20-1) ... 15:54:00 Selecting previously unselected package libfreetype6:amd64. 15:54:00 Preparing to unpack .../libfreetype6_2.6.1-0.1ubuntu2.5_amd64.deb ... 15:54:00 Unpacking libfreetype6:amd64 (2.6.1-0.1ubuntu2.5) ... 15:54:01 Selecting previously unselected package libgettextpo0:amd64. 15:54:01 Preparing to unpack .../libgettextpo0_0.19.7-2ubuntu3.1_amd64.deb ... 15:54:01 Unpacking libgettextpo0:amd64 (0.19.7-2ubuntu3.1) ... 15:54:01 Selecting previously unselected package libgettextpo-dev:amd64. 15:54:01 Preparing to unpack .../libgettextpo-dev_0.19.7-2ubuntu3.1_amd64.deb ... 15:54:01 Unpacking libgettextpo-dev:amd64 (0.19.7-2ubuntu3.1) ... 15:54:01 Selecting previously unselected package libio-html-perl. 15:54:01 Preparing to unpack .../libio-html-perl_1.001-1_all.deb ... 15:54:01 Unpacking libio-html-perl (1.001-1) ... 15:54:01 Selecting previously unselected package liblwp-mediatypes-perl. 15:54:01 Preparing to unpack .../liblwp-mediatypes-perl_6.02-1_all.deb ... 15:54:01 Unpacking liblwp-mediatypes-perl (6.02-1) ... 15:54:01 Selecting previously unselected package libhttp-message-perl. 15:54:01 Preparing to unpack .../libhttp-message-perl_6.11-1_all.deb ... 15:54:01 Unpacking libhttp-message-perl (6.11-1) ... 15:54:01 Selecting previously unselected package libhtml-form-perl. 15:54:01 Preparing to unpack .../libhtml-form-perl_6.03-1_all.deb ... 15:54:01 Unpacking libhtml-form-perl (6.03-1) ... 15:54:01 Selecting previously unselected package libhtml-tree-perl. 15:54:01 Preparing to unpack .../libhtml-tree-perl_5.03-2_all.deb ... 15:54:01 Unpacking libhtml-tree-perl (5.03-2) ... 15:54:02 Selecting previously unselected package libhtml-format-perl. 15:54:02 Preparing to unpack .../libhtml-format-perl_2.11-2_all.deb ... 15:54:02 Unpacking libhtml-format-perl (2.11-2) ... 15:54:02 Selecting previously unselected package libhttp-cookies-perl. 15:54:02 Preparing to unpack .../libhttp-cookies-perl_6.01-1_all.deb ... 15:54:02 Unpacking libhttp-cookies-perl (6.01-1) ... 15:54:02 Selecting previously unselected package libhttp-daemon-perl. 15:54:02 Preparing to unpack .../libhttp-daemon-perl_6.01-1_all.deb ... 15:54:02 Unpacking libhttp-daemon-perl (6.01-1) ... 15:54:02 Selecting previously unselected package libhttp-negotiate-perl. 15:54:02 Preparing to unpack .../libhttp-negotiate-perl_6.00-2_all.deb ... 15:54:02 Unpacking libhttp-negotiate-perl (6.00-2) ... 15:54:02 Selecting previously unselected package libio-pty-perl. 15:54:02 Preparing to unpack .../libio-pty-perl_1%3a1.08-1.1build1_amd64.deb ... 15:54:02 Unpacking libio-pty-perl (1:1.08-1.1build1) ... 15:54:02 Selecting previously unselected package libio-string-perl. 15:54:02 Preparing to unpack .../libio-string-perl_1.08-3_all.deb ... 15:54:02 Unpacking libio-string-perl (1.08-3) ... 15:54:03 Selecting previously unselected package libipc-run-perl. 15:54:03 Preparing to unpack .../libipc-run-perl_0.94-1_all.deb ... 15:54:03 Unpacking libipc-run-perl (0.94-1) ... 15:54:03 Selecting previously unselected package libjpeg8:amd64. 15:54:03 Preparing to unpack .../libjpeg8_8c-2ubuntu8_amd64.deb ... 15:54:03 Unpacking libjpeg8:amd64 (8c-2ubuntu8) ... 15:54:03 Selecting previously unselected package liblcms2-2:amd64. 15:54:03 Preparing to unpack .../liblcms2-2_2.6-3ubuntu2.1_amd64.deb ... 15:54:03 Unpacking liblcms2-2:amd64 (2.6-3ubuntu2.1) ... 15:54:03 Selecting previously unselected package liblist-moreutils-perl. 15:54:03 Preparing to unpack .../liblist-moreutils-perl_0.413-1build1_amd64.deb ... 15:54:03 Unpacking liblist-moreutils-perl (0.413-1build1) ... 15:54:03 Selecting previously unselected package libnet-http-perl. 15:54:03 Preparing to unpack .../libnet-http-perl_6.09-1_all.deb ... 15:54:03 Unpacking libnet-http-perl (6.09-1) ... 15:54:04 Selecting previously unselected package libwww-robotrules-perl. 15:54:04 Preparing to unpack .../libwww-robotrules-perl_6.01-1_all.deb ... 15:54:04 Unpacking libwww-robotrules-perl (6.01-1) ... 15:54:07 Selecting previously unselected package libwww-perl. 15:54:07 Preparing to unpack .../libwww-perl_6.15-1_all.deb ... 15:54:08 Unpacking libwww-perl (6.15-1) ... 15:54:09 Selecting previously unselected package liblwp-protocol-https-perl. 15:54:09 Preparing to unpack .../liblwp-protocol-https-perl_6.06-2_all.deb ... 15:54:09 Unpacking liblwp-protocol-https-perl (6.06-2) ... 15:54:10 Selecting previously unselected package libsys-hostname-long-perl. 15:54:10 Preparing to unpack .../libsys-hostname-long-perl_1.5-1_all.deb ... 15:54:10 Unpacking libsys-hostname-long-perl (1.5-1) ... 15:54:10 Selecting previously unselected package libmail-sendmail-perl. 15:54:10 Preparing to unpack .../libmail-sendmail-perl_0.79.16-1_all.deb ... 15:54:10 Unpacking libmail-sendmail-perl (0.79.16-1) ... 15:54:10 Selecting previously unselected package libpaper1:amd64. 15:54:10 Preparing to unpack .../libpaper1_1.1.24+nmu4ubuntu1_amd64.deb ... 15:54:10 Unpacking libpaper1:amd64 (1.1.24+nmu4ubuntu1) ... 15:54:10 Selecting previously unselected package libpaper-utils. 15:54:10 Preparing to unpack .../libpaper-utils_1.1.24+nmu4ubuntu1_amd64.deb ... 15:54:10 Unpacking libpaper-utils (1.1.24+nmu4ubuntu1) ... 15:54:10 Selecting previously unselected package libparse-debianchangelog-perl. 15:54:10 Preparing to unpack .../libparse-debianchangelog-perl_1.2.0-8_all.deb ... 15:54:10 Unpacking libparse-debianchangelog-perl (1.2.0-8) ... 15:54:10 Selecting previously unselected package libperlio-gzip-perl. 15:54:10 Preparing to unpack .../libperlio-gzip-perl_0.19-1build1_amd64.deb ... 15:54:10 Unpacking libperlio-gzip-perl (0.19-1build1) ... 15:54:10 Selecting previously unselected package libtext-levenshtein-perl. 15:54:10 Preparing to unpack .../libtext-levenshtein-perl_0.13-1_all.deb ... 15:54:10 Unpacking libtext-levenshtein-perl (0.13-1) ... 15:54:11 Selecting previously unselected package libtiff5:amd64. 15:54:11 Preparing to unpack .../libtiff5_4.0.6-1ubuntu0.8_amd64.deb ... 15:54:11 Unpacking libtiff5:amd64 (4.0.6-1ubuntu0.8) ... 15:54:11 Selecting previously unselected package libxdelta2. 15:54:11 Preparing to unpack .../libxdelta2_1.1.3-9.1ubuntu1_amd64.deb ... 15:54:11 Unpacking libxdelta2 (1.1.3-9.1ubuntu1) ... 15:54:11 Selecting previously unselected package libyaml-libyaml-perl. 15:54:11 Preparing to unpack .../libyaml-libyaml-perl_0.41-6build1_amd64.deb ... 15:54:11 Unpacking libyaml-libyaml-perl (0.41-6build1) ... 15:54:11 Selecting previously unselected package hardening-includes. 15:54:11 Preparing to unpack .../hardening-includes_2.7ubuntu2_all.deb ... 15:54:11 Unpacking hardening-includes (2.7ubuntu2) ... 15:54:11 Selecting previously unselected package patchutils. 15:54:11 Preparing to unpack .../patchutils_0.3.4-1_amd64.deb ... 15:54:11 Unpacking patchutils (0.3.4-1) ... 15:54:11 Selecting previously unselected package t1utils. 15:54:11 Preparing to unpack .../t1utils_1.39-2_amd64.deb ... 15:54:11 Unpacking t1utils (1.39-2) ... 15:54:12 Selecting previously unselected package lintian. 15:54:12 Preparing to unpack .../lintian_2.5.43ubuntu0.1_all.deb ... 15:54:12 Unpacking lintian (2.5.43ubuntu0.1) ... 15:54:12 Selecting previously unselected package manpages-dev. 15:54:12 Preparing to unpack .../manpages-dev_4.04-2_all.deb ... 15:54:12 Unpacking manpages-dev (4.04-2) ... 15:54:13 Selecting previously unselected package pbzip2. 15:54:13 Preparing to unpack .../pbzip2_1.1.9-1_amd64.deb ... 15:54:13 Unpacking pbzip2 (1.1.9-1) ... 15:54:13 Selecting previously unselected package xdelta. 15:54:13 Preparing to unpack .../xdelta_1.1.3-9.1ubuntu1_amd64.deb ... 15:54:13 Unpacking xdelta (1.1.3-9.1ubuntu1) ... 15:54:13 Selecting previously unselected package pristine-tar. 15:54:13 Preparing to unpack .../pristine-tar_1.33_amd64.deb ... 15:54:13 Unpacking pristine-tar (1.33) ... 15:54:13 Selecting previously unselected package python-cffi-backend. 15:54:13 Preparing to unpack .../python-cffi-backend_1.5.2-1ubuntu1_amd64.deb ... 15:54:13 Unpacking python-cffi-backend (1.5.2-1ubuntu1) ... 15:54:14 Selecting previously unselected package python-chardet. 15:54:14 Preparing to unpack .../python-chardet_2.3.0-2_all.deb ... 15:54:14 Unpacking python-chardet (2.3.0-2) ... 15:54:14 Selecting previously unselected package python-enum34. 15:54:14 Preparing to unpack .../python-enum34_1.1.2-1_all.deb ... 15:54:14 Unpacking python-enum34 (1.1.2-1) ... 15:54:14 Selecting previously unselected package python-idna. 15:54:14 Preparing to unpack .../python-idna_2.0-3_all.deb ... 15:54:14 Unpacking python-idna (2.0-3) ... 15:54:14 Selecting previously unselected package python-ipaddress. 15:54:14 Preparing to unpack .../python-ipaddress_1.0.16-1_all.deb ... 15:54:14 Unpacking python-ipaddress (1.0.16-1) ... 15:54:14 Selecting previously unselected package python-pyasn1. 15:54:14 Preparing to unpack .../python-pyasn1_0.1.9-1_all.deb ... 15:54:14 Unpacking python-pyasn1 (0.1.9-1) ... 15:54:14 Selecting previously unselected package python-cryptography. 15:54:14 Preparing to unpack .../python-cryptography_1.2.3-1ubuntu0.3_amd64.deb ... 15:54:14 Unpacking python-cryptography (1.2.3-1ubuntu0.3) ... 15:54:15 Selecting previously unselected package python-openssl. 15:54:15 Preparing to unpack .../python-openssl_0.15.1-2ubuntu0.2_all.deb ... 15:54:15 Unpacking python-openssl (0.15.1-2ubuntu0.2) ... 15:54:15 Selecting previously unselected package python-ndg-httpsclient. 15:54:15 Preparing to unpack .../python-ndg-httpsclient_0.4.0-3_all.deb ... 15:54:15 Unpacking python-ndg-httpsclient (0.4.0-3) ... 15:54:15 Selecting previously unselected package python-urllib3. 15:54:15 Preparing to unpack .../python-urllib3_1.13.1-2ubuntu0.16.04.4_all.deb ... 15:54:15 Unpacking python-urllib3 (1.13.1-2ubuntu0.16.04.4) ... 15:54:15 Selecting previously unselected package python-requests. 15:54:15 Preparing to unpack .../python-requests_2.9.1-3ubuntu0.1_all.deb ... 15:54:15 Unpacking python-requests (2.9.1-3ubuntu0.1) ... 15:54:15 Selecting previously unselected package python3-six. 15:54:15 Preparing to unpack .../python3-six_1.10.0-3_all.deb ... 15:54:16 Unpacking python3-six (1.10.0-3) ... 15:54:16 Selecting previously unselected package python3-dateutil. 15:54:16 Preparing to unpack .../python3-dateutil_2.4.2-1_all.deb ... 15:54:16 Unpacking python3-dateutil (2.4.2-1) ... 15:54:16 Selecting previously unselected package python3-roman. 15:54:16 Preparing to unpack .../python3-roman_2.0.0-2_all.deb ... 15:54:16 Unpacking python3-roman (2.0.0-2) ... 15:54:17 Selecting previously unselected package python3-docutils. 15:54:17 Preparing to unpack .../python3-docutils_0.12+dfsg-1_all.deb ... 15:54:17 Unpacking python3-docutils (0.12+dfsg-1) ... 15:54:17 Selecting previously unselected package python3-pyparsing. 15:54:17 Preparing to unpack .../python3-pyparsing_2.0.3+dfsg1-1ubuntu0.2_all.deb ... 15:54:17 Unpacking python3-pyparsing (2.0.3+dfsg1-1ubuntu0.2) ... 15:54:17 Selecting previously unselected package python3-catkin-pkg-modules. 15:54:17 Preparing to unpack .../python3-catkin-pkg-modules_0.4.23-1_all.deb ... 15:54:18 Unpacking python3-catkin-pkg-modules (0.4.23-1) ... 15:54:18 Selecting previously unselected package python3-pkg-resources. 15:54:18 Preparing to unpack .../python3-pkg-resources_20.7.0-1_all.deb ... 15:54:18 Unpacking python3-pkg-resources (20.7.0-1) ... 15:54:18 Selecting previously unselected package python3-chardet. 15:54:18 Preparing to unpack .../python3-chardet_2.3.0-2_all.deb ... 15:54:18 Unpacking python3-chardet (2.3.0-2) ... 15:54:18 Selecting previously unselected package python3-debian. 15:54:18 Preparing to unpack .../python3-debian_0.1.27ubuntu2_all.deb ... 15:54:18 Unpacking python3-debian (0.1.27ubuntu2) ... 15:54:18 Selecting previously unselected package libwebp5:amd64. 15:54:18 Preparing to unpack .../libwebp5_0.4.4-1_amd64.deb ... 15:54:18 Unpacking libwebp5:amd64 (0.4.4-1) ... 15:54:18 Selecting previously unselected package libwebpmux1:amd64. 15:54:18 Preparing to unpack .../libwebpmux1_0.4.4-1_amd64.deb ... 15:54:18 Unpacking libwebpmux1:amd64 (0.4.4-1) ... 15:54:18 Selecting previously unselected package python3-pil:amd64. 15:54:18 Preparing to unpack .../python3-pil_3.1.2-0ubuntu1.6_amd64.deb ... 15:54:18 Unpacking python3-pil:amd64 (3.1.2-0ubuntu1.6) ... 15:54:19 Selecting previously unselected package python3-pygments. 15:54:19 Preparing to unpack .../python3-pygments_2.1+dfsg-1ubuntu0.2_all.deb ... 15:54:19 Unpacking python3-pygments (2.1+dfsg-1ubuntu0.2) ... 15:54:19 Selecting previously unselected package python3-yaml. 15:54:19 Preparing to unpack .../python3-yaml_3.11-3build1_amd64.deb ... 15:54:19 Unpacking python3-yaml (3.11-3build1) ... 15:54:19 Selecting previously unselected package python3-rospkg-modules. 15:54:19 Preparing to unpack .../python3-rospkg-modules_1.3.0-1_all.deb ... 15:54:19 Unpacking python3-rospkg-modules (1.3.0-1) ... 15:54:19 Selecting previously unselected package python3-setuptools. 15:54:19 Preparing to unpack .../python3-setuptools_20.7.0-1_all.deb ... 15:54:19 Unpacking python3-setuptools (20.7.0-1) ... 15:54:19 Selecting previously unselected package python3-rosdistro-modules. 15:54:19 Preparing to unpack .../python3-rosdistro-modules_0.8.3-1_all.deb ... 15:54:19 Unpacking python3-rosdistro-modules (0.8.3-1) ... 15:54:19 Selecting previously unselected package rename. 15:54:19 Preparing to unpack .../archives/rename_0.20-4_all.deb ... 15:54:19 Unpacking rename (0.20-4) ... 15:54:20 Selecting previously unselected package unzip. 15:54:20 Preparing to unpack .../unzip_6.0-20ubuntu1.1_amd64.deb ... 15:54:20 Unpacking unzip (6.0-20ubuntu1.1) ... 15:54:20 Selecting previously unselected package wdiff. 15:54:20 Preparing to unpack .../wdiff_1.2.2-1build1_amd64.deb ... 15:54:20 Unpacking wdiff (1.2.2-1build1) ... 15:54:20 Selecting previously unselected package libauthen-sasl-perl. 15:54:20 Preparing to unpack .../libauthen-sasl-perl_2.1600-1_all.deb ... 15:54:20 Unpacking libauthen-sasl-perl (2.1600-1) ... 15:54:20 Selecting previously unselected package python3-magic. 15:54:20 Preparing to unpack .../python3-magic_1%3a5.25-2ubuntu1.4_all.deb ... 15:54:20 Unpacking python3-magic (1:5.25-2ubuntu1.4) ... 15:54:20 Processing triggers for libc-bin (2.23-0ubuntu11.2) ... 15:54:20 Processing triggers for systemd (229-4ubuntu21.31) ... 15:54:20 Processing triggers for mime-support (3.59ubuntu1) ... 15:54:20 Setting up libatm1:amd64 (1:2.5.1-1.5) ... 15:54:21 Setting up liblocale-gettext-perl (1.07-1build1) ... 15:54:21 Setting up libmnl0:amd64 (1.0.3-5) ... 15:54:22 Setting up libpopt0:amd64 (1.16-10) ... 15:54:22 Setting up libgdbm3:amd64 (1.8.3-13.1) ... 15:54:22 Setting up libffi6:amd64 (3.2.1-4) ... 15:54:23 Setting up libglib2.0-0:amd64 (2.48.2-0ubuntu4.8) ... 15:54:23 No schema files found: doing nothing. 15:54:23 Setting up libxau6:amd64 (1:1.0.8-1) ... 15:54:23 Setting up libxdmcp6:amd64 (1:1.1.2-1.1) ... 15:54:23 Setting up libxcb1:amd64 (1.11.1-1ubuntu1) ... 15:54:23 Setting up libx11-data (2:1.6.3-1ubuntu2.2) ... 15:54:23 Setting up libx11-6:amd64 (2:1.6.3-1ubuntu2.2) ... 15:54:23 Setting up libxext6:amd64 (2:1.3.3-1) ... 15:54:23 Setting up groff-base (1.22.3-7) ... 15:54:23 Setting up bsdmainutils (9.0.6ubuntu3) ... 15:54:24 update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode 15:54:24 update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode 15:54:24 Setting up libpipeline1:amd64 (1.4.1-2) ... 15:54:24 Setting up man-db (2.7.5-1) ... 15:54:25 Building database of manual pages ... 15:54:47 Setting up sgml-base (1.26+nmu4ubuntu1) ... 15:54:48 Setting up libjpeg-turbo8:amd64 (1.4.2-0ubuntu3.4) ... 15:54:48 Setting up libunistring0:amd64 (0.9.3-5.2ubuntu1) ... 15:54:48 Setting up libyaml-0-2:amd64 (0.1.6-3) ... 15:54:48 Setting up perl-modules-5.22 (5.22.1-9ubuntu0.9) ... 15:54:48 Setting up libperl5.22:amd64 (5.22.1-9ubuntu0.9) ... 15:54:48 Setting up perl (5.22.1-9ubuntu0.9) ... 15:54:48 update-alternatives: using /usr/bin/prename to provide /usr/bin/rename (rename) in auto mode 15:54:48 Setting up libpython2.7-stdlib:amd64 (2.7.12-1ubuntu0~16.04.18) ... 15:54:48 Setting up python2.7 (2.7.12-1ubuntu0~16.04.18) ... 15:54:50 Setting up libpython-stdlib:amd64 (2.7.12-1~16.04) ... 15:54:50 Setting up python (2.7.12-1~16.04) ... 15:54:50 Setting up libjbig0:amd64 (2.1-3.1) ... 15:54:50 Setting up libgmp10:amd64 (2:6.1.0+dfsg-2) ... 15:54:50 Setting up libmpfr4:amd64 (3.1.4-1) ... 15:54:50 Setting up libmpc3:amd64 (1.0.3-1) ... 15:54:50 Setting up tzdata (2021a-0ubuntu0.16.04) ... 15:54:51 15:54:51 Current default time zone: 'Etc/UTC' 15:54:51 Local time is now: Sun Jun 6 14:54:51 UTC 2021. 15:54:51 Universal Time is now: Sun Jun 6 14:54:51 UTC 2021. 15:54:51 Run 'dpkg-reconfigure tzdata' if you wish to change it. 15:54:51 15:54:51 Setting up bzip2 (1.0.6-8ubuntu0.2) ... 15:54:51 Setting up distro-info-data (0.28ubuntu0.17) ... 15:54:51 Setting up iproute2 (4.3.0-1ubuntu3.16.04.5) ... 15:54:51 Setting up ifupdown (0.8.10ubuntu1.4) ... 15:54:52 Creating /etc/network/interfaces. 15:54:53 Setting up libisc-export160 (1:9.10.3.dfsg.P4-8ubuntu1.19) ... 15:54:53 Setting up libdns-export162 (1:9.10.3.dfsg.P4-8ubuntu1.19) ... 15:54:53 Setting up isc-dhcp-client (4.3.3-5ubuntu12.10) ... 15:54:53 Setting up isc-dhcp-common (4.3.3-5ubuntu12.10) ... 15:54:54 Setting up less (481-2.1ubuntu0.2) ... 15:54:54 Setting up libapt-inst2.0:amd64 (1.2.35) ... 15:54:54 Setting up libbsd0:amd64 (0.8.2-1ubuntu0.1) ... 15:54:54 Setting up libnettle6:amd64 (3.2-1ubuntu0.16.04.2) ... 15:54:54 Setting up libhogweed4:amd64 (3.2-1ubuntu0.16.04.2) ... 15:54:54 Setting up libidn11:amd64 (1.32-3ubuntu1.2) ... 15:54:54 Setting up libp11-kit0:amd64 (0.23.2-5~ubuntu16.04.2) ... 15:54:54 Setting up libtasn1-6:amd64 (4.7-3ubuntu0.16.04.3) ... 15:54:54 Setting up libgnutls30:amd64 (3.4.10-4ubuntu1.8) ... 15:54:54 Setting up libpng12-0:amd64 (1.2.54-1ubuntu1.1) ... 15:54:54 Setting up libxtables11:amd64 (1.6.0-2ubuntu3) ... 15:54:54 Setting up lsb-release (9.20160110ubuntu0.2) ... 15:54:54 Setting up netbase (5.3) ... 15:54:54 Setting up sudo (1.8.16-0ubuntu1.10) ... 15:54:54 Setting up ucf (3.0036) ... 15:54:55 Setting up openssl (1.0.2g-1ubuntu4.19) ... 15:54:55 Setting up ca-certificates (20210119~16.04.1) ... 15:54:56 Setting up libasprintf0v5:amd64 (0.19.7-2ubuntu3.1) ... 15:54:56 Setting up gettext-base (0.19.7-2ubuntu3.1) ... 15:54:56 Setting up iso-codes (3.65-1) ... 15:54:56 Setting up krb5-locales (1.13.2+dfsg-5ubuntu2.2) ... 15:54:56 Setting up libroken18-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:54:56 Setting up libasn1-8-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:54:56 Setting up libkrb5support0:amd64 (1.13.2+dfsg-5ubuntu2.2) ... 15:54:57 Setting up libk5crypto3:amd64 (1.13.2+dfsg-5ubuntu2.2) ... 15:54:57 Setting up libkeyutils1:amd64 (1.5.9-8ubuntu1) ... 15:54:57 Setting up libkrb5-3:amd64 (1.13.2+dfsg-5ubuntu2.2) ... 15:54:57 Setting up libgssapi-krb5-2:amd64 (1.13.2+dfsg-5ubuntu2.2) ... 15:54:57 Setting up libhcrypto4-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:54:57 Setting up libheimbase1-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:54:57 Setting up libwind0-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:54:57 Setting up libhx509-5-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:54:57 Setting up libkrb5-26-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:54:57 Setting up libheimntlm0-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:54:57 Setting up libgssapi3-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ... 15:54:57 Setting up libsasl2-modules-db:amd64 (2.1.26.dfsg1-14ubuntu0.2) ... 15:54:57 Setting up libsasl2-2:amd64 (2.1.26.dfsg1-14ubuntu0.2) ... 15:54:57 Setting up libldap-2.4-2:amd64 (2.4.42+dfsg-2ubuntu3.13) ... 15:54:57 Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d-1ubuntu0.1) ... 15:54:57 Setting up libcurl3-gnutls:amd64 (7.47.0-1ubuntu2.19) ... 15:54:58 Setting up libedit2:amd64 (3.1-20150325-1ubuntu2) ... 15:54:58 Setting up libglib2.0-data (2.48.2-0ubuntu4.8) ... 15:54:58 Setting up libicu55:amd64 (55.1-7ubuntu0.5) ... 15:54:58 Setting up libsasl2-modules:amd64 (2.1.26.dfsg1-14ubuntu0.2) ... 15:54:58 Setting up libxml2:amd64 (2.9.3+dfsg1-1ubuntu0.7) ... 15:54:58 Setting up libxmuu1:amd64 (2:1.1.2-2) ... 15:54:58 Setting up manpages (4.04-2) ... 15:54:58 Setting up openssh-client (1:7.2p2-4ubuntu2.10) ... 15:54:58 Setting up python-apt-common (1.1.0~beta1ubuntu0.16.04.12) ... 15:54:58 Setting up python3-apt (1.1.0~beta1ubuntu0.16.04.12) ... 15:54:59 Setting up rsync (3.1.1-3ubuntu1.3) ... 15:54:59 invoke-rc.d: could not determine current runlevel 15:54:59 invoke-rc.d: policy-rc.d denied execution of restart. 15:54:59 Setting up shared-mime-info (1.5-2ubuntu0.2) ... 15:55:05 Setting up strace (4.11-1ubuntu3) ... 15:55:05 Setting up wget (1.17.1-1ubuntu1.5) ... 15:55:05 Setting up xauth (1:1.0.9-1ubuntu2) ... 15:55:05 Setting up xdg-user-dirs (0.15-2ubuntu6.16.04.1) ... 15:55:05 Setting up xml-core (0.13+nmu2) ... 15:55:05 Setting up at (3.1.18-2ubuntu1) ... 15:55:06 invoke-rc.d: could not determine current runlevel 15:55:06 invoke-rc.d: policy-rc.d denied execution of start. 15:55:06 Setting up autotools-dev (20150820.1) ... 15:55:06 Setting up binutils (2.26.1-1ubuntu1~16.04.8) ... 15:55:06 Setting up libc-dev-bin (2.23-0ubuntu11.3) ... 15:55:06 Setting up linux-libc-dev:amd64 (4.4.0-210.242) ... 15:55:06 Setting up libc6-dev:amd64 (2.23-0ubuntu11.3) ... 15:55:06 Setting up libisl15:amd64 (0.16.1-1) ... 15:55:06 Setting up cpp-5 (5.4.0-6ubuntu1~16.04.12) ... 15:55:06 Setting up cpp (4:5.3.1-1ubuntu1) ... 15:55:06 Setting up libcc1-0:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:55:06 Setting up libgomp1:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:55:06 Setting up libitm1:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:55:06 Setting up libatomic1:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:55:06 Setting up libasan2:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:55:06 Setting up liblsan0:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:55:06 Setting up libtsan0:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:55:06 Setting up libubsan0:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:55:06 Setting up libcilkrts5:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:55:06 Setting up libmpx0:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:55:06 Setting up libquadmath0:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:55:06 Setting up libgcc-5-dev:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:55:06 Setting up gcc-5 (5.4.0-6ubuntu1~16.04.12) ... 15:55:06 Setting up gcc (4:5.3.1-1ubuntu1) ... 15:55:07 Setting up libstdc++-5-dev:amd64 (5.4.0-6ubuntu1~16.04.12) ... 15:55:07 Setting up g++-5 (5.4.0-6ubuntu1~16.04.12) ... 15:55:07 Setting up g++ (4:5.3.1-1ubuntu1) ... 15:55:07 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 15:55:07 Setting up make (4.1-6) ... 15:55:07 Setting up libdpkg-perl (1.18.4ubuntu1.7) ... 15:55:07 Setting up xz-utils (5.1.1alpha+20120614-2ubuntu2) ... 15:55:07 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode 15:55:07 Setting up patch (2.7.5-1ubuntu0.16.04.2) ... 15:55:07 Setting up dpkg-dev (1.18.4ubuntu1.7) ... 15:55:07 Setting up build-essential (12.1ubuntu2) ... 15:55:07 Setting up debootstrap (1.0.78+nmu1ubuntu1.13) ... 15:55:07 Setting up pbuilder (0.223) ... 15:55:07 Setting up cowdancer (0.73) ... 15:55:07 Setting up cowbuilder (0.73) ... 15:55:07 Setting up curl (7.47.0-1ubuntu2.19) ... 15:55:07 Setting up dctrl-tools (2.24-2) ... 15:55:07 Setting up libcroco3:amd64 (0.6.11-1) ... 15:55:07 Setting up gettext (0.19.7-2ubuntu3.1) ... 15:55:07 Setting up intltool-debian (0.35.0+20060710.4) ... 15:55:08 Setting up po-debconf (1.0.19) ... 15:55:08 Setting up libarchive-zip-perl (1.56-2ubuntu0.1) ... 15:55:08 Setting up libfile-stripnondeterminism-perl (0.015-1) ... 15:55:08 Setting up libtimedate-perl (2.3000-2) ... 15:55:08 Setting up devscripts (2.16.2ubuntu3) ... 15:55:08 Setting up diffstat (1.61-1) ... 15:55:08 Setting up dput (0.9.6.4ubuntu3) ... 15:55:08 Setting up libfakeroot:amd64 (1.20.2-1ubuntu1) ... 15:55:08 Setting up fakeroot (1.20.2-1ubuntu1) ... 15:55:08 update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode 15:55:08 Setting up liberror-perl (0.17-1.2) ... 15:55:09 Setting up git-man (1:2.7.4-0ubuntu1.10) ... 15:55:09 Setting up git (1:2.7.4-0ubuntu1.10) ... 15:55:09 Setting up python-six (1.11.0) ... 15:55:09 Setting up python-dateutil (2.4.2-1) ... 15:55:09 Setting up python-pkg-resources (20.7.0-1) ... 15:55:10 Setting up git-buildpackage (0.7.2) ... 15:55:11 Setting up libalgorithm-diff-perl (1.19.03-1) ... 15:55:11 Setting up libalgorithm-diff-xs-perl (0.04-4build1) ... 15:55:11 Setting up libalgorithm-merge-perl (0.08-3) ... 15:55:11 Setting up libapt-pkg-perl (0.1.29build7) ... 15:55:11 Setting up libasprintf-dev:amd64 (0.19.7-2ubuntu3.1) ... 15:55:11 Setting up libhtml-tagset-perl (3.20-2) ... 15:55:11 Setting up liburi-perl (1.71-1) ... 15:55:11 Setting up libhtml-parser-perl (3.72-1) ... 15:55:11 Setting up libcgi-pm-perl (4.26-1) ... 15:55:11 Setting up libfcgi-perl (0.77-1build1) ... 15:55:11 Setting up libcgi-fast-perl (1:2.10-1) ... 15:55:11 Setting up libsub-name-perl (0.14-1build1) ... 15:55:11 Setting up libclass-accessor-perl (0.34-1) ... 15:55:11 Setting up libclone-perl (0.38-1build1) ... 15:55:12 Setting up libdata-alias-perl (1.20-1build1) ... 15:55:12 Setting up libdigest-hmac-perl (1.03+dfsg-1) ... 15:55:12 Setting up libdistro-info-perl (0.14ubuntu0.2) ... 15:55:12 Setting up libnet-ssleay-perl (1.72-1build1) ... 15:55:12 Setting up libio-socket-ssl-perl (2.024-1) ... 15:55:12 Setting up libnet-smtp-ssl-perl (1.03-1) ... 15:55:12 Setting up libmailtools-perl (2.13-1) ... 15:55:12 Setting up libsocket6-perl (0.25-1build2) ... 15:55:12 Setting up libio-socket-inet6-perl (2.72-2) ... 15:55:12 Setting up libnet-ip-perl (1.26-1) ... 15:55:12 Setting up libnet-dns-perl (0.81-2build1) ... 15:55:12 Setting up libnet-domain-tld-perl (1.73-1) ... 15:55:12 Setting up libemail-valid-perl (1.198-1) ... 15:55:12 Setting up libencode-locale-perl (1.05-1) ... 15:55:12 Setting up libexporter-tiny-perl (0.042-1) ... 15:55:12 Setting up libipc-system-simple-perl (1.25-3) ... 15:55:12 Setting up libfile-basedir-perl (0.07-1) ... 15:55:13 Setting up libfile-fcntllock-perl (0.22-3) ... 15:55:13 Setting up libhttp-date-perl (6.02-1) ... 15:55:13 Setting up libfile-listing-perl (6.04-1) ... 15:55:13 Setting up libfont-afm-perl (1.20-1) ... 15:55:13 Setting up libfreetype6:amd64 (2.6.1-0.1ubuntu2.5) ... 15:55:13 Setting up libgettextpo0:amd64 (0.19.7-2ubuntu3.1) ... 15:55:13 Setting up libgettextpo-dev:amd64 (0.19.7-2ubuntu3.1) ... 15:55:13 Setting up libio-html-perl (1.001-1) ... 15:55:13 Setting up liblwp-mediatypes-perl (6.02-1) ... 15:55:13 Setting up libhttp-message-perl (6.11-1) ... 15:55:13 Setting up libhtml-form-perl (6.03-1) ... 15:55:13 Setting up libhtml-tree-perl (5.03-2) ... 15:55:13 Setting up libhtml-format-perl (2.11-2) ... 15:55:13 Setting up libhttp-cookies-perl (6.01-1) ... 15:55:13 Setting up libhttp-daemon-perl (6.01-1) ... 15:55:13 Setting up libhttp-negotiate-perl (6.00-2) ... 15:55:13 Setting up libio-pty-perl (1:1.08-1.1build1) ... 15:55:13 Setting up libio-string-perl (1.08-3) ... 15:55:13 Setting up libipc-run-perl (0.94-1) ... 15:55:13 Setting up libjpeg8:amd64 (8c-2ubuntu8) ... 15:55:13 Setting up liblcms2-2:amd64 (2.6-3ubuntu2.1) ... 15:55:13 Setting up liblist-moreutils-perl (0.413-1build1) ... 15:55:13 Setting up libnet-http-perl (6.09-1) ... 15:55:13 Setting up libwww-robotrules-perl (6.01-1) ... 15:55:13 Setting up libsys-hostname-long-perl (1.5-1) ... 15:55:13 Setting up libmail-sendmail-perl (0.79.16-1) ... 15:55:14 Setting up libpaper1:amd64 (1.1.24+nmu4ubuntu1) ... 15:55:14 15:55:14 Creating config file /etc/papersize with new version 15:55:14 Setting up libpaper-utils (1.1.24+nmu4ubuntu1) ... 15:55:14 Setting up libparse-debianchangelog-perl (1.2.0-8) ... 15:55:14 Setting up libperlio-gzip-perl (0.19-1build1) ... 15:55:14 Setting up libtext-levenshtein-perl (0.13-1) ... 15:55:14 Setting up libtiff5:amd64 (4.0.6-1ubuntu0.8) ... 15:55:14 Setting up libxdelta2 (1.1.3-9.1ubuntu1) ... 15:55:14 Setting up libyaml-libyaml-perl (0.41-6build1) ... 15:55:14 Setting up hardening-includes (2.7ubuntu2) ... 15:55:14 Setting up patchutils (0.3.4-1) ... 15:55:14 Setting up t1utils (1.39-2) ... 15:55:14 Setting up lintian (2.5.43ubuntu0.1) ... 15:55:14 Setting up manpages-dev (4.04-2) ... 15:55:14 Setting up pbzip2 (1.1.9-1) ... 15:55:14 Setting up xdelta (1.1.3-9.1ubuntu1) ... 15:55:14 Setting up pristine-tar (1.33) ... 15:55:15 Setting up python-cffi-backend (1.5.2-1ubuntu1) ... 15:55:15 Setting up python-chardet (2.3.0-2) ... 15:55:15 Setting up python-enum34 (1.1.2-1) ... 15:55:16 Setting up python-idna (2.0-3) ... 15:55:17 Setting up python-ipaddress (1.0.16-1) ... 15:55:18 Setting up python-pyasn1 (0.1.9-1) ... 15:55:18 Setting up python-cryptography (1.2.3-1ubuntu0.3) ... 15:55:19 Setting up python-openssl (0.15.1-2ubuntu0.2) ... 15:55:20 Setting up python-ndg-httpsclient (0.4.0-3) ... 15:55:21 Setting up python-urllib3 (1.13.1-2ubuntu0.16.04.4) ... 15:55:22 Setting up python-requests (2.9.1-3ubuntu0.1) ... 15:55:22 Setting up python3-six (1.10.0-3) ... 15:55:23 Setting up python3-dateutil (2.4.2-1) ... 15:55:23 Setting up python3-roman (2.0.0-2) ... 15:55:23 Setting up python3-pyparsing (2.0.3+dfsg1-1ubuntu0.2) ... 15:55:24 Setting up python3-pkg-resources (20.7.0-1) ... 15:55:24 Setting up python3-chardet (2.3.0-2) ... 15:55:25 Setting up python3-debian (0.1.27ubuntu2) ... 15:55:25 Setting up libwebp5:amd64 (0.4.4-1) ... 15:55:25 Setting up libwebpmux1:amd64 (0.4.4-1) ... 15:55:25 Setting up python3-pil:amd64 (3.1.2-0ubuntu1.6) ... 15:55:26 Setting up python3-pygments (2.1+dfsg-1ubuntu0.2) ... 15:55:27 Setting up python3-yaml (3.11-3build1) ... 15:55:27 Setting up python3-setuptools (20.7.0-1) ... 15:55:27 Setting up rename (0.20-4) ... 15:55:27 update-alternatives: using /usr/bin/file-rename to provide /usr/bin/rename (rename) in auto mode 15:55:27 Setting up unzip (6.0-20ubuntu1.1) ... 15:55:27 Setting up wdiff (1.2.2-1build1) ... 15:55:28 Setting up libauthen-sasl-perl (2.1600-1) ... 15:55:28 Setting up python3-magic (1:5.25-2ubuntu1.4) ... 15:55:28 Setting up liblwp-protocol-https-perl (6.06-2) ... 15:55:28 Setting up dh-strip-nondeterminism (0.015-1) ... 15:55:28 Setting up debhelper (9.20160115ubuntu3) ... 15:55:28 Setting up libwww-perl (6.15-1) ... 15:55:28 Processing triggers for sgml-base (1.26+nmu4ubuntu1) ... 15:55:28 Setting up docutils-common (0.12+dfsg-1) ... 15:55:28 Processing triggers for sgml-base (1.26+nmu4ubuntu1) ... 15:55:29 Setting up python3-docutils (0.12+dfsg-1) ... 15:55:29 update-alternatives: using /usr/share/docutils/scripts/python3/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode 15:55:29 update-alternatives: using /usr/share/docutils/scripts/python3/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode 15:55:29 update-alternatives: using /usr/share/docutils/scripts/python3/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode 15:55:29 update-alternatives: using /usr/share/docutils/scripts/python3/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode 15:55:29 update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode 15:55:29 update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode 15:55:29 update-alternatives: using /usr/share/docutils/scripts/python3/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode 15:55:29 update-alternatives: using /usr/share/docutils/scripts/python3/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode 15:55:29 update-alternatives: using /usr/share/docutils/scripts/python3/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode 15:55:29 update-alternatives: using /usr/share/docutils/scripts/python3/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode 15:55:29 update-alternatives: using /usr/share/docutils/scripts/python3/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode 15:55:29 Setting up python3-catkin-pkg-modules (0.4.23-1) ... 15:55:30 Setting up python3-rospkg-modules (1.3.0-1) ... 15:55:30 Setting up python3-rosdistro-modules (0.8.3-1) ... 15:55:32 Processing triggers for libc-bin (2.23-0ubuntu11.2) ... 15:55:32 Processing triggers for systemd (229-4ubuntu21.31) ... 15:55:33 Processing triggers for ca-certificates (20210119~16.04.1) ... 15:55:33 Updating certificates in /etc/ssl/certs... 15:55:36 129 added, 0 removed; done. 15:55:36 Running hooks in /etc/ca-certificates/update.d... 15:55:36 done. 15:55:38 Invoking 'apt-get clean' 15:56:59 ---> 5205788d51b1 15:57:03 Removing intermediate container cc634afe1924 15:57:03 Step 21/28 : COPY .git-credentials /home/buildfarm/.git-credentials 15:57:05 ---> 920a55bcbc16 15:57:05 Error removing intermediate container 03f7a4e7617d: Driver aufs failed to remove root filesystem 03f7a4e7617dcf5e6f3f62cc7c0c924d1e40d3b9a6e4fc1fd749f5e1e84de774: rename /var/lib/docker/aufs/diff/3af8e3acdae3b1b142c082303c8a43b686861d12b3345a145bf42de92868211a /var/lib/docker/aufs/diff/3af8e3acdae3b1b142c082303c8a43b686861d12b3345a145bf42de92868211a-removing: device or resource busy 15:57:05 Step 22/28 : RUN chmod 600 /home/buildfarm/.git-credentials 15:57:05 ---> Running in 6543ab324e0b 15:57:06 ---> 678e91c15c7a 15:57:06 Error removing intermediate container 03f7a4e7617d: No such container: 03f7a4e7617dcf5e6f3f62cc7c0c924d1e40d3b9a6e4fc1fd749f5e1e84de774 15:57:06 Step 23/28 : RUN chown buildfarm /home/buildfarm/.git-credentials 15:57:08 ---> Running in a1df2002ef09 15:57:10 ---> 9f6b52a67508 15:57:10 Error removing intermediate container 03f7a4e7617d: No such container: 03f7a4e7617dcf5e6f3f62cc7c0c924d1e40d3b9a6e4fc1fd749f5e1e84de774 15:57:10 Step 24/28 : USER buildfarm 15:57:10 ---> Running in 64cf2e8addd8 15:57:10 ---> d50f85feee6b 15:57:10 Error removing intermediate container 03f7a4e7617d: No such container: 03f7a4e7617dcf5e6f3f62cc7c0c924d1e40d3b9a6e4fc1fd749f5e1e84de774 15:57:10 Step 25/28 : RUN git config --global credential.helper 'store' 15:57:11 ---> Running in a44747a0df97 15:57:13 ---> 80d9e7bce441 15:57:13 Error removing intermediate container a44747a0df97: Driver aufs failed to remove root filesystem a44747a0df97973b1bf16e1c77302246c36b29aa71a0b76cec3bccf69845ad5c: rename /var/lib/docker/aufs/mnt/877985d787a484467f78dad4dbfe3db8281b8756aa8c03d900707c7a5b542154 /var/lib/docker/aufs/mnt/877985d787a484467f78dad4dbfe3db8281b8756aa8c03d900707c7a5b542154-removing: device or resource busy 15:57:13 Step 26/28 : RUN git config --global http.sslVerify false 15:57:13 ---> Running in 73b44d1ac127 15:57:15 ---> 97dec81f68d0 15:57:15 Error removing intermediate container 03f7a4e7617d: No such container: 03f7a4e7617dcf5e6f3f62cc7c0c924d1e40d3b9a6e4fc1fd749f5e1e84de774 15:57:15 Step 27/28 : ENTRYPOINT sh -c 15:57:15 ---> Running in 15a94ecd795e 15:57:15 ---> c89edd6ade52 15:57:15 Error removing intermediate container a44747a0df97: No such container: a44747a0df97973b1bf16e1c77302246c36b29aa71a0b76cec3bccf69845ad5c 15:57:15 Step 28/28 : 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 kinetic pedsim_scenarios ubuntu xenial 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 xenial --source-dir /tmp/sourcedeb/source 15:57:16 ---> Running in 59c4681fd607 15:57:16 ---> 17097e064c49 15:57:16 Removing intermediate container 15a94ecd795e 15:57:16 Removing intermediate container 59c4681fd607 15:57:16 Error removing intermediate container 03f7a4e7617d: No such container: 03f7a4e7617dcf5e6f3f62cc7c0c924d1e40d3b9a6e4fc1fd749f5e1e84de774 15:57:16 Successfully built 17097e064c49 15:57:16 Successfully tagged sourcedeb.kinetic_ubuntu_xenial_pedsim_scenarios:latest 15:57:16 + echo # END SECTION 15:57:16 # END SECTION
15:57:16 + echo # BEGIN SECTION: Run Dockerfile - generate sourcedeb
2. Run Dockerfile - generate sourcedeb

Hide Details

15:57:16 # BEGIN SECTION: Run Dockerfile - generate sourcedeb 15:57:16 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__pedsim_scenarios__ubuntu_xenial__source/sourcedeb 15:57:18 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__pedsim_scenarios__ubuntu_xenial__source/sourcedeb/source 15:57:18 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Ksrc_uX__pedsim_scenarios__ubuntu_xenial__source/docker_sourcedeb/docker.cid -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Ksrc_uX__pedsim_scenarios__ubuntu_xenial__source/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Ksrc_uX__pedsim_scenarios__ubuntu_xenial__source/sourcedeb:/tmp/sourcedeb sourcedeb.kinetic_ubuntu_xenial_pedsim_scenarios
2.1. get sources

Hide Details

15:57:20 # BEGIN SUBSECTION: get sources 15:57:31 Invoking 'git clone --branch debian/ros-kinetic-pedsim-scenarios_3.1.3-2_xenial --depth 1 --no-single-branch https://gitsvn-nt.oru.se/iliad/software/releases/cliffmap_ros-release.git /tmp/sourcedeb/source' 15:57:31 Cloning into '/tmp/sourcedeb/source'... 15:57:33 Note: checking out '3654fb6efaa3d823dfb0ed5be5fa2b2897abffbd'. 15:57:33 15:57:33 You are in 'detached HEAD' state. You can look around, make experimental 15:57:33 changes and commit them, and you can discard any commits you make in this 15:57:33 state without impacting any branches by performing another checkout. 15:57:33 15:57:33 If you want to create a new branch to retain commits you create, you may 15:57:33 do so (now or later) by using -b with the checkout command again. Example: 15:57:33 15:57:33 git checkout -b <new-branch-name> 15:57:33 15:57:33 No tarball found at 'http://10.210.9.154/ubuntu/building/pool/main/r/ros-kinetic-pedsim-scenarios/ros-kinetic-pedsim-scenarios_3.1.3.orig.tar.gz' 15:57:33 No tarball found at 'http://packages.ros.org/ros/ubuntu/pool/main/r/ros-kinetic-pedsim-scenarios/ros-kinetic-pedsim-scenarios_3.1.3.orig.tar.gz' 15:57:33 Package 'pedsim_scenarios' version: 3.1.3-2xenial 15:57:33 Package maintainer emails: chitt@aass.oru.se 15:57:33 # END SUBSECTION
2.2. build sourcedeb

Hide Details

15:57:33 # BEGIN SUBSECTION: build sourcedeb 15:57:33 Invoking 'gbp buildpackage --git-ignore-new --git-ignore-branch -S -us -uc --lintian-opts --suppress-tags newer-standards-version' in '/tmp/sourcedeb/source' 15:57:34 gbp:warning: Old style config section [git-buildpackage] found please rename to [buildpackage] 15:57:37 gbp:info: ros-kinetic-pedsim-scenarios_3.1.3.orig.tar.gz does not exist, creating from 'release/kinetic/pedsim_scenarios/3.1.3-2' 15:57:39 dpkg-buildpackage -rfakeroot -d -us -uc -i -I -S 15:57:39 dpkg-buildpackage: source package ros-kinetic-pedsim-scenarios 15:57:39 dpkg-buildpackage: source version 3.1.3-2xenial 15:57:39 dpkg-buildpackage: source distribution xenial 15:57:39 dpkg-buildpackage: source changed by Chittaranjan Swaminathan <chitt@aass.oru.se> 15:57:39 dpkg-source -i -I --before-build source 15:57:39 dpkg-source: info: using options from source/debian/source/options: --auto-commit 15:57:39 fakeroot debian/rules clean 15:57:39 dh clean -v --buildsystem=cmake 15:57:40 dh_testdir -O-v -O--buildsystem=cmake 15:57:40 dh_auto_clean -O-v -O--buildsystem=cmake 15:57:40 dh_clean -O-v -O--buildsystem=cmake 15:57:40 rm -f debian/debhelper-build-stamp 15:57:40 rm -f debian/ros-kinetic-pedsim-scenarios.substvars 15:57:40 rm -f debian/ros-kinetic-pedsim-scenarios.*.debhelper 15:57:40 rm -rf debian/ros-kinetic-pedsim-scenarios/ 15:57:40 rm -rf debian/.debhelper/ 15:57:40 rm -f debian/*.debhelper.log 15:57:40 rm -f debian/files 15:57:40 find . \( \( \ 15:57:40 \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS \) -prune -o -type f -a \ 15:57:40 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 15:57:40 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 15:57:40 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 15:57:40 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 15:57:40 \) -exec rm -f {} + \) -o \ 15:57:40 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 15:57:40 rm -f *-stamp 15:57:40 dpkg-source -i -I -b source 15:57:40 dpkg-source: info: using options from source/debian/source/options: --auto-commit 15:57:40 dpkg-source: info: using source format '3.0 (quilt)' 15:57:41 dpkg-source: info: building ros-kinetic-pedsim-scenarios using existing ./ros-kinetic-pedsim-scenarios_3.1.3.orig.tar.gz 15:57:41 dpkg-source: info: building ros-kinetic-pedsim-scenarios in ros-kinetic-pedsim-scenarios_3.1.3-2xenial.debian.tar.xz 15:57:41 dpkg-source: info: building ros-kinetic-pedsim-scenarios in ros-kinetic-pedsim-scenarios_3.1.3-2xenial.dsc 15:57:41 dpkg-genchanges -S >../ros-kinetic-pedsim-scenarios_3.1.3-2xenial_source.changes 15:57:41 dpkg-genchanges: including full source code in upload 15:57:41 dpkg-source -i -I --after-build source 15:57:41 dpkg-source: info: using options from source/debian/source/options: --auto-commit 15:57:41 dpkg-buildpackage: full upload (original source is included) 15:57:41 Now running lintian... 15:57:44 W: ros-kinetic-pedsim-scenarios source: pear-package-without-pkg-php-tools-builddep 15:57:44 W: ros-kinetic-pedsim-scenarios source: no-debian-copyright 15:57:44 W: ros-kinetic-pedsim-scenarios source: ancient-standards-version 3.9.2 (current is 3.9.7) 15:57:44 Finished running lintian. 15:57:44 # END SUBSECTION
15:57:44 + echo # END SECTION 15:57:44 # END SECTION
15:57:44 [Ksrc_uX__pedsim_scenarios__ubuntu_xenial__source] $ /bin/sh -xe /tmp/jenkins5476906346366807979.sh 15:57:44 + [ false = false ] 15:57:44 + echo # BEGIN SECTION: Clean up to save disk space on agents
3. Clean up to save disk space on agents

Hide Details

15:57:44 # BEGIN SECTION: Clean up to save disk space on agents 15:57:44 + rm -fr sourcedeb/source 15:57:44 + echo # END SECTION 15:57:44 # END SECTION
15:57:44 SSH: Connecting from host [lcas-buildfarm-slave-1] 15:57:44 SSH: Connecting with configuration [repo] ... 15:57:45 SSH: Disconnecting configuration [repo] ... 15:57:45 SSH: Transferred 4 file(s) 15:57:45 Build step 'Send files or execute commands over SSH' changed build result to SUCCESS 15:57:46 Waiting for the completion of Krel_import-package 15:58:00 Krel_import-package #6452 started. 15:58:12 Krel_import-package #6452 completed. Result was SUCCESS
4. Check if triggered build failed

Hide Details

15:58:12 # BEGIN SECTION: Check if triggered build failed 15:58:12 Pattern not found in build log, continuing... 15:58:12 # END SECTION
15:58:12 $ ssh-agent -k 15:58:12 unset SSH_AUTH_SOCK; 15:58:12 unset SSH_AGENT_PID; 15:58:12 echo Agent pid 17435 killed; 15:58:12 [ssh-agent] Stopped. 15:58:12 [description-setter] Description set: 3.1.3-2xenial 15:58:12 Triggering a new build of Kbin_uX64__pedsim_scenarios__ubuntu_xenial_amd64__binary 15:58:12 Finished: SUCCESS